/irc-logs / freenode / #whatwg / 2015-02-22 / end

Options:

Previous day, Next day

  1. # Session Start: Sun Feb 22 00:00:00 2015
  2. # Session Ident: #whatwg
  3. # [00:03] * Quits: Ms2ger (~Ms2ger@91.180.137.234) (Quit: nn)
  4. # [00:04] * Quits: biniar (~biniar@unaffiliated/biniar) (Quit: leaving)
  5. # [00:10] * Quits: Azitrex_ (~Azitrex@unaffiliated/azitrex) (Ping timeout: 252 seconds)
  6. # [00:25] * Joins: newtron (~newtron@206-248-186-88.dsl.teksavvy.com)
  7. # [00:32] * Joins: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
  8. # [00:32] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Read error: No route to host)
  9. # [00:36] * Quits: newtron (~newtron@206-248-186-88.dsl.teksavvy.com) (Remote host closed the connection)
  10. # [00:50] * Quits: estellevw_ (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com) (Quit: Snuggling with the puppies)
  11. # [01:01] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  12. # [01:10] * Joins: estellevw_ (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com)
  13. # [01:17] <TabAtkins> Phew, nearly done with DOM.
  14. # [01:17] <TabAtkins> Only at line 4500, but it moves extremely fast now that most links have been converted.
  15. # [01:18] <TabAtkins> Then there's the slogging task of fixing all the linking failures, which hopefully shouldn't be too long.
  16. # [01:20] * Joins: biniar (~biniar@unaffiliated/biniar)
  17. # [01:28] * Quits: estellevw_ (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com) (Quit: Snuggling with the puppies)
  18. # [01:37] * Quits: weinig (~weinig@c-98-234-191-242.hsd1.ca.comcast.net) (Quit: weinig)
  19. # [01:52] * Quits: benwerd (~benwerd@67.180.159.135) (Remote host closed the connection)
  20. # [02:03] * Quits: TuRnaD0 (~Thunderbi@79.142.224.209.prod.bolignet.dk) (Ping timeout: 240 seconds)
  21. # [02:15] * Quits: espadrine (~tyl@dan75-7-88-166-187-54.fbx.proxad.net) (Ping timeout: 252 seconds)
  22. # [02:25] * Quits: nicolasbadia (~nicolasba@hue38-1-78-209-78-115.fbx.proxad.net) (Quit: nicolasbadia)
  23. # [02:33] * Quits: seventh (seventh@192.64.7.99) (Ping timeout: 250 seconds)
  24. # [02:37] * Quits: caitp (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Quit: Leaving)
  25. # [02:37] * Joins: caitp (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
  26. # [02:43] <strugee> Hixie: ping
  27. # [02:43] <Hixie> yo
  28. # [02:43] <strugee> we were going to discuss developers.whatwg.org
  29. # [02:43] <Hixie> yesyes
  30. # [02:44] <strugee> ok
  31. # [02:44] <strugee> so
  32. # [02:44] * strugee looks at the GitHub issue
  33. # [02:46] <strugee> hmm
  34. # [02:47] <strugee> so how complex is your script?
  35. # [02:47] <strugee> do you actually have to parse the entire document into a DOM-like structure, or can you parse individual parts?
  36. # [02:49] <Hixie> i parse the entire thing into a dom
  37. # [02:49] <Hixie> then do extensive manipulations on it
  38. # [02:49] <Hixie> then serialise it back out
  39. # [02:50] <strugee> right
  40. # [02:50] <strugee> but do you actually need to?
  41. # [02:50] <Hixie> what would constitute a need to?
  42. # [02:50] <Hixie> i mean, i dunno how to answer that question
  43. # [02:50] <Hixie> the code to do it is http://software.hixie.ch/applications/wattsi/src/wattsi.pas
  44. # [02:51] <strugee> e.g. to change the <title> you could find the beginning and end of <head> and parse that, then change <title>
  45. # [02:51] <strugee> so you wouldn't have to parse the entire document
  46. # [02:51] <strugee> ok, thanks for the link
  47. # [02:51] <Hixie> how do you "find the beginning and end of <head>" without parsing it?
  48. # [02:52] <Hixie> (the code above isn't quite complete, there's also some glue perl code that isn't published anywhere)
  49. # [02:52] <Hixie> (but the heavy lifting is in that file)
  50. # [02:53] <strugee> you just search for the keyword "<head>" in the string
  51. # [02:53] <strugee> obviously that doesn't work on arbitrary documents but since the source is in a known state I think we can get away with it
  52. # [02:53] <strugee> unless I'm doing something dumb?
  53. # [02:54] <Hixie> i mean, i don't guarantee that i won't change that to <head class="draft"> or something
  54. # [02:55] <Hixie> in particular, i don't see how that would work for the headings and cross-references
  55. # [02:55] <Hixie> which are all over the place
  56. # [02:55] <strugee> so use the keyword "<head" instead of "<head>"
  57. # [02:55] <strugee> ok, that was what I was asking
  58. # [02:55] <Hixie> i don't guarantee i won't spell it "<HEAD" or remove the tag and rely on it being implied
  59. # [02:55] <strugee> right
  60. # [02:55] <Hixie> who knows what i'll be doing 10 years from now :-)
  61. # [02:56] * strugee chuckles
  62. # [02:56] <strugee> ok, scratch that idea :)
  63. # [02:56] <strugee> are you familiar with Node.js streams?
  64. # [02:56] <strugee> that was what I was trying to make it fit into
  65. # [02:56] * Quits: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley) (Ping timeout: 250 seconds)
  66. # [02:57] <Hixie> i'm not very familiar with Node.js
  67. # [02:57] <Hixie> only done one project in it and it was a while ago
  68. # [02:57] <strugee> ok
  69. # [02:57] <strugee> the basic idea is that you do transforms on a stream of text instead of a string
  70. # [02:58] <Hixie> i mean i'm familiar with the idea of streams in general
  71. # [02:58] <Hixie> they're not new :-)
  72. # [02:58] <strugee> right :)
  73. # [02:58] <Hixie> i don't think you can use a one-pass approach with this though, since the cross-references go both ways
  74. # [02:59] <strugee> ok
  75. # [02:59] <strugee> makes sense
  76. # [02:59] <Hixie> i mean, at the most basic level, if you want to output the table of contents at the start, you need to have seen the last heading before you output the table of contents
  77. # [02:59] <strugee> yeah
  78. # [03:00] <strugee> I wonder if you could collect all the footnotes, headers, etc. in one pass and then write them in in a second
  79. # [03:01] <strugee> if worst comes to worse I can just buffer the document and parse
  80. # [03:01] <Hixie> well, html parsing as a general case is a non-streaming operation
  81. # [03:02] <Hixie> but you can probably assume that i don't rely on things like bogus table parsing and so skip those parts
  82. # [03:02] <Hixie> i guess
  83. # [03:02] <Hixie> writing an html parser using the spec's built-in model is a pretty large task as it is
  84. # [03:03] <Hixie> writing one in another model entirely is a whole extra level of pain
  85. # [03:03] <Hixie> since you have to be able to reason about all the implications
  86. # [03:05] * Joins: satazor_ (~satazor@114.248.108.93.rev.vodafone.pt)
  87. # [03:05] * Joins: estellevw_ (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com)
  88. # [03:05] <strugee> yeah, no kidding
  89. # [03:08] * Joins: satazor__ (~satazor@a213-22-1-7.cpe.netcabo.pt)
  90. # [03:08] <strugee> hmm
  91. # [03:09] <Hixie> that's why i was saying you really want an off-the-shelf parser if you're not relying on the output of mine
  92. # [03:09] * Joins: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley)
  93. # [03:10] <Hixie> (though it has to be a pretty configurable one since i add a new void element)
  94. # [03:10] <Hixie> (and a bunch of attributes)
  95. # [03:10] * Quits: satazor_ (~satazor@114.248.108.93.rev.vodafone.pt) (Ping timeout: 252 seconds)
  96. # [03:11] <Hixie> the alternative is you tell me what the output should be and i just generate it
  97. # [03:11] <strugee> ok
  98. # [03:11] * Joins: jacobolus (~jacobolus@112.82.204.144)
  99. # [03:12] <Hixie> i mean, i already generate https://html.spec.whatwg.org/.wattsi-output/multipage-dev/
  100. # [03:12] <Hixie> which is pretty close, i'd wager
  101. # [03:12] <Hixie> that output would be very regular html
  102. # [03:12] <Hixie> which you could then massage more easily
  103. # [03:12] <Hixie> if you wanted to
  104. # [03:15] <strugee> ok
  105. # [03:15] <strugee> yeah, that would be nice
  106. # [03:16] <strugee> what's done to that version?
  107. # [03:16] <strugee> transform to HTML and strip non-dev content?
  108. # [03:16] <strugee> if so then I think we'd just need to insert styles and fix the title
  109. # [03:17] <strugee> or not even the title, since I think that's done already in the source
  110. # [03:17] <Hixie> what should the style link be?
  111. # [03:20] <Hixie> i've added a <link> to styles.css in the same directory
  112. # [03:20] <Hixie> want some <script src=""> too?
  113. # [03:20] <Hixie> and anything else?
  114. # [03:21] <Hixie> the old developers.w.o version had some different handling of references
  115. # [03:21] <Hixie> i'm happy to do something with that too
  116. # [03:22] <strugee> yeah, I think we'll need scripts
  117. # [03:22] <strugee> I can take care of minifying it into one file
  118. # [03:22] <strugee> so just a scripts.js in the root would be fine, I think
  119. # [03:24] * Joins: benwerd (~benwerd@67.180.159.135)
  120. # [03:27] <strugee> I'm getting 404 on https://html.spec.whatwg.org/.wattsi-output/multipage-dev/
  121. # [03:28] <strugee> and https://html.spec.whatwg.org/.wattsi-output/ shows a directory listing with nothing in it
  122. # [03:29] <Hixie> yeah the caniuse.json data is broken
  123. # [03:29] <Hixie> which is breaking my script
  124. # [03:31] <strugee> ok
  125. # [03:31] <strugee> so when that's fixed, stuff will magically appear in that directory?
  126. # [03:32] <Hixie> yeah
  127. # [03:32] <Hixie> well
  128. # [03:32] <Hixie> not when caniuse.json is fixed
  129. # [03:32] <Hixie> but when i work around it
  130. # [03:32] <Hixie> in a few minutes
  131. # [03:32] <Hixie> i tried deleting the file
  132. # [03:32] <Hixie> and my script was unhappy
  133. # [03:33] <Hixie> man my script really freaking wants real data in this file
  134. # [03:33] <Hixie> hm this file isn't broken, wtf
  135. # [03:33] <Hixie> maybe there's a bug in my json parser
  136. # [03:34] <Hixie> something fishy going on
  137. # [03:35] <strugee> ok
  138. # [03:35] <strugee> keep me posted
  139. # [03:36] <Hixie> wt_f_
  140. # [03:36] <Hixie> wget is screwing me
  141. # [03:38] <Hixie> $ wget -o /dev/null -O caniuse.json --no-check-certificate https://raw.githubusercontent.com/Fyrd/caniuse/master/data.json
  142. # [03:38] <Hixie> $ wget -o /dev/null -O caniuse2.json --no-check-certificate https://raw.githubusercontent.com/Fyrd/caniuse/master/data.json
  143. # [03:38] <Hixie> $ sha512sum caniuse*
  144. # [03:38] <Hixie> 10acc62e0124195a1378b1ea79a91db4f13d861629afdcf76a928c2e7b359a890cdc0d5ee261d138aa4a86544b8b648a4cd44cdb610a7391fdddda861594b688 caniuse2.json
  145. # [03:38] <Hixie> 805859fcdf2d05c06e3f35a0bc7f539d7dbe02d613c06dc4475592bd5e9204161a659573edfff96ae0121c00bbcd3fa89d1802fbd07507714e180c4ffbd673cc caniuse.json
  146. # [03:38] * Joins: ohaibbq (~ohaibbq@2601:9:a80:a8f:a8ad:94a4:73d2:feae)
  147. # [03:42] <strugee> it couldn't be changing that fast, could it?
  148. # [03:42] <Hixie> no
  149. # [03:42] <Hixie> no idea what's up
  150. # [03:42] <strugee> let me try
  151. # [03:44] <Hixie> it worked once i nuked the existing file on disk a second time
  152. # [03:44] <Hixie> dunno what's up with THAT
  153. # [03:44] <Hixie> wget trying to do some sort of completion or something
  154. # [03:44] <strugee> _weird_
  155. # [03:44] <strugee> mine match, by the way
  156. # [03:44] <strugee> I did it with curl
  157. # [03:44] <Hixie> mine too, now. :-/
  158. # [03:44] <Hixie> anyway, look now
  159. # [03:44] <strugee> ok
  160. # [03:46] * Joins: tantek (~tantek@c-50-143-152-128.hsd1.ca.comcast.net)
  161. # [03:46] <strugee> ok, fantastic
  162. # [03:47] <strugee> by the way, what's link-fixup.js?
  163. # [03:47] <strugee> it's 404ing in my console when I load multipage-dev/
  164. # [03:48] <Hixie> handles breaking links
  165. # [03:48] <Hixie> try html.spec.whatwg.org/multipage/#the-canvas-element
  166. # [03:48] * Quits: xtrm0 (uid12574@gateway/web/irccloud.com/x-muxdjcsbmpyeyigq) (Quit: Connection closed for inactivity)
  167. # [03:48] <strugee> s/multipage/multipage-dev/?
  168. # [03:51] <Hixie> in theory it works for the multipage-dev version too
  169. # [03:51] <strugee> nevermind
  170. # [03:51] <Hixie> but i was giving you an example of it working on the spec multipage version
  171. # [03:51] <strugee> no, I see what you were saying now
  172. # [03:52] <caitp> is there any reason why the single page version exists? you can't find anything on it anyway
  173. # [03:52] <strugee> are you talking about submission thing at the bottom?
  174. # [03:52] <caitp> 99/100 times, cmd+f yields nothing useful
  175. # [03:53] <caitp> not that trying to find anything in the multipage version is any better
  176. # [03:53] <caitp> you need like a dxr for the spec
  177. # [03:54] <strugee> or we should put the built version in Git or something so you can grep it
  178. # [03:55] <caitp> eh but then i'd have to keep a fork of it
  179. # [03:55] <strugee> *shrugs* set up some automation
  180. # [03:57] <Hixie> we have a copy in git, for the record :-)
  181. # [03:57] <Hixie> on github
  182. # [03:58] <Hixie> why does cmd+f not work for you? is your browser broken?
  183. # [04:08] * Quits: tantek (~tantek@c-50-143-152-128.hsd1.ca.comcast.net) (Quit: tantek)
  184. # [04:09] <strugee> all right, laptop's dying
  185. # [04:09] <strugee> Hixie: it's been a pleasure
  186. # [04:09] <strugee> I'll ping you on GitHub or something if I need anything else
  187. # [04:09] <Hixie> np. keep me posted about what you want.
  188. # [04:10] <strugee> thanks!
  189. # [04:10] <caitp__> it's not that the browser is broken, it's that A) the document is too large, B) there are too many references to key phrases, C) many of the references don't lead anywhere useful, or lead to the references section, which in turn leads nowhere useful
  190. # [04:10] <caitp__> it's basically organized really badly
  191. # [04:11] <caitp__> a dxr would help a lot
  192. # [04:11] <caitp__> cross referencing the referenced specs, and not all being a client-side operation
  193. # [04:11] <caitp__> would make it a lot easier to work with
  194. # [04:12] <Hixie> if there are problems, file bugs with concrete suggestions
  195. # [04:12] <Hixie> cos "it's basically organized really badly" is really unactionable given that i've spent the last 11 years organising it as best as i can :-)
  196. # [04:13] <Hixie> more or less full-time :-)
  197. # [04:13] <caitp__> "dxr" is a pretty concrete suggestion, I think
  198. # [04:13] <caitp__> server-side spec searching and cross-referencing, that's pretty concrete :p
  199. # [04:13] * Quits: satazor__ (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
  200. # [04:14] <Hixie> i've no idea what you mean by this
  201. # [04:14] <caitp__> huk
  202. # [04:15] <caitp__> okay so the classical example would be, suppose you had to load the entire source tree of chromium into your browser, formatted
  203. # [04:15] <caitp__> that would be a pretty big document, right?
  204. # [04:15] <caitp__> searching it would be hard, expensive, and most of the time wouldn't turn up anything particularly useful
  205. # [04:16] <caitp__> the spec is pretty big, searching it frequently turns up nothing useful
  206. # [04:16] <caitp__> so it would be nice to provide better ways of doing this, and even caching entries for common searches
  207. # [04:17] <Hixie> what are you talking about. searching the spec works great, i do it all the time.
  208. # [04:17] <Hixie> plus every term is cross-referenced in both directions.
  209. # [04:17] <caitp__> mmmm not so much
  210. # [04:17] <Hixie> with a little popup that shows all the references
  211. # [04:17] <caitp__> even doing something as simple as looking up interfaces takes way longer than it should
  212. # [04:17] <Hixie> and i've watched chromium developers, they basically use "grep" which is more or less the same as find-in-page
  213. # [04:18] <Hixie> there's an interface index
  214. # [04:18] <caitp__> grep is faster, but again, means keeping a fork
  215. # [04:19] <Hixie> grep is the same speed as find-in-page
  216. # [04:19] <caitp__> no it really isn't
  217. # [04:20] <Hixie> are you using some ancient browser or something?
  218. # [04:20] <caitp__> no
  219. # [04:21] <caitp__> I mostly use canary on an 8 core machine, but it's not any better with stable, or safari 8, or FF nightly or stable
  220. # [04:21] <caitp__> it's a big document, it loads slowly, and referenced terms link nowhere useful, and unreferenced terms link nowhere
  221. # [04:21] <caitp__> it's not very usable for quickly looking something up
  222. # [04:22] <caitp__> and if I'm on a laptop, forget it =)
  223. # [04:22] <Hixie> for each "referenced terms link nowhere useful" case, file a bug.
  224. # [04:22] <Hixie> saying what you want it to link to.
  225. # [04:23] <Hixie> for "unreferenced terms" i've no idea what you mean
  226. # [04:23] <caitp__> they all lead to the references section, which means A) i lose my place which was very difficult to get to in the first place, and B) don't immediately link to anything useful, just a references section
  227. # [04:23] <caitp__> "unreferenced" eg, not in the references section, no popup, no hyperlink
  228. # [04:23] <caitp__> just text
  229. # [04:23] <Hixie> but for the original complaint, find in page... it's pretty much instantaneous for me. i don't understand the problem.
  230. # [04:23] <Hixie> how is grep faster?
  231. # [04:24] <Hixie> i've no idea what you mean by "they all lead to the references section"
  232. # [04:24] <Hixie> what is "all" here?
  233. # [04:24] <Hixie> i mean there's 4313 <dfn> elements in the document
  234. # [04:24] <Hixie> so quite obviously, not all the cross-references are to the references section
  235. # [04:24] <Hixie> in fact hardly any are
  236. # [04:24] <caitp__> I'm not sure what your language for it is, but a cross-referenced term is typically a link which opens a popup window, with links which lead to a references section at the bottom of the document
  237. # [04:24] <caitp__> and by "typically" I mean always, as far as I can tell
  238. # [04:25] <Hixie> can you give me an example?
  239. # [04:25] <caitp__> pretty much any time I find one, that's what happens :p
  240. # [04:25] <Hixie> ok find one
  241. # [04:25] <Hixie> tell me what it is
  242. # [04:25] <Hixie> i'm at a loss as to what you mean
  243. # [04:25] <Hixie> the only links into the references section i'm aware of are the [FOO] links
  244. # [04:25] <Hixie> which are, well, the links to the references section.
  245. # [04:26] <Hixie> and i don't think any of those do any popups or anything
  246. # [04:26] <Hixie> (there is an open bug on making them more helpful)
  247. # [04:31] * Joins: sicking (~sicking@c-98-210-159-193.hsd1.ca.comcast.net)
  248. # [04:33] * Quits: sicking (~sicking@c-98-210-159-193.hsd1.ca.comcast.net) (Client Quit)
  249. # [04:42] <caitp__> i still prfer the dxr idea
  250. # [04:47] * Quits: benwerd (~benwerd@67.180.159.135) (Remote host closed the connection)
  251. # [04:49] * Joins: benwerd (~benwerd@67.180.159.135)
  252. # [04:50] <Hixie> caitp__: can you give me an example of what you mean? what are these cross-references that aren't useful?
  253. # [04:51] <caitp__> i'm on my laptop, too much to open the single page site
  254. # [04:51] <caitp__> typical experience though, is looking up details on some attribute in an idl interface
  255. # [04:51] <Hixie> the multipage copy has the same links
  256. # [04:51] <caitp__> leads to a references link
  257. # [04:52] <Hixie> so feel free to give me the links from there
  258. # [04:52] * Joins: sicking (~sicking@c-98-210-159-193.hsd1.ca.comcast.net)
  259. # [04:54] * Quits: ohaibbq (~ohaibbq@2601:9:a80:a8f:a8ad:94a4:73d2:feae) (Remote host closed the connection)
  260. # [04:54] <MikeSmith> I do searches in the single-page spec all the time but I do it from elinks
  261. # [04:54] <MikeSmith> or lynx
  262. # [04:55] <MikeSmith> but I guess that's not a general solution that a lot of other people would be happy with
  263. # [04:56] <MikeSmith> but I'll also agree that trying to load and use the the single-page rendered version in a real browser is not practical
  264. # [04:57] <Hixie> i mean, it's the only way i use the spec
  265. # [04:57] <Hixie> and i do it all the time
  266. # [05:07] * Quits: sicking (~sicking@c-98-210-159-193.hsd1.ca.comcast.net) (Quit: sicking)
  267. # [05:15] <zewt> i find the multipage one unusable and always use the single page one (broken backrefs are a dealbreaker)
  268. # [05:16] <MikeSmith> I use a 4-year-old laptop most of the time so I guess I should get a faster machine
  269. # [05:18] * Joins: tantek (~tantek@c-50-143-152-128.hsd1.ca.comcast.net)
  270. # [05:18] * Joins: sicking (~sicking@c-98-210-159-193.hsd1.ca.comcast.net)
  271. # [05:20] * Quits: sicking (~sicking@c-98-210-159-193.hsd1.ca.comcast.net) (Client Quit)
  272. # [05:22] <caitp__> i guess everyone has different experiences with it
  273. # [05:22] * Quits: tantek (~tantek@c-50-143-152-128.hsd1.ca.comcast.net) (Client Quit)
  274. # [05:22] <caitp__> online search + fast loading smaller pages would go a long way though, i think
  275. # [05:24] <Hixie> MikeSmith: i mean, the desktop i use for this is from 2010...
  276. # [05:28] * xiinotulp is now known as plutoniix
  277. # [05:31] * Joins: newtron (~newtron@206-248-186-88.dsl.teksavvy.com)
  278. # [05:33] * Joins: tantek (~tantek@c-50-143-152-128.hsd1.ca.comcast.net)
  279. # [05:34] * Quits: newtron (~newtron@206-248-186-88.dsl.teksavvy.com) (Remote host closed the connection)
  280. # [06:16] * Quits: jacobolus (~jacobolus@112.82.204.144) (Remote host closed the connection)
  281. # [06:23] * Joins: deltab (~deltab@cpc2-smal2-0-0-cust22.19-1.cable.virginm.net)
  282. # [06:45] * Joins: newtron (~newtron@206-248-186-88.dsl.teksavvy.com)
  283. # [06:49] * Quits: newtron (~newtron@206-248-186-88.dsl.teksavvy.com) (Ping timeout: 252 seconds)
  284. # [07:08] * Joins: DanilovAlexey (~DanilovAl@shpd-178-64-151-158.vologda.ru)
  285. # [07:10] * Quits: DanilovA_ (~DanilovAl@shpd-178-64-134-213.vologda.ru) (Ping timeout: 245 seconds)
  286. # [07:12] * Quits: benwerd (~benwerd@67.180.159.135) (Remote host closed the connection)
  287. # [07:22] * Joins: Azitrex (~Azitrex@unaffiliated/azitrex)
  288. # [07:25] <zewt> why am i still using chrome? now it's saying "foo.zip may harm your browsing experience, so Chrome has blocked it", and it literally won't let me save the file
  289. # [07:26] <zewt> pretty unbelievable
  290. # [07:28] <caitp__> it just wants you to have the best browsing experience possible and gets a bit carried away
  291. # [07:28] <zewt> by making me download this file twice (because it already downloaded all of it, it just won't save it)
  292. # [07:29] <zewt> at least half a gig isn't as much as it used to be
  293. # [07:43] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
  294. # [07:44] <KevinMarks_> Do any implementations of audio or video tags support media fragments in sources?
  295. # [07:51] * Quits: tantek (~tantek@c-50-143-152-128.hsd1.ca.comcast.net) (Quit: tantek)
  296. # [07:53] * Quits: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
  297. # [08:00] <annevk> TabAtkins: well, DOM wasn't built in a day
  298. # [08:07] * annevk uses single-page without a problem too, find in page combined with backreferences is pretty much all I use...
  299. # [08:12] * Joins: KevinMarks__ (~yaaic@2607:fb90:50f:c540:bdad:ecb9:a084:b96f)
  300. # [08:15] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 256 seconds)
  301. # [08:17] * Quits: beverloo (beverloo@nat/google/x-knzesclcnexvjgof) (Ping timeout: 250 seconds)
  302. # [08:29] * Joins: beverloo (beverloo@nat/google/x-aylfonuxpdbkbnto)
  303. # [08:37] <TabAtkins> strugee: Please dont' try and do text-based transforms on an HTML document. Just use a real HTML parser and deal with it that way. Python has html5lib; I'm unsure of what standards-compliant parsers exist in JS.
  304. # [08:42] * Joins: xiinotulp (~plutoniix@node-zii.pool-180-180.dynamic.totbb.net)
  305. # [08:43] <annevk> https://github.com/aredridel/html5 perhaps?
  306. # [08:45] * Quits: plutoniix (~plutoniix@node-mez.pool-101-108.dynamic.totbb.net) (Ping timeout: 250 seconds)
  307. # [08:50] * Joins: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
  308. # [08:52] <Domenic> Also parse5
  309. # [08:53] * Quits: estellevw_ (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com) (Quit: Snuggling with the puppies)
  310. # [08:54] * Quits: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
  311. # [08:57] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
  312. # [09:12] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
  313. # [09:15] * Quits: KevinMarks__ (~yaaic@2607:fb90:50f:c540:bdad:ecb9:a084:b96f) (Ping timeout: 250 seconds)
  314. # [09:22] * Quits: KevinMarks (~KevinMark@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
  315. # [09:40] * Joins: roc (~chatzilla@121-99-196-184.bng1.tvc.orcon.net.nz)
  316. # [09:47] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
  317. # [09:52] * Joins: jacobolus (~jacobolus@49.80.100.177)
  318. # [10:25] * Joins: Maurice (copyman@unaffiliated/maurice)
  319. # [10:34] * Quits: jacobolus (~jacobolus@49.80.100.177) (Remote host closed the connection)
  320. # [10:34] * Joins: jacobolus (~jacobolus@49.80.100.177)
  321. # [10:39] * Quits: jacobolus (~jacobolus@49.80.100.177) (Ping timeout: 264 seconds)
  322. # [10:39] * Joins: alrra (uid62345@gateway/web/irccloud.com/x-domfgjouaxbgrpzl)
  323. # [10:46] * Joins: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
  324. # [10:50] * Quits: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
  325. # [10:55] * Joins: jyasskin (~jyasskin@88.128.80.44)
  326. # [10:58] * Joins: jacobolus (~jacobolus@122.195.57.137)
  327. # [11:02] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
  328. # [11:04] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
  329. # [11:30] <strugee> TabAtkins: yeah, I'm off that train. Hixie talked me out of it
  330. # [11:30] <strugee> it wasn't that hard. I didn't hold out much hope that it could work anyway :)
  331. # [11:47] * Quits: psy_ (~psy@103.6.159.170) (Ping timeout: 252 seconds)
  332. # [11:48] * Joins: psy_ (~psy@103.6.159.170)
  333. # [11:52] * Quits: kapil___ (uid36151@gateway/web/irccloud.com/x-mdvaxwsuvkqcvtel) (Quit: Connection closed for inactivity)
  334. # [11:55] * Joins: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
  335. # [11:56] * Quits: jyasskin (~jyasskin@88.128.80.44) (Quit: My computer has gone to sleep. ZZZzzz…)
  336. # [12:02] * Quits: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr) (Ping timeout: 252 seconds)
  337. # [12:03] * Joins: fredy_ (~fredy@snf-535807.vm.okeanos.grnet.gr)
  338. # [12:04] * xiinotulp is now known as plutoniix
  339. # [12:14] * Quits: sarri (~sari@unaffiliated/sarri) (Ping timeout: 240 seconds)
  340. # [12:15] * Joins: sarri (~sari@unaffiliated/sarri)
  341. # [12:36] * Krinkle|detached is now known as Krinkle
  342. # [12:49] * fredy_ is now known as fredy
  343. # [12:50] * fredy is now known as Guest41551
  344. # [12:58] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
  345. # [13:00] * Quits: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 255 seconds)
  346. # [13:02] * Joins: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
  347. # [13:05] * Joins: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
  348. # [13:06] * Quits: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
  349. # [13:14] * Joins: satazor_ (~satazor@a213-22-1-7.cpe.netcabo.pt)
  350. # [13:15] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Ping timeout: 246 seconds)
  351. # [13:21] * Joins: kapil___ (uid36151@gateway/web/irccloud.com/x-snuulmbbwrmdpzwa)
  352. # [13:24] * Quits: darobin (~darobin@mtl93-18-78-208-93-24.fbx.proxad.net) (Ping timeout: 240 seconds)
  353. # [13:29] * Quits: satazor_ (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
  354. # [13:34] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
  355. # [13:40] * Quits: ^esc (~esc-ape@178.165.128.255.wireless.dyn.drei.com) (Ping timeout: 264 seconds)
  356. # [13:43] * Joins: jyasskin (~jyasskin@business-092-079-137-146.static.arcor-ip.net)
  357. # [13:46] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
  358. # [13:47] * Joins: tav_ (~tav`@host31-52-143-103.range31-52.btcentralplus.com)
  359. # [13:47] * Quits: tav (~tav`@host31-52-143-103.range31-52.btcentralplus.com) (Read error: No route to host)
  360. # [13:47] * tav_ is now known as tav
  361. # [13:57] * Joins: iandevlin (~iandevlin@dslb-178-006-015-008.178.006.pools.vodafone-ip.de)
  362. # [14:08] * Joins: newtron (~newtron@206-248-186-88.dsl.teksavvy.com)
  363. # [14:20] * Quits: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
  364. # [14:23] * Joins: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
  365. # [14:33] * Joins: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
  366. # [14:34] * Quits: alrra (uid62345@gateway/web/irccloud.com/x-domfgjouaxbgrpzl) (Quit: Connection closed for inactivity)
  367. # [14:36] * Quits: tav (~tav`@host31-52-143-103.range31-52.btcentralplus.com) (Read error: Connection reset by peer)
  368. # [14:37] * Quits: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
  369. # [14:45] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
  370. # [14:47] * Joins: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
  371. # [14:53] * Joins: tav (~tav`@host31-52-143-103.range31-52.btcentralplus.com)
  372. # [14:53] * Joins: jsx (uid48919@fsf/intern/jsx)
  373. # [14:54] * Quits: jyasskin (~jyasskin@business-092-079-137-146.static.arcor-ip.net) (Quit: My computer has gone to sleep. ZZZzzz…)
  374. # [14:59] * Joins: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
  375. # [15:03] * Quits: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
  376. # [15:05] * Joins: Ms2ger (~Ms2ger@24.241-64-87.adsl-dyn.isp.belgacom.be)
  377. # [15:14] * Quits: newtron (~newtron@206-248-186-88.dsl.teksavvy.com) (Quit: Leaving...)
  378. # [15:14] * Joins: alrra (uid62345@gateway/web/irccloud.com/x-xyqiqkltxudqroww)
  379. # [15:17] * Quits: jacobolus (~jacobolus@122.195.57.137) (Remote host closed the connection)
  380. # [15:19] * Joins: newtron (~newtron@206-248-186-88.dsl.teksavvy.com)
  381. # [15:28] * Joins: jacobolus (~jacobolus@122.195.57.137)
  382. # [15:42] * Quits: kapil___ (uid36151@gateway/web/irccloud.com/x-snuulmbbwrmdpzwa) (Quit: Connection closed for inactivity)
  383. # [15:42] * Joins: ^esc (~esc-ape@178.165.128.170.wireless.dyn.drei.com)
  384. # [15:57] * Quits: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
  385. # [16:23] * Quits: Fusl (Fusl@unaffiliated/fusl) (*.net *.split)
  386. # [16:23] * Quits: Hixie (~ianh@178.255.149.100) (*.net *.split)
  387. # [16:23] * Quits: clamstar (~rx-ident@162.243.230.189) (*.net *.split)
  388. # [16:23] * Quits: mrbkap (~mrbkap@people1.scl3.mozilla.com) (*.net *.split)
  389. # [16:23] * Quits: bcjordan (~bcjordan@ec2-54-172-35-148.compute-1.amazonaws.com) (*.net *.split)
  390. # [16:23] * Quits: gargamel (~cinch@ec2-54-149-248-162.us-west-2.compute.amazonaws.com) (*.net *.split)
  391. # [16:23] * Quits: manu (~manu@216.252.204.51) (*.net *.split)
  392. # [16:23] * Quits: mounir (~mounir@oldworld.fr) (*.net *.split)
  393. # [16:23] * Quits: howitdo (~howitdo@unaffiliated/howitdo) (*.net *.split)
  394. # [16:23] * Quits: rektide (~rektide@eldergods.com) (*.net *.split)
  395. # [16:23] * Joins: manu (~manu@216.252.204.51)
  396. # [16:23] * Joins: Hixie (~ianh@178.255.149.100)
  397. # [16:23] * Joins: mounir (~mounir@oldworld.fr)
  398. # [16:23] * Joins: rektide (~rektide@eldergods.com)
  399. # [16:24] * Joins: bcjordan (~bcjordan@ec2-54-172-35-148.compute-1.amazonaws.com)
  400. # [16:24] * Joins: mrbkap (~mrbkap@people1.scl3.mozilla.com)
  401. # [16:24] * Joins: Fusl (Fusl@unaffiliated/fusl)
  402. # [16:24] * Joins: gargamel (~cinch@ec2-54-149-248-162.us-west-2.compute.amazonaws.com)
  403. # [16:24] * Joins: howitdo (~howitdo@unaffiliated/howitdo)
  404. # [16:31] * Joins: clamstar (~rx-ident@162.243.230.189)
  405. # [16:34] * Quits: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
  406. # [16:35] * Joins: espadrine (~tyl@dan75-7-88-166-187-54.fbx.proxad.net)
  407. # [16:39] * Joins: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
  408. # [16:40] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Read error: No route to host)
  409. # [16:40] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
  410. # [16:41] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Read error: No route to host)
  411. # [16:41] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
  412. # [16:43] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
  413. # [16:48] * Joins: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
  414. # [16:50] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
  415. # [16:58] * Joins: tantek (~tantek@50-1-62-185.dsl.dynamic.fusionbroadband.com)
  416. # [17:04] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
  417. # [17:06] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
  418. # [17:15] * Quits: newtron (~newtron@206-248-186-88.dsl.teksavvy.com) (Quit: Leaving...)
  419. # [17:16] * Joins: newtron (~newtron@206-248-186-88.dsl.teksavvy.com)
  420. # [17:17] * Joins: mven (~textual@72.183.104.138)
  421. # [17:17] * Quits: mven (~textual@72.183.104.138) (Excess Flood)
  422. # [17:22] * Quits: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
  423. # [17:24] * Quits: newtron (~newtron@206-248-186-88.dsl.teksavvy.com) (Remote host closed the connection)
  424. # [17:26] * Quits: aretecode (~aretecode@50.23.131.206-static.reverse.softlayer.com) (Read error: Connection reset by peer)
  425. # [17:28] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
  426. # [17:30] * Joins: aretecode (~aretecode@S01061859339e5f51.cc.shawcable.net)
  427. # [17:36] * Quits: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 246 seconds)
  428. # [17:38] * Joins: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
  429. # [17:40] * Quits: nunnun (~hiro@2001:200:164:48:20c:29ff:fe02:11d2) (Ping timeout: 265 seconds)
  430. # [17:41] * Joins: nunnun (~hiro@2001:200:164:48:20c:29ff:fe02:11d2)
  431. # [17:48] * Quits: tantek (~tantek@50-1-62-185.dsl.dynamic.fusionbroadband.com) (Quit: tantek)
  432. # [17:54] * Quits: Gege (gege@future.deferred.io) (Ping timeout: 252 seconds)
  433. # [17:54] * Joins: Gege (gege@future.deferred.io)
  434. # [17:55] * Quits: dshwang (~dshwang@192.55.55.39) (Remote host closed the connection)
  435. # [17:59] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
  436. # [18:00] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
  437. # [18:00] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
  438. # [18:03] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Ping timeout: 240 seconds)
  439. # [18:05] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Ping timeout: 265 seconds)
  440. # [18:14] * Joins: omz (~omz@201-213-176-206.net.prima.net.ar)
  441. # [18:15] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
  442. # [18:16] * Joins: watilde (~watilde@i114-180-108-27.s04.a013.ap.plala.or.jp)
  443. # [18:18] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
  444. # [18:19] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
  445. # [18:22] * Quits: watilde (~watilde@i114-180-108-27.s04.a013.ap.plala.or.jp) (Remote host closed the connection)
  446. # [18:25] * Joins: newtron (~newtron@206-248-186-88.dsl.teksavvy.com)
  447. # [18:25] * Quits: omz (~omz@201-213-176-206.net.prima.net.ar) (Read error: Connection reset by peer)
  448. # [18:26] * Quits: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 264 seconds)
  449. # [18:26] * Joins: omz (~omz@201-213-176-206.net.prima.net.ar)
  450. # [18:27] * Joins: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
  451. # [18:29] * Quits: newtron (~newtron@206-248-186-88.dsl.teksavvy.com) (Ping timeout: 252 seconds)
  452. # [18:31] * Joins: darobin (~darobin@mtl93-18-78-208-93-24.fbx.proxad.net)
  453. # [18:32] * Joins: watilde (~watilde@i114-180-108-27.s04.a013.ap.plala.or.jp)
  454. # [18:33] * Joins: benwerd (~benwerd@67.180.159.135)
  455. # [18:43] * Joins: estellevw_ (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com)
  456. # [18:49] * Quits: estellevw_ (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com) (Quit: Snuggling with the puppies)
  457. # [18:54] * Quits: annevk (~annevk@77-57-115-157.dclient.hispeed.ch) (Remote host closed the connection)
  458. # [18:54] * Joins: annevk (~annevk@77-57-115-157.dclient.hispeed.ch)
  459. # [19:03] * Quits: watilde (~watilde@i114-180-108-27.s04.a013.ap.plala.or.jp) (Remote host closed the connection)
  460. # [19:05] <annevk> Very hard not to 386 https://bugzilla.mozilla.org/show_bug.cgi?id=999544
  461. # [19:08] * Quits: darobin (~darobin@mtl93-18-78-208-93-24.fbx.proxad.net) (Remote host closed the connection)
  462. # [19:14] * Quits: alrra (uid62345@gateway/web/irccloud.com/x-xyqiqkltxudqroww) (Quit: Connection closed for inactivity)
  463. # [19:23] * Joins: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
  464. # [19:24] * Quits: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
  465. # [19:25] * Joins: benjamingr (uid23465@gateway/web/irccloud.com/x-jzzxcfwtyzorxhrz)
  466. # [19:25] * Joins: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
  467. # [19:26] * Joins: newtron (~newtron@206-248-186-88.dsl.teksavvy.com)
  468. # [19:30] * Quits: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Ping timeout: 244 seconds)
  469. # [19:30] * Quits: newtron (~newtron@206-248-186-88.dsl.teksavvy.com) (Ping timeout: 252 seconds)
  470. # [19:37] * Joins: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi)
  471. # [19:41] * Quits: plutoniix (~plutoniix@node-zii.pool-180-180.dynamic.totbb.net) (Ping timeout: 246 seconds)
  472. # [19:43] * Joins: dshwang (dshwang@nat/intel/x-sxnpiyntecrsqdqr)
  473. # [19:43] * Quits: omz (~omz@201-213-176-206.net.prima.net.ar) (Read error: Connection reset by peer)
  474. # [19:43] * Joins: omz (~omz@201-213-176-206.net.prima.net.ar)
  475. # [19:46] * Quits: jacobolus (~jacobolus@122.195.57.137) (Remote host closed the connection)
  476. # [19:46] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
  477. # [19:54] * Quits: eric_carlson (~ericc@c-24-6-239-9.hsd1.ca.comcast.net) (Quit: eric_carlson)
  478. # [19:56] * Joins: KevinMarks_ (~KevinMark@c-67-164-14-200.hsd1.ca.comcast.net)
  479. # [19:58] * Joins: bholley (~bholley@174-29-13-139.hlrn.qwest.net)
  480. # [20:04] * Joins: jyasskin (~jyasskin@business-092-079-137-146.static.arcor-ip.net)
  481. # [20:05] * Joins: darobin (~darobin@mtl93-18-78-208-93-24.fbx.proxad.net)
  482. # [20:27] * Joins: newtron (~newtron@206-248-186-88.dsl.teksavvy.com)
  483. # [20:28] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
  484. # [20:28] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
  485. # [20:31] * Quits: newtron (~newtron@206-248-186-88.dsl.teksavvy.com) (Ping timeout: 252 seconds)
  486. # [20:35] * Joins: plutoniix (~plutoniix@node-zii.pool-180-180.dynamic.totbb.net)
  487. # [20:35] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
  488. # [20:43] * Joins: benwerd_ (~benwerd@67.180.159.135)
  489. # [20:43] * Quits: benwerd (~benwerd@67.180.159.135) (Read error: Connection reset by peer)
  490. # [20:45] * Krinkle is now known as Krinkle|detached
  491. # [20:46] * Joins: jacobolus (~jacobolus@122.195.57.137)
  492. # [20:47] * Quits: nunnun (~hiro@2001:200:164:48:20c:29ff:fe02:11d2) (Ping timeout: 265 seconds)
  493. # [20:47] * Quits: omz (~omz@201-213-176-206.net.prima.net.ar) (Read error: Connection reset by peer)
  494. # [20:48] * Joins: omz (~omz@201-213-176-206.net.prima.net.ar)
  495. # [20:50] * Quits: tyoshino________ (sid19222@gateway/web/irccloud.com/x-fjqzgsrvouziiahe) (Ping timeout: 265 seconds)
  496. # [20:50] * Quits: ato (sid16069@gateway/web/irccloud.com/x-tiyuxqrgynmfkqoj) (Ping timeout: 265 seconds)
  497. # [20:50] * Quits: sspi (sid34681@gateway/web/irccloud.com/x-pftqgsazsaumtoni) (Ping timeout: 265 seconds)
  498. # [20:50] * Quits: mkwst (sid395@gateway/web/irccloud.com/x-yxsfrgnhkyrllwuz) (Ping timeout: 265 seconds)
  499. # [20:50] * Quits: FerasM____ (sid28672@gateway/web/irccloud.com/x-msijyeysreipdpbl) (Ping timeout: 265 seconds)
  500. # [20:50] * Quits: bret (sid12421@gateway/web/irccloud.com/x-pwesdfkrpizjcksd) (Ping timeout: 265 seconds)
  501. # [20:50] * Quits: dglazkov (sid4270@gateway/web/irccloud.com/x-fonarftgxyuikrwg) (Ping timeout: 265 seconds)
  502. # [20:50] * Quits: mathiasbynens (sid2247@gateway/web/irccloud.com/x-ggbydzjrnujjmdqv) (Ping timeout: 265 seconds)
  503. # [20:50] * Quits: dherman (sid7996@gateway/web/irccloud.com/x-zqzkcnzedelrtjcx) (Ping timeout: 265 seconds)
  504. # [20:50] * Quits: jamesr___ (sid10481@gateway/web/irccloud.com/x-bepvycsuyebkanoy) (Ping timeout: 265 seconds)
  505. # [20:50] * Quits: Domenic (sid10976@gateway/web/irccloud.com/x-lqhldgqcfxzgleqs) (Ping timeout: 265 seconds)
  506. # [20:50] * Quits: jorendorff (sid28423@gateway/web/irccloud.com/x-vhcwgqckgbpureje) (Read error: Connection reset by peer)
  507. # [20:50] * Quits: krit (sid15081@gateway/web/irccloud.com/x-zdbmzqmgnxpmvcso) (Write error: Connection reset by peer)
  508. # [20:50] * Quits: matijs (sid2278@gateway/web/irccloud.com/x-xutpnpgxhboqbreb) (Read error: Connection reset by peer)
  509. # [20:50] * Quits: birtles (sid16523@gateway/web/irccloud.com/x-odcikeogbqoadudw) (Read error: Connection reset by peer)
  510. # [20:50] * Quits: abucur (sid19072@gateway/web/irccloud.com/x-ifesxucxklmjikon) (Read error: Connection reset by peer)
  511. # [20:50] * Quits: JakeA (sid3836@gateway/web/irccloud.com/x-uqdbzajgbjkwezlc) (Read error: Connection reset by peer)
  512. # [20:50] * Quits: dmurph (sid42525@gateway/web/irccloud.com/x-hbygcipatfhttual) (Read error: Connection reset by peer)
  513. # [20:50] * Quits: Garbee (uid21171@gateway/web/irccloud.com/x-ufyzudqghpfqyzgg) (Read error: Connection reset by peer)
  514. # [20:50] * Quits: hdv (sid2376@gateway/web/irccloud.com/x-wssyhzeulppvolwg) (Read error: Network is unreachable)
  515. # [20:50] * Quits: JonathanNeal (sid5831@gateway/web/irccloud.com/x-qmktgcqbggbokhod) (Read error: Connection reset by peer)
  516. # [20:51] * Quits: tobie (sid5692@gateway/web/irccloud.com/x-iqjkuyrurjrwjpfi) (Read error: Network is unreachable)
  517. # [20:51] * Quits: sballesteros_ (sid39846@gateway/web/irccloud.com/x-wzqtjtnpjxzqayfm) (Write error: Connection reset by peer)
  518. # [20:51] * Quits: jacobolus (~jacobolus@122.195.57.137) (Ping timeout: 255 seconds)
  519. # [20:52] * Quits: cfq (sid18398@gateway/web/irccloud.com/x-ozxielrbjmjhbexw) (Ping timeout: 250 seconds)
  520. # [20:53] * Quits: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley) (Ping timeout: 265 seconds)
  521. # [20:53] * Quits: jevs (sid23814@gateway/web/irccloud.com/x-cannkvbzerntlehn) (Ping timeout: 250 seconds)
  522. # [20:53] * Joins: jorendorff (sid28423@gateway/web/irccloud.com/x-zgybbjedpsjywqdh)
  523. # [20:54] * Joins: ato (sid16069@gateway/web/irccloud.com/x-slgvdstuolftakzj)
  524. # [20:54] * Joins: Garbee (uid21171@gateway/web/irccloud.com/x-fitwrdegvjhgkmwc)
  525. # [20:54] * Joins: JakeA (sid3836@gateway/web/irccloud.com/x-sfmwymmhkskstxxj)
  526. # [20:54] * Joins: dherman (sid7996@gateway/web/irccloud.com/x-rkbrxnyjglbzkbkp)
  527. # [20:54] * Joins: nunnun (~hiro@2001:200:164:48:20c:29ff:fe02:11d2)
  528. # [20:55] * Joins: hdv (sid2376@gateway/web/irccloud.com/x-vtozatmptxqldlsy)
  529. # [20:55] * Joins: jamesr___ (sid10481@gateway/web/irccloud.com/x-ijkxsezrjunqilfo)
  530. # [20:55] * Joins: birtles (sid16523@gateway/web/irccloud.com/x-hixcvkpywitfnlnx)
  531. # [20:55] * Joins: tyoshino________ (sid19222@gateway/web/irccloud.com/x-kimkxxbhgxxpxrkf)
  532. # [20:55] * Joins: jevs (sid23814@gateway/web/irccloud.com/x-hcckonoljoqapvnr)
  533. # [20:55] * Joins: FerasM____ (sid28672@gateway/web/irccloud.com/x-tknbrobabzlhzpjv)
  534. # [20:55] * Joins: mkwst (sid395@gateway/web/irccloud.com/x-mqkfthkqworxwlts)
  535. # [20:55] * Joins: dglazkov (sid4270@gateway/web/irccloud.com/x-sjlingvprcuzosny)
  536. # [20:56] * Joins: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley)
  537. # [20:56] * Joins: sballesteros_ (sid39846@gateway/web/irccloud.com/x-jrkugmyemnfewxrw)
  538. # [20:57] * Joins: Domenic (sid10976@gateway/web/irccloud.com/x-nkynkinczqdvjchs)
  539. # [20:57] * Joins: abucur (sid19072@gateway/web/irccloud.com/x-rstfineqbhsizstg)
  540. # [20:57] * Joins: JonathanNeal (sid5831@gateway/web/irccloud.com/x-hqyiiuksxgzfqovs)
  541. # [20:58] * Joins: bret (sid12421@gateway/web/irccloud.com/x-aynhggnrausceker)
  542. # [20:59] * Joins: newtron (~newtron@206-248-186-88.dsl.teksavvy.com)
  543. # [20:59] * Joins: mathiasbynens (sid2247@gateway/web/irccloud.com/x-izjiieudmfzozrjf)
  544. # [20:59] * Joins: cfq (sid18398@gateway/web/irccloud.com/x-vvtshgusdtcspeyl)
  545. # [21:00] * Quits: bterlson (sid23757@gateway/web/irccloud.com/x-lrwoulrvvgzdbkeq) (Read error: Network is unreachable)
  546. # [21:00] * Quits: iamstef (sid12605@gateway/web/irccloud.com/x-eramjovhloldupsc) (Read error: Connection reset by peer)
  547. # [21:00] * Joins: krit (sid15081@gateway/web/irccloud.com/x-fjbsyqijwgrayyor)
  548. # [21:00] * Joins: matijs (sid2278@gateway/web/irccloud.com/x-fqylkayukwcdcekc)
  549. # [21:01] * Joins: sspi (sid34681@gateway/web/irccloud.com/x-qwucxmmlvtwvdbkr)
  550. # [21:01] * Quits: nunnun (~hiro@2001:200:164:48:20c:29ff:fe02:11d2) (Ping timeout: 250 seconds)
  551. # [21:01] * Joins: dmurph (sid42525@gateway/web/irccloud.com/x-qkoirgblbenvuodc)
  552. # [21:02] * Joins: mven (~textual@72.183.104.138)
  553. # [21:02] * Quits: mven (~textual@72.183.104.138) (Excess Flood)
  554. # [21:03] * Joins: bterlson (sid23757@gateway/web/irccloud.com/x-gprjxckcggpefvpg)
  555. # [21:04] * Joins: iamstef (sid12605@gateway/web/irccloud.com/x-kxkhfrtfcmqhafjy)
  556. # [21:05] * Joins: tobie (sid5692@gateway/web/irccloud.com/x-klycpqrwzxbcizrs)
  557. # [21:05] * Quits: jkomoros______ (sid7860@gateway/web/irccloud.com/x-mjdyoloayioorbsb) (Read error: Connection reset by peer)
  558. # [21:08] * Joins: nunnun (~hiro@2001:200:164:48:20c:29ff:fe02:11d2)
  559. # [21:08] * Joins: jkomoros______ (sid7860@gateway/web/irccloud.com/x-xwtvrpsxotpgluji)
  560. # [21:12] * Joins: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
  561. # [21:14] * Quits: astearns (sid15080@gateway/web/irccloud.com/x-xxgcqsqzyttrmgcl) (Ping timeout: 250 seconds)
  562. # [21:15] * Quits: cwilso__ (sid10206@gateway/web/irccloud.com/x-rrdwarpwgbisrpgk) (Read error: Connection reset by peer)
  563. # [21:15] * Joins: cwilso__ (sid10206@gateway/web/irccloud.com/x-bxfobjjbdfbxzasr)
  564. # [21:15] * Joins: astearns (sid15080@gateway/web/irccloud.com/x-atulrncclvgjwpwz)
  565. # [21:16] * Quits: omz (~omz@201-213-176-206.net.prima.net.ar) (Quit: Leaving)
  566. # [21:21] * Quits: jyasskin (~jyasskin@business-092-079-137-146.static.arcor-ip.net) (Quit: My computer has gone to sleep. ZZZzzz…)
  567. # [21:35] * Quits: c74d (~c74d3a4eb@2002:4404:712c:0:76de:2bff:fed4:2766) (Read error: Connection reset by peer)
  568. # [21:39] * Joins: c74d (~c74d3a4eb@2002:4404:712c:0:76de:2bff:fed4:2766)
  569. # [21:46] * Quits: iandevlin (~iandevlin@dslb-178-006-015-008.178.006.pools.vodafone-ip.de) (Read error: Connection reset by peer)
  570. # [21:47] * Quits: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
  571. # [21:47] * Quits: benwerd_ (~benwerd@67.180.159.135) (Remote host closed the connection)
  572. # [21:49] * Quits: jsx (uid48919@fsf/intern/jsx) (Quit: Connection closed for inactivity)
  573. # [21:57] * Quits: bholley (~bholley@174-29-13-139.hlrn.qwest.net) (Quit: ZZZzzz…)
  574. # [22:00] * Joins: thenosaj (~thenosaj@cpc3-lich10-2-0-cust90.3-2.cable.virginm.net)
  575. # [22:03] * Joins: watilde (~watilde@i114-180-108-27.s04.a013.ap.plala.or.jp)
  576. # [22:06] * Joins: jarek (~jarek@unaffiliated/jarek)
  577. # [22:08] * Quits: c74d (~c74d3a4eb@2002:4404:712c:0:76de:2bff:fed4:2766) (Read error: Connection reset by peer)
  578. # [22:08] * Quits: watilde (~watilde@i114-180-108-27.s04.a013.ap.plala.or.jp) (Ping timeout: 265 seconds)
  579. # [22:12] * Joins: c74d (~c74d3a4eb@2002:4404:712c:0:76de:2bff:fed4:2766)
  580. # [22:12] * Quits: roc (~chatzilla@121-99-196-184.bng1.tvc.orcon.net.nz) (Remote host closed the connection)
  581. # [22:17] * Joins: estellevw (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com)
  582. # [22:21] * Quits: estellevw (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com) (Read error: Connection reset by peer)
  583. # [22:26] * Joins: bholley (~bholley@174-29-13-139.hlrn.qwest.net)
  584. # [22:33] * Quits: thenosaj (~thenosaj@cpc3-lich10-2-0-cust90.3-2.cable.virginm.net) (Quit: gone afk)
  585. # [22:33] * Quits: darobin (~darobin@mtl93-18-78-208-93-24.fbx.proxad.net) (Remote host closed the connection)
  586. # [22:36] * Joins: xtrm0 (uid12574@gateway/web/irccloud.com/x-nemnhzvxoxjnbpiw)
  587. # [22:36] * Joins: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
  588. # [22:40] * Joins: thenosaj (~thenosaj@cpc3-lich10-2-0-cust90.3-2.cable.virginm.net)
  589. # [22:41] * Quits: c74d (~c74d3a4eb@2002:4404:712c:0:76de:2bff:fed4:2766) (Read error: Connection reset by peer)
  590. # [22:41] * Quits: Ms2ger (~Ms2ger@24.241-64-87.adsl-dyn.isp.belgacom.be) (Quit: nn)
  591. # [22:45] * Joins: c74d (~c74d3a4eb@2002:4404:712c:0:76de:2bff:fed4:2766)
  592. # [22:49] * Joins: roc (~chatzilla@2001:cb0:b202:224:2677:3ff:fece:dc64)
  593. # [23:00] * Quits: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 245 seconds)
  594. # [23:03] * Quits: thenosaj (~thenosaj@cpc3-lich10-2-0-cust90.3-2.cable.virginm.net) (Quit: gone afk)
  595. # [23:12] * Joins: eric_carlson (~ericc@c-24-6-239-9.hsd1.ca.comcast.net)
  596. # [23:25] * Quits: bholley (~bholley@174-29-13-139.hlrn.qwest.net)
  597. # [23:26] * Quits: Maurice (copyman@unaffiliated/maurice)
  598. # [23:29] * Quits: birtles (sid16523@gateway/web/irccloud.com/x-hixcvkpywitfnlnx) (Ping timeout: 250 seconds)
  599. # [23:29] * Quits: cabanier (sid15093@gateway/web/irccloud.com/x-cqzgjsdupbluefbn) (Ping timeout: 250 seconds)
  600. # [23:30] * Joins: birtles (sid16523@gateway/web/irccloud.com/x-xrlftftrvltbldrg)
  601. # [23:30] * Joins: cabanier (sid15093@gateway/web/irccloud.com/x-xkwpttxvsmvomakq)
  602. # [23:35] * Quits: KevinMarks_ (~KevinMark@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 264 seconds)
  603. # [23:35] * Joins: benwerd (~benwerd@67.180.159.135)
  604. # [23:36] * Joins: satazor (~satazor@80.99.114.89.rev.vodafone.pt)
  605. # [23:36] * heycam|away is now known as heycam
  606. # [23:39] * Quits: karlcow (~karl@nerval.la-grange.net) (Quit: :tiuQ tiuq sah woclrak)
  607. # [23:39] * Joins: karlcow (~karl@nerval.la-grange.net)
  608. # [23:40] * Quits: benwerd (~benwerd@67.180.159.135) (Ping timeout: 265 seconds)
  609. # [23:40] * Quits: satazor (~satazor@80.99.114.89.rev.vodafone.pt) (Ping timeout: 245 seconds)
  610. # [23:43] * Joins: jyasskin (~jyasskin@business-092-079-138-202.static.arcor-ip.net)
  611. # [23:56] * Quits: benjamingr (uid23465@gateway/web/irccloud.com/x-jzzxcfwtyzorxhrz) (Quit: Connection closed for inactivity)
  612. # [23:58] * Quits: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi) (Ping timeout: 246 seconds)
  613. # Session Close: Mon Feb 23 00:00:00 2015

Previous day, Next day

Think these logs are useful? Then please donate to show your gratitude (and keep them up, of course). Thanks! — Krijn