Options:
Previous day, Next day
- # Session Start: Sun Feb 22 00:00:00 2015
- # Session Ident: #whatwg
- # [00:03] * Quits: Ms2ger (~Ms2ger@91.180.137.234) (Quit: nn)
- # [00:04] * Quits: biniar (~biniar@unaffiliated/biniar) (Quit: leaving)
- # [00:10] * Quits: Azitrex_ (~Azitrex@unaffiliated/azitrex) (Ping timeout: 252 seconds)
- # [00:25] * Joins: newtron (~newtron@206-248-186-88.dsl.teksavvy.com)
- # [00:32] * Joins: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [00:32] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Read error: No route to host)
- # [00:36] * Quits: newtron (~newtron@206-248-186-88.dsl.teksavvy.com) (Remote host closed the connection)
- # [00:50] * Quits: estellevw_ (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com) (Quit: Snuggling with the puppies)
- # [01:01] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [01:10] * Joins: estellevw_ (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com)
- # [01:17] <TabAtkins> Phew, nearly done with DOM.
- # [01:17] <TabAtkins> Only at line 4500, but it moves extremely fast now that most links have been converted.
- # [01:18] <TabAtkins> Then there's the slogging task of fixing all the linking failures, which hopefully shouldn't be too long.
- # [01:20] * Joins: biniar (~biniar@unaffiliated/biniar)
- # [01:28] * Quits: estellevw_ (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com) (Quit: Snuggling with the puppies)
- # [01:37] * Quits: weinig (~weinig@c-98-234-191-242.hsd1.ca.comcast.net) (Quit: weinig)
- # [01:52] * Quits: benwerd (~benwerd@67.180.159.135) (Remote host closed the connection)
- # [02:03] * Quits: TuRnaD0 (~Thunderbi@79.142.224.209.prod.bolignet.dk) (Ping timeout: 240 seconds)
- # [02:15] * Quits: espadrine (~tyl@dan75-7-88-166-187-54.fbx.proxad.net) (Ping timeout: 252 seconds)
- # [02:25] * Quits: nicolasbadia (~nicolasba@hue38-1-78-209-78-115.fbx.proxad.net) (Quit: nicolasbadia)
- # [02:33] * Quits: seventh (seventh@192.64.7.99) (Ping timeout: 250 seconds)
- # [02:37] * Quits: caitp (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Quit: Leaving)
- # [02:37] * Joins: caitp (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [02:43] <strugee> Hixie: ping
- # [02:43] <Hixie> yo
- # [02:43] <strugee> we were going to discuss developers.whatwg.org
- # [02:43] <Hixie> yesyes
- # [02:44] <strugee> ok
- # [02:44] <strugee> so
- # [02:44] * strugee looks at the GitHub issue
- # [02:46] <strugee> hmm
- # [02:47] <strugee> so how complex is your script?
- # [02:47] <strugee> do you actually have to parse the entire document into a DOM-like structure, or can you parse individual parts?
- # [02:49] <Hixie> i parse the entire thing into a dom
- # [02:49] <Hixie> then do extensive manipulations on it
- # [02:49] <Hixie> then serialise it back out
- # [02:50] <strugee> right
- # [02:50] <strugee> but do you actually need to?
- # [02:50] <Hixie> what would constitute a need to?
- # [02:50] <Hixie> i mean, i dunno how to answer that question
- # [02:50] <Hixie> the code to do it is http://software.hixie.ch/applications/wattsi/src/wattsi.pas
- # [02:51] <strugee> e.g. to change the <title> you could find the beginning and end of <head> and parse that, then change <title>
- # [02:51] <strugee> so you wouldn't have to parse the entire document
- # [02:51] <strugee> ok, thanks for the link
- # [02:51] <Hixie> how do you "find the beginning and end of <head>" without parsing it?
- # [02:52] <Hixie> (the code above isn't quite complete, there's also some glue perl code that isn't published anywhere)
- # [02:52] <Hixie> (but the heavy lifting is in that file)
- # [02:53] <strugee> you just search for the keyword "<head>" in the string
- # [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
- # [02:53] <strugee> unless I'm doing something dumb?
- # [02:54] <Hixie> i mean, i don't guarantee that i won't change that to <head class="draft"> or something
- # [02:55] <Hixie> in particular, i don't see how that would work for the headings and cross-references
- # [02:55] <Hixie> which are all over the place
- # [02:55] <strugee> so use the keyword "<head" instead of "<head>"
- # [02:55] <strugee> ok, that was what I was asking
- # [02:55] <Hixie> i don't guarantee i won't spell it "<HEAD" or remove the tag and rely on it being implied
- # [02:55] <strugee> right
- # [02:55] <Hixie> who knows what i'll be doing 10 years from now :-)
- # [02:56] * strugee chuckles
- # [02:56] <strugee> ok, scratch that idea :)
- # [02:56] <strugee> are you familiar with Node.js streams?
- # [02:56] <strugee> that was what I was trying to make it fit into
- # [02:56] * Quits: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley) (Ping timeout: 250 seconds)
- # [02:57] <Hixie> i'm not very familiar with Node.js
- # [02:57] <Hixie> only done one project in it and it was a while ago
- # [02:57] <strugee> ok
- # [02:57] <strugee> the basic idea is that you do transforms on a stream of text instead of a string
- # [02:58] <Hixie> i mean i'm familiar with the idea of streams in general
- # [02:58] <Hixie> they're not new :-)
- # [02:58] <strugee> right :)
- # [02:58] <Hixie> i don't think you can use a one-pass approach with this though, since the cross-references go both ways
- # [02:59] <strugee> ok
- # [02:59] <strugee> makes sense
- # [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
- # [02:59] <strugee> yeah
- # [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
- # [03:01] <strugee> if worst comes to worse I can just buffer the document and parse
- # [03:01] <Hixie> well, html parsing as a general case is a non-streaming operation
- # [03:02] <Hixie> but you can probably assume that i don't rely on things like bogus table parsing and so skip those parts
- # [03:02] <Hixie> i guess
- # [03:02] <Hixie> writing an html parser using the spec's built-in model is a pretty large task as it is
- # [03:03] <Hixie> writing one in another model entirely is a whole extra level of pain
- # [03:03] <Hixie> since you have to be able to reason about all the implications
- # [03:05] * Joins: satazor_ (~satazor@114.248.108.93.rev.vodafone.pt)
- # [03:05] * Joins: estellevw_ (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com)
- # [03:05] <strugee> yeah, no kidding
- # [03:08] * Joins: satazor__ (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [03:08] <strugee> hmm
- # [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
- # [03:09] * Joins: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley)
- # [03:10] <Hixie> (though it has to be a pretty configurable one since i add a new void element)
- # [03:10] <Hixie> (and a bunch of attributes)
- # [03:10] * Quits: satazor_ (~satazor@114.248.108.93.rev.vodafone.pt) (Ping timeout: 252 seconds)
- # [03:11] <Hixie> the alternative is you tell me what the output should be and i just generate it
- # [03:11] <strugee> ok
- # [03:11] * Joins: jacobolus (~jacobolus@112.82.204.144)
- # [03:12] <Hixie> i mean, i already generate https://html.spec.whatwg.org/.wattsi-output/multipage-dev/
- # [03:12] <Hixie> which is pretty close, i'd wager
- # [03:12] <Hixie> that output would be very regular html
- # [03:12] <Hixie> which you could then massage more easily
- # [03:12] <Hixie> if you wanted to
- # [03:15] <strugee> ok
- # [03:15] <strugee> yeah, that would be nice
- # [03:16] <strugee> what's done to that version?
- # [03:16] <strugee> transform to HTML and strip non-dev content?
- # [03:16] <strugee> if so then I think we'd just need to insert styles and fix the title
- # [03:17] <strugee> or not even the title, since I think that's done already in the source
- # [03:17] <Hixie> what should the style link be?
- # [03:20] <Hixie> i've added a <link> to styles.css in the same directory
- # [03:20] <Hixie> want some <script src=""> too?
- # [03:20] <Hixie> and anything else?
- # [03:21] <Hixie> the old developers.w.o version had some different handling of references
- # [03:21] <Hixie> i'm happy to do something with that too
- # [03:22] <strugee> yeah, I think we'll need scripts
- # [03:22] <strugee> I can take care of minifying it into one file
- # [03:22] <strugee> so just a scripts.js in the root would be fine, I think
- # [03:24] * Joins: benwerd (~benwerd@67.180.159.135)
- # [03:27] <strugee> I'm getting 404 on https://html.spec.whatwg.org/.wattsi-output/multipage-dev/
- # [03:28] <strugee> and https://html.spec.whatwg.org/.wattsi-output/ shows a directory listing with nothing in it
- # [03:29] <Hixie> yeah the caniuse.json data is broken
- # [03:29] <Hixie> which is breaking my script
- # [03:31] <strugee> ok
- # [03:31] <strugee> so when that's fixed, stuff will magically appear in that directory?
- # [03:32] <Hixie> yeah
- # [03:32] <Hixie> well
- # [03:32] <Hixie> not when caniuse.json is fixed
- # [03:32] <Hixie> but when i work around it
- # [03:32] <Hixie> in a few minutes
- # [03:32] <Hixie> i tried deleting the file
- # [03:32] <Hixie> and my script was unhappy
- # [03:33] <Hixie> man my script really freaking wants real data in this file
- # [03:33] <Hixie> hm this file isn't broken, wtf
- # [03:33] <Hixie> maybe there's a bug in my json parser
- # [03:34] <Hixie> something fishy going on
- # [03:35] <strugee> ok
- # [03:35] <strugee> keep me posted
- # [03:36] <Hixie> wt_f_
- # [03:36] <Hixie> wget is screwing me
- # [03:38] <Hixie> $ wget -o /dev/null -O caniuse.json --no-check-certificate https://raw.githubusercontent.com/Fyrd/caniuse/master/data.json
- # [03:38] <Hixie> $ wget -o /dev/null -O caniuse2.json --no-check-certificate https://raw.githubusercontent.com/Fyrd/caniuse/master/data.json
- # [03:38] <Hixie> $ sha512sum caniuse*
- # [03:38] <Hixie> 10acc62e0124195a1378b1ea79a91db4f13d861629afdcf76a928c2e7b359a890cdc0d5ee261d138aa4a86544b8b648a4cd44cdb610a7391fdddda861594b688 caniuse2.json
- # [03:38] <Hixie> 805859fcdf2d05c06e3f35a0bc7f539d7dbe02d613c06dc4475592bd5e9204161a659573edfff96ae0121c00bbcd3fa89d1802fbd07507714e180c4ffbd673cc caniuse.json
- # [03:38] * Joins: ohaibbq (~ohaibbq@2601:9:a80:a8f:a8ad:94a4:73d2:feae)
- # [03:42] <strugee> it couldn't be changing that fast, could it?
- # [03:42] <Hixie> no
- # [03:42] <Hixie> no idea what's up
- # [03:42] <strugee> let me try
- # [03:44] <Hixie> it worked once i nuked the existing file on disk a second time
- # [03:44] <Hixie> dunno what's up with THAT
- # [03:44] <Hixie> wget trying to do some sort of completion or something
- # [03:44] <strugee> _weird_
- # [03:44] <strugee> mine match, by the way
- # [03:44] <strugee> I did it with curl
- # [03:44] <Hixie> mine too, now. :-/
- # [03:44] <Hixie> anyway, look now
- # [03:44] <strugee> ok
- # [03:46] * Joins: tantek (~tantek@c-50-143-152-128.hsd1.ca.comcast.net)
- # [03:46] <strugee> ok, fantastic
- # [03:47] <strugee> by the way, what's link-fixup.js?
- # [03:47] <strugee> it's 404ing in my console when I load multipage-dev/
- # [03:48] <Hixie> handles breaking links
- # [03:48] <Hixie> try html.spec.whatwg.org/multipage/#the-canvas-element
- # [03:48] * Quits: xtrm0 (uid12574@gateway/web/irccloud.com/x-muxdjcsbmpyeyigq) (Quit: Connection closed for inactivity)
- # [03:48] <strugee> s/multipage/multipage-dev/?
- # [03:51] <Hixie> in theory it works for the multipage-dev version too
- # [03:51] <strugee> nevermind
- # [03:51] <Hixie> but i was giving you an example of it working on the spec multipage version
- # [03:51] <strugee> no, I see what you were saying now
- # [03:52] <caitp> is there any reason why the single page version exists? you can't find anything on it anyway
- # [03:52] <strugee> are you talking about submission thing at the bottom?
- # [03:52] <caitp> 99/100 times, cmd+f yields nothing useful
- # [03:53] <caitp> not that trying to find anything in the multipage version is any better
- # [03:53] <caitp> you need like a dxr for the spec
- # [03:54] <strugee> or we should put the built version in Git or something so you can grep it
- # [03:55] <caitp> eh but then i'd have to keep a fork of it
- # [03:55] <strugee> *shrugs* set up some automation
- # [03:57] <Hixie> we have a copy in git, for the record :-)
- # [03:57] <Hixie> on github
- # [03:58] <Hixie> why does cmd+f not work for you? is your browser broken?
- # [04:08] * Quits: tantek (~tantek@c-50-143-152-128.hsd1.ca.comcast.net) (Quit: tantek)
- # [04:09] <strugee> all right, laptop's dying
- # [04:09] <strugee> Hixie: it's been a pleasure
- # [04:09] <strugee> I'll ping you on GitHub or something if I need anything else
- # [04:09] <Hixie> np. keep me posted about what you want.
- # [04:10] <strugee> thanks!
- # [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
- # [04:10] <caitp__> it's basically organized really badly
- # [04:11] <caitp__> a dxr would help a lot
- # [04:11] <caitp__> cross referencing the referenced specs, and not all being a client-side operation
- # [04:11] <caitp__> would make it a lot easier to work with
- # [04:12] <Hixie> if there are problems, file bugs with concrete suggestions
- # [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 :-)
- # [04:13] <Hixie> more or less full-time :-)
- # [04:13] <caitp__> "dxr" is a pretty concrete suggestion, I think
- # [04:13] <caitp__> server-side spec searching and cross-referencing, that's pretty concrete :p
- # [04:13] * Quits: satazor__ (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
- # [04:14] <Hixie> i've no idea what you mean by this
- # [04:14] <caitp__> huk
- # [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
- # [04:15] <caitp__> that would be a pretty big document, right?
- # [04:15] <caitp__> searching it would be hard, expensive, and most of the time wouldn't turn up anything particularly useful
- # [04:16] <caitp__> the spec is pretty big, searching it frequently turns up nothing useful
- # [04:16] <caitp__> so it would be nice to provide better ways of doing this, and even caching entries for common searches
- # [04:17] <Hixie> what are you talking about. searching the spec works great, i do it all the time.
- # [04:17] <Hixie> plus every term is cross-referenced in both directions.
- # [04:17] <caitp__> mmmm not so much
- # [04:17] <Hixie> with a little popup that shows all the references
- # [04:17] <caitp__> even doing something as simple as looking up interfaces takes way longer than it should
- # [04:17] <Hixie> and i've watched chromium developers, they basically use "grep" which is more or less the same as find-in-page
- # [04:18] <Hixie> there's an interface index
- # [04:18] <caitp__> grep is faster, but again, means keeping a fork
- # [04:19] <Hixie> grep is the same speed as find-in-page
- # [04:19] <caitp__> no it really isn't
- # [04:20] <Hixie> are you using some ancient browser or something?
- # [04:20] <caitp__> no
- # [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
- # [04:21] <caitp__> it's a big document, it loads slowly, and referenced terms link nowhere useful, and unreferenced terms link nowhere
- # [04:21] <caitp__> it's not very usable for quickly looking something up
- # [04:22] <caitp__> and if I'm on a laptop, forget it =)
- # [04:22] <Hixie> for each "referenced terms link nowhere useful" case, file a bug.
- # [04:22] <Hixie> saying what you want it to link to.
- # [04:23] <Hixie> for "unreferenced terms" i've no idea what you mean
- # [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
- # [04:23] <caitp__> "unreferenced" eg, not in the references section, no popup, no hyperlink
- # [04:23] <caitp__> just text
- # [04:23] <Hixie> but for the original complaint, find in page... it's pretty much instantaneous for me. i don't understand the problem.
- # [04:23] <Hixie> how is grep faster?
- # [04:24] <Hixie> i've no idea what you mean by "they all lead to the references section"
- # [04:24] <Hixie> what is "all" here?
- # [04:24] <Hixie> i mean there's 4313 <dfn> elements in the document
- # [04:24] <Hixie> so quite obviously, not all the cross-references are to the references section
- # [04:24] <Hixie> in fact hardly any are
- # [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
- # [04:24] <caitp__> and by "typically" I mean always, as far as I can tell
- # [04:25] <Hixie> can you give me an example?
- # [04:25] <caitp__> pretty much any time I find one, that's what happens :p
- # [04:25] <Hixie> ok find one
- # [04:25] <Hixie> tell me what it is
- # [04:25] <Hixie> i'm at a loss as to what you mean
- # [04:25] <Hixie> the only links into the references section i'm aware of are the [FOO] links
- # [04:25] <Hixie> which are, well, the links to the references section.
- # [04:26] <Hixie> and i don't think any of those do any popups or anything
- # [04:26] <Hixie> (there is an open bug on making them more helpful)
- # [04:31] * Joins: sicking (~sicking@c-98-210-159-193.hsd1.ca.comcast.net)
- # [04:33] * Quits: sicking (~sicking@c-98-210-159-193.hsd1.ca.comcast.net) (Client Quit)
- # [04:42] <caitp__> i still prfer the dxr idea
- # [04:47] * Quits: benwerd (~benwerd@67.180.159.135) (Remote host closed the connection)
- # [04:49] * Joins: benwerd (~benwerd@67.180.159.135)
- # [04:50] <Hixie> caitp__: can you give me an example of what you mean? what are these cross-references that aren't useful?
- # [04:51] <caitp__> i'm on my laptop, too much to open the single page site
- # [04:51] <caitp__> typical experience though, is looking up details on some attribute in an idl interface
- # [04:51] <Hixie> the multipage copy has the same links
- # [04:51] <caitp__> leads to a references link
- # [04:52] <Hixie> so feel free to give me the links from there
- # [04:52] * Joins: sicking (~sicking@c-98-210-159-193.hsd1.ca.comcast.net)
- # [04:54] * Quits: ohaibbq (~ohaibbq@2601:9:a80:a8f:a8ad:94a4:73d2:feae) (Remote host closed the connection)
- # [04:54] <MikeSmith> I do searches in the single-page spec all the time but I do it from elinks
- # [04:54] <MikeSmith> or lynx
- # [04:55] <MikeSmith> but I guess that's not a general solution that a lot of other people would be happy with
- # [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
- # [04:57] <Hixie> i mean, it's the only way i use the spec
- # [04:57] <Hixie> and i do it all the time
- # [05:07] * Quits: sicking (~sicking@c-98-210-159-193.hsd1.ca.comcast.net) (Quit: sicking)
- # [05:15] <zewt> i find the multipage one unusable and always use the single page one (broken backrefs are a dealbreaker)
- # [05:16] <MikeSmith> I use a 4-year-old laptop most of the time so I guess I should get a faster machine
- # [05:18] * Joins: tantek (~tantek@c-50-143-152-128.hsd1.ca.comcast.net)
- # [05:18] * Joins: sicking (~sicking@c-98-210-159-193.hsd1.ca.comcast.net)
- # [05:20] * Quits: sicking (~sicking@c-98-210-159-193.hsd1.ca.comcast.net) (Client Quit)
- # [05:22] <caitp__> i guess everyone has different experiences with it
- # [05:22] * Quits: tantek (~tantek@c-50-143-152-128.hsd1.ca.comcast.net) (Client Quit)
- # [05:22] <caitp__> online search + fast loading smaller pages would go a long way though, i think
- # [05:24] <Hixie> MikeSmith: i mean, the desktop i use for this is from 2010...
- # [05:28] * xiinotulp is now known as plutoniix
- # [05:31] * Joins: newtron (~newtron@206-248-186-88.dsl.teksavvy.com)
- # [05:33] * Joins: tantek (~tantek@c-50-143-152-128.hsd1.ca.comcast.net)
- # [05:34] * Quits: newtron (~newtron@206-248-186-88.dsl.teksavvy.com) (Remote host closed the connection)
- # [06:16] * Quits: jacobolus (~jacobolus@112.82.204.144) (Remote host closed the connection)
- # [06:23] * Joins: deltab (~deltab@cpc2-smal2-0-0-cust22.19-1.cable.virginm.net)
- # [06:45] * Joins: newtron (~newtron@206-248-186-88.dsl.teksavvy.com)
- # [06:49] * Quits: newtron (~newtron@206-248-186-88.dsl.teksavvy.com) (Ping timeout: 252 seconds)
- # [07:08] * Joins: DanilovAlexey (~DanilovAl@shpd-178-64-151-158.vologda.ru)
- # [07:10] * Quits: DanilovA_ (~DanilovAl@shpd-178-64-134-213.vologda.ru) (Ping timeout: 245 seconds)
- # [07:12] * Quits: benwerd (~benwerd@67.180.159.135) (Remote host closed the connection)
- # [07:22] * Joins: Azitrex (~Azitrex@unaffiliated/azitrex)
- # [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
- # [07:26] <zewt> pretty unbelievable
- # [07:28] <caitp__> it just wants you to have the best browsing experience possible and gets a bit carried away
- # [07:28] <zewt> by making me download this file twice (because it already downloaded all of it, it just won't save it)
- # [07:29] <zewt> at least half a gig isn't as much as it used to be
- # [07:43] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [07:44] <KevinMarks_> Do any implementations of audio or video tags support media fragments in sources?
- # [07:51] * Quits: tantek (~tantek@c-50-143-152-128.hsd1.ca.comcast.net) (Quit: tantek)
- # [07:53] * Quits: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [08:00] <annevk> TabAtkins: well, DOM wasn't built in a day
- # [08:07] * annevk uses single-page without a problem too, find in page combined with backreferences is pretty much all I use...
- # [08:12] * Joins: KevinMarks__ (~yaaic@2607:fb90:50f:c540:bdad:ecb9:a084:b96f)
- # [08:15] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 256 seconds)
- # [08:17] * Quits: beverloo (beverloo@nat/google/x-knzesclcnexvjgof) (Ping timeout: 250 seconds)
- # [08:29] * Joins: beverloo (beverloo@nat/google/x-aylfonuxpdbkbnto)
- # [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.
- # [08:42] * Joins: xiinotulp (~plutoniix@node-zii.pool-180-180.dynamic.totbb.net)
- # [08:43] <annevk> https://github.com/aredridel/html5 perhaps?
- # [08:45] * Quits: plutoniix (~plutoniix@node-mez.pool-101-108.dynamic.totbb.net) (Ping timeout: 250 seconds)
- # [08:50] * Joins: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [08:52] <Domenic> Also parse5
- # [08:53] * Quits: estellevw_ (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com) (Quit: Snuggling with the puppies)
- # [08:54] * Quits: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [08:57] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [09:12] * Joins: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [09:15] * Quits: KevinMarks__ (~yaaic@2607:fb90:50f:c540:bdad:ecb9:a084:b96f) (Ping timeout: 250 seconds)
- # [09:22] * Quits: KevinMarks (~KevinMark@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
- # [09:40] * Joins: roc (~chatzilla@121-99-196-184.bng1.tvc.orcon.net.nz)
- # [09:47] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [09:52] * Joins: jacobolus (~jacobolus@49.80.100.177)
- # [10:25] * Joins: Maurice (copyman@unaffiliated/maurice)
- # [10:34] * Quits: jacobolus (~jacobolus@49.80.100.177) (Remote host closed the connection)
- # [10:34] * Joins: jacobolus (~jacobolus@49.80.100.177)
- # [10:39] * Quits: jacobolus (~jacobolus@49.80.100.177) (Ping timeout: 264 seconds)
- # [10:39] * Joins: alrra (uid62345@gateway/web/irccloud.com/x-domfgjouaxbgrpzl)
- # [10:46] * Joins: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [10:50] * Quits: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [10:55] * Joins: jyasskin (~jyasskin@88.128.80.44)
- # [10:58] * Joins: jacobolus (~jacobolus@122.195.57.137)
- # [11:02] * Quits: KevinMarks_ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
- # [11:04] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [11:30] <strugee> TabAtkins: yeah, I'm off that train. Hixie talked me out of it
- # [11:30] <strugee> it wasn't that hard. I didn't hold out much hope that it could work anyway :)
- # [11:47] * Quits: psy_ (~psy@103.6.159.170) (Ping timeout: 252 seconds)
- # [11:48] * Joins: psy_ (~psy@103.6.159.170)
- # [11:52] * Quits: kapil___ (uid36151@gateway/web/irccloud.com/x-mdvaxwsuvkqcvtel) (Quit: Connection closed for inactivity)
- # [11:55] * Joins: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [11:56] * Quits: jyasskin (~jyasskin@88.128.80.44) (Quit: My computer has gone to sleep. ZZZzzz…)
- # [12:02] * Quits: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr) (Ping timeout: 252 seconds)
- # [12:03] * Joins: fredy_ (~fredy@snf-535807.vm.okeanos.grnet.gr)
- # [12:04] * xiinotulp is now known as plutoniix
- # [12:14] * Quits: sarri (~sari@unaffiliated/sarri) (Ping timeout: 240 seconds)
- # [12:15] * Joins: sarri (~sari@unaffiliated/sarri)
- # [12:36] * Krinkle|detached is now known as Krinkle
- # [12:49] * fredy_ is now known as fredy
- # [12:50] * fredy is now known as Guest41551
- # [12:58] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [13:00] * Quits: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 255 seconds)
- # [13:02] * Joins: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [13:05] * Joins: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [13:06] * Quits: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [13:14] * Joins: satazor_ (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [13:15] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Ping timeout: 246 seconds)
- # [13:21] * Joins: kapil___ (uid36151@gateway/web/irccloud.com/x-snuulmbbwrmdpzwa)
- # [13:24] * Quits: darobin (~darobin@mtl93-18-78-208-93-24.fbx.proxad.net) (Ping timeout: 240 seconds)
- # [13:29] * Quits: satazor_ (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
- # [13:34] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [13:40] * Quits: ^esc (~esc-ape@178.165.128.255.wireless.dyn.drei.com) (Ping timeout: 264 seconds)
- # [13:43] * Joins: jyasskin (~jyasskin@business-092-079-137-146.static.arcor-ip.net)
- # [13:46] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
- # [13:47] * Joins: tav_ (~tav`@host31-52-143-103.range31-52.btcentralplus.com)
- # [13:47] * Quits: tav (~tav`@host31-52-143-103.range31-52.btcentralplus.com) (Read error: No route to host)
- # [13:47] * tav_ is now known as tav
- # [13:57] * Joins: iandevlin (~iandevlin@dslb-178-006-015-008.178.006.pools.vodafone-ip.de)
- # [14:08] * Joins: newtron (~newtron@206-248-186-88.dsl.teksavvy.com)
- # [14:20] * Quits: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [14:23] * Joins: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [14:33] * Joins: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [14:34] * Quits: alrra (uid62345@gateway/web/irccloud.com/x-domfgjouaxbgrpzl) (Quit: Connection closed for inactivity)
- # [14:36] * Quits: tav (~tav`@host31-52-143-103.range31-52.btcentralplus.com) (Read error: Connection reset by peer)
- # [14:37] * Quits: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [14:45] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [14:47] * Joins: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [14:53] * Joins: tav (~tav`@host31-52-143-103.range31-52.btcentralplus.com)
- # [14:53] * Joins: jsx (uid48919@fsf/intern/jsx)
- # [14:54] * Quits: jyasskin (~jyasskin@business-092-079-137-146.static.arcor-ip.net) (Quit: My computer has gone to sleep. ZZZzzz…)
- # [14:59] * Joins: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [15:03] * Quits: caitp__ (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [15:05] * Joins: Ms2ger (~Ms2ger@24.241-64-87.adsl-dyn.isp.belgacom.be)
- # [15:14] * Quits: newtron (~newtron@206-248-186-88.dsl.teksavvy.com) (Quit: Leaving...)
- # [15:14] * Joins: alrra (uid62345@gateway/web/irccloud.com/x-xyqiqkltxudqroww)
- # [15:17] * Quits: jacobolus (~jacobolus@122.195.57.137) (Remote host closed the connection)
- # [15:19] * Joins: newtron (~newtron@206-248-186-88.dsl.teksavvy.com)
- # [15:28] * Joins: jacobolus (~jacobolus@122.195.57.137)
- # [15:42] * Quits: kapil___ (uid36151@gateway/web/irccloud.com/x-snuulmbbwrmdpzwa) (Quit: Connection closed for inactivity)
- # [15:42] * Joins: ^esc (~esc-ape@178.165.128.170.wireless.dyn.drei.com)
- # [15:57] * Quits: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
- # [16:23] * Quits: Fusl (Fusl@unaffiliated/fusl) (*.net *.split)
- # [16:23] * Quits: Hixie (~ianh@178.255.149.100) (*.net *.split)
- # [16:23] * Quits: clamstar (~rx-ident@162.243.230.189) (*.net *.split)
- # [16:23] * Quits: mrbkap (~mrbkap@people1.scl3.mozilla.com) (*.net *.split)
- # [16:23] * Quits: bcjordan (~bcjordan@ec2-54-172-35-148.compute-1.amazonaws.com) (*.net *.split)
- # [16:23] * Quits: gargamel (~cinch@ec2-54-149-248-162.us-west-2.compute.amazonaws.com) (*.net *.split)
- # [16:23] * Quits: manu (~manu@216.252.204.51) (*.net *.split)
- # [16:23] * Quits: mounir (~mounir@oldworld.fr) (*.net *.split)
- # [16:23] * Quits: howitdo (~howitdo@unaffiliated/howitdo) (*.net *.split)
- # [16:23] * Quits: rektide (~rektide@eldergods.com) (*.net *.split)
- # [16:23] * Joins: manu (~manu@216.252.204.51)
- # [16:23] * Joins: Hixie (~ianh@178.255.149.100)
- # [16:23] * Joins: mounir (~mounir@oldworld.fr)
- # [16:23] * Joins: rektide (~rektide@eldergods.com)
- # [16:24] * Joins: bcjordan (~bcjordan@ec2-54-172-35-148.compute-1.amazonaws.com)
- # [16:24] * Joins: mrbkap (~mrbkap@people1.scl3.mozilla.com)
- # [16:24] * Joins: Fusl (Fusl@unaffiliated/fusl)
- # [16:24] * Joins: gargamel (~cinch@ec2-54-149-248-162.us-west-2.compute.amazonaws.com)
- # [16:24] * Joins: howitdo (~howitdo@unaffiliated/howitdo)
- # [16:31] * Joins: clamstar (~rx-ident@162.243.230.189)
- # [16:34] * Quits: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [16:35] * Joins: espadrine (~tyl@dan75-7-88-166-187-54.fbx.proxad.net)
- # [16:39] * Joins: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [16:40] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Read error: No route to host)
- # [16:40] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [16:41] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Read error: No route to host)
- # [16:41] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [16:43] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
- # [16:48] * Joins: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [16:50] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [16:58] * Joins: tantek (~tantek@50-1-62-185.dsl.dynamic.fusionbroadband.com)
- # [17:04] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
- # [17:06] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [17:15] * Quits: newtron (~newtron@206-248-186-88.dsl.teksavvy.com) (Quit: Leaving...)
- # [17:16] * Joins: newtron (~newtron@206-248-186-88.dsl.teksavvy.com)
- # [17:17] * Joins: mven (~textual@72.183.104.138)
- # [17:17] * Quits: mven (~textual@72.183.104.138) (Excess Flood)
- # [17:22] * Quits: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
- # [17:24] * Quits: newtron (~newtron@206-248-186-88.dsl.teksavvy.com) (Remote host closed the connection)
- # [17:26] * Quits: aretecode (~aretecode@50.23.131.206-static.reverse.softlayer.com) (Read error: Connection reset by peer)
- # [17:28] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
- # [17:30] * Joins: aretecode (~aretecode@S01061859339e5f51.cc.shawcable.net)
- # [17:36] * Quits: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 246 seconds)
- # [17:38] * Joins: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [17:40] * Quits: nunnun (~hiro@2001:200:164:48:20c:29ff:fe02:11d2) (Ping timeout: 265 seconds)
- # [17:41] * Joins: nunnun (~hiro@2001:200:164:48:20c:29ff:fe02:11d2)
- # [17:48] * Quits: tantek (~tantek@50-1-62-185.dsl.dynamic.fusionbroadband.com) (Quit: tantek)
- # [17:54] * Quits: Gege (gege@future.deferred.io) (Ping timeout: 252 seconds)
- # [17:54] * Joins: Gege (gege@future.deferred.io)
- # [17:55] * Quits: dshwang (~dshwang@192.55.55.39) (Remote host closed the connection)
- # [17:59] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [18:00] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
- # [18:00] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [18:03] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Ping timeout: 240 seconds)
- # [18:05] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Ping timeout: 265 seconds)
- # [18:14] * Joins: omz (~omz@201-213-176-206.net.prima.net.ar)
- # [18:15] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [18:16] * Joins: watilde (~watilde@i114-180-108-27.s04.a013.ap.plala.or.jp)
- # [18:18] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [18:19] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
- # [18:22] * Quits: watilde (~watilde@i114-180-108-27.s04.a013.ap.plala.or.jp) (Remote host closed the connection)
- # [18:25] * Joins: newtron (~newtron@206-248-186-88.dsl.teksavvy.com)
- # [18:25] * Quits: omz (~omz@201-213-176-206.net.prima.net.ar) (Read error: Connection reset by peer)
- # [18:26] * Quits: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 264 seconds)
- # [18:26] * Joins: omz (~omz@201-213-176-206.net.prima.net.ar)
- # [18:27] * Joins: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [18:29] * Quits: newtron (~newtron@206-248-186-88.dsl.teksavvy.com) (Ping timeout: 252 seconds)
- # [18:31] * Joins: darobin (~darobin@mtl93-18-78-208-93-24.fbx.proxad.net)
- # [18:32] * Joins: watilde (~watilde@i114-180-108-27.s04.a013.ap.plala.or.jp)
- # [18:33] * Joins: benwerd (~benwerd@67.180.159.135)
- # [18:43] * Joins: estellevw_ (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com)
- # [18:49] * Quits: estellevw_ (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com) (Quit: Snuggling with the puppies)
- # [18:54] * Quits: annevk (~annevk@77-57-115-157.dclient.hispeed.ch) (Remote host closed the connection)
- # [18:54] * Joins: annevk (~annevk@77-57-115-157.dclient.hispeed.ch)
- # [19:03] * Quits: watilde (~watilde@i114-180-108-27.s04.a013.ap.plala.or.jp) (Remote host closed the connection)
- # [19:05] <annevk> Very hard not to 386 https://bugzilla.mozilla.org/show_bug.cgi?id=999544
- # [19:08] * Quits: darobin (~darobin@mtl93-18-78-208-93-24.fbx.proxad.net) (Remote host closed the connection)
- # [19:14] * Quits: alrra (uid62345@gateway/web/irccloud.com/x-xyqiqkltxudqroww) (Quit: Connection closed for inactivity)
- # [19:23] * Joins: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [19:24] * Quits: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
- # [19:25] * Joins: benjamingr (uid23465@gateway/web/irccloud.com/x-jzzxcfwtyzorxhrz)
- # [19:25] * Joins: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [19:26] * Joins: newtron (~newtron@206-248-186-88.dsl.teksavvy.com)
- # [19:30] * Quits: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Ping timeout: 244 seconds)
- # [19:30] * Quits: newtron (~newtron@206-248-186-88.dsl.teksavvy.com) (Ping timeout: 252 seconds)
- # [19:37] * Joins: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi)
- # [19:41] * Quits: plutoniix (~plutoniix@node-zii.pool-180-180.dynamic.totbb.net) (Ping timeout: 246 seconds)
- # [19:43] * Joins: dshwang (dshwang@nat/intel/x-sxnpiyntecrsqdqr)
- # [19:43] * Quits: omz (~omz@201-213-176-206.net.prima.net.ar) (Read error: Connection reset by peer)
- # [19:43] * Joins: omz (~omz@201-213-176-206.net.prima.net.ar)
- # [19:46] * Quits: jacobolus (~jacobolus@122.195.57.137) (Remote host closed the connection)
- # [19:46] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [19:54] * Quits: eric_carlson (~ericc@c-24-6-239-9.hsd1.ca.comcast.net) (Quit: eric_carlson)
- # [19:56] * Joins: KevinMarks_ (~KevinMark@c-67-164-14-200.hsd1.ca.comcast.net)
- # [19:58] * Joins: bholley (~bholley@174-29-13-139.hlrn.qwest.net)
- # [20:04] * Joins: jyasskin (~jyasskin@business-092-079-137-146.static.arcor-ip.net)
- # [20:05] * Joins: darobin (~darobin@mtl93-18-78-208-93-24.fbx.proxad.net)
- # [20:27] * Joins: newtron (~newtron@206-248-186-88.dsl.teksavvy.com)
- # [20:28] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
- # [20:28] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [20:31] * Quits: newtron (~newtron@206-248-186-88.dsl.teksavvy.com) (Ping timeout: 252 seconds)
- # [20:35] * Joins: plutoniix (~plutoniix@node-zii.pool-180-180.dynamic.totbb.net)
- # [20:35] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
- # [20:43] * Joins: benwerd_ (~benwerd@67.180.159.135)
- # [20:43] * Quits: benwerd (~benwerd@67.180.159.135) (Read error: Connection reset by peer)
- # [20:45] * Krinkle is now known as Krinkle|detached
- # [20:46] * Joins: jacobolus (~jacobolus@122.195.57.137)
- # [20:47] * Quits: nunnun (~hiro@2001:200:164:48:20c:29ff:fe02:11d2) (Ping timeout: 265 seconds)
- # [20:47] * Quits: omz (~omz@201-213-176-206.net.prima.net.ar) (Read error: Connection reset by peer)
- # [20:48] * Joins: omz (~omz@201-213-176-206.net.prima.net.ar)
- # [20:50] * Quits: tyoshino________ (sid19222@gateway/web/irccloud.com/x-fjqzgsrvouziiahe) (Ping timeout: 265 seconds)
- # [20:50] * Quits: ato (sid16069@gateway/web/irccloud.com/x-tiyuxqrgynmfkqoj) (Ping timeout: 265 seconds)
- # [20:50] * Quits: sspi (sid34681@gateway/web/irccloud.com/x-pftqgsazsaumtoni) (Ping timeout: 265 seconds)
- # [20:50] * Quits: mkwst (sid395@gateway/web/irccloud.com/x-yxsfrgnhkyrllwuz) (Ping timeout: 265 seconds)
- # [20:50] * Quits: FerasM____ (sid28672@gateway/web/irccloud.com/x-msijyeysreipdpbl) (Ping timeout: 265 seconds)
- # [20:50] * Quits: bret (sid12421@gateway/web/irccloud.com/x-pwesdfkrpizjcksd) (Ping timeout: 265 seconds)
- # [20:50] * Quits: dglazkov (sid4270@gateway/web/irccloud.com/x-fonarftgxyuikrwg) (Ping timeout: 265 seconds)
- # [20:50] * Quits: mathiasbynens (sid2247@gateway/web/irccloud.com/x-ggbydzjrnujjmdqv) (Ping timeout: 265 seconds)
- # [20:50] * Quits: dherman (sid7996@gateway/web/irccloud.com/x-zqzkcnzedelrtjcx) (Ping timeout: 265 seconds)
- # [20:50] * Quits: jamesr___ (sid10481@gateway/web/irccloud.com/x-bepvycsuyebkanoy) (Ping timeout: 265 seconds)
- # [20:50] * Quits: Domenic (sid10976@gateway/web/irccloud.com/x-lqhldgqcfxzgleqs) (Ping timeout: 265 seconds)
- # [20:50] * Quits: jorendorff (sid28423@gateway/web/irccloud.com/x-vhcwgqckgbpureje) (Read error: Connection reset by peer)
- # [20:50] * Quits: krit (sid15081@gateway/web/irccloud.com/x-zdbmzqmgnxpmvcso) (Write error: Connection reset by peer)
- # [20:50] * Quits: matijs (sid2278@gateway/web/irccloud.com/x-xutpnpgxhboqbreb) (Read error: Connection reset by peer)
- # [20:50] * Quits: birtles (sid16523@gateway/web/irccloud.com/x-odcikeogbqoadudw) (Read error: Connection reset by peer)
- # [20:50] * Quits: abucur (sid19072@gateway/web/irccloud.com/x-ifesxucxklmjikon) (Read error: Connection reset by peer)
- # [20:50] * Quits: JakeA (sid3836@gateway/web/irccloud.com/x-uqdbzajgbjkwezlc) (Read error: Connection reset by peer)
- # [20:50] * Quits: dmurph (sid42525@gateway/web/irccloud.com/x-hbygcipatfhttual) (Read error: Connection reset by peer)
- # [20:50] * Quits: Garbee (uid21171@gateway/web/irccloud.com/x-ufyzudqghpfqyzgg) (Read error: Connection reset by peer)
- # [20:50] * Quits: hdv (sid2376@gateway/web/irccloud.com/x-wssyhzeulppvolwg) (Read error: Network is unreachable)
- # [20:50] * Quits: JonathanNeal (sid5831@gateway/web/irccloud.com/x-qmktgcqbggbokhod) (Read error: Connection reset by peer)
- # [20:51] * Quits: tobie (sid5692@gateway/web/irccloud.com/x-iqjkuyrurjrwjpfi) (Read error: Network is unreachable)
- # [20:51] * Quits: sballesteros_ (sid39846@gateway/web/irccloud.com/x-wzqtjtnpjxzqayfm) (Write error: Connection reset by peer)
- # [20:51] * Quits: jacobolus (~jacobolus@122.195.57.137) (Ping timeout: 255 seconds)
- # [20:52] * Quits: cfq (sid18398@gateway/web/irccloud.com/x-ozxielrbjmjhbexw) (Ping timeout: 250 seconds)
- # [20:53] * Quits: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley) (Ping timeout: 265 seconds)
- # [20:53] * Quits: jevs (sid23814@gateway/web/irccloud.com/x-cannkvbzerntlehn) (Ping timeout: 250 seconds)
- # [20:53] * Joins: jorendorff (sid28423@gateway/web/irccloud.com/x-zgybbjedpsjywqdh)
- # [20:54] * Joins: ato (sid16069@gateway/web/irccloud.com/x-slgvdstuolftakzj)
- # [20:54] * Joins: Garbee (uid21171@gateway/web/irccloud.com/x-fitwrdegvjhgkmwc)
- # [20:54] * Joins: JakeA (sid3836@gateway/web/irccloud.com/x-sfmwymmhkskstxxj)
- # [20:54] * Joins: dherman (sid7996@gateway/web/irccloud.com/x-rkbrxnyjglbzkbkp)
- # [20:54] * Joins: nunnun (~hiro@2001:200:164:48:20c:29ff:fe02:11d2)
- # [20:55] * Joins: hdv (sid2376@gateway/web/irccloud.com/x-vtozatmptxqldlsy)
- # [20:55] * Joins: jamesr___ (sid10481@gateway/web/irccloud.com/x-ijkxsezrjunqilfo)
- # [20:55] * Joins: birtles (sid16523@gateway/web/irccloud.com/x-hixcvkpywitfnlnx)
- # [20:55] * Joins: tyoshino________ (sid19222@gateway/web/irccloud.com/x-kimkxxbhgxxpxrkf)
- # [20:55] * Joins: jevs (sid23814@gateway/web/irccloud.com/x-hcckonoljoqapvnr)
- # [20:55] * Joins: FerasM____ (sid28672@gateway/web/irccloud.com/x-tknbrobabzlhzpjv)
- # [20:55] * Joins: mkwst (sid395@gateway/web/irccloud.com/x-mqkfthkqworxwlts)
- # [20:55] * Joins: dglazkov (sid4270@gateway/web/irccloud.com/x-sjlingvprcuzosny)
- # [20:56] * Joins: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley)
- # [20:56] * Joins: sballesteros_ (sid39846@gateway/web/irccloud.com/x-jrkugmyemnfewxrw)
- # [20:57] * Joins: Domenic (sid10976@gateway/web/irccloud.com/x-nkynkinczqdvjchs)
- # [20:57] * Joins: abucur (sid19072@gateway/web/irccloud.com/x-rstfineqbhsizstg)
- # [20:57] * Joins: JonathanNeal (sid5831@gateway/web/irccloud.com/x-hqyiiuksxgzfqovs)
- # [20:58] * Joins: bret (sid12421@gateway/web/irccloud.com/x-aynhggnrausceker)
- # [20:59] * Joins: newtron (~newtron@206-248-186-88.dsl.teksavvy.com)
- # [20:59] * Joins: mathiasbynens (sid2247@gateway/web/irccloud.com/x-izjiieudmfzozrjf)
- # [20:59] * Joins: cfq (sid18398@gateway/web/irccloud.com/x-vvtshgusdtcspeyl)
- # [21:00] * Quits: bterlson (sid23757@gateway/web/irccloud.com/x-lrwoulrvvgzdbkeq) (Read error: Network is unreachable)
- # [21:00] * Quits: iamstef (sid12605@gateway/web/irccloud.com/x-eramjovhloldupsc) (Read error: Connection reset by peer)
- # [21:00] * Joins: krit (sid15081@gateway/web/irccloud.com/x-fjbsyqijwgrayyor)
- # [21:00] * Joins: matijs (sid2278@gateway/web/irccloud.com/x-fqylkayukwcdcekc)
- # [21:01] * Joins: sspi (sid34681@gateway/web/irccloud.com/x-qwucxmmlvtwvdbkr)
- # [21:01] * Quits: nunnun (~hiro@2001:200:164:48:20c:29ff:fe02:11d2) (Ping timeout: 250 seconds)
- # [21:01] * Joins: dmurph (sid42525@gateway/web/irccloud.com/x-qkoirgblbenvuodc)
- # [21:02] * Joins: mven (~textual@72.183.104.138)
- # [21:02] * Quits: mven (~textual@72.183.104.138) (Excess Flood)
- # [21:03] * Joins: bterlson (sid23757@gateway/web/irccloud.com/x-gprjxckcggpefvpg)
- # [21:04] * Joins: iamstef (sid12605@gateway/web/irccloud.com/x-kxkhfrtfcmqhafjy)
- # [21:05] * Joins: tobie (sid5692@gateway/web/irccloud.com/x-klycpqrwzxbcizrs)
- # [21:05] * Quits: jkomoros______ (sid7860@gateway/web/irccloud.com/x-mjdyoloayioorbsb) (Read error: Connection reset by peer)
- # [21:08] * Joins: nunnun (~hiro@2001:200:164:48:20c:29ff:fe02:11d2)
- # [21:08] * Joins: jkomoros______ (sid7860@gateway/web/irccloud.com/x-xwtvrpsxotpgluji)
- # [21:12] * Joins: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [21:14] * Quits: astearns (sid15080@gateway/web/irccloud.com/x-xxgcqsqzyttrmgcl) (Ping timeout: 250 seconds)
- # [21:15] * Quits: cwilso__ (sid10206@gateway/web/irccloud.com/x-rrdwarpwgbisrpgk) (Read error: Connection reset by peer)
- # [21:15] * Joins: cwilso__ (sid10206@gateway/web/irccloud.com/x-bxfobjjbdfbxzasr)
- # [21:15] * Joins: astearns (sid15080@gateway/web/irccloud.com/x-atulrncclvgjwpwz)
- # [21:16] * Quits: omz (~omz@201-213-176-206.net.prima.net.ar) (Quit: Leaving)
- # [21:21] * Quits: jyasskin (~jyasskin@business-092-079-137-146.static.arcor-ip.net) (Quit: My computer has gone to sleep. ZZZzzz…)
- # [21:35] * Quits: c74d (~c74d3a4eb@2002:4404:712c:0:76de:2bff:fed4:2766) (Read error: Connection reset by peer)
- # [21:39] * Joins: c74d (~c74d3a4eb@2002:4404:712c:0:76de:2bff:fed4:2766)
- # [21:46] * Quits: iandevlin (~iandevlin@dslb-178-006-015-008.178.006.pools.vodafone-ip.de) (Read error: Connection reset by peer)
- # [21:47] * Quits: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
- # [21:47] * Quits: benwerd_ (~benwerd@67.180.159.135) (Remote host closed the connection)
- # [21:49] * Quits: jsx (uid48919@fsf/intern/jsx) (Quit: Connection closed for inactivity)
- # [21:57] * Quits: bholley (~bholley@174-29-13-139.hlrn.qwest.net) (Quit: ZZZzzz…)
- # [22:00] * Joins: thenosaj (~thenosaj@cpc3-lich10-2-0-cust90.3-2.cable.virginm.net)
- # [22:03] * Joins: watilde (~watilde@i114-180-108-27.s04.a013.ap.plala.or.jp)
- # [22:06] * Joins: jarek (~jarek@unaffiliated/jarek)
- # [22:08] * Quits: c74d (~c74d3a4eb@2002:4404:712c:0:76de:2bff:fed4:2766) (Read error: Connection reset by peer)
- # [22:08] * Quits: watilde (~watilde@i114-180-108-27.s04.a013.ap.plala.or.jp) (Ping timeout: 265 seconds)
- # [22:12] * Joins: c74d (~c74d3a4eb@2002:4404:712c:0:76de:2bff:fed4:2766)
- # [22:12] * Quits: roc (~chatzilla@121-99-196-184.bng1.tvc.orcon.net.nz) (Remote host closed the connection)
- # [22:17] * Joins: estellevw (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com)
- # [22:21] * Quits: estellevw (~estellevw@173-228-112-249.dsl.dynamic.fusionbroadband.com) (Read error: Connection reset by peer)
- # [22:26] * Joins: bholley (~bholley@174-29-13-139.hlrn.qwest.net)
- # [22:33] * Quits: thenosaj (~thenosaj@cpc3-lich10-2-0-cust90.3-2.cable.virginm.net) (Quit: gone afk)
- # [22:33] * Quits: darobin (~darobin@mtl93-18-78-208-93-24.fbx.proxad.net) (Remote host closed the connection)
- # [22:36] * Joins: xtrm0 (uid12574@gateway/web/irccloud.com/x-nemnhzvxoxjnbpiw)
- # [22:36] * Joins: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [22:40] * Joins: thenosaj (~thenosaj@cpc3-lich10-2-0-cust90.3-2.cable.virginm.net)
- # [22:41] * Quits: c74d (~c74d3a4eb@2002:4404:712c:0:76de:2bff:fed4:2766) (Read error: Connection reset by peer)
- # [22:41] * Quits: Ms2ger (~Ms2ger@24.241-64-87.adsl-dyn.isp.belgacom.be) (Quit: nn)
- # [22:45] * Joins: c74d (~c74d3a4eb@2002:4404:712c:0:76de:2bff:fed4:2766)
- # [22:49] * Joins: roc (~chatzilla@2001:cb0:b202:224:2677:3ff:fece:dc64)
- # [23:00] * Quits: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 245 seconds)
- # [23:03] * Quits: thenosaj (~thenosaj@cpc3-lich10-2-0-cust90.3-2.cable.virginm.net) (Quit: gone afk)
- # [23:12] * Joins: eric_carlson (~ericc@c-24-6-239-9.hsd1.ca.comcast.net)
- # [23:25] * Quits: bholley (~bholley@174-29-13-139.hlrn.qwest.net)
- # [23:26] * Quits: Maurice (copyman@unaffiliated/maurice)
- # [23:29] * Quits: birtles (sid16523@gateway/web/irccloud.com/x-hixcvkpywitfnlnx) (Ping timeout: 250 seconds)
- # [23:29] * Quits: cabanier (sid15093@gateway/web/irccloud.com/x-cqzgjsdupbluefbn) (Ping timeout: 250 seconds)
- # [23:30] * Joins: birtles (sid16523@gateway/web/irccloud.com/x-xrlftftrvltbldrg)
- # [23:30] * Joins: cabanier (sid15093@gateway/web/irccloud.com/x-xkwpttxvsmvomakq)
- # [23:35] * Quits: KevinMarks_ (~KevinMark@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 264 seconds)
- # [23:35] * Joins: benwerd (~benwerd@67.180.159.135)
- # [23:36] * Joins: satazor (~satazor@80.99.114.89.rev.vodafone.pt)
- # [23:36] * heycam|away is now known as heycam
- # [23:39] * Quits: karlcow (~karl@nerval.la-grange.net) (Quit: :tiuQ tiuq sah woclrak)
- # [23:39] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [23:40] * Quits: benwerd (~benwerd@67.180.159.135) (Ping timeout: 265 seconds)
- # [23:40] * Quits: satazor (~satazor@80.99.114.89.rev.vodafone.pt) (Ping timeout: 245 seconds)
- # [23:43] * Joins: jyasskin (~jyasskin@business-092-079-138-202.static.arcor-ip.net)
- # [23:56] * Quits: benjamingr (uid23465@gateway/web/irccloud.com/x-jzzxcfwtyzorxhrz) (Quit: Connection closed for inactivity)
- # [23:58] * Quits: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi) (Ping timeout: 246 seconds)
- # 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