/irc-logs / freenode / #whatwg / 2013-02-26 / end

Options:

  1. # Session Start: Tue Feb 26 00:00:00 2013
  2. # Session Ident: #whatwg
  3. # [00:00] * Joins: isherman1 (isherman@nat/google/x-hwvimzqwvdddmuni)
  4. # [00:02] * Quits: isherman (isherman@nat/google/x-kuqmdoflwlqpuuku) (Ping timeout: 240 seconds)
  5. # [00:03] * Quits: aklein (uid4454@gateway/web/irccloud.com/x-ltoxouihrlnutsmw) (Ping timeout: 256 seconds)
  6. # [00:03] * Quits: nimbu (~nimbu@199-192-185-201.ip.van.radiant.net) (Quit: Leaving.)
  7. # [00:04] * Joins: SteveF (~chatzilla@63.133.197.135)
  8. # [00:05] * Quits: Smylers (~smylers@host86-178-109-32.range86-178.btcentralplus.com) (Quit: Leaving.)
  9. # [00:09] * Joins: cabanier (~cabanier@192.150.22.55)
  10. # [00:10] * Joins: tomasf (~tom@85.229.219.68)
  11. # [00:11] <Hixie> 1.2.3. => [1, 2, 3]
  12. # [00:11] * Quits: yorick (~yorick@oftn/member/yorick) (Read error: Connection reset by peer)
  13. # [00:11] <Hixie> .1.2.3 => ?
  14. # [00:11] <Hixie> [0.1, 2, 3] ?
  15. # [00:13] <Hixie> similarly, -1-2-3 => [-1, 2, 3]; what should -.1-.2-.3 go to?
  16. # [00:13] * Quits: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net) (Quit: linclark)
  17. # [00:13] <Hixie> [-0.1, 2, 3] ? [-0.1, 0.2, 0.3] ?
  18. # [00:16] * Joins: ^esc (~esc_ape@178.115.249.146.wireless.dyn.drei.com)
  19. # [00:16] <esprehn_> Which algorithm is this?
  20. # [00:17] * Quits: weinig (~weinig@17.212.155.63) (Read error: Connection reset by peer)
  21. # [00:17] <TabAtkins> Hixie: Yes to the first question. The latter to the second question.
  22. # [00:17] * Joins: weinig (~weinig@17.212.155.63)
  23. # [00:20] * Quits: jgraham (~jgraham@web91.webfaction.com) (Read error: Operation timed out)
  24. # [00:20] * Joins: jgraham (~jgraham@web91.webfaction.com)
  25. # [00:22] <Hixie> TabAtkins: k, i agree
  26. # [00:22] <Hixie> esprehn_: the parser for table magical sort
  27. # [00:23] <esprehn_> ah
  28. # [00:23] <esprehn_> having worked on a large number of business apps, whatever you choose is going to be wrong anyway :)
  29. # [00:24] * Joins: jamesr_ (jamesr@nat/google/x-zgxgecnnxvdsgusf)
  30. # [00:25] <esprehn_> inevitably someone will file a bug about a cell in the wrong order, and you'll have to hack it up
  31. # [00:32] * Joins: scor (~scor@c-98-216-39-127.hsd1.ma.comcast.net)
  32. # [00:32] * Quits: scor (~scor@c-98-216-39-127.hsd1.ma.comcast.net) (Changing host)
  33. # [00:32] * Joins: scor (~scor@drupal.org/user/52142/view)
  34. # [00:34] <Hixie> esprehn_: yeah
  35. # [00:34] <Hixie> esprehn_: but we can get the basics right at least
  36. # [00:35] <Hixie> if 1e1 and 1.0e1 are both the same as 10
  37. # [00:35] <Hixie> what should 1.e1 be?
  38. # [00:35] <TabAtkins> Ask JS.
  39. # [00:36] <TabAtkins> Apparently, the same as 1.0e1
  40. # [00:36] * Quits: garciawebdev (~garciaweb@190.244.95.154) (Remote host closed the connection)
  41. # [00:36] <TabAtkins> Unfortunately, that's different from CSS, which requires a digit after the ..
  42. # [00:40] * Quits: vcarbune (~vcarbune@80-218-192-6.dclient.hispeed.ch) (Quit: Leaving)
  43. # [00:40] * Quits: sicking (~sicking@c-67-180-8-184.hsd1.ca.comcast.net) (Quit: sicking)
  44. # [00:40] <Hixie> --1--2 => ['-1', '-2'] ?
  45. # [00:41] <Hixie> ---1---2 => ['-1', '-2'] ?
  46. # [00:41] <Hixie> no
  47. # [00:41] <Hixie> [-1, 2] maybe
  48. # [00:41] <Hixie> but even that, probably not
  49. # [00:41] <esprehn_> those should just be strings
  50. # [00:41] * Quits: mattgifford (~mattgiffo@70.102.199.158) (Remote host closed the connection)
  51. # [00:41] <esprehn_> '--1', '--2'
  52. # [00:42] <esprehn_> TabAtkins: The next counters spec needs to call the counter name the "name" not the "identifier"
  53. # [00:42] <Hixie> ---10---2 should clearly sort as greater than ---2---2
  54. # [00:42] * esprehn_ is getting really tired of typing identifier
  55. # [00:42] <Hixie> so there's definitely numbers involved
  56. # [00:42] <Hixie> or maybe i should say, ---1---2 < ---1---10
  57. # [00:42] <Hixie> since the first number might be arguably negative
  58. # [00:42] <esprehn_> Hixie: you want credit card sort there
  59. # [00:42] <Hixie> what is that?
  60. # [00:42] <esprehn_> those aren't negative, it's an ascii sort
  61. # [00:43] <esprehn_> sort as if all those dashes were 0's
  62. # [00:43] <Hixie> why?
  63. # [00:43] <Hixie> that seems no less weird
  64. # [00:43] <esprehn_> because when you have dashes interspersed with numbers it's usually an obfuscation of a value
  65. # [00:44] <esprehn_> or it's a phone number I guess, but not when you have repeated dashes
  66. # [00:44] <esprehn_> ---1---2 is not < ---1---10 unless it has fewer digits, That's not 10, it's 1 and then 0
  67. # [00:45] <Hixie> that seems like an equally wild guess to me
  68. # [00:45] <esprehn_> What's your use case where those are real numbers?
  69. # [00:45] <esprehn_> I'm talking about the real use case of the many tables I've seen with data like that, not guessing
  70. # [00:45] <Hixie> urls?
  71. # [00:45] <esprehn_> credit cards, account numbers, etc.
  72. # [00:45] <Hixie> i haven't got any use cases with multiple hyphens currently
  73. # [00:46] <Hixie> do you have an example of such a table i could study?
  74. # [00:46] <esprehn_> unfortunately not
  75. # [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
  76. # [00:47] <esprehn_> Consider something like amazon that shows Saved Credit Card: ******1234
  77. # [00:47] <esprehn_> So then ------10 and ------12
  78. # [00:47] <Hixie> seems like that would sort fine regardless
  79. # [00:48] * Quits: ginger1 (~Adium@2401:fa00::b9fe:eefe:aafd:68e) (Quit: Leaving.)
  80. # [00:49] <esprehn_> Hixie: hmm
  81. # [00:50] <Hixie> i agree that it means we should sort them as not negative
  82. # [00:50] <Hixie> but other than that, still seems best to sort numerically
  83. # [00:51] * Quits: sedovsek (~robert@BSN-143-158-86.dial-up.dsl.siol.net) (Quit: sedovsek)
  84. # [00:51] * Joins: sicking (~sicking@c-67-180-8-184.hsd1.ca.comcast.net)
  85. # [00:54] * Quits: othermaciej (~mjs@17.245.104.33) (Quit: othermaciej)
  86. # [00:54] * Joins: othermaciej (~mjs@17.245.104.33)
  87. # [00:54] * Quits: othermaciej (~mjs@17.245.104.33) (Client Quit)
  88. # [00:55] * Joins: othermaciej (~mjs@17.245.104.33)
  89. # [00:55] <TabAtkins> Hixie: Empty elements after separation are discarded?
  90. # [00:56] * Quits: othermaciej (~mjs@17.245.104.33) (Client Quit)
  91. # [00:56] <Hixie> no, it's rather more involved than that
  92. # [00:56] <Hixie> right now i'm just trying to work out how to take numbers out of strings
  93. # [00:56] <Hixie> the rest is a separate problem (mostly already solved)
  94. # [00:57] * Joins: othermaciej (~mjs@17.245.104.33)
  95. # [00:57] <esprehn_> I might suggest looking at COBOL and ColdFusion's magical sorting and list operations
  96. # [00:58] <Hixie> will do, thanks
  97. # [01:01] * Quits: smaug____ (~chatzilla@cs181151161.pp.htv.fi) (Ping timeout: 264 seconds)
  98. # [01:02] * Quits: decotii (~decotii@hq.croscon.com) (Quit: Leaving)
  99. # [01:06] * Quits: Badreddin (~Nur@189.193.27.199) (Ping timeout: 276 seconds)
  100. # [01:10] * Quits: weinig (~weinig@17.212.155.63) (Quit: weinig)
  101. # [01:10] * Quits: JonathanNeal (~JonathanN@38.122.109.194) (Quit: JonathanNeal)
  102. # [01:19] * Quits: tomasf (~tom@85.229.219.68) (Quit: tomasf)
  103. # [01:23] * Quits: ^esc (~esc_ape@178.115.249.146.wireless.dyn.drei.com) (Ping timeout: 248 seconds)
  104. # [01:24] * Joins: jdaggett (~jdaggett@180.235.6.26)
  105. # [01:31] * Joins: smaug____ (~chatzilla@212-226-57-39-nat.elisa-mobile.fi)
  106. # [01:34] * Quits: marcosc (~marcosc@bl7-115-221.dsl.telepac.pt) (Read error: Connection reset by peer)
  107. # [01:35] * Joins: marcosc (~marcosc@85.240.115.221)
  108. # [01:37] * Quits: smaug____ (~chatzilla@212-226-57-39-nat.elisa-mobile.fi) (Ping timeout: 246 seconds)
  109. # [01:43] * Joins: jryans_ (~jryans@office.massrel.com)
  110. # [01:46] * Quits: jryans (~jryans@office.massrel.com) (Ping timeout: 240 seconds)
  111. # [01:49] * Quits: jryans_ (~jryans@office.massrel.com) (Quit: Be back later)
  112. # [01:49] * Joins: necolas (~necolas@8.25.197.24)
  113. # [01:49] * Quits: bholley (~bholley@nat/mozilla/x-nclvuzfcdecdaudm) (Quit: bholley)
  114. # [01:49] * Quits: jsbell (jsbell@nat/google/x-hwtckhlzxhijjaxx) (Quit: There's no place like home...)
  115. # [01:49] * Quits: othermaciej (~mjs@17.245.104.33) (Quit: othermaciej)
  116. # [01:51] * Quits: sicking (~sicking@c-67-180-8-184.hsd1.ca.comcast.net) (Quit: sicking)
  117. # [01:52] * Joins: smaug____ (~chatzilla@212-226-64-156-nat.elisa-mobile.fi)
  118. # [01:52] * Quits: necolas (~necolas@8.25.197.24) (Remote host closed the connection)
  119. # [01:58] * Joins: othermaciej (~mjs@17.245.104.33)
  120. # [01:59] * Quits: pablof (~pablof@144.189.31.1) (Quit: ^z)
  121. # [02:00] * Quits: eresair (~eresair@c-24-5-78-71.hsd1.ca.comcast.net) (Remote host closed the connection)
  122. # [02:02] * Joins: aklein (uid4454@gateway/web/irccloud.com/x-czvvqizprcnvadom)
  123. # [02:06] * Joins: eresair (~eresair@c-24-5-78-71.hsd1.ca.comcast.net)
  124. # [02:06] * Quits: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net) (Remote host closed the connection)
  125. # [02:07] * Quits: cabanier (~cabanier@192.150.22.55) (Quit: Leaving.)
  126. # [02:13] * Quits: smaug____ (~chatzilla@212-226-64-156-nat.elisa-mobile.fi) (Ping timeout: 244 seconds)
  127. # [02:14] * Joins: [[zzz]] (~q@node-9bq.pool-125-25.dynamic.totbb.net)
  128. # [02:18] * Quits: [[zz]] (~q@node-1a8n.pool-101-109.dynamic.totbb.net) (Ping timeout: 256 seconds)
  129. # [02:19] * Quits: tantek (~tantek@v-1045.fw1.sfo1.mozilla.net) (Quit: tantek)
  130. # [02:19] * jernoble is now known as jernoble|afk
  131. # [02:19] * jernoble|afk is now known as jernoble
  132. # [02:20] * abstractj|away is now known as abstractj
  133. # [02:20] * Quits: abstractj (~abstractj@redhat/jboss/abstractj) (Excess Flood)
  134. # [02:21] * Joins: sicking (~sicking@c-67-180-8-184.hsd1.ca.comcast.net)
  135. # [02:21] * Joins: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net)
  136. # [02:21] * Joins: abstractj (~abstractj@redhat/jboss/abstractj)
  137. # [02:23] * Quits: othermaciej (~mjs@17.245.104.33) (Read error: Connection reset by peer)
  138. # [02:23] * Joins: othermaciej (~mjs@17.245.104.33)
  139. # [02:24] * Quits: jamesr_ (jamesr@nat/google/x-zgxgecnnxvdsgusf) (Quit: jamesr_)
  140. # [02:31] * Quits: othermaciej (~mjs@17.245.104.33) (Quit: othermaciej)
  141. # [02:34] * Joins: mattgifford (~mattgiffo@67.131.102.78)
  142. # [02:34] * Joins: stalled (~stalled@unaffiliated/stalled)
  143. # [02:35] * Joins: Badreddin (~Nur@189.193.27.199)
  144. # [02:35] * Quits: mattgifford (~mattgiffo@67.131.102.78) (Remote host closed the connection)
  145. # [02:36] * Joins: othermaciej (~mjs@17.245.104.33)
  146. # [02:38] * Joins: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net)
  147. # [02:41] * Quits: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net) (Quit: Leaving...)
  148. # [02:54] * Quits: KevinMarks (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net) (Quit: The computer fell asleep)
  149. # [02:54] * Joins: KevinMarks (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net)
  150. # [02:58] * Joins: jamesr_ (jamesr@nat/google/x-yxtnrkfzrelosgzx)
  151. # [02:59] * Quits: KevinMarks (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net) (Ping timeout: 255 seconds)
  152. # [03:01] * Joins: mven (~mven@68.224.15.53)
  153. # [03:01] * [[zzz]] is now known as [[zz]]
  154. # [03:02] * Joins: ginger1 (~Adium@2401:fa00::3472:f246:c833:c960)
  155. # [03:05] * Joins: tantek (~tantek@66-87-0-98.pools.spcsdns.net)
  156. # [03:06] * Joins: jamesr__ (uid10481@gateway/web/irccloud.com/x-qrfigcnrpfpfgpaz)
  157. # [03:07] * Quits: ehsan__ (~ehsan@199.255.40.36) (Remote host closed the connection)
  158. # [03:07] * Krinkle is now known as Krinkle|detached
  159. # [03:08] * Joins: ehsan (~ehsan@199.255.40.36)
  160. # [03:12] * Quits: ehsan (~ehsan@199.255.40.36) (Ping timeout: 244 seconds)
  161. # [03:13] * Quits: ginger1 (~Adium@2401:fa00::3472:f246:c833:c960) (Ping timeout: 264 seconds)
  162. # [03:16] * Joins: ginger1 (~Adium@2401:fa00::3472:f246:c833:c960)
  163. # [03:17] * Joins: cabanier (~cabanier@c-98-237-137-173.hsd1.wa.comcast.net)
  164. # [03:22] * Quits: jsoncorwin (~textual@c-50-131-117-90.hsd1.ca.comcast.net) (Quit: Computer has gone to sleep.)
  165. # [03:24] * Quits: cabanier (~cabanier@c-98-237-137-173.hsd1.wa.comcast.net) (Quit: Leaving.)
  166. # [03:27] * Joins: ehsan (~ehsan@rrcs-70-62-98-146.midsouth.biz.rr.com)
  167. # [03:27] * Quits: aklein (uid4454@gateway/web/irccloud.com/x-czvvqizprcnvadom)
  168. # [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])
  169. # [03:36] * Joins: jryans (~jryans@cpe-70-113-92-118.austin.res.rr.com)
  170. # [03:38] * Quits: jamesr_ (jamesr@nat/google/x-yxtnrkfzrelosgzx) (Quit: jamesr_)
  171. # [03:40] * Joins: KevinMarks (~KevinMark@sccc-66-78-236-243.smartcity.com)
  172. # [03:41] * Quits: othermaciej (~mjs@17.245.104.33) (Quit: othermaciej)
  173. # [04:01] * Quits: sicking (~sicking@c-67-180-8-184.hsd1.ca.comcast.net) (Quit: sicking)
  174. # [04:07] * Joins: jamesr_ (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net)
  175. # [04:13] * Quits: jamesr_ (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net) (Quit: jamesr_)
  176. # [04:18] * Quits: tantek (~tantek@66-87-0-98.pools.spcsdns.net) (Quit: tantek)
  177. # [04:25] * Quits: Zauberfisch (~Zauberfis@2a01:4f8:100:73c3::3) (Read error: Connection reset by peer)
  178. # [04:26] * Joins: Zauberfisch (~Zauberfis@2a01:4f8:100:73c3::3)
  179. # [04:27] * Quits: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  180. # [04:30] * Joins: svl (~me@202.68.83.170)
  181. # [04:30] <karlcow> MikeSmith: I guess it is not Anne's version https://dvcs.w3.org/hg/url/raw-file/tip/Overview.html
  182. # [04:31] <karlcow> ah found http://url.spec.whatwg.org/
  183. # [04:36] * Quits: KevinMarks (~KevinMark@sccc-66-78-236-243.smartcity.com) (Quit: The computer fell asleep)
  184. # [04:36] * Joins: KevinMarks (~KevinMark@sccc-66-78-236-243.smartcity.com)
  185. # [04:37] * Quits: Badreddin (~Nur@189.193.27.199) (Ping timeout: 276 seconds)
  186. # [04:38] * Joins: jacobolus (~jacobolus@2602:306:37fe:67f0:225:ff:fe4e:996d)
  187. # [04:40] * Quits: KevinMarks (~KevinMark@sccc-66-78-236-243.smartcity.com) (Ping timeout: 244 seconds)
  188. # [04:48] * Joins: j_wright (~jwright@ip70-173-176-189.lv.lv.cox.net)
  189. # [04:48] * Quits: OnlyMax (~OnlyMax@187-126-25-153.user.veloxzone.com.br)
  190. # [04:50] * Quits: scor (~scor@drupal.org/user/52142/view) (Quit: scor)
  191. # [04:52] * Joins: Badreddin (~Nur@189.193.98.57)
  192. # [04:52] * Quits: jacobolus (~jacobolus@2602:306:37fe:67f0:225:ff:fe4e:996d) (Remote host closed the connection)
  193. # [04:55] * Quits: ehsan (~ehsan@rrcs-70-62-98-146.midsouth.biz.rr.com) (Remote host closed the connection)
  194. # [04:55] * Joins: jarek (~jarek@unaffiliated/jarek)
  195. # [04:59] * Joins: cabanier (~cabanier@c-98-237-137-173.hsd1.wa.comcast.net)
  196. # [05:02] * Quits: Philip` (~philip@compass.zaynar.co.uk) (Read error: Operation timed out)
  197. # [05:02] * Joins: Philip` (~philip@92.243.11.39)
  198. # [05:04] * Joins: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net)
  199. # [05:07] * Quits: Badreddin (~Nur@189.193.98.57) (Remote host closed the connection)
  200. # [05:09] * Joins: JonathanNeal (~JonathanN@cpe-142-11-82-156.socal.rr.com)
  201. # [05:24] * Joins: SimonSapin (~simon@89.2.144.22)
  202. # [05:25] * Joins: jacobolus (~jacobolus@99-127-230-127.lightspeed.sntcca.sbcglobal.net)
  203. # [05:28] * Quits: SimonSapin (~simon@89.2.144.22) (Ping timeout: 245 seconds)
  204. # [05:29] * Joins: SimonSapin (~simon@ip-22.net-89-2-144.rev.numericable.fr)
  205. # [05:31] * Quits: ginger1 (~Adium@2401:fa00::3472:f246:c833:c960) (Quit: Leaving.)
  206. # [05:32] * Quits: nessy (silviapf@nat/google/x-besxypgvucllpqil) (Quit: Leaving.)
  207. # [05:39] * Joins: jamesr_ (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net)
  208. # [05:39] * Joins: jsoncorwin (~textual@c-98-210-130-242.hsd1.ca.comcast.net)
  209. # [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)
  210. # [05:47] * Joins: dgrogan (dgrogan@nat/google/x-aadhahrveeiohbqp)
  211. # [05:48] * Quits: jamesr_ (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net) (Quit: jamesr_)
  212. # [05:48] * Quits: JohnAlbin (~JohnAlbin@114-36-36-23.dynamic.hinet.net) (Ping timeout: 255 seconds)
  213. # [05:59] <Hixie> what should 1.2a3.4a5.6 be treated like?
  214. # [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?
  215. # [06:01] * Quits: lokling (~quassel@quassel.woboq.de) (Remote host closed the connection)
  216. # [06:13] * Joins: JohnAlbin (~JohnAlbin@114-36-36-23.dynamic.hinet.net)
  217. # [06:21] * Quits: svl (~me@202.68.83.170) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  218. # [06:21] * Quits: JohnAlbin (~JohnAlbin@114-36-36-23.dynamic.hinet.net) (Ping timeout: 248 seconds)
  219. # [06:34] * Joins: esprehn__ (~esprehn@207.198.105.20)
  220. # [06:39] * Joins: JohnAlbin (~JohnAlbin@114-36-36-23.dynamic.hinet.net)
  221. # [06:39] * Quits: jryans (~jryans@cpe-70-113-92-118.austin.res.rr.com) (Quit: Be back later)
  222. # [06:40] * Quits: rniwa (~rniwa@17.212.154.114) (Quit: rniwa)
  223. # [06:42] * Joins: lokling (~quassel@quassel.woboq.de)
  224. # [06:48] * Quits: cabanier (~cabanier@c-98-237-137-173.hsd1.wa.comcast.net) (Quit: Leaving.)
  225. # [06:52] * Quits: esprehn__ (~esprehn@207.198.105.20) (Quit: esprehn__)
  226. # [06:52] * Joins: esprehn__ (~esprehn@207.198.105.20)
  227. # [06:52] * Quits: esprehn__ (~esprehn@207.198.105.20) (Client Quit)
  228. # [06:55] * Joins: marcosc_ (~marcosc@bl11-99-228.dsl.telepac.pt)
  229. # [06:58] * Quits: marcosc (~marcosc@85.240.115.221) (Ping timeout: 245 seconds)
  230. # [07:04] * Joins: plutoniix (~plutoniix@ppp-110-168-3-240.revip5.asianet.co.th)
  231. # [07:10] * Quits: hendry (~hendry@sg.webconverger.com) (Ping timeout: 252 seconds)
  232. # [07:26] * Joins: jamesr_ (~jamesr@173.164.251.190)
  233. # [07:34] * Quits: jacobolus (~jacobolus@99-127-230-127.lightspeed.sntcca.sbcglobal.net) (Remote host closed the connection)
  234. # [07:40] * Quits: jarek (~jarek@unaffiliated/jarek) (Quit: jarek)
  235. # [07:42] * Quits: SteveF (~chatzilla@63.133.197.135) (Quit: ChatZilla 0.9.90 [Firefox 22.0a1/20130225031141])
  236. # [07:45] * Joins: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net)
  237. # [07:46] * Quits: TabAtkins (tabatkins@nat/google/x-pupuuqiegxvxbfdp) (Ping timeout: 255 seconds)
  238. # [07:47] * Joins: TabAtkins (~tabatkins@216.239.45.72)
  239. # [07:55] * Joins: Smylers (~smylers@host86-178-109-32.range86-178.btcentralplus.com)
  240. # [08:00] * abstractj is now known as abstractj|away
  241. # [08:06] <MikeSmith> Hixie: I guess 1.2,3.4,5.6 would seem like the most intuitive
  242. # [08:06] <MikeSmith> unsurprising
  243. # [08:17] * Quits: isherman1 (isherman@nat/google/x-hwvimzqwvdddmuni) (Read error: Connection reset by peer)
  244. # [08:18] * Joins: isherman (isherman@nat/google/x-hzzvegrkbswoacmh)
  245. # [08:29] * Joins: svl (~me@202.68.83.170)
  246. # [08:30] * Quits: Smylers (~smylers@host86-178-109-32.range86-178.btcentralplus.com) (Quit: Leaving.)
  247. # [08:32] * Joins: jacobolus (~jacobolus@2600:1010:b103:dde:225:ff:fe4e:996d)
  248. # [08:37] * Quits: eresair (~eresair@c-24-5-78-71.hsd1.ca.comcast.net) (*.net *.split)
  249. # [08:37] * Quits: birtles (~chatzilla@rtr.mozilla.or.jp) (*.net *.split)
  250. # [08:37] * Quits: tomaw (tom@freenode/staff/tomaw) (*.net *.split)
  251. # [08:37] * Quits: slightlyoff (uid1768@gateway/web/irccloud.com/x-yburhzjzfupjbeoi) (*.net *.split)
  252. # [08:37] * Quits: asmodai (asmodai@freebsd/developer/asmodai) (*.net *.split)
  253. # [08:37] * Quits: gavinc (~gavin@50.0.77.3) (*.net *.split)
  254. # [08:37] * Quits: eric_carlson (~eric@17.212.152.104) (*.net *.split)
  255. # [08:37] * Quits: scottjehl______ (uid3055@gateway/web/irccloud.com/x-otremgxdlhvaiyak) (*.net *.split)
  256. # [08:37] * Quits: astearns (~astearns@192.150.22.5) (*.net *.split)
  257. # [08:37] * Quits: jahman (~woops@129.175.204.73) (*.net *.split)
  258. # [08:37] * Quits: badfw2 (~v@220.78.68.4) (*.net *.split)
  259. # [08:37] * Quits: paul_irish (~paul_iris@ve.hsh6wjwx.vesrv.com) (*.net *.split)
  260. # [08:37] * Quits: sangwhan (~sangwhan@1.234.23.206) (*.net *.split)
  261. # [08:37] * Quits: jacobolus (~jacobolus@2600:1010:b103:dde:225:ff:fe4e:996d) (*.net *.split)
  262. # [08:37] * Quits: Zauberfisch (~Zauberfis@2a01:4f8:100:73c3::3) (*.net *.split)
  263. # [08:37] * Quits: toddmparker___ (uid3054@gateway/web/irccloud.com/x-pgwerhcjdomzxtip) (*.net *.split)
  264. # [08:37] * Quits: globbot (~logbot@lump.glob.com.au) (*.net *.split)
  265. # [08:37] * Quits: Hixie (~ianh@178.255.149.100) (*.net *.split)
  266. # [08:37] * Quits: svl (~me@202.68.83.170) (*.net *.split)
  267. # [08:37] * Quits: marcosc_ (~marcosc@bl11-99-228.dsl.telepac.pt) (*.net *.split)
  268. # [08:37] * Quits: dgrogan (dgrogan@nat/google/x-aadhahrveeiohbqp) (*.net *.split)
  269. # [08:37] * Quits: Adawerk (~ada@169.241.49.57) (*.net *.split)
  270. # [08:37] * Quits: moo-_- (miohtama@lakka.kapsi.fi) (*.net *.split)
  271. # [08:37] * Quits: hasather (~hasather@office.oslo.opera.com) (*.net *.split)
  272. # [08:37] * Quits: rwaldron (rwaldron@gateway/shell/jquery.com/x-krcltjycefmjtmjk) (*.net *.split)
  273. # [08:37] * Quits: broquaint (~dbrook@static.94.217.47.78.clients.your-server.de) (*.net *.split)
  274. # [08:37] * Quits: Garbee (~Garbee@lb1.cluster.grephix.nl) (*.net *.split)
  275. # [08:37] * Quits: Krinkle|detached (~Krinkle@wikimedia/Krinkle) (*.net *.split)
  276. # [08:37] * Quits: edsu (~edsu@pdpc/supporter/active/edsu) (*.net *.split)
  277. # [08:37] * Quits: JohnAlbin (~JohnAlbin@114-36-36-23.dynamic.hinet.net) (*.net *.split)
  278. # [08:37] * Quits: pims (~woops@ip-103.net-82-216-85.rev.numericable.fr) (*.net *.split)
  279. # [08:37] * Quits: ivan`` (~ivan@unaffiliated/ivan/x-000001) (*.net *.split)
  280. # [08:37] * Quits: boaz (~boaz@li326-230.members.linode.com) (*.net *.split)
  281. # [08:37] * Quits: MikeSmith (~mike@sideshowbarker.net) (*.net *.split)
  282. # [08:37] * Quits: doublec (~doublec@unaffiliated/doublec) (*.net *.split)
  283. # [08:37] * Quits: ajt_ (~ajt@li181-64.members.linode.com) (*.net *.split)
  284. # [08:37] * Quits: isherman (isherman@nat/google/x-hzzvegrkbswoacmh) (*.net *.split)
  285. # [08:37] * Quits: SimonSapin (~simon@ip-22.net-89-2-144.rev.numericable.fr) (*.net *.split)
  286. # [08:37] * Quits: Jasper (magcius@unaffiliated/magcius) (*.net *.split)
  287. # [08:37] * Quits: beowulf (uid116@pdpc/supporter/professional/beowulf) (*.net *.split)
  288. # [08:37] * Quits: cfq (~cfq@static.85-10-200-244.clients.your-server.de) (*.net *.split)
  289. # [08:37] * Quits: hsivonen (~hsivonen@srv-e205.esp.mediateam.fi) (*.net *.split)
  290. # [08:37] * Quits: heath (quassel@2600:3c02::f03c:91ff:feae:6e5b) (*.net *.split)
  291. # [08:37] * Quits: jamesr (jamesr@nat/google/x-mgwkoyyhtvkongpj) (*.net *.split)
  292. # [08:37] * Quits: beverloo (beverloo@nat/google/x-wskvyiwjhlnesuwt) (*.net *.split)
  293. # [08:37] * Quits: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net) (*.net *.split)
  294. # [08:37] * Quits: jernoble (~jernoble@17.212.152.13) (*.net *.split)
  295. # [08:37] * Quits: jmason (~jmason@174.137.103.143) (*.net *.split)
  296. # [08:37] * Quits: bacilla (~karolis@unaffiliated/velkam) (*.net *.split)
  297. # [08:37] * Quits: cwilso (uid10206@gateway/web/irccloud.com/x-oknpsanbbodztbus) (*.net *.split)
  298. # [08:37] * Quits: bzed (~bzed@devel.recluse.de) (*.net *.split)
  299. # [08:37] * Quits: NimeshNeema (uid2689@gateway/web/irccloud.com/x-stkdilznmlaktkkx) (*.net *.split)
  300. # [08:37] * Quits: nunnun (~hiro@2001:200:1c0:3624:20c:29ff:fe02:11c8) (*.net *.split)
  301. # [08:37] * Quits: muyyatin (~muyyatin@108-75-14-162.lightspeed.sndgca.sbcglobal.net) (*.net *.split)
  302. # [08:37] * Quits: TabAtkins (~tabatkins@216.239.45.72) (*.net *.split)
  303. # [08:37] * Quits: plutoniix (~plutoniix@ppp-110-168-3-240.revip5.asianet.co.th) (*.net *.split)
  304. # [08:37] * Quits: Benvie (~brandon@cpe-174-097-159-175.nc.res.rr.com) (*.net *.split)
  305. # [08:37] * Quits: Lachy (~Lachy@cm-84.215.19.229.getinternet.no) (*.net *.split)
  306. # [08:37] * Quits: abarth (uid5294@gateway/web/irccloud.com/x-yrlakaeebaejihrt) (*.net *.split)
  307. # [08:37] * Quits: ojan_away (uid5519@gateway/web/irccloud.com/x-uhvxffjvgaoqqpsu) (*.net *.split)
  308. # [08:37] * Quits: fishd (darin@nat/google/x-jlpscwwfdbabypit) (*.net *.split)
  309. # [08:37] * Quits: jochen__ (jochen@nat/google/x-clzievpylbypijzn) (*.net *.split)
  310. # [08:37] * Quits: Dantman (~dantman@mediawiki/dantman) (*.net *.split)
  311. # [08:37] * Quits: brainproxy (~brainprox@pdpc/supporter/gold/brainproxy) (*.net *.split)
  312. # [08:37] * Quits: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com) (*.net *.split)
  313. # [08:37] * Quits: esprehn_ (esprehn@nat/google/x-hurblhfowgvsvklb) (*.net *.split)
  314. # [08:37] * Quits: skaegi (uid5971@gateway/web/irccloud.com/x-abrqbvbsddpkvqqq) (*.net *.split)
  315. # [08:37] * Quits: webguynow (~webguynow@c-24-1-222-204.hsd1.il.comcast.net) (*.net *.split)
  316. # [08:37] * Quits: rcombs (~rcombs@rodgercombs.tk) (*.net *.split)
  317. # [08:37] * Quits: dgorbik (~dgorbik@2620:149:4:304:19fb:7930:e0e4:26aa) (*.net *.split)
  318. # [08:37] * Quits: kochi (~kochi@2401:fa00:4:1004:26be:5ff:fe03:db82) (*.net *.split)
  319. # [08:37] * Quits: ahf (ahf@irssi/staff/ahf) (*.net *.split)
  320. # [08:37] * Quits: nw (nw@kapsi.fi) (*.net *.split)
  321. # [08:37] * Quits: Kingdutch (~kingdutch@176.58.96.4) (*.net *.split)
  322. # [08:37] * Quits: mbatle (mbatle@pasanda.collabora.co.uk) (*.net *.split)
  323. # [08:37] * Quits: gavin_ (~gavin@76.14.87.162) (*.net *.split)
  324. # [08:37] * Quits: Scorchin (uid1242@gateway/web/irccloud.com/x-ovrckipvcwjmmeen) (*.net *.split)
  325. # [08:37] * Quits: othree_ (~othree@li379-129.members.linode.com) (*.net *.split)
  326. # [08:37] * Quits: jtcranmer (~jcranmer@ltsp2.csl.tjhsst.edu) (*.net *.split)
  327. # [08:37] * Quits: remysharp (uid4345@gateway/web/irccloud.com/x-rkfargwzyiprtruj) (*.net *.split)
  328. # [08:37] * Quits: gnarf (~gnarf@unaffiliated/gnarf) (*.net *.split)
  329. # [08:37] * Quits: jgraham (~jgraham@web91.webfaction.com) (*.net *.split)
  330. # [08:37] * Quits: boblet (uid1921@gateway/web/irccloud.com/x-arjxrjvkonchjgfv) (*.net *.split)
  331. # [08:37] * Quits: hihuz (~sb@78.141.71.86.rev.sfr.net) (*.net *.split)
  332. # [08:37] * Quits: Dashiva (Dashiva@wikia/Dashiva) (*.net *.split)
  333. # [08:37] * Quits: yoshiki (yoshiki@nat/google/x-pwayunwglgbagwvs) (*.net *.split)
  334. # [08:37] * Quits: nephyrin (~neph@nat/mozilla/x-yxbrkeeoubhonexn) (*.net *.split)
  335. # [08:37] * Quits: sindresorhus (~sindresor@ec2-23-20-153-157.compute-1.amazonaws.com) (*.net *.split)
  336. # [08:37] * Quits: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley) (*.net *.split)
  337. # [08:37] * Quits: BruNeX (uid4730@gateway/web/irccloud.com/x-vzcjexzisexryqht) (*.net *.split)
  338. # [08:37] * Quits: matijsb_ (uid2278@gateway/web/irccloud.com/x-nerzlbbnfffymlgw) (*.net *.split)
  339. # [08:37] * Quits: ryanseddon (uid1832@gateway/web/irccloud.com/x-lykdhygkfkpnsslq) (*.net *.split)
  340. # [08:37] * Quits: ricea (ricea@nat/google/x-xlyrclxrvzwrmjhe) (*.net *.split)
  341. # [08:37] * Quits: eighty4 (~eighty4@unaffiliated/eighty4) (*.net *.split)
  342. # [08:37] * Quits: Raymondo (uid10176@gateway/web/irccloud.com/x-mnzvbsathymjvweo) (*.net *.split)
  343. # [08:37] * Quits: jamesr_ (~jamesr@173.164.251.190) (*.net *.split)
  344. # [08:37] * Quits: jamesr__ (uid10481@gateway/web/irccloud.com/x-qrfigcnrpfpfgpaz) (*.net *.split)
  345. # [08:37] * Quits: mven (~mven@68.224.15.53) (*.net *.split)
  346. # [08:37] * Quits: abstractj|away (~abstractj@redhat/jboss/abstractj) (*.net *.split)
  347. # [08:37] * Quits: jdaggett (~jdaggett@180.235.6.26) (*.net *.split)
  348. # [08:37] * Quits: viduthalai1947 (uid5404@gateway/web/irccloud.com/x-pxavgbzxaipshavh) (*.net *.split)
  349. # [08:37] * Quits: falken (falken@nat/google/x-abrbkniiepbxixhr) (*.net *.split)
  350. # [08:37] * Quits: reggna (~reggna@46.137.95.132) (*.net *.split)
  351. # [08:37] * Quits: beverloo- (~peter@85.17.3.181) (*.net *.split)
  352. # [08:37] * Quits: inimino (~inimino@oftn/board/inimino) (*.net *.split)
  353. # [08:37] * Quits: gsnedders (~gsnedders@mail.gsnedders.com) (*.net *.split)
  354. # [08:37] * Quits: jsoncorwin (~textual@c-98-210-130-242.hsd1.ca.comcast.net) (*.net *.split)
  355. # [08:37] * Quits: JesperHansen (~JesperHan@0x5b90c2f0.dhcp.fiberflex.dk) (*.net *.split)
  356. # [08:37] * Quits: karlcow (~karl@nerval.la-grange.net) (*.net *.split)
  357. # [08:37] * Quits: nonge_ (~nonge@p5082A5B7.dip.t-dialin.net) (*.net *.split)
  358. # [08:37] * Quits: benschwarz (uid2121@gateway/web/irccloud.com/x-ehepmzrhshppbqtn) (*.net *.split)
  359. # [08:37] * Quits: mh0 (mh0@unaffiliated/mh0) (*.net *.split)
  360. # [08:37] * Quits: arv (uid4269@gateway/web/irccloud.com/x-bcoyvprsmzksbatb) (*.net *.split)
  361. # [08:37] * Quits: chee (~chee@fsf/member/chee) (*.net *.split)
  362. # [08:37] * Quits: payman (~payman@static-212-247-211-195.cust.tele2.se) (*.net *.split)
  363. # [08:37] * Quits: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net) (*.net *.split)
  364. # [08:37] * Quits: espadrine (~thaddee_t@85-218-9-225.dclient.lsne.ch) (*.net *.split)
  365. # [08:37] * Quits: lilmonkey (~colin@pdpc/supporter/professional/riven) (*.net *.split)
  366. # [08:37] * Quits: kinetik (~kinetik@121.99.36.162) (*.net *.split)
  367. # [08:37] * Quits: webben (~benjamin@173-203-84-17.static.cloud-ips.com) (*.net *.split)
  368. # [08:37] * Quits: jayne (~jayne@freenode/staff/jayne) (*.net *.split)
  369. # [08:37] * Quits: ShaneHud1on (~sh548@raptor.ukc.ac.uk) (*.net *.split)
  370. # [08:37] * Quits: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net) (*.net *.split)
  371. # [08:37] * Quits: Philip` (~philip@92.243.11.39) (*.net *.split)
  372. # [08:37] * Quits: [[zz]] (~q@node-9bq.pool-125-25.dynamic.totbb.net) (*.net *.split)
  373. # [08:37] * Quits: gavin (~gavin@firefox/developer/gavin) (*.net *.split)
  374. # [08:37] * Quits: timeless (uid4015@firefox/developer/timeless) (*.net *.split)
  375. # [08:37] * Quits: Martijnc (~Martijn@is-aweso.me) (*.net *.split)
  376. # [08:37] * Quits: kborchers (~kborchers@unaffiliated/kborchers) (*.net *.split)
  377. # [08:37] * Quits: bretolius (~boot@ks393582.kimsufi.com) (*.net *.split)
  378. # [08:37] * Quits: manu-db (~msporny@216.252.204.51) (*.net *.split)
  379. # [08:37] * Quits: Phae (uid455@gateway/web/irccloud.com/x-sylhxcajulvhdkgx) (*.net *.split)
  380. # [08:37] * Quits: toyoshiAw (~toyoshim@yuri.twintail.org) (*.net *.split)
  381. # [08:37] * Quits: scheib (uid4467@gateway/web/irccloud.com/x-ueybdytzbfoaayhb) (*.net *.split)
  382. # [08:37] * Quits: Somatt_wrk (~somattwrk@darkstar2.fullsix.com) (*.net *.split)
  383. # [08:37] * Quits: bentruyman (~bentruyma@li159-104.members.linode.com) (*.net *.split)
  384. # [08:37] * Quits: carlos_antonio (~benway@unaffiliated/disusered) (*.net *.split)
  385. # [08:37] * Quits: rafaelw___ (uid4459@gateway/web/irccloud.com/x-hlluxqudtpwiarft) (*.net *.split)
  386. # [08:37] * Quits: jmb (~jmb@mail.parsifal.org.uk) (*.net *.split)
  387. # [08:37] * Quits: lokling (~quassel@quassel.woboq.de) (*.net *.split)
  388. # [08:37] * Quits: matjas (uid2247@gateway/web/irccloud.com/x-kwloybmykeirzwof) (*.net *.split)
  389. # [08:37] * Quits: hober (~ted@unaffiliated/hober) (*.net *.split)
  390. # [08:37] * Quits: malcolmva (~malcolmva@c-67-180-203-233.hsd1.ca.comcast.net) (*.net *.split)
  391. # [08:37] * Quits: wilhelm (~wilhelm@178.255.149.100) (*.net *.split)
  392. # [08:37] * Quits: Somatt (famic@hidden.dns.ug) (*.net *.split)
  393. # [08:37] * Quits: scott_gonzalez (~gonzasi0@205.186.165.147) (*.net *.split)
  394. # [08:37] * Quits: kbrosnan (~kbrosnan@firefox/community/qa/kbrosnan) (*.net *.split)
  395. # [08:37] * Quits: JonathanNeal (~JonathanN@cpe-142-11-82-156.socal.rr.com) (*.net *.split)
  396. # [08:37] * Quits: ukai (ukai@nat/google/x-ghbvwvjapwcdsbse) (*.net *.split)
  397. # [08:37] * Quits: wycats__ (uid79@gateway/web/irccloud.com/x-lyttomdrqroutsrn) (*.net *.split)
  398. # [08:37] * Quits: nielsle (~nielsle@3239149-cl69.boa.fiberby.dk) (*.net *.split)
  399. # [08:37] * Quits: romainhuet (uid2533@gateway/web/irccloud.com/x-vqnvteftybsyskgk) (*.net *.split)
  400. # [08:37] * Quits: ryuone_ (~ryuone@133.242.16.101) (*.net *.split)
  401. # [08:37] * Quits: Yudai___ (~Yudai@nttkyo385038.tkyo.nt.ngn2.ppp.infoweb.ne.jp) (*.net *.split)
  402. # [08:37] * Quits: Obvious (tachikoma@188.226.74.2) (*.net *.split)
  403. # [08:37] * Quits: Workshiva (~Dashiva@74.125.121.65) (*.net *.split)
  404. # [08:37] * Quits: krijn_ (uid2319@gateway/web/irccloud.com/x-iyulsybqexnafmhr) (*.net *.split)
  405. # [08:37] * Quits: WesleyL (~Wesley@static.43.95.46.78.clients.your-server.de) (*.net *.split)
  406. # [08:37] * Quits: Rubennn (~Rubennn@apher.gewooniets.nl) (*.net *.split)
  407. # [08:37] * Quits: dglazkov (uid4270@gateway/web/irccloud.com/x-oqceisupxgndxwiw) (*.net *.split)
  408. # [08:37] * Quits: zewt (~foo@ec2-50-17-220-142.compute-1.amazonaws.com) (*.net *.split)
  409. # [08:37] * Quits: rillian (~giles@mf4-xiph.osuosl.org) (*.net *.split)
  410. # [08:37] * Quits: odinho (odinho@dalvik.ping.uio.no) (*.net *.split)
  411. # [08:37] * Quits: stalled (~stalled@unaffiliated/stalled) (*.net *.split)
  412. # [08:37] * Quits: mpt (~mpt@canonical/mpt) (*.net *.split)
  413. # [08:37] * Quits: twisted` (uid6794@gateway/web/irccloud.com/x-xzlcrvgtmxuityzz) (*.net *.split)
  414. # [08:37] * Quits: asdf` (asdf@bigfr.klupek.org) (*.net *.split)
  415. # [08:37] * Quits: riddle (riddle@us.yunix.net) (*.net *.split)
  416. # [08:37] * Quits: Jedi_ (~Jedi@jedi.org) (*.net *.split)
  417. # [08:37] * Quits: manu1 (~chatzilla@pool-96-240-173-62.ronkva.east.verizon.net) (*.net *.split)
  418. # [08:37] * Quits: mounir (~mounir@oldworld.fr) (*.net *.split)
  419. # [08:37] * Quits: akamike (~uid5089@gateway/web/irccloud.com/x-apiqgnvvmmytkrje) (*.net *.split)
  420. # [08:37] * Quits: sawrubh (uid6719@gateway/web/irccloud.com/x-sxgrnmvugeqhryfw) (*.net *.split)
  421. # [08:37] * Quits: tndrH (~Rob@cpc4-seac20-2-0-cust858.7-2.cable.virginmedia.com) (*.net *.split)
  422. # [08:37] * Quits: ajpiano (~ajpiano@li98-57.members.linode.com) (*.net *.split)
  423. # [08:37] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (Max SendQ exceeded)
  424. # [08:38] * Quits: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (Ping timeout: 256 seconds)
  425. # [08:49] * Joins: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net)
  426. # [08:49] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
  427. # [08:49] * Joins: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net)
  428. # [08:49] * Joins: nessy (~silviapf@124.149.71.84)
  429. # [08:49] * Joins: dbaron (~dbaron@50-0-248-88.dsl.dynamic.sonic.net)
  430. # [08:49] * Joins: SteveF (~chatzilla@63.133.197.135)
  431. # [08:49] * Joins: svl (~me@202.68.83.170)
  432. # [08:49] * Joins: isherman (isherman@nat/google/x-hzzvegrkbswoacmh)
  433. # [08:49] * Joins: TabAtkins (~tabatkins@216.239.45.72)
  434. # [08:49] * Joins: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net)
  435. # [08:49] * Joins: jamesr_ (~jamesr@173.164.251.190)
  436. # [08:49] * Joins: plutoniix (~plutoniix@ppp-110-168-3-240.revip5.asianet.co.th)
  437. # [08:49] * Joins: marcosc_ (~marcosc@bl11-99-228.dsl.telepac.pt)
  438. # [08:49] * Joins: lokling (~quassel@quassel.woboq.de)
  439. # [08:49] * Joins: JohnAlbin (~JohnAlbin@114-36-36-23.dynamic.hinet.net)
  440. # [08:49] * Joins: dgrogan (dgrogan@nat/google/x-aadhahrveeiohbqp)
  441. # [08:49] * Joins: jsoncorwin (~textual@c-98-210-130-242.hsd1.ca.comcast.net)
  442. # [08:49] * Joins: JonathanNeal (~JonathanN@cpe-142-11-82-156.socal.rr.com)
  443. # [08:49] * Joins: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net)
  444. # [08:49] * Joins: Philip` (~philip@92.243.11.39)
  445. # [08:49] * Joins: Zauberfisch (~Zauberfis@2a01:4f8:100:73c3::3)
  446. # [08:49] * Joins: jamesr__ (uid10481@gateway/web/irccloud.com/x-qrfigcnrpfpfgpaz)
  447. # [08:49] * Joins: mven (~mven@68.224.15.53)
  448. # [08:49] * Joins: stalled (~stalled@unaffiliated/stalled)
  449. # [08:49] * Joins: abstractj|away (~abstractj@redhat/jboss/abstractj)
  450. # [08:49] * Joins: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net)
  451. # [08:49] * Joins: [[zz]] (~q@node-9bq.pool-125-25.dynamic.totbb.net)
  452. # [08:49] * Joins: eresair (~eresair@c-24-5-78-71.hsd1.ca.comcast.net)
  453. # [08:49] * Joins: jdaggett (~jdaggett@180.235.6.26)
  454. # [08:49] * Joins: jgraham (~jgraham@web91.webfaction.com)
  455. # [08:49] * Joins: birtles (~chatzilla@rtr.mozilla.or.jp)
  456. # [08:49] * Joins: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com)
  457. # [08:49] * Joins: jernoble (~jernoble@17.212.152.13)
  458. # [08:49] * Joins: esprehn_ (esprehn@nat/google/x-hurblhfowgvsvklb)
  459. # [08:49] * Joins: skaegi (uid5971@gateway/web/irccloud.com/x-abrqbvbsddpkvqqq)
  460. # [08:49] * Joins: Adawerk (~ada@169.241.49.57)
  461. # [08:49] * Joins: Benvie (~brandon@cpe-174-097-159-175.nc.res.rr.com)
  462. # [08:49] * Joins: JesperHansen (~JesperHan@0x5b90c2f0.dhcp.fiberflex.dk)
  463. # [08:49] * Joins: jmason (~jmason@174.137.103.143)
  464. # [08:49] * Joins: gavinc (~gavin@50.0.77.3)
  465. # [08:49] * Joins: espadrine (~thaddee_t@85-218-9-225.dclient.lsne.ch)
  466. # [08:49] * Joins: karlcow (~karl@nerval.la-grange.net)
  467. # [08:49] * Joins: eric_carlson (~eric@17.212.152.104)
  468. # [08:49] * Joins: webguynow (~webguynow@c-24-1-222-204.hsd1.il.comcast.net)
  469. # [08:49] * Joins: mbatle (mbatle@pasanda.collabora.co.uk)
  470. # [08:49] * Joins: nonge_ (~nonge@p5082A5B7.dip.t-dialin.net)
  471. # [08:49] * Joins: ukai (ukai@nat/google/x-ghbvwvjapwcdsbse)
  472. # [08:49] * Joins: benschwarz (uid2121@gateway/web/irccloud.com/x-ehepmzrhshppbqtn)
  473. # [08:49] * Joins: boblet (uid1921@gateway/web/irccloud.com/x-arjxrjvkonchjgfv)
  474. # [08:49] * Joins: matjas (uid2247@gateway/web/irccloud.com/x-kwloybmykeirzwof)
  475. # [08:49] * Joins: toddmparker___ (uid3054@gateway/web/irccloud.com/x-pgwerhcjdomzxtip)
  476. # [08:49] * Joins: Raymondo (uid10176@gateway/web/irccloud.com/x-mnzvbsathymjvweo)
  477. # [08:49] * Joins: wycats__ (uid79@gateway/web/irccloud.com/x-lyttomdrqroutsrn)
  478. # [08:49] * Joins: scottjehl______ (uid3055@gateway/web/irccloud.com/x-otremgxdlhvaiyak)
  479. # [08:49] * Joins: lilmonkey (~colin@pdpc/supporter/professional/riven)
  480. # [08:49] * Joins: hihuz (~sb@78.141.71.86.rev.sfr.net)
  481. # [08:49] * Joins: mh0 (mh0@unaffiliated/mh0)
  482. # [08:49] * Joins: manu1 (~chatzilla@pool-96-240-173-62.ronkva.east.verizon.net)
  483. # [08:49] * Joins: gavin_ (~gavin@76.14.87.162)
  484. # [08:49] * Joins: nielsle (~nielsle@3239149-cl69.boa.fiberby.dk)
  485. # [08:49] * Joins: rcombs (~rcombs@rodgercombs.tk)
  486. # [08:49] * Joins: pims (~woops@ip-103.net-82-216-85.rev.numericable.fr)
  487. # [08:49] * Joins: Dashiva (Dashiva@wikia/Dashiva)
  488. # [08:49] * Joins: astearns (~astearns@192.150.22.5)
  489. # [08:49] * Joins: yoshiki (yoshiki@nat/google/x-pwayunwglgbagwvs)
  490. # [08:49] * Joins: mpt (~mpt@canonical/mpt)
  491. # [08:49] * Joins: moo-_- (miohtama@lakka.kapsi.fi)
  492. # [08:49] * Joins: dgorbik (~dgorbik@2620:149:4:304:19fb:7930:e0e4:26aa)
  493. # [08:49] * Joins: kochi (~kochi@2401:fa00:4:1004:26be:5ff:fe03:db82)
  494. # [08:49] * Joins: twisted` (uid6794@gateway/web/irccloud.com/x-xzlcrvgtmxuityzz)
  495. # [08:49] * Joins: mounir (~mounir@oldworld.fr)
  496. # [08:49] * Joins: nephyrin (~neph@nat/mozilla/x-yxbrkeeoubhonexn)
  497. # [08:49] * Joins: hober (~ted@unaffiliated/hober)
  498. # [08:49] * Joins: romainhuet (uid2533@gateway/web/irccloud.com/x-vqnvteftybsyskgk)
  499. # [08:49] * Joins: sindresorhus (~sindresor@ec2-23-20-153-157.compute-1.amazonaws.com)
  500. # [08:49] * Joins: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley)
  501. # [08:49] * Joins: Lachy (~Lachy@cm-84.215.19.229.getinternet.no)
  502. # [08:49] * Joins: Jasper (magcius@unaffiliated/magcius)
  503. # [08:49] * Joins: tomaw (tom@freenode/staff/tomaw)
  504. # [08:49] * Joins: gavin (~gavin@firefox/developer/gavin)
  505. # [08:49] * Joins: bzed (~bzed@devel.recluse.de)
  506. # [08:49] * Joins: bacilla (~karolis@unaffiliated/velkam)
  507. # [08:49] * Joins: timeless (uid4015@firefox/developer/timeless)
  508. # [08:49] * Joins: akamike (~uid5089@gateway/web/irccloud.com/x-apiqgnvvmmytkrje)
  509. # [08:49] * Joins: sawrubh (uid6719@gateway/web/irccloud.com/x-sxgrnmvugeqhryfw)
  510. # [08:49] * Joins: ryuone_ (~ryuone@133.242.16.101)
  511. # [08:49] * Joins: broquaint (~dbrook@static.94.217.47.78.clients.your-server.de)
  512. # [08:49] * Joins: jtcranmer (~jcranmer@ltsp2.csl.tjhsst.edu)
  513. # [08:49] * Joins: badfw2 (~v@220.78.68.4)
  514. # [08:49] * Joins: Yudai___ (~Yudai@nttkyo385038.tkyo.nt.ngn2.ppp.infoweb.ne.jp)
  515. # [08:49] * Joins: kinetik (~kinetik@121.99.36.162)
  516. # [08:49] * Joins: remysharp (uid4345@gateway/web/irccloud.com/x-rkfargwzyiprtruj)
  517. # [08:49] * Joins: abarth (uid5294@gateway/web/irccloud.com/x-yrlakaeebaejihrt)
  518. # [08:49] * Joins: Obvious (tachikoma@188.226.74.2)
  519. # [08:49] * Joins: asdf` (asdf@bigfr.klupek.org)
  520. # [08:49] * Joins: manu-db (~msporny@216.252.204.51)
  521. # [08:49] * Joins: Workshiva (~Dashiva@74.125.121.65)
  522. # [08:49] * Joins: Phae (uid455@gateway/web/irccloud.com/x-sylhxcajulvhdkgx)
  523. # [08:49] * Joins: falken (falken@nat/google/x-abrbkniiepbxixhr)
  524. # [08:49] * Joins: NimeshNeema (uid2689@gateway/web/irccloud.com/x-stkdilznmlaktkkx)
  525. # [08:49] * Joins: krijn_ (uid2319@gateway/web/irccloud.com/x-iyulsybqexnafmhr)
  526. # [08:49] * Joins: BruNeX (uid4730@gateway/web/irccloud.com/x-vzcjexzisexryqht)
  527. # [08:49] * Joins: Scorchin (uid1242@gateway/web/irccloud.com/x-ovrckipvcwjmmeen)
  528. # [08:49] * Joins: arv (uid4269@gateway/web/irccloud.com/x-bcoyvprsmzksbatb)
  529. # [08:49] * Joins: cwilso (uid10206@gateway/web/irccloud.com/x-oknpsanbbodztbus)
  530. # [08:49] * Joins: ojan_away (uid5519@gateway/web/irccloud.com/x-uhvxffjvgaoqqpsu)
  531. # [08:49] * Joins: viduthalai1947 (uid5404@gateway/web/irccloud.com/x-pxavgbzxaipshavh)
  532. # [08:49] * Joins: slightlyoff (uid1768@gateway/web/irccloud.com/x-yburhzjzfupjbeoi)
  533. # [08:49] * Joins: matijsb_ (uid2278@gateway/web/irccloud.com/x-nerzlbbnfffymlgw)
  534. # [08:49] * Joins: ryanseddon (uid1832@gateway/web/irccloud.com/x-lykdhygkfkpnsslq)
  535. # [08:49] * Joins: beowulf (uid116@pdpc/supporter/professional/beowulf)
  536. # [08:49] * Joins: cfq (~cfq@static.85-10-200-244.clients.your-server.de)
  537. # [08:49] * Joins: Garbee (~Garbee@lb1.cluster.grephix.nl)
  538. # [08:49] * Joins: WesleyL (~Wesley@static.43.95.46.78.clients.your-server.de)
  539. # [08:49] * Joins: nunnun (~hiro@2001:200:1c0:3624:20c:29ff:fe02:11c8)
  540. # [08:49] * Joins: reggna (~reggna@46.137.95.132)
  541. # [08:49] * Joins: chee (~chee@fsf/member/chee)
  542. # [08:49] * Joins: sangwhan (~sangwhan@1.234.23.206)
  543. # [08:49] * Joins: paul_irish (~paul_iris@ve.hsh6wjwx.vesrv.com)
  544. # [08:49] * Joins: jahman (~woops@129.175.204.73)
  545. # [08:49] * Joins: eighty4 (~eighty4@unaffiliated/eighty4)
  546. # [08:49] * Joins: webben (~benjamin@173-203-84-17.static.cloud-ips.com)
  547. # [08:49] * Joins: toyoshiAw (~toyoshim@yuri.twintail.org)
  548. # [08:49] * Joins: asmodai (asmodai@freebsd/developer/asmodai)
  549. # [08:49] * Joins: scheib (uid4467@gateway/web/irccloud.com/x-ueybdytzbfoaayhb)
  550. # [08:49] * Joins: Somatt_wrk (~somattwrk@darkstar2.fullsix.com)
  551. # [08:49] * Joins: fishd (darin@nat/google/x-jlpscwwfdbabypit)
  552. # [08:49] * Joins: hsivonen (~hsivonen@srv-e205.esp.mediateam.fi)
  553. # [08:49] * Joins: riddle (riddle@us.yunix.net)
  554. # [08:49] * Joins: gnarf (~gnarf@unaffiliated/gnarf)
  555. # [08:49] * Joins: bentruyman (~bentruyma@li159-104.members.linode.com)
  556. # [08:49] * Joins: Rubennn (~Rubennn@apher.gewooniets.nl)
  557. # [08:49] * Joins: tndrH (~Rob@cpc4-seac20-2-0-cust858.7-2.cable.virginmedia.com)
  558. # [08:49] * Joins: payman (~payman@static-212-247-211-195.cust.tele2.se)
  559. # [08:49] * Joins: malcolmva (~malcolmva@c-67-180-203-233.hsd1.ca.comcast.net)
  560. # [08:49] * Joins: heath (quassel@2600:3c02::f03c:91ff:feae:6e5b)
  561. # [08:49] * Joins: wilhelm (~wilhelm@178.255.149.100)
  562. # [08:49] * Joins: carlos_antonio (~benway@unaffiliated/disusered)
  563. # [08:49] * Joins: ricea (ricea@nat/google/x-xlyrclxrvzwrmjhe)
  564. # [08:49] * Joins: jamesr (jamesr@nat/google/x-mgwkoyyhtvkongpj)
  565. # [08:49] * Joins: beverloo (beverloo@nat/google/x-wskvyiwjhlnesuwt)
  566. # [08:49] * Joins: Somatt (famic@hidden.dns.ug)
  567. # [08:49] * Joins: brainproxy (~brainprox@pdpc/supporter/gold/brainproxy)
  568. # [08:49] * Joins: beverloo- (~peter@85.17.3.181)
  569. # [08:49] * Joins: jochen__ (jochen@nat/google/x-clzievpylbypijzn)
  570. # [08:49] * Joins: ahf (ahf@irssi/staff/ahf)
  571. # [08:49] * Joins: muyyatin (~muyyatin@108-75-14-162.lightspeed.sndgca.sbcglobal.net)
  572. # [08:49] * Joins: gsnedders (~gsnedders@mail.gsnedders.com)
  573. # [08:49] * Joins: jmb (~jmb@mail.parsifal.org.uk)
  574. # [08:49] * Joins: odinho (odinho@dalvik.ping.uio.no)
  575. # [08:49] * Joins: kbrosnan (~kbrosnan@firefox/community/qa/kbrosnan)
  576. # [08:49] * Joins: inimino (~inimino@oftn/board/inimino)
  577. # [08:49] * Joins: Jedi_ (~Jedi@jedi.org)
  578. # [08:49] * Joins: rafaelw___ (uid4459@gateway/web/irccloud.com/x-hlluxqudtpwiarft)
  579. # [08:49] * Joins: zewt (~foo@ec2-50-17-220-142.compute-1.amazonaws.com)
  580. # [08:49] * Joins: ShaneHud1on (~sh548@raptor.ukc.ac.uk)
  581. # [08:49] * Joins: dglazkov (uid4270@gateway/web/irccloud.com/x-oqceisupxgndxwiw)
  582. # [08:49] * Joins: rillian (~giles@mf4-xiph.osuosl.org)
  583. # [08:49] * Joins: scott_gonzalez (~gonzasi0@205.186.165.147)
  584. # [08:49] * Joins: bretolius (~boot@ks393582.kimsufi.com)
  585. # [08:49] * Joins: kborchers (~kborchers@unaffiliated/kborchers)
  586. # [08:49] * Joins: Martijnc (~Martijn@is-aweso.me)
  587. # [08:49] * Joins: jayne (~jayne@freenode/staff/jayne)
  588. # [08:49] * Joins: ajpiano (~ajpiano@li98-57.members.linode.com)
  589. # [08:49] * Joins: othree_ (~othree@li379-129.members.linode.com)
  590. # [08:49] * Joins: nw (nw@kapsi.fi)
  591. # [08:49] * Joins: Kingdutch (~kingdutch@176.58.96.4)
  592. # [08:49] * Joins: Dantman (~dantman@mediawiki/dantman)
  593. # [08:49] * Joins: boaz (~boaz@li326-230.members.linode.com)
  594. # [08:49] * Joins: MikeSmith (~mike@sideshowbarker.net)
  595. # [08:49] * Joins: doublec (~doublec@unaffiliated/doublec)
  596. # [08:49] * Joins: ajt_ (~ajt@li181-64.members.linode.com)
  597. # [08:49] * Joins: Krinkle|detached (~Krinkle@wikimedia/Krinkle)
  598. # [08:49] * Joins: edsu (~edsu@pdpc/supporter/active/edsu)
  599. # [08:49] * Joins: rwaldron (rwaldron@gateway/shell/jquery.com/x-krcltjycefmjtmjk)
  600. # [08:49] * Joins: globbot (~logbot@lump.glob.com.au)
  601. # [08:49] * Joins: Hixie (~ianh@178.255.149.100)
  602. # [08:49] * Joins: ivan`` (~ivan@unaffiliated/ivan/x-000001)
  603. # [08:49] * Joins: hasather (~hasather@office.oslo.opera.com)
  604. # [08:49] * Joins: richt (~richt@178.32.57.32)
  605. # [08:50] * Joins: SimonSapin (~simon@vev69-1-82-232-219-95.fbx.proxad.net)
  606. # [08:52] * Quits: SteveF (~chatzilla@63.133.197.135) (Ping timeout: 245 seconds)
  607. # [08:58] * Joins: Ms2ger (~Ms2ger@kotnet-150.kulnet.kuleuven.be)
  608. # [09:02] * Joins: Ms2ger` (~Ms2ger@kotnet-150.kulnet.kuleuven.be)
  609. # [09:02] * Quits: Ms2ger (~Ms2ger@kotnet-150.kulnet.kuleuven.be) (Ping timeout: 255 seconds)
  610. # [09:06] * Quits: jdaggett (~jdaggett@180.235.6.26) (Quit: jdaggett)
  611. # [09:07] * Quits: Ms2ger` (~Ms2ger@kotnet-150.kulnet.kuleuven.be) (Ping timeout: 256 seconds)
  612. # [09:15] * Joins: niloy (~niloy@115.112.64.6)
  613. # [09:19] * Joins: Ms2ger` (~Ms2ger@kotnet-150.kulnet.kuleuven.be)
  614. # [09:25] * Quits: ricea (ricea@nat/google/x-xlyrclxrvzwrmjhe) (Quit: Leaving.)
  615. # [09:26] * Joins: ricea (ricea@nat/google/x-buckmbatriwhbkzg)
  616. # [09:30] * Quits: dbaron (~dbaron@50-0-248-88.dsl.dynamic.sonic.net) (Ping timeout: 276 seconds)
  617. # [09:31] * Joins: mitemitreski (~mitemitre@212.120.17.179)
  618. # [09:35] * Joins: henrikkok (~henrikkok@81.27.221.193)
  619. # [09:36] * Quits: Obvious (tachikoma@188.226.74.2) (Ping timeout: 255 seconds)
  620. # [09:37] * Quits: Ms2ger` (~Ms2ger@kotnet-150.kulnet.kuleuven.be) (Ping timeout: 264 seconds)
  621. # [09:41] * Joins: hendry (~hendry@sg.webconverger.com)
  622. # [09:43] * Quits: birtles (~chatzilla@rtr.mozilla.or.jp) (Quit: ChatZilla 0.9.90-rdmsoft [XULRunner 1.9.0.17/2009122204])
  623. # [09:44] * Quits: jamesr_ (~jamesr@173.164.251.190) (Quit: jamesr_)
  624. # [09:45] * Joins: jamesr_ (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net)
  625. # [09:45] * Joins: Obvious (tachikoma@188.226.74.2)
  626. # [09:49] * Joins: isherman-book (~Adium@173-167-102-230-sfba.hfc.comcastbusiness.net)
  627. # [09:50] * Quits: JesperHansen (~JesperHan@0x5b90c2f0.dhcp.fiberflex.dk) (Ping timeout: 244 seconds)
  628. # [09:50] * Joins: Ms2ger` (~Ms2ger@kotnet-150.kulnet.kuleuven.be)
  629. # [10:00] * Joins: Kolombiken (~Adium@217.13.228.226)
  630. # [10:01] * Quits: plutoniix (~plutoniix@ppp-110-168-3-240.revip5.asianet.co.th) (Quit: จรลี จรลา)
  631. # [10:02] * Joins: zdobersek (~zdobersek@cpe-77.38.31.63.cable.t-1.si)
  632. # [10:03] * Joins: nonge (~nonge@p5082A447.dip.t-dialin.net)
  633. # [10:07] * Quits: nonge_ (~nonge@p5082A5B7.dip.t-dialin.net) (Ping timeout: 244 seconds)
  634. # [10:15] * Quits: richt (~richt@178.32.57.32) (Remote host closed the connection)
  635. # [10:16] * Joins: richt (~richt@178-32-57-32.ovh.net)
  636. # [10:21] * Quits: richt (~richt@178-32-57-32.ovh.net) (Remote host closed the connection)
  637. # [10:22] <jgraham> Argh. Where is zcorpan when you need him?
  638. # [10:22] * Joins: richt (~richt@1.223.218.28)
  639. # [10:22] * Joins: tomasf (~tomasf@77.72.97.4.c.fiberdirekt.net)
  640. # [10:23] <jgraham> gsnedders: yt?
  641. # [10:34] * Joins: smaug____ (~chatzilla@212-226-64-156-nat.elisa-mobile.fi)
  642. # [10:35] * Joins: annevk5 (~annevk@207.218.72.65)
  643. # [10:36] <annevk5> smaug____: so we have moz-blob which is incremental...
  644. # [10:36] * annevk5 is now known as annevk
  645. # [10:38] * Quits: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net) (Quit: rniwa)
  646. # [10:40] * Quits: jamesr_ (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net) (Quit: jamesr_)
  647. # [10:44] <smaug____> yes
  648. # [10:45] <smaug____> which is why it is very different to the new proposal
  649. # [10:51] <annevk> I don't follow
  650. # [10:51] <annevk> smaug____: how is it different?
  651. # [10:51] * Joins: darobin (~darobin@78.109.80.74)
  652. # [10:52] <smaug____> oh, wait, you say incremental as latter Blobs containing all the data
  653. # [10:52] <smaug____> from the beginning
  654. # [10:53] <annevk> all I meant was available during LOADING
  655. # [10:53] <smaug____> sorry, I was thinking about the chunked thing
  656. # [10:53] * smaug____ checks who added moz-blob
  657. # [10:54] <smaug____> sounds like sicking-ish thing
  658. # [10:54] <annevk> yes
  659. # [11:00] <smaug____> I guess I need to change my mind
  660. # [11:01] <smaug____> the .iso usecase is quite valid one
  661. # [11:04] <annevk> smaug____: so we do the semantics we discussed yesterday?
  662. # [11:05] <smaug____> yeah
  663. # [11:05] <smaug____> but then, if we get incremental blobs and typedarrays, shouldn't we have partial data to
  664. # [11:05] <smaug____> I mean chunked data
  665. # [11:05] <smaug____> what was the original bug report
  666. # [11:06] <smaug____> w3c bug report
  667. # [11:06] <smaug____> is it about incremental or chunked
  668. # [11:06] <annevk> https://www.w3.org/Bugs/Public/show_bug.cgi?id=21111 is for blob/arraybuffer during LOADING
  669. # [11:06] <annevk> The discussion about chunked resulted in the addition of stream
  670. # [11:06] <annevk> That discussion was mailing-list only
  671. # [11:06] <smaug____> so
  672. # [11:07] <smaug____> with incremental we're getting close to a stream like anyway
  673. # [11:07] <annevk> I'll ask why Stream is no good.
  674. # [11:09] <smaug____> because it is not implemented ?
  675. # [11:09] <smaug____> but really, incremental and chunked are so close to each others
  676. # [11:10] <smaug____> scripts can use incremental as chunked
  677. # [11:10] <smaug____> but memory usage would be just higher that way
  678. # [11:10] <smaug____> in some cases
  679. # [11:11] <annevk> smaug____: neither is blob during LOADING in WebKit...
  680. # [11:11] <annevk> smaug____: or in Gecko for the keyword "blob"
  681. # [11:12] <annevk> smaug____: and the Streams API is about incremental the way it is currently set up
  682. # [11:12] <smaug____> how is Stream better?
  683. # [11:12] <smaug____> (other than better name)
  684. # [11:13] <annevk> It's an object that incrementally expands and does not have a fixed .size
  685. # [11:13] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (Ping timeout: 276 seconds)
  686. # [11:13] <smaug____> eh
  687. # [11:13] <annevk> Arguably Blob should have been designed that way...
  688. # [11:14] * smaug____ re-reads the spec
  689. # [11:14] <annevk> I wonder how Streams API got published including StreamBuilder :-(
  690. # [11:14] <smaug____> I meant s/Stream/Stream API/
  691. # [11:15] <smaug____> so yes, are we talking about Stream interface or API
  692. # [11:15] <annevk> Stream is defined in the Streams API
  693. # [11:15] <smaug____> since I asked about API, but I guess you're talking about the interface
  694. # [11:15] <annevk> There's not much more to the spec...
  695. # [11:16] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
  696. # [11:17] * Quits: isherman-book (~Adium@173-167-102-230-sfba.hfc.comcastbusiness.net) (Quit: Leaving.)
  697. # [11:18] <smaug____> so, you'd get Stream from XHR , and then read it separate ?
  698. # [11:18] <smaug____> separately
  699. # [11:18] <smaug____> and not care about XHR
  700. # [11:18] <annevk> That's the same with Blob
  701. # [11:19] * Quits: svl (~me@202.68.83.170) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  702. # [11:20] * Joins: j_wright (~jwright@ip70-173-176-189.lv.lv.cox.net)
  703. # [11:20] <annevk> I'm not entirely sure StreamReader has the correct design though :-(
  704. # [11:22] <Ms2ger`> Sounds like a good web API, then
  705. # [11:22] * Quits: nessy (~silviapf@124.149.71.84) (Quit: Leaving.)
  706. # [11:22] <smaug____> does it allow incremental and chunked...
  707. # [11:22] <smaug____> I don't quite see that
  708. # [11:23] <annevk> I think only incremental
  709. # [11:27] <smaug____> well, then adding something similar to moz-blob to XHR wouldn't make sense
  710. # [11:28] <smaug____> I would expect an API called Stream to deal with chunked data
  711. # [11:29] <annevk> Could we design it to handle both?
  712. # [11:30] <smaug____> well, what if there are two StreamReaders. First one reading chunked data, and then another reading incremental
  713. # [11:31] <smaug____> the latter would like to get all the data since the beginning
  714. # [11:31] <smaug____> but I'd like to be able to discard the already read data
  715. # [11:31] * Joins: tomasf_ (~tomasf@77.72.97.4.c.fiberdirekt.net)
  716. # [11:31] <smaug____> (that is a reason for moz-chunked-* in XHR)
  717. # [11:32] <annevk> I understand
  718. # [11:32] * Quits: tomasf (~tomasf@77.72.97.4.c.fiberdirekt.net) (Read error: Connection reset by peer)
  719. # [11:33] <smaug____> back in few minutes
  720. # [11:34] <annevk> smaug____: one question, does moz-blob create a new Blob object each time you access it?
  721. # [11:34] <annevk> I'll draft an email to public-webapps to sort this out
  722. # [11:34] * tomasf_ is now known as tomasf
  723. # [11:37] * Quits: smaug____ (~chatzilla@212-226-64-156-nat.elisa-mobile.fi) (Ping timeout: 244 seconds)
  724. # [11:40] * Quits: tomasf (~tomasf@77.72.97.4.c.fiberdirekt.net) (Ping timeout: 255 seconds)
  725. # [11:42] * toyoshiAw is now known as toyoshim
  726. # [11:43] * Joins: tomasf (~tomasf@77.72.97.4.c.fiberdirekt.net)
  727. # [11:48] <annevk> Oh smaug just left. How rude. Well I figured it out via testing anyway
  728. # [11:49] * Joins: smaug____ (~chatzilla@cs181151161.pp.htv.fi)
  729. # [11:50] <smaug____> annevk: looks like moz-blob does not create a new object each time
  730. # [11:50] <smaug____> only if there is some new data
  731. # [11:50] <annevk> ah good to know
  732. # [11:51] <smaug____> and sorry being so rude :)
  733. # [11:51] <smaug____> so, will we need Stream and IncrementalStream. Though the latter sounds odd. It is more like IncrementalBlob
  734. # [11:56] <annevk> smaug____: oh, I reached the opposite conclusion :-)
  735. # [11:56] <annevk> smaug____: see public-webapps
  736. # [11:57] <smaug____> it wasn't really my conclusion :)
  737. # [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
  738. # [11:57] <smaug____> helsinki.fi, could you be a bit faster today
  739. # [11:58] * Joins: pyrsmk (~pyrsmk@2a01:e35:2f52:ead0:e483:73ec:5a17:a199)
  740. # [11:58] <smaug____> ah
  741. # [11:59] <annevk> Hmm strange. Feras Moussa is listed as Invited Expert. Is he no longer at Microsoft?
  742. # [12:00] <smaug____> as of now, I'd like to have incremental and chunked in XHR
  743. # [12:00] <smaug____> but need to get more comments
  744. # [12:00] <smaug____> since I thought Stream was about chunked data
  745. # [12:00] <smaug____> but the spec doesn't say that
  746. # [12:00] <smaug____> or I can't find it
  747. # [12:01] <smaug____> s/Stream/StreamReader/
  748. # [12:01] <MikeSmith> annevk: Feras is no longer at Microsoft. But he intends to continue editing the Streams spec
  749. # [12:01] * Quits: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com) (Quit: Leaving...)
  750. # [12:01] * Joins: ^esc (~esc_ape@77.117.247.156.wireless.dyn.drei.com)
  751. # [12:01] <annevk> smaug____: the API does not look like it's chunked, although maxSize does suggest that I suppose...
  752. # [12:02] <annevk> MikeSmith: I see
  753. # [12:05] * Quits: pyrsmk (~pyrsmk@2a01:e35:2f52:ead0:e483:73ec:5a17:a199) (Quit: tzing)
  754. # [12:11] <gsnedders> jgraham: Here now
  755. # [12:12] <jgraham> gsnedders: I was looking for Opera's postMessage tests
  756. # [12:12] <jgraham> But I found them
  757. # [12:12] <jgraham> They all need conversion though :(
  758. # [12:12] <gsnedders> Okay. I don't where to look anyway. :)
  759. # [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".
  760. # [12:13] <jgraham> For messaging as well as web sockets
  761. # [12:14] <gsnedders> What about zcorpan's web sockets tests?
  762. # [12:14] <jgraham> gsnedders: They are still partially unconverted to testharness format
  763. # [12:16] <jgraham> I guess this is what I need to spend my evenings doing
  764. # [12:16] <jgraham> Rather than working on critic
  765. # [12:21] * Quits: espadrine (~thaddee_t@85-218-9-225.dclient.lsne.ch) (Ping timeout: 276 seconds)
  766. # [12:33] * marcosc_ is now known as marcosc
  767. # [12:33] * Quits: marcosc (~marcosc@bl11-99-228.dsl.telepac.pt)
  768. # [12:34] * Joins: marcosc (~marcosc@bl11-99-228.dsl.telepac.pt)
  769. # [12:36] * Joins: alrra (~alrra@unaffiliated/alrra)
  770. # [12:39] * Joins: adactio (~adactio@host213-123-197-180.in-addr.btopenworld.com)
  771. # [12:42] * abstractj|away is now known as abstractj
  772. # [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.
  773. # [12:44] <annevk> marcosc: parse where?
  774. # [12:44] <marcosc> annevk: JSON.parse()
  775. # [12:44] <annevk> marcosc: that takes a JavaScript string
  776. # [12:44] <marcosc> ah
  777. # [12:45] <annevk> XMLHttpRequest only supports JSON encoded as utf-8
  778. # [12:45] * Quits: richt (~richt@1.223.218.28) (Remote host closed the connection)
  779. # [12:45] <marcosc> annevk: I'm pulling in the JSON text through XHR
  780. # [12:45] * Joins: richt (~richt@1.223.218.28)
  781. # [12:45] * Quits: Ms2ger` (~Ms2ger@kotnet-150.kulnet.kuleuven.be) (Quit: bbl)
  782. # [12:45] <annevk> marcosc: it's already decoded at that point depending your server configuration and the specifics of how you're using XMLHttpRequest...
  783. # [12:50] * Quits: richt (~richt@1.223.218.28) (Ping timeout: 252 seconds)
  784. # [12:50] * Quits: eresair (~eresair@c-24-5-78-71.hsd1.ca.comcast.net) (Remote host closed the connection)
  785. # [12:53] * Krinkle|detached is now known as Krinkle
  786. # [12:55] * Quits: mitemitreski (~mitemitre@212.120.17.179) (Ping timeout: 264 seconds)
  787. # [13:00] <marcosc> annevk: in the XHR, when open() is called, what's the reason for dropping the <fragment> component from the URL?
  788. # [13:00] <annevk> marcosc: that's how HTTP works
  789. # [13:01] <annevk> marcosc: sounds like you're not reading http://xhr.spec.whatwg.org/ though which is much better
  790. # [13:01] <annevk> marcosc: and defers for that particular thing to Fetch
  791. # [13:01] <marcosc> ah! I'm not
  792. # [13:01] <annevk> (which I'm trying to work out now...)
  793. # [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.
  794. # [13:03] <marcosc> Otherwise, I'm going to end up cloning a bunch of stuff from the XHR spec
  795. # [13:03] <marcosc> which sucks
  796. # [13:03] <annevk> marcosc: oh no, you want to use fetch
  797. # [13:04] <marcosc> fetch from HTML?
  798. # [13:04] <annevk> marcosc: yes
  799. # [13:04] <marcosc> ok
  800. # [13:04] <annevk> marcosc: until I've written Fetch and then everyone can use that
  801. # [13:04] <annevk> it will be glorious
  802. # [13:04] <marcosc> I can imagine! :)
  803. # [13:05] <marcosc> ok, so http://www.whatwg.org/specs/web-apps/current-work/#fetch is currently incomplete then.
  804. # [13:07] * marcosc lunch
  805. # [13:11] * Quits: beverloo (beverloo@nat/google/x-wskvyiwjhlnesuwt) (Quit: Leaving)
  806. # [13:13] * Joins: mitemitreski (~mitemitre@212.120.17.179)
  807. # [13:15] <annevk> marcosc: nah it's complete, just not detailed (imo)
  808. # [13:15] <annevk> I wish Hixie was around
  809. # [13:34] <odinho> And not with a nice URL and its own easy hookpoint :]
  810. # [13:35] * Joins: mitemitreski1 (~mitemitre@212.120.17.179)
  811. # [13:38] * Quits: mitemitreski (~mitemitre@212.120.17.179) (Ping timeout: 255 seconds)
  812. # [13:42] * Quits: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net) (Quit: sedovsek)
  813. # [13:46] * Quits: marcosc (~marcosc@bl11-99-228.dsl.telepac.pt) (Read error: Connection reset by peer)
  814. # [13:46] * Joins: marcosc (~marcosc@bl11-99-228.dsl.telepac.pt)
  815. # [13:46] * Quits: alrra (~alrra@unaffiliated/alrra) (Quit: Leaving)
  816. # [13:57] * Quits: tomasf (~tomasf@77.72.97.4.c.fiberdirekt.net) (Ping timeout: 272 seconds)
  817. # [14:02] * Joins: tomasf (~tomasf@77.72.97.4)
  818. # [14:03] * Joins: scor (scor@drupal.org/user/52142/view)
  819. # [14:07] * Quits: tomasf (~tomasf@77.72.97.4) (Ping timeout: 245 seconds)
  820. # [14:08] * Joins: SteveF_ (~chatzilla@63.133.197.135)
  821. # [14:13] <SteveF_> marcosc: johnny kannis was probably before your time ;-)
  822. # [14:14] <marcosc> SteveF_: yep :)
  823. # [14:14] <marcosc> but I don't mind :)
  824. # [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
  825. # [14:14] * Quits: Zauberfisch (~Zauberfis@2a01:4f8:100:73c3::3) (Read error: Connection reset by peer)
  826. # [14:14] <SteveF_> hitmen
  827. # [14:15] * Joins: Zauberfisch (~Zauberfis@2a01:4f8:100:73c3::3)
  828. # [14:15] <SteveF_> marcosc: wasn't meaning to make a wog connection...
  829. # [14:16] <marcosc> heh, now you have :)
  830. # [14:17] * marcosc throws SteveF_ a rope out of the hole. Funky tunes: http://www.youtube.com/watch?v=TnjuGYU-gCA
  831. # [14:18] * SteveF_ ;-)
  832. # [14:19] * marcosc gets all in the mood for some bad 80's rock
  833. # [14:19] * SteveF_ seeing them drinking longnecks in that vid really took me back
  834. # [14:23] <marcosc> me too, I was 12 again :)
  835. # [14:23] * SteveF_ remember seeing the angels as an underager out in the western sydney beerbarns http://www.youtube.com/watch?v=RiOQzWTz3cM
  836. # [14:24] * Joins: tomasf (~tomasf@77.72.97.4.c.fiberdirekt.net)
  837. # [14:24] <SteveF_> marcosc: where did you live in oz?
  838. # [14:24] <marcosc> Brisbane
  839. # [14:25] <SteveF_> say no more
  840. # [14:27] * Parts: henrikkok (~henrikkok@81.27.221.193)
  841. # [14:28] * SteveF_ I'm a bankstown boy myself
  842. # [14:30] <jgraham> Are we supposed to hum that to the tune of uptown girl?
  843. # [14:30] <annevk> Please record if you do
  844. # [14:33] <annevk> aaah
  845. # [14:33] <smaug____> does anyone actually use microdata thing
  846. # [14:34] <annevk> smaug____: you'd have to elaborate on thing
  847. # [14:34] <annevk> smaug____: but e.g. http://schema.org/ backed by the search engines recommends using it to people
  848. # [14:34] <smaug____> "recommends" does mean anyone actually uses it
  849. # [14:34] <smaug____> er
  850. # [14:34] <smaug____> doesn't
  851. # [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/
  852. # [14:35] <annevk> smaug____: if nobody is using it I wish they'd stop discussing it
  853. # [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. "
  854. # [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
  855. # [14:38] <jgraham> They might be funny
  856. # [14:38] <jgraham> But they are not all on-base
  857. # [14:38] <jgraham> I have no idea why .length implied "ordered" for example
  858. # [14:38] <marcosc> oh, they are spot on
  859. # [14:39] <marcosc> Just a little out of character for the oh ever so eloquent slightlyoff
  860. # [14:39] <jgraham> (certainly in python it doesn't)
  861. # [14:39] <jgraham> (where len(set([1,2,1])) == 2, just like you would expect)
  862. # [14:40] <jgraham> (and you can't index a set by number there either)
  863. # [14:41] <jgraham> (or indeed a dict, which *also* has a __len__)
  864. # [14:43] * Joins: decotii (~decotii@hq.croscon.com)
  865. # [14:43] * Joins: izhak (~izhak@31.47.117.1)
  866. # [14:45] <jgraham> Also, navigator??
  867. # [14:54] * Quits: tomasf (~tomasf@77.72.97.4.c.fiberdirekt.net) (Quit: tomasf)
  868. # [14:54] * Joins: beverloo (beverloo@nat/google/x-yfhdwmsrnwnxjlbw)
  869. # [15:02] * Quits: smaug____ (~chatzilla@cs181151161.pp.htv.fi) (Ping timeout: 240 seconds)
  870. # [15:04] * Quits: SteveF_ (~chatzilla@63.133.197.135) (Ping timeout: 255 seconds)
  871. # [15:04] <marcosc> jgraham: yeah, navigator is that's a strange place to put that
  872. # [15:05] * Joins: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com)
  873. # [15:06] * Joins: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net)
  874. # [15:09] * Joins: krawchyk (~krawchyk@65.220.49.251)
  875. # [15:20] * Joins: tomasf (~tomasf@static-88.131.62.36.addr.tdcsong.se)
  876. # [15:25] * Quits: JohnAlbin (~JohnAlbin@114-36-36-23.dynamic.hinet.net) (Quit: HTTP/1.1 404 JohnAlbin Not Found)
  877. # [15:25] * Joins: JohnAlbin (~JohnAlbin@114-36-36-23.dynamic.hinet.net)
  878. # [15:27] * Joins: baku (~baku@2-227-7-116.ip183.fastwebnet.it)
  879. # [15:27] * Joins: SteveF_ (~chatzilla@63.133.197.135)
  880. # [15:28] * Joins: TallTed (~Thud@63.119.36.36)
  881. # [15:31] * Joins: jryans (~jryans@office.massrel.com)
  882. # [15:45] * Quits: SteveF_ (~chatzilla@63.133.197.135) (Ping timeout: 255 seconds)
  883. # [15:48] * Joins: Ms2ger (~Ms2ger@vpne189.ugent.be)
  884. # [16:03] * Quits: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net) (Read error: Connection reset by peer)
  885. # [16:04] * Joins: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net)
  886. # [16:06] * Krinkle is now known as Krinkle|detached
  887. # [16:08] * Quits: Ms2ger (~Ms2ger@vpne189.ugent.be) (Ping timeout: 252 seconds)
  888. # [16:20] * Joins: garciawebdev (~garciaweb@190.244.95.154)
  889. # [16:24] * Joins: tantek (~tantek@70-36-139-86.dsl.dynamic.sonic.net)
  890. # [16:25] * Joins: smaug____ (~chatzilla@cs181151161.pp.htv.fi)
  891. # [16:28] * Quits: tomasf (~tomasf@static-88.131.62.36.addr.tdcsong.se) (Quit: tomasf)
  892. # [16:41] * Joins: ehsan_ (~ehsan@199.255.40.36)
  893. # [16:47] * Joins: sicking (~sicking@c-24-130-172-29.hsd1.ca.comcast.net)
  894. # [16:47] * Joins: mattgifford (~mattgiffo@108.161.20.199)
  895. # [16:47] * Krinkle|detached is now known as Krinkle
  896. # [16:49] * Joins: nimbu (~nimbu@64.114.255.126)
  897. # [16:59] * Joins: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net)
  898. # [16:59] * Quits: karlcow (~karl@nerval.la-grange.net) (Remote host closed the connection)
  899. # [17:02] * Joins: karlcow (~karl@nerval.la-grange.net)
  900. # [17:04] * jernoble is now known as jernoble|afk
  901. # [17:04] * jernoble|afk is now known as jernoble
  902. # [17:06] * Quits: mven (~mven@68.224.15.53) (Remote host closed the connection)
  903. # [17:09] * Joins: eresair (~eresair@c-24-5-78-71.hsd1.ca.comcast.net)
  904. # [17:12] * Quits: gavinc (~gavin@50.0.77.3) (Quit: Konversation terminated!)
  905. # [17:12] <slightlyoff> marcosc: dude, LS + IDB is enough to make anyone swear like a sailor
  906. # [17:15] * Quits: Kolombiken (~Adium@217.13.228.226) (Ping timeout: 246 seconds)
  907. # [17:18] * Quits: nimbu (~nimbu@64.114.255.126) (Quit: Leaving.)
  908. # [17:21] * Joins: nimbu (~nimbu@64.114.255.126)
  909. # [17:21] * Joins: Ms2ger (~Ms2ger@148.216-242-81.adsl-dyn.isp.belgacom.be)
  910. # [17:22] * Joins: fr0zenice (~frozenice@unaffiliated/fr0zenice)
  911. # [17:28] * Joins: jwalden (~waldo@64.164.138.146)
  912. # [17:30] * Quits: nimbu (~nimbu@64.114.255.126) (Quit: Leaving.)
  913. # [17:36] * Quits: jsoncorwin (~textual@c-98-210-130-242.hsd1.ca.comcast.net) (Quit: Computer has gone to sleep.)
  914. # [17:36] * Joins: gavinc (~gavin@50.0.77.3)
  915. # [17:36] * Joins: yorick (~yorick@vredebest.xs4all.nl)
  916. # [17:36] * Quits: yorick (~yorick@vredebest.xs4all.nl) (Changing host)
  917. # [17:36] * Joins: yorick (~yorick@oftn/member/yorick)
  918. # [17:37] <annevk> jgraham: I suggested navigator I think, where would you put it?
  919. # [17:40] * toyoshim is now known as toyoshiAw
  920. # [17:40] * Quits: jwalden (~waldo@64.164.138.146) (Quit: brb)
  921. # [17:42] <marcosc> slightlyoff: amen to that :)
  922. # [17:42] <slightlyoff> marcosc: i honestly don't understand transactions in IDB
  923. # [17:42] <slightlyoff> and I think I made a serious attempt to understand them
  924. # [17:43] <slightlyoff> I'm currently digging through chromium code to grok why FF and Chrome differ in timing/end-of-turn behavior
  925. # [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
  926. # [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
  927. # [17:43] <slightlyoff> not true
  928. # [17:43] <slightlyoff> zewt: length is a 1-dimensional measure
  929. # [17:43] <slightlyoff> it implies ordering
  930. # [17:43] <zewt> length does not imply ordering
  931. # [17:44] <marcosc> slightlyoff: I'm currently playing around with Q to get a better understanding of promises, so I can contribute a bit
  932. # [17:44] <slightlyoff> I will leave basic number theory as an exercise to the reader.
  933. # [17:44] * tantek gets the popcorn and grabs a seat.
  934. # [17:44] <zewt> ...
  935. # [17:44] <slightlyoff> tantek: sorry man, have go to do real work...no time for this = )
  936. # [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
  937. # [17:44] <tantek> slightlyoff :)
  938. # [17:44] <Ms2ger> Clearly it should be "norm"
  939. # [17:45] <slightlyoff> tantek: but you know...if you think zewt isn't *just* a troll, I invite you to try
  940. # [17:45] <jgraham> "cardinality"
  941. # [17:45] <jgraham> slightlyoff: zewt isn't a troll
  942. # [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
  943. # [17:45] <jgraham> But you two rub each other up the wrong way something chronic
  944. # [17:45] <karlcow> love to hate
  945. # [17:46] <tantek> jgraham, you have to pay extra for that in SF.
  946. # [17:47] * Quits: eresair (~eresair@c-24-5-78-71.hsd1.ca.comcast.net) (Remote host closed the connection)
  947. # [17:47] <zewt> (and since .length is what's already used by JS strings, it wins by default)
  948. # [17:47] * karlcow is now diving into https://en.wikipedia.org/wiki/Countable_set
  949. # [17:48] <annevk> Map uses size
  950. # [17:49] <zewt> then map made a dumb mistake
  951. # [17:49] <annevk> zewt: it's not settled yet, you could argue it on es-discuss
  952. # [17:49] * Joins: dbaron (~dbaron@50-0-248-88.dsl.dynamic.sonic.net)
  953. # [17:50] * Joins: cabanier (~cabanier@c-98-237-137-173.hsd1.wa.comcast.net)
  954. # [17:50] <karlcow> in my mind, `length` has a unit after it. When `count` does not have.
  955. # [17:51] <jgraham> karlcow: Then lenght is equally wrong for strings and arrays :)
  956. # [17:51] <jgraham> *length
  957. # [17:51] <karlcow> that said programming languages used mostly len()
  958. # [17:51] <zewt> karlcow: it sounds like you're thinking of "length" as a physical unit--that's simply a different concept of length
  959. # [17:51] <annevk> DOMTokenList uses .length
  960. # [17:51] <karlcow> zewt: Pardon my physics ;) that's my academic background.
  961. # [17:52] <annevk> but the tokens are ordered there iirc
  962. # [17:52] * Joins: jsoncorwin (~textual@c-98-210-130-242.hsd1.ca.comcast.net)
  963. # [17:52] * karlcow creates .howmany
  964. # [17:52] * Quits: jsoncorwin (~textual@c-98-210-130-242.hsd1.ca.comcast.net) (Client Quit)
  965. # [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
  966. # [17:54] <Ms2ger> Sounds like something Java would do
  967. # [17:55] <annevk> jgraham: are you going to do something about it?
  968. # [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
  969. # [17:55] <zewt> so (iirc) you have .size on strings, but not linked lists; to get that you have to use a count method
  970. # [17:55] <zewt> which is the worst sort of academic API design
  971. # [17:56] <jgraham> annevk: By "do something" you mean "join es-discuss and argue about naming"?
  972. # [17:56] <karlcow> hmmm http://twitter.com/FakeOpvard/
  973. # [17:57] <annevk> jgraham: yes
  974. # [17:57] <annevk> Also, Blob.size
  975. # [17:58] <annevk> ProgressEvent.total
  976. # [17:58] <annevk> We're all over the map already.
  977. # [17:58] * Quits: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net) (Quit: sedovsek)
  978. # [17:58] <karlcow> sweet, all the million ways of counting
  979. # [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"
  980. # [18:02] * Joins: vcarbune (~vcarbune@80-218-192-6.dclient.hispeed.ch)
  981. # [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".
  982. # [18:03] <annevk> jgraham: pretty sure he doesn't follow es-discuss closely
  983. # [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)
  984. # [18:04] * Joins: nimbu (~nimbu@sjfw1.adobe.com)
  985. # [18:04] <jgraham> (I can only imagine it comes from exposure to some other programming language (Java?) that makes that distinction)
  986. # [18:05] <jgraham> tantek: That "some reason" is presumably sizeof(t)
  987. # [18:05] <zewt> it smells like something taught by a well-intentioned college professor, then internalized and never properly questioned
  988. # [18:06] <tantek> we leave all the proper questioning to #whatwg naturally
  989. # [18:06] <tantek> jgraham - yes, that sounds right. from years of C(++) programming.
  990. # [18:07] <zewt> i have more years of C and C++ than any other language and I've never even heard of that distinction
  991. # [18:10] * Quits: vcarbune (~vcarbune@80-218-192-6.dclient.hispeed.ch) (Ping timeout: 255 seconds)
  992. # [18:12] * Joins: jamesr_ (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net)
  993. # [18:17] <annevk> Hixie: so, how is potential CORS fetch with "No CORS" different from fetch?
  994. # [18:17] <karlcow> jgraham: for size, I imagine volume, in my head. Maybe because of the French "taille".
  995. # [18:17] <karlcow> oh we didn't touch yet to quantity :p
  996. # [18:21] <karlcow> .vastness, .immensity, .magnitude if at least the naming could be more poetic
  997. # [18:23] * Joins: vcarbune (~vcarbune@80-218-192-6.dclient.hispeed.ch)
  998. # [18:23] <dglazkov> good morning, Whatwg!
  999. # [18:23] <annevk> karlcow: we don't want to make it worse
  1000. # [18:24] <annevk> dglazkov: good afternoon
  1001. # [18:24] <annevk> dglazkov: you used to hit tea time :p
  1002. # [18:24] <karlcow> annevk: heh. But that would be more fun. :)
  1003. # [18:25] <annevk> karlcow: only the perverse kind of fun, but I can see how that makes sense to you
  1004. # [18:25] <karlcow> at least that would give "left to interpretation" a meaning.
  1005. # [18:25] * Quits: mitemitreski1 (~mitemitre@212.120.17.179) (Read error: Connection reset by peer)
  1006. # [18:29] * Quits: jamesr_ (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net) (Quit: jamesr_)
  1007. # [18:31] * Joins: Maurice` (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
  1008. # [18:32] * jernoble is now known as jernoble|afk
  1009. # [18:32] * jernoble|afk is now known as jernoble
  1010. # [18:38] * Quits: izhak (~izhak@31.47.117.1) (Ping timeout: 276 seconds)
  1011. # [18:38] <Hixie> annevk: regular fetch doesn't label the thing as cross-origin
  1012. # [18:42] * Quits: darobin (~darobin@78.109.80.74) (Remote host closed the connection)
  1013. # [18:43] * Joins: say2joe (~say2joe@204.56.108.2)
  1014. # [18:48] * Quits: ehsan_ (~ehsan@199.255.40.36) (Remote host closed the connection)
  1015. # [18:51] * Joins: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net)
  1016. # [18:52] <annevk> Hixie: sure, but is that a feature in some way?
  1017. # [18:52] * Quits: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net) (Client Quit)
  1018. # [18:54] * Joins: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net)
  1019. # [18:55] * Quits: smaug____ (~chatzilla@cs181151161.pp.htv.fi) (Remote host closed the connection)
  1020. # [18:55] <Hixie> annevk: how do you mean?
  1021. # [18:55] * Joins: smaug____ (~chatzilla@cs181151161.pp.htv.fi)
  1022. # [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
  1023. # [18:55] * Joins: jwalden (~waldo@nat/mozilla/x-ksmmmndmwmzhgxjc)
  1024. # [18:56] <annevk> Hixie: is it a feature of "fetch" that you don't know the label?
  1025. # [18:57] <annevk> Hixie: cause otherwise we could make it one algorithm
  1026. # [18:57] <annevk> (might go offline for a minute or so, will read the minutes)
  1027. # [18:57] <annevk> logs*
  1028. # [18:57] * Parts: adactio (~adactio@host213-123-197-180.in-addr.btopenworld.com)
  1029. # [18:58] * Joins: krawchyk_ (~krawchyk@65.220.49.251)
  1030. # [19:00] <odinho> lol, minutes.
  1031. # [19:00] <odinho> Too much W3C for you Anne.
  1032. # [19:01] <odinho> Or formalized meetings I guess.
  1033. # [19:02] * Quits: krawchyk (~krawchyk@65.220.49.251) (Ping timeout: 244 seconds)
  1034. # [19:03] * Joins: ehsan_ (~ehsan@199.255.40.36)
  1035. # [19:04] * Joins: yodasw16 (~yodasw16@ql1fwhide.rockfin.com)
  1036. # [19:05] * Joins: pablof (~pablof@144.189.31.1)
  1037. # [19:06] <Hixie> annevk: well i don't really care how you implement it, so long as the API doesn't change :-)
  1038. # [19:06] <Hixie> annevk: the key is that when calling this algorithm, i don't know what the mode is
  1039. # [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
  1040. # [19:07] <Hixie> annevk: and then that returns a resource that is "either CORS-same-origin or CORS-cross-origin"
  1041. # [19:07] <Hixie> annevk: i think it would be confusing to have the regular fetch algorithm returning CORS states
  1042. # [19:07] <Hixie> annevk: since every caller would ignore it
  1043. # [19:09] <annevk> but I think at some point every caller will turn into a potential CORS-caller
  1044. # [19:09] <annevk> but yeah, not knowing the CORS-mode makes sense, and we should have "No CORS"
  1045. # [19:10] <annevk> I was just wondering whether there's a material difference between the two which I didn't see
  1046. # [19:10] * Quits: ehsan_ (~ehsan@199.255.40.36) (Remote host closed the connection)
  1047. # [19:13] * Joins: espadrine (~thaddee_t@85-218-9-225.dclient.lsne.ch)
  1048. # [19:13] * Quits: cabanier (~cabanier@c-98-237-137-173.hsd1.wa.comcast.net) (Quit: Leaving.)
  1049. # [19:14] * Quits: heath (quassel@2600:3c02::f03c:91ff:feae:6e5b) (Remote host closed the connection)
  1050. # [19:14] * Joins: heath (quassel@2600:3c02::f03c:91ff:feae:6e5b)
  1051. # [19:16] * Quits: nimbu (~nimbu@sjfw1.adobe.com) (Read error: Connection reset by peer)
  1052. # [19:17] <annevk> Hixie: also see email about Anonymous mode
  1053. # [19:17] * Joins: JesperHansen (~JesperHan@0x5b90c2f0.dhcp.fiberflex.dk)
  1054. # [19:18] * Quits: heath (quassel@2600:3c02::f03c:91ff:feae:6e5b) (Changing host)
  1055. # [19:18] * Joins: heath (quassel@unaffiliated/ybit)
  1056. # [19:18] * heath is now known as ybit2
  1057. # [19:18] * ybit2 is now known as heath
  1058. # [19:18] <annevk> odinho: actually surprisingly few these days, WHATWG ftw
  1059. # [19:19] <Hixie> how do you set Origin: to a unique origin?
  1060. # [19:19] <Hixie> and does Referer: really gets set to about:blank?
  1061. # [19:19] <annevk> Hixie: Origin: null
  1062. # [19:19] <annevk> Hixie: I think that makes Referer omitted
  1063. # [19:19] * Joins: nimbu (~nimbu@sjfw1.adobe.com)
  1064. # [19:20] <Hixie> so wait, why isn't CORS just doing all this automatically when one sets the flag?
  1065. # [19:23] * Joins: cabanier (~cabanier@192.150.22.55)
  1066. # [19:23] * Joins: jamesr_ (jamesr@nat/google/x-xiyfrfczczyuppou)
  1067. # [19:24] * Joins: rniwa (~rniwa@17.212.154.114)
  1068. # [19:24] * Quits: baku (~baku@2-227-7-116.ip183.fastwebnet.it) (Quit: Leaving)
  1069. # [19:27] <zewt> hmm, something that seems like it should be easy but i'm drawing a blank
  1070. # [19:28] * abstractj is now known as abstractj|lunch
  1071. # [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
  1072. # [19:29] <annevk> Hixie: XHR has both anonymous and without credentials
  1073. # [19:30] <annevk> Hixie: anonymous is an extremer variant
  1074. # [19:30] <zewt> bleh, guess it's easier to recreate it in photoshop than to figure out a way to do this
  1075. # [19:30] <Hixie> annevk: confoosing
  1076. # [19:30] <Hixie> annevk: why so many?
  1077. # [19:30] <annevk> sorry, if I would design this now it'd be way different
  1078. # [19:31] <Hixie> hehe
  1079. # [19:31] <Hixie> i know that feeling
  1080. # [19:31] <Hixie> bbiab
  1081. # [19:31] <annevk> initially we just had withCredentials
  1082. # [19:31] <annevk> and then people wanted a mode without Origin or Referer
  1083. # [19:31] <annevk> without any identifying information
  1084. # [19:31] <annevk> and they got enough backing from silly implementors
  1085. # [19:32] <odinho> Silly!
  1086. # [19:32] * Joins: jacobolus (~jacobolus@108-75-75-178.lightspeed.sntcca.sbcglobal.net)
  1087. # [19:33] * Ms2ger never designs anything for that reason
  1088. # [19:34] <annevk> Ms2ger: was Text.serializeXXX not you?
  1089. # [19:34] * Quits: dbaron (~dbaron@50-0-248-88.dsl.dynamic.sonic.net) (Ping timeout: 264 seconds)
  1090. # [19:34] <Ms2ger> Never got implemented, did it? ;)
  1091. # [19:35] <annevk> Ms2ger: "never designs" is clearly false though
  1092. # [19:42] <TabAtkins> zewt: That's what screenshots are for.
  1093. # [19:43] * Joins: jsoncorwin (~textual@c-50-131-117-90.hsd1.ca.comcast.net)
  1094. # [19:47] * Joins: aklein (uid4454@gateway/web/irccloud.com/x-itfwqfjhzmvxydyn)
  1095. # [19:49] * Quits: annevk (~annevk@207.218.72.65) (Remote host closed the connection)
  1096. # [19:51] * Quits: SimonSapin (~simon@vev69-1-82-232-219-95.fbx.proxad.net) (Ping timeout: 252 seconds)
  1097. # [19:53] <zewt> no alpha
  1098. # [19:53] <TabAtkins> Ah, that's true. Darn.
  1099. # [19:53] <TabAtkins> No way, then, since you can't draw DOM into <canvas> yet.
  1100. # [19:57] * Joins: stevefaulkner (~stevefaul@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
  1101. # [20:00] * Quits: nimbu (~nimbu@sjfw1.adobe.com) (Quit: Leaving.)
  1102. # [20:00] * Quits: smaug____ (~chatzilla@cs181151161.pp.htv.fi) (Ping timeout: 264 seconds)
  1103. # [20:01] * jernoble is now known as jernoble|afk
  1104. # [20:01] * jernoble|afk is now known as jernoble
  1105. # [20:03] * Quits: say2joe (~say2joe@204.56.108.2) (Read error: Operation timed out)
  1106. # [20:03] * Joins: say2joe (~say2joe@204.56.108.2)
  1107. # [20:07] * Quits: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net) (Quit: sedovsek)
  1108. # [20:12] * Joins: sedovsek (~robert@BSN-176-211-5.dial-up.dsl.siol.net)
  1109. # [20:13] * Quits: tantek (~tantek@70-36-139-86.dsl.dynamic.sonic.net) (Quit: tantek)
  1110. # [20:13] * Joins: nimbu (~nimbu@sjfw1.adobe.com)
  1111. # [20:13] * Joins: tantek (~tantek@70-36-139-86.dsl.dynamic.sonic.net)
  1112. # [20:21] * Joins: SteveF (~chatzilla@63.133.197.135)
  1113. # [20:23] * Quits: malcolmva (~malcolmva@c-67-180-203-233.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
  1114. # [20:23] * Joins: malcolmva (~malcolmva@c-67-180-203-233.hsd1.ca.comcast.net)
  1115. # [20:24] * Joins: say2joe1 (~say2joe@204.56.108.2)
  1116. # [20:25] * Joins: danja (~danny@host167-8-dynamic.8-79-r.retail.telecomitalia.it)
  1117. # [20:26] * Quits: say2joe (~say2joe@204.56.108.2) (Ping timeout: 252 seconds)
  1118. # [20:27] * Krinkle is now known as Krinkle|detached
  1119. # [20:28] * Quits: stevefaulkner (~stevefaul@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com) (Quit: stevefaulkner)
  1120. # [20:30] * abstractj|lunch is now known as abstractj
  1121. # [20:30] * Joins: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net)
  1122. # [20:34] * Quits: sicking (~sicking@c-24-130-172-29.hsd1.ca.comcast.net) (Quit: sicking)
  1123. # [20:37] * Quits: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  1124. # [20:40] * Quits: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley) (Quit: This computer has gone to sleep)
  1125. # [20:42] * Quits: yodasw16 (~yodasw16@ql1fwhide.rockfin.com) (Quit: yodasw16)
  1126. # [20:43] * Joins: cheron (~cheron@unaffiliated/cheron)
  1127. # [20:47] * Joins: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley)
  1128. # [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])
  1129. # [20:51] * Krinkle|detached is now known as Krinkle
  1130. # [20:52] * Quits: krawchyk_ (~krawchyk@65.220.49.251) (Remote host closed the connection)
  1131. # [20:52] * Joins: krawchyk (~krawchyk@65.220.49.251)
  1132. # [20:52] * Quits: krawchyk (~krawchyk@65.220.49.251) (Remote host closed the connection)
  1133. # [20:55] * Joins: darobin (~darobin@78.208.93.24)
  1134. # [20:55] * Quits: darobin (~darobin@78.208.93.24) (Client Quit)
  1135. # [20:55] * Quits: TallTed (~Thud@63.119.36.36) (Ping timeout: 260 seconds)
  1136. # [21:00] * Joins: svl (~me@202.68.83.170)
  1137. # [21:01] * Quits: Ms2ger (~Ms2ger@148.216-242-81.adsl-dyn.isp.belgacom.be) (Quit: nn)
  1138. # [21:02] * Quits: cheron (~cheron@unaffiliated/cheron) (Quit: Leaving.)
  1139. # [21:04] * Joins: TallTed (~Thud@63.119.36.36)
  1140. # [21:05] * Quits: nimbu (~nimbu@sjfw1.adobe.com) (Quit: Leaving.)
  1141. # [21:08] * linclark is now known as linclark|afk
  1142. # [21:15] * Parts: say2joe1 (~say2joe@204.56.108.2)
  1143. # [21:17] * abstractj is now known as abstractj|brb
  1144. # [21:22] * Joins: stevefaulkner (~stevefaul@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
  1145. # [21:24] * Quits: svl (~me@202.68.83.170) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  1146. # [21:25] * Joins: snowfox_ben (~benschaaf@50-77-199-197-static.hfc.comcastbusiness.net)
  1147. # [21:25] * Joins: barnabywalters (~barnabywa@92.40.253.11.threembb.co.uk)
  1148. # [21:26] * Quits: stevefaulkner (~stevefaul@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com) (Client Quit)
  1149. # [21:33] * abstractj|brb is now known as abstractj
  1150. # [21:39] <JonathanNeal> hello
  1151. # [21:41] * Quits: tantek (~tantek@70-36-139-86.dsl.dynamic.sonic.net) (Quit: tantek)
  1152. # [21:41] * Joins: tantek (~tantek@70-36-139-86.dsl.dynamic.sonic.net)
  1153. # [21:45] * Quits: barnabywalters (~barnabywa@92.40.253.11.threembb.co.uk) (Quit: Back to real life)
  1154. # [21:45] * Joins: necolas (~necolas@8.25.197.24)
  1155. # [21:51] * Quits: jacobolus (~jacobolus@108-75-75-178.lightspeed.sntcca.sbcglobal.net) (Remote host closed the connection)
  1156. # [21:59] <rillian> howdy
  1157. # [21:59] * Joins: ehsan_ (~ehsan@199.255.40.36)
  1158. # [22:02] <JonathanNeal> So, how does <template> get around not having any logic, say for if statements or loops?
  1159. # [22:03] <TabAtkins> JonathanNeal: It has loops. I think we have a way to avoid generating things, as well, which is basically an if.
  1160. # [22:03] <TabAtkins> (Don't know if that's in the current revision of the spec.)
  1161. # [22:07] <JonathanNeal> Is there a draft of the spec that you think might address these things?
  1162. # [22:11] * Quits: gavinc (~gavin@50.0.77.3) (Read error: Connection reset by peer)
  1163. # [22:12] <jamesr> anyone have a good readymade rant about linking to /TR/ ?
  1164. # [22:12] <jamesr> JonathanNeal, https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/templates/index.html
  1165. # [22:12] <Hixie> jamesr: "it's out of date"
  1166. # [22:14] * Joins: gavinc (~gavin@50.0.77.3)
  1167. # [22:14] <jamesr> JonathanNeal, that's pretty heavy on technical detail and light on explanations it seems
  1168. # [22:14] <JonathanNeal> Yea, I'm trying to extrapolate an example.
  1169. # [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 …
  1170. # [22:15] * Joins: stevefaulkner (~stevefaul@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
  1171. # [22:24] * Quits: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net) (Quit: othermaciej)
  1172. # [22:26] * Joins: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net)
  1173. # [22:27] * Joins: nessy (~silviapf@124-149-71-84.dyn.iinet.net.au)
  1174. # [22:29] * Quits: pablof (~pablof@144.189.31.1) (Quit: ^z)
  1175. # [22:36] * Quits: JesperHansen (~JesperHan@0x5b90c2f0.dhcp.fiberflex.dk) (Read error: Connection reset by peer)
  1176. # [22:37] * abstractj is now known as abstractj|away
  1177. # [22:37] * Joins: JesperHansen (~JesperHan@0x5b90c2f0.dhcp.fiberflex.dk)
  1178. # [22:39] * Joins: jacobolus (~jacobolus@173-164-253-217-SFBA.hfc.comcastbusiness.net)
  1179. # [22:42] * Joins: SimonSapin (~simon@ip-22.net-89-2-144.rev.numericable.fr)
  1180. # [22:43] * Joins: ronaldmansveld (~ronaldman@5ED0EFE5.cm-7-1d.dynamic.ziggo.nl)
  1181. # [22:45] * Quits: stevefaulkner (~stevefaul@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com) (Quit: stevefaulkner)
  1182. # [22:46] * Quits: tantek (~tantek@70-36-139-86.dsl.dynamic.sonic.net) (Quit: tantek)
  1183. # [22:48] <JonathanNeal> https://twitter.com/jon_neal/status/306521507784445952
  1184. # [22:48] <JonathanNeal> IE10 is out for Windows 7.
  1185. # [22:50] * Joins: weinig (~weinig@17.212.155.63)
  1186. # [22:51] * Quits: scor (scor@drupal.org/user/52142/view) (Quit: scor)
  1187. # [22:52] * weinig is now known as weinig|afk
  1188. # [22:55] * Quits: TallTed (~Thud@63.119.36.36)
  1189. # [22:59] * Quits: nessy (~silviapf@124-149-71-84.dyn.iinet.net.au) (Quit: Leaving.)
  1190. # [22:59] * Quits: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  1191. # [23:00] * Quits: jamesr_ (jamesr@nat/google/x-xiyfrfczczyuppou) (Quit: jamesr_)
  1192. # [23:00] * Joins: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net)
  1193. # [23:01] * Joins: nimbu (~nimbu@184.71.178.219)
  1194. # [23:02] * Joins: jamesr_ (jamesr@nat/google/x-ymqdtvqcmrmwaroz)
  1195. # [23:03] * Quits: nimbu (~nimbu@184.71.178.219) (Client Quit)
  1196. # [23:06] <ronaldmansveld> Does any of you happen to have experience with the w3c community groups?
  1197. # [23:07] * Joins: baku (~baku@2-236-39-253.ip231.fastwebnet.it)
  1198. # [23:07] <ronaldmansveld> As in: has any of you been part of one?
  1199. # [23:12] <jgraham> Yes
  1200. # [23:13] * Joins: snowfox (~benschaaf@50-77-199-197-static.hfc.comcastbusiness.net)
  1201. # [23:13] * Quits: snowfox (~benschaaf@50-77-199-197-static.hfc.comcastbusiness.net) (Client Quit)
  1202. # [23:13] * Quits: Maurice` (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
  1203. # [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
  1204. # [23:16] * Quits: snowfox_ben (~benschaaf@50-77-199-197-static.hfc.comcastbusiness.net) (Ping timeout: 256 seconds)
  1205. # [23:16] * Quits: garciawebdev (~garciaweb@190.244.95.154) (Remote host closed the connection)
  1206. # [23:16] * Joins: isherman-book (Adium@nat/google/x-kchgajgcgrmnshhm)
  1207. # [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.
  1208. # [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
  1209. # [23:18] <ronaldmansveld> TabAtkins, thanks :) That was basically my idea of what they would be doing
  1210. # [23:30] * Joins: birtles (~chatzilla@rtr.mozilla.or.jp)
  1211. # [23:30] * Joins: othermaciej (~mjs@17.245.104.33)
  1212. # [23:31] * jernoble is now known as jernoble|afk
  1213. # [23:31] * jernoble|afk is now known as jernoble
  1214. # [23:34] * Quits: jamesr_ (jamesr@nat/google/x-ymqdtvqcmrmwaroz) (Quit: jamesr_)
  1215. # [23:35] * Joins: tomasf (~tom@c-44dbe555.024-204-6c6b7012.cust.bredbandsbolaget.se)
  1216. # [23:36] * Quits: othermaciej (~mjs@17.245.104.33) (Quit: othermaciej)
  1217. # [23:36] * Joins: mven (~mven@169.241.49.193)
  1218. # [23:36] * Joins: othermaciej (~mjs@17.245.104.33)
  1219. # [23:36] <jgraham> ronaldmansveld: Well it's not really clear that they work :)
  1220. # [23:37] <jgraham> Creating a group is easy
  1221. # [23:37] <jgraham> Creating a critical mass of interested, and relevant, parties actually working on a problem in a meaningful way is hard
  1222. # [23:37] * Quits: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  1223. # [23:38] <jgraham> e.g. if you want to suggest something new for browsers you really want browser vendors on board
  1224. # [23:38] <jgraham> So you are much better off using WHATWG since they are already there
  1225. # [23:38] <ronaldmansveld> hmm, i see
  1226. # [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
  1227. # [23:39] <ronaldmansveld> but it seems like nothing happened since they started almost a year ago
  1228. # [23:40] <jgraham> Which group?
  1229. # [23:40] <ronaldmansveld> multilingual web site
  1230. # [23:40] <ronaldmansveld> http://www.w3.org/community/mws/
  1231. # [23:42] * Quits: othermaciej (~mjs@17.245.104.33) (Quit: othermaciej)
  1232. # [23:42] * Quits: zdobersek (~zdobersek@cpe-77.38.31.63.cable.t-1.si) (Quit: ZNC - http://znc.in)
  1233. # [23:43] * Joins: jamesr_ (~jamesr@216.239.55.199)
  1234. # [23:43] * Joins: othermaciej (~mjs@17.245.104.33)
  1235. # [23:45] * Quits: SimonSapin (~simon@ip-22.net-89-2-144.rev.numericable.fr) (Ping timeout: 246 seconds)
  1236. # [23:45] * Quits: othermaciej (~mjs@17.245.104.33) (Client Quit)
  1237. # [23:45] <jgraham> Well the good news is that's nothing browser related
  1238. # [23:45] * Quits: baku (~baku@2-236-39-253.ip231.fastwebnet.it) (Quit: Leaving)
  1239. # [23:46] <jgraham> So I guess just try sending mail to the group list and see if you can get some momentum going?
  1240. # [23:46] <ronaldmansveld> I'll wait for my application to come through, and then I will, thanks :)
  1241. # [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)
  1242. # [23:47] * Joins: esprehn (uid10445@gateway/web/irccloud.com/x-tkbjbqbabvtrasbp)
  1243. # [23:52] * Quits: jamesr_ (~jamesr@216.239.55.199) (Quit: jamesr_)
  1244. # [23:55] * Joins: jamesr_ (jamesr@nat/google/x-gjngjgcwhsqeacpa)
  1245. # [23:59] * Quits: isherman-book (Adium@nat/google/x-kchgajgcgrmnshhm) (Ping timeout: 276 seconds)
  1246. # Session Close: Wed Feb 27 00:00:00 2013

The end :)