Joe Pea
Joe Pea
This is confusing: ``` js channel.output.put(x) var data = channel.input.take() ``` If we're using words like "input" and "output" to describe parts of a channel, It seems like we'd `put`...
Is there a cache? The `electron-rebuild` process completes really fast, which makes it seem like it is using results from a cache? If so, where is it so I can...
Doesn't seem to do anything on TypeScript files. Is it an easy fix?
https://github.com/Mr0grog/newless/blob/3fe059f3f8ac26d945afb01c880dd68d2e61d631/newless.js#L50-L61 Right there, I visited that link, and it seems nowadays bind is a lot faster (in Chrome): 
What would be the pattern for that? (Good thing it's probably a lot simpler in elmish than in elm since it's just JS).
I see package.json's `main` field points to `index.js`, which is a non-existent file. How do we prepare project-references-demo to be an NPM package? Should we remove the `main` field? Does...
Have you seen [vim-startify](https://github.com/mhinz/vim-startify)? It's pretty nice. It shows a list of recent files and sessions on startup or on demand with the `Startify` command. To make this work with...
package.json doesn't have `famous` as a dependency, so people installing this from npm won't be able to use it if they haven't manually installed famous already. Check out my [package.json](https://github.com/infamous/infamous/blob/master/package.json)...
I found a bug with markdown syntax highlighting. It's a bug with vim's default markdown highlighting, but Ii thought maybe you could fix it with this plugin. The bug is...
https://github.com/justinfagnani/mixwith.js/blob/d34fe88ef3bb69d7e1751ad139208b656bf88a38/src/mixwith.js#L181 Seems that if `Symbol` is not defined, there will be an error. Maybe it needs to be a `typeof Symbol != 'undefined'` check.