Skip to content

Instantly share code, notes, and snippets.

View neenaoffline's full-sized avatar

Ravi Chandra Padmala neenaoffline

View GitHub Profile
@neenaoffline
neenaoffline / git_commit_template_setup.sh
Last active March 14, 2016 06:57 — forked from neeharv/git_commit_template_setup.sh
Setup simple git commit message template
wget -O ~/.git_commit_message.txt https://gist.githubusercontent.com/neeharv/7b2e074d9773ab5815fa/raw/caf23132755aa9c9f965d1cd726e02b7d76b8000/.git_commit_message.txt \
& git config --global commit.template ~/.git_commit_message.txt
@neenaoffline
neenaoffline / trial.clj
Last active January 13, 2016 20:37 — forked from anonymous/trial.clj
(defn trial []
(->> (cheshire/parse-string (:body (lf/get-restaurants)) true)
:restaurants
(reduce (fn [acc {:keys [name]}] (conj name)) [])
(res/response)))