I hereby claim:
- I am aengelberg on github.
- I am aengelberg (https://keybase.io/aengelberg) on keybase.
- I have a public key whose fingerprint is 9DEF 235B 2861 1B62 19A2 0D0B 87C7 F770 9E33 DB7A
To claim this, I am signing this object:
(ns testo.repl | |
(:use [clojure.pprint]) | |
(:require [instaparse.core :as insta])) | |
(def grammar "PHPDOC = '/**' {S|tag} '*/' | |
S = <'*'> #'.+' | |
tag = <{'*'} '@'> #'\\w*' params | |
params = #'.*'") | |
cljs.user=> (defn stack-size [] (try (inc (stack-size)) (catch :default e 0))) | |
#'cljs.user/stack-size | |
cljs.user=> (stack-size) | |
27835 |
(defn select-view | |
"Navigates to a sequence that is the result of a select on the | |
current structure. Has similar functionality of srange and filterer, | |
but can be used with arbitrary selectors making it vastly more | |
powerful." | |
[& path] | |
(fixed-pathed-path [late path] | |
(select* [this structure next-fn] | |
(next-fn (compiled-select late structure))) | |
(transform* [this structure next-fn] |
(ns onyx.metrics.riemann-playground) | |
(require '[riemann.client :as r]) | |
(def c (r/tcp-client {:host "192.168.99.100" :port 35002})) | |
(defn intensive-computation [] | |
(let [prom (r/send-events c (repeat 100000 {:status "ok"}))] | |
(println "Obtained promise") | |
(println (time (deref prom))))) |
I hereby claim:
To claim this, I am signing this object:
(ns hello-manifold.core | |
(:require | |
[aleph.http :as http] | |
[byte-streams :as bs] | |
[cheshire.core :as json] | |
[clojure.string :as str] | |
[manifold.deferred :as d] | |
[manifold.executor :as e] | |
[manifold.stream :as s])) |
(ns alex.csbnf | |
"Framework for writing parsers using CSBNF (Car Salesman Backus-Naur Form) notation." | |
(:require | |
[instaparse.combinators :as c] | |
[instaparse.core :as insta])) | |
(def csbnf-parser | |
(insta/parser | |
"grammar = rule+ |