Options:
- # Session Start: Wed Aug 14 00:00:00 2013
- # Session Ident: #whatwg
- # [00:00] <Hixie> that entire thread is baffling
- # [00:03] * Quits: sicking (~sicking@v-1045.fw1.sfo1.mozilla.net) (Quit: sicking)
- # [00:03] * Quits: alrra (~alrra@unaffiliated/alrra) (Quit: Leaving)
- # [00:07] * Joins: hasather (~hasather@cm-84.210.170.16.getinternet.no)
- # [00:16] * Quits: aklein (uid4454@gateway/web/irccloud.com/x-rflocokfybdfgvoq) (Ping timeout: 246 seconds)
- # [00:16] * Quits: hasather (~hasather@cm-84.210.170.16.getinternet.no) (Remote host closed the connection)
- # [00:17] * Quits: rmichnik (~quassel@177.201.8.66) (Ping timeout: 245 seconds)
- # [00:19] * Parts: jacobolus (~jacobolus@50-0-92-45.dsl.dynamic.sonic.net) ("Leaving...")
- # [00:19] <Domenic_> That's pretty standard... HTMLElement.prototype = Object.create(Element.prototype); Element.prototype = Object.create(Node.prototype); ... that's how JS inheritance works...
- # [00:21] * Quits: zdobersek (~zdobersek@cpe-77.38.31.63.cable.t-1.si) (Quit: ZNC - http://znc.in)
- # [00:23] * Quits: kinetik (~kinetik@121.99.169.72) (Quit: reboot)
- # [00:23] * Joins: milkshoes (~milkshoes@c-76-97-219-135.hsd1.ga.comcast.net)
- # [00:27] * Joins: sicking (~sicking@v-1045.fw1.sfo1.mozilla.net)
- # [00:29] * Quits: nimbu (~nimbu@192.150.10.205) (Quit: Leaving.)
- # [00:29] * Joins: [[zz]] (~q@node-1ar1.pool-101-109.dynamic.totbb.net)
- # [00:31] * Joins: kinetik (~kinetik@121.99.169.72)
- # [00:32] * Joins: adactio (~adactio@ip68-226-116-249.ph.ph.cox.net)
- # [00:32] * Joins: birtles (~chatzilla@61-121-216-2.bitcat.net)
- # [00:34] * Quits: accessPoint (~accessPoi@unaffiliated/t3oss) (Quit: Ex-Chat)
- # [00:34] * Joins: j_wright (~jwright@ip70-173-127-54.lv.lv.cox.net)
- # [00:34] * Joins: nimbu (~nimbu@192.150.10.205)
- # [00:35] <TabAtkins> Yeah, your prototype won't be instanceof your leaf class, but it should be instanceof any superclasses.
- # [00:36] * Quits: DELETE_MONGO_DB (~encryptd_@66-188-99-174.static.ftbg.wi.charter.com) (Remote host closed the connection)
- # [00:38] * Joins: weinig (~weinig@17.212.155.39)
- # [00:38] * Quits: cheron (~cheron@unaffiliated/cheron) (Ping timeout: 240 seconds)
- # [00:39] * Quits: ehsan (~ehsan@66.207.208.102) (Remote host closed the connection)
- # [00:39] * Joins: ehsan (~ehsan@66.207.208.102)
- # [00:44] * Quits: karbassi (~karbassi@li62-206.members.linode.com) (Remote host closed the connection)
- # [00:44] * Joins: karbassi (~karbassi@li62-206.members.linode.com)
- # [00:45] * Quits: ehsan (~ehsan@66.207.208.102) (Ping timeout: 276 seconds)
- # [00:50] * Quits: karbassi (~karbassi@li62-206.members.linode.com) (Ping timeout: 276 seconds)
- # [00:51] * Quits: adactio (~adactio@ip68-226-116-249.ph.ph.cox.net) (Ping timeout: 264 seconds)
- # [00:53] * Quits: decotii (~decotii@hq.croscon.com) (Quit: Leaving)
- # [00:53] * Quits: zewt (~foo@ec2-50-17-220-142.compute-1.amazonaws.com) (Read error: Operation timed out)
- # [00:55] * Quits: nimbu (~nimbu@192.150.10.205) (Quit: Leaving.)
- # [01:04] * Joins: aklein (uid4454@gateway/web/irccloud.com/x-ljdmwznjjjpppgre)
- # [01:05] * Joins: adactio (~adactio@ip68-226-116-249.ph.ph.cox.net)
- # [01:07] <Hixie> interesting definition of "instanceof"
- # [01:09] <TabAtkins> The definition is "take the prototype of the RHS, then walk the prototype chain of the LHS until you either find a match or hit null/cycle"
- # [01:10] <TabAtkins> Prototypal inheritance is different from classical inheritance.
- # [01:17] * Quits: felipeduardo (~felipedua@189.115.44.34) (Quit: Leaving)
- # [01:18] <Hixie> i would expect "instanceof" to tell me if something is an instance of something, and it's not clear to me that a prototype of an element is an instance of Node
- # [01:23] * Quits: tobie (~tobielang@73-118.195-178.cust.bluewin.ch) (Quit: tobie)
- # [01:24] * Joins: nimbu (~nimbu@192.150.10.210)
- # [01:26] * Quits: jreading (~Adium@ip98-169-193-48.dc.dc.cox.net) (Quit: Leaving.)
- # [01:27] * Joins: hasather (~hasather@cm-84.210.170.16.getinternet.no)
- # [01:28] * Quits: kevinmarks (~yaaic@c-71-204-145-244.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [01:31] * Quits: hasather (~hasather@cm-84.210.170.16.getinternet.no) (Ping timeout: 264 seconds)
- # [01:35] <TabAtkins> That's because you don't intuitively understand what prototypal inheritance does. It's very natural that your prototype is an instance of your superclass.
- # [01:36] <TabAtkins> The two basic patterns are very similar - one's the "examplar" pattern, where the prototype is some "typical" instance of the superclass.
- # [01:36] <TabAtkins> The other is where the prototype chains are actually separate objects from the instances, and so don't have any per-instance state.
- # [01:37] <TabAtkins> But regardless, yes, you are instanceof your class, your prototype is instanceof your superclass, etc.
- # [01:38] <TabAtkins> (Domenic's example was the second type - using Object.create to just make fresh objects with the right prototype, rather than going through the constructor to achieve the same thing and possibly getting per-instance state added to you.)
- # [01:38] * Parts: adactio (~adactio@ip68-226-116-249.ph.ph.cox.net)
- # [01:39] <TabAtkins> You really *shouldn't* be type-checking your prototypes (it doesn't make sense if you're not using examplars, and even then doesn't make very much sense), but if you do, that's the answer you get.
- # [01:54] * jonlee|afk is now known as jonlee
- # [01:56] * Quits: weinig (~weinig@17.212.155.39) (Quit: weinig)
- # [01:57] * Quits: birtles (~chatzilla@61-121-216-2.bitcat.net) (Quit: ChatZilla 0.9.90-rdmsoft [XULRunner 1.9.0.17/2009122204])
- # [01:57] * Joins: birtles (~chatzilla@61-121-216-2.bitcat.net)
- # [02:00] * Joins: DELETE_MONGO_DB (~encryptd_@71-89-74-12.dhcp.bycy.mi.charter.com)
- # [02:00] <rniwa> sicking: yt?
- # [02:01] <rniwa> does anyone from Mozilla here knows about Attr node?
- # [02:05] * Quits: sicking (~sicking@v-1045.fw1.sfo1.mozilla.net) (Quit: sicking)
- # [02:06] * Joins: tobie (~tobielang@73-118.195-178.cust.bluewin.ch)
- # [02:09] * Quits: ap (~ap@2620:149:4:1b01:7cdf:6bef:b52b:4594) (Quit: ap)
- # [02:12] * Quits: nimbu (~nimbu@192.150.10.210) (Quit: Leaving.)
- # [02:17] * jonlee is now known as jonlee|afk
- # [02:20] <Hixie> TabAtkins: might be "natural", but it's hardly useful :-)
- # [02:21] <Hixie> TabAtkins: i don't understand how the Element prototype can be said to be an instance of a Node, though
- # [02:21] <Hixie> TabAtkins: i understand that it's instanceof
- # [02:21] <Hixie> but it's not an instance of
- # [02:21] <Hixie> in any useful sense
- # [02:33] * Quits: garciawebdev (~garciaweb@11-223-235-201.fibertel.com.ar) (Remote host closed the connection)
- # [02:35] * Quits: othermaciej (~mjs@17.114.111.96) (Quit: othermaciej)
- # [02:41] * Quits: smaug____ (~chatzilla@a91-154-47-240.elisa-laajakaista.fi) (Ping timeout: 245 seconds)
- # [02:45] * Joins: weinig (~weinig@24.130.60.35)
- # [02:49] * Quits: yorick (~yorick@oftn/member/yorick) (Remote host closed the connection)
- # [02:53] * Quits: JakeA (uid3836@gateway/web/irccloud.com/x-nenxbwasyjgcbyuu) (Ping timeout: 264 seconds)
- # [02:53] * Quits: remysharp (uid4345@gateway/web/irccloud.com/x-rhnetoceqajdlrdg) (Ping timeout: 264 seconds)
- # [02:53] * Quits: matjas (uid2247@gateway/web/irccloud.com/x-mekyyaicsemvyshw) (Ping timeout: 264 seconds)
- # [02:54] * Joins: Goplat (~goplat@reactos/developer/Goplat)
- # [02:54] * Quits: MrBuur (MrBuur@0x5550f5d0.adsl.cybercity.dk)
- # [02:54] * Quits: wycats_ (uid79@gateway/web/irccloud.com/x-cclynvafhabdwegm) (Ping timeout: 264 seconds)
- # [02:56] * Quits: miketaylr (~miketaylr@65-36-73-92.dyn.grandenetworks.net) (Quit: miketaylr)
- # [03:05] * Quits: stalled (~stalled@unaffiliated/stalled) (Ping timeout: 260 seconds)
- # [03:06] * Quits: blooberry (blooberry_@nat/intel/x-kojogfpjvpvfwdyr) (Ping timeout: 264 seconds)
- # [03:07] * Quits: tobie (~tobielang@73-118.195-178.cust.bluewin.ch) (Quit: tobie)
- # [03:08] * Quits: jwalden (~waldo@nat/mozilla/x-dxaionurmmvqsevu) (Quit: ChatZilla 0.9.87-7.1450hg.fc19 [XULRunner 22.0/20130701153714])
- # [03:11] * Joins: stalled (~stalled@unaffiliated/stalled)
- # [03:13] * Quits: twisted` (uid6794@gateway/web/irccloud.com/x-lstjxosbvusexori) (Ping timeout: 264 seconds)
- # [03:14] * Joins: scor (~scor@c-24-128-8-119.hsd1.ma.comcast.net)
- # [03:14] * Quits: scor (~scor@c-24-128-8-119.hsd1.ma.comcast.net) (Changing host)
- # [03:14] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [03:18] * Quits: ^esc (~esc-ape@178.115.250.187.wireless.dyn.drei.com) (Ping timeout: 264 seconds)
- # [03:18] * Joins: krawchyk (~krawchyk@c-76-21-215-221.hsd1.dc.comcast.net)
- # [03:20] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [03:20] * Joins: ^esc (~esc-ape@178.115.250.187.wireless.dyn.drei.com)
- # [03:25] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Ping timeout: 264 seconds)
- # [03:28] * Joins: miketaylr (~miketaylr@65-36-73-92.dyn.grandenetworks.net)
- # [03:40] * Quits: scor (~scor@drupal.org/user/52142/view) (Quit: scor)
- # [03:52] * Quits: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [03:56] * Quits: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net) (Quit: tantek)
- # [04:09] * Joins: yoshiki (yoshiki@nat/google/x-dxxaazvpdzwubxfi)
- # [04:14] * Joins: papercut (~papercut@2.80.190.28)
- # [04:15] * Quits: Phase4 (~Phase4@2001:44b8:4030:9fb6:b95b:36a5:ef10:ef00) (Ping timeout: 264 seconds)
- # [04:15] * Quits: krawchyk (~krawchyk@c-76-21-215-221.hsd1.dc.comcast.net) (Remote host closed the connection)
- # [04:19] * Joins: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net)
- # [04:20] * Parts: papercut (~papercut@2.80.190.28) ("Summoned by higher entities")
- # [04:20] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [04:22] * Quits: weinig (~weinig@24.130.60.35) (Quit: weinig)
- # [04:25] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Ping timeout: 264 seconds)
- # [04:28] * Joins: jdaggett (~jdaggett@61-121-216-2.bitcat.net)
- # [04:29] * Quits: ^esc (~esc-ape@178.115.250.187.wireless.dyn.drei.com) (Ping timeout: 264 seconds)
- # [04:30] * Joins: ^esc (~esc-ape@178.115.250.187.wireless.dyn.drei.com)
- # [04:32] * Joins: ^esc_ (~esc-ape@178.115.250.187.wireless.dyn.drei.com)
- # [04:35] * Quits: milkshoes (~milkshoes@c-76-97-219-135.hsd1.ga.comcast.net) (Quit: Going offline, see ya! (www.adiirc.com))
- # [04:35] * Quits: ^esc (~esc-ape@178.115.250.187.wireless.dyn.drei.com) (Ping timeout: 264 seconds)
- # [04:35] * Quits: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net) (Quit: bholley)
- # [04:36] * Joins: ^esc (~esc-ape@178.115.250.187.wireless.dyn.drei.com)
- # [04:37] * Quits: ^esc_ (~esc-ape@178.115.250.187.wireless.dyn.drei.com) (Ping timeout: 264 seconds)
- # [04:46] * Joins: tantek (~tantek@mde0536d0.tmodns.net)
- # [04:48] * Quits: dcheng (dcheng@nat/google/x-dvhzifpyipeonxfp) (Ping timeout: 276 seconds)
- # [04:51] * Joins: wycats_ (uid79@gateway/web/irccloud.com/x-ekkzxflelptqmfex)
- # [04:51] * Joins: matjas (uid2247@gateway/web/irccloud.com/x-fjvqzmmswiqndhmq)
- # [04:51] * Quits: suderman (~suderman@S0106f0d1a90c0cf5.cg.shawcable.net) (Ping timeout: 268 seconds)
- # [04:52] * Joins: remysharp (uid4345@gateway/web/irccloud.com/x-xmewpbcjxzysjrqk)
- # [04:54] * Joins: JakeA (uid3836@gateway/web/irccloud.com/x-lahahrcclnycpbqd)
- # [04:56] * Joins: dcheng (dcheng@nat/google/x-puauggohloisimau)
- # [05:13] <TabAtkins> Hixie: If DOM used the "examplar" pattern, then the Element prototype would be a "typical" node, whatever that meant.
- # [05:13] <Hixie> if it was an actual Node I wouldn't mind it being called instanceof Node
- # [05:15] * Joins: twisted` (uid6794@gateway/web/irccloud.com/x-ykflwyfqkxtjqcdv)
- # [05:24] * Joins: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net)
- # [05:24] * Joins: zewt (~foo@ec2-50-17-220-142.compute-1.amazonaws.com)
- # [05:30] * Joins: F_Raymond (~Ray@114.79.16.251)
- # [05:30] * Quits: tantek (~tantek@mde0536d0.tmodns.net) (Ping timeout: 245 seconds)
- # [05:31] * Joins: weinig (~weinig@24.130.60.35)
- # [05:33] * Joins: icejack (~icejack@187.64.122.250)
- # [05:37] * Joins: tantek (~tantek@mde0536d0.tmodns.net)
- # [05:45] * Quits: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [05:48] * Quits: icejack (~icejack@187.64.122.250)
- # [05:48] * Quits: tantek (~tantek@mde0536d0.tmodns.net) (Quit: tantek)
- # [05:53] * Quits: rniwa (~rniwa@17.212.154.114) (Quit: rniwa)
- # [05:56] <heycam> the typical node would be <img src=cat.jpg>
- # [06:05] * Joins: Smylers (~smylers@needing.kith.volia.net)
- # [06:11] * Joins: Phase4 (~Phase4@dhcp96-123.lib.swin.edu.au)
- # [06:16] * Quits: Phase4 (~Phase4@dhcp96-123.lib.swin.edu.au) (Ping timeout: 256 seconds)
- # [06:17] * Joins: a-ja (~Instantbi@70.230.158.83)
- # [06:17] * Joins: F_Raymonda (~Ray@114.79.17.251)
- # [06:18] * Quits: F_Raymonda (~Ray@114.79.17.251) (Read error: Connection reset by peer)
- # [06:18] * Quits: F_Raymond (~Ray@114.79.16.251) (Quit: Leaving)
- # [06:18] * Joins: F_Raymond (~Ray@114.79.17.251)
- # [06:21] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [06:25] * Joins: dbaron (~dbaron@173-228-85-238.dsl.dynamic.sonic.net)
- # [06:25] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Ping timeout: 245 seconds)
- # [06:25] * Joins: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net)
- # [06:28] * Quits: weinig (~weinig@24.130.60.35) (Quit: weinig)
- # [06:43] * Joins: krit (~krit@178-24-147-149-dynip.superkabel.de)
- # [06:46] * Joins: weinig (~weinig@24.130.60.35)
- # [06:51] * Quits: kochi (~kochi@2401:fa00:4:1004:26be:5ff:fe03:db82) (Ping timeout: 240 seconds)
- # [06:52] * Joins: kochi (~kochi@2401:fa00:4:1004:26be:5ff:fe03:db82)
- # [06:52] * Quits: MikeSmith (~mike@sideshowbarker.net) (Ping timeout: 240 seconds)
- # [06:52] * Joins: MikeSmith (~mike@sideshowbarker.net)
- # [07:02] * Quits: miketaylr (~miketaylr@65-36-73-92.dyn.grandenetworks.net) (Quit: miketaylr)
- # [07:05] * Joins: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net)
- # [07:06] * Quits: weinig (~weinig@24.130.60.35) (Quit: weinig)
- # [07:15] * Joins: TuRnaD0 (~Thunderbi@x1-6-e0-46-9a-1e-fe-ca.k368.webspeed.dk)
- # [07:22] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [07:24] * Quits: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net) (Quit: bholley)
- # [07:26] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Ping timeout: 245 seconds)
- # [07:47] * Quits: F_Raymond (~Ray@114.79.17.251) (Quit: Leaving)
- # [07:47] * Quits: TuRnaD0 (~Thunderbi@x1-6-e0-46-9a-1e-fe-ca.k368.webspeed.dk) (Quit: TuRnaD0)
- # [07:51] * Parts: a-ja (~Instantbi@70.230.158.83)
- # [08:18] * heycam is now known as heycam|away
- # [08:20] * Joins: zkis (~zkis@87-95-14-138.bb.dnainternet.fi)
- # [08:22] * Joins: othermaciej (~mjs@50.136.134.16)
- # [08:22] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [08:24] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com)
- # [08:26] * Quits: jdaggett (~jdaggett@61-121-216-2.bitcat.net) (Quit: jdaggett)
- # [08:27] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Ping timeout: 264 seconds)
- # [08:32] * Joins: fgh (~fgh@bb121-6-13-69.singnet.com.sg)
- # [08:33] * Quits: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net) (Ping timeout: 276 seconds)
- # [08:42] * Joins: tobie (~tobielang@73-118.195-178.cust.bluewin.ch)
- # [08:42] * Quits: zkis (~zkis@87-95-14-138.bb.dnainternet.fi) (Ping timeout: 245 seconds)
- # [08:43] * Joins: zdobersek (~zdobersek@cpe-77.38.31.63.cable.t-1.si)
- # [08:44] * Joins: Ms2ger (~Ms2ger@182.194-64-87.adsl-dyn.isp.belgacom.be)
- # [08:46] * Joins: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net)
- # [08:51] <Ms2ger> rniwa, you called?
- # [08:53] * Quits: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net) (Ping timeout: 256 seconds)
- # [08:56] * Quits: othermaciej (~mjs@50.136.134.16) (Quit: othermaciej)
- # [08:57] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [09:00] * Joins: lerc_ (~quassel@121.75.145.115)
- # [09:01] * Quits: lerc (~quassel@121.75.145.115) (Ping timeout: 260 seconds)
- # [09:02] * Joins: blooberry (blooberry_@nat/intel/x-bavqojanssczhhsr)
- # [09:06] * Quits: blooberry (blooberry_@nat/intel/x-bavqojanssczhhsr) (Ping timeout: 256 seconds)
- # [09:12] * Joins: benbarnett (~Adium@149.241.212.83)
- # [09:14] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Remote host closed the connection)
- # [09:14] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [09:14] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [09:16] * Quits: dbaron (~dbaron@173-228-85-238.dsl.dynamic.sonic.net) (Ping timeout: 245 seconds)
- # [09:17] * Joins: enr_ (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [09:17] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Read error: Connection reset by peer)
- # [09:18] * Joins: accessPoint (~accessPoi@77.28.0.162)
- # [09:19] * Joins: zkis (~zkis@2001:998:22:0:5c7d:b947:7eaa:343e)
- # [09:23] * Joins: mitemitreski (~mitemitre@212.120.17.179)
- # [09:23] * Quits: Smylers (~smylers@needing.kith.volia.net) (Ping timeout: 245 seconds)
- # [09:23] * Joins: Smylers (~smylers@needing.kith.volia.net)
- # [09:27] * Quits: enr_ (~enr@static-88.131.87.100.addr.tdcsong.se) (Remote host closed the connection)
- # [09:27] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [09:28] * Joins: enr_ (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [09:28] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Read error: Connection reset by peer)
- # [09:32] * Quits: mpt (~mpt@canonical/mpt) (Read error: Connection reset by peer)
- # [09:33] * Joins: mpt (~mpt@canonical/mpt)
- # [09:36] * Quits: benbarnett (~Adium@149.241.212.83) (Quit: Leaving.)
- # [09:36] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [09:37] * Joins: davve` (~user@node-7lfb91kwq155uy7y8.a0.ipv6.opera.com)
- # [09:38] * davve` is now known as davveo
- # [09:38] * davveo is now known as davve`
- # [09:38] * davve` is now known as davveo
- # [09:40] * Quits: Goplat (~goplat@reactos/developer/Goplat) (Remote host closed the connection)
- # [09:47] * Quits: Smylers (~smylers@needing.kith.volia.net) (Quit: Leaving.)
- # [09:48] * Joins: Smylers (~smylers@needing.kith.volia.net)
- # [09:52] * Quits: birtles (~chatzilla@61-121-216-2.bitcat.net) (Remote host closed the connection)
- # [09:52] * Joins: hasather (~hasather@80.91.33.141)
- # [09:56] * Joins: jim0thy_ (~jim0thy_@212.113.198.34)
- # [09:59] * Joins: benbarnett (~Adium@149.241.212.83)
- # [10:00] * Quits: benbarnett (~Adium@149.241.212.83) (Client Quit)
- # [10:04] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com) (Ping timeout: 256 seconds)
- # [10:06] * Quits: jim0thy_ (~jim0thy_@212.113.198.34) (Quit: jim0thy_)
- # [10:06] * Quits: Lachy (~Lachy@cm-84.215.104.248.getinternet.no) (Quit: Textual IRC Client: http://www.textualapp.com/)
- # [10:10] * Quits: Smylers (~smylers@needing.kith.volia.net) (Quit: Leaving.)
- # [10:10] * Joins: Smylers1 (~smylers@needing.kith.volia.net)
- # [10:11] * Joins: jim0thy_ (~jim0thy_@212.113.198.34)
- # [10:13] * Quits: Smylers1 (~smylers@needing.kith.volia.net) (Client Quit)
- # [10:30] * Quits: nunnun (~hiro@2001:200:1c0:3625:20c:29ff:fe02:11d2) (Ping timeout: 245 seconds)
- # [10:35] * Joins: darobin (~darobin@lns-bzn-36-82-251-25-245.adsl.proxad.net)
- # [10:42] * Joins: Lachy (~Lachy@213.166.174.2)
- # [10:42] * Quits: ^esc (~esc-ape@178.115.250.187.wireless.dyn.drei.com) (Ping timeout: 264 seconds)
- # [10:44] * Quits: Lachy (~Lachy@213.166.174.2) (Client Quit)
- # [10:45] * Quits: darobin (~darobin@lns-bzn-36-82-251-25-245.adsl.proxad.net) (Ping timeout: 264 seconds)
- # [10:45] * Joins: darobin (~darobin@lns-bzn-36-82-251-25-245.adsl.proxad.net)
- # [10:46] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com)
- # [10:48] * Joins: ^esc (~esc-ape@178.115.251.154.wireless.dyn.drei.com)
- # [10:51] * Joins: annevk (~annevk@207.218.72.65)
- # [10:51] <Ms2ger> Hrm, http://html5.org/tools/web-apps-tracker?from=8142&to=8143 seems empty
- # [10:52] * Quits: danbri (~danbri@146.90.244.38) (Ping timeout: 264 seconds)
- # [10:53] * Joins: danbri (~danbri@146.90.244.38)
- # [10:53] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com) (Quit: ChatZilla 0.9.90.1 [Firefox 23.0/20130730113002])
- # [10:56] * Joins: Lachy (~Lachy@213.166.174.2)
- # [10:57] * Quits: danbri (~danbri@146.90.244.38) (Ping timeout: 245 seconds)
- # [10:58] * Joins: danbri (~danbri@146.90.244.38)
- # [11:04] <Lachy> zcorpan, Hixie, re comments about details http://krijnhoetmer.nl/irc-logs/whatwg/20130813#l-794 the difficulties in Opera were related to the fact that Opera didn't implement XBL or shadow DOM and we were trying to find a way to ensure authors could still apply styles in a sane way. I did mail whatwg about this at the time.
- # [11:05] <zcorpan> Lachy: ok, so assuming shadow DOM is supported, there's no inherent problem with the spec that should be fixed?
- # [11:06] <annevk> Ms2ger: looks like svn.whatwg.org is timing out and therefore something got cached wrongly...
- # [11:06] <Lachy> I think even with a shadow dom, there were issues that were difficult to solve. I'll look up my original mail about it all.
- # [11:06] <zcorpan> Ms2ger: i think that happens when it gets loaded by someone before it exists (e.g. by clicking the 'Next' link). it caches an empty result
- # [11:08] <Lachy> http://lists.whatwg.org/pipermail/whatwg-whatwg.org/2011-April/031132.html
- # [11:09] <zcorpan> getDiff should probably check if the diff is empty before caching it
- # [11:09] * Quits: hasather (~hasather@80.91.33.141) (Remote host closed the connection)
- # [11:12] * Joins: hasather (~hasather@80.91.33.141)
- # [11:14] * Joins: Smylers (~smylers@92.60.180.50)
- # [11:15] * Quits: krit (~krit@178-24-147-149-dynip.superkabel.de) (Ping timeout: 276 seconds)
- # [11:18] <annevk> or like, not cache anything at all...
- # [11:20] * davveo is now known as davve`
- # [11:20] * davve` is now known as davveo
- # [11:21] * davveo is now known as davve
- # [11:24] * Quits: fgh (~fgh@bb121-6-13-69.singnet.com.sg) (Quit: Leaving)
- # [11:25] * Joins: fgh (~fgh@bb121-6-13-69.singnet.com.sg)
- # [11:26] * Joins: cheron (~cheron@unaffiliated/cheron)
- # [11:27] * Quits: jim0thy_ (~jim0thy_@212.113.198.34) (Quit: jim0thy_)
- # [11:31] <zcorpan> isn't the cache there for a reason?
- # [11:36] <jgraham> I think it's worse that webkit did implement <details> than that gecko didn't
- # [11:36] <jgraham> At least the implementation seemed quite broken at one time
- # [11:40] <annevk> http://src.chromium.org/viewvc/blink?view=revision&revision=155513 the URLs cited here are just scary...
- # [11:40] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [11:40] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [11:42] * Joins: Jonadabe (~Jonadabe@bl7-77-40.dsl.telepac.pt)
- # [11:42] * Joins: smaug____ (~chatzilla@a91-154-47-240.elisa-laajakaista.fi)
- # [11:43] * Parts: Jonadabe (~Jonadabe@bl7-77-40.dsl.telepac.pt)
- # [11:43] * Joins: benbarnett (~Adium@195.81.245.98)
- # [11:45] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 264 seconds)
- # [11:47] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [11:48] <jgraham> Yeah, that should be a r- for not reading the right specs
- # [11:54] * Quits: Smylers (~smylers@92.60.180.50) (Remote host closed the connection)
- # [11:55] <jgraham> https://github.com/google/gumbo-parser
- # [11:58] * Joins: Smylers (~smylers@92.60.180.50)
- # [11:59] <annevk> and "DOM4"? lol
- # [12:01] <annevk> Ms2ger: fixed diff
- # [12:01] * annevk looks into fixing the actual issue
- # [12:03] <annevk> zcorpan: getDiff already does the empty check
- # [12:03] <zcorpan> annevk: oh
- # [12:03] <annevk> zcorpan: I guess these days maybe something is returned that's not entirely empty
- # [12:03] * Quits: ^esc (~esc-ape@178.115.251.154.wireless.dyn.drei.com) (Ping timeout: 264 seconds)
- # [12:06] <annevk> meh
- # [12:06] <annevk> should really rewrite the tool some day
- # [12:09] <jgraham> Use the git backend. That should make things easier as long as you have enough space to store the whole checkou
- # [12:09] <jgraham> And, if it's on github, set up a hook for the updates
- # [12:10] <annevk> go for it
- # [12:18] * Joins: jim0thy_ (~jim0thy_@212.113.198.34)
- # [12:18] <smaug____> odinho: I disagree. (EventSource and utf-8)
- # [12:18] <odinho> :)
- # [12:18] <smaug____> but it clearly is a bug in the spec, at least
- # [12:19] <smaug____> if we can't agree what the spec says
- # [12:19] <odinho> Sure
- # [12:19] <annevk> ?
- # [12:19] * annevk is missing context
- # [12:20] <odinho> https://bugzilla.mozilla.org/show_bug.cgi?id=869878
- # [12:20] <odinho> [eventsource] When encoding charset=windows-1252, Firefox goes to onmessage() but not onerror().
- # [12:22] <jgraham> I think the spec is clear
- # [12:22] <jgraham> You decode the data as UTF-8 regardless
- # [12:23] <jgraham> I sort of assumed that was what the test was checking
- # [12:23] <jgraham> If it isn't, it needs to be fixed
- # [12:25] <odinho> Yes, it can clearly be seen that way. I might have been too hung up on trying to force authors to do no stupid.
- # [12:26] <odinho> If they say windows-1252 they might mean it. And thinks everything will be okay.
- # [12:26] * Joins: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com)
- # [12:26] <odinho> Then they will WTF that the browser is decoding in a weird way.
- # [12:26] <odinho> And blame the browser. Because they're giving correct infoz.
- # [12:26] <jgraham> Well sure
- # [12:26] <jgraham> Or they might not mean it
- # [12:27] <odinho> If the browser complained, and didn't work at the windows-1252, it's much more understandable (from the beginning), that they have to fix it.
- # [12:27] <jgraham> In any case the spec says what it does. You could argue that it ought to say something different
- # [12:27] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com)
- # [12:27] <jgraham> however if all browsers agree, it doesn't seem like much of a sharp edge
- # [12:28] <odinho> And it can also complain in the error log.
- # [12:29] <annevk> I remember EventSource saying something silly about charset
- # [12:30] <annevk> It no longer does
- # [12:34] * Quits: Smylers (~smylers@92.60.180.50) (Quit: Leaving.)
- # [12:34] <annevk> odinho: I don't see how you can read the spec in any other way
- # [12:34] <annevk> odinho: it's extremely clear
- # [12:35] <annevk> odinho: "HTTP 200 OK responses with a Content-Type header specifying the type text/event-stream, ignoring any MIME type parameters, must be processed line by line as described below."
- # [12:35] <annevk> odinho: "as described below" is a link
- # [12:35] <annevk> odinho: "Streams must be decoded using the UTF-8 decode algorithm."
- # [12:35] <annevk> odinho: done
- # [12:48] * Joins: charl (~charl@2001:67c:2564:524:92b1:1cff:fe89:ae5)
- # [13:04] <odinho> It is extremely clear. I took a shortcut. :)
- # [13:04] * Quits: lerc_ (~quassel@121.75.145.115) (Ping timeout: 268 seconds)
- # [13:04] <odinho> :/ Better go look at some kitten pictures.
- # [13:05] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 256 seconds)
- # [13:13] * Joins: zcorpan (~zcorpan@94.234.170.190)
- # [13:14] * Quits: tobie (~tobielang@73-118.195-178.cust.bluewin.ch) (Quit: tobie)
- # [13:16] * Joins: krit1 (~krit@192.150.10.210)
- # [13:20] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [13:25] * Joins: darobin_ (~darobin@lns-bzn-52-82-65-121-60.adsl.proxad.net)
- # [13:25] * Joins: lerc (~quassel@121.75.145.115)
- # [13:27] * Quits: darobin (~darobin@lns-bzn-36-82-251-25-245.adsl.proxad.net) (Ping timeout: 245 seconds)
- # [13:36] * Quits: scor (~scor@drupal.org/user/52142/view) (Quit: scor)
- # [13:40] * Joins: tobie (~tobielang@73-118.195-178.cust.bluewin.ch)
- # [13:40] <annevk> Why is there no convenient way to define getters and setters within an object constructor in JavaScript?
- # [13:41] * Joins: Smylers (~smylers@92.60.180.50)
- # [13:42] <Ms2ger> { get foo() { }, set foo(v) { } }
- # [13:42] <Ms2ger> ?
- # [13:47] * Quits: accessPoint (~accessPoi@77.28.0.162) (Quit: Ex-Chat)
- # [13:47] * Quits: Smylers (~smylers@92.60.180.50) (Ping timeout: 264 seconds)
- # [13:48] * Quits: davve (~user@node-7lfb91kwq155uy7y8.a0.ipv6.opera.com) (Remote host closed the connection)
- # [13:52] * Joins: Smylers (~smylers@92.60.180.50)
- # [13:59] * Joins: yorick (~yorick@oftn/member/yorick)
- # [14:01] * Joins: davve (~user@node-7lfb91kwq155uy7y8.a0.ipv6.opera.com)
- # [14:02] * davve is now known as Guest88446
- # [14:02] * Guest88446 is now known as davve`
- # [14:02] * davve` is now known as davveo
- # [14:02] * davveo is now known as davve`
- # [14:05] * Quits: davve` (~user@node-7lfb91kwq155uy7y8.a0.ipv6.opera.com) (Remote host closed the connection)
- # [14:08] * Quits: hasather (~hasather@80.91.33.141) (Remote host closed the connection)
- # [14:09] * Joins: hasather (~hasather@80.91.33.141)
- # [14:09] * Joins: davve` (~user@node-7lfb91kwq155uy7y8.a0.ipv6.opera.com)
- # [14:09] * davve` is now known as davveo
- # [14:23] <hsivonen> Yucca is on StackOverflow http://stackoverflow.com/users/1084437/jukka-k-korpela
- # [14:23] * hsivonen was not aware
- # [14:24] * Quits: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com) (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
- # [14:24] * Joins: eminor (~eminor@p54BC572B.dip0.t-ipconnect.de)
- # [14:26] * Quits: hasather (~hasather@80.91.33.141) (Remote host closed the connection)
- # [14:26] * Joins: hasather (~hasather@80.91.33.141)
- # [14:37] * krit1 is now known as krit
- # [14:37] * Quits: malcolmva (~malcolmva@c-67-180-203-233.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [14:37] * Joins: malcolmva (~malcolmva@c-67-180-203-233.hsd1.ca.comcast.net)
- # [14:39] * Quits: Smylers (~smylers@92.60.180.50) (Ping timeout: 245 seconds)
- # [14:42] <annevk> Ms2ger: that's an object literal, constructor is more like function X(x) { this.blah = x }
- # [14:42] * Joins: francoiscote (~francoisc@192-0-230-100.cpe.teksavvy.com)
- # [14:42] <Ms2ger> Object.defineProperty, then, I guess
- # [14:42] <Ms2ger> Somewhat sucky
- # [14:44] <annevk> hsivonen: found http://unicode.org/mail-arch/unicode-ml/y2005-m11/0060.html via that, kinda want to start using ⊎1F4A9 in specifications now...
- # [14:44] <annevk> Ms2ger: right
- # [14:50] * Joins: Smylers (~smylers@92.60.180.53)
- # [14:50] * Joins: accessPoint (~accessPoi@77.28.0.162)
- # [14:51] * hsivonen makes a mental note of MULTISET UNION
- # [14:52] * Quits: zkis (~zkis@2001:998:22:0:5c7d:b947:7eaa:343e) (Ping timeout: 245 seconds)
- # [14:53] <annevk> the kind of thing to impress the manager with :p
- # [14:53] * Joins: felipeduardo (~felipedua@189.115.44.34)
- # [14:54] * Joins: accessPoint2 (~accessPoi@46.217.82.119)
- # [14:56] <annevk> https://github.com/google/gumbo-parser#readme why is perf a non-goal?
- # [14:57] * Quits: accessPoint (~accessPoi@77.28.0.162) (Ping timeout: 268 seconds)
- # [14:58] * Joins: suderman (~suderman@S0106f0d1a90c0cf5.cg.shawcable.net)
- # [15:00] <hsivonen> Must. look. away. from. the. StackOverflow. utf-16. tag.
- # [15:01] <hsivonen> also, tags surrogate-pair and utf-32
- # [15:02] * Quits: zcorpan (~zcorpan@94.234.170.190) (Remote host closed the connection)
- # [15:02] <hsivonen> so much opportunity for 386
- # [15:02] <annevk> they're empty for me
- # [15:03] <hsivonen> good for you
- # [15:04] <annevk> hah
- # [15:10] * Quits: Smylers (~smylers@92.60.180.53) (Ping timeout: 245 seconds)
- # [15:12] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 264 seconds)
- # [15:12] * Joins: decotii (~decotii@hq.croscon.com)
- # [15:12] * Quits: accessPoint2 (~accessPoi@46.217.82.119) (Quit: Ex-Chat)
- # [15:13] <annevk> It seems I keep rediscovering I need Object.defineProperties and I keep hating it
- # [15:14] <jgraham> annevk: Presumably because it makes it easier to finish the project if your goal is "correctness" rather than "correctness and perf"
- # [15:15] <jgraham> (you might choose to do things that are non-optimal from a perf point of view to handle very deeply nested documents, for example)
- # [15:15] * Joins: emin0r (~eminor@p54BC5D5C.dip0.t-ipconnect.de)
- # [15:18] * Joins: Smylers (~smylers@92.60.180.50)
- # [15:18] * Quits: eminor (~eminor@p54BC572B.dip0.t-ipconnect.de) (Ping timeout: 245 seconds)
- # [15:22] <hsivonen> 1.1 > 1.0 and 2000 > "": https://bugzilla.mozilla.org/show_bug.cgi?id=233154#c21
- # [15:23] * Joins: mpt (~mpt@canonical/mpt)
- # [15:25] <annevk> hsivonen: in his duplicate "Severity: normal → blocker"
- # [15:26] * Ms2ger tends to ignore such comments
- # [15:27] <annevk> I kinda feel like posting: "Dude, XML 1.1 is not well established. It was a compromise for IBM mainframes and later thought of as unnecessary. Just ask the W3C XML Core WG."
- # [15:27] <Ms2ger> Do you think that would help?
- # [15:28] <annevk> maybe?
- # [15:28] <darobin_> help who being the question
- # [15:28] * darobin_ is now known as darobin
- # [15:28] <jgraham> I presume annevk would be labelled as "disturbed"
- # [15:29] <annevk> jgraham: that doesn't seem entirely without reason
- # [15:31] <jgraham> I wonder how long before we need to support for HTTP/2 or SPDY for testing
- # [15:32] <annevk> is there an FTP server yet which we can fiddle with?
- # [15:33] <annevk> that's one legacy protocol that has browser support to some extent but is not very well tested in conjunction with other stuff
- # [15:33] <jgraham> I know chrome has one somewhere in the repo.
- # [15:34] * Quits: fgh (~fgh@bb121-6-13-69.singnet.com.sg) (Ping timeout: 264 seconds)
- # [15:37] * Joins: TallTed (~Thud@63.119.36.36)
- # [15:39] * Quits: Smylers (~smylers@92.60.180.50) (Quit: Leaving.)
- # [15:41] * Joins: danielfilho|w (~danielfil@186.231.66.34)
- # [15:44] * Joins: accessPoint (~accessPoi@46.217.82.119)
- # [15:44] * Quits: accessPoint (~accessPoi@46.217.82.119) (Changing host)
- # [15:44] * Joins: accessPoint (~accessPoi@unaffiliated/t3oss)
- # [15:46] * Joins: accessPoint2 (~accessPoi@46.217.82.119)
- # [15:47] * Joins: fgh (~fgh@bb121-6-13-69.singnet.com.sg)
- # [15:48] * Parts: accessPoint2 (~accessPoi@46.217.82.119)
- # [15:48] * Quits: charl (~charl@2001:67c:2564:524:92b1:1cff:fe89:ae5) (Quit: leaving)
- # [15:51] * Quits: accessPoint (~accessPoi@unaffiliated/t3oss) (Quit: Ex-Chat)
- # [15:52] * Joins: klaaspieter (~klaaspiet@160.79.7.115)
- # [15:53] <GPHemsley> Hixie: Your e-mail client tags your messages as en-GB-hixie instead of en-GB-x-hixie
- # [15:54] <GPHemsley> What's the best way to filter mail from a mailing list?
- # [15:55] <GPHemsley> (e.g. the whatwg one)
- # [15:55] <annevk> Gmail
- # [15:57] <GPHemsley> I was looking more for an answer that contained an e-mail header
- # [15:59] <Ms2ger> There's one, no?
- # [16:00] <annevk> List-Id: Public mailing list for the WHAT working group <whatwg-whatwg.org> ?
- # [16:00] <annevk> just look at a random message
- # [16:00] <jgraham> GPHemsley: To or CC?
- # [16:01] * GPHemsley was hoping for an answer from someone who had already done it
- # [16:01] * Joins: eresair (~eresair@c-71-198-63-116.hsd1.ca.comcast.net)
- # [16:02] <jgraham> Well I use filter on To or CC in Thunderbird
- # [16:03] <jgraham> So I have done it and gave you the answer that I use
- # [16:03] <jgraham> Of course I can't prove that it's the "best" way to do it
- # [16:04] <annevk> I gave you the answer Gmail uses...
- # [16:04] * Joins: jreading (~Adium@204.56.125.50)
- # [16:04] <annevk> (Or well, I'm pretty sure they use that... Plus some other magic I guess.)
- # [16:08] <GPHemsley> alright, thanks
- # [16:14] * Joins: ehsan (~ehsan@66.207.208.102)
- # [16:23] * Joins: ball999 (~accessPoi@46.217.82.119)
- # [16:23] * Parts: ball999 (~accessPoi@46.217.82.119)
- # [16:36] * Joins: Smylers (~smylers@92.60.180.50)
- # [16:39] <annevk> Landed the URL work... That feels better, it being all on GH now. Now testharness.js integration I suppose.
- # [16:43] <jgraham> URL?
- # [16:45] * Joins: [[zzz]] (~q@node-6jr.pool-125-25.dynamic.totbb.net)
- # [16:47] * Quits: [[zz]] (~q@node-1ar1.pool-101-109.dynamic.totbb.net) (Ping timeout: 268 seconds)
- # [16:48] * Joins: reyre_ (~reyre@CPE7cb21b1e2cf4-CM7cb21b1e2cf1.cpe.net.cable.rogers.com)
- # [16:51] * Quits: reyre (~reyre@CPE7cb21b1e2cf4-CM7cb21b1e2cf1.cpe.net.cable.rogers.com) (Ping timeout: 256 seconds)
- # [16:54] * Joins: jdaggett_ (~jdaggett@y230006.dynamic.ppp.asahi-net.or.jp)
- # [16:54] <annevk> https://github.com/annevk/url/
- # [16:55] <annevk> I guess at this point I should also rename the polyfill from URL to jURL
- # [16:56] * reyre_ is now known as reyre
- # [17:00] <zewt> heh another bug i reported to firefox countless years ago suddenly closed as "worksforme", even though it still happens identically
- # [17:00] <zewt> the "ignore tickets for years then close it for a bogus reason, hoping the reporter isn't paying attention any more" strategy
- # [17:00] <hsivonen> zewt: URL?
- # [17:01] <zewt> https://bugzilla.mozilla.org/show_bug.cgi?id=518012
- # [17:03] <hsivonen> zewt: comment 3 is not cool. Sorry about that.
- # [17:03] <zewt> i mean, closing it with "wontfix: we're okay with this behavior" then sure, but that's not what happened
- # [17:03] <hsivonen> I'm always annoyed then the Ubuntu folks do this to me over at Launchpad
- # [17:04] <hsivonen> I don't really report Ubuntu bugs anymore
- # [17:07] <hsivonen> I like it how Hallvord investigates open evang bugs even if they were opened in 2004
- # [17:07] <zewt> same with debian, though it's probably hard to generalize there (since reporting a bug to debian will go to one of probably thousands of people at this point)
- # [17:08] <zewt> (usually with packages I'll just go to upstream, though)
- # [17:08] * Quits: hasather (~hasather@80.91.33.141) (Remote host closed the connection)
- # [17:09] <jgraham> I guess it is mildly better than the "your bug got closed by a bot because we didn't even look at it" thing
- # [17:09] <jgraham> But yeah, that wasn't the right response
- # [17:10] <zewt> i've had the "go repro this bug and reply or we'll auto-close this ticket" bot thing, which was the start of my giving up on FF bugs
- # [17:11] <jgraham> Firefox does that too? I thought it was a Google thing
- # [17:11] <zewt> ("we've ignored this for too long, so we need you to do more work to allow us to continue ignoring it")
- # [17:11] * Parts: jreading (~Adium@204.56.125.50)
- # [17:11] <zewt> i thought it was a firefox one, though it was a long time ago now, maybe it was stopped?
- # [17:11] <hsivonen> jgraham: depends on module
- # [17:11] <Ms2ger> There's some people who do that
- # [17:11] * Quits: eresair (~eresair@c-71-198-63-116.hsd1.ca.comcast.net) (Quit: rufiooooo)
- # [17:12] <Domenic_> annevk: sweet, if the polyfill is mature maybe we can integrate it into Node in some form to fix a few of their URL-parsing bugs.
- # [17:12] <jgraham> Oh, that's sad
- # [17:13] * Quits: Smylers (~smylers@92.60.180.50) (Ping timeout: 268 seconds)
- # [17:13] * Joins: scor (~scor@c-24-61-11-63.hsd1.ma.comcast.net)
- # [17:13] * Quits: scor (~scor@c-24-61-11-63.hsd1.ma.comcast.net) (Changing host)
- # [17:13] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [17:14] <svl> Happened twice, afair; though lots of module owners opted out of it for their modules
- # [17:14] * Joins: Smylers (~smylers@92.60.180.50)
- # [17:14] <zewt> i mean, i sort of understand the problem, when it's a major product receiving more tickets than they can handle (bug numbers in the 700000s are no joke), but...
- # [17:14] <Ms2ger> 900000s
- # [17:15] <zewt> but if they can't handle it, that's just another thing discouraging reporting
- # [17:15] <zewt> (i don't know firefox development, so I don't actually know if that's a major factor)
- # [17:15] * Joins: jernoble_ (~jernoble@76.74.153.41)
- # [17:16] <svl> Anything rendering-related tends to be fine; it's mostly just UI bugs which overwhelm the capacity of triagers
- # [17:16] <zewt> yeah i suppose it'll be very different based on component
- # [17:16] <Ms2ger> Once you get into Core, you're probably fine
- # [17:16] <hsivonen> svl: also anything rendering related filed under Firefox rather than Core
- # [17:16] <jgraham> Mass cleanups sometimes seem less problematic than auto-closing all bugs that haven't been touched for a few months. But still not ideal for real bugs
- # [17:17] <svl> yeah, true
- # [17:17] <Ms2ger> Most engineers seem to not like mass cleanups, in my experience
- # [17:17] <hsivonen> I find non-Core bugs pretty frustrating, too, and am somewhat discouraged from filing them
- # [17:17] <Ms2ger> But they also can't do all the triage while still doing their own job
- # [17:18] * Quits: scor (~scor@drupal.org/user/52142/view) (Client Quit)
- # [17:21] * Joins: blooberry (~blooberry@134.134.137.75)
- # [17:21] <zewt> oh, the one I'm thinking of was a "repro this or it'll close automatically", but doesn't appear to be a bot
- # [17:23] <zewt> and it was a case where I'd spent a fairly long time digging in trying to find a performance regression (439268)
- # [17:23] <zewt> oh well, i'll stop bitching now
- # [17:24] * Quits: suderman (~suderman@S0106f0d1a90c0cf5.cg.shawcable.net) (Ping timeout: 240 seconds)
- # [17:24] * Joins: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com)
- # [17:27] * Joins: scor (~scor@155.52.208.83)
- # [17:27] * Quits: scor (~scor@155.52.208.83) (Changing host)
- # [17:27] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [17:29] * Quits: scor (~scor@drupal.org/user/52142/view) (Client Quit)
- # [17:29] * Quits: reyre (~reyre@CPE7cb21b1e2cf4-CM7cb21b1e2cf1.cpe.net.cable.rogers.com) (Remote host closed the connection)
- # [17:30] * Joins: reyre (~reyre@CPE7cb21b1e2cf4-CM7cb21b1e2cf1.cpe.net.cable.rogers.com)
- # [17:30] * Quits: enr_ (~enr@static-88.131.87.100.addr.tdcsong.se) (Remote host closed the connection)
- # [17:31] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [17:31] * Joins: scor (~scor@155.52.208.83)
- # [17:31] * Quits: scor (~scor@155.52.208.83) (Changing host)
- # [17:31] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [17:33] * Quits: Lachy (~Lachy@213.166.174.2) (Quit: Computer has gone to sleep.)
- # [17:35] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Ping timeout: 256 seconds)
- # [17:39] * Joins: nimbu (~nimbu@192.150.10.210)
- # [17:42] <annevk> Domenic_: the main thing that's lacking I just remembered is IDNA support
- # [17:43] <annevk> Domenic_: I think matjas might have something for that to some extent, but it needs more specification work
- # [17:43] <annevk> (and integration into jURL)
- # [17:43] <Domenic_> annevk: https://github.com/joyent/node/blob/master/lib/url.js#L252-L265
- # [17:44] <Domenic_> annevk: uses matjas
- # [17:44] <Domenic_> 's URL thing
- # [17:44] <Domenic_> punycode thing, rather
- # [17:45] <annevk> Domenic_: it seems to not just matjas' splitting function
- # [17:45] <annevk> Domenic_: splitting on "." to get domain labels is a bug
- # [17:45] <annevk> there's four different type of dots
- # [17:45] <annevk> but I guess that's not the only bug in that library
- # [17:51] * Quits: Smylers (~smylers@92.60.180.50) (Quit: Leaving.)
- # [17:52] * Quits: DELETE_MONGO_DB (~encryptd_@71-89-74-12.dhcp.bycy.mi.charter.com) (Remote host closed the connection)
- # [17:52] <matjas> Domenic_: afaict, replacing these lines https://github.com/joyent/node/blob/d2b80b8a60bf1e966a4091e62bb603fb825a6ada/lib/url.js#L257-L264 with `this.hostname = punycode.toASCII(this.hostname);` would do the trick
- # [17:53] <Domenic_> matjas: nice. hopefully annevk can use that in jURL and then we can just shove jURL into node
- # [17:54] <annevk> not quite, IDNA is more complicated :/
- # [17:54] * Quits: cabanier (~cabanier@c-98-237-137-173.hsd1.wa.comcast.net) (Quit: Leaving.)
- # [17:54] * Joins: alecf (alecf@nat/google/x-kmnsmffbubplktat)
- # [17:55] <annevk> zewt: I found that if I don't want quality bug reports to go to waste I have to cc someone relevant
- # [17:55] <annevk> zewt: not ideal, but not too bad either
- # [17:56] <Ms2ger> annevk, or get them into the right component :)
- # [17:56] * Joins: dbaron (~dbaron@173-228-85-238.dsl.dynamic.sonic.net)
- # [18:00] <JonathanNeal> "feminist restaurant chain hooters"
- # [18:01] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [18:02] <JonathanNeal> "richard dawkin's evangelical bible study"
- # [18:04] * Joins: cabanier (~cabanier@192.150.22.55)
- # [18:05] <JonathanNeal> "0 day torrent seeder recording industry association of america"
- # [18:05] <Ms2ger> Hmm?
- # [18:06] <JonathanNeal> bustle
- # [18:06] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Read error: Operation timed out)
- # [18:07] * Joins: frozenice (~frozenice@unaffiliated/fr0zenice)
- # [18:07] * Quits: stalled (~stalled@unaffiliated/stalled) (Read error: Connection reset by peer)
- # [18:14] * Joins: Maurice (copyman@5ED57922.cm-7-6b.dynamic.ziggo.nl)
- # [18:15] <jgraham> I think JonathanNeal left his sense of logic at the door
- # [18:15] * Quits: jernoble_ (~jernoble@76.74.153.41) (Quit: Computer has gone to sleep.)
- # [18:15] * Quits: nimbu (~nimbu@192.150.10.210) (Quit: Leaving.)
- # [18:15] * Joins: ap (~ap@2620:149:4:1b01:f08e:e7fb:a2d0:dfa2)
- # [18:15] <JonathanNeal> jgraham: the headline on bustle was "feminist restaurant chain hooters".
- # [18:17] * Joins: sicking (~sicking@v-1045.fw1.sfo1.mozilla.net)
- # [18:17] * Joins: stalled (~stalled@unaffiliated/stalled)
- # [18:18] <JonathanNeal> Oh, but I thought I was talking in another channel. Ohhwwwwwhhhoooooops.
- # [18:18] * Quits: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com) (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
- # [18:19] * Quits: sicking (~sicking@v-1045.fw1.sfo1.mozilla.net) (Client Quit)
- # [18:21] * Joins: sicking (~sicking@v-1045.fw1.sfo1.mozilla.net)
- # [18:21] * Quits: benbarnett (~Adium@195.81.245.98) (Quit: Leaving.)
- # [18:22] * Joins: karbassi (~karbassi@li62-206.members.linode.com)
- # [18:26] * Joins: nimbu (~nimbu@192.150.10.205)
- # [18:26] * Quits: jim0thy_ (~jim0thy_@212.113.198.34) (Quit: jim0thy_)
- # [18:27] * Joins: kevinmarks (~yaaic@c-71-204-145-244.hsd1.ca.comcast.net)
- # [18:34] * Joins: rmichnik (~quassel@177.135.228.218)
- # [18:34] * Joins: jim0thy_ (~jim0thy_@212.113.198.34)
- # [18:37] * Quits: klaaspieter (~klaaspiet@160.79.7.115) (Quit: klaaspieter)
- # [18:38] * Joins: cwilso (uid10206@gateway/web/irccloud.com/x-htplxvcaadxvzhxz)
- # [18:39] * Quits: mitemitreski (~mitemitre@212.120.17.179) (Ping timeout: 268 seconds)
- # [18:41] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com) (Ping timeout: 268 seconds)
- # [18:44] * Joins: mitemitreski (~mitemitre@212.120.17.179)
- # [18:45] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com)
- # [18:45] * Joins: nimbu1 (~nimbu@192.150.10.205)
- # [18:45] * Joins: annevk_ (~annevk@207.218.72.65)
- # [18:46] * Quits: fgh (~fgh@bb121-6-13-69.singnet.com.sg) (Read error: Connection reset by peer)
- # [18:46] * Quits: ImBcmDth (~Jon@oftn/member/ImBcmDth) (Read error: No buffer space available)
- # [18:47] * Joins: fgh (~fgh@bb121-6-13-69.singnet.com.sg)
- # [18:48] * Quits: scor (~scor@drupal.org/user/52142/view) (Quit: scor)
- # [18:48] * Quits: jim0thy_ (~jim0thy_@212.113.198.34) (Quit: jim0thy_)
- # [18:48] * Joins: ImBcmDth (~Jon@oftn/member/ImBcmDth)
- # [18:48] * Quits: nimbu (~nimbu@192.150.10.205) (Ping timeout: 264 seconds)
- # [18:48] * Quits: annevk (~annevk@207.218.72.65) (Ping timeout: 263 seconds)
- # [18:49] * Quits: rmichnik (~quassel@177.135.228.218) (Read error: No buffer space available)
- # [18:49] * Quits: ImBcmDth (~Jon@oftn/member/ImBcmDth) (Disconnected by services)
- # [18:49] * Joins: ImBcmDth (~Jon@oftn/member/ImBcmDth)
- # [18:49] * Joins: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net)
- # [18:50] * Joins: rmichnik (~quassel@177.135.228.218)
- # [18:50] * Joins: ball999 (~accessPoi@46.217.81.96)
- # [18:52] * Joins: KevinMarks2 (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net)
- # [18:52] * Quits: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net) (Client Quit)
- # [18:54] <annevk_> Oops, accidentally relied on Number.parseInt to work
- # [18:55] * annevk_ is now known as annevk
- # [18:56] * Joins: klaaspieter (~klaaspiet@160.79.7.115)
- # [18:56] * Joins: ball999_ (~accessPoi@77.29.84.126)
- # [18:57] * Quits: ball999 (~accessPoi@46.217.81.96) (Ping timeout: 240 seconds)
- # [18:59] <TabAtkins> One of the classic blunders!
- # [18:59] * Quits: darobin (~darobin@lns-bzn-52-82-65-121-60.adsl.proxad.net) (Remote host closed the connection)
- # [19:00] <TabAtkins> Fun times: try and predict what [10, 10, 10, 10].map(parseInt) will return.
- # [19:00] * Quits: rmichnik (~quassel@177.135.228.218) (Ping timeout: 276 seconds)
- # [19:02] <Ms2ger> I guessed something like what it does
- # [19:02] * Joins: rmichnik (~quassel@177.135.228.218)
- # [19:05] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [19:06] <jgraham> I know this! (fwiw I think you could also argue that the surprise is a problem with map providing multiple arguments)
- # [19:08] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Read error: Operation timed out)
- # [19:09] <annevk> TabAtkins: it works in Gecko, broke down in Chrome
- # [19:09] <annevk> I think it's new in ES6 to have it exposed there, but I don't really know the rationale
- # [19:09] <TabAtkins> jgraham: Yes, that's the surprise.
- # [19:09] <annevk> Maybe new global objects won't expose it or some such?
- # [19:14] * Quits: tobie (~tobielang@73-118.195-178.cust.bluewin.ch) (Quit: tobie)
- # [19:14] <jgraham> TabAtkins: I sort of thought people thought it was a problem with parseInt
- # [19:14] <jgraham> But maybe I am wrong
- # [19:15] <TabAtkins> jgraham: No, the base argument to parseInt is a good thing. The bad was the pre-ES5 behavior of magically intuiting octal if the base is unspecified and the string starts with "0".
- # [19:15] * Quits: mitemitreski (~mitemitre@212.120.17.179) (Read error: Connection reset by peer)
- # [19:15] <TabAtkins> It's also weird that setting base to 1 produces NaN, but setting it to 0 just ignores the base.
- # [19:17] * Joins: scor (~scor@132.183.243.59)
- # [19:17] * Quits: scor (~scor@132.183.243.59) (Changing host)
- # [19:17] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [19:18] * Joins: weinig (~weinig@17.114.107.175)
- # [19:19] * Quits: danielfilho|w (~danielfil@186.231.66.34) (Ping timeout: 245 seconds)
- # [19:21] * Joins: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com)
- # [19:24] * Quits: ball999_ (~accessPoi@77.29.84.126) (Ping timeout: 240 seconds)
- # [19:26] * Joins: sandorjanssen (~sandorjan@541ECDF3.cm-5-7d.dynamic.ziggo.nl)
- # [19:26] * Joins: ball999_ (~accessPoi@77.29.84.126)
- # [19:34] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com) (Ping timeout: 256 seconds)
- # [19:37] * Joins: Lachy (~Lachy@cm-84.215.104.248.getinternet.no)
- # [19:40] <gsnedders> jgraham, annevk, hsivonen: was html5lib or validator.nu's parser first?
- # [19:41] <annevk> gsnedders: I think we started December 2006, looks like hsivonen might have started before that given http://hsivonen.iki.fi/thesis/html5-conformance-checker.xhtml
- # [19:41] <gsnedders> Yeah, Dec '06 was html5lib, can't find any history prior to 2007 for validator.nu's parser?
- # [19:42] <annevk> Oh, hsivonen wrote a speculative algorithm before the specification was published
- # [19:42] <annevk> "I implemented an experimental HTML parser to enable checking of text/html with XML tools. I developed the parser speculatively before the HTML5 parsing algorithm was published."
- # [19:43] <annevk> So I guess html5lib was first in terms of a parser implementing the specification
- # [19:43] <annevk> Well, not counting Hixie's Sawzall's implementations here of which we got the tests
- # [19:43] <annevk> implementation*
- # [19:44] <gsnedders> The tests were from Hixie's Sawzall's impl?
- # [19:44] <gsnedders> Oh. I thought they were written by you lot.
- # [19:45] * Quits: sicking (~sicking@v-1045.fw1.sfo1.mozilla.net) (Quit: sicking)
- # [19:47] <annevk> Not all of them, but I think the initial bunch might have been, as well as the format
- # [19:48] * Joins: hasather (~hasather@cm-84.210.170.16.getinternet.no)
- # [19:50] * Quits: nimbu1 (~nimbu@192.150.10.205) (Quit: Leaving.)
- # [19:52] * Joins: TuRnaD0 (~Thunderbi@x1-6-e0-46-9a-1e-fe-ca.k368.webspeed.dk)
- # [19:53] <gsnedders> We seem to have lost history moving from svn to hg of this :(
- # [19:55] * Quits: hasather (~hasather@cm-84.210.170.16.getinternet.no) (Remote host closed the connection)
- # [19:55] * Joins: nimbu (~nimbu@192.150.10.205)
- # [19:59] * Joins: sicking (~sicking@v-1045.fw1.sfo1.mozilla.net)
- # [20:01] * Quits: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com) (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
- # [20:02] * Joins: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net)
- # [20:02] * Quits: weinig (~weinig@17.114.107.175) (Quit: weinig)
- # [20:03] * Joins: weinig (~weinig@17.114.107.175)
- # [20:05] * Joins: scor_ (~scor@drupal.org/user/52142/view)
- # [20:06] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [20:06] * Joins: reyre_ (~reyre@CPE7cb21b1e2cf4-CM7cb21b1e2cf1.cpe.net.cable.rogers.com)
- # [20:07] * Quits: scor (~scor@drupal.org/user/52142/view) (Ping timeout: 240 seconds)
- # [20:07] * scor_ is now known as scor
- # [20:08] * Joins: charl (~charl@charl.eu)
- # [20:08] <annevk> gsnedders: I found http://www.ohloh.net/p/html5lib/commits?page=5&sort=oldest
- # [20:08] <annevk> gsnedders: in particular http://www.ohloh.net/p/html5lib/commits/254913074
- # [20:09] * annevk -> food
- # [20:09] * Quits: charl (~charl@charl.eu) (Client Quit)
- # [20:09] * Quits: reyre (~reyre@CPE7cb21b1e2cf4-CM7cb21b1e2cf1.cpe.net.cable.rogers.com) (Ping timeout: 245 seconds)
- # [20:09] * Joins: charl (~charl@charl.eu)
- # [20:09] * Quits: annevk (~annevk@207.218.72.65) (Remote host closed the connection)
- # [20:09] * reyre_ is now known as reyre
- # [20:10] * Joins: hasather (~hasather@cm-84.210.170.16.getinternet.no)
- # [20:10] * Joins: annevk (~annevk@207.218.72.65)
- # [20:10] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com)
- # [20:11] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Ping timeout: 264 seconds)
- # [20:13] * Quits: sicking (~sicking@v-1045.fw1.sfo1.mozilla.net) (Quit: sicking)
- # [20:15] * Quits: annevk (~annevk@207.218.72.65) (Ping timeout: 256 seconds)
- # [20:15] <zewt> deep fried annevk
- # [20:16] <cwilso> grilled might be more appropriate. :)
- # [20:19] * Quits: hasather (~hasather@cm-84.210.170.16.getinternet.no) (Remote host closed the connection)
- # [20:19] * Joins: hasather (~hasather@cm-84.210.170.16.getinternet.no)
- # [20:19] * Quits: stalled (~stalled@unaffiliated/stalled) (Ping timeout: 260 seconds)
- # [20:22] * Quits: weinig (~weinig@17.114.107.175) (Quit: weinig)
- # [20:24] * Quits: hasather (~hasather@cm-84.210.170.16.getinternet.no) (Ping timeout: 240 seconds)
- # [20:28] * Joins: stalled (~stalled@unaffiliated/stalled)
- # [20:29] * Joins: rniwa (~rniwa@17.245.106.220)
- # [20:29] * Quits: ball999_ (~accessPoi@77.29.84.126) (Quit: Ex-Chat)
- # [20:31] * Quits: francoiscote (~francoisc@192-0-230-100.cpe.teksavvy.com) (Ping timeout: 246 seconds)
- # [20:32] * Joins: rniwa_ (~rniwa@17.212.154.228)
- # [20:34] * Quits: rniwa (~rniwa@17.245.106.220) (Ping timeout: 268 seconds)
- # [20:34] * rniwa_ is now known as rniwa
- # [20:34] * Joins: ball999 (~accessPoi@77.29.84.126)
- # [20:34] * Quits: dbaron (~dbaron@173-228-85-238.dsl.dynamic.sonic.net) (Ping timeout: 256 seconds)
- # [20:35] * Parts: ball999 (~accessPoi@77.29.84.126)
- # [20:41] * Joins: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net)
- # [20:44] * Quits: fgh (~fgh@bb121-6-13-69.singnet.com.sg) (Quit: Leaving)
- # [20:47] * Quits: nimbu (~nimbu@192.150.10.205) (Quit: Leaving.)
- # [20:56] * Quits: TuRnaD0 (~Thunderbi@x1-6-e0-46-9a-1e-fe-ca.k368.webspeed.dk) (Quit: TuRnaD0)
- # [20:58] * Joins: rniwa_ (~rniwa@17.212.154.114)
- # [20:58] * Joins: nimbu (~nimbu@192.150.10.210)
- # [21:05] * Quits: rniwa (~rniwa@17.212.154.228) (Quit: rniwa)
- # [21:05] * rniwa_ is now known as rniwa
- # [21:06] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com) (Ping timeout: 256 seconds)
- # [21:07] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [21:11] * Quits: nimbu (~nimbu@192.150.10.210) (Quit: Leaving.)
- # [21:11] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Ping timeout: 246 seconds)
- # [21:12] <Hixie> GPHemsley: yeah, i configured it before they invented this -x- thing
- # [21:12] <GPHemsley> riiight
- # [21:13] <Ms2ger> That might well be true
- # [21:14] * Joins: jwalden (~waldo@nat/mozilla/x-uqiyvdyrdqodtjlk)
- # [21:14] * Joins: tobie (~tobielang@73-118.195-178.cust.bluewin.ch)
- # [21:15] * Joins: miketaylr (~miketaylr@65-36-73-92.dyn.grandenetworks.net)
- # [21:16] * GPHemsley is pretty sure x- has been around since the beginning
- # [21:16] <GPHemsley> but ok
- # [21:20] * Joins: weinig (~weinig@17.114.107.175)
- # [21:21] * Quits: charl (~charl@charl.eu) (Quit: leaving)
- # [21:22] * Joins: charl (~charl@charl.eu)
- # [21:25] * Quits: weinig (~weinig@17.114.107.175) (Read error: Connection reset by peer)
- # [21:27] * Quits: frozenice (~frozenice@unaffiliated/fr0zenice) (Quit: quit.)
- # [21:28] * Joins: nimbu (~nimbu@192.150.10.210)
- # [21:28] * Quits: Ms2ger (~Ms2ger@182.194-64-87.adsl-dyn.isp.belgacom.be) (Quit: nn)
- # [21:34] * Joins: _SS7 (SS7@host86-138-174-48.range86-138.btcentralplus.com)
- # [21:34] * Parts: _SS7 (SS7@host86-138-174-48.range86-138.btcentralplus.com)
- # [21:35] * Joins: _SS7 (SS7@host86-138-174-48.range86-138.btcentralplus.com)
- # [21:37] * Quits: _SS7 (SS7@host86-138-174-48.range86-138.btcentralplus.com)
- # [21:40] * Quits: Dashiva (Dashiva@wikia/Dashiva) (Read error: Connection reset by peer)
- # [21:40] * Joins: Dashiva (Dashiva@178-82-40-88.dynamic.hispeed.ch)
- # [21:40] * Quits: Dashiva (Dashiva@178-82-40-88.dynamic.hispeed.ch) (Changing host)
- # [21:40] * Joins: Dashiva (Dashiva@wikia/Dashiva)
- # [21:47] * Quits: emin0r (~eminor@p54BC5D5C.dip0.t-ipconnect.de) (Quit: emin0r)
- # [21:48] * Joins: dbaron (~dbaron@v-1045.fw1.sfo1.mozilla.net)
- # [21:51] * Joins: hasather (~hasather@cm-84.210.170.16.getinternet.no)
- # [21:54] * Quits: hasather (~hasather@cm-84.210.170.16.getinternet.no) (Remote host closed the connection)
- # [21:55] * Joins: hasather (~hasather@cm-84.210.170.16.getinternet.no)
- # [21:56] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [21:59] * Quits: hasather (~hasather@cm-84.210.170.16.getinternet.no) (Ping timeout: 268 seconds)
- # [22:01] * Quits: KevinMarks2 (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net) (Quit: The computer fell asleep)
- # [22:03] * Quits: heycam|away (~cam@wok2.mcc.id.au) (Ping timeout: 264 seconds)
- # [22:04] * Joins: KevinMarks2 (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net)
- # [22:05] * Joins: garciawebdev (~garciaweb@host111.186-124-202.telecom.net.ar)
- # [22:05] * Quits: mitsuhiko (~mitsuhiko@ubuntu/member/mitsuhiko) (Ping timeout: 276 seconds)
- # [22:07] * Joins: enr (~enr@static-88.131.87.100.addr.tdcsong.se)
- # [22:08] * Quits: charl (~charl@charl.eu) (Quit: leaving)
- # [22:08] * Joins: charl (~charl@charl.eu)
- # [22:11] * Joins: zkis (~zkis@87-93-78-83.bb.dnainternet.fi)
- # [22:12] * Quits: enr (~enr@static-88.131.87.100.addr.tdcsong.se) (Ping timeout: 256 seconds)
- # [22:15] * Quits: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net) (Quit: tantek)
- # [22:16] * Joins: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net)
- # [22:26] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com)
- # [22:26] * Joins: danielfilho|w (~danielfil@186.231.66.34)
- # [22:30] * Joins: mitsuhiko_ (~mitsuhiko@hammett.srv.pocoo.org)
- # [22:33] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com) (Ping timeout: 256 seconds)
- # [22:38] * Quits: scor (~scor@drupal.org/user/52142/view) (Quit: scor)
- # [22:44] * mitsuhiko_ is now known as mitsuhiko
- # [22:44] * Quits: mitsuhiko (~mitsuhiko@hammett.srv.pocoo.org) (Changing host)
- # [22:44] * Joins: mitsuhiko (~mitsuhiko@ubuntu/member/mitsuhiko)
- # [22:45] * Joins: Smylers (~smylers@needing.kith.volia.net)
- # [22:47] * Joins: jim0thy_ (~jim0thy_@212.113.198.34)
- # [22:48] * Joins: ap_ (~ap@17.245.108.161)
- # [22:51] * Quits: ap (~ap@2620:149:4:1b01:f08e:e7fb:a2d0:dfa2) (Ping timeout: 245 seconds)
- # [22:51] * ap_ is now known as ap
- # [22:54] * Quits: jim0thy_ (~jim0thy_@212.113.198.34) (Ping timeout: 245 seconds)
- # [22:54] * Quits: krit (~krit@192.150.10.210) (Read error: Connection reset by peer)
- # [22:57] <zewt> TabAtkins: heh, i had a bug recently due to sscanf("%i") (vs. %d) assuming octal for 0*, which caused code to break ... in August
- # [22:57] * Joins: jernoble_ (~jernoble@17.245.109.204)
- # [22:58] <zewt> pox upon whoever decided having %i and %d be the same with printf, but different with scanf
- # [22:58] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [22:59] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [22:59] * Quits: klaaspieter (~klaaspiet@160.79.7.115) (Quit: klaaspieter)
- # [23:00] * Joins: nessy (~silviapf@101.164.144.53)
- # [23:02] * Quits: jernoble_ (~jernoble@17.245.109.204) (Ping timeout: 240 seconds)
- # [23:03] * Joins: jim0thy_ (~jim0thy_@212.113.198.34)
- # [23:03] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 276 seconds)
- # [23:05] * Joins: hasather (~hasather@cm-84.210.170.16.getinternet.no)
- # [23:06] * Joins: jernoble_ (~jernoble@17.114.105.188)
- # [23:07] * Quits: jim0thy_ (~jim0thy_@212.113.198.34) (Ping timeout: 264 seconds)
- # [23:10] * Quits: hasather (~hasather@cm-84.210.170.16.getinternet.no) (Ping timeout: 256 seconds)
- # [23:10] * Joins: eresair (~eresair@c-71-198-63-116.hsd1.ca.comcast.net)
- # [23:11] * Quits: Maurice (copyman@5ED57922.cm-7-6b.dynamic.ziggo.nl)
- # [23:17] * Quits: sandorjanssen (~sandorjan@541ECDF3.cm-5-7d.dynamic.ziggo.nl) (Quit: Leaving)
- # [23:19] * Joins: sicking (~sicking@v-1045.fw1.sfo1.mozilla.net)
- # [23:19] * Quits: felipeduardo (~felipedua@189.115.44.34) (Quit: Leaving)
- # [23:20] * Quits: ap (~ap@17.245.108.161) (Quit: ap)
- # [23:21] * Quits: TallTed (~Thud@63.119.36.36)
- # [23:21] * Quits: miketaylr (~miketaylr@65-36-73-92.dyn.grandenetworks.net) (Quit: miketaylr)
- # [23:22] * Joins: ball999 (~accessPoi@77.29.84.126)
- # [23:22] * Quits: nimbu (~nimbu@192.150.10.210) (Quit: Leaving.)
- # [23:22] * Quits: zkis (~zkis@87-93-78-83.bb.dnainternet.fi) (Ping timeout: 264 seconds)
- # [23:23] * Quits: eresair (~eresair@c-71-198-63-116.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [23:23] * Quits: jernoble_ (~jernoble@17.114.105.188) (Ping timeout: 264 seconds)
- # [23:26] * Quits: jdaggett_ (~jdaggett@y230006.dynamic.ppp.asahi-net.or.jp) (Quit: jdaggett_)
- # [23:26] * Quits: tobie (~tobielang@73-118.195-178.cust.bluewin.ch) (Quit: tobie)
- # [23:29] * Joins: nimbu (~nimbu@192.150.10.210)
- # [23:30] * Quits: hober (~ted@unaffiliated/hober) (Remote host closed the connection)
- # [23:30] * Quits: zdobersek (~zdobersek@cpe-77.38.31.63.cable.t-1.si) (Quit: ZNC - http://znc.in)
- # [23:31] * Joins: hober (~ted@unaffiliated/hober)
- # [23:32] <ball999> in for loop I need boolean for second argument right? and while the boolean is true the loop will run?
- # [23:32] <ball999> ups wrong chat
- # [23:32] * Parts: ball999 (~accessPoi@77.29.84.126) ("Ex-Chat")
- # [23:32] * Joins: jernoble_ (~jernoble@17.114.105.188)
- # [23:40] * Quits: jernoble_ (~jernoble@17.114.105.188) (Quit: Computer has gone to sleep.)
- # [23:40] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [23:42] * Quits: sicking (~sicking@v-1045.fw1.sfo1.mozilla.net) (Quit: sicking)
- # [23:43] * Joins: jernoble_ (~jernoble@17.114.105.188)
- # [23:47] * Quits: jernoble_ (~jernoble@17.114.105.188) (Ping timeout: 240 seconds)
- # [23:48] * Joins: eresair (~eresair@c-71-198-63-116.hsd1.ca.comcast.net)
- # [23:50] * Joins: ap (~ap@2620:149:4:1b01:a432:2a3f:c50c:7574)
- # [23:56] * Joins: heycam|away (~cam@nextlevelau.spd.co.il)
- # [23:56] * Joins: sgalineau (~sylvaing@192.150.10.207)
- # [23:58] * Quits: [[zzz]] (~q@node-6jr.pool-125-25.dynamic.totbb.net) (Ping timeout: 264 seconds)
- # Session Close: Thu Aug 15 00:00:00 2013
The end :)