Pomax
Pomax
### What feature would you like to see? I understand that if you're on a modern Mac, it's going to compile for that mac, but does it _have_ to target...
Right now files can get copied into dirs that don't exist (yet), which can lead to FS errors. It would be a good idea to use `fs-extra` instead of `fs`,...
I've searched Google and the Raphael docs, but I can't seem to find any information on how to do a simple `path.reverse()` for the purposes of boolean shape operations. Is...
It's a little known fact that opentype is the font, and truetype is just one of four shape delivery methods... But it's always an excellent starting point into "so, opentype...
Surely this should be "An `.otf` file contains PostScript (CFF) outlines", since OpenType doesn't specify its own outlines =)
The instructions say to use ``` % npm install connect-auth % cp examples/example_keys_file.js examples/keys_file.js ``` however, after running npm install, there is no examples directory, and the `example_keys_file.js` file does...
node has progressed a decent amount since flickrnode was written, and the http module has seen an API overhaul, so your library no longer works, despite being _the only decent...
Is there a way to tell environ that `SOME_VAR=` in an env file is fine, and should lead to SOME_VAR being assigned the pythonic `None` when using the `SOME_VAR=(int, None)`...
This package is no longer compatible with React, and looks to be unmaintained. It would make a lot of sense to hit up the repo settings and archive it (which...
The RegExp for this is currently ``` search = "([ \\t]*)([\\w_]+)\\[([^\\.\\s]+(\\s*[\\+\\-\\*\\/]\\s*[^)]+)*)\\]\\s*(\\w+)($|\s*[^O])"; ``` but this should be ``` search = "([ \\t]*)([\\w_]+)\\[([^\\.\\s]+(\\s*[\\+\\-\\*\\/]\\s*[^\\]]+)*)\\]\\s*(\\w+)($|\s*[^O])"; ``` difference is in matching until ^] rather than...