Skip to content

Instantly share code, notes, and snippets.

@sorenmacbeth
Created June 16, 2011 22:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sorenmacbeth/1030408 to your computer and use it in GitHub Desktop.
Save sorenmacbeth/1030408 to your computer and use it in GitHub Desktop.
(defmapop decode-raw-ga [json]
(let [m (clj-json.core/parse-string json true)]
[(:timestamp m)]))
(defn glob-json-data [path]
(let [tap (hfs-textline path)]
(<- [!timestamp]
(tap !line)
(decode-raw-ga !line :> !timestamp)
(:distinct false))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment