"I just implemented Conway's Game of Life in two lines of code. #fml"
pad = x flip[stitch] 0, stitch 0, flip[cat] 0, cat 0
life = pad, neighborhoods[3 3], [ravel, [sum in?: [x @ 4, + 3; 3]]]/2
ּ_בּ | |
בּ_בּ | |
טּ_טּ | |
כּ‗כּ | |
לּ_לּ | |
מּ_מּ | |
סּ_סּ | |
תּ_תּ | |
٩(×̯×)۶ | |
٩(̾●̮̮̃̾•̃̾)۶ |
Latency Comparison Numbers (~2012) | |
---------------------------------- | |
L1 cache reference 0.5 ns | |
Branch mispredict 5 ns | |
L2 cache reference 7 ns 14x L1 cache | |
Mutex lock/unlock 25 ns | |
Main memory reference 100 ns 20x L2 cache, 200x L1 cache | |
Compress 1K bytes with Zippy 3,000 ns 3 us | |
Send 1K bytes over 1 Gbps network 10,000 ns 10 us | |
Read 4K randomly from SSD* 150,000 ns 150 us ~1GB/sec SSD |
site:http://www.opengl.org/registry/api/
// Original version: http://play.golang.org/p/ebO20f-eax | |
// Requires Rust 0.5. | |
extern mod std; | |
use io::WriterUtil; | |
const WIDTH: uint = 76; | |
const HEIGHT: uint = 10; | |
const NUM_BALLS: uint = 10; |
[ | |
{ | |
"caption": "SublimeREPL: SML", | |
"command": "run_existing_window_command", "args": | |
{ | |
"id": "repl_sml", | |
"file": "config/SML/Main.sublime-menu" | |
} | |
} | |
] |
;; knowledge representation, syllogism via knowledge base | |
(defrecord Triple [subject predicate object]) | |
(def knowledge-base | |
[(Triple. :Socrates :is-a :Greek) | |
(Triple. :Greek :is-a :human-being) | |
(Triple. :human-being :has-property :mortal)]) | |
(defn collect-predicate-along-axis [kb subject predicate axis] |