Adrian Smith

Results 39 comments of Adrian Smith

Distinct: https://github.com/clojure/clojure/blob/clojure-1.9.0/src/clj/clojure/core.clj#L4969

How would the neural networks work together? The prediction/patterns would ideally come from knowing that players typically play certain cards in certain orders, wouldn't the neural networks be isolated from...

Ah I see, is there a way to use the nrepl client from Clojure-Sublimed with either Tutkain or Sublime's inbuilt syntaxes instead?

Just noticed that deps-new generates a `build.clj` at the top level of a project Which suffers from a similar issue Using (clojure -Tnew app :name myusername/mynewapp)

Ah looks like the issue is that I didn't have the build aliases selected:

If I had a namespace I wanted to trace which functions should I use in Sayid to generate a trace of it's execution?

When it comes to formatting I tend to inject the data and a formatter as a callback then in the view I do If I need additional parameters then I...

In rails $formatters are stored in helper classes see: http://codefol.io/posts/Where-Do-I-Put-My-Code I do the same thing in PHP by injecting the helper methods into the views when needed I would personally...

I'm using nginx php-fpm and mariadb to host locally

nginx config here: ``` server { listen 80; server_name fusio; root /var/www/fusio/public; index index.php access_log off; error_log /var/log/nginx/fusio.log; location / { try_files $uri /index.php?$query_string; } location ~ \.php$ { include...