Tim Caswell
Tim Caswell
That looks pretty awesome (gitlet). I hope my work was somewhat useful to her. On Sat, Jan 24, 2015 at 8:12 PM, Dan Kaplun [email protected] wrote: > Looks like we...
Since the goal in NodeOS is to not ever need real git, it doesn't matter if gitlet's filesystem format is compatible. You could store the objects in leveldb and it...
Hmm, looking at gitlet in more detail, I don't think it actually implements pack protocol needed for git network transfers. The clone example is just cloning from another repo on...
@daurnimator do you understand what is being asked here? When I hear fifo, I think of the linux file objects created by `mkfifo(3)`, but I don't think that's @snoopcatt means....
@daurnimator, Thanks I understand the general concept of fifo queues, but the title "with luv" made me think maybe it was related to linux syscalls. For starters, here is a...
True, I've often been in a context where that was the only option, but I like the idea of using async or something to keep them on clean stacks.
That's not a problem, errors thrown by error handlers won't feed back into themselves.
My implementation idea is to add a couple global variables per luv instance. One will hold a reference to the current error handler function. The other will be a temporary...
I decided this is a very deep rabbit-hole with little benifit. I instead made a simple change to `lua_pcall` all callback event sources and hard-error if there is an uncaught...