[00:00] janiczek has joined the channel
[00:00] dgathright has joined the channel
[00:01] jakl: What is the latest version that socket.io will work on?
[00:01] mattp_ has joined the channel
[00:01] paulwe_ has joined the channel
[00:01] wadey has joined the channel
[00:02] wadey has joined the channel
[00:02] adrianmg has left the channel
[00:03] bwinton has joined the channel
[00:04] blup has joined the channel
[00:06] blup: i was wondering, instead of obfuscating some client code, would it be a good idea to send the objects on('ready') with socket.io?
[00:09] Dmitrijus: blup: sounds bad
[00:09] SamWhited has joined the channel
[00:09] jakl: The client gets the code either way right?
[00:09] Dmitrijus: yep
[00:09] innociv: http://pastebin.com/AbeSCusM Trying to use npm is giving me this odd message.
[00:09] joshkehn has joined the channel
[00:09] eldios: http://www.spreecast.com/events/nodejs-hangout-episode-00 <- real episode 00 of nodejs hangout :) come join me in a 5-10 minutes lean talk about nodejs
[00:10] adnam has joined the channel
[00:10] Dmitrijus: atlhough, i think it is just stupid to obfuscate code at all, viva la opensource or something
[00:10] innociv: I just installed node, and npm, so this is my first time using it and it's never worked before.
[00:10] ggg has joined the channel
[00:10] jakl: so on 0.5.6, require('socket.io') gives an error Error: require.paths is removed. Use node_modules folders
[00:11] normanrichards has joined the channel
[00:11] ggg: anyone knows why i cant serve a static img file? if i type it path in the browser I get an invalid resource, but if i type a .css path it works....
[00:11] jakl: Is there a patch for socket.io so it doesn't use require.paths to include files?
[00:12] wookiehang0ver has joined the channel
[00:13] darshanshankar has joined the channel
[00:14] isaacs has joined the channel
[00:15] chrislorenz has joined the channel
[00:15] replore_ has joined the channel
[00:15] replore has joined the channel
[00:16] eldios: who was the guest? :)
[00:16] cliffano: anyone has any suggestion on a nifty way to deep merge two javascript objects? i.e. all properties will be combined into one object
[00:16] adnam has joined the channel
[00:16] svnlto has joined the channel
[00:17] dgathright has joined the channel
[00:18] innociv: Anyone? I can't find anything on google. :/
[00:18] innociv: Only my own paste comes up
[00:18] dgathright_ has joined the channel
[00:18] innociv: http://pastebin.com/AbeSCusM Trying to use npm is giving me this odd message.
[00:18] joshkehn: innociv: What was your question?
[00:20] bingomanatee1 has joined the channel
[00:21] ecin has joined the channel
[00:21] bingomanatee1: hi node
[00:21] joshkehn: bingomanatee1: Hi
[00:22] dgathright has joined the channel
[00:24] innociv: joshkehn, it's right there with the paste.
[00:24] innociv: npm is giving me gibberish and not actually installing things.
[00:25] joshkehn: Yeah, I wasn't in the room for that I think.
[00:25] joshkehn: Oh
[00:25] isaacs: gist the gibberish
[00:25] joshkehn: Found it. :o
[00:25] CPartridge has joined the channel
[00:25] Juan77 has joined the channel
[00:25] innociv: I repeated it before your message.
[00:25] joshkehn: Looks like escape codes.
[00:25] joshkehn: What OS are you on?
[00:26] innociv: debian
[00:26] isaacs: innociv: that's not odd. it's just that you have a terminal that doesn't support unicode
[00:26] isaacs: innociv: npm config set unicode false
[00:26] innociv: ah
[00:27] isaacs: looks like it installed socket.io in ./node_modules/socket.io
[00:27] Skyec: is there any way to force js to be run in node? I just want to spit stuff out to the console, but i don't think this code is being evaluated
[00:27] mjr__ has joined the channel
[00:27] isaacs: seems pretty by the book, actually
[00:27] Circlefusion has joined the channel
[00:27] isaacs: Skyec: node -e 'console.log("foo")' ?
[00:27] dgathright_ has joined the channel
[00:27] innociv: http://pastebin.com/5z47BAbK Now. Seems ot be installed
[00:27] cconstantine: is it normal for an event emitter to clear the listener list after a throw in a listener?
[00:27] innociv: isaacs, i was getting an error saying socket.io wasn't installed when trying the socket.io example.
[00:27] isaacs: innociv: there ya go
[00:27] Skyec: isaacs: i mean, i've got code in my js file, but it doesn't seem to be getting called
[00:28] innociv: But now it works.
[00:28] isaacs: Skyec: gist the code
[00:28] joshkehn: Skyec: Can you share the code?
[00:28] jakl: what version of node are you useing for your socket.io setup?
[00:28] isaacs: innociv: i'm teling you, though, you should totally get a unicode-supporting terminal font. it's way prettier :)
[00:29] innociv: ACTION nods
[00:30] Skyec: oh, I think I know what it is
[00:30] cconstantine: When I create an EventEmitter and throw from within a listener I lose all current listeners: http://pastebin.com/7xm9dUKg is there anyway around this?
[00:30] innociv: http://socket.io/#how-to-use In this first example, where should index.html be located?
[00:30] Skyec: I'm using process.exit() to stop execution, but i don't think just kills node right off
[00:32] Skyec: *i think that just kills node right off
[00:32] rektide has joined the channel
[00:33] norviller has joined the channel
[00:33] apoc has joined the channel
[00:33] tuhoojabotti has joined the channel
[00:33] trupppOFF has joined the channel
[00:33] freewil: Skyec, what are you trying to do?
[00:33] Skyec: its okay. I understand what I'm trying to do is fundamentally flawed
[00:33] freewil: mmmk
[00:34] innociv: I assume it has to do with __dirname, but I don't see where that's set.
[00:34] mjijackson has joined the channel
[00:35] innociv: Oh it looks like the directory of the js script
[00:36] Skyec: innociv: its a global
[00:36] Skyec: and yes, that's what its set to
[00:37] micheil has joined the channel
[00:37] Skyec: did "print" get removed from the internal node debugger?
[00:37] innociv: node ___.js runs a script. What do I use to stop running it?
[00:38] bnoordhuis: innociv: ctrl-c?
[00:38] eldios has joined the channel
[00:38] joshkehn has joined the channel
[00:38] ji0n has joined the channel
[00:40] jmoyers: do people like jekyll? is there anything similar in node?
[00:41] jmoyers: blog aware static site generator type thing?
[00:41] jacobolus has joined the channel
[00:41] jacobolu_ has joined the channel
[00:41] AaronMT has joined the channel
[00:42] ChrisPartridge has joined the channel
[00:43] eldios: jmoyers, docpad
[00:43] eldios: will review it in nodejs hangout episode 2
[00:43] eldios: had committed some code too =)
[00:43] eldios: github.com/balupton/docpad
[00:43] eldios: should be
[00:44] CarterL has joined the channel
[00:44] innociv: Neat. It works except I got "Failed to load resource" from "localhost" in the example. Odd to me, seeing as how I "app.listen(6969, "208.94.240.69");"
[00:44] kurtzhong has joined the channel
[00:44] innociv: http://208.94.240.69:6969/
[00:44] jmoyers: eldios nice
[00:44] eldios: ;)
[00:44] jmoyers: whats with this tab based indentation though :P
[00:44] jmoyers: eyes bleeding
[00:45] jmoyers: coffeescript i dont mind, but tabs?!
[00:45] innociv: http://socket.io/#how-to-use example here, except I changed the listen as per my above message.
[00:46] TooTallNate has joined the channel
[00:46] eldios: jmoyers, tab == 2 spaces in my IDE / code editor (sublime)
[00:46] blueadept has joined the channel
[00:46] eldios: what's so wrong with that? =)
[00:46] jmoyers: yeah, github tab = 8 spaces though
[00:46] jmoyers: or some awful thing
[00:46] simoon: I clicked it innociv, I did the same socket.io thing today :)
[00:46] eldios: ARGH
[00:46] innociv: Yeah? Any idea what my issue here is?
[00:47] simoon: oh yep
[00:47] simoon: :)
[00:47] ditesh|cassini has joined the channel
[00:47] CarterL has joined the channel
[00:47] jtsnow has joined the channel
[00:47] simoon:
[00:47] simoon: will make it worksie
[00:48] innociv: It actually seems to load socket.io.js fine. If you look in inspector and click that link, it comes up
[00:48] simoon: oh
[00:48] innociv: Maybe the issue is at "io = require('socket.io').listen(app)
[00:48] innociv: "?
[00:48] JaKWaC has joined the channel
[00:49] jakehow has joined the channel
[00:49] innociv: That makes the error "GET http://localhost:6969/socket.io/1/?t=1316566096897&jsonp=0 "...
[00:50] micheil: perhaps 208.94.240.69:6969 != localhost:6969?
[00:50] simoon: yeah
[00:50] jacobolus has joined the channel
[00:50] simoon: I think thats the only solution I can see too atm
[00:50] simoon: but who knows
[00:51] innociv: Yeah the problem is here: ""
[00:51] simoon: because, I'm getting the file and its looking for my localhost
[00:51] innociv: micheil, indeed it doesn't.
[00:51] mike5w3c has joined the channel
[00:51] innociv: But what is setting that line? How can Iget it to be the ip instead of localhost?
[00:52] micheil: there's likely to be an host setting for socket.io, as to what that is, I wouldn't know.
[00:54] innociv: Would really think they'd cover hosting outside of localhost in their example.
[00:55] innociv: It's getting the port right, but is using localhost instead of the ip.
[00:56] lz has joined the channel
[00:56] lz has joined the channel
[00:57] micheil: ACTION knows almost nothing about socket.io as far as configuring it.
[00:58] stash1 has joined the channel
[00:59] Twelve-60` has joined the channel
[00:59] matyr has joined the channel
[01:00] mandric has joined the channel
[01:00] innociv: Also, what do I do about using an httpd for normal pages, and just having a socket.io connection for streaming data? I get 404 not found for socket.io.js in such a case.
[01:00] nrajlich has joined the channel
[01:00] innociv: I don't need the whole http and fs. I just need io.
[01:01] neoesque has joined the channel
[01:01] innociv: ah wait
[01:01] micheil: innociv: if you just need socket.io, I'm curious as to why you'd want to go that route rather than outsource it
[01:01] innociv: What do you mean by outsource it?
[01:01] micheil: (disclaimer, I do work for a company that provide a hosted service doing exactly that)
[01:01] micheil: as in, why do you want to use socket.io?
[01:01] lz: hahaha
[01:02] micheil: iz: ?
[01:02] innociv: Because I have my own server already. Setting up node doesn't seem terribly difficult.
[01:03] micheil: okay
[01:03] micheil: innociv: have you read much about socket.io / scaling such a thing, or don't you expect any large amount of users?
[01:03] davidwalsh has joined the channel
[01:04] micheil: (two questions there)
[01:04] innociv: Yeah I expect a lot of users. Plurk said they have 100k-300k with node.js.
[01:05] micheil: okay
[01:05] k1ttty has joined the channel
[01:05] micheil: thanks for those answers, it's good food for thought.
[01:05] jetienne has joined the channel
[01:05] codely has joined the channel
[01:05] innociv: I still don't get why it wants to make this localhost:80 instead of the ip and port number I'm telling it to bind to.
[01:06] micheil: it'll likely be a client-side config option
[01:06] codely: hey everyone. i'm at the point now where i'm super comfortable in node, writing lots of modules etc. i wanted an 'expert opinion' - if i have a form for a user, where the background data need not have a callback (I'm hitting an API HARRRDDDDD) regardless of async its going to need a little bit of time.
[01:06] codely: should i just process.emit? to call my data parsing worker?
[01:06] innociv: All that's on the client is that tiny bit of html. http://pastebin.com/VAxTcurV It appears that /socket.io/socket.io.js appaneds that
[01:07] innociv: prepends*
[01:07] codely: no php, so ugh, no cron jobs? =-]
[01:07] Bonuspunkt has joined the channel
[01:08] r04r has joined the channel
[01:08] innociv: ..
[01:08] innociv: OOPS
[01:10] innociv: appears to work
[01:10] brianseeders has joined the channel
[01:10] innociv: Was that little io.connect line on the client. I looked right over it. Really dumb.
[01:18] Skyec: is it right of me to think that you can't pass stream as parameters to functions?
[01:18] enhydra has joined the channel
[01:19] m00g00: pass a stream object?
[01:19] m00g00: why not?
[01:19] Skyec: oh nevermind... i failed to see the callback
[01:19] Skyec: i'm still getting used to the way nodejs structures everything
[01:20] nibblebot has joined the channel
[01:21] smtlaissezfaire has joined the channel
[01:25] mattp_ has joined the channel
[01:26] abraxas has joined the channel
[01:26] m00g00: is it even called stream anymore
[01:26] m00g00: I seem to remember some nodejs objects having an identity crisis
[01:26] guillermo has joined the channel
[01:26] gde33 has joined the channel
[01:26] devongovett has joined the channel
[01:27] stepheneb has joined the channel
[01:27] mquin_ has joined the channel
[01:29] jzacsh has joined the channel
[01:29] jzacsh has joined the channel
[01:31] saikat has joined the channel
[01:31] aconbere has joined the channel
[01:33] sebastianedwards has joined the channel
[01:33] kbni has joined the channel
[01:34] alexpbrown has joined the channel
[01:37] ericmuyser: so i know npm isnt on windows, theres pyygi or something. but can is node capable of dynamic binding on windows AT ALL? ie. dll's
[01:37] ericmuyser: or is that still in the works
[01:38] nibblebot has joined the channel
[01:39] ditesh|cassini has joined the channel
[01:39] ericmuyser: so, mingw
[01:40] aho: afaik there isnt any dynamic loading whatsoever yet
[01:40] jmoyers: there's a package
[01:40] jmoyers: not for windows though
[01:40] jmoyers: https://github.com/rbranson/node-ffi
[01:40] jmoyers: not sure what you mean ericmuyser
[01:40] jmoyers: but if you mean calling into a dll, then no
[01:41] jmoyers: not on windows
[01:41] jzacsh has joined the channel
[01:41] ericmuyser: jmoyers: ah dang ok thanks. i mean node addons for windows
[01:41] jaequery has joined the channel
[01:41] ericmuyser: forgot they are called addons
[01:41] jmoyers: node addons meaning?
[01:41] jmoyers: native bindings for stuff?
[01:42] jmoyers: node has bindings to generic stuff in core
[01:42] ericmuyser: ya, they are officially called addons iirc
[01:42] jmoyers: file system and stuff
[01:42] jmoyers: libuv is becoming more and more cross platform every day, and node uses libuv
[01:42] ericmuyser: http://nodejs.org/docs/v0.5.6/api/addons.html <-- for windows, was the question
[01:42] skm has joined the channel
[01:42] Juan77 has joined the channel
[01:43] ericmuyser: ah ok, ya im sure itll make it there soon
[01:43] Brandon_R has joined the channel
[01:43] Brandon_R: hi
[01:43] jmoyers: yes, you can do addons on windows ericmuyser
[01:43] Brandon_R: what's up
[01:43] cronopio has joined the channel
[01:43] ericmuyser: until then i can design for the intention of using it as a dll later (.so on linux/osx).
[01:43] marcello3d has joined the channel
[01:44] jmoyers: you can use the V8 api to do bindings
[01:44] ericmuyser: oh wait, it's called .node. sorry for the mix up
[01:44] jmoyers: as long as your c++ is windows compat, its fine
[01:44] Brandon_R: anyone got any new nodejs video tuts or screencasts i can watch?
[01:44] indexzero has joined the channel
[01:44] tjholowaychuk has joined the channel
[01:45] Brandon_R: hey guys
[01:45] EagleCoder has joined the channel
[01:45] tjholowaychuk has joined the channel
[01:45] ericmuyser: jmoyers: sweet deal. thanks
[01:45] jmoyers: np
[01:46] dreamdust: @Brandon_R: http://vimeo.com/search/videos/search:nodejs/st/566bf3dc/sort:newest/format:thumbnail
[01:47] Brandon_R: This link has expired. If you are searching for "nodejs" related videos, please click here.
[01:47] Brandon_R: already watched all those :)
[01:47] JakeyChan has joined the channel
[01:48] WRAz has joined the channel
[01:48] k1ttty has joined the channel
[01:49] d0k has joined the channel
[01:49] abraxas has joined the channel
[01:51] tylerstalder has joined the channel
[01:51] Brandon_R: anything else?
[01:52] tbranyen: i got a video you can watch
[01:52] tbranyen: you alone?
[01:53] marcello3d: what do people use to format dates here?
[01:54] Brandon_R: yeah
[01:54] brolin has joined the channel
[01:54] Brandon_R: send it to me
[01:54] Brandon_R: i want to learn as many nodejs tips as possible
[01:54] plutoniix has joined the channel
[01:54] harthur has joined the channel
[01:54] abravo has left the channel
[01:55] tmcw has joined the channel
[01:55] tbranyen: oh it wasn't nodejs related
[01:55] tbranyen: per se
[01:55] Brandon_R: is it about general javascript?
[01:56] BillyBreen has joined the channel
[01:56] mrryanjohnston: lollll
[01:56] mrryanjohnston: he is making a joke, Brandon_R
[01:56] Brandon_R: oh
[01:56] tbranyen: it was about to get real dark real fast, thanks mrryanjohnston
[01:56] mrryanjohnston: fished the entire #node.js channel out of the gutter. Added to my resume.
[01:58] Brandon_R: what rresume?
[01:58] jacobolus has joined the channel
[01:59] nerdy_ has joined the channel
[02:01] vns has joined the channel
[02:02] ralxz has joined the channel
[02:03] brianseeders has joined the channel
[02:03] ralxz: is there any good node.js job board? i'm looking to hire someone on a freelance basis to work small amounts of hours on a web app we're trying to push out but need some help coding with. nothing too difficult, it's just a general chat app
[02:03] innociv: Is there a simple chat example out there for socket.io that I can test out? Just something a bit more than the how to on socket.io's site.
[02:04] rfay has joined the channel
[02:05] saikat: in node_redis, the README says that 'bulk' replies should be returning node buffers but when i do a client.get or hget, I am getting back a string (according to http://redis.io/commands/get and http://redis.io/commands/hget both of these return bulk replies). Anyone know if this a bug in node_redis or am I misunderstanding the usage?
[02:05] matyr_ has joined the channel
[02:06] saikat: fwiw, I'm storing binary data in redis, so I'm worried that if node_redis is giving me back strings, bad things will happen (I hear binary strings are Not Good to use)
[02:08] tjholowaychuk: saikat there's a buffer mode i think
[02:08] tjholowaychuk: but i had that issue too
[02:08] tjholowaychuk: i believe it's applied globally to the connection
[02:08] saikat: ahh yeah i was just peering at the code
[02:08] saikat: and see an option
[02:08] saikat: thanks tj
[02:08] innociv: Nevermind, found one.
[02:09] innociv: This is so simple...
[02:09] Skyec: hi, can somebody point me in the right direction on how to structure nodejs code with multiple files?
[02:09] innociv: include(), iirc
[02:10] Skyec: yeah, i think that will work fine for the moment. thanks
[02:10] jslatts has joined the channel
[02:10] zeiris has joined the channel
[02:11] avih has joined the channel
[02:14] nuck has joined the channel
[02:15] broofa_ has joined the channel
[02:18] slifty has joined the channel
[02:20] m00g00: include?
[02:20] broofa has joined the channel
[02:20] jer0me_ has joined the channel
[02:21] Vennril has joined the channel
[02:21] TooTallNate has joined the channel
[02:22] defeated has joined the channel
[02:22] maxogden has joined the channel
[02:23] max_dev has joined the channel
[02:23] maxogden: SubStack: whats the stackhaus irc channel ?
[02:23] dexter_e has joined the channel
[02:25] freewil has joined the channel
[02:25] freewil has joined the channel
[02:27] JakeyChan has joined the channel
[02:28] skiz has joined the channel
[02:28] Vennril2 has joined the channel
[02:30] darshanshankar: maxogden: #stackvm
[02:31] Vertice has joined the channel
[02:32] alexpbrown has left the channel
[02:33] miccolis has joined the channel
[02:34] maxogden: darshanshankar: thanks!
[02:34] normanrichards has joined the channel
[02:35] binaryjohn_ has joined the channel
[02:39] nerdy_ has joined the channel
[02:40] bombworm has joined the channel
[02:42] guillermo has joined the channel
[02:44] sharkbird has joined the channel
[02:44] smathy has joined the channel
[02:44] jacobolus has joined the channel
[02:48] willwhite has joined the channel
[02:50] JakeyChan has joined the channel
[02:51] sub_pop has joined the channel
[02:52] kurtzhong has joined the channel
[02:52] sleek has joined the channel
[02:52] matt_ has joined the channel
[02:54] vidi has joined the channel
[02:57] jasir has joined the channel
[02:58] TooTallNate has joined the channel
[03:01] skm has joined the channel
[03:01] dimroc has joined the channel
[03:03] amigojapan has joined the channel
[03:07] marcello3d: anyone use globalize?
[03:09] Ned_ has joined the channel
[03:11] wibby has joined the channel
[03:11] smathy has joined the channel
[03:11] willwhite has joined the channel
[03:13] wibby: Hi, I'm looking for a beginner's guide to express with mongoose. so far, I haven't really found anything good. something that goes into details of mongodb and how to set it up, how to do the connection, how to store something permanently and what to consider if you want your expose your app to the public internet
[03:14] mbrevoort has joined the channel
[03:14] marcello3d: sounds like you want a beginner's guide to mongodb, not express or mongoose
[03:14] jergason_home has joined the channel
[03:15] Ned_ has joined the channel
[03:15] TechCel has joined the channel
[03:15] matyr has joined the channel
[03:16] wibby: marcello3d: hmm. you're right, i should have looked at the basics more closely
[03:16] wibby: anything you can recommend?ß
[03:16] smtlaissezfaire has joined the channel
[03:16] marcello3d: mongodb.org docs are pretty good, but dense, haven't really explored others
[03:17] innociv: What should I do if I need multiple channels with socket.io? Should I be using https://github.com/aaronblohowiak/Push-It ?
[03:17] SubStack: maxogden: #stackvm will do for that
[03:18] innociv: Doesn't look like it's on the npm. :(
[03:18] lepht has joined the channel
[03:18] astropirate has joined the channel
[03:20] Ned_ has joined the channel
[03:21] freeformz has joined the channel
[03:21] perezd has joined the channel
[03:22] marcello3d: ugh. why would I get Error: Cannot find module 'globalize' from require('globalize') if npm ls lists globalize?
[03:22] marcello3d: node v0.4.11/npm 1.0.15
[03:23] neilk_ has joined the channel
[03:26] marcello3d: I figured it out. looks like the npm module is broken
[03:26] Ned_ has joined the channel
[03:31] steffan has joined the channel
[03:32] DennisRasmussen has joined the channel
[03:32] yuwang has joined the channel
[03:33] jj0hns0n has joined the channel
[03:36] tilgovi has joined the channel
[03:36] tilgovi has joined the channel
[03:36] matyr_ has joined the channel
[03:36] shanebo has joined the channel
[03:37] caolanm has joined the channel
[03:37] ecin has joined the channel
[03:37] steffan_ has joined the channel
[03:37] Emmanuel` has joined the channel
[03:38] meso has joined the channel
[03:40] Spion_ has joined the channel
[03:41] shanebo: anyone know if connect's staticCache is request based or server based?
[03:43] kurtzhong_ has joined the channel
[03:43] innociv: Where does npm install modules to?
[03:43] joshkehn: innociv: node_modules unless you specify -g
[03:43] joshkehn: I think
[03:43] joshkehn: I'm not an expert. :)
[03:44] dylang has joined the channel
[03:44] nerdy_ has joined the channel
[03:44] innociv: I see a node_modules in $HOME/local/node/lib/node_modules/npm
[03:44] innociv: I don't see where socket.io is in there, nor push-it.
[03:44] tjholowaychuk: shanebo it's per connect app
[03:44] tjholowaychuk: in-memory
[03:45] tjholowaychuk: (currently at least)
[03:45] tjholowaychuk: I'd like to make it extensible so one could use redis etc to back the cache
[03:45] tjholowaychuk: not a huge priority though
[03:45] joshkehn: innociv: It should be in the folder you ran npm install
[03:46] joshkehn: If you do something like
[03:46] joshkehn: cd ~ && mkdir tmp && cd tmp && npm install socket.io
[03:46] innociv: ah
[03:46] innociv: yes i see now
[03:46] joshkehn: You should have a node_modules folder in /tmp/
[03:46] joshkehn: So
[03:46] innociv: yeah it's right there at $HOME/node_modules. I'm blind
[03:46] joshkehn: :)
[03:48] sleek has joined the channel
[03:50] innociv: Is something like Push-It going to perform better than me simply maintaining arrays of users for each channel and emitting to that array of users/
[03:50] innociv: ?*
[03:51] infynyxx has joined the channel
[03:52] innociv: I'm surprised socket.io doesn't already have pub/sub functionality.
[04:04] amigojapan has joined the channel
[04:10] amigojapan has joined the channel
[04:11] Marak has joined the channel
[04:15] towski has joined the channel
[04:18] Druid has joined the channel
[04:18] abjorn: silly freenode and it's netsplits
[04:20] daleharvey: anyone have a really simple configuration file with local overrides?
[04:21] daleharvey: im just making a config.js and doing require('config.js'), would like to have an optional config.local.js as well with just overrides
[04:28] daleharvey: sweet that was easy - http://pastebin.me/188842111b3069a3aa51932b1e189080
[04:36] amigojapan has joined the channel
[04:42] nuck has joined the channel
[04:48] creationix has joined the channel
[04:49] creationix: I think I finally understand http_parser
[04:49] creationix: https://twitter.com/#!/creationix/status/116372415319261185
[04:53] creationix: any libuv experts around?
[04:59] Wa has joined the channel
[05:00] nuck has joined the channel
[05:03] DennisRasmussen has joined the channel
[05:25] jhurliman has joined the channel
[05:36] DennisRas has joined the channel
[05:48] creationix has left the channel
[06:06] nuck has joined the channel
[06:06] nuck: `v commands
[06:06] v8bot_: nuck: Commands: Type `v . Optionally, type `v @ to send to a specific user. `v Commands are: about, beers, commands, git, google, help, macro. Other commands: v8, `re, `pcre, `ref. Type `v help for more information. Join #v8bot for more support.
[06:06] nuck: `v about
[06:06] v8bot_: nuck: v8bot is an IRC bot written entirely in Javascript using Google's v8 Javascript engine and Node.js. Credits: eisd, Tim_Smart, gf3, MizardX, inimino. Join us at #v8bot !
[06:07] nuck: ACTION brings his bot to the network
[06:26] rmzg has joined the channel
[06:27] kulor-uk has joined the channel
[06:28] dynacker: `v die
[06:28] v8bot_: dynacker: No such command.
[06:28] dynacker: you're a command v8bot_ !
[06:29] dominictarr has joined the channel
[06:54] wadey has joined the channel
[06:58] groom has joined the channel
[06:58] _kud has joined the channel
[07:14] raphdg has joined the channel
[07:39] tim_smart has joined the channel
[07:40] Druid has joined the channel
[07:44] stonebranch has joined the channel
[07:50] simenbrekken has joined the channel
[07:50] mhiku has joined the channel
[07:50] freeformz has joined the channel
[07:50] luke` has joined the channel
[07:50] ivan` has joined the channel
[07:50] Margle has joined the channel
[07:50] ablomen has joined the channel
[07:50] emattias has joined the channel
[07:50] zeiris has joined the channel
[07:50] L_star has joined the channel
[07:50] sub_pop has joined the channel
[07:50] shapeshed has joined the channel
[07:50] konobi has joined the channel
[07:50] jbpros has joined the channel
[07:50] pquerna has joined the channel
[07:50] Predominant has joined the channel
[07:50] chrisdickinson has joined the channel
[07:50] meso has joined the channel
[07:50] XooRdrumCalibre has joined the channel
[07:50] schwab has joined the channel
[07:50] ajpiano has joined the channel
[07:50] Remoun has joined the channel
[07:50] jaequery has joined the channel
[07:50] Guest46593 has joined the channel
[07:50] ryah has joined the channel
[07:50] JakeyChan has joined the channel
[07:50] sstreza has joined the channel
[07:50] gaYak has joined the channel
[07:50] anoop has joined the channel
[07:50] necrodearia has joined the channel
[07:50] WRAz has joined the channel
[07:50] tobie has joined the channel
[07:50] rurufufuss has joined the channel
[07:50] andrewfff has joined the channel
[07:50] SamuraiJack has joined the channel
[07:50] TheJH_phone has joined the channel
[07:50] Navarr has joined the channel
[07:50] SubStack has joined the channel
[07:50] cjheath has joined the channel
[07:50] OmidRaha has joined the channel
[07:50] Frippe has joined the channel
[07:50] Nuck has joined the channel
[07:50] caffine has joined the channel
[07:50] svnlto has joined the channel
[07:50] secoif has joined the channel
[07:50] saikat has joined the channel
[07:50] Peniar has joined the channel
[07:50] AAA_awright has joined the channel
[07:50] cha0s has joined the channel
[07:50] boehm has joined the channel
[07:50] rchavik has joined the channel
[07:50] KindOne has joined the channel
[07:50] thepatr1ck has joined the channel
[07:50] ecin has joined the channel
[07:50] yuwang has joined the channel
[07:50] Ned_ has joined the channel
[07:50] skm has joined the channel
[07:50] jacobolus has joined the channel
[07:50] normanrichards has joined the channel
[07:50] skiz has joined the channel
[07:50] defeated has joined the channel
[07:50] jzacsh has joined the channel
[07:50] ditesh|cassini has joined the channel
[07:50] kbni has joined the channel
[07:50] r04r has joined the channel
[07:50] neoesque has joined the channel
[07:50] Twelve-60` has joined the channel
[07:50] mjijackson has joined the channel
[07:50] rektide has joined the channel
[07:50] dgathright has joined the channel
[07:50] paulwe_ has joined the channel
[07:50] cliffano has joined the channel
[07:50] tanepiper_ has joined the channel
[07:50] dshaw_ has joined the channel
[07:50] a11235 has joined the channel
[07:50] bronson has joined the channel
[07:50] isufy has joined the channel
[07:50] gdusbabek has joined the channel
[07:50] dleonard1 has joined the channel
[07:50] paulbaumgart_ has joined the channel
[07:50] dabailey has joined the channel
[07:50] fson has joined the channel
[07:50] Guest54968 has joined the channel
[07:50] klaruz_ has joined the channel
[07:50] ismell has joined the channel
[07:50] Esteb_ has joined the channel
[07:50] foobarfi1hter has joined the channel
[07:50] doffm has joined the channel
[07:50] ByteCrunch_ has joined the channel
[07:50] [[zz]] has joined the channel
[07:50] iaincarsberg has joined the channel
[07:50] mattly has joined the channel
[07:50] mrtazz has joined the channel
[07:50] Croms has joined the channel
[07:50] sam350 has joined the channel
[07:50] Swizec has joined the channel
[07:50] baudehlo has joined the channel
[07:50] brimster_ has joined the channel
[07:50] Sidnicious has joined the channel
[07:50] CoverSli1e has joined the channel
[07:50] zmbmartin has joined the channel
[07:50] cpetzold has joined the channel
[07:50] parshap has joined the channel
[07:50] SvenDowideit has joined the channel
[07:50] skyler_brungardt has joined the channel
[07:50] edwardmsmith has joined the channel
[07:50] neorab has joined the channel
[07:50] TheFuzzball has joined the channel
[07:50] plov has joined the channel
[07:50] ericmuyser has joined the channel
[07:50] Industrim has joined the channel
[07:50] ralphholzmann has joined the channel
[07:50] spasquali has joined the channel
[07:50] jl_2 has joined the channel
[07:50] c4milo has joined the channel
[07:50] hdon- has joined the channel
[07:50] boaz has joined the channel
[07:50] HardPhuc has joined the channel
[07:50] briandh has joined the channel
[07:50] Fuu has joined the channel
[07:50] Drakonite has joined the channel
[07:50] ktos has joined the channel
[07:50] stravid has joined the channel
[07:50] akujin has joined the channel
[07:50] krh has joined the channel
[07:50] iFire has joined the channel
[07:50] arpunk has joined the channel
[07:50] ryanseddon has joined the channel
[07:50] Newky has joined the channel
[07:50] zorzar has joined the channel
[07:50] ryan0x2_ has joined the channel
[07:50] Guest51826 has joined the channel
[07:50] dmwuw has joined the channel
[07:50] luxigo has joined the channel
[07:50] htoothrot has joined the channel
[07:50] anveo has joined the channel
[07:50] McMAGIC--Copy has joined the channel
[07:50] srijan4 has joined the channel
[07:50] halcyon918 has joined the channel
[07:50] grieve[a] has joined the channel
[07:50] Ezku\ has joined the channel
[07:50] davididas has joined the channel
[07:50] cclever has joined the channel
[07:50] riven has joined the channel
[07:50] jesusabdullah has joined the channel
[07:50] chjj has joined the channel
[07:50] PuffTheMagic has joined the channel
[07:50] olivier__ has joined the channel
[07:50] kimico has joined the channel
[07:50] nab has joined the channel
[07:50] descipher has joined the channel
[07:50] tjgillies has joined the channel
[07:50] Daegalus has joined the channel
[07:50] binaryjohn has joined the channel
[07:50] niclone has joined the channel
[07:50] diamonddog has joined the channel
[07:50] jonaslund has joined the channel
[07:50] AD7six has joined the channel
[07:50] walkah has joined the channel
[07:50] errordeveloper has joined the channel
[07:50] levi has joined the channel
[07:50] swhit has joined the channel
[07:50] przemoc has joined the channel
[07:50] thermal has joined the channel
[07:50] kei has joined the channel
[07:50] robashto1 has joined the channel
[07:50] mikey_p has joined the channel
[07:50] stelcheck1 has joined the channel
[07:50] medice has joined the channel
[07:50] arkx has joined the channel
[07:50] addisonj has joined the channel
[07:50] eresair has joined the channel
[07:50] dscape has joined the channel
[07:50] keyvan has joined the channel
[07:50] Tobbe__ has joined the channel
[07:50] jamesd_ has joined the channel
[07:50] alindeman has joined the channel
[07:50] cmeiklejohn has joined the channel
[07:50] brianloveswords has joined the channel
[07:50] slloyd has joined the channel
[07:50] xerox has joined the channel
[07:50] Hosh has joined the channel
[07:50] JasonSmith has joined the channel
[07:50] chunhao_ has joined the channel
[07:50] metadaddy has joined the channel
[07:50] Andeye has joined the channel
[07:50] DrPizza has joined the channel
[07:50] chilts has joined the channel
[07:50] einaros has joined the channel
[07:50] odyniec has joined the channel
[07:50] pig has joined the channel
[07:50] gkatsev has joined the channel
[07:50] stride has joined the channel
[07:50] shachaf has joined the channel
[07:50] pradeepto has joined the channel
[07:50] ben_alman has joined the channel
[07:50] llrcombs has joined the channel
[07:50] elijah-mbp has joined the channel
[07:50] trepan has joined the channel
[07:50] barodeur has joined the channel
[07:50] izz_ has joined the channel
[07:50] pkrumins has joined the channel
[07:50] sorensen has joined the channel
[07:50] sstephenson has joined the channel
[07:50] mrkurt has joined the channel
[07:50] polyrhythmic has joined the channel
[07:50] Draggor has joined the channel
[07:50] liberum has joined the channel
[07:50] slpsys has joined the channel
[07:50] chapel has joined the channel
[07:50] teadict has joined the channel
[07:50] 15SABC3MR has joined the channel
[07:50] Creap has joined the channel
[07:50] slickplaid has joined the channel
[07:50] balgarath has joined the channel
[07:50] __main__ has joined the channel
[07:50] cognominal has joined the channel
[07:50] janne has joined the channel
[07:50] bentruyman has joined the channel
[07:50] Martz has joined the channel
[07:50] deoxxa has joined the channel
[07:50] scoates has joined the channel
[07:50] btipling has joined the channel
[07:50] krazyivan has joined the channel
[07:50] digiwano has joined the channel
[07:50] context has joined the channel
[07:50] royh has joined the channel
[07:50] Clex has joined the channel
[07:50] roger_raymond has joined the channel
[07:50] jn has joined the channel
[07:50] flagg0204 has joined the channel
[07:50] zamolxes has joined the channel
[07:50] nail_ has joined the channel
[07:50] berasa has joined the channel
[07:50] madari_ has joined the channel
[07:50] Pilate has joined the channel
[07:50] m0 has joined the channel
[07:50] _root_ has joined the channel
[07:50] elliottcable has joined the channel
[07:50] sid3k has joined the channel
[07:50] Tobbe has joined the channel
[07:50] tomilaine has joined the channel
[07:50] DJBouche has joined the channel
[07:50] ashb has joined the channel
[07:50] geoffeg has joined the channel
[07:50] unmanbearpig has joined the channel
[07:50] raydeo has joined the channel
[07:50] zentooo has joined the channel
[07:50] duckspeaker has joined the channel
[07:50] coffeecup has joined the channel
[07:50] fuzzyone has joined the channel
[07:50] jp323 has joined the channel
[07:50] ivaldi has joined the channel
[07:50] pdm_ has joined the channel
[07:50] korch has joined the channel
[07:50] optixx has joined the channel
[07:50] jakeskik has joined the channel
[07:50] framlin has joined the channel
[07:50] Aco- has joined the channel
[07:50] cce has joined the channel
[07:50] russell_h has joined the channel
[07:50] shenlok has joined the channel
[07:50] keeto has joined the channel
[07:50] ctide has joined the channel
[07:50] yenz has joined the channel
[07:50] morgabra has joined the channel
[07:50] zed0_ has joined the channel
[07:50] Tobias| has joined the channel
[07:50] ekes has joined the channel
[07:50] lukstr has joined the channel
[07:50] stylus has joined the channel
[07:50] a11235 has joined the channel
[07:50] DrPizza has joined the channel
[07:50] mrkurt has joined the channel
[07:50] sstephenson has joined the channel
[07:50] xerox has joined the channel
[07:50] Nuck: Holy fuck
[07:50] Nuck: Is it over?
[07:51] djcoin has joined the channel
[07:51] 92AAAHEGS has joined the channel
[07:51] cosmincx has joined the channel
[07:51] aho has joined the channel
[07:51] matyr has joined the channel
[07:51] SirZin has joined the channel
[07:51] devaholic has joined the channel
[07:51] topaxi has joined the channel
[07:51] geojeff has joined the channel
[07:51] admc has joined the channel
[07:51] dmkbot has joined the channel
[07:51] Emmanuel` has joined the channel
[07:51] Eber has joined the channel
[07:51] gf3 has joined the channel
[07:51] MooGoo has joined the channel
[07:51] infynyxx has joined the channel
[07:51] jj0hns0n has joined the channel
[07:51] vidi has joined the channel
[07:51] freewil has joined the channel
[07:51] avih has joined the channel
[07:51] bwinton has joined the channel
[07:51] jwcooper has joined the channel
[07:51] meltphace has joined the channel
[07:51] mraleph has joined the channel
[07:51] RDove has joined the channel
[07:51] jyap has joined the channel
[07:51] crash82 has joined the channel
[07:51] lmatteis has joined the channel
[07:51] owenb has joined the channel
[07:51] gaving has joined the channel
[07:51] nphase has joined the channel
[07:51] ricepuddin has joined the channel
[07:51] alnewkirk has joined the channel
[07:51] Leonidas_ has joined the channel
[07:51] omni5cience has joined the channel
[07:51] rook2paw1 has joined the channel
[07:51] epsas_ has joined the channel
[07:51] azend has joined the channel
[07:51] mavin|gone has joined the channel
[07:51] teknopaul1 has joined the channel
[07:51] igl has joined the channel
[07:51] tizzo has joined the channel
[07:51] whoops has joined the channel
[07:51] bengrue has joined the channel
[07:51] joeytwiddle has joined the channel
[07:51] scottschecter has joined the channel
[07:51] navaru has joined the channel
[07:51] voodootikigod has joined the channel
[07:51] d_low_ has joined the channel
[07:51] jsanford has joined the channel
[07:51] orospakr has joined the channel
[07:51] Kai` has joined the channel
[07:51] wereHamster has joined the channel
[07:51] eddict has joined the channel
[07:51] _sri has joined the channel
[07:51] olegp has joined the channel
[07:51] zivester_ has joined the channel
[07:51] phiggins has joined the channel
[07:51] hakunin has joined the channel
[07:51] willwh has joined the channel
[07:51] panfist has joined the channel
[07:51] criswell has joined the channel
[07:51] crodas has joined the channel
[07:51] kersny has joined the channel
[07:51] Sebastien-L has joined the channel
[07:51] DoNaLd` has joined the channel
[07:51] dingomanatee has joined the channel
[07:51] austinbv has joined the channel
[07:51] zcopley has joined the channel
[07:51] stutter has joined the channel
[07:51] MrNibbles has joined the channel
[07:51] Hadaka has joined the channel
[07:51] daed has joined the channel
[07:51] robinduckett has joined the channel
[07:51] Gregor has joined the channel
[07:51] Nomon has joined the channel
[07:51] matt_c has joined the channel
[07:51] progrock has joined the channel
[07:51] zedas has joined the channel
[07:51] ollie has joined the channel
[07:51] pzich has joined the channel
[07:51] wang has joined the channel
[07:51] incredimike has joined the channel
[07:51] konobi: that doesn't look like a netsplit over
[07:51] mrkurt has joined the channel
[07:51] mehlah has joined the channel
[07:51] maru_cc has joined the channel
[07:51] adambeynon has joined the channel
[07:51] maqr has joined the channel
[07:51] stagas has joined the channel
[07:51] FireFly|n900 has joined the channel
[07:51] blueadept has joined the channel
[07:51] nforgerit has joined the channel
[07:51] tylerstalder has joined the channel
[07:51] Spion_ has joined the channel
[07:51] maxogden has joined the channel
[07:51] vns has joined the channel
[07:51] mquin has joined the channel
[07:51] bingomanatee1 has joined the channel
[07:51] jellosea has joined the channel
[07:51] zhware_ has joined the channel
[07:51] apejens has joined the channel
[07:51] Atm0z has joined the channel
[07:51] brannig_an has joined the channel
[07:51] mape_ has joined the channel
[07:51] beeviz has joined the channel
[07:51] temp01 has joined the channel
[07:51] tk has joined the channel
[07:51] justicefries_ has joined the channel
[07:51] er1c_ has joined the channel
[07:51] thinkt4nk has joined the channel
[07:51] SuMarDi has joined the channel
[07:51] forzan has joined the channel
[07:51] Dmitrijus has joined the channel
[07:51] Garo_ has joined the channel
[07:51] g4 has joined the channel
[07:51] joshontheweb has joined the channel
[07:51] Sami_ZzZ has joined the channel
[07:51] josch has joined the channel
[07:51] Isaiah has joined the channel
[07:51] nuba has joined the channel
[07:51] lmorchard has joined the channel
[07:51] redphive has joined the channel
[07:51] cconstantine has joined the channel
[07:51] andyl has joined the channel
[07:51] halfhalo has joined the channel
[07:51] kaarlo has joined the channel
[07:51] Karmalicious has joined the channel
[07:51] monokrome has joined the channel
[07:51] Dreamer3 has joined the channel
[07:51] zinkem has joined the channel
[07:51] JKarsrud has joined the channel
[07:51] romainhuet has joined the channel
[07:51] jeremyselier has joined the channel
[07:51] blissdev has joined the channel
[07:51] indutny has joined the channel
[07:51] roidrage has joined the channel
[07:51] parse has joined the channel
[07:51] Aikar has joined the channel
[07:51] actonapp has joined the channel
[07:51] rhizmoe has joined the channel
[07:51] bsutt has joined the channel
[07:51] khmer has joined the channel
[07:51] jamonkko has joined the channel
[07:51] meder has joined the channel
[07:51] tmzt has joined the channel
[07:51] killfill has joined the channel
[07:51] bmaland_ has joined the channel
[07:51] thedjinn_ has joined the channel
[07:51] rachelderp has joined the channel
[07:51] atiti has joined the channel
[07:51] marienz has joined the channel
[07:51] nigelb has joined the channel
[07:51] Sembiance has joined the channel
[07:51] jburkhart has joined the channel
[07:51] tahu has joined the channel
[07:51] sdboyer has joined the channel
[07:51] sapht has joined the channel
[07:51] jheusala has joined the channel
[07:51] flexd has joined the channel
[07:51] optico has joined the channel
[07:51] a11235 has joined the channel
[07:51] xerox has joined the channel
[07:51] gaving has joined the channel
[07:51] a11235 has joined the channel
[07:51] lukegb has joined the channel
[07:52] PhilK has joined the channel
[07:52] kriss has joined the channel
[07:52] fearphage has joined the channel
[07:52] iivvoo has joined the channel
[07:52] Hamms has joined the channel
[07:52] swaj has joined the channel
[07:52] hoodow has joined the channel
[07:52] mekwall has joined the channel
[07:52] tg has joined the channel
[07:52] DrPizza has joined the channel
[07:52] johnwards has joined the channel
[07:52] beevi7 has joined the channel
[07:52] yozgrahame has joined the channel
[07:52] replore_ has joined the channel
[07:52] replore has joined the channel
[07:52] alek_b has joined the channel
[07:52] Bonuspunkt has joined the channel
[07:52] blup has joined the channel
[07:52] Raynos has joined the channel
[07:52] ajsie has joined the channel
[07:52] majek_ has joined the channel
[07:52] khrome has joined the channel
[07:52] godzirra has joined the channel
[07:52] [diecast] has joined the channel
[07:52] metellus has joined the channel
[07:52] eee_c has joined the channel
[07:52] sonnym has joined the channel
[07:52] eventualbuddha has joined the channel
[07:52] rtward has joined the channel
[07:52] seebees has joined the channel
[07:52] innociv has joined the channel
[07:52] azeroth__ has joined the channel
[07:52] webben has joined the channel
[07:52] JulioBarros has joined the channel
[07:52] JP has joined the channel
[07:52] neme has joined the channel
[07:52] githogori has joined the channel
[07:52] headz has joined the channel
[07:52] wink_ has joined the channel
[07:52] levi501d has joined the channel
[07:52] lemon-tree has joined the channel
[07:52] jwpeddle has joined the channel
[07:52] RushPL has joined the channel
[07:52] alexh has joined the channel
[07:52] uptownben has joined the channel
[07:52] jvolkman has joined the channel
[07:52] [tm]_ has joined the channel
[07:52] davve_ has joined the channel
[07:52] twinshadow has joined the channel
[07:52] pct has joined the channel
[07:52] dcelix has joined the channel
[07:52] tellnes has joined the channel
[07:52] rgmarcha has joined the channel
[07:52] zemm has joined the channel
[07:52] finsken has joined the channel
[07:52] PrgmrBill has joined the channel
[07:52] matti has joined the channel
[07:52] mediacoder has joined the channel
[07:52] kflorence has joined the channel
[07:52] boxysean has joined the channel
[07:52] rick_h_ has joined the channel
[07:52] threedaymonk has joined the channel
[07:52] franck34_ has joined the channel
[07:52] Gruni has joined the channel
[07:52] txxt has joined the channel
[07:52] ddollar has joined the channel
[07:52] Jalava has joined the channel
[07:52] silky has joined the channel
[07:52] termie has joined the channel
[07:52] tmm1 has joined the channel
[07:52] CIA-54 has joined the channel
[07:52] neshaug has joined the channel
[07:52] pdonald has joined the channel
[07:52] ossareh has joined the channel
[07:52] a11235 has joined the channel
[07:52] mrkurt has joined the channel
[07:52] djcoin has joined the channel
[07:52] apoc has joined the channel
[07:52] tuhoojabotti has joined the channel
[07:52] trupppOFF has joined the channel
[07:52] djcoin has joined the channel
[07:52] ricepuddin has joined the channel
[07:52] 13WAAEDYF has joined the channel
[07:52] knifed has joined the channel
[07:52] Morkel has joined the channel
[07:52] inimino has joined the channel
[07:52] [AD]Turbo has joined the channel
[07:52] burningdog has joined the channel
[07:52] fangel has joined the channel
[07:52] ph^ has joined the channel
[07:52] mike5w3c has joined the channel
[07:52] `3rdEden has joined the channel
[07:52] ronnieboy has joined the channel
[07:52] k1ttty has joined the channel
[07:52] confoocious has joined the channel
[07:52] bombworm has joined the channel
[07:52] jldbasa has joined the channel
[07:52] enhydra has joined the channel
[07:52] sirdancealot has joined the channel
[07:52] mikeycgto has joined the channel
[07:52] jmoiron has joined the channel
[07:52] tomb| has joined the channel
[07:52] zpao has joined the channel
[07:52] mif86 has joined the channel
[07:52] up_the_irons has joined the channel
[07:52] langworthy has joined the channel
[07:52] sivy has joined the channel
[07:52] kkaefer has joined the channel
[07:52] _baton_ has joined the channel
[07:52] markatto has joined the channel
[07:52] Shrink has joined the channel
[07:52] CoinOpeBoy has joined the channel
[07:52] CrypticSwarm has joined the channel
[07:52] adelcambre has joined the channel
[07:52] cnu has joined the channel
[07:52] mrryanjohnston has joined the channel
[07:52] Astro has joined the channel
[07:52] deedubs has joined the channel
[07:52] b52 has joined the channel
[07:52] jakob has joined the channel
[07:52] mac^ has joined the channel
[07:52] Skyec has joined the channel
[07:52] slajax has joined the channel
[07:52] jimt has joined the channel
[07:52] pandark_ has joined the channel
[07:52] onre has joined the channel
[07:52] MikeW has joined the channel
[07:52] sugyan_ has joined the channel
[07:52] marlun has joined the channel
[07:52] gerard0 has joined the channel
[07:52] Tobbe_ has joined the channel
[07:52] MrNko has joined the channel
[07:52] rudolfrck has joined the channel
[07:52] jspiros has joined the channel
[07:52] jhbot has joined the channel
[07:52] silverwind has joined the channel
[07:52] gwoo has joined the channel
[07:52] lifty has joined the channel
[07:52] Lartsa has joined the channel
[07:52] _mdp has joined the channel
[07:52] callumacrae has joined the channel
[07:52] Guest18468 has joined the channel
[07:52] visnup has joined the channel
[07:52] bradwright has joined the channel
[07:52] inarru has joined the channel
[07:52] drudge has joined the channel
[07:52] minerale has joined the channel
[07:52] Lorentz has joined the channel
[07:52] wao has joined the channel
[07:53] herbySk has joined the channel
[07:53] a11235 has joined the channel
[07:53] DrPizza has joined the channel
[07:53] xerox has joined the channel
[07:54] matyr has joined the channel
[07:54] gaving_ has joined the channel
[07:55] aaronmcadam has joined the channel
[07:55] a11235 has joined the channel
[07:55] hellp has joined the channel
[07:57] pizthewiz has joined the channel
[07:57] v8bot_ has joined the channel
[07:58] Nuck: v8: 1 + 1
[07:58] v8bot_: Nuck: 2
[07:59] cclever has left the channel
[07:59] mhiku has joined the channel
[08:00] NetRoY has joined the channel
[08:00] Guest81341 has joined the channel
[08:00] KindOne has joined the channel
[08:01] mpavel has joined the channel
[08:02] replore__ has joined the channel
[08:02] replor___ has joined the channel
[08:02] dshaw_ has joined the channel
[08:02] mpavel has left the channel
[08:02] sylvinus has joined the channel
[08:04] tylerstalder has joined the channel
[08:04] daglees has joined the channel
[08:05] meso has joined the channel
[08:07] mhiku has joined the channel
[08:07] v8bot_ has joined the channel
[08:10] stalled has joined the channel
[08:10] thalll has joined the channel
[08:12] KindOne has joined the channel
[08:14] __doc__ has joined the channel
[08:14] stagas has joined the channel
[08:14] nforgerit has joined the channel
[08:15] Emmanuel_ has joined the channel
[08:16] bergelmir has joined the channel
[08:16] bergelmir has joined the channel
[08:16] marienz has joined the channel
[08:18] clockwize has joined the channel
[08:20] eldios has joined the channel
[08:21] pibi has joined the channel
[08:22] pibi has left the channel
[08:23] Glenjamin has joined the channel
[08:25] cjheath has joined the channel
[08:27] aron_ has joined the channel
[08:28] matyr has joined the channel
[08:28] JKDD has joined the channel
[08:28] svenlito has joined the channel
[08:29] daglees has joined the channel
[08:29] daglees has joined the channel
[08:31] uchuff has joined the channel
[08:31] dexter_e has joined the channel
[08:32] dexter_e: Anyone Know where the Logs for this channel are ?
[08:32] Dulak has joined the channel
[08:32] stagas has joined the channel
[08:33] mhiku has joined the channel
[08:34] Skomski has joined the channel
[08:35] KindOne has left the channel
[08:36] chjj: dexter_e: theyre on felix's site arent they?
[08:36] chjj: debuggable.com
[08:36] dexter_e: thanks!
[08:37] chjj: found it
[08:37] chjj: http://nodejs.debuggable.com/
[08:37] shipit has joined the channel
[08:38] dexter_e: I also found em here: http://irclogger.com/
[08:38] dexter_e: chjj: by chance do you happen to also know where the #express channel logs are ?
[08:39] chjj: no idea, sorry
[08:40] robotmay has joined the channel
[08:41] Nuck has joined the channel
[08:41] jacobolus has joined the channel
[08:42] jacobolu_ has joined the channel
[08:43] kulor-uk has joined the channel
[08:44] mynameisbender has joined the channel
[08:45] FIQ|screen has joined the channel
[08:45] chjj: nuck: use vim
[08:45] chjj: ...go!
[08:45] matyr_ has joined the channel
[08:45] Eber has left the channel
[08:47] hnan has joined the channel
[08:47] boltR has joined the channel
[08:47] mhiku has joined the channel
[08:48] TheJH has joined the channel
[08:49] daglees__ has joined the channel
[08:50] Morkel: chjj: Are you from Transloadit.com?
[08:51] chjj: Morkel: hm? no
[08:51] Nuck: GET /sammich
[08:51] chjj: sorry ;p
[08:51] Nuck: ;3
[08:51] chjj: nuck: i bet you could have typed that like 20x faster in vim, whats wrong with you
[08:52] Nuck: chjj: SHUT UP I LIKE IRSSI GOOOOOSH
[08:52] chjj: you use irssi now?!
[08:52] Nuck: :P
[08:52] chjj: finally
[08:52] Nuck: Yeah
[08:52] chjj: come over to good irc clients
[08:52] Nuck: I have since I moved to Ubuntu
[08:53] chjj: irssi is amazing, come on, admit it
[08:53] Nuck: it is
[08:53] Nuck: a TUI with the awesome of a GUI
[08:53] chjj: the themes are nice too
[08:53] chjj: i ended up making my own
[08:53] mhiku has joined the channel
[08:54] gf3 has joined the channel
[08:54] ph^ has joined the channel
[08:55] chjj: Nuck: now you just need to switch over to vim
[08:55] Nuck: chjj: Nope
[08:55] chjj: Nuck: and midnight commander, and do everything in the terminal
[08:55] Nuck: I have used MC before
[08:55] Nuck: Quite pleasant thing
[08:56] chjj: but not vim?
[08:56] Nuck: nope
[08:56] Nuck: vim is unpleasant
[08:56] chjj: :)
[08:56] Nuck: Too much memorization
[08:56] Nuck: I'll stick to nano
[08:56] Nuck: or Sublime
[08:56] chjj: its actually not memorization, just muscle memory really
[08:56] mikedeboer has joined the channel
[08:57] Nuck: chjj: I don't have muscle memory as much as other people do
[08:57] [AD]Turbo has joined the channel
[08:57] chjj: i was looking more at sublime, i dont pay to use a text editor
[08:57] Nuck: I can't play video games because of that
[08:57] Nuck: chjj: Nor do I. It's mostly just nagware
[08:58] chjj: yeah, i figured, you said you used mirc
[08:58] chjj: :)
[08:58] matyr has joined the channel
[09:01] meso has joined the channel
[09:02] mhiku has joined the channel
[09:02] d_low__ has joined the channel
[09:02] matyr_ has joined the channel
[09:02] eldios has joined the channel
[09:02] Nuck: chjj: haha I actually had a pre-nagware version of mIRC
[09:03] Nuck: The one used in SysReset
[09:03] meso_ has joined the channel
[09:03] Morkel: Does anyone know a good fun projekt to lern node.js? I am so terrible uncreative
[09:04] TheJH: Morkel, in case nobody else already did it, a forum :)
[09:04] rurufufuss: Morkel: a twitter clone with 16 character limit!
[09:04] rurufufuss: micro-micro-blogging
[09:05] Morkel: rurufufuss: this is a good idea thx
[09:05] rurufufuss: well, let me know once you made it
[09:06] clockwize has joined the channel
[09:06] rurufufuss: though I'm pretty sure someone would have made that by now
[09:08] MrNibbles has joined the channel
[09:09] adambeynon has joined the channel
[09:10] [AD]Turbo has joined the channel
[09:12] Glenjamin: http://www.youtube.com/watch?v=BeLZCy-_m3s
[09:12] Nuck|mobile has joined the channel
[09:12] MrNko has joined the channel
[09:13] netlemur has joined the channel
[09:13] MrNko has joined the channel
[09:13] Nuck|mobile: MrNko: Should become NeKO
[09:13] Nuck|mobile: :B
[09:14] Juan77 has joined the channel
[09:14] MrNko has joined the channel
[09:14] blup: nuck: how can you say vim is unpleasant?
[09:15] Nuck|mobile: It is, I don't remember things well, hence I hate modal editing.
[09:15] bzinger has joined the channel
[09:15] blup: it just takes time and a good cheatsheet
[09:15] sylvinus has joined the channel
[09:15] blup: now i can't edit in gedit/nano/word
[09:15] blup: i keep trying to use my shortcuts :)
[09:16] blup: i like it so much, chrome and firefox both have vim plugins for scrolling/changing tabs/clicking links, etc
[09:16] blup: my chrome and ff*
[09:17] innociv: When you do socket.join('room') is there an object for that room where I can set properties?
[09:17] innociv: And a gettter for the room?
[09:17] blup: i was wondering, instead of obfuscating some client code, would it be a good idea to send the objects on('ready') with socket.io?
[09:17] innociv: It does it only exist as the string?
[09:17] innociv: On socket.io, sorry.
[09:18] TomY has joined the channel
[09:18] _3rdEden: innociv no there isnt
[09:18] innociv: Kk
[09:19] innociv: And when users disconnect do they automatically leave rooms?
[09:19] blup: i believe yes
[09:19] innociv: Would make sense.
[09:22] _3rdEden: yes they should
[09:23] whitman has joined the channel
[09:25] abraxas has joined the channel
[09:25] matyr has joined the channel
[09:25] plutoniiix has joined the channel
[09:25] [AD]Turbo has joined the channel
[09:27] burningdog has joined the channel
[09:29] bergie has joined the channel
[09:29] stagas has joined the channel
[09:33] torsd has joined the channel
[09:41] misterncw has joined the channel
[09:42] tobie has joined the channel
[09:42] irahgel has joined the channel
[09:47] sreeix has joined the channel
[09:54] showcase has joined the channel
[09:56] eldios: `3rdEden, you there?
[09:56] freeformz has joined the channel
[09:57] sylvinus has joined the channel
[09:58] stagas has joined the channel
[10:00] Xano has joined the channel
[10:06] wbednarski has joined the channel
[10:10] matyr_ has joined the channel
[10:14] FireFly|n900 has joined the channel
[10:14] fermion has joined the channel
[10:15] matyr has joined the channel
[10:15] herbySk has joined the channel
[10:16] thalll has joined the channel
[10:17] daglees has joined the channel
[10:18] kbni2 has joined the channel
[10:20] Shrink has joined the channel
[10:21] kenperkins has joined the channel
[10:21] nuck_ has joined the channel
[10:22] `3rdEden: eldios yup
[10:23] eldios: you should listen here --> http://www.spreecast.com/events/nodejs-hangout-episode-00 <-- since I mentioned you
[10:25] nuck has joined the channel
[10:25] jro_ has joined the channel
[10:26] eldios: geez I shuold totally improve my english XD
[10:27] eldios: and my appereance
[10:27] Epeli has joined the channel
[10:27] fg3 has joined the channel
[10:28] Frippe has joined the channel
[10:29] eldios: `3rdEden, if we can arrange to have a few minutes of spare time we should totally do the spreecast from the nodejsconf.it event together :)
[10:29] boltR has joined the channel
[10:30] briandh has left the channel
[10:30] `3rdEden: eldios i'll listen to it in asec :p
[10:30] eldios: yup
[10:31] matyr_ has joined the channel
[10:32] `3rdEden: and we can probably do some spreecat on nodejsconf that would be cool :)
[10:32] rendar has joined the channel
[10:35] jer0me_ has joined the channel
[10:35] eldios: \o/
[10:35] eldios: but believe me.. we'll need a good connection if we want to do so
[10:36] eldios: I made an episode-0 which was full of technical problems because of my connection (mainly because of the low bandwidth)
[10:36] eldios: I was thinking of doing the spreecast via my mobile android hotspot but after yesterday I understood it was not a good idea =)
[10:41] FireFly|n900 has joined the channel
[10:43] `3rdEden: eldios there should be free wifi at the conference
[10:44] `3rdEden: so as long you are close to a good hotspot, it should be `ok` I guess
[10:44] eldios: let's hope so.. I'll try to do a check on the site asap when I'll be there
[10:46] Dulak: every conference I've gone to with more than a few members the wi-fi gets swamped and becomes almost unusable
[10:47] mendel_ has joined the channel
[10:47] nuck has joined the channel
[10:48] matyr has joined the channel
[10:49] Frippe has joined the channel
[10:51] Frippe has joined the channel
[10:51] `3rdEden: Yeah I'll try to not depend on internet to much for my presentation ;p
[10:51] okuryu has joined the channel
[10:52] Dulak: some give a restricted wifi for staff and speakers so it might be ok.
[10:54] matyr_ has joined the channel
[10:55] markwubben has joined the channel
[10:57] eldios: `3rdEden, for you speach there's no problem I can lend you my android phone
[10:57] eldios: if you don't need to run heavy bandwidth apps there would be no problem at all
[10:58] eldios: but streaming video is a different mater, unfortunately
[10:59] Shrink has joined the channel
[10:59] Shrink has joined the channel
[10:59] mendel_: none nodejs related: but does any of you have any experience with commercial ocr software?
[10:59] davidbanham has joined the channel
[11:01] davidbanham: Looks like Joyent no.de is still down. Still down for everyone else or just me?
[11:02] thalll has joined the channel
[11:03] `3rdEden: eldios I just jailbroke my iphone
[11:03] `3rdEden: So i got a backup connection :)
[11:04] matyr has joined the channel
[11:04] theCole has joined the channel
[11:04] eldios: `3rdEden, I rooted and installed a custom ROM on my android 5 seconds after it was out of the original paper box
[11:05] chjj has left the channel
[11:05] eldios: after a few months of use I still don't know what it looks like with the original samsung rom
[11:06] sreeix_ has joined the channel
[11:06] eldios: having an iphone without the jailbreak is like eating pizza without drinking a coke :)
[11:06] eldios: you can.. but "meh"
[11:06] sreeix_ has joined the channel
[11:08] DrMcKay has joined the channel
[11:08] chjj has joined the channel
[11:08] eddict: waiting for a jailbreak after each ios release is 'meh' imho
[11:08] jomoho has joined the channel
[11:08] DrMcKay: woo, netsplit over!
[11:09] mc_greeny has joined the channel
[11:09] collypops has joined the channel
[11:10] kloeri has joined the channel
[11:10] diamonddog has joined the channel
[11:10] DrMcKay: uhm, does mikeal's watch doesn't call filter function
[11:11] DrMcKay: * uhm, does mikeal's watch call filter function?
[11:12] ditesh|cassini has joined the channel
[11:13] Industrial has joined the channel
[11:13] Industrial: I'm getting a TypeError: Object #