[nodejs] Re: Hosting of Application in Europe

2014-11-16 Thread Alexey Slaykovsky
Look at the DigitalOcean VPS service. I use it and it's really awesome. It's better then Hetzner On Saturday, November 8, 2014 7:18:46 AM UTC+8, Markus Kuhn wrote: Hi Everybody, i found some entrys to my question, but they are old or not specific enough. Got the following question and

[nodejs] Help me to understand my own code

2014-11-16 Thread Alexey Slaykovsky
Hello, guys! I need help. I wrote a code which takes one object, another object and then changes values of that second object. Code: https://gist.github.com/slaykovsky/dcae4b221b2716452272 And this code is nice for me. It makes this transformation async and nonblocking. But! I need my output

[nodejs] How to connect Kinect V2 with Node

2014-11-16 Thread 10besefarshad
Hello I am working on a project which involves node based website i want to use kinect as an input for the website. I was wondering if there is any support available for kinect with a node based web application. Kindly guide me if there is a way available. Regards -- Job board:

[nodejs] Re: How to get V8 GarageCollection-related metrics in Node application

2014-11-16 Thread Phillip Johnsen
I just stumbled upon the new core module tracing. Its part of v0.11 so this is more for future reference than production use for most projects I guess. It brings with it a gc-event which seems promising with before / after stats:

[nodejs] Re: Help me to understand my own code

2014-11-16 Thread Alexey Slaykovsky
Thanks to Alex Kocharin! It's working like a charm. Look at that gist https://gist.github.com/rlidwka/8a375c02042eaf0b05b0 On Sunday, November 16, 2014 9:27:32 PM UTC+8, Alexey Slaykovsky wrote: Hello, guys! I need help. I wrote a code which takes one object, another object and then changes

Re: [nodejs] does node actually use process.config.variables?

2014-11-16 Thread Ben Noordhuis
On Sun, Nov 16, 2014 at 12:20 AM, Andreas Marschke andreas.marsc...@gmail.com wrote: That'd be `andreas-marschke` See also: https://github.com/andreas-marschke Thanks! Invite's in your inbox, Andreas. -- Job board: http://jobs.nodejs.org/ New group rules:

Re: [nodejs] Help me to understand my own code

2014-11-16 Thread Alex Kocharin
 So, the only issue is that your callback is called multiple times, right? In that case you can make a counter, which you increase when you're creating callback and decrease when your callback is called. If it's zero again, the work is finished. Here is a gist code which'll hopefully answer