I hereby claim:
- I am staypufd on github.
- I am staypufd (https://keybase.io/staypufd) on keybase.
- I have a public key ASCXD3EQsLw74ZdDgbVp8a8FSbdsPZTfKXFLm3H65kggqwo
To claim this, I am signing this object:
http://app.klipse.tech/?container&cljs_in.gist=viebel/69a7c0cdf289bad342fefe82fdeb7179 |
export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python2.7 | |
MYSQL=/usr/local/mysql/bin | |
MYBIN=~/bin | |
export PATH=$PATH:$MYBIN | |
export PATH=$PATH:$MYSQL | |
export DYLD_LIBRARY_PATH=/usr/local/mysql/lib:$DYLD_LIBRARY_PATH | |
# Colors |
I hereby claim:
To claim this, I am signing this object:
```clojure | |
(ns specialdemo.core | |
(:require [special.core :refer [condition manage]]) | |
(:gen-class)) | |
(defn fizz-buzz [i] | |
(let [f (fn [n] | |
(for [i (range n)] | |
(cond | |
(and (= (mod i 3) 0) |
initialize | |
| sampleCell width height n | | |
super initialize. | |
n := self cellsPerSide. | |
sampleCell := LOCell new. | |
width := sampleCell width. | |
height := sampleCell height. | |
self bounds: (5 @ 5 extent: (width * n) @ (height * n) + (2 * self borderWidth)). | |
cells := Array2D new: 5 tabulate: [ :i :j | self newCellAt: i at: j]. |
// Gist inspired by comment to: | |
// | |
// https://medium.com/javarevisited/re-write-this-java-if-else-code-block-or-ill-reject-your-pull-request-953f20c0f544 | |
import java.util.ArrayList; | |
import java.util.List; | |
class Scratch { | |
// Sample ops and input data for demo below |