Options:
- # Session Start: Sat Jul 12 00:00:01 2014
- # Session Ident: #whatwg
- # [00:01] <TabAtkins> smaug____: Do you mean "how does iframe work when it has a shadow root"?
- # [00:01] <TabAtkins> smaug____: And I believe any algorithm that look at the ancestor list should cross shadow boundaries and walk up the composed tree automatically.
- # [00:02] <smaug____> why?
- # [00:02] <smaug____> I mean per what spec?
- # [00:02] * Joins: yoav_ (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net)
- # [00:03] <smaug____> (I could agree iframe should load, but so far I haven't found any spec which says that)
- # [00:03] * Joins: scor (~scor@24.2.162.32)
- # [00:03] * Quits: scor (~scor@24.2.162.32) (Changing host)
- # [00:03] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [00:04] * Joins: roc (~chatzilla@122.62.46.230)
- # [00:06] * Quits: encryptd_fractl (~encryptd_@108-231-164-49.lightspeed.irvnca.sbcglobal.net) (Remote host closed the connection)
- # [00:06] * Joins: encryptd_fractl (~encryptd_@2602:306:ce7a:4310:64e5:24ca:a85d:3e3a)
- # [00:09] <Hixie> smaug____: no idea
- # [00:09] <Hixie> smaug____: i haven't updated any of my specs to handle shadow trees yet
- # [00:09] <smaug____> right, so what is implemented in blink is somewhat random
- # [00:10] <TabAtkins> smaug____: Unsure which of my comments your question is in response to.
- # [00:10] <smaug____> TabAtkins: to your comment "And I believe any algorithm that look at the ancestor list should cross shadow boundaries and walk up the composed tree automatically."
- # [00:11] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [00:11] <TabAtkins> Ah, kk. That's my personal belief, not one based on a spec ref. ^_^ But if the Shadow DOM spec doesn't define that, it should; for example, form elements inside of shadow DOM should be submitted when placed in an external <form>.
- # [00:11] <smaug____> hmm, how should session history work in case there are iframes in shadow dom (assuming those actually load something)
- # [00:11] * Joins: sicking (~sicking@207.106.178.163)
- # [00:12] <smaug____> TabAtkins: whaat? form elements should be submitted in that case?
- # [00:12] * Joins: bholley (~bholley@98.210.101.88)
- # [00:13] <smaug____> that is surprising
- # [00:14] <smaug____> if one just used radio buttons in shadow dom for some UI stuff, their value might get submitted accidentally
- # [00:14] * Quits: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [00:14] <Hixie> yeah i don't think it's as simple as just everything should work like if it was one tree
- # [00:14] <smaug____> it should definitely be opt-in behavior to let data to leak out from the shadow dom in such case
- # [00:14] <Hixie> i think it probably needs to depend on the binding
- # [00:15] * Quits: zcorpan (~zcorpan@90.230.218.37)
- # [00:22] * Quits: encryptd_fractl (~encryptd_@2602:306:ce7a:4310:64e5:24ca:a85d:3e3a) (Remote host closed the connection)
- # [00:26] <TabAtkins> smaug____: Hm, valid point.
- # [00:26] <TabAtkins> Domenic: I've got a super-class that's not meant to be used; it's just a holder for default implementations of methods, as it's designed to be extended. Should I have its constructor throw, or produce a valid-but-useless object?
- # [00:27] <TabAtkins> Domenic: (Specifically, I'm defining a set of XXXColor classes for CSS, and have a CSSColor superclass over them. If the constructor should really work, it'll just return an object that represents transparent black, with no way to manipulate it.)
- # [00:27] * Quits: ehsan (~ehsan@66.207.208.102) (Remote host closed the connection)
- # [00:27] * Joins: ^esc (~esc-ape@178.115.128.166.wireless.dyn.drei.com)
- # [00:28] * Quits: Areks|2 (~Areks@95-28-254-201.broadband.corbina.ru) (Ping timeout: 264 seconds)
- # [00:29] <TabAtkins> Also, I'm using WebIDL to define the shape of these interfaces, but defining most of the methods by just saying "here's the JS implementation", which is interesting.
- # [00:31] <Hixie> i'd just not define a constructor
- # [00:31] <TabAtkins> Gotta have something there.
- # [00:32] <TabAtkins> I forget what happens if you don't define a constructor.
- # [00:32] <Hixie> in webidl, if you don't set a [Constructor], you just don't get one
- # [00:32] <Domenic> It defines a throwing constructor
- # [00:33] <Domenic> TabAtkins: if you can make the throwing constructor work in a JS polyfill without mega-hacks, then that might be best... but I think that breaks inheritance
- # [00:34] <Domenic> (by mega-hacks, I mean a constructor that doesn't throw when you pass it an unguessable secret, which all the subclasses know)
- # [00:34] <TabAtkins> Domenic: Why is that necessary?
- # [00:34] <Domenic> TabAtkins: why is what necessary?
- # [00:34] <TabAtkins> Allowing the subclasses to construct an instance of the superclass?
- # [00:35] <Domenic> TabAtkins: if the superclass has any internal state at all, then you need to call super() in the subclass constructor to initialize it
- # [00:35] <Hixie> not necessarily
- # [00:35] * Joins: shannonmoeller (~shannonmo@pool-108-17-8-225.bflony.fios.verizon.net)
- # [00:35] <Hixie> you could call an internal init() method, e.g.
- # [00:35] <TabAtkins> It doesn't have any. The interface is just some methods, and some static stuff hanging off of it.
- # [00:35] <Domenic> TabAtkins: nice, then I think throwing constructor is pretty sound
- # [00:35] <TabAtkins> Okay, cool.
- # [00:36] <TabAtkins> (It has a semi-constructor that takes a string and returns one of its subclasses, but that's exposed as a static method on the interface instead.)
- # [00:36] * Quits: shannonmoeller (~shannonmo@pool-108-17-8-225.bflony.fios.verizon.net) (Client Quit)
- # [00:36] <Hixie> (i mean, Object has some internal state, and yet it's still fine for subclasses to throw even if they then have further subclasses that don't throw)
- # [00:36] <Domenic> TabAtkins: as long as it can be JS polyfilled I am happy, even if it's a bit unusual.
- # [00:37] <Domenic> Hixie: Object has no internal state
- # [00:37] <Hixie> Object has quite a lot of internal state :-)
- # [00:37] <Domenic> Hixie: but I think you are right that an internal init() method would probably work
- # [00:37] <TabAtkins> Usually when I use a useless superclass, I just give its constructor an empty body and don't worry about it, becasue I know I'm not going to try and construct it. ^_^
- # [00:37] <TabAtkins> But I gotta handle authors doing weird stuff.
- # [00:37] <Domenic> It would be nice if we had mixins in some first-class way
- # [00:37] <TabAtkins> So I was just wondering which style is more idiomatic - throwing, or dumb object.
- # [00:38] <TabAtkins> Yes. Yes it would be.
- # [00:38] <TabAtkins> That's all I'm using the stupid thing for, after all.
- # [00:38] <Domenic> WebIDL implements/ES7 Object.mixin would not allow monkeypatching the mixin and getting those changes shared by all mix-targets
- # [00:38] <TabAtkins> Yeah.
- # [00:39] <TabAtkins> And allowing monkeypatching is precisely why I'm structuring these things the way I am.
- # [00:40] <Domenic> (the problem i usually have with throwing constructors is that instances of them somehow exist. but that is not what is going on here.)
- # [00:40] <TabAtkins> Right.
- # [00:41] <TabAtkins> Unless there's some voodoo I'm not thinking of, there's no way to actually get a CSSColor object.
- # [00:41] <TabAtkins> Reflection wouldn't allow that, would it?
- # [00:41] <Domenic> Nah, I can't see how
- # [00:42] <TabAtkins> Oh wait, damnit, this isn't the name I wanted. I was going to go with RGBACompatibleColor.
- # [00:42] <Domenic> They would have to be exposed through APIs in your specs
- # [00:42] <Domenic> Wait... OK this is just a thought experiment, but...
- # [00:43] <Domenic> You could define RGBACCPrototype = { ...methods... }
- # [00:43] <Domenic> then inherit from that object directly
- # [00:43] <Domenic> Instead of defining function RGBACC () { throw new TypeError; }; RGBACC.prototype = { ... methods ... }
- # [00:43] <Domenic> Ah, you lose static methods though
- # [00:43] <TabAtkins> I need an RGBACC itself, though, to hang some static methods off of.
- # [00:43] <TabAtkins> Yeah.
- # [00:44] <Domenic> And... that pattern (proto-only) is getting very far from idiomatic.
- # [00:45] <TabAtkins> Might be interesting to make this pattern more explicit in IDL with "abstract interface ...", which fails syntax checking if there are any non-static attributes, or any constructors, and which is prohibited to be constructed by specs.
- # [00:46] <TabAtkins> (You'd still be able to use it in IDL itself, to denote an attribute/method that takes/returns any subclass of the interface.)
- # [00:46] * Joins: othermaciej (~mjs@67-207-118-226.static.wiline.com)
- # [00:46] <TabAtkins> (Or maybe prohibit it from being used directly, and add another syntax construct like "subclass<AbstractFoo>" that must be used by attributes/methods.)
- # [00:47] <TabAtkins> (Where subclass<XXX> is only valid when XXX is an abstract interface.)
- # [00:47] <TabAtkins> Unsure if worthwhile, but capturing relatively complex idioms that we want to use consistently is what WebIDL is for.
- # [00:48] <Hixie> why would non-static attributes be not ok in an abstract interface?
- # [00:48] <TabAtkins> Because that implies there's state on an instance, but there are no instances, by definition.
- # [00:48] <Hixie> i mean, fundamentally, "interface" really means "abstract class". WebIDL doesn't have a "class" concept.
- # [00:48] <TabAtkins> And putting data attributes on a prototype is bad practice.
- # [00:48] <Hixie> Node has plenty of attributes
- # [00:48] <TabAtkins> WebIDL's "interface" is JS's "class".
- # [00:48] <Hixie> i don't think that's bad practice
- # [00:49] <TabAtkins> I know. It's bad practice. ^_^
- # [00:49] <zewt> i find distinguishing "interface" from "class with virtual methods" to be a meaningless java-ism
- # [00:49] <Hixie> nah, Node isn't bad practice
- # [00:49] <Hixie> at least, not that part of it
- # [00:49] <Hixie> it's a quite sensible API
- # [00:49] <TabAtkins> If a data property is on a prototype, setting the property actually sets it on the prototype, changing it for *every instance*. That's almost never what you want.
- # [00:49] <Hixie> an attribute is fundamentally no different than a method
- # [00:49] <zewt> i think the underlying reason java has it is to avoid issues like diamond inheritance, but there are better solutions to that
- # [00:49] <TabAtkins> And if it is, you can explicitly say so with a getter/setter pair.
- # [00:50] <Hixie> there's no difference between getter/setter pairs and data attributes in webidl
- # [00:50] <TabAtkins> Hixie: The "fundamental" difference is that you don't set methods regularly.
- # [00:50] <Hixie> setFoo()/getFoo() is equivalent to "attribute foo"
- # [00:50] <TabAtkins> Hixie: Technically, sure, but that's just because the getter/setter pair handle typechecking for you.
- # [00:51] <TabAtkins> Hm, I guess they always set the value on the instance, though. (Or set hidden state on the instance, which is the same thing here.)
- # [00:52] <TabAtkins> So maybe it's not actually terrible.
- # [00:53] <TabAtkins> But still, making the constructor automatically throw with a standard message, and preventing accidentally using the interface directly in other things (thus making it less likely the spec author absentmindedly constructs an instance in prose) might be helpful.
- # [00:55] <Hixie> [NoInterfaceObject] is the usual way to prevent that kind of mistake
- # [00:55] <TabAtkins> That prevents you from hanging static things off the interface.
- # [00:55] <TabAtkins> And doesn't prevent the mistake at all - prose can still construct a [NoInterfaceObject] object.
- # [00:56] * Joins: Rastus_Vernon (uid15187@wikimedia/Rastus-Vernon)
- # [00:56] <TabAtkins> The constructor just isn't present on the global.
- # [00:56] <Hixie> oh, from prose
- # [00:56] <Hixie> yeah, dunno what's a good way to prevent that kind of mistake
- # [00:57] <Hixie> whatever you put in the spec, other spec writers have a tendency to think their case is special :-)
- # [00:57] <Hixie> (i include myself in this!)
- # [00:57] * Quits: othermaciej (~mjs@67-207-118-226.static.wiline.com) (Quit: othermaciej)
- # [00:58] * Joins: othermaciej (~mjs@67-207-118-226.static.wiline.com)
- # [00:58] <Domenic> TabAtkins: seems like a reasonable thing, although I'd like a couple more use cases first.
- # [00:59] <TabAtkins> Domenic: Yeah, it's a use-case-count of 1 right now, which is too small to generalize from safely.
- # [00:59] * Quits: othermaciej (~mjs@67-207-118-226.static.wiline.com) (Client Quit)
- # [00:59] <TabAtkins> Gotta hit 3 before it's reasonable. ^_^
- # [00:59] * Joins: othermaciej (~mjs@67.207.118.226)
- # [01:00] * Quits: lmclister (~lmclister@192.150.10.209)
- # [01:01] * Joins: newtron (~newtron@76-10-135-135.dsl.teksavvy.com)
- # [01:05] <zewt> putting empty <img> blocks on top of images to break copy image location is the modern-day equivalent of alert("right click is not supported")
- # [01:05] * Quits: othermaciej (~mjs@67.207.118.226) (Quit: othermaciej)
- # [01:06] * Joins: othermaciej (~mjs@67-207-118-226.static.wiline.com)
- # [01:17] * Quits: jensnockert (~jensnocke@31.208.66.137) (Remote host closed the connection)
- # [01:18] <Domenic> oooh, that's evil, i've never seen it before
- # [01:20] <zewt> others put images in css background-images for the same reason
- # [01:20] <zewt> (there are valid reasons to do that, but often it's just to make it harder to get the image url)
- # [01:24] * Quits: lerc (~quassel@121-74-2-8.telstraclear.net) (Read error: Connection reset by peer)
- # [01:28] * Joins: seventh (seventh@69.80.101.12)
- # [01:29] * Quits: newtron (~newtron@76-10-135-135.dsl.teksavvy.com) (Remote host closed the connection)
- # [01:30] * Joins: newtron (~newtron@76-10-135-135.dsl.teksavvy.com)
- # [01:34] * Quits: newtron (~newtron@76-10-135-135.dsl.teksavvy.com) (Ping timeout: 240 seconds)
- # [01:35] * Joins: ehsan (~ehsan@24-212-207-29.cable.teksavvy.com)
- # [01:36] * Quits: ehsan (~ehsan@24-212-207-29.cable.teksavvy.com) (Client Quit)
- # [01:44] * Joins: dylanlindgren (~kartstar@60-241-188-143.static.tpgi.com.au)
- # [01:51] * Quits: othermaciej (~mjs@67-207-118-226.static.wiline.com) (Quit: othermaciej)
- # [01:52] * Quits: TazDev (~TazDev@50-202-37-130-static.hfc.comcastbusiness.net) (Quit: TazDev)
- # [01:54] * Joins: othermaciej (~mjs@67-207-118-226.static.wiline.com)
- # [01:59] * Joins: markkes (~markkes@62.207.90.201)
- # [02:02] * Quits: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com) (Ping timeout: 264 seconds)
- # [02:02] * Quits: smaug____ (~chatzilla@a91-154-44-207.elisa-laajakaista.fi) (Ping timeout: 272 seconds)
- # [02:03] * Quits: bholley (~bholley@98.210.101.88) (Quit: Textual IRC Client: www.textualapp.com)
- # [02:10] * Quits: jsbell (jsbell@nat/google/x-wszievnbufmohzqh) (Quit: There's no place like home...)
- # [02:19] * Quits: sicking (~sicking@207.106.178.163) (Quit: sicking)
- # [02:29] * Quits: bkardell__ (uid10373@gateway/web/irccloud.com/x-pxbavhwbgvsugilm) (Quit: Connection closed for inactivity)
- # [02:31] * Quits: anchnk (~anchnk@static-176-182-127-143.ncc.abo.bbox.fr) (Quit: Leaving)
- # [02:34] * Joins: TazDev (~TazDev@50-202-37-130-static.hfc.comcastbusiness.net)
- # [02:36] * Quits: othermaciej (~mjs@67-207-118-226.static.wiline.com) (Quit: othermaciej)
- # [02:38] * Quits: bnicholson (~bnicholso@2620:101:80fc:224:7e7a:91ff:fe25:a5c6) (Ping timeout: 252 seconds)
- # [02:46] * Joins: sicking (~sicking@207.106.178.163)
- # [02:49] * Quits: TazDev (~TazDev@50-202-37-130-static.hfc.comcastbusiness.net) (Quit: TazDev)
- # [02:53] * Joins: TazDev (~TazDev@50-202-37-130-static.hfc.comcastbusiness.net)
- # [02:53] * Quits: TazDev (~TazDev@50-202-37-130-static.hfc.comcastbusiness.net) (Client Quit)
- # [02:55] * Quits: sicking (~sicking@207.106.178.163) (Quit: sicking)
- # [03:03] * Joins: othermaciej (~mjs@67-207-118-226.static.wiline.com)
- # [03:05] * Joins: bnicholson (~bnicholso@24.130.57.109)
- # [03:19] * Joins: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com)
- # [03:24] * Quits: plutoniix (~plutoniix@node-54k.pool-125-25.dynamic.totbb.net) (Quit: จรลี จรลา)
- # [03:30] * Joins: Goplat (~goplat@reactos/developer/Goplat)
- # [03:35] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
- # [03:39] * Quits: othermaciej (~mjs@67-207-118-226.static.wiline.com) (Quit: othermaciej)
- # [03:40] * Joins: plutoniix (~plutoniix@node-54k.pool-125-25.dynamic.totbb.net)
- # [04:07] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [04:11] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Ping timeout: 264 seconds)
- # [04:14] * Quits: KevinMarks (~KevinMark@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 264 seconds)
- # [04:18] * Quits: scor (~scor@drupal.org/user/52142/view) (Ping timeout: 240 seconds)
- # [04:27] * Quits: jeremyj (~jeremyj@17.202.49.56) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [04:28] * Quits: dbaron (~dbaron@2620:101:80fb:232:d1f1:c752:b02d:86cf) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [04:29] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [04:31] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [04:31] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [04:32] * Quits: seventh (seventh@69.80.101.12) (Ping timeout: 240 seconds)
- # [04:33] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [04:33] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [04:34] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [04:35] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [04:36] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [04:37] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [04:38] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [04:39] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [04:40] * Joins: dylanlin_ (~kartstar@60-241-188-143.static.tpgi.com.au)
- # [04:40] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [04:40] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [04:41] * Quits: dylanlindgren (~kartstar@60-241-188-143.static.tpgi.com.au) (Ping timeout: 240 seconds)
- # [04:42] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [04:42] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [04:43] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [04:44] * Joins: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net)
- # [04:44] <Krinkle> Hm.. where is the spec for document.cookie / HTMLDocument#cookie ?
- # [04:44] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [04:44] <Krinkle> MDN links to an old version in the HTML 2 spec on w3.org but can't find much else
- # [04:44] <Krinkle> http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-8747038
- # [04:44] <Krinkle> seems neither html/c nor dom.spec contains any reference to it
- # [04:45] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [04:46] <Krinkle> github search brought up https://github.com/whatwg/html-differences/blob/1f8778b1e26d98ae1de62ca7e99201c1d90a6a44/Overview.src.html#L3129
- # [04:46] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [04:47] * Joins: hemanth (~hemanth@122.172.228.64)
- # [04:47] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [04:48] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [04:49] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [04:50] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [04:51] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [04:51] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [04:53] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [04:53] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [04:54] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [04:55] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [04:56] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [04:57] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [04:58] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [04:59] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:00] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:00] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:02] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:02] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:03] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:04] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:05] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:06] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:07] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:07] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:09] * Quits: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [05:09] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:09] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:13] * Joins: jingtaoliu (~technommy@113.104.212.95)
- # [05:13] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:14] * Krinkle is now known as Krinkle|detached
- # [05:15] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:16] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:17] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:18] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:19] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:20] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:20] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:21] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:22] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:23] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:24] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:25] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:26] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:27] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:28] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:29] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:30] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:31] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:31] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:33] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:33] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:34] * Quits: jingtaoliu (~technommy@113.104.212.95) (Ping timeout: 240 seconds)
- # [05:34] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:35] * Quits: morrita_ (uid16889@gateway/web/irccloud.com/x-bbkzcwlfyojyuitx) (Quit: Connection closed for inactivity)
- # [05:35] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:36] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:37] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:38] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:39] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:40] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:40] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:42] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:42] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:42] * Quits: jwalden (~waldo@2620:101:80fc:224:7e7a:91ff:fe25:a5a3) (Quit: ChatZilla 0.9.87-8.1450hg.fc20 [XULRunner 30.0/20140605102323])
- # [05:43] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:44] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:45] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:46] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:47] * Joins: lmclister (~lmclister@c-98-210-38-110.hsd1.ca.comcast.net)
- # [05:47] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:48] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:48] * Joins: jingtaoliu (~technommy@113.91.50.68)
- # [05:49] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:49] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:50] * Quits: jingtaoliu (~technommy@113.91.50.68) (Read error: Connection reset by peer)
- # [05:51] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:51] * Joins: jingtaoliu (~technommy@113.91.50.68)
- # [05:51] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:52] * Joins: mven_ (~textual@ip68-104-38-84.lv.lv.cox.net)
- # [05:52] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:53] * Quits: jingtaoliu (~technommy@113.91.50.68) (Read error: Connection reset by peer)
- # [05:53] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:54] * Joins: jingtaoliu (~technommy@113.91.50.68)
- # [05:54] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:55] * Quits: jingtaoliu (~technommy@113.91.50.68) (Read error: Connection reset by peer)
- # [05:55] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:56] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:57] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:57] * Joins: jwalden (~waldo@c-50-168-55-219.hsd1.ca.comcast.net)
- # [05:58] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [05:59] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [05:59] * Joins: jingtaoliu (~technommy@113.91.50.68)
- # [05:59] * Quits: roc (~chatzilla@122.62.46.230) (Remote host closed the connection)
- # [05:59] * Quits: jingtaoliu (~technommy@113.91.50.68) (Read error: Connection reset by peer)
- # [06:00] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [06:00] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [06:00] * Joins: jingtaoliu (~technommy@113.91.50.68)
- # [06:01] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [06:02] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [06:03] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [06:04] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [06:04] * Quits: jingtaoliu (~technommy@113.91.50.68) (Read error: Connection reset by peer)
- # [06:05] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [06:05] * Joins: jingtaoliu (~technommy@113.91.50.68)
- # [06:06] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [06:08] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [06:08] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [06:09] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [06:09] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [06:09] * Quits: jingtaoliu (~technommy@113.91.50.68) (Read error: Connection reset by peer)
- # [06:10] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [06:11] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [06:12] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [06:13] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [06:13] * Joins: jingtaoliu (~technommy@113.91.50.68)
- # [06:14] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [06:15] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [06:16] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [06:16] * Quits: jingtaoliu (~technommy@113.91.50.68) (Read error: Connection reset by peer)
- # [06:17] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [06:17] * Joins: jingtaoliu (~technommy@113.91.50.68)
- # [06:17] * Quits: jingtaoliu (~technommy@113.91.50.68) (Read error: Connection reset by peer)
- # [06:17] * Quits: lmclister (~lmclister@c-98-210-38-110.hsd1.ca.comcast.net)
- # [06:18] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [06:18] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [06:20] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [06:20] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [06:21] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [06:26] * Joins: jingtaoliu (~technommy@113.91.50.68)
- # [06:28] * Quits: jingtaoliu (~technommy@113.91.50.68) (Remote host closed the connection)
- # [06:28] * Quits: Garbee (uid21171@gateway/web/irccloud.com/x-muntljsgxylrazld) (Quit: Connection closed for inactivity)
- # [06:30] * Quits: bnicholson (~bnicholso@24.130.57.109) (Ping timeout: 264 seconds)
- # [06:34] * Joins: bnicholson (~bnicholso@24.130.57.109)
- # [06:37] * Joins: dbaron (~dbaron@50-0-128-161.dsl.dynamic.sonic.net)
- # [06:41] * Quits: bnicholson (~bnicholso@24.130.57.109) (Ping timeout: 264 seconds)
- # [06:54] * Joins: zdobersek (~zan@46.166.186.240)
- # [06:55] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [06:57] * Joins: BigBangUDR (~Thunderbi@103.249.181.147)
- # [06:57] * Joins: bnicholson (~bnicholso@24.130.57.109)
- # [06:59] * Quits: BigBangUDR (~Thunderbi@103.249.181.147) (Client Quit)
- # [06:59] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [07:00] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [07:01] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [07:24] * Joins: roc (~chatzilla@121-98-105-37.bng1.tvc.orcon.net.nz)
- # [07:25] * Quits: jwalden (~waldo@c-50-168-55-219.hsd1.ca.comcast.net) (Quit: ChatZilla 0.9.87-8.1450hg.fc20 [XULRunner 30.0/20140605102323])
- # [07:32] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [07:34] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [07:34] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [07:35] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [07:36] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [07:36] * Joins: xiinotulp (~plutoniix@node-1a82.pool-101-109.dynamic.totbb.net)
- # [07:36] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [07:36] <Hixie> Krinkle|detached: http://www.whatwg.org/html#dom-document-cookie
- # [07:37] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [07:38] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [07:39] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [07:39] * Quits: plutoniix (~plutoniix@node-54k.pool-125-25.dynamic.totbb.net) (Ping timeout: 264 seconds)
- # [07:40] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Ping timeout: 256 seconds)
- # [07:40] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [07:41] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [07:42] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [07:43] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [07:43] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [07:44] * MikeSmit1 is now known as MikeSmith
- # [07:45] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [07:45] * Quits: zdobersek (~zan@46.166.186.240) (Ping timeout: 240 seconds)
- # [07:45] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [07:47] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [07:47] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [07:47] <Domenic> Someone needs to scrub MDN hard…
- # [07:48] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [07:49] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [07:50] * Joins: BigBangUDR (~Thunderbi@103.249.181.147)
- # [07:50] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [07:50] * Quits: Goplat (~goplat@reactos/developer/Goplat) (Remote host closed the connection)
- # [07:51] * Joins: zdobersek (~zan@109.201.154.192)
- # [07:51] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [07:52] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [07:52] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [07:54] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [07:54] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [07:55] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [07:56] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [07:57] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [07:58] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:00] * Quits: dbaron (~dbaron@50-0-128-161.dsl.dynamic.sonic.net) (Ping timeout: 256 seconds)
- # [08:00] * Quits: Smylers (~smylers@86.156.209.235) (Ping timeout: 240 seconds)
- # [08:00] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:01] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:02] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:03] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:04] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:04] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:06] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:06] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:07] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:08] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:09] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:10] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:11] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:12] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:14] * Joins: dbaron (~dbaron@50.0.128.161)
- # [08:15] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:15] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:16] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:17] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:18] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:19] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:20] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:21] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:22] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:22] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:24] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:24] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:26] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:26] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:27] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:28] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:29] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:30] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:31] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:32] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:33] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:33] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:35] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:35] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:36] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:37] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:38] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:39] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:39] * Quits: dbaron (~dbaron@50.0.128.161) (Ping timeout: 240 seconds)
- # [08:40] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:41] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:42] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:42] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:44] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:44] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:45] * Quits: BigBangUDR (~Thunderbi@103.249.181.147) (Quit: BigBangUDR)
- # [08:45] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:46] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:47] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [08:48] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [08:48] * Quits: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com) (Read error: No route to host)
- # [08:49] * Joins: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com)
- # [08:52] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [09:21] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [09:22] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [09:22] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [09:23] * Quits: Rastus_Vernon (uid15187@wikimedia/Rastus-Vernon) (Quit: Connection closed for inactivity)
- # [09:24] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [09:24] * Quits: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com) (Ping timeout: 264 seconds)
- # [09:25] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [09:25] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [09:26] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [09:27] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [09:28] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [09:29] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [09:30] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [09:31] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [09:32] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [09:33] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [09:33] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [09:35] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [09:35] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [09:36] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [09:37] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [09:38] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [09:39] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [09:41] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [09:41] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [09:42] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [09:42] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [09:43] * xiinotulp is now known as plutoniix
- # [09:44] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [09:44] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [09:45] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [09:46] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [09:47] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [09:48] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [09:49] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [09:53] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [09:54] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [09:55] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [09:56] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [09:57] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [09:58] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [09:59] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [10:00] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [10:00] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [10:00] * Joins: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.cust.bredband2.com)
- # [10:02] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [10:05] * Quits: CvP (~CvP@27.147.199.131) (Disconnected by services)
- # [10:05] * Joins: xCG (~CvP@27.147.199.131)
- # [10:06] * xCG is now known as CvP
- # [10:10] * Quits: ^esc (~esc-ape@178.115.128.166.wireless.dyn.drei.com) (Ping timeout: 240 seconds)
- # [10:34] * Joins: Areks|2 (~Areks@95-28-254-201.broadband.corbina.ru)
- # [10:35] * Quits: dylanlin_ (~kartstar@60-241-188-143.static.tpgi.com.au) (Remote host closed the connection)
- # [10:37] * Joins: BigBangUDR (~Thunderbi@103.249.181.147)
- # [10:38] * Quits: BigBangUDR (~Thunderbi@103.249.181.147) (Client Quit)
- # [10:51] * Joins: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com)
- # [10:54] * Joins: Ms2ger (~Ms2ger@148.253-64-87.adsl-dyn.isp.belgacom.be)
- # [10:55] * Quits: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com) (Ping timeout: 264 seconds)
- # [10:56] * Joins: yoshiki (~yoshiki@miku.s.su.la)
- # [11:06] * Joins: toydestroyer (~toydestro@95.85.2.130)
- # [11:09] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [11:10] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [11:20] * Joins: BigBangUDR (~Thunderbi@103.249.181.147)
- # [11:25] * Joins: Maurice` (copyman@94.213.97.124)
- # [11:28] * Joins: Smylers (~smylers@host86-156-209-235.range86-156.btcentralplus.com)
- # [11:47] * Quits: BigBangUDR (~Thunderbi@103.249.181.147) (Quit: BigBangUDR)
- # [11:47] <MikeSmith> /win 17
- # [11:51] * Joins: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com)
- # [11:57] * Quits: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com) (Ping timeout: 264 seconds)
- # [12:07] * Guest25693 is now known as fredy
- # [12:13] * Quits: toydestroyer (~toydestro@95.85.2.130)
- # [12:18] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [12:32] * Krinkle|detached is now known as Krinkle
- # [12:34] <Krinkle> Hixie: thanks
- # [12:44] <Ms2ger> Domenic, you could be the MDN scrubber
- # [12:52] * Joins: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com)
- # [12:57] * Quits: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com) (Ping timeout: 264 seconds)
- # [13:06] * Quits: yoav_ (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net) (Quit: Ex-Chat)
- # [13:18] * Joins: Gege (gege@future.deferred.io)
- # [13:20] * Joins: Garbee (uid21171@gateway/web/irccloud.com/x-rtfsypoectzmmqov)
- # [13:21] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
- # [13:41] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [13:44] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [13:52] * Joins: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com)
- # [13:57] * Quits: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com) (Ping timeout: 264 seconds)
- # [13:58] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [14:03] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (*.net *.split)
- # [14:03] * Quits: Ms2ger (~Ms2ger@148.253-64-87.adsl-dyn.isp.belgacom.be) (*.net *.split)
- # [14:03] * Quits: Areks|2 (~Areks@95-28-254-201.broadband.corbina.ru) (*.net *.split)
- # [14:03] * Quits: zdobersek (~zan@109.201.154.192) (*.net *.split)
- # [14:03] * Quits: markkes (~markkes@62.207.90.201) (*.net *.split)
- # [14:03] * Quits: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net) (*.net *.split)
- # [14:03] * Quits: wilhelm_ (~wilhelm@178.255.149.100) (*.net *.split)
- # [14:03] * Quits: MikeSmith (~mike@sideshowbarker.net) (*.net *.split)
- # [14:03] * Quits: Gege (gege@future.deferred.io) (*.net *.split)
- # [14:03] * Quits: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.cust.bredband2.com) (*.net *.split)
- # [14:03] * Quits: bnicholson (~bnicholso@24.130.57.109) (*.net *.split)
- # [14:03] * Quits: rektide (~rektide@eldergods.com) (*.net *.split)
- # [14:03] * Quits: asmodai (asmodai@freebsd/developer/asmodai) (*.net *.split)
- # [14:03] * Quits: gsnedders (~gsnedders@5.2.16.23) (*.net *.split)
- # [14:03] * Quits: mko (~mko@c-50-174-69-45.hsd1.ca.comcast.net) (*.net *.split)
- # [14:03] * Quits: tomaw (tom@freenode/staff/tomaw) (*.net *.split)
- # [14:03] * Quits: CvP (~CvP@27.147.199.131) (*.net *.split)
- # [14:03] * Quits: mven (~textual@169.241.49.57) (*.net *.split)
- # [14:03] * Quits: `nik`_ (~nik@50.116.28.134) (*.net *.split)
- # [14:03] * Quits: globbot (~logbot@110.173.227.145) (*.net *.split)
- # [14:03] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (*.net *.split)
- # [14:03] * Quits: kangil (~kangil@210.94.41.89) (*.net *.split)
- # [14:03] * Quits: bentruyman (~bentruyma@23.252.119.254) (*.net *.split)
- # [14:03] * Quits: SimonSapin_ (~simon@hako.exyr.org) (*.net *.split)
- # [14:03] * Quits: yoichio (yoichio@nat/google/x-itwvxfovdwhmiwye) (*.net *.split)
- # [14:03] * Quits: webben (~benjamin@hq.benjaminhawkeslewis.com) (*.net *.split)
- # [14:03] * Quits: th2389_ (uid27360@gateway/web/irccloud.com/x-sabuyiadildutdno) (*.net *.split)
- # [14:03] * Quits: charl (~charl@subarashii.eu) (*.net *.split)
- # [14:03] * Quits: birtles_ (sid16523@gateway/web/irccloud.com/x-ojxbhidvaatizorp) (*.net *.split)
- # [14:03] * Quits: Domenic (sid10976@gateway/web/irccloud.com/x-gqgeorftftshnuij) (*.net *.split)
- # [14:03] * Quits: hdv (sid2376@gateway/web/irccloud.com/x-softzaebxjfkspvt) (*.net *.split)
- # [14:03] * Quits: abarth (sid5294@gateway/web/irccloud.com/x-sxecudojnghqfcoy) (*.net *.split)
- # [14:03] * Quits: eric_carlson (~eric@17.202.43.125) (*.net *.split)
- # [14:03] * Quits: clamstar (~rx-ident@162.243.230.189) (*.net *.split)
- # [14:03] * Quits: Phae (sid455@gateway/web/irccloud.com/x-oqpathrpqjxnrhrc) (*.net *.split)
- # [14:03] * Quits: daleharvey (sid513@gateway/web/irccloud.com/x-eeywwfezqzppxbhx) (*.net *.split)
- # [14:03] * Quits: jamesr__ (sid10481@gateway/web/irccloud.com/x-pksaycwoxbfevfxq) (*.net *.split)
- # [14:03] * Quits: parshap (sid18846@gateway/web/irccloud.com/x-vmkdunfmfxfqoztt) (*.net *.split)
- # [14:03] * Quits: wycats (sid79@gateway/web/irccloud.com/x-zfgunbczjcakmbpc) (*.net *.split)
- # [14:03] * Quits: moo-_- (miohtama@lakka.kapsi.fi) (*.net *.split)
- # [14:03] * Quits: _ezequiel_ (sid18787@gateway/web/irccloud.com/x-xjppkendkgdsuyrf) (*.net *.split)
- # [14:03] * Quits: arv_ (sid4269@gateway/web/irccloud.com/x-zqjzvujogpuwkvot) (*.net *.split)
- # [14:03] * Quits: cabanier (sid15093@gateway/web/irccloud.com/x-yhogkulsqdjtrdlt) (*.net *.split)
- # [14:03] * Quits: xxtjaxx (~xxtjaxx@kde/developer/marschke) (*.net *.split)
- # [14:03] * Quits: matijs (sid2278@gateway/web/irccloud.com/x-thscvhmnnplvhvcl) (*.net *.split)
- # [14:03] * Quits: ivan`` (~ivan@unaffiliated/ivan/x-000001) (*.net *.split)
- # [14:03] * Quits: zewt (~foo@ec2-50-17-220-142.compute-1.amazonaws.com) (*.net *.split)
- # [14:03] * Quits: feltnerm_ (~feltnerm@li725-190.members.linode.com) (*.net *.split)
- # [14:03] * Quits: Jasper (jstpierre@unaffiliated/magcius) (*.net *.split)
- # [14:03] * Quits: sgalineau (sid26595@gateway/web/irccloud.com/x-ihpuriigwbwhjrqg) (*.net *.split)
- # [14:03] * Quits: scheib_ (sid4467@gateway/web/irccloud.com/x-sgqtoynnygrorjah) (*.net *.split)
- # [14:03] * Quits: dfreedm (sid7859@gateway/web/irccloud.com/x-lhxvxxgmrabeogih) (*.net *.split)
- # [14:03] * Quits: JakeA (uid3836@gateway/web/irccloud.com/x-fzlljrmcjmvkhxqf) (*.net *.split)
- # [14:03] * Quits: yutak (~yutak@2401:fa00:4:1000:8d6a:e506:3ab7:ba47) (*.net *.split)
- # [14:03] * Quits: beverloo (beverloo@nat/google/x-cqlvrokfspbqtiid) (*.net *.split)
- # [14:03] * Quits: lilmonkey (~colin@pdpc/supporter/professional/riven) (*.net *.split)
- # [14:03] * Quits: TabAtkins (sid11559@gateway/web/irccloud.com/x-jnwllorwwjruowfo) (*.net *.split)
- # [14:03] * Quits: pdr (sid7901@pdpc/supporter/active/pdr) (*.net *.split)
- # [14:03] * Quits: cbiesinger_ (sid8099@gateway/web/irccloud.com/x-oikzjlszwhiijbqo) (*.net *.split)
- # [14:03] * Quits: tyoshino_____ (sid19222@gateway/web/irccloud.com/x-zosmlmtqzlyedwpi) (*.net *.split)
- # [14:03] * Quits: paolo (~paolo@unaffiliated/paolo) (*.net *.split)
- # [14:03] * Quits: bterlson (sid23757@gateway/web/irccloud.com/x-wklyulvvawpduvnc) (*.net *.split)
- # [14:03] * Quits: esprehn (sid10445@gateway/web/irccloud.com/x-tyquwmvtxhxccvmj) (*.net *.split)
- # [14:03] * Quits: mvujovic_ (sid13458@gateway/web/irccloud.com/x-xpdphypkzbkmcvgu) (*.net *.split)
- # [14:03] * Quits: timeless (sid4015@firefox/developer/timeless) (*.net *.split)
- # [14:03] * Quits: hayato (sid20728@gateway/web/irccloud.com/x-vizpnzajuivrncal) (*.net *.split)
- # [14:03] * Quits: nephyrin (~neph@2620:101:80fc:224:7a2b:cbff:fe9e:2e67) (*.net *.split)
- # [14:03] * Quits: gnarf (gnarf@unaffiliated/gnarf) (*.net *.split)
- # [14:03] * Quits: mattur (sid16049@gateway/web/irccloud.com/x-hzutskvcgpbqisof) (*.net *.split)
- # [14:03] * Quits: ojan (sid5519@gateway/web/irccloud.com/x-eskwtinrhdkrqqer) (*.net *.split)
- # [14:03] * Quits: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (*.net *.split)
- # [14:03] * Quits: scott_gonzalez (gonzasi0@gateway/shell/jquery.com/x-ulyfvernlixfiich) (*.net *.split)
- # [14:03] * Quits: jmb (~jmb@mail.parsifal.org.uk) (*.net *.split)
- # [14:03] * Quits: Dashiva (Dashiva@wikia/Dashiva) (*.net *.split)
- # [14:03] * Quits: m4nu (~manu@216.252.204.51) (*.net *.split)
- # [14:03] * Quits: rcombs (~rcombs@rcombs.me) (*.net *.split)
- # [14:03] * Quits: kborchers (kborchers@gateway/shell/jquery.com/x-vbcrdwyahcmnboqf) (*.net *.split)
- # [14:03] * Quits: mounir (~mounir@oldworld.fr) (*.net *.split)
- # [14:03] * Quits: Manishearth (manisheart@wikipedia/Manishearth) (*.net *.split)
- # [14:03] * Quits: mmun (mmun@2600:3c03::f03c:91ff:fe69:74b6) (*.net *.split)
- # [14:03] * Quits: danielfilho (~danielfil@208.68.39.233) (*.net *.split)
- # [14:03] * Quits: jtcranmer (~jcranmer@ras1.csl.tjhsst.edu) (*.net *.split)
- # [14:03] * Quits: Philip`_ (~philip@compass.zaynar.co.uk) (*.net *.split)
- # [14:03] * Quits: Ablu (~ablu@quassel.woboq.de) (*.net *.split)
- # [14:03] * Quits: dshwang (dshwang@nat/intel/x-cgczspdbizvnlhzu) (*.net *.split)
- # [14:03] * Quits: gavinc (~gavin@b91e-cff0-5833-fdd6-030d-4002-3420-2062.6rd.ip6.sonic.net) (*.net *.split)
- # [14:03] * Quits: jochen__ (jochen@nat/google/x-nasufvxdowocuery) (*.net *.split)
- # [14:03] * Quits: Yudai____ (~Yudai@nttkyo040046.tkyo.nt.ngn2.ppp.infoweb.ne.jp) (*.net *.split)
- # [14:03] * Quits: suzak (~suzak@www4346uf.sakura.ne.jp) (*.net *.split)
- # [14:03] * Quits: k308 (~k308@k308.de) (*.net *.split)
- # [14:03] * Quits: Workshiva (~Dashiva@74.125.121.65) (*.net *.split)
- # [14:03] * Quits: halfline (rstrode@nat/redhat/x-gqrscxuwdldepitv) (*.net *.split)
- # [14:03] * Quits: foolip (~philip@37.139.17.34) (*.net *.split)
- # [14:03] * Quits: jaeholee__ (uid4856@gateway/web/irccloud.com/x-ghwuolargxprbkoc) (*.net *.split)
- # [14:04] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [14:04] * Joins: Gege (gege@future.deferred.io)
- # [14:04] * Joins: Ms2ger (~Ms2ger@148.253-64-87.adsl-dyn.isp.belgacom.be)
- # [14:04] * Joins: Areks|2 (~Areks@95-28-254-201.broadband.corbina.ru)
- # [14:04] * Joins: CvP (~CvP@27.147.199.131)
- # [14:04] * Joins: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.cust.bredband2.com)
- # [14:04] * Joins: zdobersek (~zan@109.201.154.192)
- # [14:04] * Joins: bnicholson (~bnicholso@24.130.57.109)
- # [14:04] * Joins: markkes (~markkes@62.207.90.201)
- # [14:04] * Joins: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net)
- # [14:04] * Joins: mven (~textual@169.241.49.57)
- # [14:04] * Joins: wilhelm_ (~wilhelm@178.255.149.100)
- # [14:04] * Joins: rektide (~rektide@eldergods.com)
- # [14:04] * Joins: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net)
- # [14:04] * Joins: scott_gonzalez (gonzasi0@gateway/shell/jquery.com/x-ulyfvernlixfiich)
- # [14:04] * Joins: jmb (~jmb@mail.parsifal.org.uk)
- # [14:04] * Joins: `nik`_ (~nik@50.116.28.134)
- # [14:04] * Joins: MikeSmith (~mike@sideshowbarker.net)
- # [14:04] * Joins: asmodai (asmodai@freebsd/developer/asmodai)
- # [14:04] * Joins: Dashiva (Dashiva@wikia/Dashiva)
- # [14:04] * Joins: SimonSapin_ (~simon@hako.exyr.org)
- # [14:04] * Joins: gsnedders (~gsnedders@5.2.16.23)
- # [14:04] * Joins: mko (~mko@c-50-174-69-45.hsd1.ca.comcast.net)
- # [14:04] * Joins: m4nu (~manu@216.252.204.51)
- # [14:04] * Joins: rcombs (~rcombs@rcombs.me)
- # [14:04] * Joins: yoichio (yoichio@nat/google/x-itwvxfovdwhmiwye)
- # [14:04] * Joins: tomaw (tom@freenode/staff/tomaw)
- # [14:04] * Joins: globbot (~logbot@110.173.227.145)
- # [14:04] * Joins: foolip (~philip@37.139.17.34)
- # [14:04] * Joins: Workshiva (~Dashiva@74.125.121.65)
- # [14:04] * Joins: k308 (~k308@k308.de)
- # [14:04] * Joins: suzak (~suzak@www4346uf.sakura.ne.jp)
- # [14:04] * Joins: Yudai____ (~Yudai@nttkyo040046.tkyo.nt.ngn2.ppp.infoweb.ne.jp)
- # [14:04] * Joins: jochen__ (jochen@nat/google/x-nasufvxdowocuery)
- # [14:04] * Joins: gavinc (~gavin@b91e-cff0-5833-fdd6-030d-4002-3420-2062.6rd.ip6.sonic.net)
- # [14:04] * Joins: halfline (rstrode@nat/redhat/x-gqrscxuwdldepitv)
- # [14:04] * Joins: dshwang (dshwang@nat/intel/x-cgczspdbizvnlhzu)
- # [14:04] * Joins: Ablu (~ablu@quassel.woboq.de)
- # [14:04] * Joins: Philip`_ (~philip@compass.zaynar.co.uk)
- # [14:04] * Joins: jtcranmer (~jcranmer@ras1.csl.tjhsst.edu)
- # [14:04] * Joins: mmun (mmun@2600:3c03::f03c:91ff:fe69:74b6)
- # [14:04] * Joins: danielfilho (~danielfil@208.68.39.233)
- # [14:04] * Joins: Manishearth (manisheart@wikipedia/Manishearth)
- # [14:04] * Joins: mounir (~mounir@oldworld.fr)
- # [14:04] * Joins: jaeholee__ (uid4856@gateway/web/irccloud.com/x-ghwuolargxprbkoc)
- # [14:04] * Joins: kborchers (kborchers@gateway/shell/jquery.com/x-vbcrdwyahcmnboqf)
- # [14:04] * Joins: ivan`` (~ivan@unaffiliated/ivan/x-000001)
- # [14:04] * Joins: zewt (~foo@ec2-50-17-220-142.compute-1.amazonaws.com)
- # [14:04] * Joins: feltnerm_ (~feltnerm@li725-190.members.linode.com)
- # [14:04] * Joins: paolo (~paolo@unaffiliated/paolo)
- # [14:04] * Joins: Jasper (jstpierre@unaffiliated/magcius)
- # [14:04] * Joins: sgalineau (sid26595@gateway/web/irccloud.com/x-ihpuriigwbwhjrqg)
- # [14:04] * Joins: scheib_ (sid4467@gateway/web/irccloud.com/x-sgqtoynnygrorjah)
- # [14:04] * Joins: dfreedm (sid7859@gateway/web/irccloud.com/x-lhxvxxgmrabeogih)
- # [14:04] * Joins: JakeA (uid3836@gateway/web/irccloud.com/x-fzlljrmcjmvkhxqf)
- # [14:04] * Joins: yutak (~yutak@2401:fa00:4:1000:8d6a:e506:3ab7:ba47)
- # [14:04] * Joins: beverloo (beverloo@nat/google/x-cqlvrokfspbqtiid)
- # [14:04] * Joins: lilmonkey (~colin@pdpc/supporter/professional/riven)
- # [14:04] * Joins: TabAtkins (sid11559@gateway/web/irccloud.com/x-jnwllorwwjruowfo)
- # [14:04] * Joins: pdr (sid7901@pdpc/supporter/active/pdr)
- # [14:04] * Joins: cbiesinger_ (sid8099@gateway/web/irccloud.com/x-oikzjlszwhiijbqo)
- # [14:04] * Joins: tyoshino_____ (sid19222@gateway/web/irccloud.com/x-zosmlmtqzlyedwpi)
- # [14:04] * Joins: bterlson (sid23757@gateway/web/irccloud.com/x-wklyulvvawpduvnc)
- # [14:04] * Joins: timeless (sid4015@firefox/developer/timeless)
- # [14:04] * Joins: esprehn (sid10445@gateway/web/irccloud.com/x-tyquwmvtxhxccvmj)
- # [14:04] * Joins: mvujovic_ (sid13458@gateway/web/irccloud.com/x-xpdphypkzbkmcvgu)
- # [14:04] * Joins: hayato (sid20728@gateway/web/irccloud.com/x-vizpnzajuivrncal)
- # [14:04] * Joins: gnarf (gnarf@unaffiliated/gnarf)
- # [14:04] * Joins: nephyrin (~neph@2620:101:80fc:224:7a2b:cbff:fe9e:2e67)
- # [14:04] * Joins: mattur (sid16049@gateway/web/irccloud.com/x-hzutskvcgpbqisof)
- # [14:04] * Joins: ojan (sid5519@gateway/web/irccloud.com/x-eskwtinrhdkrqqer)
- # [14:04] * Joins: webben (~benjamin@hq.benjaminhawkeslewis.com)
- # [14:04] * Joins: th2389_ (uid27360@gateway/web/irccloud.com/x-sabuyiadildutdno)
- # [14:04] * Joins: charl (~charl@subarashii.eu)
- # [14:04] * Joins: birtles_ (sid16523@gateway/web/irccloud.com/x-ojxbhidvaatizorp)
- # [14:04] * Joins: Domenic (sid10976@gateway/web/irccloud.com/x-gqgeorftftshnuij)
- # [14:04] * Joins: hdv (sid2376@gateway/web/irccloud.com/x-softzaebxjfkspvt)
- # [14:04] * Joins: abarth (sid5294@gateway/web/irccloud.com/x-sxecudojnghqfcoy)
- # [14:04] * Joins: eric_carlson (~eric@17.202.43.125)
- # [14:04] * Joins: clamstar (~rx-ident@162.243.230.189)
- # [14:04] * Joins: Phae (sid455@gateway/web/irccloud.com/x-oqpathrpqjxnrhrc)
- # [14:04] * Joins: daleharvey (sid513@gateway/web/irccloud.com/x-eeywwfezqzppxbhx)
- # [14:04] * Joins: jamesr__ (sid10481@gateway/web/irccloud.com/x-pksaycwoxbfevfxq)
- # [14:04] * Joins: parshap (sid18846@gateway/web/irccloud.com/x-vmkdunfmfxfqoztt)
- # [14:04] * Joins: wycats (sid79@gateway/web/irccloud.com/x-zfgunbczjcakmbpc)
- # [14:04] * Joins: _ezequiel_ (sid18787@gateway/web/irccloud.com/x-xjppkendkgdsuyrf)
- # [14:04] * Joins: moo-_- (miohtama@lakka.kapsi.fi)
- # [14:04] * Joins: arv_ (sid4269@gateway/web/irccloud.com/x-zqjzvujogpuwkvot)
- # [14:04] * Joins: cabanier (sid15093@gateway/web/irccloud.com/x-yhogkulsqdjtrdlt)
- # [14:04] * Joins: xxtjaxx (~xxtjaxx@kde/developer/marschke)
- # [14:04] * Joins: matijs (sid2278@gateway/web/irccloud.com/x-thscvhmnnplvhvcl)
- # [14:04] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [14:04] * Joins: kangil (~kangil@210.94.41.89)
- # [14:04] * Joins: bentruyman (~bentruyma@23.252.119.254)
- # [14:08] * Joins: wilhelm (~wilhelm@178.255.149.100)
- # [14:09] * Joins: MikeSmit1 (~mike@80.68.92.65)
- # [14:11] * Quits: MikeSmith (~mike@sideshowbarker.net) (Write error: Broken pipe)
- # [14:11] * Quits: wilhelm_ (~wilhelm@178.255.149.100) (Write error: Broken pipe)
- # [14:11] * Quits: Areks|2 (~Areks@95-28-254-201.broadband.corbina.ru) (Excess Flood)
- # [14:12] * Joins: Areks|2 (~Areks@95-28-254-201.broadband.corbina.ru)
- # [14:26] * Quits: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.cust.bredband2.com) (Read error: Connection reset by peer)
- # [14:28] * Joins: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.cust.bredband2.com)
- # [14:29] * Joins: BigBangUDR (~Thunderbi@103.249.181.147)
- # [14:33] * Quits: BigBangUDR (~Thunderbi@103.249.181.147) (Client Quit)
- # [14:36] * Quits: hsivonen (~hsivonen@bugzilla.validator.nu) (Remote host closed the connection)
- # [15:08] * Quits: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.cust.bredband2.com) (Read error: Connection reset by peer)
- # [15:08] * Joins: jensnock_ (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.cust.bredband2.com)
- # [15:13] * Quits: Areks|2 (~Areks@95-28-254-201.broadband.corbina.ru) (Ping timeout: 240 seconds)
- # [15:15] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [15:16] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [15:17] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [15:18] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [15:33] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net) (Remote host closed the connection)
- # [15:35] * Quits: jensnock_ (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.cust.bredband2.com) (Read error: Connection reset by peer)
- # [15:35] * Joins: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.cust.bredband2.com)
- # [15:38] * Joins: cheron (~cheron@unaffiliated/cheron)
- # [15:47] * Joins: josemanuel (~josemanue@110.Red-88-27-3.staticIP.rima-tde.net)
- # [15:59] * Krinkle is now known as Krinkle|detached
- # [15:59] * Joins: aNnel (~Nnel@109.144.142.205)
- # [16:12] * Quits: aNnel (~Nnel@109.144.142.205) (Ping timeout: 240 seconds)
- # [16:27] * Joins: jensnockert_ (~jensnocke@31.208.66.137)
- # [16:28] * Quits: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.cust.bredband2.com) (Ping timeout: 260 seconds)
- # [16:33] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net)
- # [16:38] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net) (Ping timeout: 256 seconds)
- # [16:40] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
- # [16:42] * Quits: gavinc (~gavin@b91e-cff0-5833-fdd6-030d-4002-3420-2062.6rd.ip6.sonic.net) (Quit: Konversation terminated!)
- # [16:46] * MikeSmit1 is now known as MikeSmith
- # [16:49] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [16:50] * Quits: jeremyj (~jeremyj@17.202.49.56) (Client Quit)
- # [16:55] * Joins: Goplat (~goplat@reactos/developer/Goplat)
- # [16:56] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [16:57] * Quits: mven (~textual@169.241.49.57) (Ping timeout: 240 seconds)
- # [16:58] * Joins: mven (~textual@169.241.49.57)
- # [17:09] * Joins: Areks|2 (~Areks@95.28.254.201)
- # [17:11] * Joins: encryptd_fractl (~encryptd_@209.201.113.2)
- # [17:12] * Quits: fredy (~fredy@83.212.98.238) (Excess Flood)
- # [17:13] * Quits: encryptd_fractl (~encryptd_@209.201.113.2) (Remote host closed the connection)
- # [17:14] * Joins: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr)
- # [17:19] * Joins: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com)
- # [17:28] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net)
- # [17:29] * Joins: thinkxl (~Adium@207.91.184.235)
- # [17:33] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net) (Ping timeout: 240 seconds)
- # [17:35] * Quits: thinkxl (~Adium@207.91.184.235) (Quit: Leaving.)
- # [17:35] * Quits: jensnockert_ (~jensnocke@31.208.66.137) (Remote host closed the connection)
- # [17:35] * Joins: thinkxl (~thinkxl@207-91-184-235.nstci.net)
- # [17:55] * Joins: anchnk (~anchnk@176.182.127.143)
- # [18:04] * Joins: jeremyj (~jeremyj@17.202.49.56)
- # [18:05] * Joins: dbaron (~dbaron@50.0.128.161)
- # [18:06] * Quits: jernoble|laptop (~jernoble@162.217.73.171) (Quit: Computer has gone to sleep.)
- # [18:09] * Joins: BigBangUDR (~Thunderbi@101.61.131.99)
- # [18:10] * Quits: BigBangUDR (~Thunderbi@101.61.131.99) (Client Quit)
- # [18:10] * Quits: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (Quit: is sleepy)
- # [18:24] * Joins: sicking (~sicking@207.106.178.163)
- # [18:25] * Quits: jeremyj (~jeremyj@17.202.49.56) (Ping timeout: 240 seconds)
- # [18:42] * Joins: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net)
- # [18:47] * Joins: BigBangUDR (~Thunderbi@101.61.131.99)
- # [18:47] * Quits: BigBangUDR (~Thunderbi@101.61.131.99) (Client Quit)
- # [18:48] * Quits: Goplat (~goplat@reactos/developer/Goplat) (Remote host closed the connection)
- # [18:49] * Quits: Ms2ger (~Ms2ger@148.253-64-87.adsl-dyn.isp.belgacom.be) (Ping timeout: 264 seconds)
- # [18:58] * Quits: broquaint (~dbrook@78.47.217.94) (Quit: Lost terminal)
- # [18:59] * Quits: sicking (~sicking@207.106.178.163) (Quit: sicking)
- # [19:01] * Joins: jingtaoliu (~technommy@113.91.50.68)
- # [19:06] * Joins: broquaint (~dbrook@static.94.217.47.78.clients.your-server.de)
- # [19:07] * Joins: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.cust.bredband2.com)
- # [19:07] * Joins: KevinMarks (~KevinMark@c-67-164-14-200.hsd1.ca.comcast.net)
- # [19:12] * Joins: sicking (~sicking@207.106.178.163)
- # [19:15] * Joins: smaug____ (~chatzilla@a91-154-44-207.elisa-laajakaista.fi)
- # [19:15] * Quits: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.cust.bredband2.com) (Remote host closed the connection)
- # [19:16] * Joins: BigBangUDR (~Thunderbi@101.61.131.99)
- # [19:16] * Quits: BigBangUDR (~Thunderbi@101.61.131.99) (Client Quit)
- # [19:22] * Joins: jernoble|laptop (~jernoble@162.217.73.171)
- # [19:23] * Quits: KevinMarks (~KevinMark@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
- # [19:26] <zewt> something that never gets old: squinting at a page for five minutes to figure out where some mysterious 4 pixels of padding is coming from
- # [19:26] * Krinkle|detached is now known as Krinkle
- # [19:28] * Quits: hemanth (~hemanth@122.172.228.64) (Quit: This computer has gone to sleep)
- # [19:31] * Quits: thinkxl (~thinkxl@207-91-184-235.nstci.net) (Remote host closed the connection)
- # [19:32] * Quits: sicking (~sicking@207.106.178.163) (Quit: sicking)
- # [19:32] * Joins: thinkxl (~thinkxl@207-91-184-235.nstci.net)
- # [19:35] * Krinkle is now known as Krinkle|detached
- # [19:54] * Quits: jernoble (~jernoble@17.202.46.221) (Quit: Textual IRC Client: www.textualapp.com)
- # [20:01] * Joins: tantek (~tantek@rrcs-64-183-1-195.west.biz.rr.com)
- # [20:02] * Quits: Areks|2 (~Areks@95.28.254.201) (Read error: Connection reset by peer)
- # [20:06] * Joins: Ms2ger (~Ms2ger@148.253-64-87.adsl-dyn.isp.belgacom.be)
- # [20:09] * Quits: smaug____ (~chatzilla@a91-154-44-207.elisa-laajakaista.fi) (Ping timeout: 240 seconds)
- # [20:18] * Quits: tantek (~tantek@rrcs-64-183-1-195.west.biz.rr.com) (Quit: tantek)
- # [20:19] * Quits: thinkxl (~thinkxl@207-91-184-235.nstci.net) (Remote host closed the connection)
- # [20:23] * Quits: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [20:25] * Joins: Areks (~Areks@95-28-254-201.broadband.corbina.ru)
- # [20:29] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net)
- # [20:35] * Joins: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net)
- # [20:44] * Joins: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net)
- # [20:46] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net) (Remote host closed the connection)
- # [20:47] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Remote host closed the connection)
- # [20:48] * Joins: encryptd_fractl (~encryptd_@209.201.113.2)
- # [20:49] * Joins: arildrotmo (~Arild@18.109-247-52.customer.lyse.net)
- # [20:52] * Quits: encryptd_fractl (~encryptd_@209.201.113.2) (Ping timeout: 240 seconds)
- # [20:53] <SamB> hmm, http://amjith.blogspot.com/2007/07/visual-diff-tools-in-linux.html does not contain any actual content
- # [20:53] <SamB> just a bunch of divs and some CSS (I think there was some actual CSS in there somewhere) and some scripts ...
- # [20:54] <SamB> and even when I turn on JS, I still don't get to the entry in question
- # [20:54] * SamB wonders if they did the same thing to his blog; if so, he thinks it's time to move it elsewhere ...
- # [20:54] <caitp> using what, netsurf?
- # [20:55] <SamB> caitp: I had noscript on to start with
- # [20:55] <SamB> also I *hate* endless scrolling
- # [20:55] <caitp> but after enabling scripts you still can't see content? huh
- # [20:55] <SamB> there's content, but I did not land at the content I would expect for that URL
- # [20:56] * Quits: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [20:57] <SamB> but I really hate gratuitously web-1.0-incompatible sites as well as (mandatory) endless scrolling
- # [20:58] * Quits: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [20:59] <SamB> thankfully, the wayback machine is working :-)
- # [21:00] <SamB> (and broken links, I hate broken links too)
- # [21:00] * Joins: smaug____ (~chatzilla@a91-154-44-207.elisa-laajakaista.fi)
- # [21:03] * SamB edits the link on unix.SE to point at a web.archive.org snapshot ...
- # [21:04] * Parts: arildrotmo (~Arild@18.109-247-52.customer.lyse.net) ("Leaving")
- # [21:05] <caitp> you should put the "bad" one in rubytext or something
- # [21:08] * Joins: satazor (~satazor@213.22.1.7)
- # [21:13] * Joins: weinig (~weinig@98.234.191.242)
- # [21:14] * Joins: shepazu (~shepazu@107-223-188-76.lightspeed.rlghnc.sbcglobal.net)
- # [21:19] * Joins: thinkxl (~thinkxl@207-91-184-235.nstci.net)
- # [21:20] * thinkxl is now known as Guest89367
- # [21:24] * Quits: Guest89367 (~thinkxl@207-91-184-235.nstci.net) (Ping timeout: 240 seconds)
- # [21:40] * Joins: KevinMarks (~KevinMark@c-67-164-14-200.hsd1.ca.comcast.net)
- # [21:41] * Joins: IZh (~Igor_Zhba@0897578511.static.corbina.ru)
- # [21:42] <IZh> Hi! What is the subdfn attribute of <code>. There are lots of in in the spec now. A validator complains.
- # [21:45] * Quits: weinig (~weinig@98.234.191.242) (Quit: weinig)
- # [21:49] <Ms2ger> The HTML spec?
- # [21:49] <Ms2ger> Probably a bug in Hixie's new pipeline
- # [21:50] <IZh> Ms2ger: Yes.
- # [21:50] <IZh> And what is the w-nodev attribute of the spans and links?
- # [21:51] <Ms2ger> Same
- # [21:51] <IZh> There are about hundred of them.
- # [21:51] <caitp> one hundred happy accidents is better than zero happy accidents
- # [21:53] * Quits: Maurice` (copyman@94.213.97.124) (Remote host closed the connection)
- # [21:54] * Joins: Maurice` (copyman@5ED5617C.cm-7-6b.dynamic.ziggo.nl)
- # [21:54] * Quits: marcosc_ (~marcosc@135-23-143-163.cpe.pppoe.ca) (Ping timeout: 245 seconds)
- # [22:16] * Joins: thinkxl (~thinkxl@207-91-184-235.nstci.net)
- # [22:16] * thinkxl is now known as Guest56415
- # [22:17] * Quits: KevinMarks (~KevinMark@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
- # [22:18] * Joins: KevinMarks (~KevinMark@c-67-164-14-200.hsd1.ca.comcast.net)
- # [22:20] * Joins: newtron (~newtron@76-10-135-135.dsl.teksavvy.com)
- # [22:22] * Quits: KevinMarks (~KevinMark@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
- # [22:24] * Joins: jeremyj (~jeremyj@24.4.202.10)
- # [22:28] * Quits: Guest56415 (~thinkxl@207-91-184-235.nstci.net)
- # [22:34] * Quits: jeremyj (~jeremyj@24.4.202.10) (Quit: Textual IRC Client: www.textualapp.com)
- # [22:34] * Quits: jernoble|laptop (~jernoble@162.217.73.171) (Quit: Computer has gone to sleep.)
- # [22:35] * Quits: newtron (~newtron@76-10-135-135.dsl.teksavvy.com) (Remote host closed the connection)
- # [22:36] * Joins: newtron (~newtron@76-10-135-135.dsl.teksavvy.com)
- # [22:36] * Joins: thinkxl2 (~thinkxl@207-91-184-235.nstci.net)
- # [22:37] * thinkxl2 is now known as thinkxl
- # [22:39] * Joins: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net)
- # [22:40] * Quits: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net) (Client Quit)
- # [22:40] * Quits: newtron (~newtron@76-10-135-135.dsl.teksavvy.com) (Ping timeout: 240 seconds)
- # [22:40] * Joins: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net)
- # [22:41] * Quits: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net) (Client Quit)
- # [22:42] * Joins: lerc (~quassel@121.74.2.8)
- # [22:45] * Quits: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com) (Ping timeout: 264 seconds)
- # [22:45] * Joins: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net)
- # [22:47] * Joins: aNnel (~Nnel@109.144.163.89)
- # [22:51] * Quits: shepazu (~shepazu@107-223-188-76.lightspeed.rlghnc.sbcglobal.net) (Quit: is sleepy)
- # [22:53] * Quits: Ms2ger (~Ms2ger@148.253-64-87.adsl-dyn.isp.belgacom.be) (Quit: nn)
- # [22:57] * Quits: dbaron (~dbaron@50.0.128.161) (Ping timeout: 240 seconds)
- # [23:09] * Joins: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com)
- # [23:11] * Quits: zdobersek (~zan@109.201.154.192) (Quit: Leaving.)
- # [23:14] * Joins: weinig (~weinig@17.114.219.114)
- # [23:15] * Joins: jernoble (~jernoble@162.217.73.171)
- # [23:15] * Quits: lilmonkey (~colin@pdpc/supporter/professional/riven) (Ping timeout: 240 seconds)
- # [23:18] * Joins: sicking (~sicking@c-98-210-193-170.hsd1.ca.comcast.net)
- # [23:18] * Quits: Smylers (~smylers@host86-156-209-235.range86-156.btcentralplus.com) (Remote host closed the connection)
- # [23:18] * Joins: KevinMarks (~KevinMark@c-67-164-14-200.hsd1.ca.comcast.net)
- # [23:25] * Quits: jernoble (~jernoble@162.217.73.171) (Quit: Computer has gone to sleep.)
- # [23:30] * Joins: seventh (seventh@69.80.96.136)
- # [23:31] * Joins: lilmonkey (~colin@5ED090B0.cm-7-1c.dynamic.ziggo.nl)
- # [23:31] * Quits: lilmonkey (~colin@5ED090B0.cm-7-1c.dynamic.ziggo.nl) (Changing host)
- # [23:31] * Joins: lilmonkey (~colin@pdpc/supporter/professional/riven)
- # [23:32] * Quits: lilmonkey (~colin@pdpc/supporter/professional/riven) (Read error: Connection reset by peer)
- # [23:35] * Joins: lilmonkey (~colin@5ED090B0.cm-7-1c.dynamic.ziggo.nl)
- # [23:35] * Quits: lilmonkey (~colin@5ED090B0.cm-7-1c.dynamic.ziggo.nl) (Changing host)
- # [23:35] * Joins: lilmonkey (~colin@pdpc/supporter/professional/riven)
- # [23:39] * Quits: cheron (~cheron@unaffiliated/cheron) (Ping timeout: 256 seconds)
- # [23:48] * Joins: tantek (~tantek@rrcs-64-183-1-195.west.biz.rr.com)
- # [23:58] * Quits: roc (~chatzilla@121-98-105-37.bng1.tvc.orcon.net.nz) (Remote host closed the connection)
- # [23:59] * Quits: tantek (~tantek@rrcs-64-183-1-195.west.biz.rr.com) (Quit: tantek)
- # Session Close: Sun Jul 13 00:00:00 2014
The end :)