I hereby claim:
- I am cddr on github.
- I am cddr (https://keybase.io/cddr) on keybase.
- I have a public key whose fingerprint is 64E1 19C6 8F72 F2C4 E650 F321 4093 000D 8C99 8B18
To claim this, I am signing this object:
(defentity Employee | |
:schema {:id Int, :name Str} | |
:links [(link :department [Department :id])] | |
:uniqueness {:id :db.unique/identity}) |
(defentity Department | |
:schema {:id Int | |
:name Str} | |
:uniqueness {:id :db.unique/identity}) |
(defn encrypt [attr] | |
(reify | |
clojure.lang.Named | |
(getNamespace [this] | |
(.getNamespace attr)) | |
(getName [this] | |
(.getName attr)) | |
clojure.lang.IFn | |
(invoke [_ obj] |
# Lets thank Arnold for the headphones! | |
# | |
# Next time you're doing coding hours, get your headphones on and | |
# run this script in a terminal. | |
# | |
# Usage: | |
# | |
# 1. Download imagesnap from here: https://github.com/rharder/imagesnap | |
# 2. Update the global variables below according to where you put imagesnap | |
# and where you'd like the images to show up |
I hereby claim:
To claim this, I am signing this object:
git diff HEAD --no-color > /tmp/stage.diff | |
git apply -R /tmp/stage.diff | |
git apply --whitespace=fix /tmp/stage.diff |
#!/bin/sh | |
# MVP precommit hook that keeps the Changelog up-to-date. | |
# | |
# Assumes that `pwd` is the project root | |
./scripts/gitlog-to-changelog >Changelog | |
git add Changelog |
#!/bin/sh | |
# MVP precommit hook that keeps the Changelog up-to-date. | |
# | |
# Assumes that `pwd` is the project root | |
./scripts/gitlog-to-changelog >Changelog | |
git add Changelog |
So if we have the following line item...
line_item
ad_distribution{:price_per_unit = 20}
buy_item{:id = 1}
buy_item{:id = 2,
:price_per_unit = 40}
So if we have the following line item... | |
line_item | |
ad_distribution{:price_per_unit = 20} | |
buy_item{:id = 1} | |
buy_item{:id = 2, | |
:price_per_unit = 40} | |
I think the first case is simple. Seems we should return.... |