Simon Welker
Simon Welker
`sudo h9rbs-cli --bojangle-dependency-graph` responds simply with `sudo: h9rbs-cli: command not found`. I've heard that this happens when using h9rbsvm due to everything being a local installation per user, but I've...
I'm using ActionMailer to deliver mails on model creation. My controller code looks like this: ``` ruby if @flaw.save render :show, status: :created FlawMailer.user_email(@flaw).deliver_later FlawMailer.reported_email(@flaw).deliver_later else ... ``` I'm using...
> template is **bold** > sample data is *italicized* **Issue Description:** dynmap spams the console with `Error while raytracing tile:` messages caused by `java.lang.ArrayIndexOutOfBoundsException` for my custom perspective. * **Dynmap...
https://github.com/swannodette/lt-cljs-tutorial/blob/master/lt-cljs-tutorial.cljs#L1335-L1355 These lines of code and comments seem to suggest that there is some sort of real difference between `extend-type` and `extend-protocol`: > ;; **Or** you can extend a protocol...
In Chapter 8, Exercise 1, the suggested solution is as follows: ``` clojure [[(friends ?p1 ?p2) [?m :movie/cast ?p1] [?m :movie/cast ?p2] [(not= ?p1 ?p2)]] [(friends ?p1 ?p2) [?m :movie/cast...
I noticed this by using `company-mode` with the `company-ghc` backend. It's an easy way to reproduce this problem. I have a hook to enable `company-mode` inside `haskell-interactive-mode`. It works great...
I'm experiencing issues with host memory usage continually increasing during training, until eventually my machine freezes up or the process is killed due to out-of-memory (I have 32GB available). Everything...