Deleted user
Deleted user
Here's the first part of materializing bundles, which performs the inverse of `browser-pack`: [browser-unpack](https://npmjs.org/package/browser-unpack). The next part is just to translate this format back into a browserify instance, which I...
For example: ``` javascript { "name" : "browser-badge", "version" : "1.1.0", "description" : "generate browser version compatibility badges", "main" : "index.js", "bin" : { "browser-badge": "bin/cmd.js" }, "directories" : {...
Yes, this is the project package.json. Suppose we want to conditionally load the **canvas** and **optimist**. After the build process, there will be three bundles, **canvas** and **optimist** have their...
FYI, editing files in place is the default behaviour of hindent when file path is provided as an argument (as opposed to stdin redirection).
Yeah, Apple won't ship a version of GCC new enough to have lambdas because they're all GPLv3. Clang will probably have them in a few months though. Which will be...
here's a patch containing all my changes to make it compile. I would just push my changes to my fork but this is a second GitHub account and GitHub doesn't...
turns out the dispatch_get_main_queue() macro isn't shadowing a function at all: `#define dispatch_get_main_queue() (&_dispatch_main_q)` and now I've pushed my changes to my fork
No, the linker reports it as an undefined symbol.
Ah, I should have seen that myself. extern "C" does indeed work.
> This function returns the thread-specific queue of the current thread. A quick example of this can be seen here: https://github.com/DrPizza/libdispatch/blob/master/libdispatchtest/src/dispatch_windows.cpp Essentially, this is the arbitrary thread equivalent to retrieving...