Nathan Rajlich

Results 167 comments of Nathan Rajlich

Sounds like a great feature! And not too hard to implement off the top of my head. Feel free try whip up a patch, or I'll try to get to...

Turning `len` into a function would work as well. I kind of like that better! I'd recommend that we add a third, optional, parameter to the `get` callback that would...

@dnissley Do you have MSVS 2010 installed or some other version?

@hij1nx Awesome :) Note that I've just updated the gist to be more node version backwards and forwards compatible. Specifically, the `keypress` event should not be depended on, and using...

+1, docs are explained in https://developer.github.com/webhooks/

If we add [`minimatch`](https://github.com/isaacs/minimatch) as a dependency then we could just do something like: ``` bash $ hookshot -r refs/tags/* 'git pull && make' ``` Thoughts?

Ya I see the problem when debugging a Node app with `--inspect-brk`. The problem is that I can't seem to figure out a way to change the arguments passed to...

This is very cool @Qix- this will make me want to try out `--inspect` a lot more now! And ya when we add this we should definitely make sure normal...

Thank you for the patch. It's a 👎 from me personally because there have been plenty of times that I need to inspect a function object through debug. Instead I'd...

I would possibly be open to adding a built-in formatter (`%e` for eval perhaps?) that would execute the passed in function: ```js createDebug.formatters.e = fn => fn(); debug('%e', () =>...