Options:
- # Session Start: Tue Feb 26 00:00:00 2013
- # Session Ident: #whatwg
- # [00:00] * Joins: isherman1 (isherman@nat/google/x-hwvimzqwvdddmuni)
- # [00:02] * Quits: isherman (isherman@nat/google/x-kuqmdoflwlqpuuku) (Ping timeout: 240 seconds)
- # [00:03] * Quits: aklein (uid4454@gateway/web/irccloud.com/x-ltoxouihrlnutsmw) (Ping timeout: 256 seconds)
- # [00:03] * Quits: nimbu (~nimbu@199-192-185-201.ip.van.radiant.net) (Quit: Leaving.)
- # [00:04] * Joins: SteveF (~chatzilla@63.133.197.135)
- # [00:05] * Quits: Smylers (~smylers@host86-178-109-32.range86-178.btcentralplus.com) (Quit: Leaving.)
- # [00:09] * Joins: cabanier (~cabanier@192.150.22.55)
- # [00:10] * Joins: tomasf (~tom@85.229.219.68)
- # [00:11] <Hixie> 1.2.3. => [1, 2, 3]
- # [00:11] * Quits: yorick (~yorick@oftn/member/yorick) (Read error: Connection reset by peer)
- # [00:11] <Hixie> .1.2.3 => ?
- # [00:11] <Hixie> [0.1, 2, 3] ?
- # [00:13] <Hixie> similarly, -1-2-3 => [-1, 2, 3]; what should -.1-.2-.3 go to?
- # [00:13] * Quits: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net) (Quit: linclark)
- # [00:13] <Hixie> [-0.1, 2, 3] ? [-0.1, 0.2, 0.3] ?
- # [00:16] * Joins: ^esc (~esc_ape@178.115.249.146.wireless.dyn.drei.com)
- # [00:16] <esprehn_> Which algorithm is this?
- # [00:17] * Quits: weinig (~weinig@17.212.155.63) (Read error: Connection reset by peer)
- # [00:17] <TabAtkins> Hixie: Yes to the first question. The latter to the second question.
- # [00:17] * Joins: weinig (~weinig@17.212.155.63)
- # [00:20] * Quits: jgraham (~jgraham@web91.webfaction.com) (Read error: Operation timed out)
- # [00:20] * Joins: jgraham (~jgraham@web91.webfaction.com)
- # [00:22] <Hixie> TabAtkins: k, i agree
- # [00:22] <Hixie> esprehn_: the parser for table magical sort
- # [00:23] <esprehn_> ah
- # [00:23] <esprehn_> having worked on a large number of business apps, whatever you choose is going to be wrong anyway :)
- # [00:24] * Joins: jamesr_ (jamesr@nat/google/x-zgxgecnnxvdsgusf)
- # [00:25] <esprehn_> inevitably someone will file a bug about a cell in the wrong order, and you'll have to hack it up
- # [00:32] * Joins: scor (~scor@c-98-216-39-127.hsd1.ma.comcast.net)
- # [00:32] * Quits: scor (~scor@c-98-216-39-127.hsd1.ma.comcast.net) (Changing host)
- # [00:32] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [00:34] <Hixie> esprehn_: yeah
- # [00:34] <Hixie> esprehn_: but we can get the basics right at least
- # [00:35] <Hixie> if 1e1 and 1.0e1 are both the same as 10
- # [00:35] <Hixie> what should 1.e1 be?
- # [00:35] <TabAtkins> Ask JS.
- # [00:36] <TabAtkins> Apparently, the same as 1.0e1
- # [00:36] * Quits: garciawebdev (~garciaweb@190.244.95.154) (Remote host closed the connection)
- # [00:36] <TabAtkins> Unfortunately, that's different from CSS, which requires a digit after the ..
- # [00:40] * Quits: vcarbune (~vcarbune@80-218-192-6.dclient.hispeed.ch) (Quit: Leaving)
- # [00:40] * Quits: sicking (~sicking@c-67-180-8-184.hsd1.ca.comcast.net) (Quit: sicking)
- # [00:40] <Hixie> --1--2 => ['-1', '-2'] ?
- # [00:41] <Hixie> ---1---2 => ['-1', '-2'] ?
- # [00:41] <Hixie> no
- # [00:41] <Hixie> [-1, 2] maybe
- # [00:41] <Hixie> but even that, probably not
- # [00:41] <esprehn_> those should just be strings
- # [00:41] * Quits: mattgifford (~mattgiffo@70.102.199.158) (Remote host closed the connection)
- # [00:41] <esprehn_> '--1', '--2'
- # [00:42] <esprehn_> TabAtkins: The next counters spec needs to call the counter name the "name" not the "identifier"
- # [00:42] <Hixie> ---10---2 should clearly sort as greater than ---2---2
- # [00:42] * esprehn_ is getting really tired of typing identifier
- # [00:42] <Hixie> so there's definitely numbers involved
- # [00:42] <Hixie> or maybe i should say, ---1---2 < ---1---10
- # [00:42] <Hixie> since the first number might be arguably negative
- # [00:42] <esprehn_> Hixie: you want credit card sort there
- # [00:42] <Hixie> what is that?
- # [00:42] <esprehn_> those aren't negative, it's an ascii sort
- # [00:43] <esprehn_> sort as if all those dashes were 0's
- # [00:43] <Hixie> why?
- # [00:43] <Hixie> that seems no less weird
- # [00:43] <esprehn_> because when you have dashes interspersed with numbers it's usually an obfuscation of a value
- # [00:44] <esprehn_> or it's a phone number I guess, but not when you have repeated dashes
- # [00:44] <esprehn_> ---1---2 is not < ---1---10 unless it has fewer digits, That's not 10, it's 1 and then 0
- # [00:45] <Hixie> that seems like an equally wild guess to me
- # [00:45] <esprehn_> What's your use case where those are real numbers?
- # [00:45] <esprehn_> I'm talking about the real use case of the many tables I've seen with data like that, not guessing
- # [00:45] <Hixie> urls?
- # [00:45] <esprehn_> credit cards, account numbers, etc.
- # [00:45] <Hixie> i haven't got any use cases with multiple hyphens currently
- # [00:46] <Hixie> do you have an example of such a table i could study?
- # [00:46] <esprehn_> unfortunately not
- # [00:46] <esprehn_> it's not uncommon to show the first digit of some number, and then the last 4 though, or something vaguely like that
- # [00:47] <esprehn_> Consider something like amazon that shows Saved Credit Card: ******1234
- # [00:47] <esprehn_> So then ------10 and ------12
- # [00:47] <Hixie> seems like that would sort fine regardless
- # [00:48] * Quits: ginger1 (~Adium@2401:fa00::b9fe:eefe:aafd:68e) (Quit: Leaving.)
- # [00:49] <esprehn_> Hixie: hmm
- # [00:50] <Hixie> i agree that it means we should sort them as not negative
- # [00:50] <Hixie> but other than that, still seems best to sort numerically
- # [00:51] * Quits: sedovsek (~robert@BSN-143-158-86.dial-up.dsl.siol.net) (Quit: sedovsek)
- # [00:51] * Joins: sicking (~sicking@c-67-180-8-184.hsd1.ca.comcast.net)
- # [00:54] * Quits: othermaciej (~mjs@17.245.104.33) (Quit: othermaciej)
- # [00:54] * Joins: othermaciej (~mjs@17.245.104.33)
- # [00:54] * Quits: othermaciej (~mjs@17.245.104.33) (Client Quit)
- # [00:55] * Joins: othermaciej (~mjs@17.245.104.33)
- # [00:55] <TabAtkins> Hixie: Empty elements after separation are discarded?
- # [00:56] * Quits: othermaciej (~mjs@17.245.104.33) (Client Quit)
- # [00:56] <Hixie> no, it's rather more involved than that
- # [00:56] <Hixie> right now i'm just trying to work out how to take numbers out of strings
- # [00:56] <Hixie> the rest is a separate problem (mostly already solved)
- # [00:57] * Joins: othermaciej (~mjs@17.245.104.33)
- # [00:57] <esprehn_> I might suggest looking at COBOL and ColdFusion's magical sorting and list operations
- # [00:58] <Hixie> will do, thanks
- # [01:01] * Quits: smaug____ (~chatzilla@cs181151161.pp.htv.fi) (Ping timeout: 264 seconds)
- # [01:02] * Quits: decotii (~decotii@hq.croscon.com) (Quit: Leaving)
- # [01:06] * Quits: Badreddin (~Nur@189.193.27.199) (Ping timeout: 276 seconds)
- # [01:10] * Quits: weinig (~weinig@17.212.155.63) (Quit: weinig)
- # [01:10] * Quits: JonathanNeal (~JonathanN@38.122.109.194) (Quit: JonathanNeal)
- # [01:19] * Quits: tomasf (~tom@85.229.219.68) (Quit: tomasf)
- # [01:23] * Quits: ^esc (~esc_ape@178.115.249.146.wireless.dyn.drei.com) (Ping timeout: 248 seconds)
- # [01:24] * Joins: jdaggett (~jdaggett@180.235.6.26)
- # [01:31] * Joins: smaug____ (~chatzilla@212-226-57-39-nat.elisa-mobile.fi)
- # [01:34] * Quits: marcosc (~marcosc@bl7-115-221.dsl.telepac.pt) (Read error: Connection reset by peer)
- # [01:35] * Joins: marcosc (~marcosc@85.240.115.221)
- # [01:37] * Quits: smaug____ (~chatzilla@212-226-57-39-nat.elisa-mobile.fi) (Ping timeout: 246 seconds)
- # [01:43] * Joins: jryans_ (~jryans@office.massrel.com)
- # [01:46] * Quits: jryans (~jryans@office.massrel.com) (Ping timeout: 240 seconds)
- # [01:49] * Quits: jryans_ (~jryans@office.massrel.com) (Quit: Be back later)
- # [01:49] * Joins: necolas (~necolas@8.25.197.24)
- # [01:49] * Quits: bholley (~bholley@nat/mozilla/x-nclvuzfcdecdaudm) (Quit: bholley)
- # [01:49] * Quits: jsbell (jsbell@nat/google/x-hwtckhlzxhijjaxx) (Quit: There's no place like home...)
- # [01:49] * Quits: othermaciej (~mjs@17.245.104.33) (Quit: othermaciej)
- # [01:51] * Quits: sicking (~sicking@c-67-180-8-184.hsd1.ca.comcast.net) (Quit: sicking)
- # [01:52] * Joins: smaug____ (~chatzilla@212-226-64-156-nat.elisa-mobile.fi)
- # [01:52] * Quits: necolas (~necolas@8.25.197.24) (Remote host closed the connection)
- # [01:58] * Joins: othermaciej (~mjs@17.245.104.33)
- # [01:59] * Quits: pablof (~pablof@144.189.31.1) (Quit: ^z)
- # [02:00] * Quits: eresair (~eresair@c-24-5-78-71.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [02:02] * Joins: aklein (uid4454@gateway/web/irccloud.com/x-czvvqizprcnvadom)
- # [02:06] * Joins: eresair (~eresair@c-24-5-78-71.hsd1.ca.comcast.net)
- # [02:06] * Quits: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net) (Remote host closed the connection)
- # [02:07] * Quits: cabanier (~cabanier@192.150.22.55) (Quit: Leaving.)
- # [02:13] * Quits: smaug____ (~chatzilla@212-226-64-156-nat.elisa-mobile.fi) (Ping timeout: 244 seconds)
- # [02:14] * Joins: [[zzz]] (~q@node-9bq.pool-125-25.dynamic.totbb.net)
- # [02:18] * Quits: [[zz]] (~q@node-1a8n.pool-101-109.dynamic.totbb.net) (Ping timeout: 256 seconds)
- # [02:19] * Quits: tantek (~tantek@v-1045.fw1.sfo1.mozilla.net) (Quit: tantek)
- # [02:19] * jernoble is now known as jernoble|afk
- # [02:19] * jernoble|afk is now known as jernoble
- # [02:20] * abstractj|away is now known as abstractj
- # [02:20] * Quits: abstractj (~abstractj@redhat/jboss/abstractj) (Excess Flood)
- # [02:21] * Joins: sicking (~sicking@c-67-180-8-184.hsd1.ca.comcast.net)
- # [02:21] * Joins: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net)
- # [02:21] * Joins: abstractj (~abstractj@redhat/jboss/abstractj)
- # [02:23] * Quits: othermaciej (~mjs@17.245.104.33) (Read error: Connection reset by peer)
- # [02:23] * Joins: othermaciej (~mjs@17.245.104.33)
- # [02:24] * Quits: jamesr_ (jamesr@nat/google/x-zgxgecnnxvdsgusf) (Quit: jamesr_)
- # [02:31] * Quits: othermaciej (~mjs@17.245.104.33) (Quit: othermaciej)
- # [02:34] * Joins: mattgifford (~mattgiffo@67.131.102.78)
- # [02:34] * Joins: stalled (~stalled@unaffiliated/stalled)
- # [02:35] * Joins: Badreddin (~Nur@189.193.27.199)
- # [02:35] * Quits: mattgifford (~mattgiffo@67.131.102.78) (Remote host closed the connection)
- # [02:36] * Joins: othermaciej (~mjs@17.245.104.33)
- # [02:38] * Joins: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net)
- # [02:41] * Quits: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net) (Quit: Leaving...)
- # [02:54] * Quits: KevinMarks (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net) (Quit: The computer fell asleep)
- # [02:54] * Joins: KevinMarks (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net)
- # [02:58] * Joins: jamesr_ (jamesr@nat/google/x-yxtnrkfzrelosgzx)
- # [02:59] * Quits: KevinMarks (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net) (Ping timeout: 255 seconds)
- # [03:01] * Joins: mven (~mven@68.224.15.53)
- # [03:01] * [[zzz]] is now known as [[zz]]
- # [03:02] * Joins: ginger1 (~Adium@2401:fa00::3472:f246:c833:c960)
- # [03:05] * Joins: tantek (~tantek@66-87-0-98.pools.spcsdns.net)
- # [03:06] * Joins: jamesr__ (uid10481@gateway/web/irccloud.com/x-qrfigcnrpfpfgpaz)
- # [03:07] * Quits: ehsan__ (~ehsan@199.255.40.36) (Remote host closed the connection)
- # [03:07] * Krinkle is now known as Krinkle|detached
- # [03:08] * Joins: ehsan (~ehsan@199.255.40.36)
- # [03:12] * Quits: ehsan (~ehsan@199.255.40.36) (Ping timeout: 244 seconds)
- # [03:13] * Quits: ginger1 (~Adium@2401:fa00::3472:f246:c833:c960) (Ping timeout: 264 seconds)
- # [03:16] * Joins: ginger1 (~Adium@2401:fa00::3472:f246:c833:c960)
- # [03:17] * Joins: cabanier (~cabanier@c-98-237-137-173.hsd1.wa.comcast.net)
- # [03:22] * Quits: jsoncorwin (~textual@c-50-131-117-90.hsd1.ca.comcast.net) (Quit: Computer has gone to sleep.)
- # [03:24] * Quits: cabanier (~cabanier@c-98-237-137-173.hsd1.wa.comcast.net) (Quit: Leaving.)
- # [03:27] * Joins: ehsan (~ehsan@rrcs-70-62-98-146.midsouth.biz.rr.com)
- # [03:27] * Quits: aklein (uid4454@gateway/web/irccloud.com/x-czvvqizprcnvadom)
- # [03:30] * Quits: jwalden (~waldo@2620:101:8003:200:224:d7ff:fef0:8d90) (Quit: ChatZilla 0.9.87-6.1450hg.fc18 [XULRunner 19.0/20130218162742])
- # [03:36] * Joins: jryans (~jryans@cpe-70-113-92-118.austin.res.rr.com)
- # [03:38] * Quits: jamesr_ (jamesr@nat/google/x-yxtnrkfzrelosgzx) (Quit: jamesr_)
- # [03:40] * Joins: KevinMarks (~KevinMark@sccc-66-78-236-243.smartcity.com)
- # [03:41] * Quits: othermaciej (~mjs@17.245.104.33) (Quit: othermaciej)
- # [04:01] * Quits: sicking (~sicking@c-67-180-8-184.hsd1.ca.comcast.net) (Quit: sicking)
- # [04:07] * Joins: jamesr_ (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net)
- # [04:13] * Quits: jamesr_ (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net) (Quit: jamesr_)
- # [04:18] * Quits: tantek (~tantek@66-87-0-98.pools.spcsdns.net) (Quit: tantek)
- # [04:25] * Quits: Zauberfisch (~Zauberfis@2a01:4f8:100:73c3::3) (Read error: Connection reset by peer)
- # [04:26] * Joins: Zauberfisch (~Zauberfis@2a01:4f8:100:73c3::3)
- # [04:27] * Quits: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [04:30] * Joins: svl (~me@202.68.83.170)
- # [04:30] <karlcow> MikeSmith: I guess it is not Anne's version https://dvcs.w3.org/hg/url/raw-file/tip/Overview.html
- # [04:31] <karlcow> ah found http://url.spec.whatwg.org/
- # [04:36] * Quits: KevinMarks (~KevinMark@sccc-66-78-236-243.smartcity.com) (Quit: The computer fell asleep)
- # [04:36] * Joins: KevinMarks (~KevinMark@sccc-66-78-236-243.smartcity.com)
- # [04:37] * Quits: Badreddin (~Nur@189.193.27.199) (Ping timeout: 276 seconds)
- # [04:38] * Joins: jacobolus (~jacobolus@2602:306:37fe:67f0:225:ff:fe4e:996d)
- # [04:40] * Quits: KevinMarks (~KevinMark@sccc-66-78-236-243.smartcity.com) (Ping timeout: 244 seconds)
- # [04:48] * Joins: j_wright (~jwright@ip70-173-176-189.lv.lv.cox.net)
- # [04:48] * Quits: OnlyMax (~OnlyMax@187-126-25-153.user.veloxzone.com.br)
- # [04:50] * Quits: scor (~scor@drupal.org/user/52142/view) (Quit: scor)
- # [04:52] * Joins: Badreddin (~Nur@189.193.98.57)
- # [04:52] * Quits: jacobolus (~jacobolus@2602:306:37fe:67f0:225:ff:fe4e:996d) (Remote host closed the connection)
- # [04:55] * Quits: ehsan (~ehsan@rrcs-70-62-98-146.midsouth.biz.rr.com) (Remote host closed the connection)
- # [04:55] * Joins: jarek (~jarek@unaffiliated/jarek)
- # [04:59] * Joins: cabanier (~cabanier@c-98-237-137-173.hsd1.wa.comcast.net)
- # [05:02] * Quits: Philip` (~philip@compass.zaynar.co.uk) (Read error: Operation timed out)
- # [05:02] * Joins: Philip` (~philip@92.243.11.39)
- # [05:04] * Joins: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net)
- # [05:07] * Quits: Badreddin (~Nur@189.193.98.57) (Remote host closed the connection)
- # [05:09] * Joins: JonathanNeal (~JonathanN@cpe-142-11-82-156.socal.rr.com)
- # [05:24] * Joins: SimonSapin (~simon@89.2.144.22)
- # [05:25] * Joins: jacobolus (~jacobolus@99-127-230-127.lightspeed.sntcca.sbcglobal.net)
- # [05:28] * Quits: SimonSapin (~simon@89.2.144.22) (Ping timeout: 245 seconds)
- # [05:29] * Joins: SimonSapin (~simon@ip-22.net-89-2-144.rev.numericable.fr)
- # [05:31] * Quits: ginger1 (~Adium@2401:fa00::3472:f246:c833:c960) (Quit: Leaving.)
- # [05:32] * Quits: nessy (silviapf@nat/google/x-besxypgvucllpqil) (Quit: Leaving.)
- # [05:39] * Joins: jamesr_ (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net)
- # [05:39] * Joins: jsoncorwin (~textual@c-98-210-130-242.hsd1.ca.comcast.net)
- # [05:47] * Quits: j_wright (~jwright@ip70-173-176-189.lv.lv.cox.net) (Quit: [A] kill what you want me to, take what's left and eat it)
- # [05:47] * Joins: dgrogan (dgrogan@nat/google/x-aadhahrveeiohbqp)
- # [05:48] * Quits: jamesr_ (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net) (Quit: jamesr_)
- # [05:48] * Quits: JohnAlbin (~JohnAlbin@114-36-36-23.dynamic.hinet.net) (Ping timeout: 255 seconds)
- # [05:59] <Hixie> what should 1.2a3.4a5.6 be treated like?
- # [06:00] <Hixie> 1,2,3,4,5,6 and some strings? 1.2,3.4,5.6 and some strings? 1.2,3,4,5,6 and some strings?
- # [06:01] * Quits: lokling (~quassel@quassel.woboq.de) (Remote host closed the connection)
- # [06:13] * Joins: JohnAlbin (~JohnAlbin@114-36-36-23.dynamic.hinet.net)
- # [06:21] * Quits: svl (~me@202.68.83.170) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [06:21] * Quits: JohnAlbin (~JohnAlbin@114-36-36-23.dynamic.hinet.net) (Ping timeout: 248 seconds)
- # [06:34] * Joins: esprehn__ (~esprehn@207.198.105.20)
- # [06:39] * Joins: JohnAlbin (~JohnAlbin@114-36-36-23.dynamic.hinet.net)
- # [06:39] * Quits: jryans (~jryans@cpe-70-113-92-118.austin.res.rr.com) (Quit: Be back later)
- # [06:40] * Quits: rniwa (~rniwa@17.212.154.114) (Quit: rniwa)
- # [06:42] * Joins: lokling (~quassel@quassel.woboq.de)
- # [06:48] * Quits: cabanier (~cabanier@c-98-237-137-173.hsd1.wa.comcast.net) (Quit: Leaving.)
- # [06:52] * Quits: esprehn__ (~esprehn@207.198.105.20) (Quit: esprehn__)
- # [06:52] * Joins: esprehn__ (~esprehn@207.198.105.20)
- # [06:52] * Quits: esprehn__ (~esprehn@207.198.105.20) (Client Quit)
- # [06:55] * Joins: marcosc_ (~marcosc@bl11-99-228.dsl.telepac.pt)
- # [06:58] * Quits: marcosc (~marcosc@85.240.115.221) (Ping timeout: 245 seconds)
- # [07:04] * Joins: plutoniix (~plutoniix@ppp-110-168-3-240.revip5.asianet.co.th)
- # [07:10] * Quits: hendry (~hendry@sg.webconverger.com) (Ping timeout: 252 seconds)
- # [07:26] * Joins: jamesr_ (~jamesr@173.164.251.190)
- # [07:34] * Quits: jacobolus (~jacobolus@99-127-230-127.lightspeed.sntcca.sbcglobal.net) (Remote host closed the connection)
- # [07:40] * Quits: jarek (~jarek@unaffiliated/jarek) (Quit: jarek)
- # [07:42] * Quits: SteveF (~chatzilla@63.133.197.135) (Quit: ChatZilla 0.9.90 [Firefox 22.0a1/20130225031141])
- # [07:45] * Joins: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net)
- # [07:46] * Quits: TabAtkins (tabatkins@nat/google/x-pupuuqiegxvxbfdp) (Ping timeout: 255 seconds)
- # [07:47] * Joins: TabAtkins (~tabatkins@216.239.45.72)
- # [07:55] * Joins: Smylers (~smylers@host86-178-109-32.range86-178.btcentralplus.com)
- # [08:00] * abstractj is now known as abstractj|away
- # [08:06] <MikeSmith> Hixie: I guess 1.2,3.4,5.6 would seem like the most intuitive
- # [08:06] <MikeSmith> unsurprising
- # [08:17] * Quits: isherman1 (isherman@nat/google/x-hwvimzqwvdddmuni) (Read error: Connection reset by peer)
- # [08:18] * Joins: isherman (isherman@nat/google/x-hzzvegrkbswoacmh)
- # [08:29] * Joins: svl (~me@202.68.83.170)
- # [08:30] * Quits: Smylers (~smylers@host86-178-109-32.range86-178.btcentralplus.com) (Quit: Leaving.)
- # [08:32] * Joins: jacobolus (~jacobolus@2600:1010:b103:dde:225:ff:fe4e:996d)
- # [08:37] * Quits: eresair (~eresair@c-24-5-78-71.hsd1.ca.comcast.net) (*.net *.split)
- # [08:37] * Quits: birtles (~chatzilla@rtr.mozilla.or.jp) (*.net *.split)
- # [08:37] * Quits: tomaw (tom@freenode/staff/tomaw) (*.net *.split)
- # [08:37] * Quits: slightlyoff (uid1768@gateway/web/irccloud.com/x-yburhzjzfupjbeoi) (*.net *.split)
- # [08:37] * Quits: asmodai (asmodai@freebsd/developer/asmodai) (*.net *.split)
- # [08:37] * Quits: gavinc (~gavin@50.0.77.3) (*.net *.split)
- # [08:37] * Quits: eric_carlson (~eric@17.212.152.104) (*.net *.split)
- # [08:37] * Quits: scottjehl______ (uid3055@gateway/web/irccloud.com/x-otremgxdlhvaiyak) (*.net *.split)
- # [08:37] * Quits: astearns (~astearns@192.150.22.5) (*.net *.split)
- # [08:37] * Quits: jahman (~woops@129.175.204.73) (*.net *.split)
- # [08:37] * Quits: badfw2 (~v@220.78.68.4) (*.net *.split)
- # [08:37] * Quits: paul_irish (~paul_iris@ve.hsh6wjwx.vesrv.com) (*.net *.split)
- # [08:37] * Quits: sangwhan (~sangwhan@1.234.23.206) (*.net *.split)
- # [08:37] * Quits: jacobolus (~jacobolus@2600:1010:b103:dde:225:ff:fe4e:996d) (*.net *.split)
- # [08:37] * Quits: Zauberfisch (~Zauberfis@2a01:4f8:100:73c3::3) (*.net *.split)
- # [08:37] * Quits: toddmparker___ (uid3054@gateway/web/irccloud.com/x-pgwerhcjdomzxtip) (*.net *.split)
- # [08:37] * Quits: globbot (~logbot@lump.glob.com.au) (*.net *.split)
- # [08:37] * Quits: Hixie (~ianh@178.255.149.100) (*.net *.split)
- # [08:37] * Quits: svl (~me@202.68.83.170) (*.net *.split)
- # [08:37] * Quits: marcosc_ (~marcosc@bl11-99-228.dsl.telepac.pt) (*.net *.split)
- # [08:37] * Quits: dgrogan (dgrogan@nat/google/x-aadhahrveeiohbqp) (*.net *.split)
- # [08:37] * Quits: Adawerk (~ada@169.241.49.57) (*.net *.split)
- # [08:37] * Quits: moo-_- (miohtama@lakka.kapsi.fi) (*.net *.split)
- # [08:37] * Quits: hasather (~hasather@office.oslo.opera.com) (*.net *.split)
- # [08:37] * Quits: rwaldron (rwaldron@gateway/shell/jquery.com/x-krcltjycefmjtmjk) (*.net *.split)
- # [08:37] * Quits: broquaint (~dbrook@static.94.217.47.78.clients.your-server.de) (*.net *.split)
- # [08:37] * Quits: Garbee (~Garbee@lb1.cluster.grephix.nl) (*.net *.split)
- # [08:37] * Quits: Krinkle|detached (~Krinkle@wikimedia/Krinkle) (*.net *.split)
- # [08:37] * Quits: edsu (~edsu@pdpc/supporter/active/edsu) (*.net *.split)
- # [08:37] * Quits: JohnAlbin (~JohnAlbin@114-36-36-23.dynamic.hinet.net) (*.net *.split)
- # [08:37] * Quits: pims (~woops@ip-103.net-82-216-85.rev.numericable.fr) (*.net *.split)
- # [08:37] * Quits: ivan`` (~ivan@unaffiliated/ivan/x-000001) (*.net *.split)
- # [08:37] * Quits: boaz (~boaz@li326-230.members.linode.com) (*.net *.split)
- # [08:37] * Quits: MikeSmith (~mike@sideshowbarker.net) (*.net *.split)
- # [08:37] * Quits: doublec (~doublec@unaffiliated/doublec) (*.net *.split)
- # [08:37] * Quits: ajt_ (~ajt@li181-64.members.linode.com) (*.net *.split)
- # [08:37] * Quits: isherman (isherman@nat/google/x-hzzvegrkbswoacmh) (*.net *.split)
- # [08:37] * Quits: SimonSapin (~simon@ip-22.net-89-2-144.rev.numericable.fr) (*.net *.split)
- # [08:37] * Quits: Jasper (magcius@unaffiliated/magcius) (*.net *.split)
- # [08:37] * Quits: beowulf (uid116@pdpc/supporter/professional/beowulf) (*.net *.split)
- # [08:37] * Quits: cfq (~cfq@static.85-10-200-244.clients.your-server.de) (*.net *.split)
- # [08:37] * Quits: hsivonen (~hsivonen@srv-e205.esp.mediateam.fi) (*.net *.split)
- # [08:37] * Quits: heath (quassel@2600:3c02::f03c:91ff:feae:6e5b) (*.net *.split)
- # [08:37] * Quits: jamesr (jamesr@nat/google/x-mgwkoyyhtvkongpj) (*.net *.split)
- # [08:37] * Quits: beverloo (beverloo@nat/google/x-wskvyiwjhlnesuwt) (*.net *.split)
- # [08:37] * Quits: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net) (*.net *.split)
- # [08:37] * Quits: jernoble (~jernoble@17.212.152.13) (*.net *.split)
- # [08:37] * Quits: jmason (~jmason@174.137.103.143) (*.net *.split)
- # [08:37] * Quits: bacilla (~karolis@unaffiliated/velkam) (*.net *.split)
- # [08:37] * Quits: cwilso (uid10206@gateway/web/irccloud.com/x-oknpsanbbodztbus) (*.net *.split)
- # [08:37] * Quits: bzed (~bzed@devel.recluse.de) (*.net *.split)
- # [08:37] * Quits: NimeshNeema (uid2689@gateway/web/irccloud.com/x-stkdilznmlaktkkx) (*.net *.split)
- # [08:37] * Quits: nunnun (~hiro@2001:200:1c0:3624:20c:29ff:fe02:11c8) (*.net *.split)
- # [08:37] * Quits: muyyatin (~muyyatin@108-75-14-162.lightspeed.sndgca.sbcglobal.net) (*.net *.split)
- # [08:37] * Quits: TabAtkins (~tabatkins@216.239.45.72) (*.net *.split)
- # [08:37] * Quits: plutoniix (~plutoniix@ppp-110-168-3-240.revip5.asianet.co.th) (*.net *.split)
- # [08:37] * Quits: Benvie (~brandon@cpe-174-097-159-175.nc.res.rr.com) (*.net *.split)
- # [08:37] * Quits: Lachy (~Lachy@cm-84.215.19.229.getinternet.no) (*.net *.split)
- # [08:37] * Quits: abarth (uid5294@gateway/web/irccloud.com/x-yrlakaeebaejihrt) (*.net *.split)
- # [08:37] * Quits: ojan_away (uid5519@gateway/web/irccloud.com/x-uhvxffjvgaoqqpsu) (*.net *.split)
- # [08:37] * Quits: fishd (darin@nat/google/x-jlpscwwfdbabypit) (*.net *.split)
- # [08:37] * Quits: jochen__ (jochen@nat/google/x-clzievpylbypijzn) (*.net *.split)
- # [08:37] * Quits: Dantman (~dantman@mediawiki/dantman) (*.net *.split)
- # [08:37] * Quits: brainproxy (~brainprox@pdpc/supporter/gold/brainproxy) (*.net *.split)
- # [08:37] * Quits: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com) (*.net *.split)
- # [08:37] * Quits: esprehn_ (esprehn@nat/google/x-hurblhfowgvsvklb) (*.net *.split)
- # [08:37] * Quits: skaegi (uid5971@gateway/web/irccloud.com/x-abrqbvbsddpkvqqq) (*.net *.split)
- # [08:37] * Quits: webguynow (~webguynow@c-24-1-222-204.hsd1.il.comcast.net) (*.net *.split)
- # [08:37] * Quits: rcombs (~rcombs@rodgercombs.tk) (*.net *.split)
- # [08:37] * Quits: dgorbik (~dgorbik@2620:149:4:304:19fb:7930:e0e4:26aa) (*.net *.split)
- # [08:37] * Quits: kochi (~kochi@2401:fa00:4:1004:26be:5ff:fe03:db82) (*.net *.split)
- # [08:37] * Quits: ahf (ahf@irssi/staff/ahf) (*.net *.split)
- # [08:37] * Quits: nw (nw@kapsi.fi) (*.net *.split)
- # [08:37] * Quits: Kingdutch (~kingdutch@176.58.96.4) (*.net *.split)
- # [08:37] * Quits: mbatle (mbatle@pasanda.collabora.co.uk) (*.net *.split)
- # [08:37] * Quits: gavin_ (~gavin@76.14.87.162) (*.net *.split)
- # [08:37] * Quits: Scorchin (uid1242@gateway/web/irccloud.com/x-ovrckipvcwjmmeen) (*.net *.split)
- # [08:37] * Quits: othree_ (~othree@li379-129.members.linode.com) (*.net *.split)
- # [08:37] * Quits: jtcranmer (~jcranmer@ltsp2.csl.tjhsst.edu) (*.net *.split)
- # [08:37] * Quits: remysharp (uid4345@gateway/web/irccloud.com/x-rkfargwzyiprtruj) (*.net *.split)
- # [08:37] * Quits: gnarf (~gnarf@unaffiliated/gnarf) (*.net *.split)
- # [08:37] * Quits: jgraham (~jgraham@web91.webfaction.com) (*.net *.split)
- # [08:37] * Quits: boblet (uid1921@gateway/web/irccloud.com/x-arjxrjvkonchjgfv) (*.net *.split)
- # [08:37] * Quits: hihuz (~sb@78.141.71.86.rev.sfr.net) (*.net *.split)
- # [08:37] * Quits: Dashiva (Dashiva@wikia/Dashiva) (*.net *.split)
- # [08:37] * Quits: yoshiki (yoshiki@nat/google/x-pwayunwglgbagwvs) (*.net *.split)
- # [08:37] * Quits: nephyrin (~neph@nat/mozilla/x-yxbrkeeoubhonexn) (*.net *.split)
- # [08:37] * Quits: sindresorhus (~sindresor@ec2-23-20-153-157.compute-1.amazonaws.com) (*.net *.split)
- # [08:37] * Quits: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley) (*.net *.split)
- # [08:37] * Quits: BruNeX (uid4730@gateway/web/irccloud.com/x-vzcjexzisexryqht) (*.net *.split)
- # [08:37] * Quits: matijsb_ (uid2278@gateway/web/irccloud.com/x-nerzlbbnfffymlgw) (*.net *.split)
- # [08:37] * Quits: ryanseddon (uid1832@gateway/web/irccloud.com/x-lykdhygkfkpnsslq) (*.net *.split)
- # [08:37] * Quits: ricea (ricea@nat/google/x-xlyrclxrvzwrmjhe) (*.net *.split)
- # [08:37] * Quits: eighty4 (~eighty4@unaffiliated/eighty4) (*.net *.split)
- # [08:37] * Quits: Raymondo (uid10176@gateway/web/irccloud.com/x-mnzvbsathymjvweo) (*.net *.split)
- # [08:37] * Quits: jamesr_ (~jamesr@173.164.251.190) (*.net *.split)
- # [08:37] * Quits: jamesr__ (uid10481@gateway/web/irccloud.com/x-qrfigcnrpfpfgpaz) (*.net *.split)
- # [08:37] * Quits: mven (~mven@68.224.15.53) (*.net *.split)
- # [08:37] * Quits: abstractj|away (~abstractj@redhat/jboss/abstractj) (*.net *.split)
- # [08:37] * Quits: jdaggett (~jdaggett@180.235.6.26) (*.net *.split)
- # [08:37] * Quits: viduthalai1947 (uid5404@gateway/web/irccloud.com/x-pxavgbzxaipshavh) (*.net *.split)
- # [08:37] * Quits: falken (falken@nat/google/x-abrbkniiepbxixhr) (*.net *.split)
- # [08:37] * Quits: reggna (~reggna@46.137.95.132) (*.net *.split)
- # [08:37] * Quits: beverloo- (~peter@85.17.3.181) (*.net *.split)
- # [08:37] * Quits: inimino (~inimino@oftn/board/inimino) (*.net *.split)
- # [08:37] * Quits: gsnedders (~gsnedders@mail.gsnedders.com) (*.net *.split)
- # [08:37] * Quits: jsoncorwin (~textual@c-98-210-130-242.hsd1.ca.comcast.net) (*.net *.split)
- # [08:37] * Quits: JesperHansen (~JesperHan@0x5b90c2f0.dhcp.fiberflex.dk) (*.net *.split)
- # [08:37] * Quits: karlcow (~karl@nerval.la-grange.net) (*.net *.split)
- # [08:37] * Quits: nonge_ (~nonge@p5082A5B7.dip.t-dialin.net) (*.net *.split)
- # [08:37] * Quits: benschwarz (uid2121@gateway/web/irccloud.com/x-ehepmzrhshppbqtn) (*.net *.split)
- # [08:37] * Quits: mh0 (mh0@unaffiliated/mh0) (*.net *.split)
- # [08:37] * Quits: arv (uid4269@gateway/web/irccloud.com/x-bcoyvprsmzksbatb) (*.net *.split)
- # [08:37] * Quits: chee (~chee@fsf/member/chee) (*.net *.split)
- # [08:37] * Quits: payman (~payman@static-212-247-211-195.cust.tele2.se) (*.net *.split)
- # [08:37] * Quits: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net) (*.net *.split)
- # [08:37] * Quits: espadrine (~thaddee_t@85-218-9-225.dclient.lsne.ch) (*.net *.split)
- # [08:37] * Quits: lilmonkey (~colin@pdpc/supporter/professional/riven) (*.net *.split)
- # [08:37] * Quits: kinetik (~kinetik@121.99.36.162) (*.net *.split)
- # [08:37] * Quits: webben (~benjamin@173-203-84-17.static.cloud-ips.com) (*.net *.split)
- # [08:37] * Quits: jayne (~jayne@freenode/staff/jayne) (*.net *.split)
- # [08:37] * Quits: ShaneHud1on (~sh548@raptor.ukc.ac.uk) (*.net *.split)
- # [08:37] * Quits: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net) (*.net *.split)
- # [08:37] * Quits: Philip` (~philip@92.243.11.39) (*.net *.split)
- # [08:37] * Quits: [[zz]] (~q@node-9bq.pool-125-25.dynamic.totbb.net) (*.net *.split)
- # [08:37] * Quits: gavin (~gavin@firefox/developer/gavin) (*.net *.split)
- # [08:37] * Quits: timeless (uid4015@firefox/developer/timeless) (*.net *.split)
- # [08:37] * Quits: Martijnc (~Martijn@is-aweso.me) (*.net *.split)
- # [08:37] * Quits: kborchers (~kborchers@unaffiliated/kborchers) (*.net *.split)
- # [08:37] * Quits: bretolius (~boot@ks393582.kimsufi.com) (*.net *.split)
- # [08:37] * Quits: manu-db (~msporny@216.252.204.51) (*.net *.split)
- # [08:37] * Quits: Phae (uid455@gateway/web/irccloud.com/x-sylhxcajulvhdkgx) (*.net *.split)
- # [08:37] * Quits: toyoshiAw (~toyoshim@yuri.twintail.org) (*.net *.split)
- # [08:37] * Quits: scheib (uid4467@gateway/web/irccloud.com/x-ueybdytzbfoaayhb) (*.net *.split)
- # [08:37] * Quits: Somatt_wrk (~somattwrk@darkstar2.fullsix.com) (*.net *.split)
- # [08:37] * Quits: bentruyman (~bentruyma@li159-104.members.linode.com) (*.net *.split)
- # [08:37] * Quits: carlos_antonio (~benway@unaffiliated/disusered) (*.net *.split)
- # [08:37] * Quits: rafaelw___ (uid4459@gateway/web/irccloud.com/x-hlluxqudtpwiarft) (*.net *.split)
- # [08:37] * Quits: jmb (~jmb@mail.parsifal.org.uk) (*.net *.split)
- # [08:37] * Quits: lokling (~quassel@quassel.woboq.de) (*.net *.split)
- # [08:37] * Quits: matjas (uid2247@gateway/web/irccloud.com/x-kwloybmykeirzwof) (*.net *.split)
- # [08:37] * Quits: hober (~ted@unaffiliated/hober) (*.net *.split)
- # [08:37] * Quits: malcolmva (~malcolmva@c-67-180-203-233.hsd1.ca.comcast.net) (*.net *.split)
- # [08:37] * Quits: wilhelm (~wilhelm@178.255.149.100) (*.net *.split)
- # [08:37] * Quits: Somatt (famic@hidden.dns.ug) (*.net *.split)
- # [08:37] * Quits: scott_gonzalez (~gonzasi0@205.186.165.147) (*.net *.split)
- # [08:37] * Quits: kbrosnan (~kbrosnan@firefox/community/qa/kbrosnan) (*.net *.split)
- # [08:37] * Quits: JonathanNeal (~JonathanN@cpe-142-11-82-156.socal.rr.com) (*.net *.split)
- # [08:37] * Quits: ukai (ukai@nat/google/x-ghbvwvjapwcdsbse) (*.net *.split)
- # [08:37] * Quits: wycats__ (uid79@gateway/web/irccloud.com/x-lyttomdrqroutsrn) (*.net *.split)
- # [08:37] * Quits: nielsle (~nielsle@3239149-cl69.boa.fiberby.dk) (*.net *.split)
- # [08:37] * Quits: romainhuet (uid2533@gateway/web/irccloud.com/x-vqnvteftybsyskgk) (*.net *.split)
- # [08:37] * Quits: ryuone_ (~ryuone@133.242.16.101) (*.net *.split)
- # [08:37] * Quits: Yudai___ (~Yudai@nttkyo385038.tkyo.nt.ngn2.ppp.infoweb.ne.jp) (*.net *.split)
- # [08:37] * Quits: Obvious (tachikoma@188.226.74.2) (*.net *.split)
- # [08:37] * Quits: Workshiva (~Dashiva@74.125.121.65) (*.net *.split)
- # [08:37] * Quits: krijn_ (uid2319@gateway/web/irccloud.com/x-iyulsybqexnafmhr) (*.net *.split)
- # [08:37] * Quits: WesleyL (~Wesley@static.43.95.46.78.clients.your-server.de) (*.net *.split)
- # [08:37] * Quits: Rubennn (~Rubennn@apher.gewooniets.nl) (*.net *.split)
- # [08:37] * Quits: dglazkov (uid4270@gateway/web/irccloud.com/x-oqceisupxgndxwiw) (*.net *.split)
- # [08:37] * Quits: zewt (~foo@ec2-50-17-220-142.compute-1.amazonaws.com) (*.net *.split)
- # [08:37] * Quits: rillian (~giles@mf4-xiph.osuosl.org) (*.net *.split)
- # [08:37] * Quits: odinho (odinho@dalvik.ping.uio.no) (*.net *.split)
- # [08:37] * Quits: stalled (~stalled@unaffiliated/stalled) (*.net *.split)
- # [08:37] * Quits: mpt (~mpt@canonical/mpt) (*.net *.split)
- # [08:37] * Quits: twisted` (uid6794@gateway/web/irccloud.com/x-xzlcrvgtmxuityzz) (*.net *.split)
- # [08:37] * Quits: asdf` (asdf@bigfr.klupek.org) (*.net *.split)
- # [08:37] * Quits: riddle (riddle@us.yunix.net) (*.net *.split)
- # [08:37] * Quits: Jedi_ (~Jedi@jedi.org) (*.net *.split)
- # [08:37] * Quits: manu1 (~chatzilla@pool-96-240-173-62.ronkva.east.verizon.net) (*.net *.split)
- # [08:37] * Quits: mounir (~mounir@oldworld.fr) (*.net *.split)
- # [08:37] * Quits: akamike (~uid5089@gateway/web/irccloud.com/x-apiqgnvvmmytkrje) (*.net *.split)
- # [08:37] * Quits: sawrubh (uid6719@gateway/web/irccloud.com/x-sxgrnmvugeqhryfw) (*.net *.split)
- # [08:37] * Quits: tndrH (~Rob@cpc4-seac20-2-0-cust858.7-2.cable.virginmedia.com) (*.net *.split)
- # [08:37] * Quits: ajpiano (~ajpiano@li98-57.members.linode.com) (*.net *.split)
- # [08:37] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (Max SendQ exceeded)
- # [08:38] * Quits: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (Ping timeout: 256 seconds)
- # [08:49] * Joins: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net)
- # [08:49] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [08:49] * Joins: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net)
- # [08:49] * Joins: nessy (~silviapf@124.149.71.84)
- # [08:49] * Joins: dbaron (~dbaron@50-0-248-88.dsl.dynamic.sonic.net)
- # [08:49] * Joins: SteveF (~chatzilla@63.133.197.135)
- # [08:49] * Joins: svl (~me@202.68.83.170)
- # [08:49] * Joins: isherman (isherman@nat/google/x-hzzvegrkbswoacmh)
- # [08:49] * Joins: TabAtkins (~tabatkins@216.239.45.72)
- # [08:49] * Joins: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net)
- # [08:49] * Joins: jamesr_ (~jamesr@173.164.251.190)
- # [08:49] * Joins: plutoniix (~plutoniix@ppp-110-168-3-240.revip5.asianet.co.th)
- # [08:49] * Joins: marcosc_ (~marcosc@bl11-99-228.dsl.telepac.pt)
- # [08:49] * Joins: lokling (~quassel@quassel.woboq.de)
- # [08:49] * Joins: JohnAlbin (~JohnAlbin@114-36-36-23.dynamic.hinet.net)
- # [08:49] * Joins: dgrogan (dgrogan@nat/google/x-aadhahrveeiohbqp)
- # [08:49] * Joins: jsoncorwin (~textual@c-98-210-130-242.hsd1.ca.comcast.net)
- # [08:49] * Joins: JonathanNeal (~JonathanN@cpe-142-11-82-156.socal.rr.com)
- # [08:49] * Joins: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net)
- # [08:49] * Joins: Philip` (~philip@92.243.11.39)
- # [08:49] * Joins: Zauberfisch (~Zauberfis@2a01:4f8:100:73c3::3)
- # [08:49] * Joins: jamesr__ (uid10481@gateway/web/irccloud.com/x-qrfigcnrpfpfgpaz)
- # [08:49] * Joins: mven (~mven@68.224.15.53)
- # [08:49] * Joins: stalled (~stalled@unaffiliated/stalled)
- # [08:49] * Joins: abstractj|away (~abstractj@redhat/jboss/abstractj)
- # [08:49] * Joins: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net)
- # [08:49] * Joins: [[zz]] (~q@node-9bq.pool-125-25.dynamic.totbb.net)
- # [08:49] * Joins: eresair (~eresair@c-24-5-78-71.hsd1.ca.comcast.net)
- # [08:49] * Joins: jdaggett (~jdaggett@180.235.6.26)
- # [08:49] * Joins: jgraham (~jgraham@web91.webfaction.com)
- # [08:49] * Joins: birtles (~chatzilla@rtr.mozilla.or.jp)
- # [08:49] * Joins: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com)
- # [08:49] * Joins: jernoble (~jernoble@17.212.152.13)
- # [08:49] * Joins: esprehn_ (esprehn@nat/google/x-hurblhfowgvsvklb)
- # [08:49] * Joins: skaegi (uid5971@gateway/web/irccloud.com/x-abrqbvbsddpkvqqq)
- # [08:49] * Joins: Adawerk (~ada@169.241.49.57)
- # [08:49] * Joins: Benvie (~brandon@cpe-174-097-159-175.nc.res.rr.com)
- # [08:49] * Joins: JesperHansen (~JesperHan@0x5b90c2f0.dhcp.fiberflex.dk)
- # [08:49] * Joins: jmason (~jmason@174.137.103.143)
- # [08:49] * Joins: gavinc (~gavin@50.0.77.3)
- # [08:49] * Joins: espadrine (~thaddee_t@85-218-9-225.dclient.lsne.ch)
- # [08:49] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [08:49] * Joins: eric_carlson (~eric@17.212.152.104)
- # [08:49] * Joins: webguynow (~webguynow@c-24-1-222-204.hsd1.il.comcast.net)
- # [08:49] * Joins: mbatle (mbatle@pasanda.collabora.co.uk)
- # [08:49] * Joins: nonge_ (~nonge@p5082A5B7.dip.t-dialin.net)
- # [08:49] * Joins: ukai (ukai@nat/google/x-ghbvwvjapwcdsbse)
- # [08:49] * Joins: benschwarz (uid2121@gateway/web/irccloud.com/x-ehepmzrhshppbqtn)
- # [08:49] * Joins: boblet (uid1921@gateway/web/irccloud.com/x-arjxrjvkonchjgfv)
- # [08:49] * Joins: matjas (uid2247@gateway/web/irccloud.com/x-kwloybmykeirzwof)
- # [08:49] * Joins: toddmparker___ (uid3054@gateway/web/irccloud.com/x-pgwerhcjdomzxtip)
- # [08:49] * Joins: Raymondo (uid10176@gateway/web/irccloud.com/x-mnzvbsathymjvweo)
- # [08:49] * Joins: wycats__ (uid79@gateway/web/irccloud.com/x-lyttomdrqroutsrn)
- # [08:49] * Joins: scottjehl______ (uid3055@gateway/web/irccloud.com/x-otremgxdlhvaiyak)
- # [08:49] * Joins: lilmonkey (~colin@pdpc/supporter/professional/riven)
- # [08:49] * Joins: hihuz (~sb@78.141.71.86.rev.sfr.net)
- # [08:49] * Joins: mh0 (mh0@unaffiliated/mh0)
- # [08:49] * Joins: manu1 (~chatzilla@pool-96-240-173-62.ronkva.east.verizon.net)
- # [08:49] * Joins: gavin_ (~gavin@76.14.87.162)
- # [08:49] * Joins: nielsle (~nielsle@3239149-cl69.boa.fiberby.dk)
- # [08:49] * Joins: rcombs (~rcombs@rodgercombs.tk)
- # [08:49] * Joins: pims (~woops@ip-103.net-82-216-85.rev.numericable.fr)
- # [08:49] * Joins: Dashiva (Dashiva@wikia/Dashiva)
- # [08:49] * Joins: astearns (~astearns@192.150.22.5)
- # [08:49] * Joins: yoshiki (yoshiki@nat/google/x-pwayunwglgbagwvs)
- # [08:49] * Joins: mpt (~mpt@canonical/mpt)
- # [08:49] * Joins: moo-_- (miohtama@lakka.kapsi.fi)
- # [08:49] * Joins: dgorbik (~dgorbik@2620:149:4:304:19fb:7930:e0e4:26aa)
- # [08:49] * Joins: kochi (~kochi@2401:fa00:4:1004:26be:5ff:fe03:db82)
- # [08:49] * Joins: twisted` (uid6794@gateway/web/irccloud.com/x-xzlcrvgtmxuityzz)
- # [08:49] * Joins: mounir (~mounir@oldworld.fr)
- # [08:49] * Joins: nephyrin (~neph@nat/mozilla/x-yxbrkeeoubhonexn)
- # [08:49] * Joins: hober (~ted@unaffiliated/hober)
- # [08:49] * Joins: romainhuet (uid2533@gateway/web/irccloud.com/x-vqnvteftybsyskgk)
- # [08:49] * Joins: sindresorhus (~sindresor@ec2-23-20-153-157.compute-1.amazonaws.com)
- # [08:49] * Joins: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley)
- # [08:49] * Joins: Lachy (~Lachy@cm-84.215.19.229.getinternet.no)
- # [08:49] * Joins: Jasper (magcius@unaffiliated/magcius)
- # [08:49] * Joins: tomaw (tom@freenode/staff/tomaw)
- # [08:49] * Joins: gavin (~gavin@firefox/developer/gavin)
- # [08:49] * Joins: bzed (~bzed@devel.recluse.de)
- # [08:49] * Joins: bacilla (~karolis@unaffiliated/velkam)
- # [08:49] * Joins: timeless (uid4015@firefox/developer/timeless)
- # [08:49] * Joins: akamike (~uid5089@gateway/web/irccloud.com/x-apiqgnvvmmytkrje)
- # [08:49] * Joins: sawrubh (uid6719@gateway/web/irccloud.com/x-sxgrnmvugeqhryfw)
- # [08:49] * Joins: ryuone_ (~ryuone@133.242.16.101)
- # [08:49] * Joins: broquaint (~dbrook@static.94.217.47.78.clients.your-server.de)
- # [08:49] * Joins: jtcranmer (~jcranmer@ltsp2.csl.tjhsst.edu)
- # [08:49] * Joins: badfw2 (~v@220.78.68.4)
- # [08:49] * Joins: Yudai___ (~Yudai@nttkyo385038.tkyo.nt.ngn2.ppp.infoweb.ne.jp)
- # [08:49] * Joins: kinetik (~kinetik@121.99.36.162)
- # [08:49] * Joins: remysharp (uid4345@gateway/web/irccloud.com/x-rkfargwzyiprtruj)
- # [08:49] * Joins: abarth (uid5294@gateway/web/irccloud.com/x-yrlakaeebaejihrt)
- # [08:49] * Joins: Obvious (tachikoma@188.226.74.2)
- # [08:49] * Joins: asdf` (asdf@bigfr.klupek.org)
- # [08:49] * Joins: manu-db (~msporny@216.252.204.51)
- # [08:49] * Joins: Workshiva (~Dashiva@74.125.121.65)
- # [08:49] * Joins: Phae (uid455@gateway/web/irccloud.com/x-sylhxcajulvhdkgx)
- # [08:49] * Joins: falken (falken@nat/google/x-abrbkniiepbxixhr)
- # [08:49] * Joins: NimeshNeema (uid2689@gateway/web/irccloud.com/x-stkdilznmlaktkkx)
- # [08:49] * Joins: krijn_ (uid2319@gateway/web/irccloud.com/x-iyulsybqexnafmhr)
- # [08:49] * Joins: BruNeX (uid4730@gateway/web/irccloud.com/x-vzcjexzisexryqht)
- # [08:49] * Joins: Scorchin (uid1242@gateway/web/irccloud.com/x-ovrckipvcwjmmeen)
- # [08:49] * Joins: arv (uid4269@gateway/web/irccloud.com/x-bcoyvprsmzksbatb)
- # [08:49] * Joins: cwilso (uid10206@gateway/web/irccloud.com/x-oknpsanbbodztbus)
- # [08:49] * Joins: ojan_away (uid5519@gateway/web/irccloud.com/x-uhvxffjvgaoqqpsu)
- # [08:49] * Joins: viduthalai1947 (uid5404@gateway/web/irccloud.com/x-pxavgbzxaipshavh)
- # [08:49] * Joins: slightlyoff (uid1768@gateway/web/irccloud.com/x-yburhzjzfupjbeoi)
- # [08:49] * Joins: matijsb_ (uid2278@gateway/web/irccloud.com/x-nerzlbbnfffymlgw)
- # [08:49] * Joins: ryanseddon (uid1832@gateway/web/irccloud.com/x-lykdhygkfkpnsslq)
- # [08:49] * Joins: beowulf (uid116@pdpc/supporter/professional/beowulf)
- # [08:49] * Joins: cfq (~cfq@static.85-10-200-244.clients.your-server.de)
- # [08:49] * Joins: Garbee (~Garbee@lb1.cluster.grephix.nl)
- # [08:49] * Joins: WesleyL (~Wesley@static.43.95.46.78.clients.your-server.de)
- # [08:49] * Joins: nunnun (~hiro@2001:200:1c0:3624:20c:29ff:fe02:11c8)
- # [08:49] * Joins: reggna (~reggna@46.137.95.132)
- # [08:49] * Joins: chee (~chee@fsf/member/chee)
- # [08:49] * Joins: sangwhan (~sangwhan@1.234.23.206)
- # [08:49] * Joins: paul_irish (~paul_iris@ve.hsh6wjwx.vesrv.com)
- # [08:49] * Joins: jahman (~woops@129.175.204.73)
- # [08:49] * Joins: eighty4 (~eighty4@unaffiliated/eighty4)
- # [08:49] * Joins: webben (~benjamin@173-203-84-17.static.cloud-ips.com)
- # [08:49] * Joins: toyoshiAw (~toyoshim@yuri.twintail.org)
- # [08:49] * Joins: asmodai (asmodai@freebsd/developer/asmodai)
- # [08:49] * Joins: scheib (uid4467@gateway/web/irccloud.com/x-ueybdytzbfoaayhb)
- # [08:49] * Joins: Somatt_wrk (~somattwrk@darkstar2.fullsix.com)
- # [08:49] * Joins: fishd (darin@nat/google/x-jlpscwwfdbabypit)
- # [08:49] * Joins: hsivonen (~hsivonen@srv-e205.esp.mediateam.fi)
- # [08:49] * Joins: riddle (riddle@us.yunix.net)
- # [08:49] * Joins: gnarf (~gnarf@unaffiliated/gnarf)
- # [08:49] * Joins: bentruyman (~bentruyma@li159-104.members.linode.com)
- # [08:49] * Joins: Rubennn (~Rubennn@apher.gewooniets.nl)
- # [08:49] * Joins: tndrH (~Rob@cpc4-seac20-2-0-cust858.7-2.cable.virginmedia.com)
- # [08:49] * Joins: payman (~payman@static-212-247-211-195.cust.tele2.se)
- # [08:49] * Joins: malcolmva (~malcolmva@c-67-180-203-233.hsd1.ca.comcast.net)
- # [08:49] * Joins: heath (quassel@2600:3c02::f03c:91ff:feae:6e5b)
- # [08:49] * Joins: wilhelm (~wilhelm@178.255.149.100)
- # [08:49] * Joins: carlos_antonio (~benway@unaffiliated/disusered)
- # [08:49] * Joins: ricea (ricea@nat/google/x-xlyrclxrvzwrmjhe)
- # [08:49] * Joins: jamesr (jamesr@nat/google/x-mgwkoyyhtvkongpj)
- # [08:49] * Joins: beverloo (beverloo@nat/google/x-wskvyiwjhlnesuwt)
- # [08:49] * Joins: Somatt (famic@hidden.dns.ug)
- # [08:49] * Joins: brainproxy (~brainprox@pdpc/supporter/gold/brainproxy)
- # [08:49] * Joins: beverloo- (~peter@85.17.3.181)
- # [08:49] * Joins: jochen__ (jochen@nat/google/x-clzievpylbypijzn)
- # [08:49] * Joins: ahf (ahf@irssi/staff/ahf)
- # [08:49] * Joins: muyyatin (~muyyatin@108-75-14-162.lightspeed.sndgca.sbcglobal.net)
- # [08:49] * Joins: gsnedders (~gsnedders@mail.gsnedders.com)
- # [08:49] * Joins: jmb (~jmb@mail.parsifal.org.uk)
- # [08:49] * Joins: odinho (odinho@dalvik.ping.uio.no)
- # [08:49] * Joins: kbrosnan (~kbrosnan@firefox/community/qa/kbrosnan)
- # [08:49] * Joins: inimino (~inimino@oftn/board/inimino)
- # [08:49] * Joins: Jedi_ (~Jedi@jedi.org)
- # [08:49] * Joins: rafaelw___ (uid4459@gateway/web/irccloud.com/x-hlluxqudtpwiarft)
- # [08:49] * Joins: zewt (~foo@ec2-50-17-220-142.compute-1.amazonaws.com)
- # [08:49] * Joins: ShaneHud1on (~sh548@raptor.ukc.ac.uk)
- # [08:49] * Joins: dglazkov (uid4270@gateway/web/irccloud.com/x-oqceisupxgndxwiw)
- # [08:49] * Joins: rillian (~giles@mf4-xiph.osuosl.org)
- # [08:49] * Joins: scott_gonzalez (~gonzasi0@205.186.165.147)
- # [08:49] * Joins: bretolius (~boot@ks393582.kimsufi.com)
- # [08:49] * Joins: kborchers (~kborchers@unaffiliated/kborchers)
- # [08:49] * Joins: Martijnc (~Martijn@is-aweso.me)
- # [08:49] * Joins: jayne (~jayne@freenode/staff/jayne)
- # [08:49] * Joins: ajpiano (~ajpiano@li98-57.members.linode.com)
- # [08:49] * Joins: othree_ (~othree@li379-129.members.linode.com)
- # [08:49] * Joins: nw (nw@kapsi.fi)
- # [08:49] * Joins: Kingdutch (~kingdutch@176.58.96.4)
- # [08:49] * Joins: Dantman (~dantman@mediawiki/dantman)
- # [08:49] * Joins: boaz (~boaz@li326-230.members.linode.com)
- # [08:49] * Joins: MikeSmith (~mike@sideshowbarker.net)
- # [08:49] * Joins: doublec (~doublec@unaffiliated/doublec)
- # [08:49] * Joins: ajt_ (~ajt@li181-64.members.linode.com)
- # [08:49] * Joins: Krinkle|detached (~Krinkle@wikimedia/Krinkle)
- # [08:49] * Joins: edsu (~edsu@pdpc/supporter/active/edsu)
- # [08:49] * Joins: rwaldron (rwaldron@gateway/shell/jquery.com/x-krcltjycefmjtmjk)
- # [08:49] * Joins: globbot (~logbot@lump.glob.com.au)
- # [08:49] * Joins: Hixie (~ianh@178.255.149.100)
- # [08:49] * Joins: ivan`` (~ivan@unaffiliated/ivan/x-000001)
- # [08:49] * Joins: hasather (~hasather@office.oslo.opera.com)
- # [08:49] * Joins: richt (~richt@178.32.57.32)
- # [08:50] * Joins: SimonSapin (~simon@vev69-1-82-232-219-95.fbx.proxad.net)
- # [08:52] * Quits: SteveF (~chatzilla@63.133.197.135) (Ping timeout: 245 seconds)
- # [08:58] * Joins: Ms2ger (~Ms2ger@kotnet-150.kulnet.kuleuven.be)
- # [09:02] * Joins: Ms2ger` (~Ms2ger@kotnet-150.kulnet.kuleuven.be)
- # [09:02] * Quits: Ms2ger (~Ms2ger@kotnet-150.kulnet.kuleuven.be) (Ping timeout: 255 seconds)
- # [09:06] * Quits: jdaggett (~jdaggett@180.235.6.26) (Quit: jdaggett)
- # [09:07] * Quits: Ms2ger` (~Ms2ger@kotnet-150.kulnet.kuleuven.be) (Ping timeout: 256 seconds)
- # [09:15] * Joins: niloy (~niloy@115.112.64.6)
- # [09:19] * Joins: Ms2ger` (~Ms2ger@kotnet-150.kulnet.kuleuven.be)
- # [09:25] * Quits: ricea (ricea@nat/google/x-xlyrclxrvzwrmjhe) (Quit: Leaving.)
- # [09:26] * Joins: ricea (ricea@nat/google/x-buckmbatriwhbkzg)
- # [09:30] * Quits: dbaron (~dbaron@50-0-248-88.dsl.dynamic.sonic.net) (Ping timeout: 276 seconds)
- # [09:31] * Joins: mitemitreski (~mitemitre@212.120.17.179)
- # [09:35] * Joins: henrikkok (~henrikkok@81.27.221.193)
- # [09:36] * Quits: Obvious (tachikoma@188.226.74.2) (Ping timeout: 255 seconds)
- # [09:37] * Quits: Ms2ger` (~Ms2ger@kotnet-150.kulnet.kuleuven.be) (Ping timeout: 264 seconds)
- # [09:41] * Joins: hendry (~hendry@sg.webconverger.com)
- # [09:43] * Quits: birtles (~chatzilla@rtr.mozilla.or.jp) (Quit: ChatZilla 0.9.90-rdmsoft [XULRunner 1.9.0.17/2009122204])
- # [09:44] * Quits: jamesr_ (~jamesr@173.164.251.190) (Quit: jamesr_)
- # [09:45] * Joins: jamesr_ (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net)
- # [09:45] * Joins: Obvious (tachikoma@188.226.74.2)
- # [09:49] * Joins: isherman-book (~Adium@173-167-102-230-sfba.hfc.comcastbusiness.net)
- # [09:50] * Quits: JesperHansen (~JesperHan@0x5b90c2f0.dhcp.fiberflex.dk) (Ping timeout: 244 seconds)
- # [09:50] * Joins: Ms2ger` (~Ms2ger@kotnet-150.kulnet.kuleuven.be)
- # [10:00] * Joins: Kolombiken (~Adium@217.13.228.226)
- # [10:01] * Quits: plutoniix (~plutoniix@ppp-110-168-3-240.revip5.asianet.co.th) (Quit: จรลี จรลา)
- # [10:02] * Joins: zdobersek (~zdobersek@cpe-77.38.31.63.cable.t-1.si)
- # [10:03] * Joins: nonge (~nonge@p5082A447.dip.t-dialin.net)
- # [10:07] * Quits: nonge_ (~nonge@p5082A5B7.dip.t-dialin.net) (Ping timeout: 244 seconds)
- # [10:15] * Quits: richt (~richt@178.32.57.32) (Remote host closed the connection)
- # [10:16] * Joins: richt (~richt@178-32-57-32.ovh.net)
- # [10:21] * Quits: richt (~richt@178-32-57-32.ovh.net) (Remote host closed the connection)
- # [10:22] <jgraham> Argh. Where is zcorpan when you need him?
- # [10:22] * Joins: richt (~richt@1.223.218.28)
- # [10:22] * Joins: tomasf (~tomasf@77.72.97.4.c.fiberdirekt.net)
- # [10:23] <jgraham> gsnedders: yt?
- # [10:34] * Joins: smaug____ (~chatzilla@212-226-64-156-nat.elisa-mobile.fi)
- # [10:35] * Joins: annevk5 (~annevk@207.218.72.65)
- # [10:36] <annevk5> smaug____: so we have moz-blob which is incremental...
- # [10:36] * annevk5 is now known as annevk
- # [10:38] * Quits: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net) (Quit: rniwa)
- # [10:40] * Quits: jamesr_ (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net) (Quit: jamesr_)
- # [10:44] <smaug____> yes
- # [10:45] <smaug____> which is why it is very different to the new proposal
- # [10:51] <annevk> I don't follow
- # [10:51] <annevk> smaug____: how is it different?
- # [10:51] * Joins: darobin (~darobin@78.109.80.74)
- # [10:52] <smaug____> oh, wait, you say incremental as latter Blobs containing all the data
- # [10:52] <smaug____> from the beginning
- # [10:53] <annevk> all I meant was available during LOADING
- # [10:53] <smaug____> sorry, I was thinking about the chunked thing
- # [10:53] * smaug____ checks who added moz-blob
- # [10:54] <smaug____> sounds like sicking-ish thing
- # [10:54] <annevk> yes
- # [11:00] <smaug____> I guess I need to change my mind
- # [11:01] <smaug____> the .iso usecase is quite valid one
- # [11:04] <annevk> smaug____: so we do the semantics we discussed yesterday?
- # [11:05] <smaug____> yeah
- # [11:05] <smaug____> but then, if we get incremental blobs and typedarrays, shouldn't we have partial data to
- # [11:05] <smaug____> I mean chunked data
- # [11:05] <smaug____> what was the original bug report
- # [11:06] <smaug____> w3c bug report
- # [11:06] <smaug____> is it about incremental or chunked
- # [11:06] <annevk> https://www.w3.org/Bugs/Public/show_bug.cgi?id=21111 is for blob/arraybuffer during LOADING
- # [11:06] <annevk> The discussion about chunked resulted in the addition of stream
- # [11:06] <annevk> That discussion was mailing-list only
- # [11:06] <smaug____> so
- # [11:07] <smaug____> with incremental we're getting close to a stream like anyway
- # [11:07] <annevk> I'll ask why Stream is no good.
- # [11:09] <smaug____> because it is not implemented ?
- # [11:09] <smaug____> but really, incremental and chunked are so close to each others
- # [11:10] <smaug____> scripts can use incremental as chunked
- # [11:10] <smaug____> but memory usage would be just higher that way
- # [11:10] <smaug____> in some cases
- # [11:11] <annevk> smaug____: neither is blob during LOADING in WebKit...
- # [11:11] <annevk> smaug____: or in Gecko for the keyword "blob"
- # [11:12] <annevk> smaug____: and the Streams API is about incremental the way it is currently set up
- # [11:12] <smaug____> how is Stream better?
- # [11:12] <smaug____> (other than better name)
- # [11:13] <annevk> It's an object that incrementally expands and does not have a fixed .size
- # [11:13] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (Ping timeout: 276 seconds)
- # [11:13] <smaug____> eh
- # [11:13] <annevk> Arguably Blob should have been designed that way...
- # [11:14] * smaug____ re-reads the spec
- # [11:14] <annevk> I wonder how Streams API got published including StreamBuilder :-(
- # [11:14] <smaug____> I meant s/Stream/Stream API/
- # [11:15] <smaug____> so yes, are we talking about Stream interface or API
- # [11:15] <annevk> Stream is defined in the Streams API
- # [11:15] <smaug____> since I asked about API, but I guess you're talking about the interface
- # [11:15] <annevk> There's not much more to the spec...
- # [11:16] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [11:17] * Quits: isherman-book (~Adium@173-167-102-230-sfba.hfc.comcastbusiness.net) (Quit: Leaving.)
- # [11:18] <smaug____> so, you'd get Stream from XHR , and then read it separate ?
- # [11:18] <smaug____> separately
- # [11:18] <smaug____> and not care about XHR
- # [11:18] <annevk> That's the same with Blob
- # [11:19] * Quits: svl (~me@202.68.83.170) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [11:20] * Joins: j_wright (~jwright@ip70-173-176-189.lv.lv.cox.net)
- # [11:20] <annevk> I'm not entirely sure StreamReader has the correct design though :-(
- # [11:22] <Ms2ger`> Sounds like a good web API, then
- # [11:22] * Quits: nessy (~silviapf@124.149.71.84) (Quit: Leaving.)
- # [11:22] <smaug____> does it allow incremental and chunked...
- # [11:22] <smaug____> I don't quite see that
- # [11:23] <annevk> I think only incremental
- # [11:27] <smaug____> well, then adding something similar to moz-blob to XHR wouldn't make sense
- # [11:28] <smaug____> I would expect an API called Stream to deal with chunked data
- # [11:29] <annevk> Could we design it to handle both?
- # [11:30] <smaug____> well, what if there are two StreamReaders. First one reading chunked data, and then another reading incremental
- # [11:31] <smaug____> the latter would like to get all the data since the beginning
- # [11:31] <smaug____> but I'd like to be able to discard the already read data
- # [11:31] * Joins: tomasf_ (~tomasf@77.72.97.4.c.fiberdirekt.net)
- # [11:31] <smaug____> (that is a reason for moz-chunked-* in XHR)
- # [11:32] <annevk> I understand
- # [11:32] * Quits: tomasf (~tomasf@77.72.97.4.c.fiberdirekt.net) (Read error: Connection reset by peer)
- # [11:33] <smaug____> back in few minutes
- # [11:34] <annevk> smaug____: one question, does moz-blob create a new Blob object each time you access it?
- # [11:34] <annevk> I'll draft an email to public-webapps to sort this out
- # [11:34] * tomasf_ is now known as tomasf
- # [11:37] * Quits: smaug____ (~chatzilla@212-226-64-156-nat.elisa-mobile.fi) (Ping timeout: 244 seconds)
- # [11:40] * Quits: tomasf (~tomasf@77.72.97.4.c.fiberdirekt.net) (Ping timeout: 255 seconds)
- # [11:42] * toyoshiAw is now known as toyoshim
- # [11:43] * Joins: tomasf (~tomasf@77.72.97.4.c.fiberdirekt.net)
- # [11:48] <annevk> Oh smaug just left. How rude. Well I figured it out via testing anyway
- # [11:49] * Joins: smaug____ (~chatzilla@cs181151161.pp.htv.fi)
- # [11:50] <smaug____> annevk: looks like moz-blob does not create a new object each time
- # [11:50] <smaug____> only if there is some new data
- # [11:50] <annevk> ah good to know
- # [11:51] <smaug____> and sorry being so rude :)
- # [11:51] <smaug____> so, will we need Stream and IncrementalStream. Though the latter sounds odd. It is more like IncrementalBlob
- # [11:56] <annevk> smaug____: oh, I reached the opposite conclusion :-)
- # [11:56] <annevk> smaug____: see public-webapps
- # [11:57] <smaug____> it wasn't really my conclusion :)
- # [11:57] <annevk> smaug____: given that an incremental Blob can be done via masquerade, all the additional API complexity of Stream does not seem worth it
- # [11:57] <smaug____> helsinki.fi, could you be a bit faster today
- # [11:58] * Joins: pyrsmk (~pyrsmk@2a01:e35:2f52:ead0:e483:73ec:5a17:a199)
- # [11:58] <smaug____> ah
- # [11:59] <annevk> Hmm strange. Feras Moussa is listed as Invited Expert. Is he no longer at Microsoft?
- # [12:00] <smaug____> as of now, I'd like to have incremental and chunked in XHR
- # [12:00] <smaug____> but need to get more comments
- # [12:00] <smaug____> since I thought Stream was about chunked data
- # [12:00] <smaug____> but the spec doesn't say that
- # [12:00] <smaug____> or I can't find it
- # [12:01] <smaug____> s/Stream/StreamReader/
- # [12:01] <MikeSmith> annevk: Feras is no longer at Microsoft. But he intends to continue editing the Streams spec
- # [12:01] * Quits: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com) (Quit: Leaving...)
- # [12:01] * Joins: ^esc (~esc_ape@77.117.247.156.wireless.dyn.drei.com)
- # [12:01] <annevk> smaug____: the API does not look like it's chunked, although maxSize does suggest that I suppose...
- # [12:02] <annevk> MikeSmith: I see
- # [12:05] * Quits: pyrsmk (~pyrsmk@2a01:e35:2f52:ead0:e483:73ec:5a17:a199) (Quit: tzing)
- # [12:11] <gsnedders> jgraham: Here now
- # [12:12] <jgraham> gsnedders: I was looking for Opera's postMessage tests
- # [12:12] <jgraham> But I found them
- # [12:12] <jgraham> They all need conversion though :(
- # [12:12] <gsnedders> Okay. I don't where to look anyway. :)
- # [12:13] <jgraham> It seems we are going to do that farcical thing where we ask Microsoft "are your tests good enough to take this spec forward?" And they say "yes of course they are, after all we pass them all".
- # [12:13] <jgraham> For messaging as well as web sockets
- # [12:14] <gsnedders> What about zcorpan's web sockets tests?
- # [12:14] <jgraham> gsnedders: They are still partially unconverted to testharness format
- # [12:16] <jgraham> I guess this is what I need to spend my evenings doing
- # [12:16] <jgraham> Rather than working on critic
- # [12:21] * Quits: espadrine (~thaddee_t@85-218-9-225.dclient.lsne.ch) (Ping timeout: 276 seconds)
- # [12:33] * marcosc_ is now known as marcosc
- # [12:33] * Quits: marcosc (~marcosc@bl11-99-228.dsl.telepac.pt)
- # [12:34] * Joins: marcosc (~marcosc@bl11-99-228.dsl.telepac.pt)
- # [12:36] * Joins: alrra (~alrra@unaffiliated/alrra)
- # [12:39] * Joins: adactio (~adactio@host213-123-197-180.in-addr.btopenworld.com)
- # [12:42] * abstractj|away is now known as abstractj
- # [12:43] <marcosc> The JSON spec says that JSON text shall be Unicode (i.e., UTF-8 to 32). Chrome fails to parse UTF-16, big endian, no BOM. OTOH, FireFox refuse to parse any UTF-16, except UTF-16-LE with no BOM. Have not tested UTF-32.
- # [12:44] <annevk> marcosc: parse where?
- # [12:44] <marcosc> annevk: JSON.parse()
- # [12:44] <annevk> marcosc: that takes a JavaScript string
- # [12:44] <marcosc> ah
- # [12:45] <annevk> XMLHttpRequest only supports JSON encoded as utf-8
- # [12:45] * Quits: richt (~richt@1.223.218.28) (Remote host closed the connection)
- # [12:45] <marcosc> annevk: I'm pulling in the JSON text through XHR
- # [12:45] * Joins: richt (~richt@1.223.218.28)
- # [12:45] * Quits: Ms2ger` (~Ms2ger@kotnet-150.kulnet.kuleuven.be) (Quit: bbl)
- # [12:45] <annevk> marcosc: it's already decoded at that point depending your server configuration and the specifics of how you're using XMLHttpRequest...
- # [12:50] * Quits: richt (~richt@1.223.218.28) (Ping timeout: 252 seconds)
- # [12:50] * Quits: eresair (~eresair@c-24-5-78-71.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [12:53] * Krinkle|detached is now known as Krinkle
- # [12:55] * Quits: mitemitreski (~mitemitre@212.120.17.179) (Ping timeout: 264 seconds)
- # [13:00] <marcosc> annevk: in the XHR, when open() is called, what's the reason for dropping the <fragment> component from the URL?
- # [13:00] <annevk> marcosc: that's how HTTP works
- # [13:01] <annevk> marcosc: sounds like you're not reading http://xhr.spec.whatwg.org/ though which is much better
- # [13:01] <annevk> marcosc: and defers for that particular thing to Fetch
- # [13:01] <marcosc> ah! I'm not
- # [13:01] <annevk> (which I'm trying to work out now...)
- # [13:03] <marcosc> In the manifest spec, I really just want to say: behave as if performing an XHR open() request with URL set to bla, and method set to GET.
- # [13:03] <marcosc> Otherwise, I'm going to end up cloning a bunch of stuff from the XHR spec
- # [13:03] <marcosc> which sucks
- # [13:03] <annevk> marcosc: oh no, you want to use fetch
- # [13:04] <marcosc> fetch from HTML?
- # [13:04] <annevk> marcosc: yes
- # [13:04] <marcosc> ok
- # [13:04] <annevk> marcosc: until I've written Fetch and then everyone can use that
- # [13:04] <annevk> it will be glorious
- # [13:04] <marcosc> I can imagine! :)
- # [13:05] <marcosc> ok, so http://www.whatwg.org/specs/web-apps/current-work/#fetch is currently incomplete then.
- # [13:07] * marcosc lunch
- # [13:11] * Quits: beverloo (beverloo@nat/google/x-wskvyiwjhlnesuwt) (Quit: Leaving)
- # [13:13] * Joins: mitemitreski (~mitemitre@212.120.17.179)
- # [13:15] <annevk> marcosc: nah it's complete, just not detailed (imo)
- # [13:15] <annevk> I wish Hixie was around
- # [13:34] <odinho> And not with a nice URL and its own easy hookpoint :]
- # [13:35] * Joins: mitemitreski1 (~mitemitre@212.120.17.179)
- # [13:38] * Quits: mitemitreski (~mitemitre@212.120.17.179) (Ping timeout: 255 seconds)
- # [13:42] * Quits: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net) (Quit: sedovsek)
- # [13:46] * Quits: marcosc (~marcosc@bl11-99-228.dsl.telepac.pt) (Read error: Connection reset by peer)
- # [13:46] * Joins: marcosc (~marcosc@bl11-99-228.dsl.telepac.pt)
- # [13:46] * Quits: alrra (~alrra@unaffiliated/alrra) (Quit: Leaving)
- # [13:57] * Quits: tomasf (~tomasf@77.72.97.4.c.fiberdirekt.net) (Ping timeout: 272 seconds)
- # [14:02] * Joins: tomasf (~tomasf@77.72.97.4)
- # [14:03] * Joins: scor (scor@drupal.org/user/52142/view)
- # [14:07] * Quits: tomasf (~tomasf@77.72.97.4) (Ping timeout: 245 seconds)
- # [14:08] * Joins: SteveF_ (~chatzilla@63.133.197.135)
- # [14:13] <SteveF_> marcosc: johnny kannis was probably before your time ;-)
- # [14:14] <marcosc> SteveF_: yep :)
- # [14:14] <marcosc> but I don't mind :)
- # [14:14] <SteveF_> marcosc: was following odd trains of thought and music while suffering from stomach cramps hitme were a great sydney pub rock band btw
- # [14:14] * Quits: Zauberfisch (~Zauberfis@2a01:4f8:100:73c3::3) (Read error: Connection reset by peer)
- # [14:14] <SteveF_> hitmen
- # [14:15] * Joins: Zauberfisch (~Zauberfis@2a01:4f8:100:73c3::3)
- # [14:15] <SteveF_> marcosc: wasn't meaning to make a wog connection...
- # [14:16] <marcosc> heh, now you have :)
- # [14:17] * marcosc throws SteveF_ a rope out of the hole. Funky tunes: http://www.youtube.com/watch?v=TnjuGYU-gCA
- # [14:18] * SteveF_ ;-)
- # [14:19] * marcosc gets all in the mood for some bad 80's rock
- # [14:19] * SteveF_ seeing them drinking longnecks in that vid really took me back
- # [14:23] <marcosc> me too, I was 12 again :)
- # [14:23] * SteveF_ remember seeing the angels as an underager out in the western sydney beerbarns http://www.youtube.com/watch?v=RiOQzWTz3cM
- # [14:24] * Joins: tomasf (~tomasf@77.72.97.4.c.fiberdirekt.net)
- # [14:24] <SteveF_> marcosc: where did you live in oz?
- # [14:24] <marcosc> Brisbane
- # [14:25] <SteveF_> say no more
- # [14:27] * Parts: henrikkok (~henrikkok@81.27.221.193)
- # [14:28] * SteveF_ I'm a bankstown boy myself
- # [14:30] <jgraham> Are we supposed to hum that to the tune of uptown girl?
- # [14:30] <annevk> Please record if you do
- # [14:33] <annevk> aaah
- # [14:33] <smaug____> does anyone actually use microdata thing
- # [14:34] <annevk> smaug____: you'd have to elaborate on thing
- # [14:34] <annevk> smaug____: but e.g. http://schema.org/ backed by the search engines recommends using it to people
- # [14:34] <smaug____> "recommends" does mean anyone actually uses it
- # [14:34] <smaug____> er
- # [14:34] <smaug____> doesn't
- # [14:34] * SteveF_ context of 'bansktown boys boys don't cry' statement made by the honourable Paul Keating PM http://www.thepunch.com.au/articles/an-ode-to-paul-keating/
- # [14:35] <annevk> smaug____: if nobody is using it I wish they'd stop discussing it
- # [14:35] <SteveF_> his observation of marcosc's buddy John Howard "What we have got is a dead carcass, swinging in the breeze, but nobody will cut it down to replace him. "
- # [14:36] <marcosc> Oh lolz, slightlyoff! The comments here are hilarious: https://github.com/slightlyoff/async-local-storage/blob/master/src/async-local-storage.js
- # [14:38] <jgraham> They might be funny
- # [14:38] <jgraham> But they are not all on-base
- # [14:38] <jgraham> I have no idea why .length implied "ordered" for example
- # [14:38] <marcosc> oh, they are spot on
- # [14:39] <marcosc> Just a little out of character for the oh ever so eloquent slightlyoff
- # [14:39] <jgraham> (certainly in python it doesn't)
- # [14:39] <jgraham> (where len(set([1,2,1])) == 2, just like you would expect)
- # [14:40] <jgraham> (and you can't index a set by number there either)
- # [14:41] <jgraham> (or indeed a dict, which *also* has a __len__)
- # [14:43] * Joins: decotii (~decotii@hq.croscon.com)
- # [14:43] * Joins: izhak (~izhak@31.47.117.1)
- # [14:45] <jgraham> Also, navigator??
- # [14:54] * Quits: tomasf (~tomasf@77.72.97.4.c.fiberdirekt.net) (Quit: tomasf)
- # [14:54] * Joins: beverloo (beverloo@nat/google/x-yfhdwmsrnwnxjlbw)
- # [15:02] * Quits: smaug____ (~chatzilla@cs181151161.pp.htv.fi) (Ping timeout: 240 seconds)
- # [15:04] * Quits: SteveF_ (~chatzilla@63.133.197.135) (Ping timeout: 255 seconds)
- # [15:04] <marcosc> jgraham: yeah, navigator is that's a strange place to put that
- # [15:05] * Joins: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com)
- # [15:06] * Joins: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net)
- # [15:09] * Joins: krawchyk (~krawchyk@65.220.49.251)
- # [15:20] * Joins: tomasf (~tomasf@static-88.131.62.36.addr.tdcsong.se)
- # [15:25] * Quits: JohnAlbin (~JohnAlbin@114-36-36-23.dynamic.hinet.net) (Quit: HTTP/1.1 404 JohnAlbin Not Found)
- # [15:25] * Joins: JohnAlbin (~JohnAlbin@114-36-36-23.dynamic.hinet.net)
- # [15:27] * Joins: baku (~baku@2-227-7-116.ip183.fastwebnet.it)
- # [15:27] * Joins: SteveF_ (~chatzilla@63.133.197.135)
- # [15:28] * Joins: TallTed (~Thud@63.119.36.36)
- # [15:31] * Joins: jryans (~jryans@office.massrel.com)
- # [15:45] * Quits: SteveF_ (~chatzilla@63.133.197.135) (Ping timeout: 255 seconds)
- # [15:48] * Joins: Ms2ger (~Ms2ger@vpne189.ugent.be)
- # [16:03] * Quits: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net) (Read error: Connection reset by peer)
- # [16:04] * Joins: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net)
- # [16:06] * Krinkle is now known as Krinkle|detached
- # [16:08] * Quits: Ms2ger (~Ms2ger@vpne189.ugent.be) (Ping timeout: 252 seconds)
- # [16:20] * Joins: garciawebdev (~garciaweb@190.244.95.154)
- # [16:24] * Joins: tantek (~tantek@70-36-139-86.dsl.dynamic.sonic.net)
- # [16:25] * Joins: smaug____ (~chatzilla@cs181151161.pp.htv.fi)
- # [16:28] * Quits: tomasf (~tomasf@static-88.131.62.36.addr.tdcsong.se) (Quit: tomasf)
- # [16:41] * Joins: ehsan_ (~ehsan@199.255.40.36)
- # [16:47] * Joins: sicking (~sicking@c-24-130-172-29.hsd1.ca.comcast.net)
- # [16:47] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [16:47] * Krinkle|detached is now known as Krinkle
- # [16:49] * Joins: nimbu (~nimbu@64.114.255.126)
- # [16:59] * Joins: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net)
- # [16:59] * Quits: karlcow (~karl@nerval.la-grange.net) (Remote host closed the connection)
- # [17:02] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [17:04] * jernoble is now known as jernoble|afk
- # [17:04] * jernoble|afk is now known as jernoble
- # [17:06] * Quits: mven (~mven@68.224.15.53) (Remote host closed the connection)
- # [17:09] * Joins: eresair (~eresair@c-24-5-78-71.hsd1.ca.comcast.net)
- # [17:12] * Quits: gavinc (~gavin@50.0.77.3) (Quit: Konversation terminated!)
- # [17:12] <slightlyoff> marcosc: dude, LS + IDB is enough to make anyone swear like a sailor
- # [17:15] * Quits: Kolombiken (~Adium@217.13.228.226) (Ping timeout: 246 seconds)
- # [17:18] * Quits: nimbu (~nimbu@64.114.255.126) (Quit: Leaving.)
- # [17:21] * Joins: nimbu (~nimbu@64.114.255.126)
- # [17:21] * Joins: Ms2ger (~Ms2ger@148.216-242-81.adsl-dyn.isp.belgacom.be)
- # [17:22] * Joins: fr0zenice (~frozenice@unaffiliated/fr0zenice)
- # [17:28] * Joins: jwalden (~waldo@64.164.138.146)
- # [17:30] * Quits: nimbu (~nimbu@64.114.255.126) (Quit: Leaving.)
- # [17:36] * Quits: jsoncorwin (~textual@c-98-210-130-242.hsd1.ca.comcast.net) (Quit: Computer has gone to sleep.)
- # [17:36] * Joins: gavinc (~gavin@50.0.77.3)
- # [17:36] * Joins: yorick (~yorick@vredebest.xs4all.nl)
- # [17:36] * Quits: yorick (~yorick@vredebest.xs4all.nl) (Changing host)
- # [17:36] * Joins: yorick (~yorick@oftn/member/yorick)
- # [17:37] <annevk> jgraham: I suggested navigator I think, where would you put it?
- # [17:40] * toyoshim is now known as toyoshiAw
- # [17:40] * Quits: jwalden (~waldo@64.164.138.146) (Quit: brb)
- # [17:42] <marcosc> slightlyoff: amen to that :)
- # [17:42] <slightlyoff> marcosc: i honestly don't understand transactions in IDB
- # [17:42] <slightlyoff> and I think I made a serious attempt to understand them
- # [17:43] <slightlyoff> I'm currently digging through chromium code to grok why FF and Chrome differ in timing/end-of-turn behavior
- # [17:43] <zewt> jgraham: yeah, "length", "count" and "size" mean exactly the same thing, and it's nonsensical to not use the same term for all data structures
- # [17:43] <marcosc> I haven't even gotten that far. I lost the plot and started swearing long even before getting the object store going
- # [17:43] <slightlyoff> not true
- # [17:43] <slightlyoff> zewt: length is a 1-dimensional measure
- # [17:43] <slightlyoff> it implies ordering
- # [17:43] <zewt> length does not imply ordering
- # [17:44] <marcosc> slightlyoff: I'm currently playing around with Q to get a better understanding of promises, so I can contribute a bit
- # [17:44] <slightlyoff> I will leave basic number theory as an exercise to the reader.
- # [17:44] * tantek gets the popcorn and grabs a seat.
- # [17:44] <zewt> ...
- # [17:44] <slightlyoff> tantek: sorry man, have go to do real work...no time for this = )
- # [17:44] <zewt> we're talking about "length" as a property of a data set, which has nothing to do with the length of a vector or a line in space
- # [17:44] <tantek> slightlyoff :)
- # [17:44] <Ms2ger> Clearly it should be "norm"
- # [17:45] <slightlyoff> tantek: but you know...if you think zewt isn't *just* a troll, I invite you to try
- # [17:45] <jgraham> "cardinality"
- # [17:45] <jgraham> slightlyoff: zewt isn't a troll
- # [17:45] <zewt> i don't care if it's "length" or "size" or "count" or "elephants", all i care is that it be the same term for all of arrays, maps, sets
- # [17:45] <jgraham> But you two rub each other up the wrong way something chronic
- # [17:45] <karlcow> love to hate
- # [17:46] <tantek> jgraham, you have to pay extra for that in SF.
- # [17:47] * Quits: eresair (~eresair@c-24-5-78-71.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [17:47] <zewt> (and since .length is what's already used by JS strings, it wins by default)
- # [17:47] * karlcow is now diving into https://en.wikipedia.org/wiki/Countable_set
- # [17:48] <annevk> Map uses size
- # [17:49] <zewt> then map made a dumb mistake
- # [17:49] <annevk> zewt: it's not settled yet, you could argue it on es-discuss
- # [17:49] * Joins: dbaron (~dbaron@50-0-248-88.dsl.dynamic.sonic.net)
- # [17:50] * Joins: cabanier (~cabanier@c-98-237-137-173.hsd1.wa.comcast.net)
- # [17:50] <karlcow> in my mind, `length` has a unit after it. When `count` does not have.
- # [17:51] <jgraham> karlcow: Then lenght is equally wrong for strings and arrays :)
- # [17:51] <jgraham> *length
- # [17:51] <karlcow> that said programming languages used mostly len()
- # [17:51] <zewt> karlcow: it sounds like you're thinking of "length" as a physical unit--that's simply a different concept of length
- # [17:51] <annevk> DOMTokenList uses .length
- # [17:51] <karlcow> zewt: Pardon my physics ;) that's my academic background.
- # [17:52] <annevk> but the tokens are ordered there iirc
- # [17:52] * Joins: jsoncorwin (~textual@c-98-210-130-242.hsd1.ca.comcast.net)
- # [17:52] * karlcow creates .howmany
- # [17:52] * Quits: jsoncorwin (~textual@c-98-210-130-242.hsd1.ca.comcast.net) (Client Quit)
- # [17:54] <jgraham> annevk: It would be super surprising if you had a Set and a SortedSet and they didn't implement the same API
- # [17:54] <Ms2ger> Sounds like something Java would do
- # [17:55] <annevk> jgraham: are you going to do something about it?
- # [17:55] <zewt> heh, also one of the sillier things C++'s STL does: it only exposes a method for something if it can be computed efficiently
- # [17:55] <zewt> so (iirc) you have .size on strings, but not linked lists; to get that you have to use a count method
- # [17:55] <zewt> which is the worst sort of academic API design
- # [17:56] <jgraham> annevk: By "do something" you mean "join es-discuss and argue about naming"?
- # [17:56] <karlcow> hmmm http://twitter.com/FakeOpvard/
- # [17:57] <annevk> jgraham: yes
- # [17:57] <annevk> Also, Blob.size
- # [17:58] <annevk> ProgressEvent.total
- # [17:58] <annevk> We're all over the map already.
- # [17:58] * Quits: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net) (Quit: sedovsek)
- # [17:58] <karlcow> sweet, all the million ways of counting
- # [18:01] <jgraham> annevk: I'm going with "I probably have more valuable things to do than argue with slightlyoff that he is making the platform harder to learn for no good reason"
- # [18:02] * Joins: vcarbune (~vcarbune@80-218-192-6.dclient.hispeed.ch)
- # [18:03] <tantek> count: more a verb (method) than a noun (property) "Let me count the ways…". length: physical 1-dimensional measure thus implying it depends on the thing you're measuring and how you're measuring it. size: could be arbitrary, but for some reason I associate strongly with "number of bytes this thing takes up in memory".
- # [18:03] <annevk> jgraham: pretty sure he doesn't follow es-discuss closely
- # [18:04] <jgraham> (I would argue that non-native speakers wouldn't get the slight semantic difference between "length" and "size", but since I am a native speaker and I have no idea where the idea that "length" implies "ordered" comes from, I don't think I even need that argument)
- # [18:04] * Joins: nimbu (~nimbu@sjfw1.adobe.com)
- # [18:04] <jgraham> (I can only imagine it comes from exposure to some other programming language (Java?) that makes that distinction)
- # [18:05] <jgraham> tantek: That "some reason" is presumably sizeof(t)
- # [18:05] <zewt> it smells like something taught by a well-intentioned college professor, then internalized and never properly questioned
- # [18:06] <tantek> we leave all the proper questioning to #whatwg naturally
- # [18:06] <tantek> jgraham - yes, that sounds right. from years of C(++) programming.
- # [18:07] <zewt> i have more years of C and C++ than any other language and I've never even heard of that distinction
- # [18:10] * Quits: vcarbune (~vcarbune@80-218-192-6.dclient.hispeed.ch) (Ping timeout: 255 seconds)
- # [18:12] * Joins: jamesr_ (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net)
- # [18:17] <annevk> Hixie: so, how is potential CORS fetch with "No CORS" different from fetch?
- # [18:17] <karlcow> jgraham: for size, I imagine volume, in my head. Maybe because of the French "taille".
- # [18:17] <karlcow> oh we didn't touch yet to quantity :p
- # [18:21] <karlcow> .vastness, .immensity, .magnitude if at least the naming could be more poetic
- # [18:23] * Joins: vcarbune (~vcarbune@80-218-192-6.dclient.hispeed.ch)
- # [18:23] <dglazkov> good morning, Whatwg!
- # [18:23] <annevk> karlcow: we don't want to make it worse
- # [18:24] <annevk> dglazkov: good afternoon
- # [18:24] <annevk> dglazkov: you used to hit tea time :p
- # [18:24] <karlcow> annevk: heh. But that would be more fun. :)
- # [18:25] <annevk> karlcow: only the perverse kind of fun, but I can see how that makes sense to you
- # [18:25] <karlcow> at least that would give "left to interpretation" a meaning.
- # [18:25] * Quits: mitemitreski1 (~mitemitre@212.120.17.179) (Read error: Connection reset by peer)
- # [18:29] * Quits: jamesr_ (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net) (Quit: jamesr_)
- # [18:31] * Joins: Maurice` (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [18:32] * jernoble is now known as jernoble|afk
- # [18:32] * jernoble|afk is now known as jernoble
- # [18:38] * Quits: izhak (~izhak@31.47.117.1) (Ping timeout: 276 seconds)
- # [18:38] <Hixie> annevk: regular fetch doesn't label the thing as cross-origin
- # [18:42] * Quits: darobin (~darobin@78.109.80.74) (Remote host closed the connection)
- # [18:43] * Joins: say2joe (~say2joe@204.56.108.2)
- # [18:48] * Quits: ehsan_ (~ehsan@199.255.40.36) (Remote host closed the connection)
- # [18:51] * Joins: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net)
- # [18:52] <annevk> Hixie: sure, but is that a feature in some way?
- # [18:52] * Quits: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net) (Client Quit)
- # [18:54] * Joins: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net)
- # [18:55] * Quits: smaug____ (~chatzilla@cs181151161.pp.htv.fi) (Remote host closed the connection)
- # [18:55] <Hixie> annevk: how do you mean?
- # [18:55] * Joins: smaug____ (~chatzilla@cs181151161.pp.htv.fi)
- # [18:55] <Hixie> it's a feature for the spec, in that it needs to know for every <img> whether it's cors-same-origin or not
- # [18:55] * Joins: jwalden (~waldo@nat/mozilla/x-ksmmmndmwmzhgxjc)
- # [18:56] <annevk> Hixie: is it a feature of "fetch" that you don't know the label?
- # [18:57] <annevk> Hixie: cause otherwise we could make it one algorithm
- # [18:57] <annevk> (might go offline for a minute or so, will read the minutes)
- # [18:57] <annevk> logs*
- # [18:57] * Parts: adactio (~adactio@host213-123-197-180.in-addr.btopenworld.com)
- # [18:58] * Joins: krawchyk_ (~krawchyk@65.220.49.251)
- # [19:00] <odinho> lol, minutes.
- # [19:00] <odinho> Too much W3C for you Anne.
- # [19:01] <odinho> Or formalized meetings I guess.
- # [19:02] * Quits: krawchyk (~krawchyk@65.220.49.251) (Ping timeout: 244 seconds)
- # [19:03] * Joins: ehsan_ (~ehsan@199.255.40.36)
- # [19:04] * Joins: yodasw16 (~yodasw16@ql1fwhide.rockfin.com)
- # [19:05] * Joins: pablof (~pablof@144.189.31.1)
- # [19:06] <Hixie> annevk: well i don't really care how you implement it, so long as the API doesn't change :-)
- # [19:06] <Hixie> annevk: the key is that when calling this algorithm, i don't know what the mode is
- # [19:07] <Hixie> annevk: i just "Do a potentially CORS-enabled fetch of the resulting absolute URL, with the mode being the state of the element's crossorigin content attribute, the origin being the origin of the script element's Document, and the default origin behaviour set to taint" or similar
- # [19:07] <Hixie> annevk: and then that returns a resource that is "either CORS-same-origin or CORS-cross-origin"
- # [19:07] <Hixie> annevk: i think it would be confusing to have the regular fetch algorithm returning CORS states
- # [19:07] <Hixie> annevk: since every caller would ignore it
- # [19:09] <annevk> but I think at some point every caller will turn into a potential CORS-caller
- # [19:09] <annevk> but yeah, not knowing the CORS-mode makes sense, and we should have "No CORS"
- # [19:10] <annevk> I was just wondering whether there's a material difference between the two which I didn't see
- # [19:10] * Quits: ehsan_ (~ehsan@199.255.40.36) (Remote host closed the connection)
- # [19:13] * Joins: espadrine (~thaddee_t@85-218-9-225.dclient.lsne.ch)
- # [19:13] * Quits: cabanier (~cabanier@c-98-237-137-173.hsd1.wa.comcast.net) (Quit: Leaving.)
- # [19:14] * Quits: heath (quassel@2600:3c02::f03c:91ff:feae:6e5b) (Remote host closed the connection)
- # [19:14] * Joins: heath (quassel@2600:3c02::f03c:91ff:feae:6e5b)
- # [19:16] * Quits: nimbu (~nimbu@sjfw1.adobe.com) (Read error: Connection reset by peer)
- # [19:17] <annevk> Hixie: also see email about Anonymous mode
- # [19:17] * Joins: JesperHansen (~JesperHan@0x5b90c2f0.dhcp.fiberflex.dk)
- # [19:18] * Quits: heath (quassel@2600:3c02::f03c:91ff:feae:6e5b) (Changing host)
- # [19:18] * Joins: heath (quassel@unaffiliated/ybit)
- # [19:18] * heath is now known as ybit2
- # [19:18] * ybit2 is now known as heath
- # [19:18] <annevk> odinho: actually surprisingly few these days, WHATWG ftw
- # [19:19] <Hixie> how do you set Origin: to a unique origin?
- # [19:19] <Hixie> and does Referer: really gets set to about:blank?
- # [19:19] <annevk> Hixie: Origin: null
- # [19:19] <annevk> Hixie: I think that makes Referer omitted
- # [19:19] * Joins: nimbu (~nimbu@sjfw1.adobe.com)
- # [19:20] <Hixie> so wait, why isn't CORS just doing all this automatically when one sets the flag?
- # [19:23] * Joins: cabanier (~cabanier@192.150.22.55)
- # [19:23] * Joins: jamesr_ (jamesr@nat/google/x-xiyfrfczczyuppou)
- # [19:24] * Joins: rniwa (~rniwa@17.212.154.114)
- # [19:24] * Quits: baku (~baku@2-227-7-116.ip183.fastwebnet.it) (Quit: Leaving)
- # [19:27] <zewt> hmm, something that seems like it should be easy but i'm drawing a blank
- # [19:28] * abstractj is now known as abstractj|lunch
- # [19:28] <zewt> i have some CSS drawing a thing (gradient background, rounded corners), used in one UI; i need to export that rendering (with alpha) to a PNG for use in a non-HTML element with similar styles
- # [19:29] <annevk> Hixie: XHR has both anonymous and without credentials
- # [19:30] <annevk> Hixie: anonymous is an extremer variant
- # [19:30] <zewt> bleh, guess it's easier to recreate it in photoshop than to figure out a way to do this
- # [19:30] <Hixie> annevk: confoosing
- # [19:30] <Hixie> annevk: why so many?
- # [19:30] <annevk> sorry, if I would design this now it'd be way different
- # [19:31] <Hixie> hehe
- # [19:31] <Hixie> i know that feeling
- # [19:31] <Hixie> bbiab
- # [19:31] <annevk> initially we just had withCredentials
- # [19:31] <annevk> and then people wanted a mode without Origin or Referer
- # [19:31] <annevk> without any identifying information
- # [19:31] <annevk> and they got enough backing from silly implementors
- # [19:32] <odinho> Silly!
- # [19:32] * Joins: jacobolus (~jacobolus@108-75-75-178.lightspeed.sntcca.sbcglobal.net)
- # [19:33] * Ms2ger never designs anything for that reason
- # [19:34] <annevk> Ms2ger: was Text.serializeXXX not you?
- # [19:34] * Quits: dbaron (~dbaron@50-0-248-88.dsl.dynamic.sonic.net) (Ping timeout: 264 seconds)
- # [19:34] <Ms2ger> Never got implemented, did it? ;)
- # [19:35] <annevk> Ms2ger: "never designs" is clearly false though
- # [19:42] <TabAtkins> zewt: That's what screenshots are for.
- # [19:43] * Joins: jsoncorwin (~textual@c-50-131-117-90.hsd1.ca.comcast.net)
- # [19:47] * Joins: aklein (uid4454@gateway/web/irccloud.com/x-itfwqfjhzmvxydyn)
- # [19:49] * Quits: annevk (~annevk@207.218.72.65) (Remote host closed the connection)
- # [19:51] * Quits: SimonSapin (~simon@vev69-1-82-232-219-95.fbx.proxad.net) (Ping timeout: 252 seconds)
- # [19:53] <zewt> no alpha
- # [19:53] <TabAtkins> Ah, that's true. Darn.
- # [19:53] <TabAtkins> No way, then, since you can't draw DOM into <canvas> yet.
- # [19:57] * Joins: stevefaulkner (~stevefaul@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
- # [20:00] * Quits: nimbu (~nimbu@sjfw1.adobe.com) (Quit: Leaving.)
- # [20:00] * Quits: smaug____ (~chatzilla@cs181151161.pp.htv.fi) (Ping timeout: 264 seconds)
- # [20:01] * jernoble is now known as jernoble|afk
- # [20:01] * jernoble|afk is now known as jernoble
- # [20:03] * Quits: say2joe (~say2joe@204.56.108.2) (Read error: Operation timed out)
- # [20:03] * Joins: say2joe (~say2joe@204.56.108.2)
- # [20:07] * Quits: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net) (Quit: sedovsek)
- # [20:12] * Joins: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net)
- # [20:13] * Quits: tantek (~tantek@70-36-139-86.dsl.dynamic.sonic.net) (Quit: tantek)
- # [20:13] * Joins: nimbu (~nimbu@sjfw1.adobe.com)
- # [20:13] * Joins: tantek (~tantek@70-36-139-86.dsl.dynamic.sonic.net)
- # [20:21] * Joins: SteveF (~chatzilla@63.133.197.135)
- # [20:23] * Quits: malcolmva (~malcolmva@c-67-180-203-233.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [20:23] * Joins: malcolmva (~malcolmva@c-67-180-203-233.hsd1.ca.comcast.net)
- # [20:24] * Joins: say2joe1 (~say2joe@204.56.108.2)
- # [20:25] * Joins: danja (~danny@host167-8-dynamic.8-79-r.retail.telecomitalia.it)
- # [20:26] * Quits: say2joe (~say2joe@204.56.108.2) (Ping timeout: 252 seconds)
- # [20:27] * Krinkle is now known as Krinkle|detached
- # [20:28] * Quits: stevefaulkner (~stevefaul@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com) (Quit: stevefaulkner)
- # [20:30] * abstractj|lunch is now known as abstractj
- # [20:30] * Joins: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net)
- # [20:34] * Quits: sicking (~sicking@c-24-130-172-29.hsd1.ca.comcast.net) (Quit: sicking)
- # [20:37] * Quits: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [20:40] * Quits: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley) (Quit: This computer has gone to sleep)
- # [20:42] * Quits: yodasw16 (~yodasw16@ql1fwhide.rockfin.com) (Quit: yodasw16)
- # [20:43] * Joins: cheron (~cheron@unaffiliated/cheron)
- # [20:47] * Joins: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley)
- # [20:49] * Quits: tndrH (~Rob@cpc4-seac20-2-0-cust858.7-2.cable.virginmedia.com) (Quit: ChatZilla 0.9.90-rdmsoft [XULRunner 18.0.2/20130201065344])
- # [20:51] * Krinkle|detached is now known as Krinkle
- # [20:52] * Quits: krawchyk_ (~krawchyk@65.220.49.251) (Remote host closed the connection)
- # [20:52] * Joins: krawchyk (~krawchyk@65.220.49.251)
- # [20:52] * Quits: krawchyk (~krawchyk@65.220.49.251) (Remote host closed the connection)
- # [20:55] * Joins: darobin (~darobin@78.208.93.24)
- # [20:55] * Quits: darobin (~darobin@78.208.93.24) (Client Quit)
- # [20:55] * Quits: TallTed (~Thud@63.119.36.36) (Ping timeout: 260 seconds)
- # [21:00] * Joins: svl (~me@202.68.83.170)
- # [21:01] * Quits: Ms2ger (~Ms2ger@148.216-242-81.adsl-dyn.isp.belgacom.be) (Quit: nn)
- # [21:02] * Quits: cheron (~cheron@unaffiliated/cheron) (Quit: Leaving.)
- # [21:04] * Joins: TallTed (~Thud@63.119.36.36)
- # [21:05] * Quits: nimbu (~nimbu@sjfw1.adobe.com) (Quit: Leaving.)
- # [21:08] * linclark is now known as linclark|afk
- # [21:15] * Parts: say2joe1 (~say2joe@204.56.108.2)
- # [21:17] * abstractj is now known as abstractj|brb
- # [21:22] * Joins: stevefaulkner (~stevefaul@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
- # [21:24] * Quits: svl (~me@202.68.83.170) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [21:25] * Joins: snowfox_ben (~benschaaf@50-77-199-197-static.hfc.comcastbusiness.net)
- # [21:25] * Joins: barnabywalters (~barnabywa@92.40.253.11.threembb.co.uk)
- # [21:26] * Quits: stevefaulkner (~stevefaul@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com) (Client Quit)
- # [21:33] * abstractj|brb is now known as abstractj
- # [21:39] <JonathanNeal> hello
- # [21:41] * Quits: tantek (~tantek@70-36-139-86.dsl.dynamic.sonic.net) (Quit: tantek)
- # [21:41] * Joins: tantek (~tantek@70-36-139-86.dsl.dynamic.sonic.net)
- # [21:45] * Quits: barnabywalters (~barnabywa@92.40.253.11.threembb.co.uk) (Quit: Back to real life)
- # [21:45] * Joins: necolas (~necolas@8.25.197.24)
- # [21:51] * Quits: jacobolus (~jacobolus@108-75-75-178.lightspeed.sntcca.sbcglobal.net) (Remote host closed the connection)
- # [21:59] <rillian> howdy
- # [21:59] * Joins: ehsan_ (~ehsan@199.255.40.36)
- # [22:02] <JonathanNeal> So, how does <template> get around not having any logic, say for if statements or loops?
- # [22:03] <TabAtkins> JonathanNeal: It has loops. I think we have a way to avoid generating things, as well, which is basically an if.
- # [22:03] <TabAtkins> (Don't know if that's in the current revision of the spec.)
- # [22:07] <JonathanNeal> Is there a draft of the spec that you think might address these things?
- # [22:11] * Quits: gavinc (~gavin@50.0.77.3) (Read error: Connection reset by peer)
- # [22:12] <jamesr> anyone have a good readymade rant about linking to /TR/ ?
- # [22:12] <jamesr> JonathanNeal, https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/templates/index.html
- # [22:12] <Hixie> jamesr: "it's out of date"
- # [22:14] * Joins: gavinc (~gavin@50.0.77.3)
- # [22:14] <jamesr> JonathanNeal, that's pretty heavy on technical detail and light on explanations it seems
- # [22:14] <JonathanNeal> Yea, I'm trying to extrapolate an example.
- # [22:15] <JonathanNeal> > Just after the step labeled "Loop" in the algorithm to reset the insertion mode appropriately, add the following step: If node is a template element, then switch the insertion mode to the current template insertion mode and abort these steps. Modify the step which begins "If node is a head element..." to be …
- # [22:15] * Joins: stevefaulkner (~stevefaul@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
- # [22:24] * Quits: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [22:26] * Joins: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net)
- # [22:27] * Joins: nessy (~silviapf@124-149-71-84.dyn.iinet.net.au)
- # [22:29] * Quits: pablof (~pablof@144.189.31.1) (Quit: ^z)
- # [22:36] * Quits: JesperHansen (~JesperHan@0x5b90c2f0.dhcp.fiberflex.dk) (Read error: Connection reset by peer)
- # [22:37] * abstractj is now known as abstractj|away
- # [22:37] * Joins: JesperHansen (~JesperHan@0x5b90c2f0.dhcp.fiberflex.dk)
- # [22:39] * Joins: jacobolus (~jacobolus@173-164-253-217-SFBA.hfc.comcastbusiness.net)
- # [22:42] * Joins: SimonSapin (~simon@ip-22.net-89-2-144.rev.numericable.fr)
- # [22:43] * Joins: ronaldmansveld (~ronaldman@5ED0EFE5.cm-7-1d.dynamic.ziggo.nl)
- # [22:45] * Quits: stevefaulkner (~stevefaul@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com) (Quit: stevefaulkner)
- # [22:46] * Quits: tantek (~tantek@70-36-139-86.dsl.dynamic.sonic.net) (Quit: tantek)
- # [22:48] <JonathanNeal> https://twitter.com/jon_neal/status/306521507784445952
- # [22:48] <JonathanNeal> IE10 is out for Windows 7.
- # [22:50] * Joins: weinig (~weinig@17.212.155.63)
- # [22:51] * Quits: scor (scor@drupal.org/user/52142/view) (Quit: scor)
- # [22:52] * weinig is now known as weinig|afk
- # [22:55] * Quits: TallTed (~Thud@63.119.36.36)
- # [22:59] * Quits: nessy (~silviapf@124-149-71-84.dyn.iinet.net.au) (Quit: Leaving.)
- # [22:59] * Quits: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [23:00] * Quits: jamesr_ (jamesr@nat/google/x-xiyfrfczczyuppou) (Quit: jamesr_)
- # [23:00] * Joins: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net)
- # [23:01] * Joins: nimbu (~nimbu@184.71.178.219)
- # [23:02] * Joins: jamesr_ (jamesr@nat/google/x-ymqdtvqcmrmwaroz)
- # [23:03] * Quits: nimbu (~nimbu@184.71.178.219) (Client Quit)
- # [23:06] <ronaldmansveld> Does any of you happen to have experience with the w3c community groups?
- # [23:07] * Joins: baku (~baku@2-236-39-253.ip231.fastwebnet.it)
- # [23:07] <ronaldmansveld> As in: has any of you been part of one?
- # [23:12] <jgraham> Yes
- # [23:13] * Joins: snowfox (~benschaaf@50-77-199-197-static.hfc.comcastbusiness.net)
- # [23:13] * Quits: snowfox (~benschaaf@50-77-199-197-static.hfc.comcastbusiness.net) (Client Quit)
- # [23:13] * Quits: Maurice` (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [23:16] <ronaldmansveld> jgraham, what I take from it, these groups create reports that may or may not be used by the w3c to use as the foundation for a working draft, right? So it's like the very first stage of creating specs
- # [23:16] * Quits: snowfox_ben (~benschaaf@50-77-199-197-static.hfc.comcastbusiness.net) (Ping timeout: 256 seconds)
- # [23:16] * Quits: garciawebdev (~garciaweb@190.244.95.154) (Remote host closed the connection)
- # [23:16] * Joins: isherman-book (Adium@nat/google/x-kchgajgcgrmnshhm)
- # [23:16] <TabAtkins> ronaldmansveld: Basically, yes. They're not WGs, so can't produce specs themselves, but it gives a nice gathering-place for interested parties to hash out early ideas into something presentable.
- # [23:17] <ronaldmansveld> jgraham, and secondly, how do these groups work, cause for what I can see some have been created, have contributors, but seem to be doing nothing for like a year
- # [23:18] <ronaldmansveld> TabAtkins, thanks :) That was basically my idea of what they would be doing
- # [23:30] * Joins: birtles (~chatzilla@rtr.mozilla.or.jp)
- # [23:30] * Joins: othermaciej (~mjs@17.245.104.33)
- # [23:31] * jernoble is now known as jernoble|afk
- # [23:31] * jernoble|afk is now known as jernoble
- # [23:34] * Quits: jamesr_ (jamesr@nat/google/x-ymqdtvqcmrmwaroz) (Quit: jamesr_)
- # [23:35] * Joins: tomasf (~tom@c-44dbe555.024-204-6c6b7012.cust.bredbandsbolaget.se)
- # [23:36] * Quits: othermaciej (~mjs@17.245.104.33) (Quit: othermaciej)
- # [23:36] * Joins: mven (~mven@169.241.49.193)
- # [23:36] * Joins: othermaciej (~mjs@17.245.104.33)
- # [23:36] <jgraham> ronaldmansveld: Well it's not really clear that they work :)
- # [23:37] <jgraham> Creating a group is easy
- # [23:37] <jgraham> Creating a critical mass of interested, and relevant, parties actually working on a problem in a meaningful way is hard
- # [23:37] * Quits: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [23:38] <jgraham> e.g. if you want to suggest something new for browsers you really want browser vendors on board
- # [23:38] <jgraham> So you are much better off using WHATWG since they are already there
- # [23:38] <ronaldmansveld> hmm, i see
- # [23:38] <ronaldmansveld> cause in this case there's one group I'm interested in working with, since it touches what I deal with on a daily base
- # [23:39] <ronaldmansveld> but it seems like nothing happened since they started almost a year ago
- # [23:40] <jgraham> Which group?
- # [23:40] <ronaldmansveld> multilingual web site
- # [23:40] <ronaldmansveld> http://www.w3.org/community/mws/
- # [23:42] * Quits: othermaciej (~mjs@17.245.104.33) (Quit: othermaciej)
- # [23:42] * Quits: zdobersek (~zdobersek@cpe-77.38.31.63.cable.t-1.si) (Quit: ZNC - http://znc.in)
- # [23:43] * Joins: jamesr_ (~jamesr@216.239.55.199)
- # [23:43] * Joins: othermaciej (~mjs@17.245.104.33)
- # [23:45] * Quits: SimonSapin (~simon@ip-22.net-89-2-144.rev.numericable.fr) (Ping timeout: 246 seconds)
- # [23:45] * Quits: othermaciej (~mjs@17.245.104.33) (Client Quit)
- # [23:45] <jgraham> Well the good news is that's nothing browser related
- # [23:45] * Quits: baku (~baku@2-236-39-253.ip231.fastwebnet.it) (Quit: Leaving)
- # [23:46] <jgraham> So I guess just try sending mail to the group list and see if you can get some momentum going?
- # [23:46] <ronaldmansveld> I'll wait for my application to come through, and then I will, thanks :)
- # [23:47] <ronaldmansveld> (and even though the start-up document does mention browser-related changes, I disagree with that, but that's something to discuss with the group)
- # [23:47] * Joins: esprehn (uid10445@gateway/web/irccloud.com/x-tkbjbqbabvtrasbp)
- # [23:52] * Quits: jamesr_ (~jamesr@216.239.55.199) (Quit: jamesr_)
- # [23:55] * Joins: jamesr_ (jamesr@nat/google/x-gjngjgcwhsqeacpa)
- # [23:59] * Quits: isherman-book (Adium@nat/google/x-kchgajgcgrmnshhm) (Ping timeout: 276 seconds)
- # Session Close: Wed Feb 27 00:00:00 2013
The end :)