jldailey

Results 3 comments of jldailey
trafficstars

Correction: the only issue is the lack of caching, the lack of assignment is a result of the contrived example. ``` -> return cache[func()] ?= cache[func()] ?= [] ``` This...

Allowed, but terrible: ``` Math.min [ a, b ]... ``` Not allowed, but obvious and natural: ``` Math.min( a, b ) ``` ???

http://gist.github.com/424258 In a system a couple years ago, I added the same feature, the above gist is the code for using zlib to make a stream that a browser will...