heapwolf

Results 125 comments of heapwolf

Here is the best place to start i think -- http://ss64.com/bash/shopt.html

+1, can you whip up a quick test/PR for that?

I think what you want is the ability to cluster?

Right, at a high level, it doesn't need to do as much. That is really the main thing. Marshaling objects between JS and C++ means determining types and creating intermediate...

Rather, in this case there is _no_ marshaling of objects and no garbage collection since there is no Javascript in this project :) Having a _leaner_ Javascript server would have...

Well, its like this. Libuv is written in C. Libuv sits underneath Nodejs. Nodejs is a little bit of C++ and mostly Javascript on top. So the language hasn't really...

So i was able to do something like this to get backtraces on sigs... ``` void* callstack[128]; size_t size = backtrace(callstack, 128); char** symbols = backtrace_symbols(callstack, size); ``` Then loop...

hey @xdumaine how did you fix the `ima: error communicating to tpm chip` error? I get that on boot. If I disable `tpm` from the bios (hold down F4 at...