Options:
- # Session Start: Mon Apr 18 00:00:00 2011
- # Session Ident: #whatwg
- # [00:00] * Joins: roc (~chatzilla@203-97-204-82.dsl.clear.net.nz)
- # [00:12] * Quits: matijsb (~matijsb@5353CD69.cm-6-4d.dynamic.ziggo.nl) (Quit: Leaving.)
- # [00:19] * Joins: zum (~antti@xdsl-83-150-88-4.nebulazone.fi)
- # [00:23] * Joins: jgv (~jgv@184.152.75.83)
- # [00:34] <jacobolus> is there a good way to clear a <canvas> without altering its context?
- # [00:36] <jacobolus> I guess I can do something like save context, zero out transform, clearRect the whole width/height, restore context
- # [00:38] * Quits: aroben (~aroben@71.58.77.15) (Quit: aroben)
- # [00:38] <bga_> canvas.width = canvas.width
- # [00:39] <jacobolus> bga_: that kills my context
- # [00:39] <bga_> dirty hack by @kangax
- # [00:39] <jacobolus> bga_: I don't think I can do a save/restore around that can I?
- # [00:39] <jacobolus> I guess I can try and see
- # [00:40] <jacobolus> also, no longer too much a "dirty hack" when it's widely documented as the right way to do it :)
- # [00:41] <bga_> jacobolus gc do not kills your context => you will not lost it
- # [00:41] <bga_> i guess
- # [00:41] <jacobolus> I'm not sure what you mean
- # [00:42] <bga_> gc == garbage collector
- # [00:42] <jacobolus> if I do canvas.width = canvas.width, at least in Safari, my transform matrix is reset to the identity
- # [00:42] <bga_> heh
- # [00:43] <jacobolus> I can't save/restore around it either
- # [00:43] <jacobolus> so I'm going to try my way
- # [00:43] <jacobolus> :)
- # [00:43] * Joins: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net)
- # [00:44] <bga_> but you can get second clear context :)
- # [00:44] <bga_> may be its faster way
- # [00:44] <jacobolus> hm?
- # [00:44] <jacobolus> not sure what you mean
- # [00:45] <jacobolus> I have a context stack that I don't want to destroy, I just want to clear the whole canvas image
- # [00:45] <bga_> one canvas can have multi contexes
- # [00:45] <bga_> with different states
- # [00:46] <bga_> and types(2в/3d)
- # [00:46] <jacobolus> I can have multiple 2d contexts on a canvas?
- # [00:46] <bga_> *2d
- # [00:46] <bga_> yeah
- # [00:46] <jacobolus> how does that work?
- # [00:47] <jacobolus> I don't see any mechanism in the spec for switching contexts
- # [00:47] <bga_> sec
- # [00:49] <bga_> oh
- # [00:49] <bga_> fail in chome
- # [00:49] <bga_> context is singleton :(
- # [00:50] * Joins: homata_ (~homata_@58x158x182x50.ap58.ftth.ucom.ne.jp)
- # [00:50] <bga_> soкry
- # [00:50] <bga_> *sorry
- # [00:51] * Joins: homata (~homata@58x158x182x50.ap58.ftth.ucom.ne.jp)
- # [00:51] * Quits: Stikki (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi) (Ping timeout: 240 seconds)
- # [00:52] * Joins: ryanseddon (~RSeddon@202.126.98.210)
- # [00:53] <bga_> jacobolus another way to avoid save/restore state is do `clearRect` with infinite bounds %)
- # [00:54] * Quits: homata_ (~homata_@58x158x182x50.ap58.ftth.ucom.ne.jp) (Remote host closed the connection)
- # [01:01] * Quits: Amorphous (jan@unaffiliated/amorphous) (Ping timeout: 240 seconds)
- # [01:04] * Joins: s21n (~s21n@87-205-136-206.adsl.inetia.pl)
- # [01:04] * Quits: s21n (~s21n@87-205-136-206.adsl.inetia.pl) (Changing host)
- # [01:04] * Joins: s21n (~s21n@unaffiliated/s21n)
- # [01:08] <jacobolus> bga_: how do you do infinite bounds?
- # [01:08] <jacobolus> does that work?
- # [01:08] <jacobolus> as in context.clearRect(-Infinity, -Infinity, Infinity, Infinity) ??
- # [01:08] <bga_> yeah
- # [01:09] <jacobolus> that works everywhere?
- # [01:09] <jacobolus> seems like an edge case that could easily blow up someplace
- # [01:09] * Joins: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net)
- # [01:13] <jcranmer> presumably most implementations would work by comparison
- # [01:14] <jcranmer> if they convert to internal integer coordinates, then it should map to max/min values
- # [01:14] <jacobolus> this seems to work just fine: http://pastie.textmate.org/1805281
- # [01:16] * Joins: Amorphous (jan@unaffiliated/amorphous)
- # [01:20] <bga_> 'infinite' trick doesnt works in chrome and opera. fail #2 :)
- # [01:23] * Quits: homata (~homata@58x158x182x50.ap58.ftth.ucom.ne.jp) (Ping timeout: 260 seconds)
- # [01:30] <Philip`> Non-finite or very large or (in some cases) quite large coordinates aren't at all interoperable
- # [01:31] <Philip`> e.g. some implementations seem to convert to some fixed-point data type
- # [01:42] * Quits: aho (~nya@fuld-590c75d0.pool.mediaWays.net) (Quit: EXEC_over.METHOD_SUBLIMATION)
- # [01:46] * Joins: boblet (~boblet@p2153-ipbf908osakakita.osaka.ocn.ne.jp)
- # [01:52] * Joins: homata (~homata@58x158x182x50.ap58.ftth.ucom.ne.jp)
- # [01:53] * Quits: homata (~homata@58x158x182x50.ap58.ftth.ucom.ne.jp) (Client Quit)
- # [01:59] * Joins: homata (~homata@58x158x182x50.ap58.ftth.ucom.ne.jp)
- # [01:59] * Joins: KaOSoFt_ (~KaOSoFt@201.228.41.153)
- # [01:59] * Quits: KaOSoFt (~KaOSoFt@unaffiliated/kaosoft) (Ping timeout: 264 seconds)
- # [02:00] * Quits: FastJack (~fastjack@dumpstr.net) (Read error: Operation timed out)
- # [02:04] * Quits: KaOSoFt_ (~KaOSoFt@201.228.41.153) (Ping timeout: 246 seconds)
- # [02:07] * Quits: homata (~homata@58x158x182x50.ap58.ftth.ucom.ne.jp) (Ping timeout: 240 seconds)
- # [02:07] * Joins: homata___ (~homata_@58x158x182x50.ap58.ftth.ucom.ne.jp)
- # [02:26] * Joins: KaOSoFt (~KaOSoFt@unaffiliated/kaosoft)
- # [02:29] * Joins: CvP (~CvP@123.49.21.95)
- # [02:32] * Quits: dydx (~dydz@76.228.82.246) (Quit: dydx)
- # [02:32] * Joins: yijun (~yijun@2001:250:208:1666:21f:f3ff:fe52:9714)
- # [02:36] * Quits: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net) (Quit: chriseppstein)
- # [02:37] * Quits: KaOSoFt (~KaOSoFt@unaffiliated/kaosoft) (Ping timeout: 250 seconds)
- # [02:39] * Joins: macpherson (~macpherso@nat/google/x-fjytifugsrtnreoo)
- # [02:42] * Quits: tw2113 (~tw2113@fedora/tw2113) (Remote host closed the connection)
- # [02:57] * Joins: wakaba_ (~wakaba_@122x221x184x68.ap122.ftth.ucom.ne.jp)
- # [02:59] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [03:00] * Joins: homata (~homata@58x158x182x50.ap58.ftth.ucom.ne.jp)
- # [03:07] * Quits: ttepasse (~ttepasse@ip-109-90-161-169.unitymediagroup.de) (Quit: Now time for the weather. Tiffany?)
- # [03:15] * Joins: boaz (~boaz@205.248.100.252)
- # [03:17] * Quits: dbaron (~dbaron@173-228-28-197.dsl.dynamic.sonic.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [03:18] * Joins: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net)
- # [03:18] * Quits: boaz (~boaz@205.248.100.252) (Client Quit)
- # [03:20] * Joins: aroben (~aroben@c-71-58-77-15.hsd1.pa.comcast.net)
- # [03:34] * Joins: boaz (~boaz@205.248.100.252)
- # [03:37] * Quits: MikeSmith (~MikeSmith@58x157x21x205.ap58.ftth.ucom.ne.jp) (Quit: MikeSmith)
- # [03:48] * Quits: boaz (~boaz@205.248.100.252) (Quit: boaz)
- # [03:48] * bga_ is now known as bga_|away
- # [03:49] * Quits: bga_|away (~bga@91.122.51.148) (Read error: Connection reset by peer)
- # [03:58] * Joins: agektmr (~Adium@2401:fa00:4:1012:fa1e:dfff:fee6:d74e)
- # [04:01] * Joins: boaz (~boaz@205.248.100.252)
- # [04:02] * Quits: Rik` (~Rik`@2a01:e34:ec0f:1570:daa2:5eff:fe97:85ee) (Ping timeout: 264 seconds)
- # [04:02] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [04:03] * Quits: boaz (~boaz@205.248.100.252) (Client Quit)
- # [04:04] * Quits: aroben (~aroben@c-71-58-77-15.hsd1.pa.comcast.net) (Quit: aroben)
- # [04:05] * Quits: ZombieLoffe (~e@unaffiliated/zombieloffe)
- # [04:12] * Joins: MikeSmith (~MikeSmith@EM1-113-49-215.pool.e-mobile.ne.jp)
- # [04:13] * Joins: shiawuen (~shiawuent@bb115-66-151-94.singnet.com.sg)
- # [04:13] * Joins: cedricv (~cedric@175.156.55.35)
- # [04:23] * Quits: mdelaney_ (~mdelaney@c-69-181-26-199.hsd1.ca.comcast.net) (Quit: mdelaney_)
- # [04:23] * Quits: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net) (Quit: chriseppstein)
- # [04:42] * Joins: cying (~cying@c-24-23-135-168.hsd1.ca.comcast.net)
- # [04:43] * Quits: cying (~cying@c-24-23-135-168.hsd1.ca.comcast.net) (Client Quit)
- # [04:45] * Parts: macpherson (~macpherso@nat/google/x-fjytifugsrtnreoo)
- # [04:49] * Joins: nessy (~Adium@74.125.56.18)
- # [04:52] <jacobolus> kind of unfortunate that canvas doesn't support dotted/dashed lines
- # [04:53] <jacobolus> I can manage in the straight line and arc cases easily enough, but manually doing dotted bezier curves is tricky enough to not be worth the effort
- # [05:07] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: Don't follow me)
- # [05:12] * Quits: tomasf (~tom@c-5ed9e555.024-204-6c6b7012.cust.bredbandsbolaget.se) (Quit: tomasf)
- # [05:34] <jacobolus> zewt, Philip`: so the "save context, set identity transformation, stroke, restore context" pattern is pretty great; too bad there's no similarly easy way to do text by first storing an "anchor" position and then setting a new transformation to apply to the actual text filling
- # [05:37] * Joins: mdelaney_ (~mdelaney@c-24-130-141-189.hsd1.ca.comcast.net)
- # [05:38] <jacobolus> if I could pull the matrix out, I could maybe do something like translate so the origin is where I want my anchor, then keep the translation part of the matrix constant while resetting the rest to the identity, and then restore afterward
- # [05:41] * Joins: cying (~cying@c-24-23-135-168.hsd1.ca.comcast.net)
- # [05:56] * Quits: cying (~cying@c-24-23-135-168.hsd1.ca.comcast.net) (Quit: cying)
- # [06:04] * Quits: CvP (~CvP@123.49.21.95) (Quit: [ UPP ] > all)
- # [06:07] * Joins: ben_h (~ben@128.250.195.138)
- # [06:26] * Joins: matjas (~matjas@91.182.102.177)
- # [06:32] * Quits: jgv (~jgv@184.152.75.83) (Remote host closed the connection)
- # [06:37] * Quits: matjas (~matjas@91.182.102.177) (Quit: Computer has gone to sleep.)
- # [06:37] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [06:43] * Joins: cying (~cying@c-24-23-135-168.hsd1.ca.comcast.net)
- # [06:43] * Quits: nessy (~Adium@74.125.56.18) (Quit: Leaving.)
- # [06:45] * Quits: cpearce (~chatzilla@203-97-204-82.dsl.clear.net.nz) (Ping timeout: 276 seconds)
- # [06:56] * Quits: mdelaney_ (~mdelaney@c-24-130-141-189.hsd1.ca.comcast.net) (Quit: mdelaney_)
- # [06:58] * Joins: othermaciej (~mjs@c-24-6-209-6.hsd1.ca.comcast.net)
- # [07:02] * Quits: dglazkov|away (~dglazkov@nat/google/x-uznanffklxgqwgui) (Read error: Operation timed out)
- # [07:03] * Joins: mdelaney_ (~mdelaney@c-69-181-26-199.hsd1.ca.comcast.net)
- # [07:06] * Quits: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net) (Quit: Leaving)
- # [07:08] * Quits: TabAtkins (~tabatkins@nat/google/x-uiwstkvkfutlkjne) (Ping timeout: 258 seconds)
- # [07:08] * Quits: fishd (~fishd@nat/google/x-vwmfrzdzsrqsaspz) (Ping timeout: 260 seconds)
- # [07:18] * Joins: ben_h_ (~ben@128.250.195.138)
- # [07:18] * Quits: ben_h (~ben@128.250.195.138) (Read error: Connection reset by peer)
- # [07:18] * ben_h_ is now known as ben_h
- # [07:21] * Joins: macpherson (~macpherso@nat/google/x-oekejeczfwwrbwyg)
- # [07:23] * Joins: hdhoang (~hdhoang@hdhoang.broker.freenet6.net)
- # [07:29] * Joins: Ankheg (~Ankheg@fs91-201-3-30.dubna-net.ru)
- # [07:32] * Quits: mdelaney_ (~mdelaney@c-69-181-26-199.hsd1.ca.comcast.net) (Quit: mdelaney_)
- # [07:43] * Joins: zcorpan (~zcorpan@217.174.82.196)
- # [07:47] * Quits: zcorpan (~zcorpan@217.174.82.196) (Remote host closed the connection)
- # [07:50] * Quits: cying (~cying@c-24-23-135-168.hsd1.ca.comcast.net) (Quit: cying)
- # [07:55] * Quits: abarth (~abarth@173-164-128-209-SFBA.hfc.comcastbusiness.net) (Quit: abarth)
- # [07:57] * Quits: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net) (Quit: Leaving.)
- # [08:07] * Quits: roc (~chatzilla@203-97-204-82.dsl.clear.net.nz) (Ping timeout: 248 seconds)
- # [08:34] * Joins: matjas (~matjas@195.130.156.13)
- # [08:41] * Joins: zcorpan (~zcorpan@88.131.66.111)
- # [08:55] * Quits: yijun (~yijun@2001:250:208:1666:21f:f3ff:fe52:9714) (Ping timeout: 264 seconds)
- # [08:56] * Joins: Ms2ger (~Ms2ger@91.181.15.98)
- # [08:56] * Joins: homat____ (~homata@58x158x182x50.ap58.ftth.ucom.ne.jp)
- # [08:58] * Joins: Maurice (~ano@77.222.73.150)
- # [08:59] * Joins: cpearce (~chatzilla@118.90.24.28)
- # [08:59] * Quits: homata (~homata@58x158x182x50.ap58.ftth.ucom.ne.jp) (Ping timeout: 258 seconds)
- # [09:01] * Quits: homat____ (~homata@58x158x182x50.ap58.ftth.ucom.ne.jp) (Ping timeout: 258 seconds)
- # [09:06] * Joins: homata (~homata@113x34x70x146.ap113.ftth.ucom.ne.jp)
- # [09:09] * Joins: homa_____ (~homata@58x158x182x50.ap58.ftth.ucom.ne.jp)
- # [09:13] * Quits: homata (~homata@113x34x70x146.ap113.ftth.ucom.ne.jp) (Ping timeout: 250 seconds)
- # [09:16] * Joins: yijun (~yijun@2001:250:208:1666:21f:f3ff:fe52:9714)
- # [09:26] * Quits: othermaciej (~mjs@c-24-6-209-6.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [09:27] * Quits: ben_h (~ben@128.250.195.138) (Quit: ben_h)
- # [09:32] * Quits: zcorpan (~zcorpan@88.131.66.111) (Ping timeout: 260 seconds)
- # [09:36] * Quits: ryanseddon (~RSeddon@202.126.98.210) (Quit: Leaving.)
- # [09:39] * Joins: msucan (~robod@89.123.153.235)
- # [09:40] * Joins: nessy (~Adium@124.171.54.114)
- # [09:42] * Joins: zcorpan (~zcorpan@pat.se.opera.com)
- # [09:43] * Quits: cpearce (~chatzilla@118.90.24.28) (Ping timeout: 260 seconds)
- # [09:44] * Joins: danbri (~danbri@ip176-48-210-87.adsl2.static.versatel.nl)
- # [09:46] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: Don't follow me)
- # [09:52] * Joins: nielsle (~nielsle@4135136-cl69.boa.fiberby.dk)
- # [10:03] * Joins: tbassetto (~tbassetto@92.103.127.226)
- # [10:05] * paul_irish is now known as paul_irish-1
- # [10:06] * Quits: kennyluck (~kennyluck@220.248.79.198) (Ping timeout: 250 seconds)
- # [10:09] * Joins: kennyluck (~kennyluck@220.248.79.198)
- # [10:10] * Joins: MikeSmith_ (~MikeSmith@EM114-48-93-28.pool.e-mobile.ne.jp)
- # [10:12] * paul_irish-1 is now known as paul_irish-2
- # [10:12] * Quits: FireFly (~firefly@unaffiliated/firefly) (Quit: swatted to death)
- # [10:12] * Quits: MikeSmith (~MikeSmith@EM1-113-49-215.pool.e-mobile.ne.jp) (Ping timeout: 246 seconds)
- # [10:12] * MikeSmith_ is now known as MikeSmith
- # [10:18] * Joins: erlehmann (~erlehmann@82.113.99.14)
- # [10:19] * Joins: mpt (~mpt@canonical/mpt)
- # [10:21] * Joins: virtuelv_ (~virtuelv_@20.74.9.46.customer.cdi.no)
- # [10:25] * Quits: virtuelv_ (~virtuelv_@20.74.9.46.customer.cdi.no) (Client Quit)
- # [10:25] * paul_irish-2 is now known as paul_irish
- # [10:26] * Quits: nattokirai (~nattokira@rtr.mozilla.or.jp) (Quit: nattokirai)
- # [10:33] * Joins: fishd (~fishd@nat/google/x-bukyhiiljekxexwd)
- # [10:34] * Joins: TabAtkins (~tabatkins@nat/google/x-cdfxjibjjinrsqwc)
- # [10:40] * Joins: dglazkov|away (~dglazkov@nat/google/x-ffekqvinhbzuygzl)
- # [11:00] * Joins: tomasf (~tom@c-5ed9e555.024-204-6c6b7012.cust.bredbandsbolaget.se)
- # [11:11] * Quits: Lachy (~Lachlan@cm-84.215.59.50.getinternet.no) (Quit: This computer has gone to sleep)
- # [11:24] * Joins: Lachy (~Lachlan@guest.opera.com)
- # [11:25] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 250 seconds)
- # [11:26] * Quits: homa_____ (~homata@58x158x182x50.ap58.ftth.ucom.ne.jp) (Ping timeout: 258 seconds)
- # [11:32] * Joins: charlvn (~charlvn@41.0.48.8)
- # [11:40] * Joins: mpt (~mpt@canonical/mpt)
- # [11:42] * Joins: ZombieLoffe (~e@unaffiliated/zombieloffe)
- # [11:42] * Quits: MikeSmith (~MikeSmith@EM114-48-93-28.pool.e-mobile.ne.jp) (Quit: MikeSmith)
- # [11:43] * Quits: Lachy (~Lachlan@guest.opera.com) (Quit: Leaving)
- # [11:43] * Joins: MikeSmith (~MikeSmith@EM114-48-93-28.pool.e-mobile.ne.jp)
- # [11:44] * Joins: Lachy (~Lachlan@guest.opera.com)
- # [11:49] * Quits: Obvious (tachikoma@188.226.74.2) (Ping timeout: 248 seconds)
- # [11:53] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 260 seconds)
- # [11:53] * Joins: kor (~kor@92.68.18.115)
- # [12:08] * Joins: Obvious (tachikoma@188.226.74.2)
- # [12:13] * Quits: Obvious (tachikoma@188.226.74.2) (Ping timeout: 258 seconds)
- # [12:15] * Joins: mpt (~mpt@91.189.88.12)
- # [12:15] * Quits: mpt (~mpt@91.189.88.12) (Changing host)
- # [12:15] * Joins: mpt (~mpt@canonical/mpt)
- # [12:21] * Joins: ttepasse (~ttepasse@ip-109-90-161-169.unitymediagroup.de)
- # [12:23] * Quits: tbassetto (~tbassetto@92.103.127.226) (Quit: tbassetto)
- # [12:26] * Quits: kor (~kor@92.68.18.115) (Quit: kor)
- # [12:33] * Quits: homata___ (~homata_@58x158x182x50.ap58.ftth.ucom.ne.jp) (Remote host closed the connection)
- # [12:33] * Joins: homata (~homata@58x158x182x50.ap58.ftth.ucom.ne.jp)
- # [12:37] * Quits: matjas (~matjas@195.130.156.13) (Quit: Computer has gone to sleep.)
- # [12:38] * Joins: matjas (~matjas@195.130.156.13)
- # [12:40] * Joins: Obvious (tachikoma@188.226.74.2)
- # [12:42] * Quits: agektmr (~Adium@2401:fa00:4:1012:fa1e:dfff:fee6:d74e) (Quit: Leaving.)
- # [12:43] * Joins: agektmr (~Adium@220.109.219.244)
- # [12:43] * Quits: agektmr (~Adium@220.109.219.244) (Client Quit)
- # [12:45] * Quits: matjas (~matjas@195.130.156.13) (Quit: Computer has gone to sleep.)
- # [12:47] * Joins: matjas (~matjas@195.130.156.13)
- # [12:49] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 252 seconds)
- # [12:57] * Quits: Obvious (tachikoma@188.226.74.2) (Ping timeout: 246 seconds)
- # [13:05] * Joins: bga_ (~bga@ppp91-122-51-148.pppoe.avangarddsl.ru)
- # [13:05] * Joins: lhnz (~lhnz@188-223-83-48.zone14.bethere.co.uk)
- # [13:14] * Quits: Ankheg (~Ankheg@fs91-201-3-30.dubna-net.ru) (Quit: Leaving.)
- # [13:14] * Joins: Ankheg (~Ankheg@fs91-201-3-30.dubna-net.ru)
- # [13:14] * Quits: MikeSmith (~MikeSmith@EM114-48-93-28.pool.e-mobile.ne.jp) (Quit: MikeSmith)
- # [13:18] * Quits: shiawuen (~shiawuent@bb115-66-151-94.singnet.com.sg) (Quit: shiawuen)
- # [13:23] * Joins: Obvious (tachikoma@188.226.74.2)
- # [13:23] * Quits: erlehmann (~erlehmann@82.113.99.14) (Quit: Ex-Chat)
- # [13:26] * Joins: smaug____ (~chatzilla@cs181139127.pp.htv.fi)
- # [13:30] * Quits: wakaba_ (~wakaba_@122x221x184x68.ap122.ftth.ucom.ne.jp) (Quit: Leaving...)
- # [13:30] * Quits: charlvn (~charlvn@41.0.48.8) (Quit: Leaving)
- # [13:33] * Quits: homata (~homata@58x158x182x50.ap58.ftth.ucom.ne.jp) (Quit: Leaving...)
- # [13:42] * Joins: Ankheg1 (~Ankheg@fs91-201-3-30.dubna-net.ru)
- # [13:42] * Quits: Ankheg (~Ankheg@fs91-201-3-30.dubna-net.ru) (Ping timeout: 260 seconds)
- # [13:48] * Joins: mpt (~mpt@91.189.88.12)
- # [13:48] * Quits: mpt (~mpt@91.189.88.12) (Changing host)
- # [13:48] * Joins: mpt (~mpt@canonical/mpt)
- # [13:51] * Joins: MrOpposite (~mropposit@unaffiliated/mropposite)
- # [13:56] * Joins: matijsb (8d5d178c@gateway/web/freenode/ip.141.93.23.140)
- # [14:03] * Joins: myakura (~myakura@FL1-119-243-186-103.tky.mesh.ad.jp)
- # [14:19] * Joins: kor (~kor@ip146-53-210-87.adsl2.static.versatel.nl)
- # [14:21] * Joins: CvP (~CvP@123.49.21.20)
- # [14:22] * Joins: kal-EL_ (~jor-EL@host84-69-dynamic.245-95-r.retail.telecomitalia.it)
- # [14:24] * Joins: MikeSmith (~MikeSmith@58x157x21x205.ap58.ftth.ucom.ne.jp)
- # [14:33] <hsivonen> the 2022 meme has made it to xkcd
- # [14:36] * Quits: matijsb (8d5d178c@gateway/web/freenode/ip.141.93.23.140) (Ping timeout: 252 seconds)
- # [14:38] * Quits: hdhoang (~hdhoang@hdhoang.broker.freenet6.net) (Quit: Leaving.)
- # [14:40] * Joins: hdhoang (~hdhoang@203.210.155.221)
- # [14:44] * Quits: yijun (~yijun@2001:250:208:1666:21f:f3ff:fe52:9714) (Remote host closed the connection)
- # [14:44] * Quits: hdhoang (~hdhoang@203.210.155.221) (K-Lined)
- # [14:44] * Joins: yijun (~yijun@2001:250:208:1666:21f:f3ff:fe52:9714)
- # [14:45] * Joins: F1LT3R (~F1LT3R@c-76-19-149-201.hsd1.ma.comcast.net)
- # [14:45] * Quits: kor (~kor@ip146-53-210-87.adsl2.static.versatel.nl) (Quit: kor)
- # [14:47] * Joins: hdhoang (~hdhoang@203.210.201.94)
- # [14:51] * Quits: Ankheg1 (~Ankheg@fs91-201-3-30.dubna-net.ru) (Read error: Connection reset by peer)
- # [14:52] * Joins: Ankheg (~Ankheg@fs91-201-3-30.dubna-net.ru)
- # [14:53] * Joins: kor (~kor@ip146-53-210-87.adsl2.static.versatel.nl)
- # [14:59] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Remote host closed the connection)
- # [15:06] * Joins: miketaylr (~miketaylr@206.217.92.186)
- # [15:12] <MikeSmith> hsivonen: cool
- # [15:12] <MikeSmith> and only a few years after Jesus returns to earth
- # [15:13] <jgraham> Actually we're relying on him to finish off the testsuite
- # [15:15] * MikeSmith puts Jesus in critical path on his testsuite Microsoft Project plan
- # [15:18] <MikeSmith> I just hope he's hip to IRC so that I can ping him and discuss problems in real time
- # [15:30] * Joins: mpilgrim (~pilgrim@adsl-162-132-4.rmo.bellsouth.net)
- # [15:36] * Quits: hdhoang (~hdhoang@203.210.201.94) (Ping timeout: 246 seconds)
- # [15:36] * Joins: hdhoang (~hdhoang@222.252.37.71)
- # [15:40] * Quits: yijun (~yijun@2001:250:208:1666:21f:f3ff:fe52:9714) (Read error: Connection reset by peer)
- # [15:41] * Joins: yijun (~yijun@60.247.33.140)
- # [15:42] * Quits: yijun (~yijun@60.247.33.140) (Remote host closed the connection)
- # [15:42] * Joins: yijun (~yijun@059148184190.ctinets.com)
- # [15:43] <zcorpan> MikeSmith: you won't need to discuss problems with him
- # [15:43] <MikeSmith> well, I mean personal problems
- # [15:43] <MikeSmith> like, when I need some life advice
- # [15:44] <MikeSmith> currently when I have a problem, I just ask myself, What would Jesus do?
- # [15:44] <zcorpan> ah
- # [15:44] <MikeSmith> but after he gets back, I can just ask him directly
- # [15:44] <MikeSmith> save myself a lot of thinking time
- # [15:45] <webr3> "why does jesus test us so much?" - btw I think it said he comes back twice, again in 2025 iirc
- # [15:45] <zewt> well, it may be of little help when his answer is invariably "change the gravitational constant of the universe"
- # [15:45] <wilhelm> I don't think I want to take life advice from a guy who ended up crucified at the will of an angry mob.
- # [15:47] <MikeSmith> he didn't really get crucified
- # [15:47] <MikeSmith> they actually crucified Judas (thinking he was Jesus)
- # [15:48] <wilhelm> Oh. Clever.
- # [15:49] * ericc|away is now known as eric_carlson
- # [15:56] <jgraham> webr3: Isn't coming back multiple times his best-known party trick?
- # [15:58] <webr3> jgraham: either that or the wine one
- # [15:59] * Joins: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net)
- # [16:03] * Quits: SteveGL (~dev@174-21-199-48.tukw.qwest.net) (Ping timeout: 250 seconds)
- # [16:04] <zcorpan> i read somewhere he wasn't crucified but just nailed to a pole
- # [16:04] <jgraham> webr3: I guess the wine one is better for picking up girls. It's a tough pickup tactic that needs a three day hiatus in a cave.
- # [16:05] <jgraham> so, erm, blas-for-me, blas-for-you
- # [16:05] * Quits: hdhoang (~hdhoang@222.252.37.71) (Quit: Leaving.)
- # [16:08] * Joins: hdhoang (~hdhoang@222.252.37.71)
- # [16:10] * Joins: SteveGL (~dev@174-21-173-143.tukw.qwest.net)
- # [16:11] * Joins: Rik` (~Rik`@mozilla-paris-253-99.cnt.nerim.net)
- # [16:12] * Joins: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com)
- # [16:15] * Quits: MrOpposite (~mropposit@unaffiliated/mropposite) (Remote host closed the connection)
- # [16:15] * Quits: mpilgrim (~pilgrim@adsl-162-132-4.rmo.bellsouth.net) (Ping timeout: 276 seconds)
- # [16:16] * Quits: Ankheg (~Ankheg@fs91-201-3-30.dubna-net.ru) (Quit: Leaving.)
- # [16:17] * bga_ is now known as bga_|away
- # [16:23] * bga_|away is now known as bga_
- # [16:30] * Joins: mpilgrim (~pilgrim@rrcs-24-206-36-125.midsouth.biz.rr.com)
- # [16:32] * Joins: chriseppstein (~chris@99.34.231.235)
- # [16:34] * Quits: matjas (~matjas@195.130.156.13) (Quit: Computer has gone to sleep.)
- # [16:36] * Joins: cying (~cying@c-24-23-135-168.hsd1.ca.comcast.net)
- # [17:03] * Quits: CvP (~CvP@123.49.21.20) (Ping timeout: 276 seconds)
- # [17:06] * Quits: ZombieLoffe (~e@unaffiliated/zombieloffe)
- # [17:06] * Joins: dydx (~dydz@adsl-75-36-187-188.dsl.pltn13.sbcglobal.net)
- # [17:07] * Joins: Martijnc (~Martijnc@91.176.106.46)
- # [17:07] * Joins: shiawuen (~shiawuent@116.88.56.241)
- # [17:07] * Quits: Maurice (~ano@77.222.73.150) (Quit: Disconnected...)
- # [17:08] * Quits: nessy (~Adium@124.171.54.114) (Quit: Leaving.)
- # [17:20] * Joins: mdelaney_ (~mdelaney@67.218.110.53)
- # [17:26] * Quits: jacobolus (~jacobolus@99-108-143-196.lightspeed.sntcca.sbcglobal.net) (Remote host closed the connection)
- # [17:27] * Quits: dydx (~dydz@adsl-75-36-187-188.dsl.pltn13.sbcglobal.net) (Quit: dydx)
- # [17:27] * Quits: micheil (~micheil@124-149-39-197.dyn.iinet.net.au) (Ping timeout: 276 seconds)
- # [17:30] * Quits: chriseppstein (~chris@99.34.231.235) (Quit: chriseppstein)
- # [17:36] * Quits: cedricv (~cedric@175.156.55.35) (Read error: Connection reset by peer)
- # [17:37] * Joins: micheil (~micheil@203-158-58-181.dyn.iinet.net.au)
- # [17:39] * Joins: cedricv (~cedric@180.129.104.102)
- # [17:40] * Quits: richt (~richt@pat-tdc.opera.com) (Remote host closed the connection)
- # [17:48] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [17:50] * Quits: nielsle (~nielsle@4135136-cl69.boa.fiberby.dk) (Ping timeout: 260 seconds)
- # [17:52] * Quits: othree_ (~othree@admin39.ct.ntust.edu.tw) (Read error: Connection reset by peer)
- # [17:54] * Joins: lca (~agostini@186.212.138.172)
- # [17:55] * Quits: Lachy (~Lachlan@guest.opera.com) (Quit: Leaving)
- # [17:59] * Quits: _Tex_ (~sdfsdfsdf@host88-86-dynamic.59-82-r.retail.telecomitalia.it) (Quit: try { Life.getInstance().randomize().seek(SENSE); } catch(e) { retry(); })
- # [18:04] * bga_ is now known as bga_|away
- # [18:05] * Quits: lca (~agostini@186.212.138.172) (Ping timeout: 260 seconds)
- # [18:08] * Joins: lca (~agostini@186.212.138.172)
- # [18:09] * Quits: lca (~agostini@186.212.138.172) (Read error: Connection reset by peer)
- # [18:12] * Quits: cedricv (~cedric@180.129.104.102) (Ping timeout: 258 seconds)
- # [18:12] * Joins: matjas (~matjas@91.182.170.229)
- # [18:12] * Quits: cying (~cying@c-24-23-135-168.hsd1.ca.comcast.net) (Quit: cying)
- # [18:14] * Joins: othree (~othree@admin39.ct.ntust.edu.tw)
- # [18:15] * Joins: Lachy (~Lachlan@guest.opera.com)
- # [18:15] * Joins: dave_levin (~dave_levi@nat/google/x-ohopiezdbqtlwokt)
- # [18:20] * Joins: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [18:20] * Joins: exp (~zAyghip8@93-96-170-70.zone4.bethere.co.uk)
- # [18:26] * Quits: myakura (~myakura@FL1-119-243-186-103.tky.mesh.ad.jp) (Read error: Connection reset by peer)
- # [18:28] * Joins: yijun_ (~yijun@2001:250:208:1666:21f:f3ff:fe52:9714)
- # [18:28] <AryehGregor> Question to world: how do I get added as a member of the Web Apps WG? Do I contact the Google AC rep to add me, T. V. Raman?
- # [18:28] * Quits: mdelaney_ (~mdelaney@67.218.110.53) (Quit: mdelaney_)
- # [18:28] <jgraham> AryehGregor: Yes
- # [18:28] <AryehGregor> jgraham, thanks.
- # [18:31] * Quits: yijun (~yijun@059148184190.ctinets.com) (Ping timeout: 260 seconds)
- # [18:31] * yijun_ is now known as yijun
- # [18:33] * Joins: mdelaney_ (~mdelaney@2620:0:1b00:1191:80ac:e94f:e05e:2a94)
- # [18:34] * Joins: shinyak (~shinyak@nat/google/x-ikjxnapvsdowjtue)
- # [18:36] <TabAtkins> AryehGregor: And I can save you some time by sending you the link for the webapps signup. TV will ask for it otherwise. ^_^
- # [18:36] <AryehGregor> TabAtkins, heh, yeah, he asked me last time and I had no idea what he wanted.
- # [18:36] <AryehGregor> Forgot about that.
- # [18:36] <AryehGregor> What's the link?
- # [18:37] <TabAtkins> http://www.w3.org/Member/Mail/, find the group you want and click the "join" button. Send the url for that page to TV.
- # [18:40] <AryehGregor> Wait, I think I'm already in it.
- # [18:40] * AryehGregor investigates
- # [18:40] <AryehGregor> No, I'm not.
- # [18:40] <AryehGregor> But the page is titled "Leaving the Web Applications Working Group".
- # [18:41] <AryehGregor> Maybe the participant list doesn't update right away?
- # [18:41] <karlcow> You are already part of it
- # [18:41] <jgraham> Maybe they're giving you a hint?
- # [18:41] <AryehGregor> Okay, so he must have added me already.
- # [18:41] <mpilgrim> it's a zen koan
- # [18:41] <AryehGregor> But I don't show up here: http://www.w3.org/2000/09/dbwg/details?group=42538&public=1&gs=1&
- # [18:41] * Quits: yijun (~yijun@2001:250:208:1666:21f:f3ff:fe52:9714) (Remote host closed the connection)
- # [18:42] <karlcow> you are the shadow DOM of WebApps
- # [18:42] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [18:42] * Joins: yijun (~yijun@2001:250:208:1666:21f:f3ff:fe52:9714)
- # [18:42] <mpilgrim> the shadow DOM liveth forever and ever
- # [18:42] * Quits: mdelaney_ (~mdelaney@2620:0:1b00:1191:80ac:e94f:e05e:2a94) (Quit: mdelaney_)
- # [18:43] <mpilgrim> by cloning itself and appending itself to its parent shortly before removing itself from this world
- # [18:49] <AryehGregor> Deep clone or shallow clone?
- # [18:49] * Joins: ap (~ap@2620:0:1b00:1191:226:4aff:fe14:aad6)
- # [18:51] <AryehGregor> Ooh, I like this definition: http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#concept-clone-ext
- # [18:51] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 252 seconds)
- # [18:51] <AryehGregor> I want some definitions like that for DOM Range, for mutations.
- # [18:51] * AryehGregor makes a mental note to write some up later.
- # [18:51] * Quits: lrvick (~lrvick@66.96.251.117) (Read error: Operation timed out)
- # [18:52] <AryehGregor> Another random comment: I love how all these Japanese people are always so incredibly polite. I wish Westerners were more polite.
- # [18:54] <karlcow> hmmm it is not really polite. It is the codification of the communication which is different. Difficult to explain. From a western point of view it *seems* polite.
- # [18:54] * Joins: lrvick (~lrvick@66.96.251.117)
- # [18:54] <zewt> seems more "distant" than "polite" to me
- # [18:55] <zewt> sort of like retail-employee "politeness"
- # [18:55] <AryehGregor> To me, "polite" means things like saying please and thank you, trying to phrase things non-critically, things like that. I'd say it's politeness, by that definition.
- # [18:55] * Joins: twisted (~twisted@205.189.73.45)
- # [18:55] <AryehGregor> Of course, it has downsides too.
- # [18:55] * Joins: othree_ (~othree@140.118.5.39)
- # [18:55] * Joins: jarib_ (~jarib@109.74.192.179)
- # [18:55] <AryehGregor> Bluntness can be useful. Israelis tend to be very blunt.
- # [18:56] <AryehGregor> Which is to say, not polite.
- # [18:56] <AryehGregor> There's a joke about that.
- # [18:57] <karlcow> communication protocols. :)
- # [18:57] <AryehGregor> A journalist goes up to four people -- an American, a Russian, a Chinese person, and an Israeli. The journalist asks them all, "What's your opinion on the recent meat shortage?"
- # [18:57] <AryehGregor> The American says "What's a 'shortage'?"
- # [18:57] <AryehGregor> The Russian says, "What's 'meat'?"
- # [18:57] <AryehGregor> The Chinese person says, "What's an 'opinion'?"
- # [18:57] <AryehGregor> The Israeli says, "What's 'excuse me'?"
- # [18:57] <AryehGregor> (maybe the joke was originally told before the Soviet Union's collapse, the Russian part makes more sense then)
- # [18:58] <TabAtkins> The joke would work better if the reporter had said "excuse me" at some point. ^_^
- # [18:58] <AryehGregor> Dangit.
- # [18:58] <AryehGregor> It was supposed to say "Excuse, what's your opinion on the recent meat shortage?"
- # [18:58] <AryehGregor> I always ruin jokes that are more than about one line long.
- # [18:58] * AryehGregor hangs his head in shame
- # [18:58] <TabAtkins> Boooo
- # [18:59] * Quits: Ms2ger (~Ms2ger@91.181.15.98) (Quit: nn)
- # [18:59] <AryehGregor> My father is an excellent joke-teller, but somehow I don't seem to have inherited it.]
- # [18:59] <AryehGregor> it.
- # [18:59] <Philip`> You could tell the jokes backwards, starting at the punchline, so you can be sure you'll set them up properly
- # [18:59] <AryehGregor> That's an excellent idea. I wonder why no one has ever thought of it before.
- # [19:00] <TabAtkins> AryehGregor: I like your much-more-polite versions of my responses to those bugs.
- # [19:00] * Quits: twisted_ (~twisted@205.189.73.45) (Ping timeout: 246 seconds)
- # [19:00] * Quits: othree (~othree@admin39.ct.ntust.edu.tw) (Ping timeout: 246 seconds)
- # [19:00] * Quits: jarib (~jarib@unaffiliated/jarib) (Ping timeout: 246 seconds)
- # [19:00] <AryehGregor> TabAtkins, see, that's what I mean about being polite.
- # [19:00] <AryehGregor> It's not nice to say to some confused newbie "Why don't you read beyond the table of contents?"
- # [19:00] <karlcow> The Japanese answer could be something along: "We understand the issue. Thanks."
- # [19:01] <AryehGregor> The spec is several hundred pages long and incomprehensible to normal human beings.
- # [19:01] <AryehGregor> It's only polite to take thirty seconds to explain properly when someone has taken the effort to give feedback, even if the feedback is misguided.
- # [19:01] <TabAtkins> AryehGregor: I'm always somewhat torn. Yes, that's a rude thing to say. It's also rude to even *ask* that question without doing a little bit of research yourself, at which point the answer becomes obvious.
- # [19:02] <TabAtkins> Jeezus, Kyoto is a million miles away from Tokyo.
- # [19:02] <AryehGregor> Someone without web standards background is likely to be completely confused by the ambiguous terminology, and will have a lot of trouble successfully researching it themselves.
- # [19:02] <karlcow> The French answer might be "French meat is delicious" (completely unrelated and pulling it to French culture) or if the journalist is cute "Are you free tonight?"
- # [19:03] <AryehGregor> I'd agree with you somewhat more if it were a question like "What's the details element supposed to do?" where just Ctrl-Fing through the ToC would give you the answer easily.
- # [19:03] <karlcow> TabAtkins: not by shinkansen
- # [19:03] * Joins: ryanseddon (~RSeddon@202.126.98.210)
- # [19:03] <AryehGregor> But over here you have "HTML" being used in two conflicting ways, which is confusing.
- # [19:03] <AryehGregor> Maybe we should officially start calling the syntax only "text/html" or something.
- # [19:03] <AryehGregor> Although that's also confusing, since then you're calling it by a MIME type.
- # [19:04] <TabAtkins> karlcow: I can't tell if http://goo.gl/maps/Ff8F is via shinkansen or not, because there's too much japanese.
- # [19:05] <karlcow> 140 min by Shinkansen from Tokyo to Kyoto
- # [19:05] <TabAtkins> Ooh, what's the price on that sort of trip (if you know off the top of your head)
- # [19:05] * AryehGregor always sort of wonders if someone is trying to track him, when he's given a goo.gl URL
- # [19:06] <karlcow> 10,000 yens
- # [19:06] <karlcow> around
- # [19:06] <karlcow> depends on the time
- # [19:06] <TabAtkins> Nah, that's just what Maps popped out when I asked it for a link.
- # [19:06] <AryehGregor> Ah, I see.
- # [19:06] <AryehGregor> When I was considering applying to Google for a full-time job, I of course made sure that the URLs in my resume were shortened using goo.gl instead of tinyurl.
- # [19:07] <TabAtkins> ...Why were you shortening your urls at all in your resume?
- # [19:07] <AryehGregor> I thought it was funny that I'd be using goo.gl to spy on how many people were reading the resume I submitted to Google, where and when.
- # [19:07] <AryehGregor> (I never actually submitted it, though.)
- # [19:07] <AryehGregor> Um, I dunno. Let me look.
- # [19:07] <karlcow> Nozomi is the fastest bullet train between Tokyo and Kyoto
- # [19:08] <AryehGregor> Wow, I so totally never use word processing software.
- # [19:08] <karlcow> http://en.wikipedia.org/wiki/Nozomi_(Shinkansen)
- # [19:08] <AryehGregor> This is like six months old and it was #8 on recent documents.
- # [19:08] <AryehGregor> Anyway, it turns out it was a link to my reflection tests, which were relevant since I was going to apply for web standards work.
- # [19:09] <TabAtkins> AryehGregor: Why shorten the link, though? Shortened links are for twitter only, mostly.
- # [19:09] <AryehGregor> They're for print also.
- # [19:09] <karlcow> The train is leaving from Shinagawa station
- # [19:09] <karlcow> so you will have to go from Haneda to Shinagawa.
- # [19:10] <AryehGregor> I was asked for a PDF resume, IIRC, so I assumed that someone might be printing it somewhere along the line.
- # [19:10] <TabAtkins> karlcow: Apparently Google is sending us on JR新幹線のぞみ99号 for the long part of the trip.
- # [19:10] <TabAtkins> But for some reason it's got a 5-minute section before that for 7k yen. ?_?
- # [19:10] <karlcow> JR is the company
- # [19:10] <AryehGregor> I'm proud to say I recognize the character の from that line. It's hiragana for "no", usually meaning "of".
- # [19:10] <AryehGregor> I think.
- # [19:10] <TabAtkins> Yeah, that's the shinkansen.
- # [19:10] <AryehGregor> That's like the only character I ever recognize when I read Japanese.
- # [19:10] <AryehGregor> Sometimes the characters for "Japan" too.
- # [19:10] <AryehGregor> Or "person", or like three other words.
- # [19:10] <AryehGregor> But mostly "of".
- # [19:11] <karlcow> or more exactly one of the companies of Japan for train
- # [19:12] * Joins: cying (~cying@173.13.176.101)
- # [19:12] <AryehGregor> Logogramies make me sad. I like trying to read foreign languages even if I don't understand them, but with CJK I have no chance.
- # [19:13] <AryehGregor> I know the Greek alphabet, and can do okay on Cyrillic, plus of course I can read Hebrew. I should learn the Arabic alphabet.
- # [19:13] <karlcow> TabAtkins: this might help you http://www.shinkansen.co.jp/jikoku_hyo/en/
- # [19:14] <AryehGregor> Alternatively, I should go find something useful to do instead of spamming IRC chats.
- # [19:14] <karlcow> for the timetable
- # [19:15] <karlcow> and also the very practical http://www.hyperdia.com/
- # [19:16] <karlcow> example http://www.hyperdia.com/cgi/en/search.html?dep_node=HANEDA%20AIRPORT%20INTERNATIONAL%20BUILDING&arv_node=KYOTO&via_node01=&via_node02=&via_node03=&year=2011&month=04&day=18&hour=13&minute=12&search_type=0&search_way=&transtime=undefined&sort=0&max_route=5&ship=off&lmlimit=null&search_target=route&facility=reserved&sum_target=7
- # [19:18] <TabAtkins> Ooh, that one's very useful, karlcow.
- # [19:24] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: I was raided by the FBI and all I got to keep was this lousy quit message!)
- # [19:25] * bga_|away is now known as bga_
- # [19:26] * Quits: smaug____ (~chatzilla@cs181139127.pp.htv.fi) (Ping timeout: 258 seconds)
- # [19:27] * Joins: F1LT3R_ (~F1LT3R@c-76-19-149-201.hsd1.ma.comcast.net)
- # [19:28] * Quits: F1LT3R (~F1LT3R@c-76-19-149-201.hsd1.ma.comcast.net) (Ping timeout: 246 seconds)
- # [19:34] * Joins: FireFly (~firefly@unaffiliated/firefly)
- # [19:35] * Quits: exp (~zAyghip8@93-96-170-70.zone4.bethere.co.uk) (Ping timeout: 252 seconds)
- # [19:36] * Joins: chriseppstein (~chris@dsl092-049-179.sfo4.dsl.speakeasy.net)
- # [19:37] * Quits: s21n (~s21n@unaffiliated/s21n) (Ping timeout: 240 seconds)
- # [19:40] * Joins: ap_ (~ap@17.246.18.111)
- # [19:40] * Quits: ap_ (~ap@17.246.18.111) (Read error: Connection reset by peer)
- # [19:40] * Quits: ap (~ap@2620:0:1b00:1191:226:4aff:fe14:aad6) (Read error: Connection reset by peer)
- # [19:41] * Joins: ap (~ap@17.203.15.167)
- # [19:42] * Joins: erlehmann (~erlehmann@82.113.99.57)
- # [19:46] * Quits: ryanseddon (~RSeddon@202.126.98.210) (Read error: Connection reset by peer)
- # [19:46] * Joins: random_username (~user_@customer11855.pool1.unallocated-106-0.orangehomedsl.co.uk)
- # [19:46] * jarib_ is now known as jarib
- # [19:46] * Quits: jarib (~jarib@109.74.192.179) (Changing host)
- # [19:46] * Joins: jarib (~jarib@unaffiliated/jarib)
- # [19:48] * Joins: jamesr_ (~jamesr@216.239.45.19)
- # [19:52] * Joins: F1LT3R (~F1LT3R@c-76-19-149-201.hsd1.ma.comcast.net)
- # [19:53] * Quits: F1LT3R_ (~F1LT3R@c-76-19-149-201.hsd1.ma.comcast.net) (Ping timeout: 246 seconds)
- # [19:54] * Joins: michaeln (~michaeln@nat/google/x-wdjtsbrcqwvubrst)
- # [19:55] * Joins: mpt (~mpt@91.189.88.12)
- # [19:55] * Quits: mpt (~mpt@91.189.88.12) (Changing host)
- # [19:55] * Joins: mpt (~mpt@canonical/mpt)
- # [19:57] * Quits: hdhoang (~hdhoang@222.252.37.71) (Quit: Leaving.)
- # [19:57] * Quits: mpt (~mpt@canonical/mpt) (Remote host closed the connection)
- # [19:57] * Joins: mpt (~mpt@91.189.88.12)
- # [19:57] * Quits: mpt (~mpt@91.189.88.12) (Changing host)
- # [19:57] * Joins: mpt (~mpt@canonical/mpt)
- # [20:00] * Quits: Rik` (~Rik`@mozilla-paris-253-99.cnt.nerim.net) (Remote host closed the connection)
- # [20:03] * Quits: franksalim (~franksali@108-65-76-174.lightspeed.sntcca.sbcglobal.net) (Read error: Connection reset by peer)
- # [20:04] * Joins: franksalim (~franksali@99-123-6-19.lightspeed.sntcca.sbcglobal.net)
- # [20:04] * Quits: shinyak (~shinyak@nat/google/x-ikjxnapvsdowjtue) (Remote host closed the connection)
- # [20:05] * Quits: jamesr_ (~jamesr@216.239.45.19) (Quit: jamesr_)
- # [20:06] * Joins: franksalim_ (~franksali@99-123-6-19.lightspeed.sntcca.sbcglobal.net)
- # [20:06] * Joins: jamesr_ (~jamesr@216.239.45.19)
- # [20:08] * Quits: franksalim_ (~franksali@99-123-6-19.lightspeed.sntcca.sbcglobal.net) (Read error: Connection reset by peer)
- # [20:08] * Joins: franksalim_ (~franksali@108-65-76-174.lightspeed.sntcca.sbcglobal.net)
- # [20:09] * Quits: franksalim (~franksali@99-123-6-19.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 252 seconds)
- # [20:11] * Joins: franksalim__ (~franksali@99-123-6-19.lightspeed.sntcca.sbcglobal.net)
- # [20:13] * Quits: mpt (~mpt@canonical/mpt) (Read error: No route to host)
- # [20:13] * Joins: matijsb (~matijsb@5353CD69.cm-6-4d.dynamic.ziggo.nl)
- # [20:14] * Quits: franksalim_ (~franksali@108-65-76-174.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 258 seconds)
- # [20:15] * Joins: franksalim (~franksali@108-65-76-174.lightspeed.sntcca.sbcglobal.net)
- # [20:15] * Joins: hdhoang (~hdhoang@222.252.37.71)
- # [20:17] * Quits: franksalim__ (~franksali@99-123-6-19.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 248 seconds)
- # [20:18] * Joins: mdelaney (~mdelaney@2620:0:1b00:1191:80ac:e94f:e05e:2a94)
- # [20:34] * Joins: shinyak (~shinyak@nat/google/x-azvmuuktmvxwesnj)
- # [20:40] * Joins: smaug____ (~chatzilla@cs181139127.pp.htv.fi)
- # [20:47] * Joins: _bga (~bga@ppp91-122-51-148.pppoe.avangarddsl.ru)
- # [20:47] * Joins: Rik` (~Rik`@2a01:e34:ec0f:1570:daa2:5eff:fe97:85ee)
- # [20:49] * Quits: Lachy (~Lachlan@guest.opera.com) (Quit: This computer has gone to sleep)
- # [20:50] * Quits: shinyak (~shinyak@nat/google/x-azvmuuktmvxwesnj) (Remote host closed the connection)
- # [20:50] * Quits: bga_ (~bga@ppp91-122-51-148.pppoe.avangarddsl.ru) (Ping timeout: 276 seconds)
- # [20:52] * Joins: ojan (~ojan@nat/google/x-fecmiplcfjzwwjay)
- # [20:53] * Quits: boblet (~boblet@p2153-ipbf908osakakita.osaka.ocn.ne.jp) (Quit: boblet)
- # [20:53] * Joins: dbaron (~dbaron@nat/mozilla/x-tkknezquvolkiryp)
- # [21:03] * Quits: FireFly (~firefly@unaffiliated/firefly) (Ping timeout: 264 seconds)
- # [21:05] * Quits: jamesr_ (~jamesr@216.239.45.19) (Quit: jamesr_)
- # [21:08] * Joins: cpearce (~chatzilla@118.90.24.28)
- # [21:10] * Quits: ttepasse (~ttepasse@ip-109-90-161-169.unitymediagroup.de) (Quit: Now time for the weather. Tiffany?)
- # [21:10] <Hixie> wow, http://www.google.com/green/ uses a lot of new html features
- # [21:10] <Hixie> <video>, <nav>, <footer>, all kinds of stuff
- # [21:11] * Joins: FireFly (~firefly@unaffiliated/firefly)
- # [21:14] * Joins: xtoph (~xtoph@213.47.185.206)
- # [21:14] * Quits: FireFly (~firefly@unaffiliated/firefly) (Read error: Connection reset by peer)
- # [21:14] * Joins: FireFly (~firefly@unaffiliated/firefly)
- # [21:17] <AryehGregor> <div id="learn-space" class="floatleft width-230">
- # [21:17] <AryehGregor> <video> with no fallback, at that.
- # [21:18] <AryehGregor> Only WebM and MP4.
- # [21:18] <AryehGregor> No Flash or anything.
- # [21:18] * Joins: Lachy (~Lachlan@cm-84.215.59.50.getinternet.no)
- # [21:18] <AryehGregor> Unless JS adds fallback.
- # [21:18] * Quits: smaug____ (~chatzilla@cs181139127.pp.htv.fi) (Ping timeout: 258 seconds)
- # [21:19] <Hixie> haven't tested it in IE
- # [21:19] <Hixie> the page certainly still has the influence of media-specific presentation :-(
- # [21:19] * Quits: F1LT3R (~F1LT3R@c-76-19-149-201.hsd1.ma.comcast.net) (Read error: Connection reset by peer)
- # [21:19] <Hixie> and suffers from a case of divitis
- # [21:20] * Quits: Lachy (~Lachlan@cm-84.215.59.50.getinternet.no) (Client Quit)
- # [21:20] * Joins: Lachy (~Lachlan@cm-84.215.59.50.getinternet.no)
- # [21:21] <zcorpan> the fallback (visually at least) is <img>
- # [21:22] <zcorpan> seems like that page calls for background-image:url(webm)
- # [21:23] <AryehGregor> <div class="blue data-center-content width-230 colorblock">
- # [21:23] <AryehGregor> Terrible alt text, too: <img src="img/how-can-we-help-in-the-face-of-disasters.jpg" width="230" height="161" alt="How Can We Help In The Face Of Disasters" class="block-bg">
- # [21:23] <AryehGregor> Oh, no, it isn't.
- # [21:23] <AryehGregor> It's good alt text.
- # [21:23] * Joins: aho (~nya@fuld-590c62a8.pool.mediaWays.net)
- # [21:23] <AryehGregor> Since the image is just a picture of text.
- # [21:23] <AryehGregor> I think.
- # [21:23] <zcorpan> no it isn't
- # [21:23] <zcorpan> it repeats the heading
- # [21:24] <AryehGregor> No, it's not.
- # [21:24] <AryehGregor> Yeah, it repeats the heading.
- # [21:25] * Quits: erlehmann (~erlehmann@82.113.99.57) (Quit: Ex-Chat)
- # [21:25] <zcorpan> i think i'd just do <p><a href>Can competition become cooperation?</a></p>
- # [21:26] <zcorpan> and the background video should be done in css (except css doesn't support that)
- # [21:27] <TabAtkins> It totally should.
- # [21:27] <zcorpan> TabAtkins: fix css
- # [21:28] <TabAtkins> Suggest to me background-image:url(movie) should work, and I will.
- # [21:28] * Quits: mdelaney (~mdelaney@2620:0:1b00:1191:80ac:e94f:e05e:2a94) (Quit: mdelaney)
- # [21:29] <TabAtkins> Right now, you can do background-image: element(#the-video); with an out-of-document video.
- # [21:29] <zcorpan> i guess we should implement that first
- # [21:29] <TabAtkins> (For some definition of "can do".)
- # [21:30] <zcorpan> background-image:url(movie) wouldn't work so well with the current codec situation in practice
- # [21:30] <TabAtkins> True.
- # [21:30] <TabAtkins> background-image: image("movie.webm", "movie.mp4");
- # [21:31] <zcorpan> image("movie.webm") format("video/webm"), ...
- # [21:32] <TabAtkins> I need a word for "according to specs you can, but nobody implements it yet so it's currently theoretical only".
- # [21:32] <TabAtkins> spec-can
- # [21:32] <zcorpan> "I'm high as a kite"
- # [21:32] <TabAtkins> "Right now, you speccan do ..."
- # [21:33] * Joins: gratz|home (~gratz@cpc7-brig16-2-0-cust362.3-3.cable.virginmedia.com)
- # [21:34] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [21:38] <webr3> "soon"
- # [21:38] * Joins: roc (~chatzilla@121.98.230.221)
- # [21:39] * Quits: kal-EL_ (~jor-EL@host84-69-dynamic.245-95-r.retail.telecomitalia.it) (Quit: ChatZilla 0.9.86.1 [Firefox 4.0/20110318052756])
- # [21:40] * Joins: sicking (~chatzilla@2620:101:8003:200:226:bbff:fe05:3fe1)
- # [21:42] * Joins: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net)
- # [21:43] * Joins: othermaciej (~mjs@c-24-6-209-6.hsd1.ca.comcast.net)
- # [21:46] * Joins: shinyak (~shinyak@nat/google/x-jmvesxwlcupnhakh)
- # [21:51] * Quits: riven (~riven@pdpc/supporter/professional/riven) (Read error: Connection reset by peer)
- # [21:53] * Quits: cpearce (~chatzilla@118.90.24.28) (Ping timeout: 260 seconds)
- # [21:54] * Joins: jamesr_ (~jamesr@216.239.45.19)
- # [21:54] * Joins: jwalden (~waldo@ip-216-36-86-218.iad.megapath.net)
- # [21:54] * Joins: cpearce (~chatzilla@ip-118-90-24-28.xdsl.xnet.co.nz)
- # [21:56] * Joins: riven (~riven@pdpc/supporter/professional/riven)
- # [21:56] * Quits: danja__ (~danny@host46-251-static.12-87-b.business.telecomitalia.it) (Quit: gorn)
- # [22:00] * Quits: ap (~ap@17.203.15.167) (Quit: ap)
- # [22:04] * Quits: cpearce (~chatzilla@ip-118-90-24-28.xdsl.xnet.co.nz) (Ping timeout: 252 seconds)
- # [22:04] <jgraham> TabAtkins: If you weren't going to Japan on Google's dollar it might be worth your while to know that you can (or could 6 years ago) get some kind of foreigners-only tourist train ticket that makes travelling about more affordable, at least if you travel a lot
- # [22:04] <TabAtkins> Interesting.
- # [22:05] <TabAtkins> My wife and friend are coming with me and not being paid for by Google, so it might still be good to look into.
- # [22:05] * Quits: random_username (~user_@customer11855.pool1.unallocated-106-0.orangehomedsl.co.uk) (Quit: Linkinus - http://linkinus.com)
- # [22:05] <jgraham> http://www.japanrailpass.net/
- # [22:06] * Quits: hdhoang (~hdhoang@222.252.37.71) (Quit: Leaving.)
- # [22:07] <jgraham> Seems to be not valid on at least some Shinkansen
- # [22:07] <jgraham> I am a bit hazy on what we did because we went with a japanese friend so mostly we just followed her instructions
- # [22:08] <TabAtkins> Seems like it wouldn't actually save me anything if we're just doing a single roundtrip between tokyo and kyoto.
- # [22:09] <jgraham> No, I doubt it in that case. We travelled quite a bit more than that (although we did do that as part of the trip)
- # [22:09] <TabAtkins> Yeah, seems like a great deal if you'll be taking the train a few times.
- # [22:10] * jgraham wonders if anyone noticed the irony of using relatively-cpu-intensive video on a page about saving energy
- # [22:11] <AryehGregor> It's amazing how ironic environmentalism can often be.
- # [22:13] * Quits: sicking (~chatzilla@2620:101:8003:200:226:bbff:fe05:3fe1) (Ping timeout: 260 seconds)
- # [22:23] * Quits: shinyak (~shinyak@nat/google/x-jmvesxwlcupnhakh) (Remote host closed the connection)
- # [22:25] * Joins: chriseppstein_ (~chris@209.119.65.162)
- # [22:27] * Joins: pererik (~pe@unaffiliated/pererik)
- # [22:28] * Quits: chriseppstein (~chris@dsl092-049-179.sfo4.dsl.speakeasy.net) (Ping timeout: 246 seconds)
- # [22:28] * chriseppstein_ is now known as chriseppstein
- # [22:30] * Quits: Martijnc (~Martijnc@91.176.106.46) (Quit: Martijnc)
- # [22:33] * Joins: shinyak (~shinyak@nat/google/x-nsoblcuaxcevsviz)
- # [22:36] * Quits: Obvious (tachikoma@188.226.74.2) (Ping timeout: 258 seconds)
- # [22:40] * Quits: yijun (~yijun@2001:250:208:1666:21f:f3ff:fe52:9714) (Read error: Connection reset by peer)
- # [22:41] * Joins: yijun (~yijun@2001:250:208:1666:21f:f3ff:fe52:9714)
- # [22:42] * Joins: KaOSoFt (~KaOSoFt@186.114.5.226)
- # [22:42] * Quits: KaOSoFt (~KaOSoFt@186.114.5.226) (Changing host)
- # [22:42] * Joins: KaOSoFt (~KaOSoFt@unaffiliated/kaosoft)
- # [22:42] * Joins: Obvious (tachikoma@188.226.74.2)
- # [22:44] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: Ex-Chat)
- # [22:46] * Quits: shinyak (~shinyak@nat/google/x-nsoblcuaxcevsviz) (Remote host closed the connection)
- # [22:48] * Joins: stevela (~anonymous@74.125.59.65)
- # [22:51] * Joins: jacobolus (~jacobolus@99-108-143-196.lightspeed.sntcca.sbcglobal.net)
- # [22:55] * Quits: Hixie (~ianh@trivini.no) (Ping timeout: 240 seconds)
- # [22:55] * Quits: wilhelm (~wilhelm@trivini.no) (Ping timeout: 276 seconds)
- # [22:59] * Quits: matjas (~matjas@91.182.170.229) (Quit: Computer has gone to sleep.)
- # [23:02] * Quits: miketaylr (~miketaylr@206.217.92.186) (Quit: miketaylr)
- # [23:02] * Quits: roc (~chatzilla@121.98.230.221) (Ping timeout: 258 seconds)
- # [23:08] * Quits: kor (~kor@ip146-53-210-87.adsl2.static.versatel.nl) (Quit: kor)
- # [23:08] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [23:09] * Quits: GlitchMr (glitchmr@85.17.231.147) (Ping timeout: 260 seconds)
- # [23:12] * Quits: msucan (~robod@89.123.153.235) (Quit: .)
- # [23:16] * Quits: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [23:19] <AryehGregor> Hmm, ISSUE-80 decision is in.
- # [23:19] * AryehGregor reads
- # [23:19] * Joins: wilhelm (~wilhelm@trivini.no)
- # [23:20] * Joins: Hixie (~ianh@trivini.no)
- # [23:31] * Quits: xtoph (~xtoph@213.47.185.206)
- # [23:32] * Joins: boblet (~boblet@p2153-ipbf908osakakita.osaka.ocn.ne.jp)
- # [23:34] * eric_carlson is now known as ericc|away
- # [23:36] * Joins: abe (~abe@38.104.129.126)
- # [23:36] * Joins: jdaggett (~jdaggett@y227145.dynamic.ppp.asahi-net.or.jp)
- # [23:37] * Joins: shinyak (~shinyak@nat/google/x-cvjnbyypkvmhrwml)
- # [23:38] * _bga is now known as bga_|away
- # [23:40] * Quits: shinyak (~shinyak@nat/google/x-cvjnbyypkvmhrwml) (Remote host closed the connection)
- # [23:42] * Joins: sicking (~chatzilla@2620:101:8003:200:226:bbff:fe05:3fe1)
- # [23:46] <Hixie> oh hey
- # [23:46] <Hixie> we're on xkcd today!
- # [23:48] * Joins: ap (~ap@2620:0:1b00:1191:226:4aff:fe14:aad6)
- # [23:51] <aho> oh... boy :>
- # [23:53] <mpilgrim> i see a new XKCD poster in my future
- # [23:57] <tndH> all that work, just to get to that last line...
- # [23:57] * Quits: jwalden (~waldo@ip-216-36-86-218.iad.megapath.net) (Quit: back later)
- # [23:58] * Joins: nessy (~Adium@124.171.54.114)
- # [23:59] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # Session Close: Tue Apr 19 00:00:00 2011
The end :)