[nodejs] Crockford : Ynode : "I would fork node.js"

2012-09-15 Thread Jorge
http://www.youtube.com/watch?v=8HzclYKz4yQ#t=22m30s "I would fork nodejs. Nodejs is a great thing and I would bet the company on it, but I would not bet the company on Joyent. I see Joyent doing some stuff which is amateurish, maybe a little chidish, so I would fork it, and, I would then give t

Re: [nodejs] Crockford : Ynode : "I would fork node.js"

2012-09-15 Thread Arnout Kazemier
"Pull request or it didn't happen" On 15 sep. 2012, at 16:45, Jorge wrote: > http://www.youtube.com/watch?v=8HzclYKz4yQ#t=22m30s > > "I would fork nodejs. Nodejs is a great thing and I would bet the company on > it, but I would not bet the company on Joyent. I see Joyent doing some stuff > wh

Re: [nodejs] Crockford : Ynode : "I would fork node.js"

2012-09-15 Thread Kevin Swiber
Haven't watched the video yet, but my first reaction is "put up or shut up." :) Also, trash talking in a US presidential election year seems fitting. Can't get enough of it. ;) Sent from my iPhone On Sep 15, 2012, at 10:45 AM, Jorge wrote: > http://www.youtube.com/watch?v=8HzclYKz4yQ#t=22m30s

[nodejs] Re: High CPU Usage after upgrade

2012-09-15 Thread dmwuw
I'm seeing this exact issue for two express.js 2.5.5 apps after upgrading from node v0.6.12 to v0.8.8 -- but only when I use supervisor. https://github.com/isaacs/node-supervisor/issues/71 seems relevant. -David. -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/j

[nodejs] Re: Redirection service for the Node.js community

2012-09-15 Thread UnclePhil
I write "rewriter" one year ago (but i push it to git today) https://github.com/UnclePhil/rewriter.git It's in heavy production in a big web farm with more than 700 rewriting rules, and i never stopped the server Personally i prefer a config file in place of hardcoded rules. Ph Koenig UnclePhi

[nodejs] i explained my main question in the title, but i have a problem with this code:

2012-09-15 Thread dark knight
i explained my main question in the title, but i have a problem with this code: var http = require('http'); var options = { host:'google.com', method: 'CONNECT', path: 'google.com:80', port: 80 }; var req = http.request(options); req.end(); req.on('connect', function(res, socket, head) { socke

Re: [nodejs] Crockford : Ynode : "I would fork node.js"

2012-09-15 Thread Mikeal Rogers
His words were something along the lines of "i don't trust Joyent with it" and that Yahoo should fork node. It shows a complete lack of understanding of how node is developed and how our community works. Joyent's involvement has been positive, as they have paid several core contributors include

Re: [nodejs] Crockford : Ynode : "I would fork node.js"

2012-09-15 Thread rektide
On Sat, Sep 15, 2012 at 04:56:40PM +0200, Arnout Kazemier wrote: > "Pull request or it didn't happen" Hi: https://github.com/xk/node-threads-a-gogo , or preferrably some better isolated manner of multi-threading with Transferable objects. > On 15 sep. 2012, at 16:45, Jorge wrote: > > http://w

[nodejs] Re: i explained my main question in the title, but i have a problem with this code:

2012-09-15 Thread dark knight
Oh my God! Sorry for my mistakes! my main question is: *how to create a HTTP-1.0 request by net.socket or http.request?* -- 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 subscr

Re: [nodejs] Re: i explained my main question in the title, but i have a problem with this code:

2012-09-15 Thread Ben Noordhuis
On Sat, Sep 15, 2012 at 7:38 PM, dark knight wrote: > Oh my God! Sorry for my mistakes! > my main question is: how to create a HTTP-1.0 request by net.socket or > http.request? With net.Socket, just write the raw request. You can't create HTTP/1.0 requests with http.request(), it's always HTTP/1

Re: [nodejs] Crockford : Ynode : "I would fork node.js"

2012-09-15 Thread Nuno Job
This again? Oh mah gawd. :) Sent from my iPhone On Sep 15, 2012, at 6:18 PM, rektide wrote: > On Sat, Sep 15, 2012 at 04:56:40PM +0200, Arnout Kazemier wrote: >> "Pull request or it didn't happen" > > Hi: > > https://github.com/xk/node-threads-a-gogo , or preferrably some better > isolated m

Re: [nodejs] Re: i explained my main question in the title, but i have a problem with this code:

2012-09-15 Thread dark knight
Thank you Ben. You mean that i can not create http request with net.Socket? ok got it. But on things need to be resolve, can you refactoring my code to work correctly in HTTP/1.1? or help to i know what's the problem? thanks again. -- Job Board: http://jobs.nodejs.org/ Posting guidelines: ht

Re: [nodejs] Crockford : Ynode : "I would fork node.js"

2012-09-15 Thread Ted Young
I take it no one knows what he's actually complaining about? Ted On Sep 15, 2012, at 10:52 AM, Nuno Job wrote: > This again? Oh mah gawd. :) > > Sent from my iPhone > > On Sep 15, 2012, at 6:18 PM, rektide wrote: > >> On Sat, Sep 15, 2012 at 04:56:40PM +0200, Arnout Kazemier wrote: >>> "Pul

Re: [nodejs] Crockford : Ynode : "I would fork node.js"

2012-09-15 Thread Mark Hahn
@rektide, are you saying that joyent is asleep at the wheel because they are stopping the community from using threads? The community doesn't want threads because they violate the founding principle of Node, which is to use non-blocking event loops and get rid of threads. On Sat, Sep 15, 2012 at

Re: [nodejs] Crockford : Ynode : "I would fork node.js"

2012-09-15 Thread Jorge
Please stop, this thread is *NOT* about threads. Let's just gossip about what Crockford says in this talk: P.S. @Hahn: what's a non-blocking event loop? :-P -- Jorge. On 15/09/2012, at 20:32, Mark Hahn wrote: > @rektide, are you saying th

Re: [nodejs] Crockford : Ynode : "I would fork node.js"

2012-09-15 Thread Mark Hahn
> ... what's a non-blocking event loop An imaginary mash-up of different concepts. It was a brain-fart. Actually, it could make sense if you think of it as an event loop that calls non-blocking code on each tick. On Sat, Sep 15, 2012 at 11:42 AM, Jorge wrote: > Please stop, this thread is *N

Re: [nodejs] Crockford : Ynode : "I would fork node.js"

2012-09-15 Thread Jorge
And, that said, what else do you (@Mikeal) have to say WRT "Joyent doing some stuff which is amateurish, maybe a little childish" ? -- Jorge. On 15/09/2012, at 19:02, Mikeal Rogers wrote: > His words were something along the lines of "i don't trust Joyent with it" > and that Yahoo should fork

Re: [nodejs] Crockford : Ynode : "I would fork node.js"

2012-09-15 Thread Alan Gutierrez
On 9/15/12 10:45 AM, Jorge wrote: http://www.youtube.com/watch?v=8HzclYKz4yQ#t=22m30s "I would fork nodejs. Nodejs is a great thing and I would bet the company on it, but I would not bet the company on Joyent. I see Joyent doing some stuff which is amateurish, maybe a little chidish, so I woul

Re: [nodejs] Crockford : Ynode : "I would fork node.js"

2012-09-15 Thread Marak Squires
Crockford is like your JavaScript Grandfather. Be nice to him and smile and nod when he tells you stories about when he use to wear an onion on his belt, which was the style at the time. On Sat, Sep 15, 2012 at 12:39 PM, Alan Gutierrez wrote: > On 9/15/12 10:45 AM, Jorge wrote: > >> http://www.y

Re: [nodejs] Crockford : Ynode : "I would fork node.js"

2012-09-15 Thread Marak Squires
http://www.youtube.com/watch?v=ARXfQzfl9EQ On Sat, Sep 15, 2012 at 12:42 PM, Marak Squires wrote: > Crockford is like your JavaScript Grandfather. > > Be nice to him and smile and nod when he tells you stories about when he > use to wear an onion on his belt, which was the style at the time. > >

Re: [nodejs] Crockford : Ynode : "I would fork node.js"

2012-09-15 Thread Stewart Mckinney
He's an opinionated guy, but I would like to hear why he felt that way. You really don't have many people who have seen as much as he has, working in the video game interactive industry, then the web, then taking several major architect roles at massive corporations. It's worthwhile at least hearin

Re: [nodejs] Crockford : Ynode : "I would fork node.js"

2012-09-15 Thread Stewart Mckinney
And I can't do math. At all. On Sat, Sep 15, 2012 at 4:49 PM, Stewart Mckinney wrote: > He's an opinionated guy, but I would like to hear why he felt that way. > You really don't have many people who have seen as much as he has, working > in the video game interactive industry, then the web, then

Re: [nodejs] Crockford : Ynode : "I would fork node.js"

2012-09-15 Thread Jérémy Lal
Do you even realize Grandpa Simpson is an ass ? Jérémy. On 15/09/2012 21:52, Marak Squires wrote: > http://www.youtube.com/watch?v=ARXfQzfl9EQ -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this messag

Re: [nodejs] Re: i explained my main question in the title, but i have a problem with this code:

2012-09-15 Thread Ben Noordhuis
On Sat, Sep 15, 2012 at 8:01 PM, dark knight wrote: > Thank you Ben. > > You mean that i can not create http request with net.Socket? > ok got it. > > But on things need to be resolve, can you refactoring my code to work > correctly in HTTP/1.1? or help to i know what's the problem? > > thanks aga

[nodejs] Re: Redirection service for the Node.js community

2012-09-15 Thread henry.oswald
Yes the comment is a bit off. However please remember what we and JS owe him from opening his mouth in the past. Attacking his age or past is uncalled for. -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received

[nodejs] Re: Crockford : Ynode : "I would fork node.js"

2012-09-15 Thread Tim Dickinson
I would like to see a fork of node. On Saturday, September 15, 2012 10:45:30 AM UTC-4, Jorge wrote: > > http://www.youtube.com/watch?v=8HzclYKz4yQ#t=22m30s > > "I would fork nodejs. Nodejs is a great thing and I would bet the company > on it, but I would not bet the company on Joyent. I see Joye

[nodejs] Re: How to aggregate streams? (multiplexer/demultiplexer)

2012-09-15 Thread Tim Dickinson
LOL I should have searched the group. I asked this question like two days latter. On Monday, September 3, 2012 5:44:24 AM UTC-4, lbdremy wrote: > > Hello, > > I'm wondering, does someone know a module that is able to aggregate > multiple streams into 1. > For example you give it 3 readable stre

Re: [nodejs] Re: Redirection service for the Node.js community

2012-09-15 Thread Andrew Chilton
Hi Phil, On 16 September 2012 01:24, UnclePhil wrote: > I write "rewriter" one year ago (but i push it to git today) > https://github.com/UnclePhil/rewriter.git Is this hosted anywhere that other people can use? The main point of my service is not to solve how to do redirection (it's a pretty si

[nodejs] Does Node.js have some kind of native data persistence?

2012-09-15 Thread Alan Hoffmeister
Dear fellows, We all know that javascript from modern browsers allow us to persist data by local storage methods. I hadn't success with my Google search so I thought it would be better to ask here before move on using the fs API, so: does Node.js provide some kind of native data persistence? I kno

Re: [nodejs] Does Node.js have some kind of native data persistence?

2012-09-15 Thread Srirangan
Files? Srirangan | +91 9711 477 595 | About GitHub LinkedIn Twitter | Review19 "Collaborate & Track Decisions" On Sun, Sep 16, 2012 at 7

Re: [nodejs] Does Node.js have some kind of native data persistence?

2012-09-15 Thread Alan Hoffmeister
It would be nice don't touch the file system api, at least directly... -- Att, Alan Hoffmeister 2012/9/15 Srirangan : > Files? > > Srirangan | +91 9711 477 595 | About GitHub LinkedIn Twitter | > Review19 "Collaborate & Track Decisions" > > > On Sun, Sep 16, 2012 at 7:55 AM, Alan Hoffm

Re: [nodejs] Does Node.js have some kind of native data persistence?

2012-09-15 Thread Srirangan
I know. Can't think on any other 'native' persistence source. What are you trying to accomplish? Why not use DBs or Caches? - Sri Srirangan | +91 9711 477 595 | About GitHub LinkedIn Twitter <

Re: [nodejs] Re: Crockford : Ynode : "I would fork node.js"

2012-09-15 Thread Mark Hahn
> I would like to see a fork of node. What would you change? On Sat, Sep 15, 2012 at 6:35 PM, Tim Dickinson wrote: > I would like to see a fork of node. > > On Saturday, September 15, 2012 10:45:30 AM UTC-4, Jorge wrote: >> >> http://www.youtube.com/watch?**v=8HzclYKz4yQ#t=22m30s

Re: [nodejs] Does Node.js have some kind of native data persistence?

2012-09-15 Thread Rod Vagg
https://github.com/rvagg/node-levelup is a lighter-than-db option, supports storing everything from Buffers up to JSON serialized data in a fast and slightly compressed store. In fact, the store, LevelDB, is the same used in Chrome's local storage backend. On Sun, Sep 16, 2012 at 12:29 PM, Alan H

[nodejs] Re: Does Node.js have some kind of native data persistence?

2012-09-15 Thread Alan Hoffmeister
That's something very very cool Vagg, but as I could see there is no Windows support, righ? Em sábado, 15 de setembro de 2012, Rod Vagg escreveu: > > https://github.com/rvagg/node-levelup is a lighter-than-db option, > supports storing everything from Buffers up to JSON serialized data in a > fas

Re: [nodejs] Re: Does Node.js have some kind of native data persistence?

2012-09-15 Thread Rod Vagg
There's not reason there couldn't be Windows support, it just needs some work in the GYP files to make it happen, LevelDB & Snappy both compile on Windows and I've preserved some basic Windows stuff in their GYP files. Perhaps you'd like to lend a hand? On Sun, Sep 16, 2012 at 1:17 PM, Alan Hoffme

Re: [nodejs] Re: Crockford : Ynode : "I would fork node.js"

2012-09-15 Thread Marco Rogers
I'd change lots of things. But it's probably a good idea that I'm not in charge. Ditto Crockford. :Marco On Saturday, September 15, 2012 7:42:45 PM UTC-7, Mark Hahn wrote: > > > I would like to see a fork of node. > > What would you change? > > On Sat, Sep 15, 2012 at 6:35 PM, Tim Dickinson >

[nodejs] Re: Nested domains or "How do I leave a domain"

2012-09-15 Thread Marco Rogers
Don't know if you were at Node Summercamp, but we talked a lot about domains. It's clear that there's lots of confusion about the semantics. I've got some of the same questions. I had planned on finally sitting down to explore them tomorrow. I can tell you that domains *are* nested. When you st

[nodejs] Re: Crockford : Ynode : "I would fork node.js"

2012-09-15 Thread tjholowaychuk
crockford writes code? I haven't seen much ;) I don't he has any place in a community he doesn't contribute to On Saturday, 15 September 2012 07:45:30 UTC-7, Jorge wrote: > > http://www.youtube.com/watch?v=8HzclYKz4yQ#t=22m30s > > "I would fork nodejs. Nodejs is a great thing and I would bet the

Re: [nodejs] Re: Does Node.js have some kind of native data persistence?

2012-09-15 Thread Alan Hoffmeister
I just sucks at C/C++ programming but of course I'll do what I can for help. If someone else would like to contribute, this is the GitHub https://github.com/rvagg/node-levelup/issues/5 Thanks Rod for the amazing project! -- Att, Alan Hoffmeister 2012/9/16 Rod Vagg : > > There's not reason there