[nodejs] Re: WARNING: ev_unref is deprecated, use uv_unref

2012-08-31 Thread Oleg Efimov (Sannis)
https://github.com/joyent/node/wiki/API-changes-between-v0.6-and-v0.8, especially two links in Deprecated section. пятница, 31 августа 2012 г., 1:11:50 UTC+4 пользователь Pavi написал: Hi I get, WARNING: ev_unref is deprecated, use uv_unref Warning when i try to run my Java script. I tried

[nodejs] Re: Do you know any password entropy/strength library.

2012-08-31 Thread Pedro Narciso García Revington
Ha, ha, ha, I totally agree. El jueves, 30 de agosto de 2012 22:04:57 UTC+2, Oleg Efimov (Sannis) escribió: I’ll just leave this here: http://xkcd.com/936/ четверг, 30 августа 2012 г., 14:47:37 UTC+4 пользователь Pedro Narciso García Revington написал: Hi, I need one that works both in

Re: [nodejs] Re: Do you know any password entropy/strength library.

2012-08-31 Thread Pedro Narciso García Revington
Ha, ha, Oleg I totally agree. Gary I'll give I try. Sounds good to me. Thanks to you both, Regards, Pedro El jueves, 30 de agosto de 2012 22:16:16 UTC+2, Gary Katsevman escribió: there's the new dropbox lib, Dont know if it works server-side: https://tech.dropbox.com/?p=165 -- Gary

Re: [nodejs] How cluster master pass data to workers ondata listener

2012-08-31 Thread jg
Perhaps the discussion found https://github.com/joyent/node/issues/3324 might help you understand the way it works better. As to why the system doesn't error on children processes listening to the same port, I don't know. -- Job Board: http://jobs.nodejs.org/ Posting guidelines:

Re: [nodejs] Feature poll: Do you use the clientError event?

2012-08-31 Thread Christian Tellnes
2.5 -- Mvh. Christian Vaagland Tellnes http://christian.tellnes.com/ -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups nodejs group. To post to

[nodejs] Re: Feature poll: Do you use the clientError event?

2012-08-31 Thread jg
2 -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups nodejs group. To post to this group, send email to nodejs@googlegroups.com To unsubscribe

Re: [nodejs] Re: Do you know any password entropy/strength library.

2012-08-31 Thread Oleg Efimov (Sannis)
zxcvbn was written in coffeescript and then compiled to javascript. So it should not be a problem to patch build script to add extra `exports.zxcvbn = ... ` to make it node-requirable. пятница, 31 августа 2012 г., 13:35:05 UTC+4 пользователь Pedro Narciso García Revington написал: Ha, ha,

[nodejs] Pure Node.js or C++ for mathematic

2012-08-31 Thread Paolo Tagliani
Hello everyone, I have to write a server program that implements some fuzzy logic and I choose to write it in Node.js to take advantage of its event orientation. I have to work with difficult mathematic computational problem, and I don't know what's the best way to obtain performance: 1.

Re: [nodejs] Re: Feature poll: Do you use the clientError event?

2012-08-31 Thread dhruvbird
So is this like a place where _every_ accepted connection's error is propagated (in case there is an error on the accepted connection)? Also, what are the semantics? I mean does the error get propagated irrespective of the fact that it might be handled as an 'error' event on the specific 'req'

Re: [nodejs] Looking for a good xml parser in stream mode

2012-08-31 Thread dhruvbird
imho, node-expat (by @astro) is one of the best things you can use - you require to compile stuff though. https://github.com/astro/node-expat/ otherwise, you can try http://github.com/robrighter/node-xml -- Job Board: http://jobs.nodejs.org/ Posting guidelines:

Re: [nodejs] Pure Node.js or C++ for mathematic

2012-08-31 Thread Ben Noordhuis
On Fri, Aug 31, 2012 at 11:35 AM, Paolo Tagliani pablosproj...@gmail.com wrote: Hello everyone, I have to write a server program that implements some fuzzy logic and I choose to write it in Node.js to take advantage of its event orientation. I have to work with difficult mathematic

Re: [nodejs] Re: Feature poll: Do you use the clientError event?

2012-08-31 Thread Ben Noordhuis
On Fri, Aug 31, 2012 at 3:02 PM, dhruvbird dhruvb...@gmail.com wrote: So is this like a place where _every_ accepted connection's error is propagated (in case there is an error on the accepted connection)? Also, what are the semantics? I mean does the error get propagated irrespective of the

[nodejs] Re: Feature poll: Do you use the clientError event?

2012-08-31 Thread Bradley Meck
3 Hook into .on('request') or .on('connection') if you want it, thats how i do it already. On Wednesday, August 29, 2012 6:07:23 PM UTC-5, Isaac Schlueter wrote: Do you use the clientError event? Please choose one: 1. Yes, I use it all the time. Please don't change it ever, thank you.

[nodejs] Re: Feature poll: Do you use the clientError event?

2012-08-31 Thread Eldar
4 On Thursday, August 30, 2012 3:07:23 AM UTC+4, Isaac Schlueter wrote: Do you use the clientError event? Please choose one: 1. Yes, I use it all the time. Please don't change it ever, thank you. 2. I don't use it, but I'm aware of it, and I think I might someday. 3. I don't use

Re: [nodejs] node, buffers and realloc

2012-08-31 Thread codepilot Account
Buffers can in a way be resized, use slice to make smaller, and concat to make bigger. I doubt slice frees anything, but concat does allocate if it needs to. On Thu, Aug 30, 2012 at 2:48 PM, Ben Noordhuis i...@bnoordhuis.nl wrote: On Thu, Aug 30, 2012 at 11:12 PM, Seiji Sam Lee

[nodejs] Gracefully shutdown a node socket server

2012-08-31 Thread NodeNinja
At some point in my node script that is running on the server I need to shut it down so I have done this line of code process.kill(process.pid, 'SIGTERM'); This i guess will shutdown self then in the emitted event process.on('SIGTERM', function () { // close the server, it will stop

Re: [nodejs] Gracefully shutdown a node socket server

2012-08-31 Thread Ben Noordhuis
On Fri, Aug 31, 2012 at 8:01 PM, NodeNinja aeon6f...@gmail.com wrote: At some point in my node script that is running on the server I need to shut it down so I have done this line of code process.kill(process.pid, 'SIGTERM'); This i guess will shutdown self then in the emitted event

[nodejs] various failures on stable test suite

2012-08-31 Thread Garrett Johnson
Wasn't sure if it was worth making issues on github yet, so figured I would post here first. Red Hat (Linux version 2.6.32-279.5.1.el6.x86_64). === release test-net-connect-timeout === Path: simple/test-net-connect-timeout events.js:66 throw

[nodejs] Re: ANN: mariasql

2012-08-31 Thread mscdex
On Aug 22, 2:13 am, Oleg Efimov (Sannis) efimo...@gmail.com wrote: I plan to add possibility to run benchmark some times and show averages. But I have no idea when I finish this. I had a little free time today and whipped up a page for displaying benchmarks (using averaged data over n runs)