Sam Ritchie

Results 351 comments of Sam Ritchie

Same issue here. Didn't realize this was Austin's doing.

same here, with 1.0.0 lein-cljsbuild and cljs 2016. austin 0.1.3. Excluding org.clojurescript/clojurescript doesn't help either.

My problem goes away if I run my uberjar with an explicit main class, instead of ``` sh java -cp myjar.jar clojure.main -m paddleguru.server ``` That was my mistake, as...

I managed to get around this by moving the plugin to dev, then using these two macros to add my dev calls to my code shared with production: ``` clojure...

@LiFlash yup, that does make sense. I have it in my uberjar profile.

I do this for Weasel (same pattern worked for Austin): ``` clj (ns paddleguru.repl "Helpers for interacting with Austin: https://github.com/cemerick/austin" (:require [paddleguru.util :as u])) (u/try-require 'cemerick.piggieback) (u/try-require 'weasel.repl.websocket) ;; Use...

Looks like there's a nice hosted version here: http://williamdemeo.github.io/2014/02/27/learn-you-an-agda/#fnref:4

Another thing I'm seeing is sometimes I'll do a multiget on a couple of keys with no index, get a cursor back, call "seq" on it and get a result...

Also, what's the reason for the `Thread/sleep` call in the `seq` implementation for Cursor?

Okay, cool. My big issue is that when I call seq on the cursors they hang forever. (At least for 5 minutes before I killed the thread in the 2-item...