Vic Goldfeld
Vic Goldfeld
It would be useful to have something like 'git bump undo/reset/revert' to undo the last version (reset commit, delete tag, etc.) I see thif mainly for experimentation and development purposes,...
So.. I know it's farfetched, but I saw there's this https://github.com/lbradstreet/instaparse-cljs and all.. I'm especially interested in using this with cljs under Node.js (it's where I'm doing most clojure dev...
Imagine I'm doing an app in GS, and then I decide a portion of functionality should be extracted into a standalone lib in the same language. Now, for the purposes...
I'm getting this error when I try to use the following sample code from the readme: ``` Clojure (with-open [rdr (clojure.java.io/reader "/tmp/bigfile")] (let [sentences (sentence-seq rdr get-sentences)] ;; process your...
``` (ns user (:use [dogfort.http :only [run-http]]) (:require [dogfort.middleware.routing]) (:use-macros [dogfort.middleware.routing-macros :only [defroutes GET]])) (defroutes app (GET "/hello/:name" [name] ["Hello " name "!"])) (run-http app {:port 1337}) ``` The example...