Re: [nodejs] Continue with package installation if node-gyp fails

2014-07-11 Thread Elijah Insua
https://www.npmjs.org/doc/package.json.html#optionalDependencies On Fri, Jul 11, 2014 at 11:55 AM, Pascal Mathis pmat...@snapserv.net wrote: Hello everyone I am currently trying to offer an *optional native library* for my own Node.js package. My library actually works 6+ (up to 20, didn't

Re: [nodejs] Node.js should delete __proto__ while we still have a chance (before we hit 1.0)

2013-09-24 Thread Elijah Insua
sigh. On Tue, Sep 24, 2013 at 8:24 PM, Mark Hahn m...@reevuit.com wrote: I don't know why this is in a node discussion group. Obviously node is not going to change V8. On Tue, Sep 24, 2013 at 3:21 PM, Tim Smart t...@fostle.com wrote: Please don't, `__proto__` is great if not abused.

Re: [nodejs] Re: SPI bit bang with node, process.binding and mmap bindings

2013-07-19 Thread Elijah Insua
looking to improve the 60kHz pullup/pulldown limit :) Mihai Ene On Thursday, July 18, 2013 9:27:45 PM UTC+3, Elijah Insua wrote: You may want to write this in C, but I'm not completely convinced yet. - Writing a large buffer. For some (yet) unknown reason, process.binding('fs') fails

Re: [nodejs] Re: SPI bit bang with node, process.binding and mmap bindings

2013-07-18 Thread Elijah Insua
You may want to write this in C, but I'm not completely convinced yet. - Writing a large buffer. For some (yet) unknown reason, process.binding('fs') fails with buffer larger than 8 octets. But trying to write 8 byte buffers is worthless, since only the first byte is taken into

Re: [nodejs] Re: You're going to have to rewrite it anyway

2013-07-09 Thread Elijah Insua
Can you explain what the magic slot numbers are used for? On Tue, Jul 9, 2013 at 10:08 AM, Tim Caswell t...@creationix.com wrote: On Tue, Jul 9, 2013 at 4:16 AM, Floby florent.j...@gmail.com wrote: Tim's examples are pretty nice. The only things missing for all my use cases are storing

Re: [nodejs] [Announcement] Norch- a search engine for node.js

2013-07-06 Thread Elijah Insua
Looks pretty rad! Is stemming and such in the pipeline? Sort of concerned about the if you index too much at once it will halt your server. Looks great, thank you for taking the initiative. I'll definitely be playing with this soon! --Elijah On Fri, Jul 5, 2013 at 7:12 AM, Fergus McDowall

Re: [nodejs] [ANN] ansi-canvas: Render a canvas node to your terminal

2013-06-11 Thread Elijah Insua
ahahaha, rad! nice work man On Tue, Jun 11, 2013 at 10:07 PM, Nathan Rajlich nat...@tootallnate.netwrote: ansi-canvas is badass: https://github.com/TooTallNate/ansi-canvas Please have fun and create awesome stuff with it. Peace. -- -- Job Board: http://jobs.nodejs.org/ Posting

Re: [nodejs] [ANN] Bellite toolkit for hybrid desktop apps

2013-06-05 Thread Elijah Insua
looks neat, but how does this differ from something like node-chrome? -- Elijah On Wed, Jun 5, 2013 at 1:09 PM, Shane Holloway (IEEE) shane.hollo...@ieee.org wrote: Hello all! I've been working on expanding Bellite to languages like Node, Ruby and Python, and I'm thrilled to be making the

Re: [nodejs] node + raspi + Internet of Things (IoT)

2013-01-11 Thread Elijah Insua
Nice talk Rakesh! On Fri, Jan 11, 2013 at 2:11 PM, Rakesh Pai rakesh...@gmail.com wrote: I've created pi-gpio https://github.com/rakeshpai/pi-gpio to work with the Pi, though it might be slightly out of date judging by the pull requests. Haven't had the chance to review them. Had given a

Re: [nodejs] Dependency based asynchronous flow

2013-01-09 Thread Elijah Insua
Oh right, I'm still on the hook for making a visual editor for this thing ;) On Wed, Jan 9, 2013 at 3:38 PM, Tim Caswell t...@creationix.com wrote: Oops, forgot the link. Here is the article announcing it from almost 3 years ago http://howtonode.org/step-of-conductor On Wed, Jan 9, 2013 at

Re: [nodejs] [ANN]: npmrc - a tool to switch between .npmrc files

2012-09-18 Thread Elijah Insua
Cool, thanks for sharing! -- Elijah On Tue, Sep 18, 2012 at 7:15 PM, Conrad Pankoff deo...@fknsrs.biz wrote: At work, I've got a private npm registry set up for deployment of internal modules. While working with it, I found myself doing a lot of `ln -s ~/.npmrcs/work ~/.npmrc` stuff and it

Re: [nodejs] Re: [ANN] New release of node-webkit - run node.js apps on desktop

2012-08-15 Thread Elijah Insua
Just execute 'npm install' will do the work, an 'require' in script tag works for an app like this: Got ya, makes sense. In order for that to work properly (I'm looking at osx specifically) you'd need to have node 32bit installed for any addons that you might be adding to your application.

Re: [nodejs] Re: Node 0.1.1 to 0.8.0

2012-06-23 Thread Elijah Insua
Lol'd On Jun 23, 2012 1:33 PM, Ben Noordhuis i...@bnoordhuis.nl wrote: On Sat, Jun 23, 2012 at 9:53 PM, Tim Dickinson price.ti...@gmail.com wrote: snip Thanks very must to ry! should be snip Thanks very much to ry! I would very much like to see Ryan come back. I would like to know

Re: [nodejs] Node and developing on multiple machines

2012-06-22 Thread Elijah Insua
dropbox On Fri, Jun 22, 2012 at 2:52 PM, Ralphtheninja (Magnus Skog) lars.magnus.s...@gmail.com wrote: Hi, It's very common that I use several machines while developing and those machines might also be in different locations. I have two machines at home and two machines at my moms etc.

Re: [node-dev] Re: process.nextTick semantics

2012-05-31 Thread Elijah Insua
The only thing that I've used this for was a less glitchy timer than setTimeout ( https://github.com/Marak/JSONloops/blob/master/lib/JSONloops/looper.js#L131-162). I'm sure there are better ways to get a precision timer, but we were deep in the zone of music hack day. -- Elijah On Thu, May 31,

Re: [nodejs] After upgrading from node v4 - v6.11 my jsdom window changed from DOMWindow to global

2012-04-25 Thread Elijah Insua
On Wed, Apr 25, 2012 at 11:28 AM, toranb tor...@gmail.com wrote: I've been using jasmine to unit test my javascript the last few months. I've been running these tests with node (v4) jsdom/jasmine- node/jasmine-jquery Everything was fine until I had to upgrade from node v4 -I did a make