Re: [nodejs] Editing PhotoShop smart objects using Node

2014-05-22 Thread Dave Ryan
I think Adobe did add some more detailed Javascript capabilities to photoshop recently heres a link to their api not sure if it helps http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/photoshop/pdfs/photoshop-cc-javascript-ref.pdf On Thu, May 22, 2014 at 6:05 PM, Aria Stewart wrote: > >

[nodejs] in spawn process memory usage is growing

2014-05-22 Thread Stefano Cudini
I use the follow code to run a PHP script in CLI environment within a nodejs daemon. The script takes the data in stdin performs the calculations and return other data to stdout. The problem is that to run the script with *child_process.spawn* and pipes to an *increasing memory usage*. So I

Re: [nodejs] Editing PhotoShop smart objects using Node

2014-05-22 Thread Aria Stewart
On May 22, 02014, at 12:49, santa wrote: > I ideally wanted to do this in Ubuntu. I think Photoshop has a scripting > language of some sort. But, I wished I could manipulate using node. npm search photoshop does show that there’s a PSD file parser; I don’t know how complete, nor whether furth

Re: [nodejs] node.js socket.io script getting killed by SIGSEGV after 1-2 days

2014-05-22 Thread mps
> > Any help on how i can generated the core dump file? -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines --- You received this message

[nodejs] NodeJS IPC which spec ? Alternative for Python to do a process.send() ?

2014-05-22 Thread Alexandre Strzelewicz
Hello, I'm spawning a Python script in NodeJS via .spawn() and I would like to know if there is an alternative to do a `process.send()` with Python ? What is the spec of the NodeJS IPC ? System V IPC vs POSIX IPC ? Thanks, -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.g

[nodejs] how to connect node.js with ldap server

2014-05-22 Thread abhi garg
Hello, How to connect to remote ldap server for valid authentication using node.js. Is passport is the valid way ? Any suggestion or help ? Thank You. -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: ht

Re: [nodejs] Editing PhotoShop smart objects using Node

2014-05-22 Thread santa
I ideally wanted to do this in Ubuntu. I think Photoshop has a scripting language of some sort. But, I wished I could manipulate using node. On Thursday, May 22, 2014 9:28:59 PM UTC+5:30, Aria Stewart wrote: > > > On May 21, 02014, at 23:51, santa > > wrote: > > Hello All, > > I have some *simpl

Re: [nodejs] Adding modules to node.js on Android

2014-05-22 Thread Kevin Ingwersen
Am 22.05.2014 um 17:51 schrieb Aria Stewart : > > On May 22, 02014, at 10:04, Ingo Albers wrote: >> >> For a new project I need some modules (serialport, socket.io, express) but I >> can't use npm on my device. I tried building the modules on an ARM QEMU but >> those modules didn't work. >

Re: [nodejs] establish several http connections without closing

2014-05-22 Thread Aria Stewart
On May 22, 02014, at 4:33, Nuno Barros wrote: > yes i need them to stay keepalive state, my objective is to create 100 http > conectins if no error is given + 100 till i can check a max of nat ports in a > router That doesn’t sound like you need keepalive state, just open sockets. On May 22,

Re: [nodejs] Editing PhotoShop smart objects using Node

2014-05-22 Thread Aria Stewart
On May 21, 02014, at 23:51, santa wrote: > Hello All, > > I have some simple photoshop files. They have smartobjects in them and want > to replace particular images in the smart object programmatically using node. > > Nothing too fancy. An exact size image should go and replace in the > smar

Re: [nodejs] Scaling a spdyproxy Node.js server

2014-05-22 Thread Fedor Indutny
Hello! You could try setting `bud` (https://github.com/indutny/bud) in front of your servers, or using latest development version of node.js (0.11.x). Both have much better performance than node v0.10 Cheers, Fedor. On Thu, May 22, 2014 at 7:37 PM, Sai wrote: > > Hi, > > I have implemented a

Re: [nodejs] node.js socket.io script getting killed by SIGSEGV after 1-2 days

2014-05-22 Thread Aria Stewart
On May 22, 02014, at 6:13, mps wrote: > I am running my node.js server by forever and my script gets killed in 1-2 > days and i get this error in the log file: > > error: Forever detected script was killed by signal: SIGSEGV > [snip] > where could the segment fault be coming from? Best

Re: [nodejs] Adding modules to node.js on Android

2014-05-22 Thread Aria Stewart
On May 22, 02014, at 10:04, Ingo Albers wrote: > > For a new project I need some modules (serialport, socket.io, express) but I > can't use npm on my device. I tried building the modules on an ARM QEMU but > those modules didn't work. Why can’t you use npm? What have you tried? signature.a

Re: [nodejs] upgrade node and upgrade modules?

2014-05-22 Thread Aria Stewart
On May 22, 02014, at 10:49, Stefano Cudini wrote: > \ > In general I would recommend reinstalling global modules. If you instead > copy, be sure to do an npm rebuild on each global module to ensure any binary > bits are recompiled against the new version of node. > > tnks @Daniel, Unfortunatel

Re: [nodejs] using node.js can i submit the form and it should take me the account summary page

2014-05-22 Thread Ryan Schmidt
On May 21, 2014, at 22:40, sanjib bisoyi wrote: > My requirement is i am having bank account like bank of america or chase > using node.js i want enter my user id and password and sign in button it > should take me to account summary page. is it possible using node.js if yes > can some one ple

Re: [nodejs] Editing PhotoShop smart objects using Node

2014-05-22 Thread Matt
I'd say good luck getting this done in any language, let alone Node :) On Wed, May 21, 2014 at 11:51 PM, santa wrote: > Hello All, > > I have some *simple* photoshop files. They have smartobjects in them and > want to replace particular images in the smart object programmatically > using node.

[nodejs] Re: establish several http connections without closing

2014-05-22 Thread Nuno Barros
in the moment i got this, not really sure if its keeping the connection open and the node i'am using is v0.10.28 var http = require('http'); var http_options = { hostname: '193.136.212.161', port: 80, path: '/', method: 'GET', agent: false, headers: { 'Connection':'ke

[nodejs] node.js socket.io script getting killed by SIGSEGV after 1-2 days

2014-05-22 Thread mps
I am running my node.js server by forever and my script gets killed in 1-2 days and i get this error in the log file: error: Forever detected script was killed by signal: SIGSEGV Now i have many functions in my node.js script. Upon writing a console.log at the beginning of each function i

[nodejs] Re: Getting started with node.js

2014-05-22 Thread jed
Hi Fabio, You might be interested in KeystoneJS, it's a cms / web app framework for node.js built on Express and MongoDB. *(disclaimer: I'm the project lead)* It's got a yeoman generator that'll get you something up and running quickly that you can play with and explore, and might be an easier

Re: [nodejs] upgrade node and upgrade modules?

2014-05-22 Thread Stefano Cudini
Il giorno mercoledì 21 maggio 2014 21:39:03 UTC+2, Aria Stewart ha scritto: > > On May 21, 02014, at 14:43, Stefano Cudini > > > wrote: > > I upgraded nodejs on my system to a new version. > > I had already installed many npm packages installed globally with the > previous version, inside: /opt

Re: [nodejs] upgrade node and upgrade modules?

2014-05-22 Thread Stefano Cudini
Il giorno giovedì 22 maggio 2014 00:34:41 UTC+2, Daniel R. ha scritto: > > If you frequently run multiple different versions of node on the same > machine, many use a version manager like nvm or n to make the task easier. > In this case you would install the module globally for each version of

[nodejs] Adding modules to node.js on Android

2014-05-22 Thread Ingo Albers
Hey, I built node.js for my android device (Geniatech ATV1220) and it is running fine. I did it with ./android-configure and put the node executable on the device. For a new project I need some modules (serialport, socket.io, express) but I can't use npm on my device. I tried building the modu

Re: [nodejs] establish several http connections without closing

2014-05-22 Thread Nuno Barros
yes i need them to stay keepalive state, my objective is to create 100 http conectins if no error is given + 100 till i can check a max of nat ports in a router Quarta-feira, 21 de Maio de 2014 19:39:39 UTC+1, Aria Stewart escreveu: > > > On May 21, 02014, at 12:06, Nuno Barros > > wrote: > >

[nodejs] Scaling a spdyproxy Node.js server

2014-05-22 Thread Sai
Hi, I have implemented a proxy server based on spdyproxy(https://github.com/igrigorik/node-spdyproxy). I have added cluster on the binary file i.e. bin/spdyproxy (http://pastebin.com/BvtpK6kc). I have tested this on various machines with node.js v0.11.14-pre (downloaded this for round robin