Re: [nodejs] process.env.hasOwnProperty

2012-06-24 Thread Jorge
On 24/06/2012, at 04:09, Ben Noordhuis wrote: On Sun, Jun 24, 2012 at 3:52 AM, Isaac Schlueter i...@izs.me wrote: If we are going to present something that is not an Object interface, then that's another conversation. (I'd be open to process.getEnvKeys() - ArrayString, process.getEnv(key) -

Re: [nodejs] process.env.hasOwnProperty

2012-06-24 Thread Jorge
On 24/06/2012, at 02:41, Mikeal Rogers wrote: If your goal is to be right about JavaScript I'll be the first to say you're right :) My point is that you can't teach this to everyone in the world writing JavaScript and what we need to do is just make this not an issue in node's core

[nodejs] node-gyp build issues

2012-06-24 Thread Qasim Zaidi
Hi, I have a native module (http://github.com/qzaidi/magickwand) that builds just fine with node-waf. Now that node 0.8 is due to be released, and also because node-waf isn't building correctly on SmartOS, I am trying to switch to node-gyp. However, while it builds, the resulting magickwand.node

Re: [nodejs] Node and developing on multiple machines

2012-06-24 Thread Magnus Skog (@ralphtheninja)
Excellent. This setup is pretty much exactly what I'm looking for. Thanks John! Also thanks to input from the rest of you guys. Cheers /Magnus Den söndagen den 24:e juni 2012 kl. 05:07:54 UTC+2 skrev John Fitzgerald: In more detail here's I do it; the application/project I'm working on is

Re: [nodejs] Re: forever and cpu usage

2012-06-24 Thread Radhames Brito
On Sun, Jun 24, 2012 at 12:41 AM, Angelo Chen angelochen...@gmail.comwrote: not sure if it got restarted, but the log file name remain the same. If you are not rotating the log it should stay the same. Use pshttp://unixhelp.ed.ac.uk/CGI/man-cgi?psto find out the process PID and check if is the

[nodejs] Re: node-gyp build issues

2012-06-24 Thread Jeroen Janssen
Hi, I just send you a pull request solving the linker errors (basically a change to use MagickWand-config). One small issue remains, and that is the resolving of the path to the magickwand.node which now resides in ./build/Release/ magickwand.node. I believe there might be a common practice for

[nodejs] Re: node-gyp build issues

2012-06-24 Thread Qasim Zaidi
Thanks Jeroen for resolving this quickly. I was wrongly suspecting node-gyp, while I was supposed to use Wand-config --libs (instead of Magick-config or MagickWand-config). Regards Qasim On Sun, Jun 24, 2012 at 5:07 PM, Qasim Zaidi qa...@zaidi.me wrote: Hi, I have a native module

Re: [nodejs] Re: Should i use node?

2012-06-24 Thread Raoul Millais
I personally think the Node community is one of the best I've experienced for cultural adovcacy: it's just not necessarily evident as a newbie. The community is diverse and Node itself is young. It also intentionally has a very a small core, which leaves a lot open for interpretation. Node

Re: [nodejs] Re: Should i use node?

2012-06-24 Thread Mark Hahn
It is very possible that Node never will mature. Having a zillion choices may be here to stay. Hopefully it will get easier to find the ones you need. Of course the quality of the best modules will improve over time. And some will dominate when they hit the sweet spot of what most developers

Re: [nodejs] Should i use node?

2012-06-24 Thread José F . Romaniello
I wrote something about this few weeks ago http://joseoncode.com/2012/05/31/node-dot-js-and-the-beauty-of-working-on-a-platform-that-embrace-opensource/ 2012/6/23, Radhames Brito rbri...@techpark.com.do: On Sat, Jun 23, 2012 at 1:12 PM, Mark Hahn m...@hahnca.com wrote: I dont see

Re: [nodejs] NodObjC and iOS or Mac App Store distribution

2012-06-24 Thread Ted Young
Out of curiosity, when running a UIWebView on iOS, is it running full WebKit with JIT enabled, etc, or is there something dumbed down about it? Ted On Jun 23, 2012, at 10:35 PM, Tim Caswell wrote: The difference between V8 and most other scripting languages is that V8 does not have an

Re: [nodejs] Re: Should i use node?

2012-06-24 Thread Marco Rogers
In my mind, maturing doesn't mean all the choices go away. It just means there are some obvious choices that most people agree are the way to go. This takes time and work. And it means those obvious choices are the first thing newbs run into when they are considering solutions. This can be helped

Re: [nodejs] Should i use node?

2012-06-24 Thread José F . Romaniello
This can be helped by better organization around community support of recommended modules. Hopefully this story gets better in the near future. Recommended by who? Based on what? I had the chance to assist to a talk that Isaac gave on JsConfAr, about this.. I cant find his talk online right now

Re: [nodejs] Should i use node?

2012-06-24 Thread José F . Romaniello
I wont use something because the upvoters. I have 2 months working in node for serious when i need something i search with npm (slow), or google - github. Then i look at the github page to see if it does what i want, and if is not clear i look at the examples folder then at the test folder. If it

Re: [nodejs] Should i use node?

2012-06-24 Thread Radhames Brito
On Sun, Jun 24, 2012 at 5:04 PM, José F. Romaniello jfromanie...@gmail.comwrote: I wont use something because the upvoters. I have 2 months working in node for serious when i need something i search with npm (slow), or google - github. Then i look at the github page to see if it does what i

Re: [nodejs] Should i use node?

2012-06-24 Thread Mark Hahn
Well your results could be documented (all of our results) in a central place It would be just one more piece of data to use when evaluating a module. You could make of it whatever you want. Of course it would cause competition and maybe hurt feelings, but that is life. -- Job Board:

Re: [nodejs] Should i use node?

2012-06-24 Thread Angel Java Lopez
@izs talk http://blip.tv/jsconfar/isaac_z_schlueter-6193181 More JsConfAr videos http://blip.tv/jsconfar On Sun, Jun 24, 2012 at 5:13 PM, José F. Romaniello jfromanie...@gmail.comwrote: This can be helped by better organization around community support of recommended modules. Hopefully this

Re: [nodejs] Should i use node?

2012-06-24 Thread marco . rogers
Recommended by a majority of your community peers that you respect. And yes that is a vague and fuzzy definition. It should be because there's no prescription here. We're just talking about a rough priority list that tries to reflect the prevailing trends. Or at least that's what I've been

[nodejs] /dev/stdin in node v0.7

2012-06-24 Thread andris
I'm having problems with /dev/stdin in node 0.7 - I can't open it as a file and I can't use it as an input source for spawned childs. Anyone knows about this, is it a bug or intended behavior? For example the following is fine with node v0.6 but fails in node v0.7: fs.readFile(/dev/stdin,

Re: [nodejs] /dev/stdin in node v0.7

2012-06-24 Thread Ben Noordhuis
On Sun, Jun 24, 2012 at 10:14 PM, andris andris.rein...@gmail.com wrote: I'm having problems with /dev/stdin in node 0.7 - I can't open it as a file and I can't use it as an input source for spawned childs. Anyone knows about this, is it a bug or intended behavior? For example the following

Re: [nodejs] NodObjC and iOS or Mac App Store distribution

2012-06-24 Thread Nathan Rajlich
Wow interesting thread you guys! Unfortunately all of the experiments I've done with node and iOS has been with jailbroken devices. Indeed, V8 is the major problem with this, and it seems like there's no way around it, for the reasons Tim already explained. From what I understand, libuv works on

Re: [nodejs] process.env.hasOwnProperty

2012-06-24 Thread Bert Belder
On Sunday, June 24, 2012 3:17:23 AM UTC+2, Mikeal Rogers wrote: You and Bert are technically correct but what you're correct about doesn't matter. Should node cause an exception on accessing this prototype which many people expect to be there? The answer is obviously no only because

[nodejs] ReferenceError: window is not defined

2012-06-24 Thread Alexander Farber
Hello, I'm a complete node.js newbie and trying to run a program, but get this error: #node ./app.js /home/afarber/src/Pocket-Island/build/app.js:1 window.wooga.cas ^ ReferenceError: window is not defined at Object.anonymous (/home/afarber/src/Pocket-Island/build/app.js:1:63) at

Re: [nodejs] ReferenceError: window is not defined

2012-06-24 Thread Ben Noordhuis
On Mon, Jun 25, 2012 at 12:12 AM, Alexander Farber alexander.far...@gmail.com wrote: Hello, I'm a complete node.js newbie and trying to run a program, but get this error: #node ./app.js /home/afarber/src/Pocket-Island/build/app.js:1 window.wooga.cas ^ ReferenceError: window is not

[nodejs] planetnodejs down?

2012-06-24 Thread Ted Young
http://planetnodejs.com/ seems to have been down for a bit. Not sure who was running it, but I was enjoying it. Ted -- 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

Re: [nodejs] Re: node-gyp build issues

2012-06-24 Thread Qing Guan
On 24 June 2012 20:49, Jeroen Janssen jeroen.jans...@gmail.com wrote: Hi, I just send you a pull request solving the linker errors (basically a change to use MagickWand-config). One small issue remains, and that is the resolving of the path to the magickwand.node which now resides in

Re: [nodejs] planetnodejs down?

2012-06-24 Thread Mikeal Rogers
appears to be up now. it's my app, it runs on nodejitsu. On Jun 24, 2012, at June 24, 20127:18 PM, Ted Young wrote: http://planetnodejs.com/ seems to have been down for a bit. Not sure who was running it, but I was enjoying it. Ted -- Job Board: http://jobs.nodejs.org/ Posting

[nodejs] Re: /dev/stdin in node v0.7

2012-06-24 Thread andris
wow, thanks, it's a relief! On Jun 25, 12:53 am, Ben Noordhuis i...@bnoordhuis.nl wrote: On Sun, Jun 24, 2012 at 10:14 PM, andris andris.rein...@gmail.com wrote: I'm having problems with /dev/stdin in node 0.7 - I can't open it as a file and I can't use it as an input source for spawned

[nodejs] Re: Sticky sessions using the new cluster API?

2012-06-24 Thread dhruvbird
Does the node clustering module provide hooks to achieve this (sticky sessions) or will I have to re-implement a bunch of things from scratch or copy-paste code? On Friday, June 22, 2012 8:08:30 AM UTC-7, Bradley Meck wrote: There are a couple ways to do this. 1. Use a session store that is