Options:
- # Session Start: Sat Feb 13 00:00:00 2010
- # Session Ident: #whatwg
- # [00:08] * Joins: nessy (~Adium@124-168-170-167.dyn.iinet.net.au)
- # [00:08] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [00:11] * Joins: TheOutlawTorn (~TheOutlaw@unaffiliated/theoutlawtorn)
- # [00:13] * Quits: hz (~hz@125.166.39.13) (Quit: Computer has gone to sleep)
- # [00:21] * Quits: TheOutlawTorn (~TheOutlaw@unaffiliated/theoutlawtorn) (Quit: ChatZilla 0.9.86 [Firefox 3.6/20100115144158])
- # [00:21] * Joins: Lachy (~Lachlan@208.100.23.169)
- # [00:22] * Quits: Lachy (~Lachlan@208.100.23.169) (Client Quit)
- # [00:22] * Joins: Lachy (~Lachlan@london.perfect-privacy.com)
- # [00:32] * Quits: aroben|errands (~aroben@unaffiliated/aroben) (Read error: Connection reset by peer)
- # [00:33] * Quits: Michelangelo (~Michelang@93-42-98-120.ip86.fastwebnet.it) (Remote host closed the connection)
- # [00:34] * Quits: gavin_ (~gavin@firefox/developer/gavin) (Ping timeout: 252 seconds)
- # [00:37] <rektide> cross document messaging is only for nested documents ?
- # [00:37] <rektide> it all seems to hinge around having a window to address
- # [00:38] <rektide> i'm trying to come up with a solution for http://stackoverflow.com/questions/2236828/javascript-getting-two-sibling-windows-communicate
- # [00:39] * Joins: gavin_ (~gavin@firefox/developer/gavin)
- # [01:07] * Quits: tametick (~chatzilla@chello084114134061.3.15.vie.surfer.at) (Quit: ChatZilla 0.9.86 [Firefox 3.6/20100115132715])
- # [01:10] <rektide> postmessage is a useless pile of shit. :(
- # [01:10] <rektide> because i cant fucking talk to anyone.
- # [01:11] * Quits: bzed (~bzed@devel.recluse.de) (Ping timeout: 264 seconds)
- # [01:11] * Quits: broquaint (3a72bc5568@spc2-brig11-0-0-cust103.asfd.cable.virginmedia.com) (Ping timeout: 252 seconds)
- # [01:12] <othermaciej> the objection situation also made it to Hacker News http://news.ycombinator.com/item?id=1120394
- # [01:12] <othermaciej> (more discussion there than on reddit it seems; maybe all the cool kids left proggit)
- # [01:12] * Quits: tndH (~Rob@cpc2-leed18-0-0-cust427.leed.cable.ntl.com) (Ping timeout: 272 seconds)
- # [01:16] * Joins: bzed (~bzed@devel.recluse.de)
- # [01:19] * Joins: broquaint (b976ee1fd7@spc2-brig11-0-0-cust103.asfd.cable.virginmedia.com)
- # [01:23] * Quits: FireFly (~firefly@unaffiliated/firefly) (Quit: Leaving)
- # [01:25] * Quits: jgornick (~joe@199.199.210.66) (Quit: jgornick)
- # [01:27] * Quits: dglazkov (~dglazkov@nat/google/x-dcdutdharawnoxxg) (Quit: dglazkov)
- # [01:28] <rektide> chrome you anger me
- # [01:29] <rektide> even after window.name = "foo", from another tab doing window.open(sameUrl,"foo",null,false) tries to open a new window
- # [01:29] <rektide> i use this as my final contention for postMessage() being utterly and completely worthless. unless you open it, you cant talk to it.
- # [01:31] * Joins: tndH (~Rob@cpc2-leed18-0-0-cust427.leed.cable.ntl.com)
- # [01:40] <Philip`> rektide: It ought to work in any situation where you already have a reference to another window, I believe
- # [01:42] <Philip`> There's no guarantee that window names are unique within a browser session, so you can't use them as way to acquire references
- # [01:43] <Philip`> I guess you have to use something like localStorage if you want some shared communication medium between otherwise-independent windows
- # [01:46] <rektide> Philip`: theres no guarantee window names are unique, so you cant _rely_ on them to acquire references
- # [01:47] <rektide> however you should be able to acquire references to other windows, according to the window.open() spec
- # [01:48] <rektide> and according to my own testing, and google chrome bug 8751, chrome is currently in violation of the spec
- # [01:48] <rektide> http://code.google.com/p/chromium/issues/detail?id=8751
- # [01:50] <Philip`> I think HTML5 allows Chrome's behaviour
- # [01:51] <Philip`> http://www.whatwg.org/specs/web-apps/current-work/multipage/browsers.html#dom-open - "the user agent must first select a browsing context to navigate by applying the rules for choosing a browsing context given a browsing context name using the target argument as the name"
- # [01:51] <Philip`> http://www.whatwg.org/specs/web-apps/current-work/multipage/browsers.html#the-rules-for-choosing-a-browsing-context-given-a-browsing-context-name
- # [01:51] <Philip`> "If the given browsing context name is not _blank and there exists a browsing context whose name is the same as the given browsing context name, and the current browsing context is allowed to navigate that browsing context, and the user agent determines that the two browsing contexts are related enough that it is ok if they reach each other, then that browsing context must be the chosen one."
- # [01:52] <Philip`> The "related enough" bit allows Chrome to consider browsing contexts associated with separate browser windows to be unrelated
- # [01:58] <Philip`> (Oh, that bug points at SharedWorker which is possibly a reasonable way to communicate between independent windows)
- # [01:59] * Quits: dave_levin (~dave_levi@2620:0:1008:1101:225:ff:fef0:9a9e) (Quit: dave_levin)
- # [02:00] <rektide> yeah i'm catching up on the SharedWorker work now
- # [02:04] <rektide> where is SharedWorkers spec being worked on?
- # [02:06] * Quits: ttepasse (~ttepasse@dslb-088-077-090-093.pools.arcor-ip.net) (Quit: Verlassend)
- # [02:09] <rektide> are SharedWorkers implemented anywhere yet ?
- # [02:09] <rektide> it'd be nice if i didnt have to kludge together some monstrosity that polls the session store
- # [02:12] <Philip`> http://dev.w3.org/html5/workers/Overview.html
- # [02:12] <Philip`> http://www.whatwg.org/specs/web-workers/current-work/
- # [02:13] * Philip` has no idea about implementations
- # [02:13] * Joins: erlehmann (~erlehmann@f053001199.adsl.alicedsl.de)
- # [02:15] <othermaciej> rektide: they are implemented in WebKit nightlies
- # [02:16] <dimich> rektide: SharedWorkers are enabled in chrome 4
- # [02:18] <rektide> well, at least i have no excuse to stop coding
- # [02:18] <rektide> i still think is silly postMessage can only talk to child documents
- # [02:19] <rektide> but i can at least keep going
- # [02:26] * Quits: ap (~ap@17.246.19.5) (Quit: ap)
- # [02:42] * Quits: erikvold (~erikvold@S01060024012860e9.gv.shawcable.net) (Quit: me so sleepy)
- # [02:59] * Joins: dglazkov (~dglazkov@c-67-188-0-62.hsd1.ca.comcast.net)
- # [03:03] * Quits: KevinMarks (~KevinMark@157.22.22.46) (Quit: The computer fell asleep)
- # [03:04] * Quits: JoePeck (~JoePeck@cpe-74-69-85-249.rochester.res.rr.com) (Read error: Connection reset by peer)
- # [03:04] * Joins: JoePeck (~JoePeck@cpe-74-69-85-249.rochester.res.rr.com)
- # [03:15] * Joins: erikvold (~erikvold@S01060024012860e9.gv.shawcable.net)
- # [03:29] * Quits: gavin_ (~gavin@firefox/developer/gavin) (Ping timeout: 264 seconds)
- # [03:34] * Joins: gavin_ (~gavin@firefox/developer/gavin)
- # [03:49] * Quits: othermaciej (~mjs@17.246.17.80) (Quit: othermaciej)
- # [03:51] * Joins: Traveler-- (~traveler-@host59-230-dynamic.40-79-r.retail.telecomitalia.it)
- # [03:51] <Traveler--> hello
- # [03:51] <Traveler--> Anybody online in here?
- # [04:00] * Quits: giroro_ (Ruetobas@114-32-107-228.HINET-IP.hinet.net) (Read error: Connection reset by peer)
- # [04:05] * Quits: dglazkov (~dglazkov@c-67-188-0-62.hsd1.ca.comcast.net) (Quit: dglazkov)
- # [04:07] * Quits: grimboy (~grimboy@bcm-131-111-216-247.girton.cam.ac.uk) (Remote host closed the connection)
- # [04:17] * Quits: jwalden (~waldo@nat/mozilla/x-dysdercyaaewsepz) (Quit: home)
- # [04:17] * Quits: Traveler-- (~traveler-@host59-230-dynamic.40-79-r.retail.telecomitalia.it) (Quit: Java user signed off)
- # [04:17] * Quits: nattokirai (~nattokira@y226086.dynamic.ppp.asahi-net.or.jp) (Quit: nattokirai)
- # [04:20] * Quits: ivan``` (~ivan@adsl-71-142-225-118.dsl.scrm01.pacbell.net) (Quit: Coyote finally caught me)
- # [04:24] * Joins: s|k (~apphacker@unaffiliated/sk/x-5968384)
- # [04:25] * Quits: drunknbass_work (~aaron@pool-71-106-110-90.lsanca.dsl-w.verizon.net) (Quit: drunknbass_work)
- # [04:26] * Joins: paradisaeidae (~chatzilla@r125-63-186-202.cpe.unwired.net.au)
- # [04:30] * Quits: openstandards (~openstand@78.143.215.162) (Read error: Operation timed out)
- # [04:37] * Quits: paradisaeidae (~chatzilla@r125-63-186-202.cpe.unwired.net.au) (Read error: Connection reset by peer)
- # [04:40] * Joins: paradisaeidae (~chatzilla@r125-63-186-202.cpe.unwired.net.au)
- # [04:59] * Joins: wakaba_ (~wakaba_@122.139.210.220.dy.bbexcite.jp)
- # [05:03] * Joins: othermaciej (~mjs@c-69-181-42-237.hsd1.ca.comcast.net)
- # [05:16] * Quits: gavin_ (~gavin@firefox/developer/gavin) (Ping timeout: 260 seconds)
- # [05:17] * Joins: gavin_ (~gavin@firefox/developer/gavin)
- # [05:17] * Quits: erlehmann (~erlehmann@f053001199.adsl.alicedsl.de) (Ping timeout: 276 seconds)
- # [05:28] * Joins: yutak_home (~kee@N038037.ppp.dion.ne.jp)
- # [05:36] * Joins: annodomini (~lambda@wikipedia/lambda)
- # [05:53] * Quits: TabAtkins (~chatzilla@70-139-15-246.lightspeed.rsbgtx.sbcglobal.net) (Read error: Connection reset by peer)
- # [05:57] * Quits: gavin_ (~gavin@firefox/developer/gavin) (Ping timeout: 264 seconds)
- # [05:58] * Joins: gavin_ (~gavin@firefox/developer/gavin)
- # [05:59] * Joins: MikeSmithX (~MikeSmith@EM114-48-255-74.pool.e-mobile.ne.jp)
- # [06:03] * Quits: MikeSmith (~MikeSmith@EM114-48-150-191.pool.e-mobile.ne.jp) (Ping timeout: 272 seconds)
- # [06:07] * Quits: yutak_home (~kee@N038037.ppp.dion.ne.jp) (Quit: Ex-Chat)
- # [06:14] * Quits: Amorphous (jan@unaffiliated/amorphous) (Ping timeout: 256 seconds)
- # [06:27] * ojan is now known as ojan_away
- # [06:28] * Joins: Amorphous (jan@unaffiliated/amorphous)
- # [06:50] * Quits: gavin_ (~gavin@firefox/developer/gavin) (Ping timeout: 256 seconds)
- # [06:50] * Joins: gavin_ (~gavin@firefox/developer/gavin)
- # [06:55] * Joins: jwalden (~waldo@c-98-248-40-206.hsd1.ca.comcast.net)
- # [06:59] * Joins: TheOutlawTorn (~TheOutlaw@unaffiliated/theoutlawtorn)
- # [06:59] <TheOutlawTorn> Good morning.
- # [07:08] * Joins: nattokirai (~nattokira@y226086.dynamic.ppp.asahi-net.or.jp)
- # [07:31] * Quits: TheOutlawTorn (~TheOutlaw@unaffiliated/theoutlawtorn) (Quit: ChatZilla 0.9.86 [Firefox 3.6/20100115144158])
- # [07:43] * Joins: abarth (~abarth@c-98-210-108-185.hsd1.ca.comcast.net)
- # [07:44] * Quits: Lerc (~Lerc@121-72-130-30.dsl.telstraclear.net) (Ping timeout: 276 seconds)
- # [07:49] * Joins: Lerc (~Lerc@121-72-131-101.dsl.telstraclear.net)
- # [08:02] * Quits: annodomini (~lambda@wikipedia/lambda) (Quit: annodomini)
- # [08:06] * Quits: quuxman (foobar@174-21-98-180.tukw.qwest.net) (Ping timeout: 265 seconds)
- # [08:07] * Joins: quuxman (foobar@97-113-167-22.tukw.qwest.net)
- # [08:09] * Quits: s|k (~apphacker@unaffiliated/sk/x-5968384) (Ping timeout: 272 seconds)
- # [08:28] * Joins: KevinMarks (~KevinMark@c-67-164-13-6.hsd1.ca.comcast.net)
- # [08:34] * Quits: jwalden (~waldo@c-98-248-40-206.hsd1.ca.comcast.net) (Quit: ChatZilla 0.9.85-rdmsoft [XULRunner 1.9.2/20100122095031])
- # [08:50] * Joins: virtuelv (~virtuelv_@162.179.251.212.customer.cdi.no)
- # [08:52] * Quits: Utkarsh (~admin@117.201.80.100) (Ping timeout: 256 seconds)
- # [08:53] * Quits: paradisaeidae (~chatzilla@r125-63-186-202.cpe.unwired.net.au) (Ping timeout: 245 seconds)
- # [08:55] * Quits: gavin_ (~gavin@firefox/developer/gavin) (Ping timeout: 264 seconds)
- # [08:58] * Joins: Utkarsh (~admin@117.201.87.173)
- # [08:58] * Joins: gavin_ (~gavin@firefox/developer/gavin)
- # [09:40] * Quits: JonathanNeal (~JonathanN@99-59-124-67.lightspeed.irvnca.sbcglobal.net) (Read error: Connection reset by peer)
- # [09:42] * Joins: openstandards (~openstand@78.143.215.162)
- # [09:57] * Joins: danbri (~danbri@ip176-48-210-87.adsl2.static.versatel.nl)
- # [09:57] * Quits: danbri (~danbri@ip176-48-210-87.adsl2.static.versatel.nl) (Changing host)
- # [09:57] * Joins: danbri (~danbri@unaffiliated/danbri)
- # [10:17] * Quits: Utkarsh (~admin@117.201.87.173) (Ping timeout: 256 seconds)
- # [10:23] * Joins: Utkarsh (~admin@117.201.83.143)
- # [10:38] * Joins: maikmerten (~maikmerte@port-92-201-66-64.dynamic.qsc.de)
- # [11:01] * Joins: wycats (~yehudakat@64.134.222.102)
- # [11:01] <wycats> Hixie: ye be aboot?
- # [11:02] <Hixie> hey
- # [11:03] * Quits: gavin_ (~gavin@firefox/developer/gavin) (Ping timeout: 252 seconds)
- # [11:03] <wycats> I'm working on a project to create an OSS book toolchain and I got a (long) email from a guy in the Ruby community who suggests just using HTML5
- # [11:03] <wycats> was curious if you consider such a thing an actual goal of HTML5
- # [11:04] <Hixie> you're asking if HTML would be an adequate authoring format for a book?
- # [11:04] <wycats> yes
- # [11:04] <wycats> HTML4 is not
- # [11:05] <wycats> I had started to build my own markup and this guy (rightly) pointed out that perhaps HTML5 is already suitable
- # [11:06] <Philip`> Why not use something that's designed for that purpose?
- # [11:06] <Philip`> like LaTeX or DocBook or Word or whatever
- # [11:06] <wycats> Philip`: LaTeX is unpleasant to work with
- # [11:06] <wycats> Word is not suitable for version control
- # [11:08] * Joins: gavin_ (~gavin@firefox/developer/gavin)
- # [11:08] <Hixie> I was about to say that I thought HTML4 was fine for writing a book, personally
- # [11:09] <Hixie> Hakon and Bert wrote their CSS book in HTML
- # [11:09] <Hixie> Mark is writing his HTML5 book in HTML
- # [11:11] <wycats> Hixie: there are a number of new HTML5 elements that are particularly helpful
- # [11:12] <wycats> the one thing I'm missing -- perhaps you can provide guidance -- is a way to say that some <code> is actually stored elsewhere
- # [11:12] <wycats> so I can stick my code in a VCS and have a build process pull them in
- # [11:12] <Hixie> i just use <!--INCLUDE ...path...-->
- # [11:12] <Hixie> or some such
- # [11:12] <wycats> Hixie: hm
- # [11:12] <Hixie> for example the HTML5 spec pulls in the examples from http://whatwg.org/demos/
- # [11:13] <wycats> seems non-semantic :P
- # [11:13] <Hixie> (not all of them, but some)
- # [11:13] <Hixie> "semantic"?
- # [11:13] <wycats> Hixie: I was just being annoying for no reason
- # [11:13] <Hixie> heh
- # [11:13] <wycats> Hixie: there's no way to express it without comments?
- # [11:13] <wycats> perhaps an <a>?
- # [11:14] <Hixie> if it's an authoring format that you preprocess before you publish, you can express it however you like
- # [11:14] <Hixie> because it's effectively just your proprietary format
- # [11:14] <wycats> yep
- # [11:14] <wycats> I'm my own UA ;)
- # [11:16] <wycats> <pre data-ref=... data-file=...> or somesuch
- # [11:17] <wycats> I know! I can use RDFa ;) ;)
- # [11:19] <Hixie> RDFa and microdata wouldn't be good for this because they don't correspond to specific parts of the document
- # [11:20] <Hixie> data-* wouldn't be bad
- # [11:20] <wycats> Hixie: yeah
- # [11:20] <wycats> esp. in combo with the pre tag
- # [11:20] <wycats> which I could use for inline stuff if I didn't want to bother with linking to a file
- # [11:25] <Philip`> Use <xmp> :-)
- # [11:30] <wycats> <xmp>?
- # [11:30] <wycats> omg adobe
- # [11:36] * Quits: wycats (~yehudakat@64.134.222.102) (Quit: wycats)
- # [11:40] * Joins: JonathanNeal (~JonathanN@99-59-124-67.lightspeed.irvnca.sbcglobal.net)
- # [11:41] * Quits: Utkarsh (~admin@117.201.83.143) (Ping timeout: 272 seconds)
- # [11:46] * Joins: tametick (~chatzilla@chello084114134061.3.15.vie.surfer.at)
- # [11:54] * Quits: othermaciej (~mjs@c-69-181-42-237.hsd1.ca.comcast.net) (Ping timeout: 256 seconds)
- # [11:57] * Joins: wycats (~yehudakat@173.150.70.75)
- # [12:02] * Quits: MikeSmithX (~MikeSmith@EM114-48-255-74.pool.e-mobile.ne.jp) (Ping timeout: 245 seconds)
- # [12:08] * Joins: MikeSmithX (~MikeSmith@EM114-49-11-80.pool.e-mobile.ne.jp)
- # [12:09] * Joins: ROBOd (~robod@89.122.216.38)
- # [12:10] <Philip`> wycats: It's just like <pre> but without having to escape the content
- # [12:10] <Philip`> Nothing to do with Adobe
- # [12:11] <wycats> Philip`: It's in HTML5?
- # [12:11] <wycats> I don't see it
- # [12:11] <Philip`> It's been deprecated for decades
- # [12:11] <Hixie> damn, mjs left
- # [12:11] <wycats> apparently deprecated since 3.2
- # [12:11] <wycats> :P
- # [12:11] <Philip`> (but still works)
- # [12:12] <wycats> hm... it actually seems good
- # [12:12] <wycats> why was it deprecated?
- # [12:13] <Philip`> Maybe because you can't put the string "</xmp>" inside an xmp element, and so the HTML people preferred to go with the more powerful <pre> instead
- # [12:14] <Philip`> It's still kind of useful for quick tests and private documents and things, though :-)
- # [12:15] <wycats> Philip`: having to escape <pre>s makes them much less useful
- # [12:15] <Philip`> and much easier to remember than XML's <![CDATA[...]]>
- # [12:15] <wycats> because you can't copy/paste large chunks of code
- # [12:16] <Philip`> I suppose <pre> is okay if you have a text editor with an "escape selected text" feature
- # [12:16] <Philip`> which any decent HTML editing environment ought to have
- # [12:16] <wycats> hehe
- # [12:16] <wycats> sure
- # [12:16] * Philip` has never had a decent HTML editing environment
- # [12:17] <wycats> you have to unescape to edit though
- # [12:17] <wycats> and it's less readable in raw form
- # [12:45] * Joins: Maurice (copyman@5ED548D4.cable.ziggo.nl)
- # [12:45] <wycats> Hixie: I'm going to bang out a bunch more comments over the weekend -- any luck on getting the comment form to open tickets as me?
- # [13:07] <Hixie> i made it so that if you have an account with the specification annotation system it'll mention your e-mail address and CC you on the bug
- # [13:09] * Quits: gavin_ (~gavin@firefox/developer/gavin) (Ping timeout: 272 seconds)
- # [13:09] * Joins: gavin_ (~gavin@firefox/developer/gavin)
- # [13:22] * Joins: telemachus (~telemachu@user-1087mcl.cable.mindspring.com)
- # [13:22] * Joins: surkov (~surkov@client-207-42.sibtele.com)
- # [13:42] * Joins: FireFly (~firefly@unaffiliated/firefly)
- # [13:42] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [13:52] * Quits: telemachus (~telemachu@user-1087mcl.cable.mindspring.com) (Quit: Leaving...)
- # [13:56] * Joins: mlpug (~mlpug@a88-115-164-40.elisa-laajakaista.fi)
- # [14:06] * Joins: Utkarsh (~admin@117.201.90.73)
- # [14:08] * Quits: Rik` (~Rik`@pha75-2-81-57-187-57.fbx.proxad.net) (Ping timeout: 240 seconds)
- # [14:09] * Joins: s|k (~apphacker@c-24-5-241-122.hsd1.ca.comcast.net)
- # [14:10] * Joins: Rik` (~Rik`@pha75-2-81-57-187-57.fbx.proxad.net)
- # [14:10] * Quits: mlpug (~mlpug@a88-115-164-40.elisa-laajakaista.fi) (Remote host closed the connection)
- # [14:13] * Quits: Utkarsh (~admin@117.201.90.73) (Ping timeout: 256 seconds)
- # [14:16] * Joins: Mustafa51 (~mustafa@122.174.179.36)
- # [14:16] * Parts: Mustafa51 (~mustafa@122.174.179.36)
- # [14:19] * Joins: Utkarsh (~admin@117.201.88.96)
- # [14:28] * Quits: nessy (~Adium@124-168-170-167.dyn.iinet.net.au) (Quit: Leaving.)
- # [14:38] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [14:52] * Quits: gavin_ (~gavin@firefox/developer/gavin) (Ping timeout: 265 seconds)
- # [14:58] * Joins: gavin_ (~gavin@firefox/developer/gavin)
- # [14:59] * virtuelv uses a couple of komodo macros to escape/unescape
- # [15:01] <virtuelv> the other convenient thing about it is that it's based on XUL, so I have a DOM I can wrangle
- # [15:02] * Quits: surkov (~surkov@client-207-42.sibtele.com) (Quit: surkov)
- # [15:04] * Quits: JoePeck (~JoePeck@cpe-74-69-85-249.rochester.res.rr.com) (Read error: Connection reset by peer)
- # [15:04] * Joins: JoePeck (~JoePeck@cpe-74-69-85-249.rochester.res.rr.com)
- # [15:13] * Joins: hz (~hz@125.166.39.13)
- # [15:14] * Joins: hazmi (~hz@125.166.39.13)
- # [15:19] * Quits: GarethAdams|Home (~GarethAda@pdpc/supporter/active/GarethAdams) (Quit: GarethAdams|Home)
- # [15:24] * Quits: smaug (~chatzilla@cs181150024.pp.htv.fi) (Ping timeout: 245 seconds)
- # [15:31] * Joins: annodomini (~lambda@c-75-69-96-104.hsd1.nh.comcast.net)
- # [15:31] * Quits: annodomini (~lambda@c-75-69-96-104.hsd1.nh.comcast.net) (Changing host)
- # [15:31] * Joins: annodomini (~lambda@wikipedia/lambda)
- # [15:33] * Parts: hz (~hz@125.166.39.13)
- # [15:35] * Joins: TabAtkins (~chatzilla@70-139-15-246.lightspeed.rsbgtx.sbcglobal.net)
- # [15:44] * Joins: maikmerten_ (~maikmerte@port-92-201-212-48.dynamic.qsc.de)
- # [15:45] * Joins: GarethAdams|Home (~GarethAda@pdpc/supporter/active/GarethAdams)
- # [15:45] * Quits: GarethAdams|Home (~GarethAda@pdpc/supporter/active/GarethAdams) (Client Quit)
- # [15:45] * Quits: Utkarsh (~admin@117.201.88.96) (Ping timeout: 256 seconds)
- # [15:46] * Quits: maikmerten (~maikmerte@port-92-201-66-64.dynamic.qsc.de) (Ping timeout: 256 seconds)
- # [15:50] * Joins: Utkarsh (~admin@117.201.86.87)
- # [15:52] * Quits: Rik` (~Rik`@pha75-2-81-57-187-57.fbx.proxad.net) (Ping timeout: 256 seconds)
- # [15:53] * Joins: Rik` (~Rik`@pha75-2-81-57-187-57.fbx.proxad.net)
- # [16:07] <s|k> komodo macros?
- # [16:19] * Joins: smaug (~chatzilla@cs181150024.pp.htv.fi)
- # [16:22] * Quits: FireFly (~firefly@unaffiliated/firefly) (Quit: Leaving)
- # [16:23] * Joins: FireFly (~firefly@unaffiliated/firefly)
- # [17:04] * Quits: annodomini (~lambda@wikipedia/lambda) (Quit: annodomini)
- # [17:07] * Quits: Utkarsh (~admin@117.201.86.87) (Read error: Connection reset by peer)
- # [17:13] * Quits: gavin_ (~gavin@firefox/developer/gavin) (Ping timeout: 265 seconds)
- # [17:16] * Joins: mitsuhiko (~mitsuhiko@ubuntu/member/mitsuhiko)
- # [17:16] * Joins: gavin_ (~gavin@firefox/developer/gavin)
- # [17:19] <asmodai> mitsuhiko: So what brings you here? :P
- # [17:20] * Joins: dbaron (~dbaron@c-69-140-1-234.hsd1.va.comcast.net)
- # [17:21] * Joins: paul_irish (~paul_iris@c-71-192-163-128.hsd1.nh.comcast.net)
- # [17:27] * Quits: tametick (~chatzilla@chello084114134061.3.15.vie.surfer.at) (Remote host closed the connection)
- # [17:33] * Joins: tametick (~chatzilla@chello084114134061.3.15.vie.surfer.at)
- # [17:36] * Joins: zcorpan__ (~zcorpan@c-ca9be355.410-6-64736c14.cust.bredbandsbolaget.se)
- # [17:46] * Quits: Lachy (~Lachlan@london.perfect-privacy.com) (Quit: Leaving)
- # [17:49] * Quits: TabAtkins (~chatzilla@70-139-15-246.lightspeed.rsbgtx.sbcglobal.net) (Ping timeout: 264 seconds)
- # [17:50] * Quits: mitsuhiko (~mitsuhiko@ubuntu/member/mitsuhiko) (Excess Flood)
- # [17:51] * Joins: mitsuhiko (~mitsuhiko@ubuntu/member/mitsuhiko)
- # [17:54] * Joins: daedb_ (~daed@h11n1fls34o986.telia.com)
- # [17:55] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [17:57] * Quits: daedb (~daed@h11n1fls34o986.telia.com) (Ping timeout: 240 seconds)
- # [18:03] * Quits: MikeSmithX (~MikeSmith@EM114-49-11-80.pool.e-mobile.ne.jp) (Ping timeout: 258 seconds)
- # [18:08] * Joins: MikeSmithX (~MikeSmith@EM114-48-37-188.pool.e-mobile.ne.jp)
- # [18:11] * Joins: annodomini (~lambda@wikipedia/lambda)
- # [18:12] * Quits: zcorpan__ (~zcorpan@c-ca9be355.410-6-64736c14.cust.bredbandsbolaget.se) (Quit: zcorpan__)
- # [18:14] * Joins: Lachy (~Lachlan@brisbane.perfect-privacy.com)
- # [18:21] * Quits: Lachy (~Lachlan@brisbane.perfect-privacy.com) (Ping timeout: 265 seconds)
- # [18:22] * Joins: mlpug (~mlpug@a88-115-164-40.elisa-laajakaista.fi)
- # [18:57] * Quits: Maurice (copyman@5ED548D4.cable.ziggo.nl)
- # [19:16] * Joins: Lachy (~Lachlan@london.perfect-privacy.com)
- # [19:19] * Joins: erlehmann (~erlehmann@82.113.106.108)
- # [19:20] * Quits: workmad3 (~workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com) (Remote host closed the connection)
- # [19:26] * Joins: seventh (seventh@189.59.166.95)
- # [19:29] * Quits: gavin_ (~gavin@firefox/developer/gavin) (Ping timeout: 272 seconds)
- # [19:33] * Joins: gavin_ (~gavin@firefox/developer/gavin)
- # [19:35] * Quits: mitsuhiko (~mitsuhiko@ubuntu/member/mitsuhiko) (Excess Flood)
- # [19:36] * Joins: mitsuhiko (~mitsuhiko@ubuntu/member/mitsuhiko)
- # [19:40] * Joins: gunderwonder (~gunderwon@191.80-202-79.nextgentel.com)
- # [19:42] * Quits: mitsuhiko (~mitsuhiko@ubuntu/member/mitsuhiko) (Excess Flood)
- # [19:44] * Joins: mitsuhiko (~mitsuhiko@ubuntu/member/mitsuhiko)
- # [19:49] * Quits: paul_irish (~paul_iris@c-71-192-163-128.hsd1.nh.comcast.net) (Remote host closed the connection)
- # [20:03] * Quits: wycats (~yehudakat@173.150.70.75) (Quit: wycats)
- # [20:09] * Joins: wycats (~yehudakat@72-57-138-168.pools.spcsdns.net)
- # [20:11] * Quits: mitsuhiko (~mitsuhiko@ubuntu/member/mitsuhiko) (Excess Flood)
- # [20:12] * Joins: mitsuhiko (~mitsuhiko@ubuntu/member/mitsuhiko)
- # [20:13] * Quits: shepazu (~schepers@adsl-221-77-16.rmo.bellsouth.net) (Ping timeout: 276 seconds)
- # [20:19] * Joins: gratz|home (~gratz@cpc3-brig15-2-0-cust237.3-3.cable.virginmedia.com)
- # [20:20] * Quits: mitsuhiko (~mitsuhiko@ubuntu/member/mitsuhiko) (Excess Flood)
- # [20:22] * Joins: shepazu (~schepers@adsl-221-77-16.rmo.bellsouth.net)
- # [20:23] * Joins: mitsuhiko (~mitsuhiko@ubuntu/member/mitsuhiko)
- # [20:31] * Quits: erlehmann (~erlehmann@82.113.106.108) (Quit: Ex-Chat)
- # [20:34] * Quits: gratz|home (~gratz@cpc3-brig15-2-0-cust237.3-3.cable.virginmedia.com) (Quit: Leaving)
- # [20:43] * Quits: dbaron (~dbaron@c-69-140-1-234.hsd1.va.comcast.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [20:56] * Quits: gavin_ (~gavin@firefox/developer/gavin) (Ping timeout: 240 seconds)
- # [20:57] * Joins: gavin_ (~gavin@firefox/developer/gavin)
- # [20:58] * Joins: paul_irish (~paul_iris@c-71-192-163-128.hsd1.nh.comcast.net)
- # [21:04] * Quits: Rik` (~Rik`@pha75-2-81-57-187-57.fbx.proxad.net) (Quit: Rik`)
- # [22:00] * Joins: erlehmann (~erlehmann@82.113.106.108)
- # [22:07] * Quits: maikmerten_ (~maikmerte@port-92-201-212-48.dynamic.qsc.de) (Remote host closed the connection)
- # [22:10] * Quits: wycats (~yehudakat@72-57-138-168.pools.spcsdns.net) (Remote host closed the connection)
- # [22:10] * Joins: wycats (~yehudakat@c-98-210-206-205.hsd1.ca.comcast.net)
- # [22:13] * Quits: erlehmann (~erlehmann@82.113.106.108) (Read error: No route to host)
- # [22:15] * Joins: erlehmann (~erlehmann@82.113.106.108)
- # [22:16] * Quits: wycats (~yehudakat@c-98-210-206-205.hsd1.ca.comcast.net) (Ping timeout: 252 seconds)
- # [22:22] * Quits: mlpug (~mlpug@a88-115-164-40.elisa-laajakaista.fi) (Remote host closed the connection)
- # [22:22] * Joins: wycats (~yehudakat@c-76-126-116-8.hsd1.ca.comcast.net)
- # [22:33] * Joins: Hiall (~bleh@5ac2857a.bb.sky.com)
- # [22:49] * Quits: Lerc (~Lerc@121-72-131-101.dsl.telstraclear.net) (Ping timeout: 245 seconds)
- # [22:52] * Quits: ROBOd (~robod@89.122.216.38) (Quit: http://www.robodesign.ro)
- # [22:55] * Joins: Lerc (~Lerc@121-74-1-66.telstraclear.net)
- # [23:02] * Quits: gavin_ (~gavin@firefox/developer/gavin) (Ping timeout: 276 seconds)
- # [23:05] * Joins: gavin_ (~gavin@firefox/developer/gavin)
- # [23:12] * Joins: nessy (~Adium@124-168-170-167.dyn.iinet.net.au)
- # [23:17] * Quits: erlehmann (~erlehmann@82.113.106.108) (Quit: Ex-Chat)
- # [23:17] * Joins: erlehmann (~erlehmann@82.113.106.108)
- # [23:29] * Quits: nattokirai (~nattokira@y226086.dynamic.ppp.asahi-net.or.jp) (Quit: nattokirai)
- # [23:29] * Joins: workmad3 (~workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com)
- # [23:41] * Joins: ttepasse (~ttepasse@dslb-084-060-049-003.pools.arcor-ip.net)
- # [23:42] * Quits: workmad3 (~workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com) (Remote host closed the connection)
- # [23:45] * Joins: Sidnicious (~Sidney@pdpc/supporter/professional/sidney)
- # Session Close: Sun Feb 14 00:00:00 2010
The end :)