00:00:00
| * ircretary | quit (Remote host closed the connection) |
00:00:08
| * ircretary | joined |
00:02:30
| * joshontheweb | joined |
00:10:05
| * robmozart | quit (Remote host closed the connection) |
00:10:08
| <defunctzombie> | feedback: on the homepage when I click login it takes me to another page where I have to click login again |
00:10:12
| <defunctzombie> | this is sadness |
00:10:17
| * robmozart | joined |
00:10:45
| * robmozart | quit (Remote host closed the connection) |
00:10:52
| <coderarity> | defunctzombie: huh, yeah |
00:11:07
| <coderarity> | defunctzombie: i'm not sure how/if that's fixable but i'll make an issue |
00:11:43
| <defunctzombie> | hahah, how would it not be fixable? |
00:12:06
| <mmalecki> | it is fixable |
00:12:13
| <mmalecki> | I'm bored and will implement this evening |
00:13:16
| * andris9 | joined |
00:14:26
| <defunctzombie> | haha |
00:14:45
| <coderarity> | defunctzombie: because javascript |
00:14:55
| <defunctzombie> | o.o |
00:15:07
| <mmalecki> | lol |
00:15:10
| <coderarity> | defunctzombie: that thing is probably a javascript button |
00:15:18
| <coderarity> | it doesn't look like it links to a hashtag |
00:16:35
| <mmalecki> | coderarity: I'll make it yo |
00:19:09
| * AndreasMadsen | quit (Remote host closed the connection) |
00:19:58
| * jlank | joined |
00:20:14
| * dylang | joined |
00:29:11
| * jlank | quit (Ping timeout: 245 seconds) |
00:35:24
| * kohai | joined |
00:36:11
| <defunctzombie> | is there a way to make the jitsu tool stop bumping the version in my local package.json file? |
00:36:27
| <mmalecki> | defunctzombie: no, sorry |
00:36:32
| <defunctzombie> | bah |
00:36:52
| <coderarity> | mmalecki: it has to :\ |
00:36:54
| <coderarity> | i mean |
00:36:55
| <coderarity> | defunctzombie: ^ |
00:37:12
| <defunctzombie> | coderarity: na, it doesn't cause if I undo the change |
00:37:18
| <defunctzombie> | and deploy again it works fine |
00:37:29
| <defunctzombie> | I could leave the version at 0.0.0 forever and it works |
00:37:36
| <mmalecki> | hmm? |
00:37:37
| <defunctzombie> | you guys just bump it on the server anyway |
00:37:39
| <mmalecki> | really? |
00:37:46
| <mmalecki> | nah, it's an array internally |
00:37:47
| <coderarity> | are you sure you didn't try that when it failed? |
00:37:49
| <defunctzombie> | try it |
00:38:01
| <defunctzombie> | I know ive done it before |
00:38:05
| <defunctzombie> | maybe things have changed |
00:39:13
| <coderarity> | i asked me to go up to the next version when i did that |
00:39:16
| * coen-hyde | joined |
00:39:19
| <coderarity> | defunctzombie: yeah, that would have been a bug |
00:39:30
| <coderarity> | defunctzombie: make sure to have your jitsu version up to date :D |
00:39:57
| <defunctzombie> | well, if I push to github |
00:40:01
| <defunctzombie> | and don't change the version |
00:40:06
| <defunctzombie> | it still deploys, right? |
00:40:48
| <coderarity> | i'm not actually sure exactly what happens in that situation, but i think it does |
00:41:38
| * joshontheweb | quit (Ping timeout: 255 seconds) |
00:41:58
| <defunctzombie> | let me rephrase that |
00:42:01
| <defunctzombie> | yes it works |
00:42:08
| <defunctzombie> | :) |
00:42:12
| <coderarity> | yeah |
00:42:16
| <defunctzombie> | so clearly the version doesn't have to change |
00:42:34
| <mmalecki> | defunctzombie: ah. webhooks. |
00:42:44
| <coderarity> | maybe it ups the version itself, i'm not sure, i have to test it or ask |
00:42:45
| <mmalecki> | it actually has the logic to bump the version internally |
00:42:56
| <coderarity> | oh, well :D |
00:43:51
| * joshontheweb | joined |
00:45:07
| <defunctzombie> | :) |
00:46:16
| <mmalecki> | defunctzombie: not incrementing it is shooting yourself in the foot |
00:46:27
| <defunctzombie> | why is that? |
00:46:41
| <coderarity> | defunctzombie: it'd overwrite a snapshot, probably |
00:46:43
| <mmalecki> | if your deploy fails and server starts misbehaving you can just revert with snapshots |
00:46:45
| <defunctzombie> | honestly, I don't want to increment another number when I have a git commit for it already |
00:46:53
| <coderarity> | or maybe not write it, who knows |
00:46:55
| <defunctzombie> | mmalecki: I can do that now |
00:47:01
| <defunctzombie> | the server gives me a new version anyway |
00:47:12
| <mmalecki> | also, semantically, it *is* correct to bump your version after deploy |
00:47:16
| <mmalecki> | because it is a release |
00:47:41
| <coderarity> | defunctzombie: you can just have a deploy commit, that's pretty comon |
00:47:53
| <coderarity> | defunctzombie: just like, git commit -a -m "deploy" :D |
00:48:04
| <defunctzombie> | why bother? |
00:48:09
| <defunctzombie> | if I have a deploy branch |
00:48:15
| <defunctzombie> | just more manual work and crap I need to do ;) |
00:48:27
| <coderarity> | could make a postdeploy hook |
00:48:33
| <coderarity> | then it'd be automati |
00:48:34
| <coderarity> | c |
00:48:50
| <coderarity> | also, don't you want to know what the code was at the last time you deployed? |
00:49:06
| <coderarity> | helps with debugging |
00:50:35
| <defunctzombie> | coderarity: why would I do any of this when I can just push to github and it deploys? |
00:50:43
| <defunctzombie> | everything you are talking about is just more work |
00:50:50
| <defunctzombie> | I want *less* work |
00:51:13
| <defunctzombie> | if I wanted more I wouldn't be in the business of writing programs to do my jobs for me ;) |
00:51:35
| <coderarity> | i mean, if you're doing push deploys, then it doesn't ask, does it? |
00:52:11
| <coderarity> | it's only when you deploy with jitsu that happens, if you want to avoid it and just use the github hook, then feel free :D |
00:52:34
| * joshontheweb | quit (Ping timeout: 260 seconds) |
00:54:28
| * joshontheweb | joined |
00:54:41
| * dylang | quit (Quit: dylang) |
00:55:42
| * c4milo | joined |
00:56:09
| * jlank | joined |
00:56:27
| <mmalecki> | defunctzombie: try clicking "Log in" now :) |
00:56:41
| <mmalecki> | if it doesn't work, clean your cache and so on :) |
00:56:47
| <defunctzombie> | mmalecki: \o/ |
00:56:49
| <defunctzombie> | works |
00:57:08
| <anoemi> | mmalecki: nice one :) |
00:58:41
| <mmalecki> | pleasure :) |
00:59:34
| <coderarity> | hooray! :D |
00:59:41
| * jcrugzz | quit (Ping timeout: 265 seconds) |
01:00:09
| * c4milo | quit (Ping timeout: 260 seconds) |
01:01:46
| * Sly | joined |
01:05:24
| * jlank | quit (Ping timeout: 260 seconds) |
01:07:24
| * anoemi | quit (Quit: anoemi) |
01:12:37
| * joshontheweb | quit (Ping timeout: 252 seconds) |
01:15:56
| * joshontheweb | joined |
01:16:16
| * andris9 | quit (Ping timeout: 245 seconds) |
01:18:11
| * xaq | joined |
01:31:22
| * shama | joined |
01:32:17
| * jlank | joined |
01:37:10
| * polarcuke | joined |
01:37:32
| * polarcuke | part |
01:42:31
| * jlank | quit (Ping timeout: 245 seconds) |
01:43:07
| * andris9 | joined |
01:51:41
| * joshontheweb | quit (Ping timeout: 245 seconds) |
01:54:14
| * xaq | quit (Remote host closed the connection) |
01:54:53
| * IrishGringo | joined |
01:55:47
| * xaq | joined |
01:56:01
| * joshontheweb | joined |
01:58:29
| * generalissimo | joined |
01:58:38
| * cesconix | joined |
02:05:31
| * dylang | joined |
02:08:54
| * jlank | joined |
02:11:36
| * joshontheweb | quit (Ping timeout: 264 seconds) |
02:14:29
| * joshontheweb | joined |
02:17:49
| * coen-hyde | quit (Quit: coen-hyde) |
02:18:32
| * jlank | quit (Ping timeout: 260 seconds) |
02:19:01
| * fauverism | joined |
02:19:20
| <fauverism> | Hi anybody in here? |
02:19:55
| * xaq | quit (Remote host closed the connection) |
02:27:19
| * joshontheweb | quit (Ping timeout: 260 seconds) |
02:31:51
| * cesconix | quit (Quit: Computer has gone to sleep.) |
02:32:08
| * fauverism | quit (Ping timeout: 245 seconds) |
02:32:20
| * joshontheweb | joined |
02:39:52
| * coen-hyde | joined |
02:40:30
| <coderarity> | Fabryz___: yo |
02:40:34
| <coderarity> | ooops |
02:43:12
| * c4milo | joined |
02:45:08
| * jlank | joined |
02:46:05
| * metafedora | joined |
02:46:16
| * andris9 | quit (Ping timeout: 245 seconds) |
02:47:29
| * c4milo | quit (Ping timeout: 260 seconds) |
02:49:47
| * blakmatrix | joined |
02:53:18
| * Nodejitsu-Github | joined |
02:53:19
| * YoY | quit (Read error: Connection reset by peer) |
02:53:19
| * Nodejitsu-Github | part |
02:53:20
| <mmalecki> | ^ yup, I just did that. |
02:53:31
| <coderarity> | good |
02:54:11
| * jlank | quit (Ping timeout: 245 seconds) |
02:54:13
| <mmalecki> | LET THE HOLY WAR BEGIN |
02:54:31
| * YoY | joined |
02:56:15
| <coderarity> | no one likes tabs |
02:56:26
| * therealkoopa | quit (Remote host closed the connection) |
02:57:08
| * joshontheweb | quit (Ping timeout: 265 seconds) |
02:57:56
| * blakmatrix | quit (Remote host closed the connection) |
03:00:15
| * joshontheweb | joined |
03:08:00
| * joshontheweb | quit (Ping timeout: 264 seconds) |
03:09:37
| * joshontheweb | joined |
03:12:35
| * therealkoopa | joined |
03:12:40
| * jcrugzz | joined |
03:13:00
| * shama | quit (Quit: shama) |
03:13:05
| * andris9 | joined |
03:18:42
| * therealkoopa | quit (Remote host closed the connection) |
03:21:21
| * jlank | joined |
03:30:39
| * jlank | quit (Ping timeout: 260 seconds) |
03:33:02
| * Powderhound | joined |
03:34:35
| * shama | joined |
03:45:05
| * metafedora | quit (Quit: metafedora) |
03:45:14
| * dylang | quit (Quit: dylang) |
03:48:22
| * joshontheweb | quit (Ping timeout: 265 seconds) |
03:49:02
| * joshontheweb | joined |
03:49:04
| * evangenieur | quit (Remote host closed the connection) |
03:49:36
| * evangenieur | joined |
03:49:37
| <coderarity> | to those who think they like tabes: you don't like tabs |
03:49:40
| <coderarity> | tabs* |
03:49:52
| <coderarity> | :P |
03:54:34
| * evangenieur | quit (Ping timeout: 260 seconds) |
03:57:43
| * jlank | joined |
03:58:17
| * dylang | joined |
03:59:19
| * ArxPoetica | part |
04:06:43
| * jlank | quit (Ping timeout: 244 seconds) |
04:10:51
| * joshontheweb | quit (Ping timeout: 244 seconds) |
04:13:15
| * joshontheweb | joined |
04:16:53
| * sberryman | quit (Ping timeout: 265 seconds) |
04:27:02
| * Nodejitsu-Github | joined |
04:27:02
| * Nodejitsu-Github | part |
04:29:59
| * c4milo | joined |
04:33:53
| * jlank | joined |
04:34:06
| * c4milo | quit (Ping timeout: 244 seconds) |
04:41:35
| * shama | quit (Quit: shama) |
04:44:11
| * jlank | quit (Ping timeout: 245 seconds) |
04:57:20
| * dylang | quit (Quit: dylang) |
05:02:53
| * motiooon | joined |
05:09:48
| * AvianFlu_ | joined |
05:10:50
| * jlank | joined |
05:12:28
| * AvianFlu | quit (Ping timeout: 265 seconds) |
05:16:43
| * andris9 | quit (Ping timeout: 260 seconds) |
05:18:59
| * joshontheweb | quit (Ping timeout: 252 seconds) |
05:22:35
| * joshontheweb | joined |
05:22:39
| * jlank | quit (Ping timeout: 260 seconds) |
05:32:34
| * joshontheweb | quit (Ping timeout: 260 seconds) |
05:34:26
| * joshontheweb | joined |
05:35:51
| * motiooon | quit (Quit: motiooon) |
05:42:58
| * andris9 | joined |
05:46:17
| * coderarity | quit (Quit: Lost terminal) |
05:47:01
| * coderarity | joined |
05:48:57
| * jlank | joined |
05:51:30
| * st_luke | joined |
06:01:10
| * AvianFlu_ | quit (Remote host closed the connection) |
06:01:16
| * jlank | quit (Ping timeout: 245 seconds) |
06:03:06
| * mAritz | joined |
06:08:31
| * joshontheweb | quit (Ping timeout: 260 seconds) |
06:11:00
| * joshontheweb | joined |
06:15:59
| * c4milo | joined |
06:20:24
| * c4milo | quit (Ping timeout: 260 seconds) |
06:28:00
| * jlank | joined |
06:33:30
| * defunctzombie | changed nick to defunctzombie_zz |
06:41:12
| * jlank | quit (Ping timeout: 244 seconds) |
06:46:18
| * admc | joined |
06:46:39
| * andris9 | quit (Ping timeout: 260 seconds) |
06:48:11
| * admc1 | joined |
06:50:36
| * admc | quit (Ping timeout: 250 seconds) |
06:57:44
| * joshontheweb | quit (Ping timeout: 244 seconds) |
07:00:04
| * joshontheweb | joined |
07:01:10
| * sberryman | joined |
07:07:40
| * jlank | joined |
07:10:05
| * joshontheweb | quit (Ping timeout: 255 seconds) |
07:11:01
| * joshontheweb | joined |
07:12:51
| * andris9 | joined |
07:20:51
| * jlank | quit (Ping timeout: 245 seconds) |
07:25:39
| * konklone | part |
07:28:59
| * jcrugzz | quit (Ping timeout: 255 seconds) |
07:42:25
| * AvianFlu | joined |
07:47:54
| * jlank | joined |
07:59:46
| * defunctzombie_zz | changed nick to defunctzombie |
08:01:46
| * motiooon | joined |
08:02:29
| * jlank | quit (Ping timeout: 260 seconds) |
08:04:46
| * jimmy | joined |
08:05:47
| <jimmy> | Anyone here willing to help me out with something? |
08:07:07
| * motiooon | quit (Quit: motiooon) |
08:12:09
| <defunctzombie> | is the "engines" field in package.json respected? or is the latest node version always used? |
08:12:16
| <defunctzombie> | is there a place where I can see available versions? |
08:12:22
| <substack> | it's ignored |
08:12:56
| <substack> | oh wait, only in npm >_< |
08:13:02
| <coderarity> | jimmy: what's up? |
08:13:07
| <coderarity> | defunctzombie: engines field is used |
08:13:32
| <defunctzombie> | coderarity: is there a place to find the available ones? |
08:13:35
| <coderarity> | defunctzombie: no place for seeing available versions, just use 0.8.x for now (will use the latest 0.8 version available) |
08:13:40
| <defunctzombie> | gotcha |
08:13:41
| <defunctzombie> | thx |
08:14:17
| <coderarity> | every time i send an email, i mess it up |
08:14:20
| <coderarity> | like seriously |
08:14:29
| <defunctzombie> | sounds like you need that delayed email feature |
08:14:30
| <defunctzombie> | haha |
08:14:58
| <coderarity> | yeah lol |
08:15:58
| * andris9 | quit (Ping timeout: 250 seconds) |
08:16:50
| * ppcano | joined |
08:17:16
| * joshontheweb | quit (Ping timeout: 250 seconds) |
08:19:02
| <defunctzombie> | how would I look at /root/tmp/tmp-161322rtcd9c/build/package/npm-debug.log |
08:19:12
| <defunctzombie> | a deployment is failing |
08:19:19
| <coderarity> | you can't |
08:19:21
| <defunctzombie> | and npm is saying that file might be of interest to me |
08:19:22
| <defunctzombie> | hahaha |
08:19:24
| <coderarity> | bu i can |
08:19:32
| * joshontheweb | joined |
08:19:57
| <defunctzombie> | I really an not used to not having box access ;P |
08:21:47
| <coderarity> | oh man |
08:21:52
| <coderarity> | it's like 2000 lines long |
08:22:37
| <defunctzombie> | well, I dunno what to tell you there |
08:23:09
| <coderarity> | well, here's the relevant stuff https://gist.github.com/9bfcc6e3846bce30ead1 |
08:23:39
| <coderarity> | either your version is way off, or npm is being slow |
08:24:18
| <defunctzombie> | hm |
08:24:32
| * joshontheweb | quit (Ping timeout: 244 seconds) |
08:24:40
| <coderarity> | oh, uh |
08:24:44
| <coderarity> | you can't use git repositories |
08:24:47
| <defunctzombie> | that is some old npm you have there |
08:24:50
| <defunctzombie> | and some old node |
08:25:03
| <defunctzombie> | I can.. but that npm version doesn't support the shorthand syntax :( |
08:25:12
| <defunctzombie> | adness |
08:25:14
| <defunctzombie> | *sadness |
08:25:53
| <defunctzombie> | is 8.8 the latest you guys have currently? |
08:26:03
| <coderarity> | not necessarily |
08:26:09
| <coderarity> | that's the version on the server that builds dependencies |
08:26:30
| <defunctzombie> | wut |
08:26:42
| <coderarity> | installing dependencies is seperate from running on a drone |
08:26:45
| <defunctzombie> | um... yea... that isn't gonna work out so hot btw |
08:26:49
| <coderarity> | because the drones are small and npm is memory greedy |
08:26:52
| <defunctzombie> | if you know anything about c++ |
08:26:57
| <coderarity> | i do |
08:27:22
| <defunctzombie> | I imagine this could end in sadness for someone's binary module at some point |
08:27:32
| <coderarity> | why? |
08:27:32
| * joshontheweb | joined |
08:27:46
| <defunctzombie> | you need to learn more about c++ and linking ;) |
08:27:58
| * admc1 | quit (Quit: Leaving.) |
08:27:58
| <coderarity> | the build sever is the same environment as the drones, just more memory |
08:28:10
| <defunctzombie> | if the node version is different |
08:28:15
| <defunctzombie> | then the environment isn't the same |
08:28:32
| * jlank | joined |
08:28:44
| <jimmy> | Ohh damn sorry I missed your reply, but I'm pretty new to this and am trying to install sockjs onto the server, how can I accomplish this? When I do "npm install sockjs" then "jitsu deply" from the directory I get this error: http://errors.jit.su/errors/ba56ce42-b024-4dcc-afe2-d718539d3485/edit |
08:28:44
| <defunctzombie> | if anything changes in the c++ code or v8 data structures you could end up with a build on node 0.8.8 that will not run on 0.8.16 |
08:29:00
| * lpin | joined |
08:29:05
| * IrishGringo | quit (Remote host closed the connection) |
08:29:38
| <coderarity> | defunctzombie: the node versions are the same right now |
08:29:46
| <defunctzombie> | 0.8.8 ? |
08:29:49
| <coderarity> | defunctzombie: yeah |
08:29:53
| <defunctzombie> | :'( |
08:30:13
| <coderarity> | i'm sure it will be dealt with if it becomes a problem |
08:30:34
| <coderarity> | i think that maybe the build server already works with that - perhaps it knows the latest is 0.8.8 and builds according to that |
08:30:38
| <defunctzombie> | a company that specializes in node.js deployment... might want to have the latest versions available :p |
08:31:58
| <coderarity> | defunctzombie: a lot of people are busy, i'm sure it'll be updated eventually - i thought some drones had 0.8.10, haven't seen any though |
08:32:26
| * joshontheweb | quit (Ping timeout: 255 seconds) |
08:33:53
| <defunctzombie> | I would think the various version deployments would be more or less automatic |
08:34:08
| <coderarity> | jimmy: you should do `npm install sockjs --save` :P |
08:34:21
| <coderarity> | jimmy: also, do you have a script to run in there? |
08:34:31
| <coderarity> | jimmy: you've got to have a server that listens on a port |
08:34:58
| <coderarity> | jimmy: if you don't need to use the http server, just make a dummy one, `require('http').createServer().listen()` |
08:35:56
| * joshontheweb | joined |
08:36:08
| <coderarity> | that should probably be `listen(8080) |
08:36:09
| <coderarity> | ` |
08:36:58
| <coderarity> | defunctzombie: you mean, automatically send the latest version of node to all of the drones when it comes out? |
08:37:02
| <jimmy> | I have the index.js script that is made when you install sockjs via npm |
08:37:08
| * coen-hyde | quit (Quit: coen-hyde) |
08:37:55
| <defunctzombie> | coderarity: yea, or make it available.. if people want a specific version, encourage pinning engines |
08:37:58
| <defunctzombie> | that is what it is there for |
08:38:03
| * coen-hyde | joined |
08:38:09
| <defunctzombie> | but I don't see why it shouldn't be available to users |
08:38:21
| <coderarity> | because time and priorities :P |
08:38:30
| <defunctzombie> | this is why we have computers |
08:38:35
| <defunctzombie> | you automate it ;) |
08:39:06
| <coderarity> | defunctzombie: if only we could automate thinking, then we could just play video games all day :D |
08:39:17
| <defunctzombie> | as far as deploying new node versions |
08:39:24
| <defunctzombie> | I do it very easily across several machines |
08:39:29
| <defunctzombie> | one easy build to an nfs drive |
08:39:30
| <defunctzombie> | and done |
08:40:03
| <defunctzombie> | I'm sure you guys have some chef or puppet or some other sort of fanciness that could make this trivial :) |
08:40:39
| <jimmy> | @coderarity Thank you very much, I figured it out. That script it gives you is bare bones with nothing in it. |
08:41:08
| <coderarity> | jimmy: yeah, okay. you need to create the script in the directory containing the "node_modules" folder |
08:41:18
| <coderarity> | jimmy: there's examples in that node_modules/sockjs folder, too |
08:42:37
| * jlank | quit (Ping timeout: 244 seconds) |
08:42:49
| * andris9 | joined |
08:42:53
| <jimmy> | OHHH I see. Good thing you told me, I was still doing it wrong haha. thanks though |
08:43:07
| <coderarity> | :D |
08:43:29
| * Powderhound | quit (Quit: Computer has gone to sleep.) |
08:46:35
| * joshontheweb | quit (Ping timeout: 265 seconds) |
08:47:47
| <jimmy> | Dude. It worked amazing! I think I love you. |
08:47:55
| <coderarity> | i think i do to |
08:47:59
| <coderarity> | love myself, that is |
08:48:03
| <coderarity> | :D |
08:48:08
| <jimmy> | :D |
08:49:08
| <jimmy> | So when ever making a script I have to include "dependencies": { "node-static": "0.5.9", "sockjs": "*" } in package.json? |
08:49:28
| * joshontheweb | joined |
08:49:35
| <coderarity> | well, if you use node-static and sockjs in that script, yes |
08:49:43
| <coderarity> | it depends on the script |
08:49:54
| <coderarity> | if you just use `npm install --save` to install things, it should add it automatically |
08:51:13
| <jimmy> | Ohh alright, thanks again. Hopefully it'll run smooth from here :D |
08:52:21
| <jimmy> | You have a good night. |
08:52:46
| * jimmy | quit (Quit: Page closed) |
08:58:52
| * joshontheweb | quit (Ping timeout: 250 seconds) |
08:59:58
| * joshontheweb | joined |
09:00:44
| * AvianFlu | quit (Remote host closed the connection) |
09:09:23
| * jlank | joined |
09:13:42
| * AvianFlu | joined |
09:14:22
| * andris9 | quit (Remote host closed the connection) |
09:14:39
| * andris9 | joined |
09:16:53
| * ppcano | quit (Quit: ppcano) |
09:24:09
| * jlank | quit (Ping timeout: 260 seconds) |
09:26:29
| * joshontheweb | quit (Ping timeout: 260 seconds) |
09:28:36
| * tim | joined |
09:28:43
| * joshontheweb | joined |
09:28:45
| <tim> | hi folks, what is going with jitsu? |
09:29:00
| <tim> | i cant access my account settings page for 3 days already |
09:29:07
| <tim> | status page says - everything is ok |
09:29:10
| <coderarity> | what happens? |
09:29:17
| <tim> | econnreset error |
09:29:39
| <tim> | An error has occurred: {"code":"ECONNRESET"} |
09:29:42
| <tim> | this one |
09:30:44
| <coderarity> | tim: can I have your username? |
09:30:59
| <tim> | y |
09:31:00
| <tim> | w8 |
09:31:44
| * AvianFlu | quit (Remote host closed the connection) |
09:35:53
| * andris9 | quit (Remote host closed the connection) |
09:37:52
| * defunctzombie | changed nick to defunctzombie_zz |
09:38:14
| <coderarity> | tim: submitted an issue, found the problem |
09:38:19
| <coderarity> | should be fixed soon |
09:38:40
| <tim> | ok |
09:38:41
| <tim> | ty |
09:39:19
| * st_luke | quit (Remote host closed the connection) |
09:44:20
| * joshontheweb | quit (Ping timeout: 255 seconds) |
09:45:02
| * generalissimo | quit (Remote host closed the connection) |
09:46:27
| * joshontheweb | joined |
09:48:04
| * joshontheweb | quit (Excess Flood) |
09:48:34
| * joshontheweb | joined |
09:50:31
| * jlank | joined |
09:51:33
| * c4milo | joined |
09:55:28
| * tim | quit (Ping timeout: 245 seconds) |
09:56:00
| * c4milo | quit (Ping timeout: 264 seconds) |
10:01:33
| * joshontheweb | quit (Ping timeout: 265 seconds) |
10:02:57
| * joshontheweb | joined |
10:05:48
| * jlank | quit (Ping timeout: 244 seconds) |
10:06:23
| * andris9 | joined |
10:11:00
| * joshontheweb | quit (Ping timeout: 264 seconds) |
10:11:58
| * joshontheweb | joined |
10:13:46
| * Domenic | joined |
10:14:09
| * Domenic | changed nick to Guest13818 |
10:15:39
| * andris9 | quit (Ping timeout: 252 seconds) |
10:16:50
| * joshontheweb | quit (Ping timeout: 255 seconds) |
10:18:09
| * Guest13818 | changed nick to DomenicD |
10:18:13
| * ppcano | joined |
10:18:27
| * joshontheweb | joined |
10:18:37
| * DomenicD | changed nick to Domenic_ |
10:20:08
| * Zarel | quit (Quit: Zarel) |
10:23:24
| * evangenieur | joined |
10:32:00
| * joshontheweb | quit (Ping timeout: 264 seconds) |
10:32:02
| * jlank | joined |
10:34:05
| * joshontheweb | joined |
10:42:37
| * andris9 | joined |
10:47:06
| * jlank | quit (Ping timeout: 245 seconds) |
11:08:17
| * lwicks | joined |
11:13:57
| * jlank | joined |
11:23:34
| * lwicks | quit (Quit: lwicks) |
11:24:27
| * joshontheweb | quit (Ping timeout: 260 seconds) |
11:26:29
| * coderarity | quit (Quit: Lost terminal) |
11:26:41
| * joshontheweb | joined |
11:29:11
| * jlank | quit (Ping timeout: 245 seconds) |
11:31:24
| * joshontheweb | quit (Ping timeout: 250 seconds) |
11:38:11
| * c4milo | joined |
11:40:06
| * coen-hyde | quit (Quit: coen-hyde) |
11:40:53
| * lwicks | joined |
11:42:59
| * c4milo | quit (Ping timeout: 260 seconds) |
11:45:54
| * andris9 | quit (Ping timeout: 260 seconds) |
11:53:21
| * lwicks | quit (Ping timeout: 245 seconds) |
11:55:50
| * jlank | joined |
12:01:22
| * Sly | quit (Read error: Operation timed out) |
12:02:33
| * Sly | joined |
12:06:37
| * cesconix | joined |
12:08:23
| * dylang | joined |
12:10:51
| * jlank | quit (Ping timeout: 245 seconds) |
12:12:31
| * andris9 | joined |
12:20:36
| * graeme_f | joined |
12:27:18
| * TheJH | joined |
12:29:55
| * ppcano | quit (Quit: ppcano) |
12:38:05
| * jlank | joined |
12:41:57
| * joshontheweb | joined |
12:46:29
| * joshontheweb | quit (Ping timeout: 244 seconds) |
12:54:44
| * jlank | quit (Ping timeout: 260 seconds) |
13:03:33
| * L10n | part |
13:15:51
| * andris9 | quit (Ping timeout: 245 seconds) |
13:20:33
| * jlank | joined |
13:24:02
| * c4milo | joined |
13:28:20
| * c4milo | quit (Ping timeout: 244 seconds) |
13:29:44
| * andris9 | joined |
13:36:41
| * jlank | quit (Ping timeout: 245 seconds) |
14:01:32
| * ebright | joined |
14:03:10
| * jlank | joined |
14:12:05
| * indexzero | joined |
14:12:46
| * cesconix | quit (Quit: Computer has gone to sleep.) |
14:13:09
| * retrofox | joined |
14:18:21
| * jlank | quit (Ping timeout: 245 seconds) |
14:23:26
| * graeme_f | quit (Read error: Connection reset by peer) |
14:30:08
| * graeme_f | joined |
14:41:58
| * andris9 | quit (Remote host closed the connection) |
14:45:13
| * jlank | joined |
14:46:54
| * graeme_f | quit (Read error: Connection reset by peer) |
14:52:45
| * graeme_f | joined |
14:56:51
| * NodeSensei | joined |
14:57:31
| * jlank | quit (Ping timeout: 245 seconds) |
14:59:38
| * cesconix | joined |
15:00:53
| * NodeSensei | quit (Ping timeout: 245 seconds) |
15:11:13
| * jlank | joined |
15:23:58
| * indexzero | quit (Quit: indexzero) |
15:26:19
| * retrofox | quit (Quit: Computer has gone to sleep.) |
15:54:09
| * jlank | quit (Remote host closed the connection) |
16:06:49
| * rovar | part |
16:24:45
| * jlank | joined |
16:32:05
| * ralphtheninja | quit (Ping timeout: 265 seconds) |
16:32:08
| * cesconix | quit (Ping timeout: 255 seconds) |
16:32:28
| * Oliver_ | joined |
16:33:15
| * dylang | quit (Quit: dylang) |
16:34:01
| <Oliver_> | Hi, anyone aware of an issue with socket.io 'client not handshaken' errors when scaling past 1 drone? |
16:34:42
| * cesconix | joined |
16:34:51
| * jlank | quit (Ping timeout: 244 seconds) |
16:36:16
| * stoke | joined |
16:36:36
| <yawnt> | heya stoke |
16:37:00
| <stoke> | hi yawnt |
16:37:46
| <stoke> | o/ |
16:42:09
| <Sly> | Oliver_: I've heard a lot of bad things about socket.io lately, like memory leaks and such. |
16:42:14
| <Sly> | But I've heard a lot of good things about sockjs. |
16:43:42
| <Oliver_> | Well, I'm pretty established with io and to date it's done the job... I'll look into sockjs but I'd rather make what I have work |
16:47:08
| * jeffrg | joined |
16:47:11
| * defunctzombie_zz | changed nick to defunctzombie |
16:50:29
| * AvianFlu | joined |
16:53:56
| <Sly> | Oliver_: I'm not sure why it would be saying that. I haven't heard of that happening. I was just pointing out that I've heard of people having other problems with socket.io. |
16:56:09
| <Oliver_> | Fair enough, it's probably worth my time running some soak tests to verify memory usage - hopefully not an issue. But if it won't scale well over multiple drones leaks are a moot point! |
16:56:48
| <Oliver_> | So, is it fair to say others are able to load balance traffic over multiple drones without issue? If so, that helps me narrow down my issue. |
17:01:28
| * jlank | joined |
17:06:16
| * AndreasMadsen | joined |
17:08:44
| * knolan | joined |
17:11:41
| * jlank | quit (Ping timeout: 245 seconds) |
17:13:21
| * jeffrg | quit (Quit: jeffrg) |
17:35:15
| * sberryman | quit (Remote host closed the connection) |
17:37:47
| * mekwall | quit (Max SendQ exceeded) |
17:38:27
| * mekwall | joined |
17:38:35
| * jlank | joined |
17:48:46
| * jlank | quit (Ping timeout: 245 seconds) |
17:51:18
| * Oliver_ | quit (Ping timeout: 245 seconds) |
18:03:25
| * bootstrapper | quit (Remote host closed the connection) |
18:15:39
| * jlank | joined |
18:16:05
| * graeme_f | quit (Quit: Textual IRC Client: http://www.textualapp.com/) |
18:25:51
| * jlank | quit (Ping timeout: 245 seconds) |
18:30:14
| * dylang | joined |
18:32:55
| * bootstrapper | joined |
18:34:02
| * st_luke | joined |
18:37:45
| * jeffrg | joined |
18:38:11
| * rockwood | quit (Ping timeout: 265 seconds) |
18:38:56
| * dylang | quit (Quit: dylang) |
18:39:09
| * coen-hyde | joined |
18:44:28
| * bootstrapper | quit (Remote host closed the connection) |
18:46:08
| * c4milo | joined |
18:47:00
| * Sly_ | joined |
18:47:56
| * Sly | quit (Disconnected by services) |
18:47:56
| * Sly_ | changed nick to Sly |
18:50:27
| * c4milo | quit (Ping timeout: 252 seconds) |
18:52:40
| * jlank | joined |
18:54:17
| * Destos | joined |
18:59:59
| * cesconix | quit (Quit: Computer has gone to sleep.) |
19:03:08
| * jlank | quit (Ping timeout: 244 seconds) |
19:07:13
| * lpin | quit (Ping timeout: 265 seconds) |
19:10:29
| * ppcano | joined |
19:12:46
| * ppcano | quit (Client Quit) |
19:18:19
| * YoY | quit (Ping timeout: 252 seconds) |
19:19:22
| * bootstrapper | joined |
19:20:36
| * jeffrg | quit (Quit: jeffrg) |
19:23:42
| * cesconix | joined |
19:25:08
| * dylang | joined |
19:29:35
| * jlank | joined |
19:35:23
| * jeffrg | joined |
19:39:49
| * jlank | quit (Ping timeout: 244 seconds) |
19:41:42
| * bootstrapper | quit (Remote host closed the connection) |
19:42:18
| * bootstrapper | joined |
19:43:00
| * bootstrapper | quit (Read error: No route to host) |
19:47:10
| * jeffrg | quit (Read error: Connection reset by peer) |
20:00:37
| * bootstrapper | joined |
20:06:30
| * jlank | joined |
20:08:26
| * bootstrapper | quit (Remote host closed the connection) |
20:09:14
| * knolan | quit (Quit: Leaving.) |
20:10:33
| * Zarel | joined |
20:10:42
| * cesconix | quit (Quit: Computer has gone to sleep.) |
20:13:12
| * konklone | joined |
20:14:45
| * bootstrapper | joined |
20:16:10
| * Nodejitsu-Github | joined |
20:16:10
| * Nodejitsu-Github | part |
20:16:24
| <konklone> | so WebRTC: it's pretty cool |
20:16:41
| * jlank | quit (Ping timeout: 245 seconds) |
20:16:44
| <konklone> | the DataChannel is going to make new things possible besides audio/video chat |
20:16:56
| * anoemi | joined |
20:17:07
| * indexzero | joined |
20:17:09
| <konklone> | none of the node.js libs are stable, but that's cause neither is the protocol |
20:17:17
| <konklone> | it'll be interesting to see how far it can get this year |
20:19:12
| * Destos | quit (*.net *.split) |
20:19:13
| * sorensen | quit (*.net *.split) |
20:19:13
| * wookiehangover | quit (*.net *.split) |
20:19:13
| * jhillacre_ | quit (*.net *.split) |
20:19:13
| * jasonmorganson | quit (*.net *.split) |
20:19:13
| * i_m_ca | quit (*.net *.split) |
20:19:13
| * niftylettuce | quit (*.net *.split) |
20:19:13
| * terite_ | quit (*.net *.split) |
20:19:13
| * svnlto_ | quit (*.net *.split) |
20:19:13
| * remysharp_ | quit (*.net *.split) |
20:19:13
| * riaf | quit (*.net *.split) |
20:19:13
| * doki_pen | quit (*.net *.split) |
20:19:13
| * gorillatron | quit (*.net *.split) |
20:19:23
| * doki_pen | joined |
20:19:27
| * i_m_ca | joined |
20:19:29
| * jhillacre_ | joined |
20:19:32
| * riaf | joined |
20:19:38
| * jmorganson | joined |
20:19:46
| * jmorganson | changed nick to jasonmorganson |
20:20:07
| * sorensen | joined |
20:20:08
| * wookiehangover | joined |
20:20:12
| * remysharp_ | joined |
20:20:24
| * terite_ | joined |
20:20:33
| * svnlto_ | joined |
20:22:00
| * jeffrg | joined |
20:23:22
| * niftylettuce__ | joined |
20:25:05
| * admc | joined |
20:25:12
| * gorillatron | joined |
20:27:03
| * generalissimo | joined |
20:27:44
| * bootstrapper | quit (Remote host closed the connection) |
20:30:54
| * generalissimo | quit (Remote host closed the connection) |
20:32:00
| * c4milo_ | joined |
20:32:41
| * bootstrapper | joined |
20:33:03
| * lpin | joined |
20:34:53
| * bootstrapper | quit (Remote host closed the connection) |
20:36:44
| * c4milo_ | quit (Ping timeout: 260 seconds) |
20:43:25
| * jlank | joined |
20:45:34
| * `3rdEden | joined |
20:52:12
| * konklone | part |
20:54:14
| * jlank | quit (Ping timeout: 260 seconds) |
21:02:06
| * jeffrg | quit (Ping timeout: 245 seconds) |
21:04:09
| * Zarel | quit (Quit: Zarel) |
21:08:16
| * generalissimo | joined |
21:18:52
| * mAritz | quit (Quit: Leaving) |
21:20:09
| * jlank | joined |
21:20:55
| * joshontheweb | joined |
21:27:06
| * admc | quit (Quit: Leaving.) |
21:29:27
| * generalissimo | quit (Remote host closed the connection) |
21:30:26
| * jlank | quit (Ping timeout: 245 seconds) |
21:31:00
| * metafedora | joined |
21:40:56
| * ralphtheninja | joined |
21:41:18
| * Nodejitsu-Github | joined |
21:41:18
| * Nodejitsu-Github | part |
21:45:48
| * bootstrapper | joined |
21:50:32
| * bootstrapper | quit (Ping timeout: 244 seconds) |
21:50:49
| * st_luke | quit (Ping timeout: 260 seconds) |
21:50:59
| * Nodejitsu-Github | joined |
21:50:59
| * Nodejitsu-Github | part |
21:53:02
| * st_luke | joined |
21:53:34
| * Sly | quit (Remote host closed the connection) |
21:56:57
| * jlank | joined |
21:59:44
| * joshontheweb | quit (Ping timeout: 255 seconds) |
22:02:46
| * joshontheweb | joined |
22:07:06
| * jlank | quit (Ping timeout: 245 seconds) |
22:08:06
| * joshontheweb | quit (Quit: Computer has gone to sleep.) |
22:08:50
| * joshontheweb | joined |
22:09:58
| * Zarel | joined |
22:12:33
| * michaelmartinez | joined |
22:23:59
| * chjj | quit (Quit: leaving) |
22:24:56
| * `3rdEden | quit (Remote host closed the connection) |
22:26:19
| * joshontheweb | quit (Ping timeout: 265 seconds) |
22:29:02
| * Sly | joined |
22:29:13
| * joshontheweb | joined |
22:30:30
| * jmar777 | joined |
22:33:02
| * michaelmartinez | quit (Quit: Check it, Wreck it http://www.caffeineindustries.com/blog) |
22:33:08
| * generalissimo | joined |
22:33:46
| * jlank | joined |
22:42:18
| * joshontheweb | quit (Ping timeout: 265 seconds) |
22:44:23
| * jlank | quit (Ping timeout: 260 seconds) |
22:44:49
| * joshontheweb | joined |
22:46:41
| * owenb_ | changed nick to owenb |
22:56:29
| * joshontheweb | quit (Ping timeout: 252 seconds) |
22:56:40
| * generalissimo | quit (Remote host closed the connection) |
22:57:20
| * Zarel | quit (Ping timeout: 255 seconds) |
22:57:36
| * jmar777 | quit (Remote host closed the connection) |
22:58:39
| * Zarel | joined |
22:58:43
| * joshontheweb | joined |
23:01:14
| * lpin | quit (Quit: Leaving) |
23:08:00
| * lwicks | joined |
23:10:24
| * jlank | joined |
23:10:26
| * joshontheweb | quit (Ping timeout: 245 seconds) |
23:11:50
| * joshontheweb | joined |
23:14:23
| * stoke | quit (Read error: Connection reset by peer) |
23:14:50
| * konklone | joined |
23:15:09
| <konklone> | I just put up a collection of screenshots from isitchristmas this year: http://www.flickr.com/photos/konklone/sets/72157632388653620/ |
23:15:17
| <konklone> | a lot of great ones, thanks for making it possible Nodejitsu :) |
23:19:50
| <mmalecki> | konklone: this is awesome, thanks :) |
23:20:14
| * bootstrapper | joined |
23:21:14
| * jlank | quit (Ping timeout: 260 seconds) |
23:27:27
| <anoemi> | konklone: pumped we could help make it happen :) |
23:27:39
| <anoemi> | also thanks AvianFlu ;) |
23:27:44
| * coderarity | joined |
23:28:41
| * bootstrapper | quit (Remote host closed the connection) |
23:28:53
| * michaelmartinez | joined |
23:29:21
| * michaelmartinez | quit (Client Quit) |
23:31:18
| <AvianFlu> | konklone: thanks for giving us a chance to stress-test so many things :D |
23:37:06
| * AndreasM_ | joined |
23:38:20
| * adrianlee | joined |
23:39:45
| * AndreasMadsen | quit (Ping timeout: 252 seconds) |
23:41:09
| * adrianlee | quit (Remote host closed the connection) |
23:41:38
| * coen-hyde | quit (Quit: coen-hyde) |
23:46:21
| * AndreasM_ | quit (Remote host closed the connection) |
23:47:16
| * jlank | joined |
23:47:46
| <konklone> | AvianFlu: my pleasure :) |
23:54:03
| * dylang | quit (Quit: dylang) |
23:57:31
| * jlank | quit (Ping timeout: 245 seconds) |
23:58:20
| * generalissimo | joined |