Marak

Results 332 comments of Marak

Issue is due to changing the current working directory of node.js process after process starts and then you attempt to perform method using `iconv-lite`. The lazy require breaks since it's...

@dbussert Did you see my comment?

@ashtuchkin - This isn't something which requires you setup a reproducible environment to isolate or fix the bug. It seems to be simple. Looking at https://github.com/ashtuchkin/iconv-lite/blob/master/lib/index.js#L61 , we can see...

@ashtuchkin - Lazy loading of Node.js modules is not a best practice and can cause several issues. You should understand that `require` is a synchronous and blocking statement. The same...

Have you considered what is going to happen if someone is running a webserver with 1000s of requests per second and then `getCodec` method is called for the first time?...

@ashtuchkin - I've been reviewing this thread again since it popped up in my feed. Re-reading my old posts I can see the language and tone I was using wasn't...

Hrmm, I'm using some simple accept based routing to determine what to return. Can you send me a copy of what the outgoing HTTP request looks like from `w3m`? I've...

https://github.com/scottgonzalez/figlet-js http://en.wikipedia.org/wiki/FIGlet http://www.figlet.org/

Pretty much got this working now. Headless version is currently crashing, but I suspect it will be a minor fix for scope. Now whenever a `Thing` is created, it will...

@dominictarr - I've been working on decoupling bpipes internals and trying to figure out the ideal API implementation. For reference the `v0.2.0` branch has much cleaner code. For your first...