I hereby claim:
- I am luciodale on github.
- I am luciodalessandro (https://keybase.io/luciodalessandro) on keybase.
- I have a public key whose fingerprint is 6370 8524 C7D1 2A38 E56E 2A09 D5ED 7D83 6131 BB75
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
(require 'windmove) | |
;;;###autoload | |
(defun buf-move-up () | |
"Swap the current buffer and the buffer above the split. | |
If there is no split, ie now window above the current one, an | |
error is signaled." | |
;; "Switches between the current buffer, and the buffer above the | |
;; split, if possible." | |
(interactive) |
/* | |
Railscasts-like style (c) Visoft, Inc. (Damien White) | |
*/ | |
.debug-code pre { | |
background: #222; | |
border: none; | |
display: block; |
(ns cljs.tutorials.frontend.views | |
(:require [reagent.core :as r])) | |
(def state (r/atom {:columns ["a" "b" "c" "d"] | |
:rows (mapv (fn [x] | |
{"a" (str "a-" x) | |
"b" (str "b-" x) | |
"c" (str "c-" x) | |
"d" (str "d-" x)})(range 10))})) |