Options:
- # Session Start: Sat Jan 04 00:00:00 2014
- # Session Ident: #whatwg
- # [00:00] <Hixie_> so... where are Map and Set defined. ho dee hum.
- # [00:03] <Hixie_> what does " Subclass constructors that intend to inherit the specified Map behaviour must include a super call to Map." mean, in practice?
- # [00:03] <Hixie_> is that a real conformance criteria of some sort?
- # [00:03] <Domenic_> that if you do class X extends Map { constructor() { blah blah } }
- # [00:03] <Hixie_> (http://people.mozilla.org/~jorendorff/es6-draft.html#sec-map-constructor)
- # [00:03] <Domenic_> but blah blah doesn't include super()
- # [00:03] <Domenic_> then none of your methods will work right
- # [00:03] <Hixie_> so it's just a statement of fact, not a conformance criteria?
- # [00:04] <Domenic_> Yeah
- # [00:04] <Hixie_> i guess the JS spec doesn't mention RFC2119
- # [00:04] <Domenic_> Huh yeah
- # [00:04] <Domenic_> Never noticed that
- # [00:04] <Hixie_> that's... confusing. but ok.
- # [00:05] <Hixie_> ah, i see.
- # [00:05] * Hixie_ reads the conformance section
- # [00:05] <Hixie_> it's a CSS style spec. "conforming implementations do what the spec says"
- # [00:05] * jorendorff_away is now known as jorendorff
- # [00:05] <Hixie_> ok
- # [00:05] * Quits: Ms2ger (~Ms2ger@109.133.52.179) (Quit: nn)
- # [00:05] <jgraham> Google is right about sof btw
- # [00:06] <Hixie_> thanks
- # [00:06] * Quits: Areks (~Areks@95-24-185-250.broadband.corbina.ru) (Ping timeout: 272 seconds)
- # [00:14] * Quits: jeremyj (~jeremyj@17.212.154.237) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [00:15] * Quits: rego (~rego@99.192.27.77.dynamic.mundo-r.com) (Ping timeout: 245 seconds)
- # [00:15] * Quits: jernoble (~jernoble@17.212.152.13) (Quit: Computer has gone to sleep.)
- # [00:20] <Hixie_> lordy, the js spec's definition of Map is non-trivial to grok
- # [00:21] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [00:25] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net) (Ping timeout: 240 seconds)
- # [00:27] * Joins: jernoble (~jernoble@17.212.152.13)
- # [00:27] * Joins: jeremyj (~jeremyj@17.212.154.237)
- # [00:28] <odinho> sof is awesome
- # [00:28] * Quits: Maurice (copyman@5ED57922.cm-7-6b.dynamic.ziggo.nl)
- # [00:28] * Quits: KevinMarks (~yaaic@2607:fb90:2201:fdc3:8751:1c3e:7f60:8876) (Ping timeout: 240 seconds)
- # [00:29] <TabAtkins> Hixie_: Yeah, it is. What are you trying to grok?
- # [00:31] * Joins: KevinMarks (~yaaic@2607:fb90:2119:1979:91bc:7b42:72e8:a3ce)
- # [00:32] <Hixie_> TabAtkins: how to write teh structured clone spec for them. i think i have it, though.
- # [00:38] * Joins: bholley (~bholley@c-67-161-57-5.hsd1.ca.comcast.net)
- # [00:45] <Hixie_> ok, here's a question
- # [00:45] <Hixie_> are the keys in a Map own properties of the Map?
- # [00:46] <Domenic_> no
- # [00:46] <Domenic_> because they can be objects
- # [00:46] <Domenic_> they are not properties at all
- # [00:46] <Domenic_> they are stored in the internal [[MapData]]
- # [00:46] <Hixie_> ah ok excellent
- # [00:46] <Hixie_> that means i can copy the own properties with impunity
- # [00:48] <Hixie_> i wonder what alex thinks of Map and Set, given how they are essentially black magic that can't be explained by the platform primitives
- # [00:49] <Domenic_> How so?
- # [00:49] <Hixie_> there's no way to use an object as a value other than in these features
- # [00:49] <Hixie_> since JS has no pointers
- # [00:49] <Hixie_> or pointer analogue
- # [00:49] <Domenic_> Um
- # [00:49] <Hixie_> no?
- # [00:50] <TabAtkins> ???
- # [00:50] <TabAtkins> Really don't know what you're talking about, Hixie.
- # [00:50] <Hixie_> like, you couldn't write a polyfill that implements Map or Set without using Map or Set
- # [00:50] <Domenic_> There's a polyfill for Map on MDN I believe
- # [00:50] <TabAtkins> Yes you can. It doesn't have the same performance characteristics, though.
- # [00:50] <TabAtkins> (Linear time gets rather than constant time.)
- # [00:50] <Hixie_> if it's not the same perf characteristics, it's not compliant :-)
- # [00:50] <Domenic_> You can do constant time gets using trickery
- # [00:51] <TabAtkins> Domenic_: Really?
- # [00:51] <Domenic_> TabAtkins: yeah, the old "put a hidden property on it" trick.
- # [00:51] <Domenic_> where you override Object.getOwnPropertyNames etc. to not show that property
- # [00:51] <Domenic_> Doesn't really count though
- # [00:52] <TabAtkins> I don't understand how it would work.
- # [00:52] <TabAtkins> With an arbitrary object key.
- # [00:52] <Domenic_> You put a property on that key
- # [00:52] <Hixie_> Domenic_: interesting idea
- # [00:52] <TabAtkins> Oh!
- # [00:52] <TabAtkins> Tag the object with a ref to the map.
- # [00:52] <TabAtkins> Or a ref to the value.
- # [00:52] <Hixie_> or just an ID
- # [00:52] * Quits: willob (~willob@173-166-99-161-newengland.hfc.comcastbusiness.net) (Ping timeout: 252 seconds)
- # [00:53] <Hixie_> that you can then use as a key
- # [00:53] <TabAtkins> Hixie_: Yeah, you can gensym a key for it.
- # [00:53] <TabAtkins> Attaching the value to the key directly gives you the GC characteristics you want, I think.
- # [00:53] <Hixie_> anyway, seems weird that we'd be adding these somewhat elaborate features, rather than just features that would let you implement them simply enough
- # [00:54] * Joins: shannonmoeller (~shannonmo@pool-108-17-8-225.bflony.fios.verizon.net)
- # [00:54] <Hixie_> if we had some sort of reference type, a pointer analogue, that could stringify, etc, it seems like it would make all this less magic
- # [00:54] <TabAtkins> Note that Extensible Web is never about "rather than". We want the primitives, but we *also* want the sugar. Relying on libraries to do all the sugaring is a failure mode to the economics of the network.
- # [00:54] <TabAtkins> But yes, there's a hidden primitive in Map.
- # [00:55] * Quits: shannonmoeller (~shannonmo@pool-108-17-8-225.bflony.fios.verizon.net) (Remote host closed the connection)
- # [00:57] <Hixie_> ...why does Set's spec mark an entry as "empty" rather than actually deleting it?
- # [00:58] <TabAtkins> Dunno.
- # [00:59] <Domenic_> I am not sure there is a concept of deleting things from spec-Lists...
- # [00:59] <Domenic_> Also maybe to emphasize how bad the algorithm is and how you really should go for observably-equivalent but smarter behavior
- # [01:00] <Hixie_> there isn't a concept of appending things from the JS's spec's Lists either, but we do that...
- # [01:01] <Hixie_> (speaking of which, the JS spec really should be less vague about its definition of the "array-like syntax" for Lists and the "object literal-like syntax" for Records, if it's going to use them normatively all over the place)
- # [01:03] <Domenic_> Oh weird I've never seen the array-like access for lists
- # [01:05] * Joins: shannonmoeller (~shannonmo@pool-108-17-8-225.bflony.fios.verizon.net)
- # [01:05] <Hixie_> http://html5.org/tools/web-apps-tracker?from=8373&to=8374
- # [01:05] <Hixie_> ^ Map and Set cloning
- # [01:06] * Joins: boogyman (~boogyman@pdpc/supporter/professional/boogyman)
- # [01:06] <Domenic_> niiiice
- # [01:07] * Joins: marcosc (~marcosc@101.165.85.63)
- # [01:08] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [01:11] * Quits: shannonmoeller (~shannonmo@pool-108-17-8-225.bflony.fios.verizon.net) (Remote host closed the connection)
- # [01:13] * jorendorff is now known as jorendorff_away
- # [01:13] * Quits: lmclister (~lmclister@sjfw1-b.adobe.com)
- # [01:15] * Quits: bholley (~bholley@c-67-161-57-5.hsd1.ca.comcast.net) (Quit: bholley)
- # [01:18] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [01:19] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [01:19] * Quits: seventh (seventh@209.99.3.70) (Ping timeout: 245 seconds)
- # [01:20] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [01:21] * Joins: 5EXAACSG9 (~karbassi@li62-206.members.linode.com)
- # [01:21] * Quits: marcosc (~marcosc@101.165.85.63) (Ping timeout: 256 seconds)
- # [01:21] * Quits: ehsan (~ehsan@66.207.208.102) (Remote host closed the connection)
- # [01:22] * Joins: ehsan (~ehsan@66.207.208.102)
- # [01:25] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [01:26] * Quits: ehsan (~ehsan@66.207.208.102) (Ping timeout: 272 seconds)
- # [01:27] * Quits: werle (~Adium@cpe-74-71-241-147.nyc.res.rr.com) (Quit: Leaving.)
- # [01:28] * Joins: marcosc (~marcosc@101.165.85.63)
- # [01:28] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [01:32] * Joins: werle (~Adium@cpe-74-71-241-147.nyc.res.rr.com)
- # [01:33] * Joins: pluma (~pluma@cable-78-35-101-81.netcologne.de)
- # [01:36] * Quits: 5EXAACSG9 (~karbassi@li62-206.members.linode.com) (Remote host closed the connection)
- # [01:36] * Joins: karbassi (~karbassi@li62-206.members.linode.com)
- # [01:38] <TabAtkins> zcorpan: Your email address in CSSOM has a typo. The visible address is right, but the mailto link has an extra "p" in it.
- # [01:38] <TabAtkins> zcorpan: I'd fix, but it requires a local Anolis install, and I don't wanna do that.
- # [01:38] <TabAtkins> zcorpan: Also: get your spec on Bikeshed already. ^_^
- # [01:43] * Quits: karbassi (~karbassi@li62-206.members.linode.com) (Remote host closed the connection)
- # [01:44] * Joins: karbassi_ (~karbassi@li62-206.members.linode.com)
- # [01:46] * Joins: shannonmoeller (~shannonmo@pool-108-17-8-225.bflony.fios.verizon.net)
- # [01:52] * Joins: marcosc_ (~marcosc@101.165.85.63)
- # [01:52] * Quits: marcosc (~marcosc@101.165.85.63) (Read error: Connection reset by peer)
- # [01:53] * Quits: shannonmoeller (~shannonmo@pool-108-17-8-225.bflony.fios.verizon.net) (Remote host closed the connection)
- # [01:58] * Quits: ap (~ap@2620:149:4:304:dc1d:270a:50d4:6172) (Quit: ap)
- # [02:02] * Quits: karbassi_ (~karbassi@li62-206.members.linode.com) (Remote host closed the connection)
- # [02:07] * Quits: jernoble (~jernoble@17.212.152.13) (Quit: Computer has gone to sleep.)
- # [02:08] * Joins: aiglesias (~aiglesias@92-195-17-190.fibertel.com.ar)
- # [02:09] * Quits: marcosc_ (~marcosc@101.165.85.63) (Remote host closed the connection)
- # [02:09] * Quits: dbaron (~dbaron@corp-nat.p2p.sfo1.mozilla.com) (Ping timeout: 252 seconds)
- # [02:35] * Joins: karbassi_ (~karbassi@li62-206.members.linode.com)
- # [02:35] * Quits: karbassi_ (~karbassi@li62-206.members.linode.com) (Remote host closed the connection)
- # [02:35] * Joins: karbassi_ (~karbassi@li62-206.members.linode.com)
- # [02:36] * Quits: tantek (~tantek@corp-nat.p2p.sfo1.mozilla.com) (Quit: tantek)
- # [02:36] * Quits: aiglesias (~aiglesias@92-195-17-190.fibertel.com.ar) (Remote host closed the connection)
- # [02:37] * Joins: malaclyps (~Danny@173-228-80-237.dsl.static.sonic.net)
- # [02:37] * Quits: malaclyps (~Danny@173-228-80-237.dsl.static.sonic.net) (Changing host)
- # [02:37] * Joins: malaclyps (~Danny@unaffiliated/malaclyps)
- # [02:37] * Quits: karbassi_ (~karbassi@li62-206.members.linode.com) (Remote host closed the connection)
- # [02:39] * Quits: espadrine (~Thunderbi@AMontsouris-158-1-24-149.w92-128.abo.wanadoo.fr) (Ping timeout: 245 seconds)
- # [02:40] * Joins: espadrine (~Thunderbi@AMontsouris-158-1-21-64.w92-128.abo.wanadoo.fr)
- # [02:43] * Joins: tantek (~tantek@172.56.17.154)
- # [02:47] * Quits: tantek (~tantek@172.56.17.154) (Client Quit)
- # [02:47] * Quits: jwalden (~waldo@adsl-99-135-169-171.dsl.emhril.sbcglobal.net) (Quit: Reconnecting…)
- # [02:47] * Joins: jwalden (~waldo@adsl-99-135-169-171.dsl.emhril.sbcglobal.net)
- # [03:00] * Quits: jwalden (~waldo@adsl-99-135-169-171.dsl.emhril.sbcglobal.net) (Quit: ChatZilla 0.9.87-7.1450hg.fc19 [XULRunner 26.0/20131209183133])
- # [03:01] * Joins: dbaron (~dbaron@173-228-85-52.dsl.dynamic.sonic.net)
- # [03:12] * Quits: smaug____ (~chatzilla@cs78246079.pp.htv.fi) (Read error: Operation timed out)
- # [03:21] * Quits: espadrine (~Thunderbi@AMontsouris-158-1-21-64.w92-128.abo.wanadoo.fr) (Ping timeout: 245 seconds)
- # [03:30] * Quits: ambv (~ambv@206.108.217.134) (Quit: sys.exit(0) # computer went to sleep)
- # [03:31] * Quits: jorgepedret (~jorgepedr@64-46-23-103.dyn.novuscom.net) (Quit: Computer has gone to sleep.)
- # [03:32] * Joins: shannonmoeller (~shannonmo@pool-108-17-8-225.bflony.fios.verizon.net)
- # [03:34] * Joins: karbassi_ (~karbassi@li62-206.members.linode.com)
- # [03:39] * Joins: Goplat (~goplat@reactos/developer/Goplat)
- # [03:39] * Quits: aklein (sid4454@gateway/web/irccloud.com/x-fwkknmrjbwqmjgli)
- # [03:43] * Quits: werle (~Adium@cpe-74-71-241-147.nyc.res.rr.com) (Quit: Leaving.)
- # [03:46] * Quits: karbassi_ (~karbassi@li62-206.members.linode.com) (Remote host closed the connection)
- # [03:47] * Joins: clamstar (~textual@cpe-67-247-7-62.nyc.res.rr.com)
- # [04:03] * Quits: shannonmoeller (~shannonmo@pool-108-17-8-225.bflony.fios.verizon.net) (Remote host closed the connection)
- # [04:09] * Joins: shannonmoeller (~shannonmo@pool-108-17-8-225.bflony.fios.verizon.net)
- # [04:11] * Quits: clamstar (~textual@cpe-67-247-7-62.nyc.res.rr.com) (Quit: Computer has gone to sleep.)
- # [04:12] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [04:12] * Quits: dbaron (~dbaron@173-228-85-52.dsl.dynamic.sonic.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [04:13] * pluma is now known as pluma|Zzz
- # [04:16] * Quits: KevinMarks (~yaaic@2607:fb90:2119:1979:91bc:7b42:72e8:a3ce) (Ping timeout: 240 seconds)
- # [04:18] * Joins: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net)
- # [04:19] * Quits: weinig (~weinig@17.114.216.117) (Quit: weinig)
- # [04:19] * Joins: luanmuniz (uid15913@gateway/web/irccloud.com/x-vflpzyjiuickuxyq)
- # [04:22] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [04:22] * Joins: ehsan (~ehsan@24-212-206-174.cable.teksavvy.com)
- # [04:35] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [04:37] * Joins: karbassi_ (~karbassi@li62-206.members.linode.com)
- # [04:41] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [04:47] * Quits: karbassi_ (~karbassi@li62-206.members.linode.com) (Remote host closed the connection)
- # [04:49] * Joins: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net)
- # [04:52] * Joins: weinig (~weinig@24.130.60.35)
- # [04:55] * Quits: shannonmoeller (~shannonmo@pool-108-17-8-225.bflony.fios.verizon.net) (Quit: Leaving...)
- # [04:57] * Quits: edsu (~edsu@pdpc/supporter/active/edsu) (Ping timeout: 252 seconds)
- # [04:58] * Joins: edsu (~edsu@li144-162.members.linode.com)
- # [04:58] * Quits: edsu (~edsu@li144-162.members.linode.com) (Changing host)
- # [04:58] * Joins: edsu (~edsu@pdpc/supporter/active/edsu)
- # [04:59] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [05:05] * Quits: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net) (Quit: Computer has gone to sleep.)
- # [05:06] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [05:07] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net)
- # [05:07] * Joins: clamstar (~textual@cpe-67-247-7-62.nyc.res.rr.com)
- # [05:08] * Joins: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net)
- # [05:09] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [05:15] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [05:16] * Quits: malaclyps (~Danny@unaffiliated/malaclyps) (Ping timeout: 245 seconds)
- # [05:18] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [05:29] * Quits: jeremyj (~jeremyj@17.212.154.237) (Ping timeout: 272 seconds)
- # [05:39] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [05:45] * Joins: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net)
- # [05:47] * Joins: a-ja (~Instantbi@70.230.148.32)
- # [05:47] * Quits: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net) (Client Quit)
- # [05:57] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [05:59] * Quits: diffalot (~diffalot@unaffiliated/papyromancer) (Quit: ZNC - http://znc.in)
- # [06:02] * Joins: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net)
- # [06:03] * Joins: diffalot (~diffalot@c-76-107-128-104.hsd1.ms.comcast.net)
- # [06:04] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [06:05] * Quits: mven (~mven@ip68-224-15-53.lv.lv.cox.net) (Read error: Connection reset by peer)
- # [06:05] * Joins: mven_ (~mven@ip68-224-15-53.lv.lv.cox.net)
- # [06:07] * Quits: diffalot (~diffalot@c-76-107-128-104.hsd1.ms.comcast.net) (Changing host)
- # [06:07] * Joins: diffalot (~diffalot@unaffiliated/papyromancer)
- # [06:18] * Quits: weinig (~weinig@24.130.60.35) (Quit: weinig)
- # [06:20] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [06:20] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [06:21] * Joins: kangil (~kangil@210.94.41.89)
- # [06:26] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [06:35] * Quits: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [06:35] * Joins: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net)
- # [06:38] * Quits: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net) (Client Quit)
- # [06:40] * Joins: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net)
- # [06:42] * Quits: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net) (Quit: Computer has gone to sleep.)
- # [06:44] * Quits: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net) (Quit: bholley)
- # [06:46] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [06:57] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [07:01] * Joins: malaclyps (~Danny@173-228-80-237.dsl.static.sonic.net)
- # [07:01] * Quits: malaclyps (~Danny@173-228-80-237.dsl.static.sonic.net) (Changing host)
- # [07:01] * Joins: malaclyps (~Danny@unaffiliated/malaclyps)
- # [07:07] * Quits: clamstar (~textual@cpe-67-247-7-62.nyc.res.rr.com) (Quit: Textual IRC Client: www.textualapp.com)
- # [07:13] * Parts: a-ja (~Instantbi@70.230.148.32)
- # [07:19] * Joins: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net)
- # [07:31] * Quits: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net) (Quit: Computer has gone to sleep.)
- # [07:58] * Joins: jeffreyatw (~jeffreyat@199-188-192-239.PUBLIC.monkeybrains.net)
- # [08:00] * Quits: malaclyps (~Danny@unaffiliated/malaclyps) (Ping timeout: 245 seconds)
- # [08:50] * Quits: Goplat (~goplat@reactos/developer/Goplat) (Remote host closed the connection)
- # [09:01] * Quits: jaeholee (uid4856@gateway/web/irccloud.com/x-ukylhfhrdcgpndie)
- # [09:04] * Joins: Ms2ger (~Ms2ger@109.133.52.179)
- # [09:05] * Joins: rego (~rego@99.192.27.77.dynamic.mundo-r.com)
- # [09:24] * Quits: jeffreyatw (~jeffreyat@199-188-192-239.PUBLIC.monkeybrains.net) (Quit: jeffreyatw)
- # [09:34] * Joins: Areks (~Areks@95-24-185-250.broadband.corbina.ru)
- # [10:00] * Quits: Ms2ger (~Ms2ger@109.133.52.179) (Ping timeout: 252 seconds)
- # [10:01] * Joins: Ms2ger (~Ms2ger@109.133.52.179)
- # [10:06] * Quits: wakaba_ (~wakaba@122.120.236.133.dy.bbexcite.jp) (Read error: Connection reset by peer)
- # [10:06] * Quits: Somatt_wrk (~somattwrk@130.193.24.135) (Ping timeout: 252 seconds)
- # [10:07] * Quits: luanmuniz (uid15913@gateway/web/irccloud.com/x-vflpzyjiuickuxyq) (*.net *.split)
- # [10:07] * Quits: mathiasbynens (sid2247@gateway/web/irccloud.com/x-fwsshixfnosbwvxa) (*.net *.split)
- # [10:07] * Quits: OliverJAsh (uid11790@gateway/web/irccloud.com/x-olrmjgknnhsfoxlj) (*.net *.split)
- # [10:07] * Quits: wycats (sid79@gateway/web/irccloud.com/x-hkhdhtciceowxbrc) (*.net *.split)
- # [10:07] * Quits: TabAtkins (sid11559@gateway/web/irccloud.com/x-eghzafnynnpzboyp) (*.net *.split)
- # [10:07] * Quits: rxgx (uid22483@gateway/web/irccloud.com/x-zlqdonsfujmhevek) (*.net *.split)
- # [10:07] * Quits: hayato (uid20728@gateway/web/irccloud.com/x-hiffqwdroaxzqefs) (*.net *.split)
- # [10:07] * Quits: esprehn (sid10445@gateway/web/irccloud.com/x-pfnpagfdnfugpkyd) (*.net *.split)
- # [10:07] * Quits: timeless (sid4015@firefox/developer/timeless) (*.net *.split)
- # [10:07] * Quits: annevk-cloud_ (uid2483@gateway/web/irccloud.com/x-fmjbrdwjejdrwrir) (*.net *.split)
- # [10:07] * Quits: abarth (~uid5294@gateway/web/irccloud.com/x-hcshijpzhwskxikj) (*.net *.split)
- # [10:07] * Quits: rcombs (~rcombs@rcombs.me) (*.net *.split)
- # [10:07] * Quits: kochi1 (~kochi@2401:fa00:4:1000:26be:5ff:fe03:db82) (*.net *.split)
- # [10:07] * Quits: nunnun (~hiro@sculptor.local.hiro.ne.jp) (*.net *.split)
- # [10:07] * Quits: krijn (sid2319@gateway/web/irccloud.com/x-ipzhvchxtkfrkyxa) (*.net *.split)
- # [10:07] * Quits: remysharp (sid4345@gateway/web/irccloud.com/x-xhzghbrkjpseeqqy) (*.net *.split)
- # [10:07] * Quits: Johnny- (~null@unaffiliated/johnny-) (*.net *.split)
- # [10:07] * Quits: hdv_ (sid2376@gateway/web/irccloud.com/x-fghgzvgxmotybopn) (*.net *.split)
- # [10:07] * Quits: cabanier_ (sid15093@gateway/web/irccloud.com/x-eiqirbcswswdxywp) (*.net *.split)
- # [10:07] * Quits: twisted` (sid6794@gateway/web/irccloud.com/x-oifnxbuskjkffmnm) (*.net *.split)
- # [10:07] * Quits: frozenice (sid21176@gateway/web/irccloud.com/x-eyrgomxqebsrjbnu) (*.net *.split)
- # [10:07] * Quits: dwim (~dwim@210.94.41.89) (*.net *.split)
- # [10:07] * Quits: viduthalai1947_ (~uid5404@gateway/web/irccloud.com/x-osbvbxqgjcnqojnq) (*.net *.split)
- # [10:07] * Quits: ojan_ (uid5519@gateway/web/irccloud.com/x-zqnrjejrnhqpcqgc) (*.net *.split)
- # [10:07] * Quits: amtiskaw (uid19262@gateway/web/irccloud.com/x-gewdattoogzmueta) (*.net *.split)
- # [10:07] * Quits: gavin_ (~gavin@76.14.87.162) (*.net *.split)
- # [10:07] * Quits: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net) (*.net *.split)
- # [10:07] * Quits: Streusel (~Anonymous@unaffiliated/streusel) (*.net *.split)
- # [10:07] * Quits: mpt (~mpt@canonical/mpt) (*.net *.split)
- # [10:07] * Quits: Workshiva (~Dashiva@74.125.121.65) (*.net *.split)
- # [10:07] * Quits: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (*.net *.split)
- # [10:07] * Quits: sindresorhus (sindresorh@gateway/shell/ircrelay.com/x-aunlfbzdwsfpppqn) (*.net *.split)
- # [10:07] * Quits: Osmose1000 (Osmose1000@2600:3c02::f03c:91ff:feae:1aeb) (*.net *.split)
- # [10:07] * Quits: jochen__ (jochen@nat/google/x-whcqjauaaehvpszg) (*.net *.split)
- # [10:07] * Quits: npcomp (~eldon@c-24-126-240-124.hsd1.ga.comcast.net) (*.net *.split)
- # [10:07] * Quits: xxtjaxx (~xxtjaxx@kde/developer/marschke) (*.net *.split)
- # [10:07] * Quits: Yudai___ (~Yudai@nttkyo213131.tkyo.nt.ngn2.ppp.infoweb.ne.jp) (*.net *.split)
- # [10:07] * Quits: Krinkle|detached (~Krinkle@wikimedia/Krinkle) (*.net *.split)
- # [10:07] * Quits: walbo (walbo@galaxy.forbanna.net) (*.net *.split)
- # [10:07] * Quits: g4 (~g4@unaffiliated/gormer) (*.net *.split)
- # [10:07] * Quits: gavin (~gavin@firefox/developer/gavin) (*.net *.split)
- # [10:07] * Quits: scott_gonzalez (gonzasi0@gateway/shell/jquery.com/x-oxgdbagjabrdasfk) (*.net *.split)
- # [10:07] * Quits: jamesr__ (uid10481@gateway/web/irccloud.com/x-mxejmarzmfbvapnx) (*.net *.split)
- # [10:07] * Quits: ivan`` (~ivan@unaffiliated/ivan/x-000001) (*.net *.split)
- # [10:07] * Quits: Philip`_ (~philip@compass.zaynar.co.uk) (*.net *.split)
- # [10:07] * Quits: Martijnc- (~Martijn@is-aweso.me) (*.net *.split)
- # [10:07] * Quits: MikeSmith (~mike@sideshowbarker.net) (*.net *.split)
- # [10:07] * Quits: gsnedders (~gsnedders@5.2.16.23) (*.net *.split)
- # [10:07] * Quits: lokling (~quassel@quassel.woboq.com) (*.net *.split)
- # [10:07] * Quits: rektide (~rektide@eldergods.com) (*.net *.split)
- # [10:07] * Quits: ImBcmDth (~Jon@oftn/member/ImBcmDth) (*.net *.split)
- # [10:07] * Quits: ShaneHudson (~shane@77-72-3-21.hosted-at.kloud.co.uk) (*.net *.split)
- # [10:07] * Quits: ahf (ahf@irssi/staff/ahf) (*.net *.split)
- # [10:07] * Quits: schuki (~quassel@mgmt01.bytemark.everycity.co.uk) (*.net *.split)
- # [10:07] * Quits: jmb (~jmb@mail.parsifal.org.uk) (*.net *.split)
- # [10:07] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net) (*.net *.split)
- # [10:07] * Quits: Domenic_ (sid10976@gateway/web/irccloud.com/x-qghojcoxjuagmxbi) (*.net *.split)
- # [10:07] * Quits: daleharvey (sid513@gateway/web/irccloud.com/x-ktrkyfwrxbsugmbk) (*.net *.split)
- # [10:07] * Quits: malcolmva (~malcolmva@c-67-180-198-144.hsd1.ca.comcast.net) (*.net *.split)
- # [10:07] * Quits: matijs (sid2278@gateway/web/irccloud.com/x-uiucicnihmyxfges) (*.net *.split)
- # [10:07] * Quits: JakeA (uid3836@gateway/web/irccloud.com/x-mfmdcztenrircgbd) (*.net *.split)
- # [10:07] * Quits: Ancil_ (uid12206@gateway/web/irccloud.com/x-wrwoamhzokzappis) (*.net *.split)
- # [10:07] * Quits: krit (sid15081@gateway/web/irccloud.com/x-rsbznjokwptyyemo) (*.net *.split)
- # [10:07] * Quits: slightlyoff (sid1768@gateway/web/irccloud.com/x-aqzowkwmlepzjndt) (*.net *.split)
- # [10:07] * Quits: rastus_vernon (~uid15187@wikimedia/Rastus-Vernon) (*.net *.split)
- # [10:08] * Quits: Jasper (jstpierre@unaffiliated/magcius) (*.net *.split)
- # [10:08] * Quits: gnarf (gnarf@unaffiliated/gnarf) (*.net *.split)
- # [10:08] * Quits: webben_ (~benjamin@198.61.227.102) (*.net *.split)
- # [10:08] * Quits: Areks (~Areks@95-24-185-250.broadband.corbina.ru) (*.net *.split)
- # [10:08] * Quits: kangil (~kangil@210.94.41.89) (*.net *.split)
- # [10:08] * Quits: payman_ (~payman@ip-200.t2.se.opera.com) (*.net *.split)
- # [10:08] * Quits: Dashiva (~noone@wikia/Dashiva) (*.net *.split)
- # [10:08] * Quits: qrk (~qrk@115-64-60-4.static.tpgi.com.au) (*.net *.split)
- # [10:08] * Quits: toyoshiAw (~toyoshim@yuri.twintail.org) (*.net *.split)
- # [10:08] * Quits: kinetik (~kinetik@121.99.43.184) (*.net *.split)
- # [10:08] * Quits: odinho (odinho@dalvik.ping.uio.no) (*.net *.split)
- # [10:08] * Quits: rwaldron (rwaldron@gateway/shell/jquery.com/x-fpfnfqpieidfxwgl) (*.net *.split)
- # [10:08] * Quits: falken (falken@nat/google/x-yorlgsqpyxewdfgq) (*.net *.split)
- # [10:08] * Quits: hsivonen (~hsivonen@fsf/member/hsivonen) (*.net *.split)
- # [10:08] * Quits: ajpiano (~ajpiano@li98-57.members.linode.com) (*.net *.split)
- # [10:08] * Quits: nw (nw@kapsi.fi) (*.net *.split)
- # [10:08] * Quits: astearns_ (sid15080@gateway/web/irccloud.com/x-lraferpkduesaxom) (*.net *.split)
- # [10:08] * Quits: anssik_ (uid10742@gateway/web/irccloud.com/x-dbsfdsvqwxpmzkvs) (*.net *.split)
- # [10:08] * Quits: pdr_ (sid7901@gateway/web/irccloud.com/x-ahamuztptzzqwixb) (*.net *.split)
- # [10:08] * Quits: mattur (sid16049@gateway/web/irccloud.com/x-zvhieszlgnnxxngb) (*.net *.split)
- # [10:08] * Quits: mvujovic_ (sid13458@gateway/web/irccloud.com/x-dwvzzgrullgdcbzt) (*.net *.split)
- # [10:08] * Quits: JonathanNeal (uid5831@gateway/web/irccloud.com/x-eydqaqgtxjgtnnyl) (*.net *.split)
- # [10:08] * Quits: dglazkov (sid4270@gateway/web/irccloud.com/x-xsgsnokmtxjupgwo) (*.net *.split)
- # [10:08] * Quits: benschwarz (sid2121@gateway/web/irccloud.com/x-upvuesqitnukyzhr) (*.net *.split)
- # [10:08] * Quits: Phae (sid455@gateway/web/irccloud.com/x-obrfdipgyegblwnk) (*.net *.split)
- # [10:08] * Quits: moo-_- (miohtama@lakka.kapsi.fi) (*.net *.split)
- # [10:08] * Quits: brainproxy (~brainprox@pdpc/supporter/gold/brainproxy) (*.net *.split)
- # [10:08] * Quits: patrickkettner (~patrickke@162.243.230.230) (*.net *.split)
- # [10:08] * Quits: FireFly (~firefly@oftn/member/FireFly) (*.net *.split)
- # [10:08] * Quits: danielfilho (~danielfil@208.68.39.233) (*.net *.split)
- # [10:08] * Quits: jgraham (~jgraham@web91.webfaction.com) (*.net *.split)
- # [10:08] * Quits: boaz (~boaz@li326-230.members.linode.com) (*.net *.split)
- # [10:08] * Quits: hendry (~hendry@sg.webconverger.com) (*.net *.split)
- # [10:08] * Quits: pluma|Zzz (~pluma@cable-78-35-101-81.netcologne.de) (*.net *.split)
- # [10:08] * Quits: Benvie (~bbenvie@corp-nat.p2p.sfo1.mozilla.com) (*.net *.split)
- # [10:08] * Quits: broquaint (~dbrook@static.94.217.47.78.clients.your-server.de) (*.net *.split)
- # [10:08] * Quits: raj (~raj@unaffiliated/cypha) (*.net *.split)
- # [10:08] * Quits: paul_irish (~paul_iris@ve.hsh6wjwx.vesrv.com) (*.net *.split)
- # [10:08] * Quits: miketaylr (~miketaylr@192.241.222.35) (*.net *.split)
- # [10:08] * Quits: diffalot (~diffalot@unaffiliated/papyromancer) (*.net *.split)
- # [10:08] * Quits: mattaustin (mattaustin@gateway/shell/blinkenshell.org/x-ibqlrvbjodgivwgy) (*.net *.split)
- # [10:08] * Quits: Hixie_ (~ianh@178.255.149.100) (*.net *.split)
- # [10:08] * Quits: Rubennn (~Rubennn@apher.gewooniets.nl) (*.net *.split)
- # [10:08] * Quits: zaal (~zaal@cpc65346-nrwh11-2-0-cust48.4-4.cable.virginmedia.com) (*.net *.split)
- # [10:08] * Quits: lilmonkey (~colin@pdpc/supporter/professional/riven) (*.net *.split)
- # [10:08] * Quits: pxz (~pxz@li146-216.members.linode.com) (*.net *.split)
- # [10:08] * Quits: ryuone (~ryuone@133.242.55.223) (*.net *.split)
- # [10:08] * Quits: 77CAAS99W (alecf@nat/google/x-wairvcfgrlvcpfyf) (*.net *.split)
- # [10:08] * Quits: mrbkap (~mrbkap@people1.scl3.mozilla.com) (*.net *.split)
- # [10:08] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (*.net *.split)
- # [10:08] * Quits: qrwteyrutiyoup (~qrwteyrut@unaffiliated/qrwteyrutiyoup) (*.net *.split)
- # [10:08] * Quits: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley) (*.net *.split)
- # [10:08] * Quits: riddle (riddle@us.yunix.net) (*.net *.split)
- # [10:08] * Quits: dshwang (~dshwang@192.55.54.42) (*.net *.split)
- # [10:08] * Quits: suzak (~suzak@www4346uf.sakura.ne.jp) (*.net *.split)
- # [10:08] * Quits: Jedi_ (~Jedi@jedi.org) (*.net *.split)
- # [10:08] * Quits: reggna (~reggna@irc.jagochmittmoln.se) (*.net *.split)
- # [10:08] * Quits: jaket (~jake@unaffiliated/jaket) (*.net *.split)
- # [10:08] * Quits: mounir (~mounir@oldworld.fr) (*.net *.split)
- # [10:08] * Quits: wilhelm (~wilhelm@178.255.149.100) (*.net *.split)
- # [10:08] * Quits: smola (~smola@5.10.91.99-static.reverse.softlayer.com) (*.net *.split)
- # [10:08] * Quits: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net) (*.net *.split)
- # [10:08] * Quits: heycam|away (~cam@nextlevelau.spd.co.il) (*.net *.split)
- # [10:08] * Quits: mitsuhiko (~mitsuhiko@ubuntu/member/mitsuhiko) (*.net *.split)
- # [10:08] * Quits: fredy (~fredy@snf-8914.vm.okeanos.grnet.gr) (*.net *.split)
- # [10:08] * Quits: jtcranme1 (~jcranmer@ras2.csl.tjhsst.edu) (*.net *.split)
- # [10:08] * Quits: lerc_ (~quassel@121-74-1-14.telstraclear.net) (*.net *.split)
- # [10:08] * Quits: nielsle (~nielsle@3239078-cl69.boa.fiberby.dk) (*.net *.split)
- # [10:08] * Quits: bzed (~bzed@devel.recluse.de) (*.net *.split)
- # [10:08] * Quits: eric_carlson (~eric@17.212.152.104) (*.net *.split)
- # [10:08] * Quits: molsson (~molsson@83.218.67.123) (*.net *.split)
- # [10:08] * Quits: borior (~borior@pdpc/supporter/student/borior) (*.net *.split)
- # [10:08] * Quits: jahman (~woops@129.175.204.73) (*.net *.split)
- # [10:08] * Quits: statico (~statico@lemon.langworth.com) (*.net *.split)
- # [10:08] * Quits: davve (~user@83.218.67.123) (*.net *.split)
- # [10:08] * Quits: jorendorff_away (~jorendorf@ec2-54-225-226-18.compute-1.amazonaws.com) (*.net *.split)
- # [10:08] * Quits: kbrosnan (~kbrosnan@firefox/community/qa/kbrosnan) (*.net *.split)
- # [10:08] * Quits: ondras (~ondras@zarovi.cz) (*.net *.split)
- # [10:08] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (*.net *.split)
- # [10:08] * Quits: ehsan (~ehsan@24-212-206-174.cable.teksavvy.com) (*.net *.split)
- # [10:08] * Quits: bentruyman (~bentruyma@204.11.60.93) (*.net *.split)
- # [10:08] * Quits: zewt_ (~foo@ec2-50-17-220-142.compute-1.amazonaws.com) (*.net *.split)
- # [10:08] * Quits: inimino (~inimino@oftn/board/inimino) (*.net *.split)
- # [10:08] * Quits: stalled_ (~stalled@unaffiliated/stalled) (*.net *.split)
- # [10:14] * Quits: Ms2ger (~Ms2ger@109.133.52.179) (Ping timeout: 252 seconds)
- # [10:16] * Joins: gsnedders (~gsnedders@5.2.16.23)
- # [10:18] * Joins: zewt (~foo@ec2-50-17-220-142.compute-1.amazonaws.com)
- # [10:19] * Quits: tomaw (tom@freenode/staff/tomaw) (*.net *.split)
- # [10:19] * Quits: mven_ (~mven@ip68-224-15-53.lv.lv.cox.net) (*.net *.split)
- # [10:19] * Quits: edsu (~edsu@pdpc/supporter/active/edsu) (*.net *.split)
- # [10:19] * Quits: boogyman (~boogyman@pdpc/supporter/professional/boogyman) (*.net *.split)
- # [10:19] * Quits: SimonSapin (~simon@hako.exyr.org) (*.net *.split)
- # [10:19] * Quits: kborchers (~kborchers@unaffiliated/kborchers) (*.net *.split)
- # [10:19] * Quits: [[zz]] (~zz]]@node-6ev.pool-125-25.dynamic.totbb.net) (*.net *.split)
- # [10:19] * Quits: WesleyL (~Wesley@irc.bierdopje.com) (*.net *.split)
- # [10:19] * Quits: globbot (~logbot@lump.glob.com.au) (*.net *.split)
- # [10:19] * Quits: sangwhan (sid12645@gateway/web/irccloud.com/x-khjbigodhaukcamb) (*.net *.split)
- # [10:19] * Quits: gavinc (~gavin@barad-dur.carothers.name) (*.net *.split)
- # [10:19] * Quits: m4nu (~manu@216.252.204.51) (*.net *.split)
- # [10:24] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [10:24] * Joins: ehsan (~ehsan@24-212-206-174.cable.teksavvy.com)
- # [10:24] * Joins: bentruyman (~bentruyma@204.11.60.93)
- # [10:24] * Joins: inimino (~inimino@oftn/board/inimino)
- # [10:24] * Joins: stalled_ (~stalled@unaffiliated/stalled)
- # [10:24] * Joins: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net)
- # [10:24] * Joins: Streusel (~Anonymous@unaffiliated/streusel)
- # [10:24] * Joins: mpt (~mpt@canonical/mpt)
- # [10:24] * Joins: Workshiva (~Dashiva@74.125.121.65)
- # [10:24] * Joins: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net)
- # [10:24] * Joins: sindresorhus (sindresorh@gateway/shell/ircrelay.com/x-aunlfbzdwsfpppqn)
- # [10:24] * Joins: Osmose1000 (Osmose1000@2600:3c02::f03c:91ff:feae:1aeb)
- # [10:25] * Joins: jmb (~jmb@mail.parsifal.org.uk)
- # [10:25] * Joins: wakaba (~wakaba@122.120.236.133.dy.bbexcite.jp)
- # [10:25] * Joins: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net)
- # [10:25] * Joins: heycam|away (~cam@nextlevelau.spd.co.il)
- # [10:25] * Joins: mitsuhiko (~mitsuhiko@ubuntu/member/mitsuhiko)
- # [10:25] * Joins: fredy (~fredy@snf-8914.vm.okeanos.grnet.gr)
- # [10:25] * Joins: jtcranme1 (~jcranmer@ras2.csl.tjhsst.edu)
- # [10:25] * Joins: lerc_ (~quassel@121-74-1-14.telstraclear.net)
- # [10:25] * Joins: nielsle (~nielsle@3239078-cl69.boa.fiberby.dk)
- # [10:25] * Joins: bzed (~bzed@devel.recluse.de)
- # [10:25] * Joins: statico (~statico@lemon.langworth.com)
- # [10:25] * Joins: eric_carlson (~eric@17.212.152.104)
- # [10:25] * Joins: molsson (~molsson@83.218.67.123)
- # [10:25] * Joins: borior (~borior@pdpc/supporter/student/borior)
- # [10:25] * Joins: jahman (~woops@129.175.204.73)
- # [10:25] * Joins: ondras (~ondras@zarovi.cz)
- # [10:25] * Joins: davve (~user@83.218.67.123)
- # [10:25] * Joins: jorendorff_away (~jorendorf@ec2-54-225-226-18.compute-1.amazonaws.com)
- # [10:25] * Joins: kbrosnan (~kbrosnan@firefox/community/qa/kbrosnan)
- # [10:25] * Joins: diffalot (~diffalot@unaffiliated/papyromancer)
- # [10:25] * Joins: mattaustin (mattaustin@gateway/shell/blinkenshell.org/x-ibqlrvbjodgivwgy)
- # [10:25] * Joins: Hixie_ (~ianh@178.255.149.100)
- # [10:25] * Joins: Rubennn (~Rubennn@apher.gewooniets.nl)
- # [10:25] * Joins: zaal (~zaal@cpc65346-nrwh11-2-0-cust48.4-4.cable.virginmedia.com)
- # [10:25] * Joins: lilmonkey (~colin@pdpc/supporter/professional/riven)
- # [10:25] * Joins: pxz (~pxz@li146-216.members.linode.com)
- # [10:25] * Joins: ryuone (~ryuone@133.242.55.223)
- # [10:25] * Joins: 77CAAS99W (alecf@nat/google/x-wairvcfgrlvcpfyf)
- # [10:25] * Joins: mrbkap (~mrbkap@people1.scl3.mozilla.com)
- # [10:25] * Joins: cabanier_ (sid15093@gateway/web/irccloud.com/session)
- # [10:25] * Joins: krijn_ (sid2319@gateway/web/irccloud.com/session)
- # [10:25] * Joins: hdv_ (sid2376@gateway/web/irccloud.com/session)
- # [10:25] * Joins: luanmuniz (uid15913@gateway/web/irccloud.com/x-vflpzyjiuickuxyq)
- # [10:25] * Joins: mathiasbynens (sid2247@gateway/web/irccloud.com/x-fwsshixfnosbwvxa)
- # [10:25] * Joins: OliverJAsh (uid11790@gateway/web/irccloud.com/x-olrmjgknnhsfoxlj)
- # [10:25] * Joins: wycats (sid79@gateway/web/irccloud.com/x-hkhdhtciceowxbrc)
- # [10:25] * Joins: TabAtkins (sid11559@gateway/web/irccloud.com/x-eghzafnynnpzboyp)
- # [10:25] * Joins: rxgx (uid22483@gateway/web/irccloud.com/x-zlqdonsfujmhevek)
- # [10:25] * Joins: hayato (uid20728@gateway/web/irccloud.com/x-hiffqwdroaxzqefs)
- # [10:25] * Joins: esprehn (sid10445@gateway/web/irccloud.com/x-pfnpagfdnfugpkyd)
- # [10:25] * Joins: timeless (sid4015@firefox/developer/timeless)
- # [10:25] * Joins: annevk-cloud_ (uid2483@gateway/web/irccloud.com/x-fmjbrdwjejdrwrir)
- # [10:25] * Joins: abarth (~uid5294@gateway/web/irccloud.com/x-hcshijpzhwskxikj)
- # [10:25] * Joins: rcombs (~rcombs@rcombs.me)
- # [10:25] * Joins: kochi1 (~kochi@2401:fa00:4:1000:26be:5ff:fe03:db82)
- # [10:25] * Joins: nunnun (~hiro@sculptor.local.hiro.ne.jp)
- # [10:26] * Joins: Somatt_wrk (~somattwrk@130.193.24.135)
- # [10:26] * Joins: kborchers (~kborchers@unaffiliated/kborchers)
- # [10:26] * Joins: SimonSapin (~simon@hako.exyr.org)
- # [10:26] * Joins: boogyman (~boogyman@pdpc/supporter/professional/boogyman)
- # [10:26] * Joins: edsu (~edsu@pdpc/supporter/active/edsu)
- # [10:26] * Joins: mven_ (~mven@ip68-224-15-53.lv.lv.cox.net)
- # [10:26] * Joins: MikeSmit1 (~mike@sideshowbarker.net)
- # [10:26] * Joins: Ms2ger (~Ms2ger@109.133.52.179)
- # [10:26] * Joins: frozenice (sid21176@gateway/web/irccloud.com/session)
- # [10:26] * Joins: kangil (~kangil@210.94.41.89)
- # [10:26] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net)
- # [10:26] * Joins: Domenic_ (sid10976@gateway/web/irccloud.com/x-qghojcoxjuagmxbi)
- # [10:26] * Joins: astearns_ (sid15080@gateway/web/irccloud.com/x-lraferpkduesaxom)
- # [10:26] * Joins: daleharvey (sid513@gateway/web/irccloud.com/x-ktrkyfwrxbsugmbk)
- # [10:26] * Joins: anssik_ (uid10742@gateway/web/irccloud.com/x-dbsfdsvqwxpmzkvs)
- # [10:26] * Joins: malcolmva (~malcolmva@c-67-180-198-144.hsd1.ca.comcast.net)
- # [10:26] * Joins: matijs (sid2278@gateway/web/irccloud.com/x-uiucicnihmyxfges)
- # [10:26] * Joins: JakeA (uid3836@gateway/web/irccloud.com/x-mfmdcztenrircgbd)
- # [10:26] * Joins: Ancil_ (uid12206@gateway/web/irccloud.com/x-wrwoamhzokzappis)
- # [10:26] * Joins: pdr_ (sid7901@gateway/web/irccloud.com/x-ahamuztptzzqwixb)
- # [10:26] * Joins: mattur (sid16049@gateway/web/irccloud.com/x-zvhieszlgnnxxngb)
- # [10:26] * Joins: mvujovic_ (sid13458@gateway/web/irccloud.com/x-dwvzzgrullgdcbzt)
- # [10:26] * Joins: krit (sid15081@gateway/web/irccloud.com/x-rsbznjokwptyyemo)
- # [10:26] * Joins: slightlyoff (sid1768@gateway/web/irccloud.com/x-aqzowkwmlepzjndt)
- # [10:26] * Joins: JonathanNeal (uid5831@gateway/web/irccloud.com/x-eydqaqgtxjgtnnyl)
- # [10:26] * Joins: dglazkov (sid4270@gateway/web/irccloud.com/x-xsgsnokmtxjupgwo)
- # [10:26] * Joins: benschwarz (sid2121@gateway/web/irccloud.com/x-upvuesqitnukyzhr)
- # [10:26] * Joins: rastus_vernon (~uid15187@wikimedia/Rastus-Vernon)
- # [10:26] * Joins: Phae (sid455@gateway/web/irccloud.com/x-obrfdipgyegblwnk)
- # [10:26] * Joins: moo-_- (miohtama@lakka.kapsi.fi)
- # [10:26] * Joins: ivan`` (~ivan@unaffiliated/ivan/x-000001)
- # [10:26] * Joins: Martijnc- (~Martijn@is-aweso.me)
- # [10:26] * Joins: gnarf (gnarf@unaffiliated/gnarf)
- # [10:26] * Joins: Jasper (jstpierre@unaffiliated/magcius)
- # [10:26] * Joins: webben_ (~benjamin@198.61.227.102)
- # [10:26] * Joins: lokling (~quassel@quassel.woboq.com)
- # [10:26] * Joins: payman_ (~payman@ip-200.t2.se.opera.com)
- # [10:26] * Joins: Dashiva (~noone@wikia/Dashiva)
- # [10:26] * Joins: qrk (~qrk@115-64-60-4.static.tpgi.com.au)
- # [10:26] * Joins: brainproxy (~brainprox@pdpc/supporter/gold/brainproxy)
- # [10:26] * Joins: patrickkettner (~patrickke@162.243.230.230)
- # [10:26] * Joins: FireFly (~firefly@oftn/member/FireFly)
- # [10:26] * Joins: danielfilho (~danielfil@208.68.39.233)
- # [10:26] * Joins: jgraham (~jgraham@web91.webfaction.com)
- # [10:26] * Joins: boaz (~boaz@li326-230.members.linode.com)
- # [10:26] * Joins: hendry (~hendry@sg.webconverger.com)
- # [10:26] * Joins: ImBcmDth (~Jon@oftn/member/ImBcmDth)
- # [10:26] * Joins: toyoshiAw (~toyoshim@yuri.twintail.org)
- # [10:26] * Joins: kinetik (~kinetik@121.99.43.184)
- # [10:26] * Joins: odinho (odinho@dalvik.ping.uio.no)
- # [10:26] * Joins: rwaldron (rwaldron@gateway/shell/jquery.com/x-fpfnfqpieidfxwgl)
- # [10:26] * Joins: falken (falken@nat/google/x-yorlgsqpyxewdfgq)
- # [10:26] * Joins: hsivonen (~hsivonen@fsf/member/hsivonen)
- # [10:26] * Joins: schuki (~quassel@mgmt01.bytemark.everycity.co.uk)
- # [10:26] * Joins: ajpiano (~ajpiano@li98-57.members.linode.com)
- # [10:26] * Joins: nw (nw@kapsi.fi)
- # [10:26] * Joins: walbo (walbo@galaxy.forbanna.net)
- # [10:26] * Joins: jochen__ (jochen@nat/google/x-whcqjauaaehvpszg)
- # [10:26] * Joins: npcomp (~eldon@c-24-126-240-124.hsd1.ga.comcast.net)
- # [10:26] * Joins: xxtjaxx (~xxtjaxx@kde/developer/marschke)
- # [10:26] * Joins: Yudai___ (~Yudai@nttkyo213131.tkyo.nt.ngn2.ppp.infoweb.ne.jp)
- # [10:26] * Joins: Krinkle|detached (~Krinkle@wikimedia/Krinkle)
- # [10:26] * Joins: g4 (~g4@unaffiliated/gormer)
- # [10:26] * Joins: gavin (~gavin@firefox/developer/gavin)
- # [10:26] * Joins: scott_gonzalez (gonzasi0@gateway/shell/jquery.com/x-oxgdbagjabrdasfk)
- # [10:26] * Joins: jamesr__ (uid10481@gateway/web/irccloud.com/x-mxejmarzmfbvapnx)
- # [10:26] * Joins: twisted`_ (sid6794@gateway/web/irccloud.com/session)
- # [10:26] * Joins: remysharp (sid4345@gateway/web/irccloud.com/session)
- # [10:26] * Joins: Johnny- (~null@unaffiliated/johnny-)
- # [10:26] * Joins: [[zz]] (~zz]]@node-6ev.pool-125-25.dynamic.totbb.net)
- # [10:26] * Joins: WesleyL (~Wesley@irc.bierdopje.com)
- # [10:26] * Joins: globbot (~logbot@lump.glob.com.au)
- # [10:26] * Joins: sangwhan (sid12645@gateway/web/irccloud.com/x-khjbigodhaukcamb)
- # [10:26] * Joins: gavinc (~gavin@barad-dur.carothers.name)
- # [10:26] * Joins: m4nu (~manu@216.252.204.51)
- # [10:26] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [10:26] * Joins: qrwteyrutiyoup (~qrwteyrut@unaffiliated/qrwteyrutiyoup)
- # [10:26] * Joins: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley)
- # [10:26] * Joins: riddle (riddle@us.yunix.net)
- # [10:26] * Joins: dshwang (~dshwang@192.55.54.42)
- # [10:26] * Joins: suzak (~suzak@www4346uf.sakura.ne.jp)
- # [10:26] * Joins: Jedi_ (~Jedi@jedi.org)
- # [10:26] * Joins: reggna (~reggna@irc.jagochmittmoln.se)
- # [10:26] * Quits: frozenice (sid21176@gateway/web/irccloud.com/session) (Changing host)
- # [10:26] * Joins: frozenice (sid21176@gateway/web/irccloud.com/x-mmkakhuchpgmdbdn)
- # [10:26] * Quits: hdv_ (sid2376@gateway/web/irccloud.com/session) (Changing host)
- # [10:26] * Joins: hdv_ (sid2376@gateway/web/irccloud.com/x-stxvequnrlpaengt)
- # [10:26] * Quits: krijn_ (sid2319@gateway/web/irccloud.com/session) (Changing host)
- # [10:26] * Joins: krijn_ (sid2319@gateway/web/irccloud.com/x-cbaamjywzbdyhabp)
- # [10:26] * Quits: cabanier_ (sid15093@gateway/web/irccloud.com/session) (Changing host)
- # [10:26] * Joins: cabanier_ (sid15093@gateway/web/irccloud.com/x-xoehepexqqvieoce)
- # [10:26] * Quits: twisted`_ (sid6794@gateway/web/irccloud.com/session) (Changing host)
- # [10:26] * Joins: twisted`_ (sid6794@gateway/web/irccloud.com/x-ftpigmdrdtwbnrwn)
- # [10:26] * Quits: remysharp (sid4345@gateway/web/irccloud.com/session) (Changing host)
- # [10:26] * Joins: remysharp (sid4345@gateway/web/irccloud.com/x-kdkdrosmxhztelbq)
- # [10:31] * Joins: dwim (~dwim@210.94.41.89)
- # [10:31] * Joins: viduthalai1947_ (~uid5404@gateway/web/irccloud.com/x-osbvbxqgjcnqojnq)
- # [10:31] * Joins: ojan_ (uid5519@gateway/web/irccloud.com/x-zqnrjejrnhqpcqgc)
- # [10:31] * Joins: amtiskaw (uid19262@gateway/web/irccloud.com/x-gewdattoogzmueta)
- # [10:31] * Joins: gavin_ (~gavin@76.14.87.162)
- # [10:39] <MikeSmit1> what populer JS libraries were in use before Prototype came along? (And then script.aculo.us)?
- # [10:39] * MikeSmit1 is now known as MikeSmith
- # [10:40] * Joins: Maurice (copyman@5ED57922.cm-7-6b.dynamic.ziggo.nl)
- # [10:40] * Joins: pluma|Zzz (~pluma@cable-78-35-101-81.netcologne.de)
- # [10:40] * Joins: Benvie (~bbenvie@corp-nat.p2p.sfo1.mozilla.com)
- # [10:40] * Joins: broquaint (~dbrook@static.94.217.47.78.clients.your-server.de)
- # [10:40] * Joins: raj (~raj@unaffiliated/cypha)
- # [10:40] * Joins: paul_irish (~paul_iris@ve.hsh6wjwx.vesrv.com)
- # [10:40] * Joins: miketaylr (~miketaylr@192.241.222.35)
- # [10:49] * Joins: tomaw (tom@freenode/staff/tomaw)
- # [10:49] * Joins: ahf_ (ahf@irssi.org)
- # [10:49] * Joins: rektide_ (~rektide@eldergods.com)
- # [10:49] * Joins: Philip` (~philip@compass.zaynar.co.uk)
- # [10:49] * Joins: jaket (~jake@unaffiliated/jaket)
- # [10:49] * Joins: smola (~smola@5.10.91.99-static.reverse.softlayer.com)
- # [10:49] * Joins: mounir (~mounir@oldworld.fr)
- # [10:49] * Joins: wilhelm (~wilhelm@178.255.149.100)
- # [10:50] * Quits: ahf_ (ahf@irssi.org) (Max SendQ exceeded)
- # [10:50] * Joins: ahf (ahf@irssi.org)
- # [10:51] * Quits: ahf (ahf@irssi.org) (Changing host)
- # [10:51] * Joins: ahf (ahf@irssi/staff/ahf)
- # [10:53] * Joins: charl_ (~charl@charl.eu)
- # [10:57] * Joins: Areks (~Areks@95-24-185-250.broadband.corbina.ru)
- # [10:58] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [11:04] * Quits: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net) (Quit: tantek)
- # [11:29] * Quits: fredy (~fredy@snf-8914.vm.okeanos.grnet.gr) (Excess Flood)
- # [11:31] * Quits: Areks (~Areks@95-24-185-250.broadband.corbina.ru) (Ping timeout: 245 seconds)
- # [11:31] * Joins: fredy (~fredy@2001:648:2ffc:1225:a800:ff:fe12:113e)
- # [11:32] * Quits: fredy (~fredy@2001:648:2ffc:1225:a800:ff:fe12:113e) (Excess Flood)
- # [11:34] * Joins: espadrine (~Thunderbi@AMontsouris-158-1-21-64.w92-128.abo.wanadoo.fr)
- # [11:37] * Joins: fredy (~fredy@2001:648:2ffc:1225:a800:ff:fe12:113e)
- # [11:37] * Quits: fredy (~fredy@2001:648:2ffc:1225:a800:ff:fe12:113e) (Excess Flood)
- # [11:40] * Joins: fredy (~fredy@2001:648:2ffc:1225:a800:ff:fe12:113e)
- # [11:41] * Quits: fredy (~fredy@2001:648:2ffc:1225:a800:ff:fe12:113e) (Excess Flood)
- # [11:42] * Joins: fredy (~fredy@snf-8914.vm.okeanos.grnet.gr)
- # [11:48] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net) (Ping timeout: 240 seconds)
- # [12:09] * Joins: Lachy (~Lachy@cm-84.215.104.248.getinternet.no)
- # [12:11] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [12:24] * Joins: pinage404 (~pinage404@2a01:e35:8b86:e330:260a:64ff:fe63:69ab)
- # [12:56] * Joins: Areks (~Areks@95-24-185-250.broadband.corbina.ru)
- # [13:03] * Quits: fredy (~fredy@snf-8914.vm.okeanos.grnet.gr) (Excess Flood)
- # [13:04] * Joins: fredy (~fredy@2001:648:2ffc:1225:a800:ff:fe12:113e)
- # [13:05] * Quits: Areks (~Areks@95-24-185-250.broadband.corbina.ru) (Ping timeout: 265 seconds)
- # [13:19] * jorendorff_away is now known as jorendorff
- # [13:20] * Joins: [[zzz]] (~zz]]@node-6so.pool-125-25.dynamic.totbb.net)
- # [13:23] * Quits: [[zz]] (~zz]]@node-6ev.pool-125-25.dynamic.totbb.net) (Ping timeout: 246 seconds)
- # [13:24] * Joins: Areks (~Areks@95-24-185-250.broadband.corbina.ru)
- # [13:26] * Quits: charl_ (~charl@charl.eu) (Quit: leaving)
- # [13:32] * Quits: fredy (~fredy@2001:648:2ffc:1225:a800:ff:fe12:113e) (Excess Flood)
- # [13:34] * Joins: fredy (~fredy@snf-8914.vm.okeanos.grnet.gr)
- # [13:40] * Krinkle|detached is now known as Krinkle
- # [13:55] * jorendorff is now known as jorendorff_away
- # [13:57] * Quits: Lachy (~Lachy@cm-84.215.104.248.getinternet.no) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [14:05] * Joins: Lachy (~Lachy@cm-84.215.104.248.getinternet.no)
- # [14:18] * Joins: smaug____ (~chatzilla@cs78246079.pp.htv.fi)
- # [14:20] * Quits: Streusel (~Anonymous@unaffiliated/streusel) (Quit: *clap* *clap*)
- # [14:24] * Quits: ehsan (~ehsan@24-212-206-174.cable.teksavvy.com) (Remote host closed the connection)
- # [14:26] <Ms2ger> odinho, the launch party is when MikeSmith gets the server setup on w3c-test, I guess
- # [14:31] <odinho> Hmm. Post-merge party then? :D
- # [14:39] * Quits: Ms2ger (~Ms2ger@109.133.52.179) (Ping timeout: 245 seconds)
- # [14:39] * Joins: Ms2ger (~Ms2ger@109.133.46.231)
- # [14:40] * Quits: Lachy (~Lachy@cm-84.215.104.248.getinternet.no) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [14:40] * Joins: io_jp (uid23137@gateway/web/irccloud.com/x-cjllopsojqxiicfo)
- # [14:53] * Quits: ahf (ahf@irssi/staff/ahf) (Quit: Bye)
- # [14:54] * Joins: ahf (ahf@irssi/staff/ahf)
- # [14:54] * Quits: Ms2ger (~Ms2ger@109.133.46.231) (Ping timeout: 252 seconds)
- # [14:54] * Joins: Ms2ger (~Ms2ger@109.133.46.231)
- # [14:55] * Krinkle is now known as Krinkle|detached
- # [14:55] * Joins: cheron (~cheron@unaffiliated/cheron)
- # [14:56] * Quits: smaug____ (~chatzilla@cs78246079.pp.htv.fi) (Read error: Operation timed out)
- # [15:14] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net)
- # [15:15] * [[zzz]] is now known as [[zz]]
- # [15:25] * Joins: ehsan (~ehsan@24-212-206-174.cable.teksavvy.com)
- # [15:25] * Quits: tomaw (tom@freenode/staff/tomaw) (*.net *.split)
- # [15:25] * Joins: tomaw (tom@freenode/staff/tomaw)
- # [15:29] * Quits: ehsan (~ehsan@24-212-206-174.cable.teksavvy.com) (Ping timeout: 252 seconds)
- # [15:35] * Quits: pluma|Zzz (~pluma@cable-78-35-101-81.netcologne.de) (Remote host closed the connection)
- # [15:41] * Quits: g4 (~g4@unaffiliated/gormer) (Ping timeout: 252 seconds)
- # [15:41] * Joins: g4 (~g4@81.27.47.158)
- # [15:41] * Quits: g4 (~g4@81.27.47.158) (Changing host)
- # [15:41] * Joins: g4 (~g4@unaffiliated/gormer)
- # [15:42] * Joins: seventh (seventh@185.29.164.111)
- # [15:50] * jtcranme1 is now known as jtcranmer
- # [15:51] * Joins: ehsan (~ehsan@24-212-206-174.cable.teksavvy.com)
- # [16:05] * Quits: Areks (~Areks@95-24-185-250.broadband.corbina.ru) (Ping timeout: 260 seconds)
- # [16:06] <MikeSmith> hmm I guess server setup's gonna require me to take time to create an init script and that kind of boring stuff
- # [16:07] <MikeSmith> rather than just running in a screen
- # [16:16] * Joins: werle (~Adium@cpe-74-71-241-147.nyc.res.rr.com)
- # [16:19] * Joins: Goplat (~goplat@reactos/developer/Goplat)
- # [16:23] * Joins: hasather (~hasather@cm-84.210.170.16.getinternet.no)
- # [16:37] * Quits: hasather (~hasather@cm-84.210.170.16.getinternet.no) (Remote host closed the connection)
- # [16:39] * Joins: jeffreyatw (~jeffreyat@199-188-192-239.PUBLIC.monkeybrains.net)
- # [16:40] * Joins: smaug____ (~chatzilla@cs78246079.pp.htv.fi)
- # [16:43] * Quits: fredy (~fredy@snf-8914.vm.okeanos.grnet.gr) (Excess Flood)
- # [16:45] * Joins: fredy (~fredy@2001:648:2ffc:1225:a800:ff:fe12:113e)
- # [16:55] * Quits: pinage404 (~pinage404@2a01:e35:8b86:e330:260a:64ff:fe63:69ab) (Quit: Screw you guys i'm going home ! KMP !)
- # [17:03] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net) (Ping timeout: 240 seconds)
- # [17:12] * Joins: Ir1sh (~Ir1sh@89.100.254.231)
- # [17:12] * Quits: frozenice (sid21176@gateway/web/irccloud.com/x-mmkakhuchpgmdbdn) (Changing host)
- # [17:12] * Joins: frozenice (sid21176@unaffiliated/fr0zenice)
- # [17:12] * Quits: frozenice (sid21176@unaffiliated/fr0zenice) (Changing host)
- # [17:12] * Joins: frozenice (sid21176@gateway/web/irccloud.com/x-mmkakhuchpgmdbdn)
- # [17:14] <SimonSapin> Is this saying it’s *not* like the header? http://whatwg.org/C#pragma-set-default-language "This pragma is almost, but not quite, entirely unlike the HTTP Content-Language header of the same name."
- # [17:14] * Quits: gavinc (~gavin@barad-dur.carothers.name) (Quit: Konversation terminated!)
- # [17:18] <Ms2ger> It's almost entirely not like it, yes
- # [17:21] <gsnedders> Hmm, does the parser now define what order parse errors occur in?
- # [17:23] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net)
- # [17:27] <SimonSapin> The "Submit Review Comment" button says I’ve been automatically CC’ed to the bug, but it’s lying
- # [17:30] * Joins: Areks (~Areks@95-24-185-250.broadband.corbina.ru)
- # [17:36] * Quits: Areks (~Areks@95-24-185-250.broadband.corbina.ru) (Ping timeout: 272 seconds)
- # [18:06] * Quits: Ir1sh (~Ir1sh@89.100.254.231) (Ping timeout: 272 seconds)
- # [18:07] * Joins: Ir1sh (~Ir1sh@89.100.254.231)
- # [18:34] * Joins: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net)
- # [18:37] * Quits: ehsan (~ehsan@24-212-206-174.cable.teksavvy.com) (Remote host closed the connection)
- # [18:37] * Joins: sankha93 (~Instantbi@fsf/emeritus/sankha93)
- # [18:43] * Joins: Lachy (~Lachy@cm-84.215.104.248.getinternet.no)
- # [18:46] * Quits: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [18:47] * Joins: weinig (~weinig@24.130.60.35)
- # [18:50] * Quits: fredy (~fredy@2001:648:2ffc:1225:a800:ff:fe12:113e) (Excess Flood)
- # [18:52] * Joins: fredy (~fredy@snf-8914.vm.okeanos.grnet.gr)
- # [18:52] * Joins: ehsan (~ehsan@24-212-206-174.cable.teksavvy.com)
- # [19:04] * Joins: clamstar (~textual@cpe-67-247-7-62.nyc.res.rr.com)
- # [19:13] * Joins: aiglesias (~aiglesias@92-195-17-190.fibertel.com.ar)
- # [19:25] * Quits: ehsan (~ehsan@24-212-206-174.cable.teksavvy.com) (Remote host closed the connection)
- # [19:31] * Joins: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net)
- # [19:38] * Joins: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net)
- # [19:41] * Quits: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net) (Quit: bholley)
- # [19:46] * Quits: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [19:49] * Quits: clamstar (~textual@cpe-67-247-7-62.nyc.res.rr.com) (Quit: Computer has gone to sleep.)
- # [19:55] * Joins: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net)
- # [20:00] <Ms2ger> Dammit python
- # [20:00] <Ms2ger> Now I'm doing "".join([]) in JS
- # [20:07] * Joins: newtron (~newtron@206-248-164-17.dsl.teksavvy.com)
- # [20:10] <jgraham> Ms2ger: You know it makes sense
- # [20:11] <ondras> String.prototype.join = function(arr) { return arr.join(this); } ?
- # [20:11] * Joins: jory (~jory@supercu.be)
- # [20:11] <jgraham> ondras: I don't think Ms2ger is *that* antisocial
- # [20:11] <Ms2ger> Ouch
- # [20:12] <ondras> :>
- # [20:14] * Joins: annevk (~annevk@2.31.25.226)
- # [20:15] * Joins: hoobdeebla (~hoobdeebl@ip70-190-42-239.ph.ph.cox.net)
- # [20:19] <smaug____> Ms2ger: you clearly should avoid that horrible horrible language called python.
- # [20:19] <Ms2ger> Oh, I thought JS :)
- # [20:19] <smaug____> hmm, could I have a goal for this q. Don't write any python code.
- # [20:22] * Quits: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [20:24] * Joins: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net)
- # [20:25] * Joins: ehsan (~ehsan@24-212-206-174.cable.teksavvy.com)
- # [20:28] * Quits: jeremyj (~jeremyj@c-24-4-202-10.hsd1.ca.comcast.net) (Client Quit)
- # [20:30] * Quits: ehsan (~ehsan@24-212-206-174.cable.teksavvy.com) (Ping timeout: 272 seconds)
- # [20:40] * Quits: smaug____ (~chatzilla@cs78246079.pp.htv.fi) (Ping timeout: 272 seconds)
- # [20:40] * Quits: annevk (~annevk@2.31.25.226) (Remote host closed the connection)
- # [20:50] * Quits: newtron (~newtron@206-248-164-17.dsl.teksavvy.com) (Remote host closed the connection)
- # [20:50] * Joins: newtron (~newtron@206-248-164-17.dsl.teksavvy.com)
- # [20:50] * Joins: svl (~me@84.127.229.157.static.user.ono.com)
- # [20:59] * Joins: jarek (~jarek@unaffiliated/jarek)
- # [21:02] * Quits: aiglesias (~aiglesias@92-195-17-190.fibertel.com.ar) (Remote host closed the connection)
- # [21:05] * Joins: annevk (~annevk@2.31.25.226)
- # [21:10] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [21:10] * Quits: werle (~Adium@cpe-74-71-241-147.nyc.res.rr.com) (Read error: Connection reset by peer)
- # [21:10] * Joins: werle (~Adium@cpe-74-71-241-147.nyc.res.rr.com)
- # [21:25] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net) (Ping timeout: 272 seconds)
- # [21:26] * Quits: jarek (~jarek@unaffiliated/jarek) (Quit: jarek)
- # [21:27] * Joins: jarek (~jarek@unaffiliated/jarek)
- # [21:32] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [21:41] * Quits: sankha93 (~Instantbi@fsf/emeritus/sankha93) (Read error: Connection reset by peer)
- # [21:42] * Joins: sankha93 (~Instantbi@fsf/emeritus/sankha93)
- # [21:44] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [21:46] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Client Quit)
- # [21:54] * Joins: ehsan (~ehsan@24-212-206-174.cable.teksavvy.com)
- # [21:57] * Quits: ehsan (~ehsan@24-212-206-174.cable.teksavvy.com) (Read error: Operation timed out)
- # [21:57] * Quits: newtron (~newtron@206-248-164-17.dsl.teksavvy.com) (Remote host closed the connection)
- # [22:07] * Joins: html (~css@unaffiliated/css)
- # [22:08] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net)
- # [22:14] * Joins: malaclyps (~Danny@173-228-80-237.dsl.static.sonic.net)
- # [22:15] * Quits: malaclyps (~Danny@173-228-80-237.dsl.static.sonic.net) (Changing host)
- # [22:15] * Joins: malaclyps (~Danny@unaffiliated/malaclyps)
- # [22:19] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [22:26] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [22:28] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [22:28] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [22:29] * Quits: weinig (~weinig@24.130.60.35) (Quit: weinig)
- # [22:31] * Quits: werle (~Adium@cpe-74-71-241-147.nyc.res.rr.com) (Quit: Leaving.)
- # [22:33] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net) (Ping timeout: 260 seconds)
- # [22:38] * Joins: werle (~Adium@cpe-74-71-241-147.nyc.res.rr.com)
- # [22:41] * Quits: sankha93 (~Instantbi@fsf/emeritus/sankha93) (Quit: Gone to save the world!)
- # [22:41] * Quits: annevk (~annevk@2.31.25.226) (Remote host closed the connection)
- # [22:46] * Quits: werle (~Adium@cpe-74-71-241-147.nyc.res.rr.com) (Quit: Leaving.)
- # [22:46] * Quits: Goplat (~goplat@reactos/developer/Goplat) (Remote host closed the connection)
- # [22:46] * jorendorff_away is now known as jorendorff
- # [22:47] * jorendorff is now known as jorendorff_away
- # [22:56] * Joins: webguynow (~webguynow@c-24-1-222-204.hsd1.il.comcast.net)
- # [22:57] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [22:58] * Joins: newtron (~newtron@206-248-164-17.dsl.teksavvy.com)
- # [22:58] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Read error: Connection reset by peer)
- # [22:58] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [23:00] * Joins: newtron_ (~newtron@206-248-164-17.dsl.teksavvy.com)
- # [23:03] * Quits: newtron (~newtron@206-248-164-17.dsl.teksavvy.com) (Ping timeout: 272 seconds)
- # [23:03] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Read error: Connection reset by peer)
- # [23:04] * Joins: werle (~Adium@cpe-74-71-241-147.nyc.res.rr.com)
- # [23:04] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [23:05] * Quits: newtron_ (~newtron@206-248-164-17.dsl.teksavvy.com) (Ping timeout: 272 seconds)
- # [23:08] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 252 seconds)
- # [23:08] * Quits: Ms2ger (~Ms2ger@109.133.46.231) (Quit: nn)
- # [23:43] * Quits: espadrine (~Thunderbi@AMontsouris-158-1-21-64.w92-128.abo.wanadoo.fr) (Ping timeout: 245 seconds)
- # [23:44] * Joins: espadrine (~Thunderbi@AMontsouris-158-1-21-64.w92-128.abo.wanadoo.fr)
- # [23:46] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [23:55] * Quits: jarek (~jarek@unaffiliated/jarek) (Remote host closed the connection)
- # Session Close: Sun Jan 05 00:00:00 2014
The end :)