Re: [nodejs] Run CImg library with node-gyp error

2013-01-14 Thread Ben Noordhuis
On Tue, Jan 15, 2013 at 7:08 AM, zhonghua wu wrote: > HI,ALL > > I want to use CImg library to deal images in node.js,so i write an node > addon to do it. The compile is success, i run node-gyp build commond, that's > ok. > > But when i run the node program,the follow error occurs: > > [root@local

Re: [nodejs] Re: Debian Nodejs Package Maintainer

2013-01-14 Thread Arunoda Susiripala
Install binaries from nodejs.org or use a tool like nvm - https://github.com/creationix/nvm Thats the best way to get update yourself. On Tue, Jan 15, 2013 at 4:04 AM, Ben Noordhuis wrote: > On Mon, Jan 14, 2013 at 10:56 PM, kapouer wrote: > > Of course nodejs is going to be updated in debian,

Re: [nodejs] basic dependency question

2013-01-14 Thread Isaac Schlueter
Dan, Rick, and Angel are all correct, but it depends somewhat on the situation. See https://npmjs.org/doc/folders.html for a thorough explanation of how npm does this, and http://api.nodejs.org/modules.html for a thorough explanation of how Node resolves require() calls to real files. Note that n

[nodejs] [ANN] eventflow - Add asynchronous abilities to your EventEmitters

2013-01-14 Thread Brian Link
Over the past few months I've been using this little utility module in my applications. Thought I would share it here now that it is stable and well-documented. https://github.com/cpsubrian/node-eventflow EventFlow exposes some of the great flow-control utility provided by caolan's async modu

Re: [nodejs] Re: Debian Nodejs Package Maintainer

2013-01-14 Thread Ben Noordhuis
On Mon, Jan 14, 2013 at 10:56 PM, kapouer wrote: > Of course nodejs is going to be updated in debian, it's only a matter of > time. > It is not small work to do, so you can help... or just wait, but don't hold > your breath. > Instead of working i just spend two hours on that matter tonight. Will

Re: [nodejs] Re: Debian Nodejs Package Maintainer

2013-01-14 Thread Rick Waldron
On Mon, Jan 14, 2013 at 5:12 PM, kapouer wrote: > > > On Monday, January 14, 2013 11:01:31 PM UTC+1, Rick Waldron wrote: > >> >> >> >> On Mon, Jan 14, 2013 at 4:56 PM, kapouer wrote: >> >>> Of course nodejs is going to be updated in debian, it's only a matter of >>> time. >> >> >> 6 months? >> >

Re: [nodejs] Re: Debian Nodejs Package Maintainer

2013-01-14 Thread kapouer
On Monday, January 14, 2013 11:01:31 PM UTC+1, Rick Waldron wrote: > > > > > On Mon, Jan 14, 2013 at 4:56 PM, kapouer >wrote: > >> Of course nodejs is going to be updated in debian, it's only a matter of >> time. > > > 6 months? > You have no right to consider me as an asset. -- Job Board:

Re: [nodejs] Re: Debian Nodejs Package Maintainer

2013-01-14 Thread Rick Waldron
On Mon, Jan 14, 2013 at 4:56 PM, kapouer wrote: > Of course nodejs is going to be updated in debian, it's only a matter of > time. 6 months? > It is not small work to do, so you can help... or just wait, but don't > hold your breath. > Instead of working i just spend two hours on that matter

[nodejs] Re: Debian Nodejs Package Maintainer

2013-01-14 Thread kapouer
Of course nodejs is going to be updated in debian, it's only a matter of time. It is not small work to do, so you can help... or just wait, but don't hold your breath. Instead of working i just spend two hours on that matter tonight. Will you give me back those two hours by helping packaging nod

[nodejs] Re: Debian Nodejs Package Maintainer

2013-01-14 Thread Bradley Meck
writing -- 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 unsubscr

Re: [nodejs] Node.js server side using restAPI based on Oracle database

2013-01-14 Thread Petr Simbera
Hi Andrey, thanks a lot. I will study these links...I have basic ideas, that I have generators for API (Oracle Stored procedures), and now I would like to generate restfull api above it via some scalable technology (performance and scalability is needed). I'm not professional in web, only on dat

Re: [nodejs] basic dependency question

2013-01-14 Thread Rick Waldron
On Mon, Jan 14, 2013 at 4:02 PM, Angel Java Lopez wrote: > Well, it could be that B uses C-0.0.1 (declared in its package.json), and > A uses C-0.0.2 > > So > > A --> B --> C-0.0.1 > A --> C-0.0.2 > > node_modules/A/node_modules/B/node_modules/C <-- C-0.0.1 here > node_modules/A/node_modules/C <--

[nodejs] Debian Nodejs Package Maintainer

2013-01-14 Thread Rick Waldron
Dearest Community, I'd like to ask you all to step up and do your part for a better Node.js ecosystem. The current maintainer of the Node.js Debian Package has decided that it's too burdensome and without sufficient merit to update the Debain Node.js from 0.6.x to 0.8.x. A Debian core committer re

Re: [nodejs] basic dependency question

2013-01-14 Thread Dan Milon
Right. I was referring to modules of the same package. On 01/14/2013 11:02 PM, Angel Java Lopez wrote: > Well, it could be that B uses C-0.0.1 (declared in its > package.json), and A uses C-0.0.2 > > So > > A --> B --> C-0.0.1 A --> C-0.0.2 > > node_modules/A/node_modules/B/node_modules/C <--

Re: [nodejs] basic dependency question

2013-01-14 Thread Angel Java Lopez
Well, it could be that B uses C-0.0.1 (declared in its package.json), and A uses C-0.0.2 So A --> B --> C-0.0.1 A --> C-0.0.2 node_modules/A/node_modules/B/node_modules/C <-- C-0.0.1 here node_modules/A/node_modules/C <-- C-0.0.2 here On Mon, Jan 14, 2013 at 5:49 PM, Dan Milon wrote: > Depen

Re: [nodejs] basic dependency question

2013-01-14 Thread Dan Milon
Dependencies (aka `require`s) are resolved synchronously. So the flow is: A --> B --> C A --> C Also modules are cached. [1] ie, they are not loaded twice. A and B "see" the same version of C. [1] http://nodejs.org/docs/latest/api/modules.html#modules_caching Hope this helps, danmilon. On 01/1

Re: [nodejs] basic dependency question

2013-01-14 Thread Rick Waldron
No, they do not share C, they will use their own version of C, which is whatever is specified in the package.json file for that module. Rick On Mon, Jan 14, 2013 at 2:45 PM, Thiago Souza wrote: > Hello all, > > I've got a basic dependency question. Consider the following > dependencies:

[nodejs] basic dependency question

2013-01-14 Thread Thiago Souza
Hello all, I've got a basic dependency question. Consider the following dependencies: (module A) --> (module B) (module A) --> (module C) (module B) --> (module C) So, C is a shared dependency between A and B, but A also depends on B. My question is

Re: [nodejs] NodeJS - { [Error: socket hang up] code: 'ECONNRESET' }

2013-01-14 Thread Harald Hanche-Olsen
[ (2013-01-14 18:41:11 UTC)] > Hi, > > i'm getting data via http get method Node JS but i get this error often "{ > [Error: socket hang up] code: 'ECONNRESET' }" error on console. > > What do you think the problem? Without further information, I'd assume that the remote end has closed the conn

[nodejs] NodeJS - { [Error: socket hang up] code: 'ECONNRESET' }

2013-01-14 Thread buroox
Hi, i'm getting data via http get method Node JS but i get this error often "{ [Error: socket hang up] code: 'ECONNRESET' }" error on console. What do you think the problem? -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guid

Re: [nodejs] Re: Anyone here using haraka.js?

2013-01-14 Thread Matt
Hmm, I'll look into the mailing list. But should probably switch it to google groups. You can ask me directly, yes. On Mon, Jan 14, 2013 at 5:28 AM, akira wrote: > Speak of the "devil" :) Matt, the mailing list subscription does not > work at all, it fails with a mail reply that my addresse co

[nodejs] [ANN] Boston Node.js in the wild January Meetup

2013-01-14 Thread Daniel Rinehart
The Boston based Node.js in the wild Meetup group will be holding its next meeting on Wed Jan 16 at 7pm in the Brightcove offices. This meetup will be a series of lightening talks with the following tentative schedule: James Morrin - "AOP programming using meld.js" Tyler Renelle - "My tools of th

Re: [nodejs] What is the preferred authentication system for Node.js?

2013-01-14 Thread Harald Hanche-Olsen
[Floby (2013-01-14 09:07:37 UTC)] > I don't see how frequent updates mean insecure software. I never said that. For the last time: "A does not imply B" is not the same as "A implies not-B". I made a statement of the former kind, and keep receiving responses as if I said the latter. - Harald --

Re: [nodejs] Help creating node js https server

2013-01-14 Thread vaibhav mande
Hi murvinlai, Thanks for the reply. I tried removing toString as you suggested, also I read the question you posted as stackoverflow but still cant get it working. Please let me know if you find anything else related to this which i can try to get this working. On Friday, 11 January 2013 01:00:

[nodejs] Decrypt rememberMe cookie generated in Java

2013-01-14 Thread Tauren Mills
I'm trying to figure out how to decrypt a rememberMe cookie in node that was generated by the java-based Apache Shiro security framework. If anyone has done something similar and can offer any advice, please let me know! Below is my attempt to decrypt the cookie. The code includes a real cookie an

[nodejs] Re: Remove diacritic from text

2013-01-14 Thread greelgorke
try this https://github.com/FGRibreau/node-unidecode Am Montag, 14. Januar 2013 11:04:43 UTC+1 schrieb Danilo Luiz Rheinheimer Danilo: > > Hi, > > Someone is aware os a funcion to remove diacritics (accebts) from words > on node.js string. In fact what I want is to replace the char with the >

Re: [nodejs] Remove diacritic from text

2013-01-14 Thread Diogo Resende
I think what you want is something like transliteration using for example iconv lib, like in PHP: $new_text = iconv("utf-8", "ascii//translit", $text); Something like this I think... -- Diogo Resende On Monday, January 14, 2013 at 10:04 , Danilo Luiz Rheinheimer Danilo wrote: > Hi, > >

[nodejs] Re: Anyone here using haraka.js?

2013-01-14 Thread akira
Speak of the "devil" :) Matt, the mailing list subscription does not work at all, it fails with a mail reply that my addresse could not be added to the list. Please consider opening up a google group for haraka I have a few questions on Haraka, actually basic stuff, should I address them to you di

[nodejs] Remove diacritic from text

2013-01-14 Thread Danilo Luiz Rheinheimer Danilo
Hi, Someone is aware os a funcion to remove diacritics (accebts) from words on node.js string. In fact what I want is to replace the char with the diacritic with his version without the diacritic. If I have a string like : Imóvel I want the funcion result to be : Imovel Danilo. -

Re: [nodejs] What is the preferred authentication system for Node.js?

2013-01-14 Thread Tauren Mills
We built a module to simplify the implementation of a password recovery feature: https://github.com/SportZing/node-pass-reset https://npmjs.org/package/pass-reset It was built in a way that is completely agnostic to the user's choice of database, web framework, auth framework, mailer, email templa

[nodejs] nCombo single-page app framework

2013-01-14 Thread Jonathan Gros-Dubois
My framework nCombo has reached maturity and it needs some feedback from real Node.js devs. Here's the website (appologies for incomplete documentation): http://ncombo.com I will also appreciate any criticism related to the website and its design, tutorial format, etc... -- Job Board: http://

Re: [nodejs] What is the preferred authentication system for Node.js?

2013-01-14 Thread Floby
I don't see how frequent updates mean insecure software. It often means it's getting better. Everyauth hasn't changed significantly in a year or so. As an example, I get updates for `sudo` every once in a while on my linux. On Sunday, 13 January 2013 18:05:41 UTC+1, Harald Hanche-Olsen wrote: > >

[nodejs] Re: Express.io - Live Realtime HTML5 Canvas Demo

2013-01-14 Thread Julian Gruber
In Chrome 24: Uncaught TypeError: Cannot call method 'clearRect' of undefined On Monday, January 14, 2013 1:01:14 AM UTC+1, Brad Carleton wrote: > > I just made a live realtime canvas demo using > express.io > . > > It uses a hodge podge of cool nodejs and javascript tech