Skip to content

Instantly share code, notes, and snippets.

View NeilMenne's full-sized avatar

Neil Menne NeilMenne

  • Chattanooga, TN
View GitHub Profile

Keybase proof

I hereby claim:

  • I am neilmenne on github.
  • I am neilmenne (https://keybase.io/neilmenne) on keybase.
  • I have a public key ASCf79Q9mZiPetNVyxQPLAa0WfRE44LmLgQwkDsbl8iVwgo

To claim this, I am signing this object:

@NeilMenne
NeilMenne / core.clj
Last active April 1, 2016 19:12
mapcat testing
(ns lab.core
(:gen-class)
(:require [clojure.core.async :as a]))
(defn event-proc
"linearize event logging"
[chan]
(a/thread
(loop []
(let [{:keys [label data]} (a/<!! chan)