Skip to content

Instantly share code, notes, and snippets.

View k1m190r's full-sized avatar

k1m190r k1m190r

View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@k1m190r
k1m190r / FRP iOS Learning resources.md
Created January 23, 2016 07:41 — forked from JaviLorbada/FRP iOS Learning resources.md
The best FRP iOS resources.

Videos

@k1m190r
k1m190r / Datomic News Updates
Created June 20, 2012 08:39 — forked from stuarthalloway/Datomic News Updates
Datomic update examples against a social news database
;; Datomic example code
;; demonstrates various update scenarios, using a news database
;; that contains stories, users, and upvotes
;; grab an in memory database
(use '[datomic.api :only (q db) :as d])
(def uri "datomic:mem://foo")
(d/create-database uri)
(def conn (d/connect uri))