Options:
Previous day, Next day
- # Session Start: Tue Mar 24 00:00:00 2015
- # Session Ident: #whatwg
- # [00:02] <othermaciej> is there anyone around who understands how microtasks are supposed to work?
- # [00:03] <othermaciej> I am finding the spec confusing
- # [00:16] * Quits: caitp (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Read error: Connection reset by peer)
- # [00:16] <jsbell> othermaciej: maybe? what's up?
- # [00:19] <othermaciej> jsbell: is there anything that causes microtasks to be performed after an event handler, function-based timer, or other non-script-based callback is run?
- # [00:19] <othermaciej> it sure sounds like this algorithm should run after such callbacks: https://html.spec.whatwg.org/#clean-up-after-running-a-callback
- # [00:20] <othermaciej> but I could not find anything that would cause it to happen; only seems to happen for stuff evaluating bare script code, like <script> or a timer with a string instead of a function
- # [00:21] * Quits: Ms2ger (~Ms2ger@215.196-242-81.adsl-dyn.isp.belgacom.be) (Quit: nn)
- # [00:21] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [00:22] * Quits: jernoble_ (~jernoble@17.202.49.155) (Quit: Computer has gone to sleep.)
- # [00:22] * Quits: scor (~scor@drupal.org/user/52142/view) (Client Quit)
- # [00:24] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [00:25] * Quits: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de) (Remote host closed the connection)
- # [00:25] * Joins: caitp (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [00:25] * Joins: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de)
- # [00:28] * Quits: scor (~scor@drupal.org/user/52142/view) (Client Quit)
- # [00:28] * Joins: jernoble_ (~jernoble@76.74.153.36)
- # [00:30] * Joins: tantek (~tantek@50-1-62-185.dsl.dynamic.fusionbroadband.com)
- # [00:30] * Quits: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de) (Ping timeout: 264 seconds)
- # [00:36] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [00:37] * Quits: jernoble_ (~jernoble@76.74.153.36) (Quit: Computer has gone to sleep.)
- # [00:39] * Quits: _ritchie_ (~andrewr@rrcs-69-193-219-75.nyc.biz.rr.com) (Quit: _ritchie_)
- # [00:42] <jamesr___> othermaciej: https://html.spec.whatwg.org/multipage/webappapis.html#processing-model-9 step 7 perhaps?
- # [00:42] <jamesr___> there are various other invocations of the "Perform a microtask checkpoint." text, for example in the "spin the event loop" section
- # [00:43] * Quits: benjamingr (uid23465@gateway/web/irccloud.com/x-ylpencyauwucduzy) (Quit: Connection closed for inactivity)
- # [00:45] <jamesr___> but the task one in the processing model should cover event handler, function-based timer and other non-script-based callbacks
- # [00:45] <jamesr___> since those are all tasks
- # [00:49] <jsbell> (sorry was afk). Agreed - anything that isn't covered by that sounds like a spec bug.
- # [00:52] <jsbell> jgraham: I've lost track of what the actual question is in the serviceworker/wpt thread
- # [00:52] * Quits: darob____ (~darobin@mtl93-18-78-208-93-24.fbx.proxad.net) (Remote host closed the connection)
- # [00:53] <jgraham> jsbell: The latest messages are about whether the tests can be written to run on https rather than on http
- # [00:54] <jgraham> AIUI the tests currently rely on running on a hostname that's whitelisted as allowing SW on http i.e. localhost or 127.0.0.1
- # [00:54] * Joins: annevk_ (~annevk@77-57-114-240.dclient.hispeed.ch)
- # [00:54] <othermaciej> jamesr___: yeah, I am not sure if event handlers, function timers, and miscellaneous functioncallbacks, are all meant to be handled by the post-task catchall
- # [00:55] <othermaciej> jamesr___: or if they should have some specific affordance
- # [00:55] <jsbell> jgraham: as far as chrome's test harness goes, https://localhost:8443 should be available
- # [00:55] <othermaciej> jamesr___: it potentially makes a difference, for example for events dispatched synchronously from within script
- # [00:55] * Quits: annevk (~annevk@77-57-114-240.dclient.hispeed.ch) (Ping timeout: 245 seconds)
- # [00:56] <jamesr___> othermaciej: i think in that case microtasks shouldn't fire
- # [00:56] <jamesr___> since the general philosophy is that they run on clean callstacks, no?
- # [00:56] * Joins: eric_carlson (~ericc@c-24-6-239-9.hsd1.ca.comcast.net)
- # [00:56] <othermaciej> I don’t know what the philosophy is
- # [00:57] <othermaciej> The spec doesn’t explain the theory of microtasks at a high level, it just has a bunch of algorithms that reference each other
- # [00:57] <jgraham> jsbell: Right, but the problem is semantics. A test for cross-origin communication isn't necessarily going to work if I just s|http://locahost:8000|https://{{host}}:{{ports[https][0]}}|
- # [00:57] <othermaciej> so I can’t tell if I’m following them correctly
- # [00:57] * heycam is now known as heycam|away
- # [00:57] * Joins: plutoniix (~plutoniix@119.63.87.222)
- # [00:57] <jamesr___> i think the idea is you implement the algorithms you don't have to understand the theory :)
- # [00:58] <jgraham> jsbell: So it would be useful if the chrome tests were rewritten to run from https:8443 by default
- # [00:58] <othermaciej> jamesr___: what confuses me is this Note: https://html.spec.whatwg.org/multipage/webappapis.html#processing-model-9:clean-up-after-running-a-callback
- # [00:58] * heycam|away is now known as heycam
- # [00:58] <othermaciej> jamesr___: it seems like most kinds of callbacks do not in fact eventually call the “clean up after running a callback” steps
- # [00:58] <othermaciej> jamesr___: which is the hook where microtasks might be run after running some script
- # [00:59] <jsbell> jgraham: if you're asking us to s/http/https/, s/8000/8443/ where possible in the blink repo, then SGTM
- # [00:59] <jamesr___> looks like that's only reached by 8.1.3.3 which is reached by creating a <script>
- # [00:59] <othermaciej> jamesr___: that note implies they would, but it only seems to apply to non-function entry into script
- # [00:59] * Quits: bholley (~bholley@corp.mtv2.mozilla.com)
- # [00:59] <othermaciej> jamesr___: if that is totally intentional, then perhaps the only issue is that the note is confusing
- # [00:59] <jamesr___> it seems a bit confusing. the flag in the queue is needed since the event loop can be entered reentrantly
- # [01:00] <jgraham> jsbell: Yeah, that would be ideal
- # [01:00] <jamesr___> i.e. you could within a microtask call showModalDialog() and then start spinning again
- # [01:00] <jamesr___> could you insert a new <script> within a microtask?
- # [01:00] <jamesr___> i mean you could, but would it run then?
- # [01:01] * Quits: dbaron (~dbaron@2620:101:80fb:224:b91d:befb:88f1:4d35) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [01:01] <othermaciej> I don’t know
- # [01:01] <jamesr___> well you could via showModalDialog
- # [01:01] <jamesr___> since you can do anything in that
- # [01:01] <othermaciej> document.write() would run it synchronously but I am not sure if something about microtasks prevents it
- # [01:02] <jamesr___> but i don't think that's what the note is supposed to signify. definitely worth some clarification
- # [01:02] <jsbell> jgraham: but ideally we should be using resources/test-helpers.js and get_host_info() everywhere instead of hardcoding anything
- # [01:02] <othermaciej> I notice though that there is nothing to account for non-<script> script callbacks in that algorithm
- # [01:02] <jsbell> jgraham: i.e. crbug.com/462361
- # [01:03] <othermaciej> I guess the only relevance is to prevent the algorithm from re-entering so it doesn’t matter that most script callbacks don’t do it
- # [01:03] <jgraham> jsbell: Right, but irrespective of that moving from http to https by default requires changes to what's considered cross-origin + etc.
- # [01:05] <jsbell> jgraham: get_host_info() populates e.g. HTTPS_REMOTE_ORIGIN; assuming the tests use those variables correctly, wouldn't that cover it? (sorry if I'm being dense here)
- # [01:06] <jgraham> Well I think my point is just that the changes there might not be trivial, depending on *exactly* what is being tested
- # [01:06] <jsbell> jgraham: Agreed.
- # [01:06] * Joins: roc (~chatzilla@2001:cb0:b202:224:2677:3ff:fece:dc64)
- # [01:07] <jgraham> e.g. if the default server is https://localhost:8443 then the remote origin probably has to be a subdomain, or different port, or something, whereas at the moment https is itself a seperate origin
- # [01:07] <jgraham> (and different tests might want different things here)
- # [01:08] <jgraham> Anyway I guess I will look at this more tomorrow, now I will sleep
- # [01:08] <jgraham> jsbell: thanks for the help!
- # [01:09] <jsbell> jgraham: I'll reply to the thread a bit and annotate the bug, but your clarifications (post sleep!) will help, thx!
- # [01:15] * Joins: jernoble_ (~jernoble@76.74.153.36)
- # [01:15] * Quits: jsbell (jsbell@nat/google/x-vbxxftnkebawfqsv) (Quit: There's no place like home...)
- # [01:16] * Joins: _ritchie_ (~andrewr@cpe-67-243-154-181.nyc.res.rr.com)
- # [01:19] * Quits: moo-_- (miohtama@lakka.kapsi.fi) (Ping timeout: 256 seconds)
- # [01:20] * Quits: jernoble_ (~jernoble@76.74.153.36) (Quit: Computer has gone to sleep.)
- # [01:21] * Joins: moo-_- (miohtama@lakka.kapsi.fi)
- # [01:23] * Quits: bnicholson (~bnicholso@corp.mtv2.mozilla.com) (Quit: This computer has gone to sleep)
- # [01:23] * Joins: darobin (~darobin@2a01:e34:ed05:d180:5033:a485:ae68:9fac)
- # [01:26] * Joins: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de)
- # [01:28] * Quits: tantek (~tantek@50-1-62-185.dsl.dynamic.fusionbroadband.com) (Quit: tantek)
- # [01:28] * Quits: sicking (~sicking@corp.mtv2.mozilla.com) (Quit: sicking)
- # [01:30] * Quits: darobin (~darobin@2a01:e34:ed05:d180:5033:a485:ae68:9fac) (Remote host closed the connection)
- # [01:30] * Joins: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [01:30] * Joins: darobin (~darobin@mtl93-18-78-208-93-24.fbx.proxad.net)
- # [01:32] * Quits: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de) (Ping timeout: 245 seconds)
- # [01:33] * Quits: _ritchie_ (~andrewr@cpe-67-243-154-181.nyc.res.rr.com) (Quit: _ritchie_)
- # [01:33] * Quits: darobin (~darobin@mtl93-18-78-208-93-24.fbx.proxad.net) (Remote host closed the connection)
- # [01:34] * Joins: bnicholson (~bnicholso@c-24-130-60-241.hsd1.ca.comcast.net)
- # [01:35] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [01:38] * Joins: dbaron (~dbaron@2620:101:80fb:224:b91d:befb:88f1:4d35)
- # [01:39] * Joins: newtron (~newtron@75-119-235-26.dsl.teksavvy.com)
- # [01:40] * Quits: alrra (uid62345@gateway/web/irccloud.com/x-ioujgmqdhvyomtsy) (Quit: Connection closed for inactivity)
- # [01:45] * Quits: benwerd (~benwerd@199.87.84.238)
- # [01:46] * Joins: ehsan (~ehsan@135-23-213-215.cpe.pppoe.ca)
- # [01:46] * Joins: sicking (~sicking@corp.mtv2.mozilla.com)
- # [01:48] * Joins: kbx (~kbx@2401:fa00:4:1013:91d7:bf68:a476:d78b)
- # [01:52] * Quits: encryptd_fractl (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
- # [01:56] * Quits: igoroliveira (uid20755@gateway/web/irccloud.com/x-ygharbkyystkfvbt) (Quit: Connection closed for inactivity)
- # [01:57] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [02:00] * Quits: ap (~ap@17.114.216.168)
- # [02:00] * Joins: mven (~textual@72.183.104.138)
- # [02:00] * Quits: mven (~textual@72.183.104.138) (Excess Flood)
- # [02:02] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [02:06] * Quits: seth_ (~swift@maya.sethfowler.org) (Ping timeout: 244 seconds)
- # [02:07] * Joins: [swift] (~swift@maya.sethfowler.org)
- # [02:10] * Joins: encryptd_fractl (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [02:16] * Quits: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi) (Ping timeout: 255 seconds)
- # [02:17] * Quits: jyasskin (jyasskin@nat/google/x-nsvzfouocldmyxyx) (Quit: My computer has gone to sleep. ZZZzzz…)
- # [02:22] * heycam is now known as heycam|away
- # [02:22] * Quits: scor (~scor@drupal.org/user/52142/view) (Quit: scor)
- # [02:28] * Joins: yoichio (yoichio@nat/google/x-nhqpkgafuxqvfqij)
- # [02:29] * Joins: lilmonkey` (~a@5ED090B0.cm-7-1c.dynamic.ziggo.nl)
- # [02:29] * Quits: lilmonkey` (~a@5ED090B0.cm-7-1c.dynamic.ziggo.nl) (Changing host)
- # [02:29] * Joins: lilmonkey` (~a@pdpc/supporter/professional/riven)
- # [02:31] * Joins: Goplat (~goplat@reactos/developer/Goplat)
- # [02:31] * Joins: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [02:32] * Quits: lilmonkey (~a@pdpc/supporter/professional/riven) (Ping timeout: 252 seconds)
- # [02:32] * Krinkle is now known as Krinkle|detached
- # [02:34] * Quits: ehsan (~ehsan@135-23-213-215.cpe.pppoe.ca) (Quit: Leaving...)
- # [02:34] * Joins: darobin (~darobin@2a01:e34:ed05:d180:5033:a485:ae68:9fac)
- # [02:35] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [02:43] * Quits: dbaron (~dbaron@2620:101:80fb:224:b91d:befb:88f1:4d35) (Ping timeout: 265 seconds)
- # [02:51] * Quits: othermaciej (~mjs@17.244.161.76) (Quit: othermaciej)
- # [02:55] * Quits: encryptd_fractl (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
- # [02:59] * Joins: jernoble_ (~jernoble@199-83-223-136.PUBLIC.monkeybrains.net)
- # [03:01] * Joins: jdaggett_ (~jdaggett@61-121-216-2.bitcat.net)
- # [03:02] * Quits: jernoble_ (~jernoble@199-83-223-136.PUBLIC.monkeybrains.net) (Client Quit)
- # [03:03] * Quits: sicking (~sicking@corp.mtv2.mozilla.com) (Quit: sicking)
- # [03:04] * Joins: encryptd_fractl (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [03:04] * Joins: othermaciej (~mjs@17.244.67.54)
- # [03:05] * Quits: encryptd_fractl (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
- # [03:06] * Quits: francisco_ (3ff5dd20@gateway/web/freenode/ip.63.245.221.32) (Ping timeout: 246 seconds)
- # [03:09] * Quits: othermaciej (~mjs@17.244.67.54) (Ping timeout: 246 seconds)
- # [03:09] * Quits: tav (~tav`@host31-52-138-62.range31-52.btcentralplus.com) (Ping timeout: 245 seconds)
- # [03:10] * Joins: tav (~tav`@host31-52-138-133.range31-52.btcentralplus.com)
- # [03:12] * heycam|away is now known as heycam
- # [03:13] * Joins: tav_ (~tav`@host31-52-143-59.range31-52.btcentralplus.com)
- # [03:14] * Quits: tav (~tav`@host31-52-138-133.range31-52.btcentralplus.com) (Ping timeout: 265 seconds)
- # [03:14] * tav_ is now known as tav
- # [03:15] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Remote host closed the connection)
- # [03:17] * Joins: othermaciej (~mjs@76.74.153.49)
- # [03:17] * Joins: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de)
- # [03:18] * Joins: bholley (~bholley@c-67-169-151-96.hsd1.ca.comcast.net)
- # [03:23] * Quits: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de) (Ping timeout: 245 seconds)
- # [03:25] * Quits: bholley (~bholley@c-67-169-151-96.hsd1.ca.comcast.net)
- # [03:31] * Krinkle|detached is now known as Krinkle
- # [03:33] * Quits: kbx (~kbx@2401:fa00:4:1013:91d7:bf68:a476:d78b) (Ping timeout: 272 seconds)
- # [03:35] * Joins: igoroliveira (uid20755@gateway/web/irccloud.com/x-pucgrohzeyljuvhe)
- # [03:37] * Joins: jpdevries (~jpdevries@c75-111-23-73.erkacmtk01.ca.dh.suddenlink.net)
- # [03:38] <jpdevries> Hello all. I understand this would probably target HTML6, but does anyone else feel there is a case for allowing multiple <base> tags on a page (outside of <head>)? Imagine being able to nest a base tag in a section and have it override the base href for that section and it's inner elements.
- # [03:47] * Joins: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [03:49] * Quits: kochi (~kochi@2401:fa00:4:1000:2cc1:c886:ca23:89f6) (Quit: Leaving.)
- # [03:51] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [03:52] * Joins: kochi (~kochi@2401:fa00:4:1000:e5f9:e28e:23e7:3881)
- # [03:58] * Quits: othermaciej (~mjs@76.74.153.49) (Quit: othermaciej)
- # [03:58] * Joins: tripu (~tripu@2001:200:0:8805:c10b:4558:d974:bdda)
- # [04:05] * Joins: encryptd_fractl (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [04:05] * Joins: othermaciej (~mjs@c-71-198-213-78.hsd1.ca.comcast.net)
- # [04:10] * Quits: roqo (~roqo@23.94.33.213) (Ping timeout: 245 seconds)
- # [04:10] * Quits: encryptd_fractl (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Ping timeout: 272 seconds)
- # [04:14] * Joins: dbaron (~dbaron@70-36-140-197.dsl.dynamic.fusionbroadband.com)
- # [04:20] * Joins: jacobolus (~jacobolus@2600:1010:b02e:5020:1073:f380:776a:7463)
- # [04:21] * Joins: psy_ (~psy@103.6.159.177)
- # [04:26] * Quits: eBureau (~Bruno@181.164.77.172) (Quit: Textual IRC Client: www.textualapp.com)
- # [04:36] * Joins: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [04:38] * Quits: hswolff (~hswolff@cpe-74-72-82-167.nyc.res.rr.com) (Ping timeout: 244 seconds)
- # [04:39] * Quits: roc (~chatzilla@2001:cb0:b202:224:2677:3ff:fece:dc64) (Remote host closed the connection)
- # [04:41] * Joins: hswolff (~hswolff@cpe-74-72-82-167.nyc.res.rr.com)
- # [04:57] * Quits: jpdevries (~jpdevries@c75-111-23-73.erkacmtk01.ca.dh.suddenlink.net) (Remote host closed the connection)
- # [05:01] * Joins: _ritchie_ (~andrewr@cpe-67-243-154-181.nyc.res.rr.com)
- # [05:01] * Joins: kbx (~kbx@2401:fa00:4:1013:91d7:bf68:a476:d78b)
- # [05:06] * Quits: othermaciej (~mjs@c-71-198-213-78.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [05:06] * Joins: othermaciej (~mjs@c-71-198-213-78.hsd1.ca.comcast.net)
- # [05:08] * Joins: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de)
- # [05:13] * Quits: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de) (Ping timeout: 252 seconds)
- # [05:17] * Joins: weinig (~weinig@c-98-234-191-242.hsd1.ca.comcast.net)
- # [05:17] * Quits: weinig (~weinig@c-98-234-191-242.hsd1.ca.comcast.net) (Client Quit)
- # [05:37] * Quits: dwim (~dwim@210.94.41.89) (Quit: Leaving.)
- # [05:40] * Joins: dwim (~dwim@210.94.41.89)
- # [05:40] * Quits: beverloo (beverloo@nat/google/x-zvpszjmxdlmsbvna) (Ping timeout: 256 seconds)
- # [05:48] * Joins: bradleymeck (~bradleyme@99-20-94-62.lightspeed.austtx.sbcglobal.net)
- # [05:53] * Quits: jacobolus (~jacobolus@2600:1010:b02e:5020:1073:f380:776a:7463) (Remote host closed the connection)
- # [06:06] * Quits: jsx (uid48919@fsf/intern/jsx) (Quit: Connection closed for inactivity)
- # [06:06] * Quits: bradleymeck (~bradleyme@99-20-94-62.lightspeed.austtx.sbcglobal.net) (Quit: bradleymeck)
- # [06:10] * Joins: bradleymeck (~bradleyme@99-20-94-62.lightspeed.austtx.sbcglobal.net)
- # [06:12] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [06:16] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [06:17] * Joins: sicking (~sicking@173-164-174-193-SFBA.hfc.comcastbusiness.net)
- # [06:21] * Quits: hgl (~hgl@unaffiliated/hgl) (Read error: Connection reset by peer)
- # [06:23] * Quits: _ritchie_ (~andrewr@cpe-67-243-154-181.nyc.res.rr.com) (Quit: _ritchie_)
- # [06:26] * Joins: hgl (~hgl@unaffiliated/hgl)
- # [06:26] * Quits: sicking (~sicking@173-164-174-193-SFBA.hfc.comcastbusiness.net) (Read error: Connection reset by peer)
- # [06:27] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [06:28] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [06:29] * Joins: _ritchie_ (~andrewr@cpe-67-243-154-181.nyc.res.rr.com)
- # [06:30] * Joins: sicking (~sicking@173-164-174-193-SFBA.hfc.comcastbusiness.net)
- # [06:30] * Quits: bradleymeck (~bradleyme@99-20-94-62.lightspeed.austtx.sbcglobal.net) (Quit: bradleymeck)
- # [06:33] * Joins: roc (~chatzilla@121-99-135-185.bng1.tvc.orcon.net.nz)
- # [06:33] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [06:43] * Quits: _ritchie_ (~andrewr@cpe-67-243-154-181.nyc.res.rr.com) (Quit: _ritchie_)
- # [06:46] * Quits: igoroliveira (uid20755@gateway/web/irccloud.com/x-pucgrohzeyljuvhe) (Quit: Connection closed for inactivity)
- # [06:47] * Joins: alrra (uid62345@gateway/web/irccloud.com/x-kvqdgoqlyauwjack)
- # [06:49] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [06:52] * Joins: mven (~textual@72.183.104.138)
- # [06:52] * Quits: mven (~textual@72.183.104.138) (Excess Flood)
- # [06:53] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [06:57] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [06:58] * Joins: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de)
- # [07:03] * Quits: kbx (~kbx@2401:fa00:4:1013:91d7:bf68:a476:d78b) (Ping timeout: 272 seconds)
- # [07:05] * Quits: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de) (Ping timeout: 246 seconds)
- # [07:06] * Joins: kbx (~kbx@2401:fa00:4:1013:91d7:bf68:a476:d78b)
- # [07:07] * Joins: benjamingr (uid23465@gateway/web/irccloud.com/x-hovcpkwutltzcjvb)
- # [07:10] * Quits: Goplat (~goplat@reactos/developer/Goplat) (Remote host closed the connection)
- # [07:23] * Joins: raintrap_ (~raintrap_@203.111.224.67)
- # [07:25] * Quits: raintrap_ (~raintrap_@203.111.224.67) (Remote host closed the connection)
- # [07:33] * Krinkle is now known as Krinkle|detached
- # [07:34] * Quits: dbaron (~dbaron@70-36-140-197.dsl.dynamic.fusionbroadband.com) (Ping timeout: 264 seconds)
- # [07:36] * Quits: kbx (~kbx@2401:fa00:4:1013:91d7:bf68:a476:d78b) (Ping timeout: 272 seconds)
- # [07:41] * Quits: yutak (~yutak@2401:fa00:4:1000:3030:51b8:cc1a:cd65) (Ping timeout: 256 seconds)
- # [07:44] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 245 seconds)
- # [07:45] * Joins: KevinMarks_ (~yaaic@2607:fb90:2209:cf0b:7f4d:8705:4cb8:80e)
- # [07:50] * Joins: kbx (~kbx@2401:fa00:4:1013:91d7:bf68:a476:d78b)
- # [07:51] * Joins: raintrap_ (~raintrap_@203.111.224.67)
- # [07:53] * Joins: yutak (~yutak@2401:fa00:4:1000:dc04:9d34:ea37:eee4)
- # [07:56] * Quits: raintrap_ (~raintrap_@203.111.224.67) (Remote host closed the connection)
- # [08:10] * Quits: davve` (~user@83.218.67.123) (Quit: ERC Version 5.3 (IRC client for Emacs))
- # [08:11] * Joins: davve (~user@83.218.67.123)
- # [08:23] * Joins: espadrine (~tyl@dan75-7-88-166-187-54.fbx.proxad.net)
- # [08:23] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [08:24] * Joins: SteveF_ (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net)
- # [08:29] * Quits: plutoniix (~plutoniix@119.63.87.222) (Ping timeout: 272 seconds)
- # [08:31] * Joins: plutoniix (~plutoniix@119.63.87.222)
- # [08:39] * Joins: capella-s32 (~yaaic@cpe-24-59-162-151.twcny.res.rr.com)
- # [08:41] * Quits: capella-s3 (~yaaic@cpe-24-59-162-151.twcny.res.rr.com) (Ping timeout: 265 seconds)
- # [08:43] * Joins: raintrap_ (~raintrap_@43-226-7-58.static.rise.as)
- # [08:46] * Joins: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de)
- # [08:48] * Joins: KevinMarks__ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [08:50] * Quits: KevinMarks_ (~yaaic@2607:fb90:2209:cf0b:7f4d:8705:4cb8:80e) (Ping timeout: 265 seconds)
- # [08:51] * Quits: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de) (Ping timeout: 244 seconds)
- # [09:00] * Quits: davve (~user@83.218.67.123) (Remote host closed the connection)
- # [09:00] * Joins: g4 (~g4@unaffiliated/gormer)
- # [09:02] * Quits: jdaggett_ (~jdaggett@61-121-216-2.bitcat.net) (Ping timeout: 264 seconds)
- # [09:03] * Joins: zdobersek (~zan@gateway/vpn/privateinternetaccess/zdobersek)
- # [09:04] * Quits: sicking (~sicking@173-164-174-193-SFBA.hfc.comcastbusiness.net) (Quit: sicking)
- # [09:07] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Read error: Connection reset by peer)
- # [09:07] * Joins: jacobolu_ (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [09:17] * Quits: jacobolu_ (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Ping timeout: 244 seconds)
- # [09:21] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [09:30] * heycam is now known as heycam|away
- # [09:32] * Joins: encryptd_fractl (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [09:33] * Joins: calvaris (~calvaris@fanzine.igalia.com)
- # [09:33] * Quits: mpt (~mpt@canonical/mpt) (Read error: Connection reset by peer)
- # [09:34] * Joins: Ms2ger (~Ms2ger@215.196-242-81.adsl-dyn.isp.belgacom.be)
- # [09:35] * Joins: jacobolu_ (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [09:36] * Quits: encryptd_fractl (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Ping timeout: 244 seconds)
- # [09:37] * Joins: mpt (~mpt@2001:67c:1560:a003:594e:d0b9:e909:a1ac)
- # [09:37] * Quits: mpt (~mpt@2001:67c:1560:a003:594e:d0b9:e909:a1ac) (Changing host)
- # [09:37] * Joins: mpt (~mpt@canonical/mpt)
- # [09:37] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Ping timeout: 250 seconds)
- # [09:40] * Quits: darobin (~darobin@2a01:e34:ed05:d180:5033:a485:ae68:9fac) (Ping timeout: 272 seconds)
- # [09:46] * Quits: KevinMarks__ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [09:50] * Joins: darobin (~darobin@2a01:e34:ed05:d180:34b6:54ca:dcde:c608)
- # [09:51] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [09:55] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [09:57] * Quits: othermaciej (~mjs@c-71-198-213-78.hsd1.ca.comcast.net) (Ping timeout: 255 seconds)
- # [09:58] <Ms2ger> "I tried to make an "end credits" slide w/ IE-only APIs not in Project Spartan that scrolls while I talk. The list was so long it crashed PPT"
- # [09:59] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [09:59] * Joins: othermaciej (~mjs@c-71-198-213-78.hsd1.ca.comcast.net)
- # [10:03] * Joins: frivoal (~frivoal@cm-84.208.175.177.getinternet.no)
- # [10:04] * Joins: hasather_ (~hasather@guest.schibsted.no)
- # [10:06] * Quits: karlcow (~karl@nerval.la-grange.net) (Quit: :tiuQ tiuq sah woclrak)
- # [10:06] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [10:07] * Quits: hasather (~hasather@80.91.33.141) (Ping timeout: 264 seconds)
- # [10:08] * Quits: hasather_ (~hasather@guest.schibsted.no) (Read error: Connection reset by peer)
- # [10:08] * Joins: hasather (~hasather@guest.schibsted.no)
- # [10:09] <jgraham> Ms2ger: Pointer?
- # [10:09] * Joins: hasather_ (~hasather@80.91.33.141)
- # [10:11] <Ms2ger> https://twitter.com/jacobrossi/status/580253880690208768
- # [10:12] * Quits: espadrine (~tyl@dan75-7-88-166-187-54.fbx.proxad.net) (Ping timeout: 256 seconds)
- # [10:13] * Quits: Somatt_wrk (~somattwrk@130.193.24.135) (Quit: ( www.nnscript.com :: NoNameScript 4.22 :: www.esnation.com ))
- # [10:13] * Quits: hasather (~hasather@guest.schibsted.no) (Ping timeout: 255 seconds)
- # [10:17] <Ms2ger> annevk_, https://github.com/servo/servo/issues/5336
- # [10:23] * Joins: sicking (~sicking@173-164-174-193-SFBA.hfc.comcastbusiness.net)
- # [10:25] * Quits: sicking (~sicking@173-164-174-193-SFBA.hfc.comcastbusiness.net) (Client Quit)
- # [10:35] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [10:37] * Joins: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de)
- # [10:37] * Quits: jacobolu_ (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Ping timeout: 252 seconds)
- # [10:43] * Quits: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de) (Ping timeout: 272 seconds)
- # [10:49] * Quits: kbx (~kbx@2401:fa00:4:1013:91d7:bf68:a476:d78b) (Ping timeout: 252 seconds)
- # [10:53] * Joins: hasather (~hasather@80.91.33.141)
- # [10:56] * Quits: hasather_ (~hasather@80.91.33.141) (Ping timeout: 256 seconds)
- # [11:02] * Joins: espadrine (~tyl@LMontsouris-656-1-2-84.w80-12.abo.wanadoo.fr)
- # [11:08] * Joins: hasather_ (~hasather@80.91.33.141)
- # [11:09] * Joins: satazor (~satazor@bl6-111-97.dsl.telepac.pt)
- # [11:09] * Joins: davve (~user@83.218.67.123)
- # [11:09] * Quits: hasather (~hasather@80.91.33.141) (Ping timeout: 264 seconds)
- # [11:12] * Joins: hasather (~hasather@80.91.33.141)
- # [11:13] * Quits: hasather_ (~hasather@80.91.33.141) (Ping timeout: 246 seconds)
- # [11:18] * Quits: plutoniix (~plutoniix@119.63.87.222) (Ping timeout: 252 seconds)
- # [11:19] * Quits: tripu (~tripu@2001:200:0:8805:c10b:4558:d974:bdda) (Ping timeout: 256 seconds)
- # [11:19] * Quits: davve (~user@83.218.67.123) (Remote host closed the connection)
- # [11:34] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [11:35] * Joins: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi)
- # [11:38] * Joins: plutoniix (~plutoniix@119.63.87.222)
- # [11:38] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [11:39] * Joins: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de)
- # [11:40] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [11:45] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [11:46] * Quits: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de) (Ping timeout: 252 seconds)
- # [11:49] * Joins: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de)
- # [11:53] * Joins: jacobolu_ (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [11:55] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Ping timeout: 272 seconds)
- # [12:04] * Quits: eric_carlson (~ericc@c-24-6-239-9.hsd1.ca.comcast.net) (Quit: eric_carlson)
- # [12:10] * Quits: plutoniix (~plutoniix@119.63.87.222) (Quit: จรลี จรลา)
- # [12:13] * Quits: Ms2ger (~Ms2ger@215.196-242-81.adsl-dyn.isp.belgacom.be) (Quit: bbl)
- # [12:13] * Quits: CvP (~CvP@203.76.123.238) (Read error: Connection reset by peer)
- # [12:14] * Joins: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [12:15] * Joins: CvP (~CvP@203.76.123.238)
- # [12:16] * Quits: CvP (~CvP@203.76.123.238) (Read error: Connection reset by peer)
- # [12:18] * Joins: CvP (~CvP@203.76.123.238)
- # [12:20] * Quits: frivoal (~frivoal@cm-84.208.175.177.getinternet.no) (Remote host closed the connection)
- # [12:24] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [12:26] * Quits: satazor (~satazor@bl6-111-97.dsl.telepac.pt) (Remote host closed the connection)
- # [12:28] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [12:36] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [12:36] * Joins: igoroliveira (uid20755@gateway/web/irccloud.com/x-olxzbtrgddmlsvcd)
- # [12:42] * Joins: tiago (~tiago@unaffiliated/tiago)
- # [12:42] * Joins: ^esc_ (~esc-ape@77.119.131.42.wireless.dyn.drei.com)
- # [12:43] <tiago> hi, how would I read a certain meta tag with html5lib?
- # [12:43] <tiago> in python
- # [12:44] <tiago> like, <meta name="description" content="Something" />
- # [12:44] <tiago> I need the "Something"
- # [12:45] * Quits: ^esc (~esc-ape@77.119.131.3.wireless.dyn.drei.com) (Ping timeout: 264 seconds)
- # [12:48] <JakeA> tiago: this channel is for HTML & DOM specs. In JS it could be document.querySelector('meta[name=description]').getAttribute('content'), dunno if html5lib has something similar. It isn't maintained by whatwg.
- # [12:49] <tiago> Thanks JakeA, it's just because the html5lib github page points to this channel
- # [12:49] * Joins: encryptd_fractl (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [12:50] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [12:51] <JakeA> Streams people (cc Domenic), if I have an underlying binary stream, piped to a text decoding transform stream, piped to a CSV decoder, should the CSV decoder yield, say, a CSV cell per read, or is it customary to deliver as much data as you can per read?
- # [12:52] * Quits: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi) (Ping timeout: 250 seconds)
- # [12:52] * Joins: scor (~scor@c-24-2-162-32.hsd1.ma.comcast.net)
- # [12:52] * Quits: scor (~scor@c-24-2-162-32.hsd1.ma.comcast.net) (Changing host)
- # [12:52] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [12:54] <JakeA> tiago: oh, actually, maybe I'm wrong, looks like quite a few people in this channel build that lib. My bad. +MikeSmith gsnedders
- # [12:54] <tiago> ah
- # [12:56] * Joins: satazor (~satazor@bl6-111-97.dsl.telepac.pt)
- # [12:58] * Joins: xtrm0 (uid12574@gateway/web/irccloud.com/x-vmrczxsujorvwpob)
- # [13:02] <JakeA> tiago: once you've got a document, you can use .childNodes to gets its children etc etc. Once you find the meta, use .attributes and find the one with name 'name'
- # [13:02] <JakeA> https://github.com/html5lib/html5lib-python/blob/f5fd711dd3e933353423656b8adf114e436cc4bb/html5lib/treebuilders/etree.py#L19
- # [13:03] <tiago> thanks JakeA, I will tr
- # [13:03] <tiago> *try
- # [13:05] * Quits: encryptd_fractl (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
- # [13:06] * Quits: newtron (~newtron@75-119-235-26.dsl.teksavvy.com) (Remote host closed the connection)
- # [13:10] * Joins: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi)
- # [13:11] * Joins: frivoal (~frivoal@cm-84.208.175.177.getinternet.no)
- # [13:13] * Joins: encryptd_fractl (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [13:18] * Quits: encryptd_fractl (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
- # [13:20] * Quits: webguynow (~webguynow@c-24-1-200-217.hsd1.il.comcast.net) (Ping timeout: 272 seconds)
- # [13:22] * Joins: encryptd_fractl (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [13:26] * Joins: tripu (~tripu@p7223-ipngn11001marunouchi.tokyo.ocn.ne.jp)
- # [13:29] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [13:33] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [13:34] * Joins: davve (~user@83.218.67.123)
- # [13:36] * Quits: satazor (~satazor@bl6-111-97.dsl.telepac.pt) (Ping timeout: 246 seconds)
- # [13:37] * Quits: hasather (~hasather@80.91.33.141) (Ping timeout: 245 seconds)
- # [13:42] * Quits: sarri (~sari@unaffiliated/sarri) (Ping timeout: 250 seconds)
- # [13:48] <Domenic> JakeA: CSV cell (more likely row) per read is generally customary
- # [13:49] * Joins: plutoniix (~plutoniix@node-1cw6.pool-101-108.dynamic.totbb.net)
- # [13:50] <JakeA> Domenic: thanks!
- # [13:50] * Joins: hasather (~hasather@guest.schibsted.no)
- # [13:51] * Joins: sarri (~sari@unaffiliated/sarri)
- # [13:52] * Quits: darobin (~darobin@2a01:e34:ed05:d180:34b6:54ca:dcde:c608) (Remote host closed the connection)
- # [13:52] <JakeA> Domenic: btw, the streams API seems to be a perfect balance of simplicity and functionality. Nice one
- # [13:52] <Domenic> :D
- # [13:57] * Joins: eric_carlson (~ericc@17.202.49.94)
- # [13:57] * Joins: ehsan_ (~ehsan@135-23-213-215.cpe.pppoe.ca)
- # [14:00] * Quits: eric_carlson (~ericc@17.202.49.94) (Client Quit)
- # [14:01] * Joins: eric_carlson (~ericc@17.202.49.94)
- # [14:01] * Quits: hasather (~hasather@guest.schibsted.no) (Remote host closed the connection)
- # [14:04] <wanderview> yea, it seems for chunk or message oriented streams like ReadableStream... each chunk should be a logical object for whatever transformation you are doing
- # [14:04] <wanderview> I think its less clear for ReadableByteStreams
- # [14:05] <JakeA> wanderview: yeah, or text which is "as many chars as possible", and it only holds back incomplete chars
- # [14:05] * Quits: encryptd_fractl (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
- # [14:20] * Quits: sarri (~sari@unaffiliated/sarri) (Ping timeout: 264 seconds)
- # [14:20] * Joins: mven (~textual@32.97.110.57)
- # [14:20] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [14:20] * Quits: mven (~textual@32.97.110.57) (Excess Flood)
- # [14:20] * Joins: encryptd_fractl (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [14:20] * Joins: sarri (~sari@unaffiliated/sarri)
- # [14:23] <annevk_> Domenic: iirc I told you that TextDecoder kept state, but TextEncoder didn't
- # [14:23] * annevk_ is now known as annevk
- # [14:23] <annevk> JakeA: you should keep passing stream:true until you hit OEF
- # [14:25] * Quits: jacobolu_ (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Remote host closed the connection)
- # [14:25] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [14:25] <JakeA> annevk: that's what I'm doing
- # [14:26] <JakeA> stream is !result.done
- # [14:26] <annevk> JakeA: we could maybe make pipe(new TextDecoder) work for the common case, if TextDecoder/TextEncoder implement some stream-protocol
- # [14:26] * Quits: encryptd_fractl (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
- # [14:27] <Domenic> annevk: ah yes, now I remember
- # [14:27] <JakeA> annevk: at a quick glance, I think that could be possible in a backwards compatible way
- # [14:28] <JakeA> You could maybe even define .decode in terms of real streams
- # [14:28] <Domenic> yeah just add .writable and .readable properties
- # [14:29] * Joins: newtron (~newtron@199.71.174.203)
- # [14:29] <JakeA> Domenic: the bit I'm worried about is what .decode etc do if you're using the decoder as a stream
- # [14:29] <Domenic> yeah true
- # [14:30] <Domenic> perhaps unnecessarily complicated
- # [14:30] <JakeA> Domenic: it could be as simple as it throws if the stream is locked
- # [14:31] <Domenic> Mehhhh
- # [14:31] * Joins: encryptd_fractl (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [14:31] <JakeA> Using it as a stream, *and* calling .decode sounds like a mistake
- # [14:32] * Joins: TallTed (~Thud@63.119.36.36)
- # [14:34] * Joins: satazor (~satazor@114.248.108.93.rev.vodafone.pt)
- # [14:35] <wanderview> It seems the streamified object should wrap an existing TextDecoder object
- # [14:36] * Quits: encryptd_fractl (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Ping timeout: 264 seconds)
- # [14:36] <JakeA> Gone done a post on fetch & streams http://jakearchibald.com/2015/thats-so-fetch/
- # [14:37] <Domenic> wanderview: or TextDecoder should wrap a streamified object. But, they should be separate I think... too messy otherwise.
- # [14:37] <wanderview> Domenic: I think since TextDecoder existed first... its easier to write the new stream in terms of the TextDecoder
- # [14:38] <Domenic> Sure
- # [14:39] * Joins: bradleymeck (~bradleyme@99-20-94-62.lightspeed.austtx.sbcglobal.net)
- # [14:39] * Quits: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi) (Ping timeout: 252 seconds)
- # [14:40] * Joins: Kolombiken (~Adium@gateway.creuna.se)
- # [14:41] * Quits: satazor (~satazor@114.248.108.93.rev.vodafone.pt) (Ping timeout: 255 seconds)
- # [14:42] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [14:46] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [14:48] * Joins: darobin (~darobin@159.180.228.142)
- # [14:52] * Quits: psy_ (~psy@103.6.159.177) (Ping timeout: 246 seconds)
- # [14:54] * Joins: hasather (~hasather@guest.schibsted.no)
- # [14:55] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [14:55] <annevk> JakeA: "Dramatic reconstruction" :-)
- # [14:56] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [14:57] * Joins: eBureau (~Bruno@181.164.77.172)
- # [14:59] * Joins: encryptd_fractl (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [14:59] * Quits: scor (~scor@drupal.org/user/52142/view) (Quit: scor)
- # [15:00] * Quits: tripu (~tripu@p7223-ipngn11001marunouchi.tokyo.ocn.ne.jp) (Quit: Leaving)
- # [15:00] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Ping timeout: 265 seconds)
- # [15:02] * Quits: hasather (~hasather@guest.schibsted.no) (Read error: Connection reset by peer)
- # [15:03] <JakeA> annevk: I had to fallback to an SVG of that on iphone because they *still* don't allow inline video
- # [15:03] <JakeA> Could have used a 5mb gif but screw that
- # [15:03] * Joins: hasather (~hasather@guest.schibsted.no)
- # [15:04] * Joins: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [15:06] * Joins: hasather_ (~hasather@80.91.33.141)
- # [15:09] * Joins: Goplat (~goplat@reactos/developer/Goplat)
- # [15:10] * Quits: hasather (~hasather@guest.schibsted.no) (Ping timeout: 256 seconds)
- # [15:10] <Domenic> an svg O_O i gotta see this
- # [15:13] <Domenic> hmm tried it on my ipad looks the same
- # [15:13] * Quits: hasather_ (~hasather@80.91.33.141) (Quit: Leaving...)
- # [15:13] * Quits: tiago (~tiago@unaffiliated/tiago) (Ping timeout: 252 seconds)
- # [15:15] <Domenic> don't engage webreflection...
- # [15:15] * Quits: sarri (~sari@unaffiliated/sarri) (Ping timeout: 256 seconds)
- # [15:15] * Joins: hasather (~hasather@80.91.33.141)
- # [15:16] * Joins: tiago (~tiago@unaffiliated/tiago)
- # [15:17] * Joins: sarri (~sari@unaffiliated/sarri)
- # [15:20] * Quits: karlcow (~karl@nerval.la-grange.net) (Quit: :tiuQ tiuq sah woclrak)
- # [15:20] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [15:21] <JakeA> Domenic: ah, too late
- # [15:21] <Domenic> he is _the_ es-discuss troll
- # [15:21] <JakeA> Domenic: the SVG is static unfortunately. Inline video works fine on ipad
- # [15:21] <Domenic> hmm i was picturing an animated vector representation
- # [15:22] <JakeA> So I'm not crazy then? I can't match up what webreflection is saying to reality
- # [15:23] <wanderview> JakeA: I think maybe if someone focuses on the tongue-in-cheek parts they could view it as a rant... *mumbles something about cognitive bias*
- # [15:23] <JakeA> maybe. I tried to keep it tongue-in-cheek and of course didn't name
- # [15:24] <gsnedders> JakeA: the official policy has always been there's no real topic for this channel, and nobody really cares about using this for html5lib since half the discussions historically were half spec discussions and actual questions are pretty infrequent
- # [15:25] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 265 seconds)
- # [15:26] <MikeSmith> does anybody maintain a JSON file or something with a list of the currents UA strings for major browsers?
- # [15:26] <MikeSmith> something meant to be easily consumable
- # [15:27] <wanderview> JakeA: I know... it was a valiant effort... but people tend to see what they expect to see unfortunately
- # [15:27] <JakeA> gsnedders: noted, cheers!
- # [15:29] <ondras> webreflection is andrea giammarchi_
- # [15:29] <ondras> ?
- # [15:29] <ondras> I recall his talk on jsconf.eu ~2012 or so
- # [15:31] * Quits: ehsan_ (~ehsan@135-23-213-215.cpe.pppoe.ca) (Remote host closed the connection)
- # [15:31] <caitp-> was this whole thing about how fetch is bad because of promises, or was that a different one?
- # [15:31] <jgraham> MikeSmith: At one point that UA sniffing tool thing had them, I think. Or I guess regexps that were supposed to match lots of known browsers
- # [15:31] * Joins: ehsan (~ehsan@135-23-213-215.cpe.pppoe.ca)
- # [15:31] <wanderview> caitp-: I believe this started with "OMG fetch is not based on streams"
- # [15:32] <wanderview> or maybe there are two issues flying about
- # [15:33] <MikeSmith> jgraham: ok
- # [15:34] * wanderview enables Cache by default in Firefox nightly.
- # [15:34] * Quits: xtrm0 (uid12574@gateway/web/irccloud.com/x-vmrczxsujorvwpob) (Quit: Connection closed for inactivity)
- # [15:35] * Quits: ehsan (~ehsan@135-23-213-215.cpe.pppoe.ca) (Ping timeout: 246 seconds)
- # [15:35] <JakeA> ondras: he's a cool guy, he's just a bit hot-headed about this
- # [15:36] <jgraham> MikeSmith: Something like https://github.com/3rd-Eden/useragent/blob/master/lib/regexps.js
- # [15:36] <JakeA> caitp-: yeah, partly it was "this is not based on streams" even though it is, but also that we don't have cancellation yet, but that's on its way
- # [15:40] * Joins: thinkxl (~thinkxl@74-95-237-22-Houston.hfc.comcastbusiness.net)
- # [15:40] <JakeA> wanderview: ohhhh! In window objects too?
- # [15:40] <MikeSmith> jgraham: looking now
- # [15:41] <wanderview> JakeA: yep... it won't ride the trains to release yet, though
- # [15:41] <wanderview> I'm going to push a blog post in a bit explaining
- # [15:41] <MikeSmith> jgraham: ah coolーthanks
- # [15:42] * Quits: tiago (~tiago@unaffiliated/tiago) (Ping timeout: 255 seconds)
- # [15:45] * Joins: tiago (~tiago@unaffiliated/tiago)
- # [15:50] * Joins: mpt (~mpt@2001:67c:1560:a003:40eb:132a:7c2:246)
- # [15:50] * Quits: mpt (~mpt@2001:67c:1560:a003:40eb:132a:7c2:246) (Changing host)
- # [15:50] * Joins: mpt (~mpt@canonical/mpt)
- # [15:51] * Quits: Mateon1 (~Mateon1@unaffiliated/mateon1) (Read error: Connection reset by peer)
- # [15:51] * Joins: Mateon2 (~Mateon1@unaffiliated/mateon1)
- # [15:54] * Quits: Mateon2 (~Mateon1@unaffiliated/mateon1) (Read error: Connection reset by peer)
- # [15:54] * Joins: Mateon1 (~Mateon1@unaffiliated/mateon1)
- # [15:55] * Quits: raintrap_ (~raintrap_@43-226-7-58.static.rise.as) (Remote host closed the connection)
- # [15:56] * Joins: raintrap_ (~raintrap_@43-226-7-58.static.rise.as)
- # [15:56] * Quits: raintrap_ (~raintrap_@43-226-7-58.static.rise.as) (Remote host closed the connection)
- # [15:56] * Quits: Mateon1 (~Mateon1@unaffiliated/mateon1) (Read error: Connection reset by peer)
- # [15:56] * Joins: Mateon2 (~Mateon1@unaffiliated/mateon1)
- # [15:57] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [15:57] * Joins: ehsan_ (~ehsan@66.207.208.102)
- # [16:00] * Joins: jyasskin (~jyasskin@173-228-80-34.dsl.static.fusionbroadband.com)
- # [16:00] * Joins: _ritchie_ (~andrewr@107.181.23.90)
- # [16:01] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Ping timeout: 250 seconds)
- # [16:09] * Joins: satazor_ (~satazor@bl6-111-97.dsl.telepac.pt)
- # [16:12] * Joins: dbaron (~dbaron@70-36-140-197.dsl.dynamic.fusionbroadband.com)
- # [16:14] * wanderview can never figure out how to get images to look right in twitter summary cards.
- # [16:16] * Joins: sicking (~sicking@corp.mtv2.mozilla.com)
- # [16:19] <wanderview> JakeA: here is the blog explaining what we are doing: https://blog.wanderview.com/blog/2015/03/24/service-workers-in-firefox-nightly/
- # [16:21] * Joins: josemanuel (~josemanue@74.Red-80-39-229.dynamicIP.rima-tde.net)
- # [16:48] * Quits: satazor_ (~satazor@bl6-111-97.dsl.telepac.pt) (Remote host closed the connection)
- # [16:48] * Quits: TallTed (~Thud@63.119.36.36)
- # [16:52] * Joins: satazor (~satazor@bl6-111-97.dsl.telepac.pt)
- # [16:55] * Joins: tantek (~tantek@50-1-62-185.dsl.dynamic.fusionbroadband.com)
- # [16:58] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [17:02] * Quits: satazor (~satazor@bl6-111-97.dsl.telepac.pt) (Remote host closed the connection)
- # [17:02] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Ping timeout: 272 seconds)
- # [17:03] * Quits: g4 (~g4@unaffiliated/gormer) (Quit: Leaving)
- # [17:04] * Joins: satazor (~satazor@114.248.108.93.rev.vodafone.pt)
- # [17:10] * Joins: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi)
- # [17:13] * Joins: ImNotSuperman (~ImNotSupe@ANantes-651-1-109-66.w90-25.abo.wanadoo.fr)
- # [17:13] * Parts: ImNotSuperman (~ImNotSupe@ANantes-651-1-109-66.w90-25.abo.wanadoo.fr) ("Leaving")
- # [17:14] * Quits: frivoal (~frivoal@cm-84.208.175.177.getinternet.no) (Remote host closed the connection)
- # [17:14] * Joins: terinjokes_ (sid65030@wikinews/Terinjokes)
- # [17:17] * Joins: jwalden (~waldo@67.142.235.252)
- # [17:17] * Joins: jsx (uid48919@fsf/intern/jsx)
- # [17:18] * Quits: satazor (~satazor@114.248.108.93.rev.vodafone.pt) (Remote host closed the connection)
- # [17:19] * Quits: eric_carlson (~ericc@17.202.49.94) (Quit: eric_carlson)
- # [17:20] * Joins: raintrap_ (~raintrap_@203.111.224.67)
- # [17:21] * Quits: jyasskin_w (jyasskin@nat/google/x-gtkmmtipjutgncol) (Ping timeout: 265 seconds)
- # [17:22] * Joins: eric_carlson (~ericc@17.202.49.94)
- # [17:27] * Quits: hasather (~hasather@80.91.33.141) (Remote host closed the connection)
- # [17:28] * Joins: hasather (~hasather@80.91.33.141)
- # [17:30] * Quits: jyasskin (~jyasskin@173-228-80-34.dsl.static.fusionbroadband.com) (Quit: My computer has gone to sleep. ZZZzzz…)
- # [17:33] * Quits: Kolombiken (~Adium@gateway.creuna.se) (Read error: Connection reset by peer)
- # [17:35] * Quits: bnicholson (~bnicholso@c-24-130-60-241.hsd1.ca.comcast.net) (Quit: This computer has gone to sleep)
- # [17:35] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Read error: Connection reset by peer)
- # [17:40] * Quits: darobin (~darobin@159.180.228.142) (Quit: Leaving...)
- # [17:41] * Quits: eBureau (~Bruno@181.164.77.172) (Quit: My iMac has gone to sleep. ZZZzzz…)
- # [17:43] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [17:44] * Quits: jwalden (~waldo@67.142.235.252) (Remote host closed the connection)
- # [17:45] * Joins: jwalden (~waldo@67.142.235.252)
- # [17:45] * Joins: bnicholson (~bnicholso@corp.mtv2.mozilla.com)
- # [17:45] * Joins: satazor (~satazor@bl6-111-97.dsl.telepac.pt)
- # [17:46] * Quits: jwalden (~waldo@67.142.235.252) (Remote host closed the connection)
- # [17:47] * Joins: jwalden (~waldo@67.142.235.252)
- # [17:48] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [17:48] * Joins: ap (~ap@17.202.44.214)
- # [17:49] * Quits: satazor (~satazor@bl6-111-97.dsl.telepac.pt) (Remote host closed the connection)
- # [17:49] * Quits: sicking (~sicking@corp.mtv2.mozilla.com) (Quit: sicking)
- # [17:51] * Joins: jyasskin (~jyasskin@207.198.105.20)
- # [17:57] * Joins: sicking (~sicking@corp.mtv2.mozilla.com)
- # [17:57] * Quits: jwalden (~waldo@67.142.235.252) (Remote host closed the connection)
- # [17:58] * Joins: jwalden (~waldo@67.142.235.252)
- # [17:58] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [18:01] * Quits: jwalden (~waldo@67.142.235.252) (Remote host closed the connection)
- # [18:02] * Joins: jwalden (~waldo@67.142.235.252)
- # [18:03] * Joins: scor (scor@nat/acquia/x-ikznnseovxljnzcp)
- # [18:03] * Quits: scor (scor@nat/acquia/x-ikznnseovxljnzcp) (Changing host)
- # [18:03] * Joins: scor (scor@drupal.org/user/52142/view)
- # [18:03] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Ping timeout: 252 seconds)
- # [18:04] * Joins: satazor (~satazor@bl6-111-97.dsl.telepac.pt)
- # [18:05] * Joins: TallTed (~Thud@63.119.36.36)
- # [18:10] * Quits: satazor (~satazor@bl6-111-97.dsl.telepac.pt) (Remote host closed the connection)
- # [18:10] * Quits: josemanuel (~josemanue@74.Red-80-39-229.dynamicIP.rima-tde.net) (Quit: Saliendo)
- # [18:14] * Joins: frivoal (~frivoal@cm-84.208.175.177.getinternet.no)
- # [18:20] * Quits: frivoal (~frivoal@cm-84.208.175.177.getinternet.no) (Ping timeout: 250 seconds)
- # [18:21] * Quits: jwalden (~waldo@67.142.235.252) (Remote host closed the connection)
- # [18:22] * Joins: jwalden (~waldo@67.142.235.252)
- # [18:27] * Quits: jyasskin (~jyasskin@207.198.105.20) (Ping timeout: 246 seconds)
- # [18:27] * Quits: jwalden (~waldo@67.142.235.252) (Quit: ChatZilla 0.9.87-8.1450hg.fc20 [XULRunner 32.0/20140902134853])
- # [18:28] * Joins: jyasskin (~jyasskin@207.198.105.20)
- # [18:29] * Joins: Maurice` (copyman@5ED5617C.cm-7-6b.dynamic.ziggo.nl)
- # [18:29] * Quits: Maurice` (copyman@5ED5617C.cm-7-6b.dynamic.ziggo.nl) (Changing host)
- # [18:29] * Joins: Maurice` (copyman@unaffiliated/maurice)
- # [18:32] * Quits: jyasskin (~jyasskin@207.198.105.20) (Remote host closed the connection)
- # [18:32] * Joins: jsbell (jsbell@nat/google/x-qrmzfxwrageoxglk)
- # [18:32] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [18:33] * Joins: jyasskin (~jyasskin@207.198.105.20)
- # [18:35] * Joins: satazor (~satazor@114.248.108.93.rev.vodafone.pt)
- # [18:36] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [18:37] * Quits: jyasskin (~jyasskin@207.198.105.20) (Client Quit)
- # [18:38] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [18:41] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 272 seconds)
- # [18:43] * Joins: jyasskin (~jyasskin@216.239.45.83)
- # [18:44] * Quits: satazor (~satazor@114.248.108.93.rev.vodafone.pt) (Remote host closed the connection)
- # [18:59] * Quits: dbaron (~dbaron@70-36-140-197.dsl.dynamic.fusionbroadband.com) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [19:00] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 265 seconds)
- # [19:03] * Joins: jwalden (~waldo@70.158.101.219)
- # [19:07] * Joins: mpt (~mpt@2001:67c:1560:a003:594e:d0b9:e909:a1ac)
- # [19:07] * Quits: mpt (~mpt@2001:67c:1560:a003:594e:d0b9:e909:a1ac) (Changing host)
- # [19:07] * Joins: mpt (~mpt@canonical/mpt)
- # [19:15] * Quits: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de) (Remote host closed the connection)
- # [19:16] * Joins: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de)
- # [19:17] * Quits: espadrine (~tyl@LMontsouris-656-1-2-84.w80-12.abo.wanadoo.fr) (Ping timeout: 256 seconds)
- # [19:20] * Quits: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de) (Ping timeout: 256 seconds)
- # [19:23] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [19:25] * Joins: ambv (~ambv@199.201.64.131)
- # [19:30] * Quits: raintrap_ (~raintrap_@203.111.224.67) (Remote host closed the connection)
- # [19:30] * Quits: ehsan_ (~ehsan@66.207.208.102) (Remote host closed the connection)
- # [19:30] * Joins: ehsan_ (~ehsan@2001:450:1f:224:a00d:6b0e:dbf2:f034)
- # [19:31] * Quits: ehsan_ (~ehsan@2001:450:1f:224:a00d:6b0e:dbf2:f034) (Remote host closed the connection)
- # [19:36] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [19:37] * Joins: satazor (~satazor@bl6-111-97.dsl.telepac.pt)
- # [19:41] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 246 seconds)
- # [19:41] * Quits: jyasskin (~jyasskin@216.239.45.83) (Quit: My computer has gone to sleep. ZZZzzz…)
- # [19:41] * Joins: dbaron (~dbaron@2620:101:80fb:224:b91d:befb:88f1:4d35)
- # [19:42] * Quits: satazor (~satazor@bl6-111-97.dsl.telepac.pt) (Ping timeout: 246 seconds)
- # [19:43] * Quits: bradleymeck (~bradleyme@99-20-94-62.lightspeed.austtx.sbcglobal.net) (Quit: bradleymeck)
- # [19:44] * Joins: bradleymeck (~bradleyme@99-20-94-62.lightspeed.austtx.sbcglobal.net)
- # [19:49] * Joins: frivoal (~frivoal@cm-84.208.175.177.getinternet.no)
- # [19:56] * Joins: psy_ (~psy@103.6.159.177)
- # [19:58] * Quits: hasather (~hasather@80.91.33.141) (Remote host closed the connection)
- # [19:58] * Joins: hasather (~hasather@80.91.33.141)
- # [19:58] * Quits: sicking (~sicking@corp.mtv2.mozilla.com) (Quit: sicking)
- # [19:59] * Quits: scor (scor@drupal.org/user/52142/view) (Ping timeout: 250 seconds)
- # [20:01] * Quits: tantek (~tantek@50-1-62-185.dsl.dynamic.fusionbroadband.com) (Quit: tantek)
- # [20:03] * Joins: scor (scor@drupal.org/user/52142/view)
- # [20:04] * Quits: frivoal (~frivoal@cm-84.208.175.177.getinternet.no) (Remote host closed the connection)
- # [20:05] * Joins: eBureau (~Bruno@181.164.77.172)
- # [20:09] * Quits: bradleymeck (~bradleyme@99-20-94-62.lightspeed.austtx.sbcglobal.net) (Quit: bradleymeck)
- # [20:10] * Quits: calvaris (~calvaris@fanzine.igalia.com) (Quit: Ex-Chat)
- # [20:13] * Joins: frivoal (~frivoal@cm-84.208.175.177.getinternet.no)
- # [20:16] * Joins: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de)
- # [20:20] * Quits: alrra (uid62345@gateway/web/irccloud.com/x-kvqdgoqlyauwjack) (Quit: Connection closed for inactivity)
- # [20:22] * Quits: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de) (Ping timeout: 256 seconds)
- # [20:23] * Joins: raintrap_ (~raintrap_@203.111.224.67)
- # [20:23] * Quits: jwalden (~waldo@70.158.101.219) (Quit: back from the plane in a bit)
- # [20:23] * Quits: raintrap_ (~raintrap_@203.111.224.67) (Remote host closed the connection)
- # [20:23] * Joins: satazor (~satazor@114.248.108.93.rev.vodafone.pt)
- # [20:29] * Quits: satazor (~satazor@114.248.108.93.rev.vodafone.pt) (Ping timeout: 264 seconds)
- # [20:31] * Joins: ehsan_ (~ehsan@2001:450:1f:224:a00d:6b0e:dbf2:f034)
- # [20:35] * Quits: halfline (rstrode@nat/redhat/x-elafagjyejameiqb) (Ping timeout: 246 seconds)
- # [20:35] * Quits: ehsan_ (~ehsan@2001:450:1f:224:a00d:6b0e:dbf2:f034) (Remote host closed the connection)
- # [20:35] * Joins: ehsan_ (~ehsan@66.207.208.102)
- # [20:37] * Joins: benwerd (~benwerd@199.87.84.238)
- # [20:42] * Joins: sicking (~sicking@corp.mtv2.mozilla.com)
- # [20:43] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [20:48] * Joins: iandevlin (~iandevlin@dslb-092-072-129-179.092.072.pools.vodafone-ip.de)
- # [20:49] * Joins: raintrap_ (~raintrap_@203.111.224.67)
- # [20:51] * Krinkle|detached is now known as Krinkle
- # [20:52] * Quits: iandevlin (~iandevlin@dslb-092-072-129-179.092.072.pools.vodafone-ip.de) (Client Quit)
- # [20:55] * Joins: bradleymeck (~bradleyme@24.27.227.0)
- # [20:56] * Quits: benwerd (~benwerd@199.87.84.238) (Remote host closed the connection)
- # [20:56] * Joins: halfline (rstrode@nat/redhat/x-hgaawlofvteqbhgs)
- # [20:57] * Quits: frivoal (~frivoal@cm-84.208.175.177.getinternet.no) (Quit: Leaving...)
- # [20:57] * Joins: frivoal (~frivoal@cm-84.208.175.177.getinternet.no)
- # [20:57] * Joins: benwerd (~benwerd@199.87.84.238)
- # [20:58] * Quits: hasather (~hasather@80.91.33.141) (Remote host closed the connection)
- # [20:58] * Quits: frivoal (~frivoal@cm-84.208.175.177.getinternet.no) (Client Quit)
- # [20:58] * Joins: hasather (~hasather@80.91.33.141)
- # [21:01] * Joins: xtrm0 (uid12574@gateway/web/irccloud.com/x-qrbdxmygqjfwnfmt)
- # [21:01] * Krinkle is now known as Krinkle|detached
- # [21:04] * Joins: frivoal (~frivoal@cm-84.208.175.177.getinternet.no)
- # [21:06] * Joins: francisco_ (3ff5dd20@gateway/web/freenode/ip.63.245.221.32)
- # [21:07] * Quits: raintrap_ (~raintrap_@203.111.224.67) (Remote host closed the connection)
- # [21:07] * Joins: jyasskin (~jyasskin@216.239.45.83)
- # [21:14] * Quits: scor (scor@drupal.org/user/52142/view) (Quit: scor)
- # [21:17] * Quits: eric_carlson (~ericc@17.202.49.94) (Ping timeout: 245 seconds)
- # [21:19] * Joins: satazor (~satazor@114.248.108.93.rev.vodafone.pt)
- # [21:19] * Joins: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de)
- # [21:20] * Quits: newtron (~newtron@199.71.174.203) (Ping timeout: 252 seconds)
- # [21:20] * Joins: tantek (~tantek@173-167-114-230-sfba.hfc.comcastbusiness.net)
- # [21:24] * Quits: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de) (Ping timeout: 252 seconds)
- # [21:24] * Joins: eric_carlson (~ericc@17.246.124.226)
- # [21:28] * Quits: ap (~ap@17.202.44.214) (Ping timeout: 265 seconds)
- # [21:29] * Quits: eric_carlson (~ericc@17.246.124.226) (Ping timeout: 264 seconds)
- # [21:30] * Joins: ap (~ap@17.114.216.168)
- # [21:34] * Joins: platdesign (~platdesig@ip-109-91-169-101.hsi12.unitymediagroup.de)
- # [21:35] * Joins: eric_carlson (~ericc@17.247.143.65)
- # [21:36] * Quits: TallTed (~Thud@63.119.36.36)
- # [21:44] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [21:46] * Quits: thinkxl (~thinkxl@74-95-237-22-Houston.hfc.comcastbusiness.net) (Ping timeout: 246 seconds)
- # [21:49] * Quits: bradleymeck (~bradleyme@24.27.227.0) (Quit: bradleymeck)
- # [21:49] * Quits: satazor (~satazor@114.248.108.93.rev.vodafone.pt) (Remote host closed the connection)
- # [21:50] * Quits: eric_carlson (~ericc@17.247.143.65) (Quit: eric_carlson)
- # [22:02] * Joins: jwalden (~waldo@184.169.41.201)
- # [22:04] * Quits: benwerd (~benwerd@199.87.84.238) (Remote host closed the connection)
- # [22:05] * Quits: Mateon2 (~Mateon1@unaffiliated/mateon1) (Read error: Connection reset by peer)
- # [22:06] * Joins: Mateon1 (~Mateon1@unaffiliated/mateon1)
- # [22:10] * Quits: sicking (~sicking@corp.mtv2.mozilla.com) (Quit: sicking)
- # [22:11] * Joins: benwerd (~benwerd@199.87.84.238)
- # [22:11] * Quits: Goplat (~goplat@reactos/developer/Goplat) (Remote host closed the connection)
- # [22:13] * Joins: bradleymeck (~bradleyme@70.114.246.88)
- # [22:14] * Joins: satazor (~satazor@117.195.115.89.rev.vodafone.pt)
- # [22:15] * Quits: satazor (~satazor@117.195.115.89.rev.vodafone.pt) (Read error: Connection reset by peer)
- # [22:15] * Joins: satazor (~satazor@117.195.115.89.rev.vodafone.pt)
- # [22:21] * heycam|away is now known as heycam
- # [22:22] * Quits: jwalden (~waldo@184.169.41.201) (Quit: ChatZilla 0.9.87-8.1450hg.fc20 [XULRunner 32.0/20140902134853])
- # [22:24] * Quits: jyasskin (~jyasskin@216.239.45.83) (Quit: My computer has gone to sleep. ZZZzzz…)
- # [22:30] * Joins: jyasskin (~jyasskin@216.239.45.83)
- # [22:32] * Krinkle|detached is now known as Krinkle
- # [22:33] * Joins: sicking (~sicking@corp.mtv2.mozilla.com)
- # [22:33] * Quits: karlcow (~karl@nerval.la-grange.net) (Ping timeout: 250 seconds)
- # [22:33] * Quits: terinjokes_ (sid65030@wikinews/Terinjokes)
- # [22:38] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [22:39] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [22:41] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [22:43] * Quits: scor (~scor@drupal.org/user/52142/view) (Client Quit)
- # [22:43] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [22:44] * Quits: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr) (*.net *.split)
- # [22:45] * Quits: bradleymeck (~bradleyme@70.114.246.88) (Quit: bradleymeck)
- # [22:46] * Joins: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr)
- # [22:46] * Joins: bradleymeck (~bradleyme@70.114.246.88)
- # [22:48] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 264 seconds)
- # [22:49] * Quits: tantek (~tantek@173-167-114-230-sfba.hfc.comcastbusiness.net) (Quit: tantek)
- # [22:50] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Read error: Connection reset by peer)
- # [22:50] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [22:51] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [22:52] * Quits: sicking (~sicking@corp.mtv2.mozilla.com) (Quit: sicking)
- # [22:52] * Joins: newtron (~newtron@75-119-235-26.dsl.teksavvy.com)
- # [22:53] * Quits: scor (~scor@drupal.org/user/52142/view) (Client Quit)
- # [22:56] * Quits: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr) (Ping timeout: 276 seconds)
- # [22:59] * Joins: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr)
- # [23:00] * Quits: plutoniix (~plutoniix@node-1cw6.pool-101-108.dynamic.totbb.net) (Quit: จรลี จรลา)
- # [23:01] * Quits: benwerd (~benwerd@199.87.84.238) (Remote host closed the connection)
- # [23:03] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Read error: Connection reset by peer)
- # [23:04] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [23:04] * Quits: jyasskin (~jyasskin@216.239.45.83) (Quit: My computer has gone to sleep. ZZZzzz…)
- # [23:06] * Quits: francisco_ (3ff5dd20@gateway/web/freenode/ip.63.245.221.32) (Ping timeout: 246 seconds)
- # [23:07] * Quits: bradleymeck (~bradleyme@70.114.246.88) (Quit: bradleymeck)
- # [23:10] * Quits: satazor (~satazor@117.195.115.89.rev.vodafone.pt) (Remote host closed the connection)
- # [23:11] * Joins: jyasskin (~jyasskin@216.239.45.83)
- # [23:12] * Quits: Mateon1 (~Mateon1@unaffiliated/mateon1) (Read error: Connection reset by peer)
- # [23:13] * Joins: Mateon2 (~Mateon1@unaffiliated/mateon1)
- # [23:14] * Quits: roc (~chatzilla@121-99-135-185.bng1.tvc.orcon.net.nz) (Remote host closed the connection)
- # [23:14] * Quits: jyasskin (~jyasskin@216.239.45.83) (Client Quit)
- # [23:15] * Quits: Mateon2 (~Mateon1@unaffiliated/mateon1) (Read error: Connection reset by peer)
- # [23:15] * Joins: Mateon1 (~Mateon1@unaffiliated/mateon1)
- # [23:20] * Quits: Maurice` (copyman@unaffiliated/maurice)
- # [23:22] * Joins: benwerd (~benwerd@199.87.84.238)
- # [23:23] * Quits: jernoble (~jernoble@17.202.46.221) (Remote host closed the connection)
- # [23:23] * Quits: benwerd (~benwerd@199.87.84.238) (Remote host closed the connection)
- # [23:24] * Joins: benwerd (~benwerd@199.87.84.238)
- # [23:24] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [23:25] * Quits: zdobersek (~zan@gateway/vpn/privateinternetaccess/zdobersek) (Quit: Leaving.)
- # [23:27] * Joins: jernoble (~jernoble@17.202.46.221)
- # [23:28] * Quits: scor (~scor@drupal.org/user/52142/view) (Client Quit)
- # [23:29] * Quits: SteveF_ (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net) (Ping timeout: 244 seconds)
- # [23:29] * Quits: eBureau (~Bruno@181.164.77.172) (Quit: My iMac has gone to sleep. ZZZzzz…)
- # [23:30] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [23:31] * Quits: benwerd (~benwerd@199.87.84.238) (Remote host closed the connection)
- # [23:32] * Joins: scor (~scor@c-24-2-162-32.hsd1.ma.comcast.net)
- # [23:32] * Quits: scor (~scor@c-24-2-162-32.hsd1.ma.comcast.net) (Changing host)
- # [23:32] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [23:34] * Joins: benwerd (~benwerd@199.87.84.238)
- # [23:35] * Quits: scor (~scor@drupal.org/user/52142/view) (Client Quit)
- # [23:37] * Joins: jernoble_ (~jernoble@17.202.49.155)
- # [23:39] * Quits: frivoal (~frivoal@cm-84.208.175.177.getinternet.no) (Remote host closed the connection)
- # [23:43] * Joins: frivoal (~frivoal@cm-84.208.175.177.getinternet.no)
- # [23:44] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [23:45] * Quits: frivoal (~frivoal@cm-84.208.175.177.getinternet.no) (Remote host closed the connection)
- # [23:46] * Joins: jyasskin (~jyasskin@216.239.45.76)
- # [23:47] * Joins: bholley (~bholley@corp.mtv2.mozilla.com)
- # [23:48] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 256 seconds)
- # [23:48] * Quits: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi) (Ping timeout: 264 seconds)
- # [23:53] * Quits: othermaciej (~mjs@c-71-198-213-78.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [23:54] * Joins: sicking (~sicking@corp.mtv2.mozilla.com)
- # Session Close: Wed Mar 25 00:00:00 2015
Previous day, Next day
Think these logs are useful? Then please donate to show your gratitude (and keep them up, of course). Thanks! — Krijn