danschumann
danschumann
Hello, I've been using ect for a while and dig its features. For a while, as well, I've been doing `` within my ``, where `@_` is underscore, `@headScripts` is...
Hey all, I'm glad to see that there is the same spark that died in coffeescript reignited here. Originally I'm sure they meant to continually reinvent conventions as to what...
`Cannot GET /forecast/__APIKEY__/39.63953756436671,-91.3623046875,10/22/2014T10:22:00?units=us` was my `data`, because my date was messed up. Only problem was that it was taking down the whole server. This should fix that.
`style={color: 0xfff}` seems pretty natural as js allows `0xfff`. I like that notation better than using a string `'#fff'`. There wouldn't be a time when you'd give color a single...
On Mac ( el capitan ), The signing app ( as described in http://docs.nwjs.io/en/latest/For%20Users/Advanced/Support%20for%20Mac%20App%20Store/ ) only works with the version contained in the mas download ( 0 .19.5 ) Is...
Took me a while to figure how to get the wheel installed. This is the docker file that ended up working
I'm wondering if there is a way to create a space wherever tags were. Picture this: `Some sentence.Some other Sentence` It converts to `Some sentence.Some other Sentence` when I run...
In coffeescript you can make an object like this ``` myVar = 10 otherVar = 20 object = {myVar, otherVar} # object == {myVar: myVar, otherVar: otherVar} ``` I would...