Skip to content

Instantly share code, notes, and snippets.

@jdreux
jdreux / gist:7c6634b084bca8a11b2c
Last active August 29, 2015 14:10
Emacs cheat sheet
C-p Up one line
C-n Down one line
C-f Forward one character
C-b Backward one character
C-a Beginning of line
C-e End of line
C-v Down one page
M-v Up one page
M-f Forward one word
M-b Backward one word
@jdreux
jdreux / main.clj
Created September 5, 2014 06:05
Test Clojure File
(def hundred-times (partial * 100))
(hundred-times 5)
@jdreux
jdreux / fiddle-home.clj
Last active December 29, 2015 14:59
A sample Clojure file
(clojure.string/join " " (map name [:welcome :to "clj-fiddle" :!]))