00:00:01
| * ircretary | quit (Remote host closed the connection) |
00:00:09
| * ircretary | joined |
00:02:00
| * dguttman | joined |
00:09:35
| <shama> | bower is pretty good at timing out your CI server though |
00:11:04
| <shama> | "Which version would you like to install?" I don't know bower, the correct one. |
00:16:18
| <Raynos> | wtf does that even mean |
00:16:25
| <Raynos> | how can you know which one is correct |
00:16:30
| <Raynos> | without auditing EVERYTHING |
00:16:50
| <owen1> | guys, reply to his post. |
00:17:07
| <Raynos> | shama: which twitter name is you ? |
00:19:10
| <Raynos> | found it |
00:29:07
| * warbrett | quit (Remote host closed the connection) |
00:29:41
| * warbrett | joined |
00:29:44
| <shama> | Raynos: You can save resolutions but it doesnt always work. We use https://github.com/shama/napa at my work for those non-npm deps now. |
00:33:59
| <rowbit> | Hourly usage stats: [developer: 0, free: 28] |
00:35:07
| * ceejbot_ | quit (Remote host closed the connection) |
00:38:03
| * warbrett | quit (Ping timeout: 240 seconds) |
00:39:45
| * warbrett | joined |
01:00:53
| * taterbase | quit (Quit: Connection closed for inactivity) |
01:09:33
| * brianloveswords | joined |
01:10:39
| * phated | quit (Read error: Connection reset by peer) |
01:11:06
| * phated | joined |
01:20:54
| * phated | quit (Remote host closed the connection) |
01:30:03
| * kessler | quit (Ping timeout: 240 seconds) |
01:33:59
| <rowbit> | Hourly usage stats: [developer: 0, free: 14] |
01:43:31
| * warbrett | quit (Remote host closed the connection) |
01:45:23
| * phated | joined |
01:46:02
| * contrahax | joined |
01:48:26
| * thealphanerd | quit (Quit: thealphanerd) |
01:54:00
| * jxson_ | joined |
01:56:38
| * jxson | quit (Ping timeout: 240 seconds) |
01:58:46
| * jxson_ | quit (Ping timeout: 264 seconds) |
02:08:55
| * ceejbot | joined |
02:09:16
| * hoobdeebla | joined |
02:13:18
| * contrahax | quit (Quit: Sleeping) |
02:15:32
| * calvinfo | quit (Quit: Leaving.) |
02:16:45
| * contrahax | joined |
02:25:38
| * mmalecki | quit (Quit: leaving) |
02:26:49
| * mmalecki | joined |
02:27:02
| * mmalecki | quit (Client Quit) |
02:27:54
| * mmalecki | joined |
02:30:36
| * tilgovi | quit (Remote host closed the connection) |
02:33:59
| <rowbit> | Hourly usage stats: [developer: 2, free: 16] |
02:43:56
| * taterbase | joined |
02:46:10
| * contrahax | quit (Quit: Sleeping) |
02:46:39
| * contrahax | joined |
02:56:32
| * mmalecki | quit (Quit: leaving) |
03:00:28
| * hoobdeebla | quit (Remote host closed the connection) |
03:02:08
| * hoobdeebla | joined |
03:05:08
| * mmalecki | joined |
03:06:54
| * mmalecki | quit (Client Quit) |
03:16:10
| * calvinfo | joined |
03:17:48
| * mmalecki | joined |
03:20:33
| * calvinfo | quit (Ping timeout: 240 seconds) |
03:22:21
| <chapel> | substack or anyone that uses dnode, has it been used for browser to iframe rpc? |
03:22:29
| * kcherkashin____ | changed nick to kirjs |
03:27:14
| * hoobdeebla | quit (Remote host closed the connection) |
03:27:21
| * phated | quit (Remote host closed the connection) |
03:27:45
| <creationix> | chapel: I don’t see why not |
03:27:52
| <creationix> | I use something like for talking to workers |
03:28:31
| <creationix> | back when I wrote smith for c9, I almost used dnode, but I didn’t like how it leaked memory at the time |
03:28:50
| <creationix> | I think substack fixed the leak for node, but not sure about browsers |
03:29:13
| <substack> | chrisdickinson: just read your streams post! |
03:29:52
| * brianloveswords | quit (Quit: Computer has gone to sleep.) |
03:31:52
| <substack> | creationix: yes, I could detect the presence of WeakMap in browsers but haven't done that yet |
03:32:20
| <substack> | chrisdickinson: here is an easy fix if you want to start landing stream fixes https://github.com/joyent/node/pull/7758 |
03:32:26
| <creationix> | chapel: also, depending on what you want to use it for, the leak might not be a problem |
03:32:36
| <substack> | isaacs already gave it a glance-over |
03:33:50
| <creationix> | substack: you wouldn’t happen to know what atom-shell is using for their IPC between node and blink? |
03:33:59
| <rowbit> | Hourly usage stats: [developer: 1, free: 22] |
03:34:03
| <substack> | I'm not sure |
03:34:13
| <creationix> | whatever it is, it seems really slow. I’m getting around 1500ms response times with a http server in the blink side |
03:34:24
| <substack> | chrisdickinson: also, Duplex().wrap() and Transform().wrap() should proxy the .write() and .end() methods to ._write() and on('finish') |
03:34:51
| <chapel> | thanks creationix |
03:34:54
| <substack> | chrisdickinson: would your topic proposal handle forwarding errors to the next stream? |
03:41:09
| * calvinfo | joined |
03:41:36
| * calvinfo | quit (Client Quit) |
03:45:21
| * thlorenz | joined |
03:49:35
| * thlorenz | quit (Remote host closed the connection) |
03:50:11
| * thlorenz | joined |
03:54:34
| * thlorenz | quit (Ping timeout: 264 seconds) |
03:55:13
| * thlorenz | joined |
04:03:31
| * Sly | quit (Read error: Connection reset by peer) |
04:04:07
| * Sly | joined |
04:16:00
| * jxson | joined |
04:33:00
| <chrisdickinson> | substack: ~ish, you would be able to pipe all errors on src to dest as data |
04:33:33
| <chrisdickinson> | unsure if that's the best solution, ultimately; it'd be like a built-in "tee" |
04:33:52
| <substack> | but if you could use it for error-forwarding that would be a really good use-case |
04:33:59
| <rowbit> | Hourly usage stats: [developer: 0, free: 30] |
04:34:27
| <substack> | that's a big open problem with streams, since setting up error handlers for each intermediate stream is really verbose |
04:34:41
| <substack> | or you can use a module like stream-combiner that does it for you |
04:35:37
| * chrisdickinson | nods |
04:35:41
| <substack> | chrisdickinson: what if I set up forwarding with a topic on stream `a` but then I pipe into `b` without setting a topic before forwarding to `c`? |
04:36:24
| <chrisdickinson> | `a.pipe(b, {topic: "cats"}).pipe(c)`, essentially? |
04:36:44
| <substack> | or a.pipe(b, { topic: 'cats' }).pipe(c).pipe(d) |
04:36:49
| <chrisdickinson> | from b on, you're dealing with the "data" topic |
04:36:58
| <chrisdickinson> | so, all cats become data going into b |
04:37:03
| <substack> | oh they become data |
04:37:13
| <substack> | seems kind of high-level for core |
04:37:31
| <substack> | it looked like an event-forwarding mechanism |
04:37:54
| * phated | joined |
04:38:29
| <chrisdickinson> | yeah -- the problem multi-topic streams would solve is filtering / non-fatal errors / easy tee'ing |
04:38:45
| <chrisdickinson> | but! like you said, it might be too high level for core |
04:40:35
| <substack> | juliangruber: https://github.com/substack/dataplex-hyperspace-example <-- what I've been building up to with all those streaming rendering libs |
04:40:54
| * AvianPhone | joined |
04:41:00
| <substack> | still need a few more things like to figure out how client routing will work |
04:41:02
| <substack> | but coming along |
04:42:02
| <chrisdickinson> | (I agree that it's cumbersome to have to add error handlers at each stage in the pipeline) |
04:42:38
| * phated | quit (Ping timeout: 240 seconds) |
04:52:59
| * ceejbot | quit (Remote host closed the connection) |
04:53:34
| * ceejbot | joined |
04:57:45
| * ceejbot | quit (Ping timeout: 256 seconds) |
05:03:38
| * pfraze | joined |
05:33:59
| <rowbit> | Hourly usage stats: [developer: 0, free: 42] |
05:38:14
| * contrahax | quit (Quit: Sleeping) |
05:39:24
| * contrahax | joined |
05:41:55
| * contrahax | quit (Client Quit) |
05:42:13
| * Maciek416 | quit (Remote host closed the connection) |
05:44:51
| * indexzero | joined |
06:01:00
| * Aviaphone | joined |
06:03:08
| * AvianPhone | quit (Ping timeout: 240 seconds) |
06:05:03
| * Aviaphone | quit (Ping timeout: 240 seconds) |
06:06:13
| * dguttman | quit (Quit: dguttman) |
06:09:42
| * calvinfo | joined |
06:11:41
| * jxson | quit (Remote host closed the connection) |
06:12:26
| * jxson | joined |
06:14:16
| <hughsk_> | ogd: hey, you cafe-hacking in berlin today? |
06:14:24
| * thealphanerd | joined |
06:16:38
| * jxson | quit (Ping timeout: 240 seconds) |
06:20:23
| * jjjohnny | joined |
06:21:59
| * jxson | joined |
06:24:05
| * thlorenz | quit (Remote host closed the connection) |
06:24:42
| * thlorenz | joined |
06:25:38
| * pfraze | quit (Ping timeout: 240 seconds) |
06:27:11
| * thlorenz_ | joined |
06:28:38
| * thlorenz | quit (Ping timeout: 240 seconds) |
06:30:44
| * shama_ | joined |
06:31:25
| * wolfeidau | quit (Remote host closed the connection) |
06:31:40
| * thlorenz_ | quit (Ping timeout: 260 seconds) |
06:31:53
| * jxson | quit (Remote host closed the connection) |
06:33:47
| * thlorenz | joined |
06:33:55
| * kanzure_ | joined |
06:33:55
| * shama_ | quit (Client Quit) |
06:33:59
| <rowbit> | Hourly usage stats: [developer: 1, free: 39] |
06:34:01
| * shama | quit (Ping timeout: 240 seconds) |
06:34:04
| * kanzure | quit (Ping timeout: 240 seconds) |
06:34:07
| * ircretary | quit (Ping timeout: 240 seconds) |
06:34:07
| * farnsworth | quit (Ping timeout: 240 seconds) |
06:34:08
| * Guest82622 | quit (Ping timeout: 240 seconds) |
06:35:36
| * farnsworth | joined |
06:36:40
| * jden_ | joined |
06:36:54
| * jden_ | changed nick to Guest86876 |
06:42:11
| * indexzero | quit (Quit: indexzero) |
06:53:03
| * thlorenz | quit (Remote host closed the connection) |
06:53:40
| * thlorenz | joined |
06:55:19
| <substack> | https://github.com/dominictarr/level-post/pull/3 should fix level-live-stream for custom encodings |
06:57:52
| * thlorenz | quit (Ping timeout: 250 seconds) |
07:00:04
| * contrahax | joined |
07:00:37
| * contrahax | changed nick to _contrahax |
07:01:42
| * _contrahax | changed nick to contrahax |
07:05:27
| * contrahax | quit (Quit: Sleeping) |
07:08:07
| * contrahax | joined |
07:12:06
| * contrahax | quit (Client Quit) |
07:14:49
| * phated | joined |
07:24:46
| * AvianFlu | quit (Remote host closed the connection) |
07:25:42
| * thlorenz | joined |
07:30:03
| * thlorenz | quit (Ping timeout: 240 seconds) |
07:30:48
| * Maciek416 | joined |
07:33:59
| <rowbit> | Hourly usage stats: [developer: 0, free: 53] |
07:35:08
| * Maciek416 | quit (Ping timeout: 240 seconds) |
07:37:47
| * calvinfo | quit (Quit: Leaving.) |
07:40:28
| * calvinfo | joined |
07:50:56
| <ogd> | hughsk_: yes will be, not sure where |
07:56:55
| * domanic | joined |
07:57:34
| <domanic> | ogd, hey - do I remember correctly that your family lives near to astoria? (which is where I am now!) |
08:03:48
| <hughsk_> | ogd: cool, wanna try http://www.yelp.com/biz/milch-und-zucker-berlin-2? |
08:06:32
| <ogd> | domanic: south of newport |
08:06:41
| * fotoverite | quit (Quit: fotoverite) |
08:06:52
| <ogd> | hughsk_: sure |
08:08:07
| <rowbit> | substack, pkrumins: At least 10 people waiting in the queue for free servers! (Waiting: 10) |
08:10:28
| <domanic> | ogd, oh bummer - that is a bit out of my way |
08:18:41
| * phated | quit (Remote host closed the connection) |
08:19:54
| * calvinfo | quit (Quit: Leaving.) |
08:26:24
| <domanic> | nathan7, ohohoh so you flew business class |
08:26:32
| <nathan7> | domanic: yeah |
08:26:37
| <nathan7> | domanic: it's awesome |
08:27:28
| <domanic> | you know you are now officially part of the bourgeois |
08:27:41
| <nathan7> | totes |
08:27:46
| <nathan7> | when was I not? |
08:27:54
| <domanic> | all street cred you might have had... lost |
08:28:26
| <nathan7> | like, seriously, I pay like twice as much for everything because I get to be lazy and bathe in luxury and shit |
08:28:34
| <nathan7> | wallow in luxury |
08:28:49
| <domanic> | no that is not the reason |
08:29:03
| <domanic> | the reason is because you are better than every one else |
08:29:09
| <domanic> | because you deserve it! |
08:29:39
| <nathan7> | I have more money, I pay more for things, and then capitalism does this thing |
08:29:48
| <nathan7> | where I get awesomer shit |
08:30:47
| <domanic> | yes, and other people do shit for you. that is how it works. |
08:33:59
| <rowbit> | Hourly usage stats: [developer: 0, free: 72] |
08:35:12
| <nathan7> | domanic: yes :D |
08:47:22
| * contrahax | joined |
08:54:12
| <rowbit> | substack, pkrumins: testling server winIE9 + chrome + firefox + opera + safari + all nightly (rackspace) is down! |
09:19:52
| * Maciek416 | joined |
09:21:33
| * domanic | quit (Ping timeout: 240 seconds) |
09:24:39
| * Maciek416 | quit (Ping timeout: 256 seconds) |
09:27:04
| * thlorenz | joined |
09:30:54
| * contrahax | quit (Quit: Sleeping) |
09:31:33
| * thlorenz | quit (Ping timeout: 240 seconds) |
09:33:59
| <rowbit> | Hourly usage stats: [developer: 0, free: 59] |
09:44:49
| <hughsk_> | ogd: https://github.com/lakenen/browser-workshopper |
10:00:19
| * passy_ | joined |
10:01:11
| * passy_ | changed nick to passy |
10:33:59
| <rowbit> | Hourly usage stats: [developer: 0, free: 48] |
10:47:01
| * kessler | joined |
10:49:12
| * tmpvar | quit (Quit: Connection closed for inactivity) |
10:50:29
| <rowbit> | /!\ ATTENTION: (default-local) [email protected] successfully signed up for developer browserling plan ($20). Cash money! /!\ |
10:50:29
| <rowbit> | /!\ ATTENTION: (default-local) paid account successfully upgraded /!\ |
11:06:59
| * peutetre | joined |
11:08:35
| * Maciek416 | joined |
11:13:08
| * Maciek416 | quit (Ping timeout: 240 seconds) |
11:30:33
| * thealphanerd | quit (Quit: thealphanerd) |
11:31:04
| * thealphanerd | joined |
11:33:54
| * domanic | joined |
11:33:59
| <rowbit> | Hourly usage stats: [developer: 10, free: 58] |
11:41:39
| * thealphanerd | quit (Quit: thealphanerd) |
11:53:25
| <substack> | domanic: astoria, cool! |
11:54:00
| <domanic> | substack, yeah just rolled into town this afternoon! |
11:54:23
| <substack> | I used to go camping with my family at fort stevens all the time when I was younger |
11:54:51
| * McJesis | joined |
11:55:09
| <substack> | it's an old army base turned state park from wwii |
11:55:20
| <substack> | with lots of dangerous ruins you can climb over |
11:56:49
| <domanic> | substack, oh I remember you telling me about that! I'm guessing it's on the coast |
11:57:05
| * McJesis | changed nick to McJesus |
11:58:54
| <substack> | domanic: also I fixed some things in level-post https://github.com/dominictarr/level-post/pull/3 |
11:59:12
| <substack> | should fix issues with custom key encodings in level-live-stream |
12:06:18
| * yorick | joined |
12:08:05
| <domanic> | substack, sweet this looks good. |
12:08:21
| <domanic> | I'll check this and merge it in the morning |
12:08:29
| <substack> | sweet |
12:18:06
| * domanic | quit (Ping timeout: 250 seconds) |
12:19:14
| * phated | joined |
12:21:37
| * peutetre | quit (Quit: peutetre) |
12:24:03
| * phated | quit (Ping timeout: 250 seconds) |
12:29:59
| * thlorenz | joined |
12:31:05
| * kessler | quit (Ping timeout: 256 seconds) |
12:33:59
| <rowbit> | Hourly usage stats: [developer: 5, free: 77] |
12:34:29
| * thlorenz | quit (Ping timeout: 256 seconds) |
12:57:32
| * Maciek416 | joined |
13:01:56
| * Maciek416 | quit (Ping timeout: 240 seconds) |
13:07:35
| * kessler | joined |
13:33:59
| <rowbit> | Daily usage stats: [developer: 34, free: 1048] |
13:33:59
| <rowbit> | Hourly usage stats: [developer: 1, free: 67] |
13:37:51
| * wolfeidau | joined |
13:39:27
| * brianloveswords | joined |
14:05:12
| * brianloveswords | quit (Quit: Computer has gone to sleep.) |
14:09:14
| * AvianFlu | joined |
14:15:35
| * j0hn | joined |
14:16:48
| * dguttman | joined |
14:17:14
| * dguttman | quit (Client Quit) |
14:17:39
| * dguttman | joined |
14:20:37
| * j0hn | part ("Leaving...") |
14:21:33
| * kessler_ | joined |
14:31:15
| * dguttman | quit (*.net *.split) |
14:31:16
| * kessler | quit (*.net *.split) |
14:31:50
| * ceejbot | joined |
14:33:59
| <rowbit> | Hourly usage stats: [developer: 1, free: 41] |
14:39:17
| * brianloveswords | joined |
14:46:29
| * Maciek416 | joined |
14:47:07
| * pfraze | joined |
14:51:03
| * Maciek416 | quit (Ping timeout: 240 seconds) |
14:54:03
| * ceejbot_ | joined |
15:02:38
| * ceejbot | quit (*.net *.split) |
15:02:41
| * farnsworth | quit (*.net *.split) |
15:07:35
| * ednapiranha | joined |
15:08:20
| * farnsworth | joined |
15:08:32
| * kessler_ | quit (Ping timeout: 245 seconds) |
15:13:19
| * ceejbot_ | quit (Read error: Connection reset by peer) |
15:13:51
| * ceejbot | joined |
15:15:28
| * fotoverite | joined |
15:20:53
| * taterbase | quit (Quit: Connection closed for inactivity) |
15:23:03
| * brianloveswords | quit (Quit: ["Textual IRC Client: www.textualapp.com"]) |
15:24:43
| * naneau | joined |
15:31:41
| * brianloveswords | joined |
15:33:49
| * naneau | quit (Quit: Part.) |
15:33:59
| <rowbit> | Hourly usage stats: [developer: 4, free: 63] |
15:35:09
| * kessler | joined |
15:38:09
| * taterbase | joined |
15:41:03
| * kessler | quit (Ping timeout: 240 seconds) |
15:49:19
| * thealphanerd | joined |
15:50:37
| <rowbit> | substack, pkrumins: Encoders down: 50.57.174.105 (dev-ie8-2) |
15:50:48
| * thealphanerd | quit (Client Quit) |
16:06:07
| * j0hn | joined |
16:06:17
| * shama | joined |
16:07:07
| <rowbit> | substack, pkrumins: Encoders down: 184.106.106.46 (dev-ie8-1) |
16:07:37
| * warbrett | joined |
16:22:12
| * ceejbot | quit (Remote host closed the connection) |
16:22:48
| * passy | quit (Quit: Connection closed for inactivity) |
16:28:06
| * j0hn | part ("Leaving...") |
16:33:59
| <rowbit> | Hourly usage stats: [developer: 3, free: 46] |
16:35:19
| * Maciek416 | joined |
16:37:56
| * kessler | joined |
16:39:32
| * Maciek416 | quit (Ping timeout: 240 seconds) |
16:40:36
| * brianloveswords | quit (Quit: Computer has gone to sleep.) |
16:42:41
| * kessler | quit (Ping timeout: 256 seconds) |
16:45:30
| * brianloveswords | joined |
16:48:17
| * kessler | joined |
16:50:44
| * thlorenz | joined |
16:52:42
| * kessler | quit (Ping timeout: 245 seconds) |
16:55:03
| * thlorenz | quit (Ping timeout: 240 seconds) |
16:56:18
| * j0hn | joined |
17:01:08
| <rowbit> | substack, pkrumins: Encoders down: 184.106.106.46 (dev-ie8-1) |
17:02:54
| * naneau | joined |
17:06:30
| * wolfeida_ | joined |
17:06:56
| * j0hn | quit (Remote host closed the connection) |
17:08:05
| * phated | joined |
17:08:37
| <rowbit> | substack, pkrumins: A developer is waiting in the queue for explorer/8.0 |
17:09:35
| * wolfeidau | quit (Ping timeout: 264 seconds) |
17:09:37
| <rowbit> | substack, pkrumins: Encoders down: 184.106.106.46 (dev-ie8-1) |
17:11:39
| * jxson | joined |
17:12:39
| * tilgovi | joined |
17:14:00
| * jxson | quit (Remote host closed the connection) |
17:14:06
| * calvinfo | joined |
17:14:33
| * jxson | joined |
17:15:33
| * phated | quit (Ping timeout: 256 seconds) |
17:16:44
| * brianloveswords | quit (Quit: Computer has gone to sleep.) |
17:18:38
| * jxson | quit (Ping timeout: 240 seconds) |
17:26:28
| * yorick | quit (Remote host closed the connection) |
17:27:56
| * naneau | quit (Quit: Part.) |
17:31:01
| * brianloveswords | joined |
17:33:17
| * kessler | joined |
17:33:59
| <rowbit> | Hourly usage stats: [developer: 5, free: 32] |
17:37:08
| <rowbit> | substack, pkrumins: A developer is waiting in the queue for explorer/8.0 |
17:40:22
| * phated | joined |
17:41:38
| <rowbit> | substack, pkrumins: A developer is waiting in the queue for explorer/8.0 |
17:43:44
| * domanic | joined |
17:46:20
| * ceejbot | joined |
17:52:28
| <isaacs> | substack: what is this thing i gave a glance over? |
18:09:08
| <rowbit> | substack, pkrumins: A developer is waiting in the queue for explorer/8.0 |
18:11:42
| * thealphanerd | joined |
18:13:40
| * DTrejo | joined |
18:20:08
| <rowbit> | substack, pkrumins: Encoders down: 184.106.106.46 (dev-ie8-1) |
18:24:19
| * Maciek416 | joined |
18:26:01
| * jxson | joined |
18:28:55
| * Maciek416 | quit (Ping timeout: 250 seconds) |
18:29:34
| * tilgovi | quit (Ping timeout: 240 seconds) |
18:31:08
| <rowbit> | substack, pkrumins: Encoders down: 50.57.171.229 (dev-ie6-2) |
18:33:59
| <rowbit> | Hourly usage stats: [developer: 9, free: 32] |
18:47:31
| * peutetre | joined |
18:56:59
| * brianloveswords | quit (Ping timeout: 264 seconds) |
18:57:11
| * tilgovi | joined |
19:11:23
| * kessler | quit (Ping timeout: 264 seconds) |
19:15:42
| * yorick | joined |
19:32:11
| * calvinfo | quit (Read error: Connection reset by peer) |
19:33:59
| <rowbit> | Hourly usage stats: [developer: 1, free: 42] |
19:35:27
| * calvinfo | joined |
19:40:03
| * calvinfo | quit (Ping timeout: 256 seconds) |
19:42:16
| <substack> | isaacs: the patch I made to node core Readable().wrap() |
19:42:17
| <substack> | https://github.com/joyent/node/pull/7758 |
19:42:22
| <substack> | so that it doesn't eat falsy values |
19:44:02
| * calvinfo | joined |
20:06:02
| * Maciek416 | joined |
20:07:32
| * peutetre | quit (Quit: peutetre) |
20:09:15
| * peutetre | joined |
20:16:33
| * calvinfo1 | joined |
20:16:34
| * calvinfo | quit (Read error: Connection reset by peer) |
20:17:36
| <Domenic> | othiym23: isaacs: would love some help coming up with test scenarios for the streams perf tester at https://github.com/whatwg/streams/issues/120 |
20:17:57
| <Domenic> | see also https://github.com/whatwg/streams/blob/perf-test-suite/reference-implementation/bench/params.js |
20:19:35
| * brianloveswords | joined |
20:25:32
| * calvinfo1 | part |
20:33:59
| <rowbit> | Hourly usage stats: [developer: 0, free: 32] |
20:47:11
| * tmpvar | joined |
20:47:32
| * peutetre | quit (Quit: peutetre) |
20:49:45
| * domanic | quit (Ping timeout: 256 seconds) |
20:56:59
| * peutetre | joined |
20:59:40
| * jxson_ | joined |
21:02:20
| * jxson | quit (Ping timeout: 240 seconds) |
21:08:31
| * peutetre | quit (Quit: peutetre) |
21:13:33
| * jxson_ | quit (Remote host closed the connection) |
21:21:37
| * domanic | joined |
21:22:22
| * jxson | joined |
21:27:34
| * jxson | quit (Remote host closed the connection) |
21:33:59
| <rowbit> | Hourly usage stats: [developer: 0, free: 47] |
21:37:11
| * AvianFlu | quit (Ping timeout: 264 seconds) |
21:42:03
| * AvianFlu | joined |
21:45:08
| <rowbit> | substack, pkrumins: These encoders are STILL down: 50.57.174.105(dev-ie8-2) |
21:49:58
| * yorick | quit (Remote host closed the connection) |
21:58:00
| * jxson | joined |
22:00:34
| * jxson | quit (Remote host closed the connection) |
22:01:07
| * jxson | joined |
22:05:18
| * jxson | quit (Ping timeout: 240 seconds) |
22:10:33
| * jxson | joined |
22:24:54
| <terinjokes> | substack: do you have a recommended way of gunzip'ing a hyperquest? |
22:27:54
| <substack> | just pipe to zlib.createGunzip() |
22:27:55
| * brianloveswords | quit (Quit: Computer has gone to sleep.) |
22:28:18
| <terinjokes> | substack: sometimes the server doesn't send it as gzip |
22:28:27
| <terinjokes> | and I can't tell until the response event |
22:28:31
| <substack> | ah |
22:29:26
| <terinjokes> | and while I understand the reasons why hyperquest won't want to do that black magic, I've got some interest in localizing my http code |
22:29:27
| <terinjokes> | ;) |
22:30:55
| <substack> | could build another module on top to do the fancies |
22:31:07
| <substack> | like gunzipping, deflating, and redirects |
22:31:24
| <terinjokes> | i'm effectively doing that, but my streamsfoo in this regard is a bit sad |
22:31:48
| <substack> | you could use stream-splicer |
22:31:50
| <terinjokes> | zlib.createUnzip will actually handle both gunzipping and inflating |
22:33:59
| <rowbit> | Hourly usage stats: [developer: 0, free: 41] |
22:40:05
| <substack> | function hquest () { var hq = hyperquest.apply(null, arguments); var pipeline = splicer([ hq ]); hq.on('response', function (res) { if (res.headers['content-encoding']) pipeline.unshift(zlib.createUnzip()) }); return pipeline } |
22:40:09
| <substack> | something like that |
22:51:15
| * domanic | quit (*.net *.split) |
22:51:15
| * phated | quit (*.net *.split) |
22:51:15
| * pfraze | quit (*.net *.split) |
22:52:32
| * jxson | quit (*.net *.split) |
22:52:33
| * tilgovi | quit (*.net *.split) |
22:52:33
| * warbrett | quit (*.net *.split) |
22:52:33
| * taterbase | quit (*.net *.split) |
22:52:33
| * Sly | quit (*.net *.split) |
22:52:33
| * cpup | quit (*.net *.split) |
22:52:33
| * bengl | quit (*.net *.split) |
22:52:33
| * mint_xian | quit (*.net *.split) |
22:52:33
| * kenperkins | quit (*.net *.split) |
22:52:34
| * hij1nx | quit (*.net *.split) |
22:52:34
| * simcop2387 | quit (*.net *.split) |
22:52:34
| * milkandtang | quit (*.net *.split) |
22:52:34
| * zu | quit (*.net *.split) |
22:52:34
| * trygve | quit (*.net *.split) |
22:52:34
| * rook2pawn | quit (*.net *.split) |
22:53:05
| * jxson | joined |
22:53:05
| * tilgovi | joined |
22:53:05
| * warbrett | joined |
22:53:05
| * taterbase | joined |
22:53:05
| * Sly | joined |
22:53:05
| * cpup | joined |
22:53:05
| * bengl | joined |
22:53:05
| * mint_xian | joined |
22:53:05
| * kenperkins | joined |
22:53:05
| * simcop2387 | joined |
22:53:05
| * hij1nx | joined |
22:53:05
| * milkandtang | joined |
22:53:05
| * zu | joined |
22:53:05
| * trygve | joined |
22:53:05
| * rook2pawn | joined |
22:53:32
| * domanic | joined |
22:53:32
| * phated | joined |
22:53:32
| * pfraze | joined |
22:53:39
| * yorick | joined |
22:54:01
| * McJesus | quit (*.net *.split) |
22:54:31
| * McJesus | joined |
22:54:38
| * tmpvar | quit (*.net *.split) |
22:54:38
| * wolfeida_ | quit (*.net *.split) |
22:54:39
| * nrw | quit (*.net *.split) |
22:54:39
| * andreypopp | quit (*.net *.split) |
22:54:39
| * enjawork | quit (*.net *.split) |
22:54:39
| * tobie_ | quit (*.net *.split) |
22:54:39
| * philipn_ | quit (*.net *.split) |
22:54:39
| * gildean | quit (*.net *.split) |
22:54:39
| * sindresorhus | quit (*.net *.split) |
22:54:39
| * ZenWraithBot | quit (*.net *.split) |
22:54:39
| * JSON_voorhees | quit (*.net *.split) |
22:54:39
| * rvagg | quit (*.net *.split) |
22:54:39
| * calvinmetcalf | quit (*.net *.split) |
22:54:39
| * groundwater | quit (*.net *.split) |
22:54:39
| * jesusabdullah | quit (*.net *.split) |
22:54:40
| * tanepiper | quit (*.net *.split) |
22:54:40
| * dubroy______ | quit (*.net *.split) |
22:55:03
| * kanzure_ | quit (*.net *.split) |
22:55:03
| * ehd | quit (*.net *.split) |
22:55:04
| * monteslu | quit (*.net *.split) |
22:55:04
| * jan____ | quit (*.net *.split) |
22:55:04
| * cubert | quit (*.net *.split) |
22:55:04
| * othiym23 | quit (*.net *.split) |
22:55:04
| * dlmanning | quit (*.net *.split) |
22:55:04
| * _hendrik | quit (*.net *.split) |
22:55:04
| * kirjs | quit (*.net *.split) |
22:55:05
| * rwaldron | quit (*.net *.split) |
22:55:05
| * paul_irish | quit (*.net *.split) |
22:55:05
| * tmpvar | joined |
22:55:06
| * wolfeida_ | joined |
22:55:06
| * nrw | joined |
22:55:06
| * andreypopp | joined |
22:55:06
| * enjawork | joined |
22:55:06
| * tobie_ | joined |
22:55:06
| * philipn_ | joined |
22:55:06
| * gildean | joined |
22:55:06
| * sindresorhus | joined |
22:55:06
| * ZenWraithBot | joined |
22:55:06
| * JSON_voorhees | joined |
22:55:06
| * rvagg | joined |
22:55:06
| * calvinmetcalf | joined |
22:55:06
| * groundwater | joined |
22:55:06
| * jesusabdullah | joined |
22:55:06
| * tanepiper | joined |
22:55:06
| * dubroy______ | joined |
22:56:20
| * kanzure_ | joined |
22:56:20
| * ehd | joined |
22:56:20
| * monteslu | joined |
22:56:20
| * jan____ | joined |
22:56:20
| * cubert | joined |
22:56:20
| * othiym23 | joined |
22:56:20
| * dlmanning | joined |
22:56:20
| * kirjs | joined |
22:56:20
| * _hendrik | joined |
22:56:20
| * rwaldron | joined |
22:56:20
| * paul_irish | joined |
22:57:50
| * mmalecki_ | joined |
22:57:54
| * jjjohnny_ | joined |
23:00:20
| * jjjohnny | quit (Write error: Broken pipe) |
23:00:20
| * mmalecki | quit (Remote host closed the connection) |
23:04:18
| * tilgovi | quit (Remote host closed the connection) |
23:18:11
| * mmalecki_ | quit (Quit: Reconnecting) |
23:18:21
| * mmalecki | joined |
23:18:38
| * collypops | quit |
23:23:24
| * wolfeida_ | changed nick to wolfeidau |
23:33:59
| <rowbit> | Hourly usage stats: [developer: 0, free: 23] |
23:39:16
| * kessler | joined |
23:39:18
| * DTrejo | quit (Remote host closed the connection) |