/irc-logs / freenode / #html5 / 2011-08-23 / end

Options:

  1. # Session Start: Tue Aug 23 00:00:00 2011
  2. # Session Ident: #html5
  3. # [00:02] * Quits: zatan (~zatan@5ad19e91.bb.sky.com) (Ping timeout: 264 seconds)
  4. # [00:04] * Joins: andrewjbaker__ (~ajb@88-104-98-207.dynamic.dsl.as9105.com)
  5. # [00:05] * Quits: maxmanders (~maxmander@188-220-35-232.zone11.bethere.co.uk) (Quit: leaving)
  6. # [00:05] * Quits: buribu (~buribu@unaffiliated/buribu) (Read error: Connection reset by peer)
  7. # [00:05] * Joins: rawfodog (~rawfodog@modemcable118.71-70-69.static.videotron.ca)
  8. # [00:05] * Quits: Frippe (~Frippe@unaffiliated/frippe) (Read error: Connection reset by peer)
  9. # [00:05] * Joins: Frippe (~Frippe@unaffiliated/frippe)
  10. # [00:06] * Quits: andrewjbaker_ (~ajb@88-104-100-166.dynamic.dsl.as9105.com) (Ping timeout: 260 seconds)
  11. # [00:07] * Quits: andrewjbaker__ (~ajb@88-104-98-207.dynamic.dsl.as9105.com) (Client Quit)
  12. # [00:07] * Joins: andrewjbaker__ (~ajb@88-104-98-207.dynamic.dsl.as9105.com)
  13. # [00:09] * Joins: dgathright (~dgathrigh@nat/yahoo/x-huuciqrshpifiilr)
  14. # [00:10] * Joins: kyxzme (~kyxzme@93-58-116-120.ip158.fastwebnet.it)
  15. # [00:11] * Joins: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t)
  16. # [00:11] * Quits: Frippe (~Frippe@unaffiliated/frippe) (Quit: Computer has gone to sleep)
  17. # [00:11] * halles is now known as xtc
  18. # [00:11] * Joins: Frippe (~Frippe@unaffiliated/frippe)
  19. # [00:14] * Joins: temp01 (~temp01@unaffiliated/temp01)
  20. # [00:16] * Quits: Frippe (~Frippe@unaffiliated/frippe) (Ping timeout: 258 seconds)
  21. # [00:17] * Joins: mike5w3c_ (~MikeSmith@EM114-48-18-243.pool.e-mobile.ne.jp)
  22. # [00:17] <andrewjbaker__> Quick question... anyone considered using Lua to replicate client and server-side logic for use in games?
  23. # [00:19] <CoverSlide> a lua interpreter for javascript?
  24. # [00:19] <andrewjbaker__> Yeah.
  25. # [00:19] <CoverSlide> ... why?
  26. # [00:19] * Quits: plh_ (~plh@w3cdhcp109.w3.org) (Quit: always accept cookies)
  27. # [00:20] <andrewjbaker__> And the same for whichever server-side language you happen to be using.
  28. # [00:20] * Quits: mike5w3c (~MikeSmith@EM114-48-33-107.pool.e-mobile.ne.jp) (Ping timeout: 258 seconds)
  29. # [00:20] * mike5w3c_ is now known as mike5w3c
  30. # [00:21] <andrewjbaker__> I find myself writing similar code for both client and server for FF.
  31. # [00:21] <andrewjbaker__> To handle player movement, etc.
  32. # [00:21] <andrewjbaker__> Would be nice if I could just write it once in something like Lua, and execute it in both locations.
  33. # [00:21] <monteslu> andrewjbaker__, you not using node on the server?
  34. # [00:21] <andrewjbaker__> PHP.
  35. # [00:22] <monteslu> ahh
  36. # [00:22] <monteslu> time to make the switch :)
  37. # [00:22] <andrewjbaker__> LOL.
  38. # [00:22] * Quits: Jon47 (~jonz@204.56.125.50) (Quit: Leaving.)
  39. # [00:23] <monteslu> the only popular scripting i've seen on both besides javascript is coffee
  40. # [00:23] <andrewjbaker__> One of the main things I've tried to stick to is ensuring that Steppe and FF are 'portable' to other platforms.
  41. # [00:23] <monteslu> or, java if you're doing gwt
  42. # [00:24] <monteslu> I'm currently in gwt hell
  43. # [00:24] <andrewjbaker__> That's why my landscape renderer is HTML5 2D canvas and not WebGL.
  44. # [00:24] <monteslu> man its confusing jumping back and forth from server to client codein the same codebase
  45. # [00:25] * Joins: figital (~figital@pool-173-65-171-249.tampfl.fios.verizon.net)
  46. # [00:26] * Quits: N0va (~ricki@84.19.108.75) (Ping timeout: 250 seconds)
  47. # [00:26] <andrewjbaker__> I already wrote a PHP proof-of-concept of Steppe... so I know it can be ported to PHP. Server-side landscape rendering anyone? LOL. No, I thought not. :-p
  48. # [00:27] <andrewjbaker__> It's like the ultimate fallback.
  49. # [00:28] <andrewjbaker__> What's that? No canvas support? Or tired of shims and additional JS libraries? Render server-side and send down frames as .pngs.
  50. # [00:28] <andrewjbaker__> Of course, the overhead is crazy.
  51. # [00:28] <andrewjbaker__> So no good for real-time games.
  52. # [00:29] * ksemeks_ is now known as ksemeks
  53. # [00:29] <andrewjbaker__> But SWIG still looks promising. Write the server-side renderer in C++ and compile extensions for common server-side languages.
  54. # [00:29] <andrewjbaker__> And maybe use that same source to port Steppe to NaCl.
  55. # [00:32] <andrewjbaker__> And then I can imagine seeing HTML like <canvas style="height: 400px; width: 640px" height="400" width="640"><img src="/render.php" /></canvas>
  56. # [00:32] <andrewjbaker__> So it falls back to server-side rendering if the <canvas> element isn't supported.
  57. # [00:33] <andrewjbaker__> Plenty of possibilities.
  58. # [00:33] <monteslu> inverse frames per sec numbers :)
  59. # [00:34] * Quits: tantek (~tantek@nat/mozilla/x-yqbowbiihoxxjklo) (Quit: tantek)
  60. # [00:34] <andrewjbaker__> Yeah, like I said, not so great for real-time.
  61. # [00:34] <monteslu> very cool though
  62. # [00:34] <andrewjbaker__> But FF's movement should be OK.
  63. # [00:34] * Parts: franksalim (~frank@64-71-23-250.static.wiline.com) ("Leaving")
  64. # [00:35] * Quits: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk) (Quit: Leaving.)
  65. # [00:35] <andrewjbaker__> Best way would probably be an on-the-fly video encoder... but then we're really talking huge requirements for server-side processing.
  66. # [00:37] * Joins: FylGood (~fylgood@pool-108-28-240-83.washdc.fios.verizon.net)
  67. # [00:38] * Quits: David_Bradbury (~chatzilla@75-147-178-254-Washington.hfc.comcastbusiness.net) (Quit: ChatZilla 0.9.87 [Firefox 6.0/20110811165603])
  68. # [00:39] * Quits: mdale (~mdale@unaffiliated/mdale) (Read error: Operation timed out)
  69. # [00:39] * Quits: ericduran (~ericduran@173-203-243-241.static.cloud-ips.com) (Quit: ericduran)
  70. # [00:41] * Quits: vanmik (~vanmik@31.23.36.40) (Remote host closed the connection)
  71. # [00:43] * Joins: tantek (~tantek@nat/mozilla/x-bufkggtmnfvwgeqz)
  72. # [00:43] * danbeam__ is now known as danbeam
  73. # [00:44] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Quit: Leaving.)
  74. # [00:51] * Quits: andr3 (~andr3@bl14-168-231.dsl.telepac.pt) (Quit: andr3)
  75. # [00:52] * Joins: andr3 (~andr3@bl14-168-231.dsl.telepac.pt)
  76. # [00:54] * Quits: CoverSlide (~Richardh@66-113-67-35.rev.ibsinc.com) (Quit: Konnichiwa bitches!)
  77. # [00:55] * Quits: beeeviz (~beevi2@ip-78-94-76-99.unitymediagroup.de) (Ping timeout: 268 seconds)
  78. # [00:56] * Joins: beeviz (~beevi2@ip-78-94-76-99.unitymediagroup.de)
  79. # [01:00] * Quits: benv (~benv@50-0-80-160.dsl.static.sonic.net) (Quit: Leaving...)
  80. # [01:01] * Quits: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net) (Ping timeout: 245 seconds)
  81. # [01:02] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
  82. # [01:03] * Joins: benv (~benv@50-0-80-160.dsl.static.sonic.net)
  83. # [01:03] * Quits: sleetx (~ajyhsdfgw@c-76-100-128-96.hsd1.va.comcast.net) (Ping timeout: 240 seconds)
  84. # [01:07] * Quits: tantek (~tantek@nat/mozilla/x-bufkggtmnfvwgeqz) (Quit: tantek)
  85. # [01:08] * Joins: tantek (~tantek@nat/mozilla/x-qzraxadcqhumwfyu)
  86. # [01:10] * Quits: beeviz (~beevi2@ip-78-94-76-99.unitymediagroup.de) (Ping timeout: 276 seconds)
  87. # [01:12] * Quits: dgathright (~dgathrigh@nat/yahoo/x-huuciqrshpifiilr) (Read error: Connection reset by peer)
  88. # [01:13] * Joins: dgathright (~dgathrigh@nat/yahoo/x-dwcdsarnphyowjtd)
  89. # [01:14] * Quits: dgathright (~dgathrigh@nat/yahoo/x-dwcdsarnphyowjtd) (Read error: Connection reset by peer)
  90. # [01:14] * Joins: dgathright (~dgathrigh@nat/yahoo/x-yfzycgpdiuodhopn)
  91. # [01:14] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Quit: Leaving.)
  92. # [01:16] * Quits: xtc (~xtc@pc-67-70-120-200.cm.vtr.net) (Quit: This computer has gone to sleep)
  93. # [01:26] * Joins: jeffszusz (~jeffszusz@d24-57-194-149.home.cgocable.net)
  94. # [01:27] * Quits: taylorRichie (~Adium@208.110.141.169) (Quit: Leaving.)
  95. # [01:28] * Quits: xec (~xec@2a00:10b0:1:1002:5ab0:35ff:fef8:6a01) (*.net *.split)
  96. # [01:28] * Quits: truppp (truppp@2a01:130:2000:121:230:48ff:fe64:340a) (*.net *.split)
  97. # [01:29] * Quits: shipit (~shipit@204-15-2-155-static.ipnetworksinc.net) (Ping timeout: 245 seconds)
  98. # [01:31] * Joins: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net)
  99. # [01:31] * Quits: dcadenas_ (~dcadenas@r186-48-214-170.dialup.adsl.anteldata.net.uy) (Ping timeout: 260 seconds)
  100. # [01:33] * Quits: nimbu (~Adium@c-24-18-47-160.hsd1.wa.comcast.net) (Ping timeout: 268 seconds)
  101. # [01:33] * nimbupani is now known as nimbu
  102. # [01:34] * Joins: xec (~xec@2a00:10b0:1:1002:5ab0:35ff:fef8:6a01)
  103. # [01:34] * Joins: truppp (truppp@2a01:130:2000:121:230:48ff:fe64:340a)
  104. # [01:35] * Joins: hitchcock (~bluearcht@c-66-31-136-2.hsd1.ma.comcast.net)
  105. # [01:35] * Joins: shipit (~shipit@67.221.38.116)
  106. # [01:40] * Quits: m1chael (~m1chael@ip68-9-58-51.ri.ri.cox.net) (Ping timeout: 260 seconds)
  107. # [01:41] * Quits: tristanseifert (~tristanse@c-67-164-14-81.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
  108. # [01:42] * Joins: m1chael (m1chael@ip68-9-58-51.ri.ri.cox.net)
  109. # [01:43] * Joins: tristanseifert (~tristanse@c-67-164-14-81.hsd1.ca.comcast.net)
  110. # [01:47] * Quits: socialhapy (~socialhap@46-38-167-162.static.cloud-ips.co.uk) (Remote host closed the connection)
  111. # [01:47] * Joins: socialhapy (~socialhap@46-38-167-162.static.cloud-ips.co.uk)
  112. # [01:48] * Quits: wookiehangover (~wookiehan@173-8-247-218-Colorado.hfc.comcastbusiness.net) (Ping timeout: 240 seconds)
  113. # [01:51] * Quits: WILDsharustar (~sharustar@unaffiliated/sharustar) (Quit: Leaving)
  114. # [01:51] * Quits: m1chael (m1chael@ip68-9-58-51.ri.ri.cox.net) (Ping timeout: 252 seconds)
  115. # [01:54] * Joins: spasquali (~spasquali@64.61.91.74)
  116. # [01:58] * andrewjbaker__ is now known as andrewjbaker
  117. # [01:58] * Quits: tantek (~tantek@nat/mozilla/x-qzraxadcqhumwfyu) (Read error: Connection reset by peer)
  118. # [01:58] * Joins: dcadenas (~dcadenas@186-8-58-88-dynamic.movinet.com.uy)
  119. # [02:00] * Joins: tantek (~tantek@nat/mozilla/x-kvwcllrccsqiiaty)
  120. # [02:01] * Quits: dcadenas (~dcadenas@186-8-58-88-dynamic.movinet.com.uy) (Remote host closed the connection)
  121. # [02:02] * Quits: Jayflux (~jay_knows@cpc1-dudl6-0-0-cust197.wolv.cable.virginmedia.com) (Quit: ( www.nnscript.com :: NoNameScript 4.22 :: www.esnation.com ))
  122. # [02:07] * Quits: sic1 (~ckihneman@wsip-68-224-173-84.sd.sd.cox.net) (Quit: Computer has gone to sleep)
  123. # [02:07] * Joins: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net)
  124. # [02:08] * Joins: sic1 (~ckihneman@wsip-68-224-173-84.sd.sd.cox.net)
  125. # [02:12] * Joins: Hautain_ (~Hautain@AOrleans-258-1-89-124.w90-24.abo.wanadoo.fr)
  126. # [02:15] * Quits: Hautain (~Hautain@AOrleans-258-1-18-81.w90-8.abo.wanadoo.fr) (Ping timeout: 240 seconds)
  127. # [02:20] * Quits: andrewjbaker (~ajb@88-104-98-207.dynamic.dsl.as9105.com) (Quit: Parting is such sweet sorrow)
  128. # [02:24] * Joins: odinho (odinho@knuth.ping.uio.no)
  129. # [02:24] * Joins: colinsullivan1 (~Adium@32.97.110.58)
  130. # [02:24] * Joins: dug__ (~doug@64.31.25.146)
  131. # [02:25] * Joins: theresaa1na (~root@li99-144.members.linode.com)
  132. # [02:26] * Quits: tantek (~tantek@nat/mozilla/x-kvwcllrccsqiiaty) (Ping timeout: 260 seconds)
  133. # [02:26] * Joins: Lebannen_ (~lebannen@87.127.122.195)
  134. # [02:26] * Quits: colinsullivan (~Adium@129.42.208.179) (Read error: Operation timed out)
  135. # [02:27] * Quits: skottt (skottt@c-67-170-101-122.hsd1.wa.comcast.net) (Ping timeout: 276 seconds)
  136. # [02:27] * Quits: Lebannen (~lebannen@87.127.122.195) (Ping timeout: 276 seconds)
  137. # [02:27] * Quits: Velmont (odinho@knuth.ping.uio.no) (Ping timeout: 276 seconds)
  138. # [02:27] * Quits: benv (~benv@50-0-80-160.dsl.static.sonic.net) (Ping timeout: 276 seconds)
  139. # [02:27] * Quits: erichynds (~ehynds@venkman.brightcove.com) (Ping timeout: 276 seconds)
  140. # [02:27] * Quits: nlogax (~nlogax@unaffiliated/nlogax) (Ping timeout: 276 seconds)
  141. # [02:27] * Quits: dug_ (~doug@64.31.25.146) (Ping timeout: 276 seconds)
  142. # [02:27] * Quits: croby (~croby@c-174-61-151-153.hsd1.wa.comcast.net) (Ping timeout: 276 seconds)
  143. # [02:27] * Quits: niftylettuce (u2733@gateway/web/irccloud.com/x-wdefrszwzgwvlbyr) (Ping timeout: 276 seconds)
  144. # [02:27] * Quits: theresaanna (~root@li99-144.members.linode.com) (Ping timeout: 276 seconds)
  145. # [02:27] * Lebannen_ is now known as Lebannen
  146. # [02:27] * Joins: croby (~croby@c-174-61-151-153.hsd1.wa.comcast.net)
  147. # [02:27] * Joins: skottt (skottt@c-67-170-101-122.hsd1.wa.comcast.net)
  148. # [02:28] * Joins: nlogax (~nlogax@unaffiliated/nlogax)
  149. # [02:31] * Quits: thatryan (~thatryan@adsl-76-254-18-99.dsl.pltn13.sbcglobal.net) (Quit: Leaving...)
  150. # [02:35] * Joins: benv (~benv@50-0-80-160.dsl.static.sonic.net)
  151. # [02:38] * Joins: niftylettuce (u2733@gateway/web/irccloud.com/x-gmcmeyjepdrqvtrp)
  152. # [02:42] * Quits: dgathright (~dgathrigh@nat/yahoo/x-yfzycgpdiuodhopn) (Ping timeout: 258 seconds)
  153. # [02:43] * Joins: m1chael (m1chael@ip68-9-58-51.ri.ri.cox.net)
  154. # [02:45] * Joins: tantek (~tantek@nat/mozilla/x-nycnqngjtnzyedns)
  155. # [02:45] * Joins: ben_h (~ben@120.152.177.249)
  156. # [02:45] * Quits: ben_h (~ben@120.152.177.249) (Client Quit)
  157. # [02:46] * Joins: ssickle (~ryanv@66.162.134.130)
  158. # [02:47] * Quits: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl) (Ping timeout: 240 seconds)
  159. # [02:48] * Quits: enosis (~dec@87-198-47-27.ptr.magnet.ie)
  160. # [02:49] * Joins: symb (~IRC@p54A7B3E0.dip.t-dialin.net)
  161. # [02:52] * Quits: symb_ (~IRC@p54A7B330.dip.t-dialin.net) (Ping timeout: 252 seconds)
  162. # [02:57] * Joins: dgathright (~dgathrigh@173-148-167-35.pools.spcsdns.net)
  163. # [02:58] * Quits: dgathright (~dgathrigh@173-148-167-35.pools.spcsdns.net) (Client Quit)
  164. # [03:03] * Quits: colinsullivan1 (~Adium@32.97.110.58) (Quit: Leaving.)
  165. # [03:14] * Quits: m1chael (m1chael@ip68-9-58-51.ri.ri.cox.net) (Ping timeout: 276 seconds)
  166. # [03:16] * Quits: boaz (~boaz@li326-230.members.linode.com) (Excess Flood)
  167. # [03:16] * Joins: boaz (~boaz@li326-230.members.linode.com)
  168. # [03:17] * Joins: thatryan (~thatryan@c-71-202-3-49.hsd1.ca.comcast.net)
  169. # [03:19] * tw2113 hands thatryan coffee
  170. # [03:20] * Quits: insin (~insin@host86-162-165-163.range86-162.btcentralplus.com)
  171. # [03:27] * Quits: fearlesstost (~fearlesst@66.220.144.74) (Quit: fearlesstost)
  172. # [03:27] <thatryan> thanks
  173. # [03:30] * Joins: miketaylr (~miketaylr@24.42.93.245)
  174. # [03:30] <tw2113> yo miketaylr
  175. # [03:31] <miketaylr> hey dude
  176. # [03:31] <miketaylr> what's going on?
  177. # [03:32] <tw2113> procrastination by browsing amazon free mp3s, and X-Files
  178. # [03:39] * Joins: sleetx (~ajyhsdfgw@c-76-100-128-96.hsd1.va.comcast.net)
  179. # [03:41] * Joins: m1chael (~m1chael@ip68-9-58-51.ri.ri.cox.net)
  180. # [03:44] * Quits: gde33 (kvirc@546A1A51.cm-12-3a.dynamic.ziggo.nl) (Quit: KVIrc 4.0.4 Insomnia http://www.kvirc.net/)
  181. # [03:46] * Joins: plh_ (~plh@209-6-123-224.c3-0.arl-ubr1.sbo-arl.ma.cable.rcn.com)
  182. # [03:47] * Quits: plh_ (~plh@209-6-123-224.c3-0.arl-ubr1.sbo-arl.ma.cable.rcn.com) (Client Quit)
  183. # [03:49] * Joins: taar779 (~taar779@d24-57-144-141.home.cgocable.net)
  184. # [03:49] * Quits: ssickle (~ryanv@66.162.134.130) (Ping timeout: 260 seconds)
  185. # [03:52] * Quits: m1chael (~m1chael@ip68-9-58-51.ri.ri.cox.net) (Ping timeout: 246 seconds)
  186. # [03:54] <tw2113> miketaylr put down the shiny
  187. # [03:54] * Quits: kennyluck (~kennyluck@114-43-121-205.dynamic.hinet.net) (Quit: kennyluck)
  188. # [03:55] * Joins: tigerpaw- (~tigerpaw@50-54-154-70.evrt.wa.frontiernet.net)
  189. # [03:55] * Joins: xtc (~xtc@pc-144-158-83-200.cm.vtr.net)
  190. # [03:57] * Quits: tigerpaw (~tigerpaw@unaffiliated/tigerpaw) (Ping timeout: 252 seconds)
  191. # [03:58] <acidjazz> any1 here good w/ paperjs? trying to figure out an easy way to increase the radius of a filled circle path
  192. # [03:58] <tw2113> sounds like math
  193. # [03:58] <tw2113> *runs away from the maths*
  194. # [03:59] <tw2113> i have to go take care of some things anyway
  195. # [03:59] * danbeam is now known as danbeam__
  196. # [04:02] * Joins: OzDave_mbp (~OzDave_mb@27-33-43-79.static.tpgi.com.au)
  197. # [04:04] * Quits: thatryan (~thatryan@c-71-202-3-49.hsd1.ca.comcast.net) (Quit: Leaving...)
  198. # [04:08] * Quits: maZtah (~maztah@unaffiliated/maztah) (Ping timeout: 268 seconds)
  199. # [04:11] * Joins: techrush (~techrush@adsl-75-4-206-43.dsl.irvnca.sbcglobal.net)
  200. # [04:13] * Joins: maZtah (~maztah@5ED438B4.cm-7-5a.dynamic.ziggo.nl)
  201. # [04:13] * Quits: maZtah (~maztah@5ED438B4.cm-7-5a.dynamic.ziggo.nl) (Changing host)
  202. # [04:13] * Joins: maZtah (~maztah@unaffiliated/maztah)
  203. # [04:13] * Quits: Pomax (~Pomax@d205-250-160-3.bchsia.telus.net) (Ping timeout: 246 seconds)
  204. # [04:16] * Joins: beeviz (~beevi2@ip-78-94-0-82.unitymediagroup.de)
  205. # [04:16] * Joins: Pomax (~Pomax@d205-250-160-3.bchsia.telus.net)
  206. # [04:21] * Quits: tantek (~tantek@nat/mozilla/x-nycnqngjtnzyedns) (Quit: tantek)
  207. # [04:21] * Joins: shipit_ (~shipit@204-15-2-155-static.ipnetworksinc.net)
  208. # [04:22] * Quits: benv (~benv@50-0-80-160.dsl.static.sonic.net) (Quit: Leaving...)
  209. # [04:23] * Quits: shipit (~shipit@67.221.38.116) (Ping timeout: 245 seconds)
  210. # [04:23] <acidjazz> nm got it
  211. # [04:29] * Quits: beeviz (~beevi2@ip-78-94-0-82.unitymediagroup.de) (Ping timeout: 260 seconds)
  212. # [04:30] * Quits: Pomax (~Pomax@d205-250-160-3.bchsia.telus.net) (Ping timeout: 264 seconds)
  213. # [04:32] * Joins: Pomax (~Pomax@d205-250-160-3.bchsia.telus.net)
  214. # [04:45] * Joins: m00bles (~Pomax@d205-250-160-3.bchsia.telus.net)
  215. # [04:46] * Quits: miketaylr (~miketaylr@24.42.93.245) (Quit: miketaylr)
  216. # [04:46] * Joins: cybergggirl (~cybergggi@212-198-248-35.rev.numericable.fr)
  217. # [04:46] * Joins: miketaylr (~miketaylr@24.42.93.245)
  218. # [04:46] * Quits: Pomax (~Pomax@d205-250-160-3.bchsia.telus.net) (Ping timeout: 264 seconds)
  219. # [04:46] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
  220. # [04:48] * Quits: cybergggirl (~cybergggi@212-198-248-35.rev.numericable.fr) (Client Quit)
  221. # [04:52] * Quits: dguttman (~dguttman@rrcs-173-196-159-188.west.biz.rr.com) (Quit: dguttman)
  222. # [04:56] * Quits: m00bles (~Pomax@d205-250-160-3.bchsia.telus.net) (Ping timeout: 252 seconds)
  223. # [04:57] * Quits: FylGood (~fylgood@pool-108-28-240-83.washdc.fios.verizon.net) (Quit: Textual IRC Client: http://www.textualapp.com/)
  224. # [04:57] * Joins: Pomax (~Pomax@d205-250-160-3.bchsia.telus.net)
  225. # [04:59] * Quits: jimi_hendrix (~jimi@unaffiliated/jimihendrix) (Ping timeout: 245 seconds)
  226. # [04:59] * Joins: jimi_hendrix (~jimi@unaffiliated/jimihendrix)
  227. # [05:00] <paul_irish> http://t.co/VnGy3Kd
  228. # [05:00] <paul_irish> http://lcamtuf.coredump.cx/tangled/ rather
  229. # [05:02] * theresaa1na is now known as theresaanna
  230. # [05:05] * Joins: p3rsist (~p3rsist@modemcable251.101-23-96.mc.videotron.ca)
  231. # [05:06] * Quits: Pomax (~Pomax@d205-250-160-3.bchsia.telus.net) (Ping timeout: 252 seconds)
  232. # [05:08] * Quits: taar779 (~taar779@d24-57-144-141.home.cgocable.net) (Ping timeout: 268 seconds)
  233. # [05:09] * Quits: hitchcock (~bluearcht@c-66-31-136-2.hsd1.ma.comcast.net) (Quit: Leaving.)
  234. # [05:15] * Joins: taar779 (~taar779@d24-57-144-141.home.cgocable.net)
  235. # [05:19] * Quits: shipit_ (~shipit@204-15-2-155-static.ipnetworksinc.net) (Remote host closed the connection)
  236. # [05:22] * Quits: nonge (~nonge@p5082AD6C.dip.t-dialin.net) (Ping timeout: 260 seconds)
  237. # [05:33] * Joins: nonge (~nonge@p5B326C92.dip.t-dialin.net)
  238. # [05:37] * Joins: Pomax (~Pomax@d205-250-160-3.bchsia.telus.net)
  239. # [05:43] * Joins: dmachi1 (~dmachi@pool-72-66-204-7.ronkva.east.verizon.net)
  240. # [05:43] * Quits: dmachi (~dmachi@pool-72-66-204-7.ronkva.east.verizon.net) (Read error: Connection reset by peer)
  241. # [06:02] * Joins: dr0id (~andy@unaffiliated/dr0id)
  242. # [06:17] * Quits: miketaylr (~miketaylr@24.42.93.245) (Quit: miketaylr)
  243. # [06:20] * Quits: mike5w3c (~MikeSmith@EM114-48-18-243.pool.e-mobile.ne.jp) (Ping timeout: 252 seconds)
  244. # [06:25] * Joins: mike5w3c (~MikeSmith@EM114-48-233-197.pool.e-mobile.ne.jp)
  245. # [06:28] * Joins: trumpetmic (~trumpetmi@c-107-2-155-157.hsd1.co.comcast.net)
  246. # [06:30] * Quits: trumpetmic (~trumpetmi@c-107-2-155-157.hsd1.co.comcast.net) (Client Quit)
  247. # [06:32] * Joins: skylamer` (cgskylamer@78.90.213.55)
  248. # [06:32] * Quits: rawfodog (~rawfodog@modemcable118.71-70-69.static.videotron.ca) (Remote host closed the connection)
  249. # [06:46] * Quits: boaz (~boaz@li326-230.members.linode.com) (Excess Flood)
  250. # [06:47] * Joins: boaz (~boaz@li326-230.members.linode.com)
  251. # [06:48] * Joins: wookiehangover (~wookiehan@c-98-245-45-244.hsd1.co.comcast.net)
  252. # [06:49] * Quits: wookiehangover (~wookiehan@c-98-245-45-244.hsd1.co.comcast.net) (Client Quit)
  253. # [07:02] * Quits: jeffszusz (~jeffszusz@d24-57-194-149.home.cgocable.net) (Remote host closed the connection)
  254. # [07:13] * Joins: nikstepff (~nikstepff@0x5581734a.terminal.tdcmobil.dk)
  255. # [07:13] * Quits: nikstepff (~nikstepff@0x5581734a.terminal.tdcmobil.dk) (Client Quit)
  256. # [07:17] * Quits: kyxzme (~kyxzme@93-58-116-120.ip158.fastwebnet.it) (Remote host closed the connection)
  257. # [07:21] * Quits: sasori (~sasori@acl1-719bts.gw.smartbro.net) (Ping timeout: 245 seconds)
  258. # [07:24] * Joins: zatan (~zatan@5ad19e91.bb.sky.com)
  259. # [07:25] * Joins: Ankheg (~Ankheg@91.224.77.4)
  260. # [07:47] * Joins: BigKing (~BigKing@p5DD6884B.dip0.t-ipconnect.de)
  261. # [07:51] * Quits: techrush (~techrush@adsl-75-4-206-43.dsl.irvnca.sbcglobal.net) (Ping timeout: 252 seconds)
  262. # [07:57] * Joins: benv (~benv@99-7-171-41.lightspeed.sntcca.sbcglobal.net)
  263. # [07:58] * Joins: prajwalit (~prajwalit@121.243.225.226)
  264. # [07:58] * Quits: zatan (~zatan@5ad19e91.bb.sky.com) (Ping timeout: 240 seconds)
  265. # [08:00] * Joins: zatan (~zatan@5ad19e91.bb.sky.com)
  266. # [08:00] * Joins: techrush (~techrush@adsl-75-4-206-43.dsl.irvnca.sbcglobal.net)
  267. # [08:04] * Quits: p3rsist (~p3rsist@modemcable251.101-23-96.mc.videotron.ca) (Ping timeout: 245 seconds)
  268. # [08:05] * Quits: taar779 (~taar779@d24-57-144-141.home.cgocable.net) (Quit: Leaving)
  269. # [08:08] * Quits: techrush (~techrush@adsl-75-4-206-43.dsl.irvnca.sbcglobal.net) (Ping timeout: 258 seconds)
  270. # [08:09] * Joins: Frippe (~Frippe@unaffiliated/frippe)
  271. # [08:09] * Quits: zatan (~zatan@5ad19e91.bb.sky.com) (Ping timeout: 246 seconds)
  272. # [08:10] * Quits: doritoDan (~doritoDan@c-5eeaaa34-74736162.cust.telenor.se) (Read error: Connection reset by peer)
  273. # [08:19] * Joins: BigKing_2nd (~BigKing@p5DD687FB.dip0.t-ipconnect.de)
  274. # [08:20] * Joins: jeffszusz (~jeffszusz@d24-57-194-149.home.cgocable.net)
  275. # [08:20] * Quits: jochen__ (~jochen@nat/google/x-zihyrsmvcmluloww) (Remote host closed the connection)
  276. # [08:20] * Joins: jochen__ (~jochen@nat/google/x-waquuunqmiarcdcj)
  277. # [08:22] * Quits: BigKing (~BigKing@p5DD6884B.dip0.t-ipconnect.de) (Ping timeout: 240 seconds)
  278. # [08:24] * Quits: jeffszusz (~jeffszusz@d24-57-194-149.home.cgocable.net) (Remote host closed the connection)
  279. # [08:26] * Quits: naquad (~naquad@174.142.224.219) (Ping timeout: 240 seconds)
  280. # [08:30] * Joins: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl)
  281. # [08:36] * Joins: jaymoretti (~textual@189.123.100.205)
  282. # [08:37] * jaymoretti is now known as jay_moretti
  283. # [08:43] * Quits: jay_moretti (~textual@189.123.100.205) (Quit: Textual IRC Client: http://www.textualapp.com/)
  284. # [08:43] * Joins: sasori (~sasori@acl1-719bts.gw.smartbro.net)
  285. # [08:44] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: Never look down on someone unless you're helping them up.)
  286. # [08:45] * Joins: simenbrekken (~simenbrek@77.40.186.130)
  287. # [08:45] <dpogue> Are there any browsers that actually support and properly use the sizes attribute of a rel="icon" link?
  288. # [08:46] <simenbrekken> iOS
  289. # [08:47] <simenbrekken> for specifying which icon is for retina and normal res
  290. # [08:47] * Quits: replore_ (~replore@ntkngw133234.kngw.nt.ftth.ppp.infoweb.ne.jp) (Remote host closed the connection)
  291. # [08:49] * Joins: Evanescence (~chris@122.237.29.78)
  292. # [08:50] * Quits: skylamer` (cgskylamer@78.90.213.55)
  293. # [08:53] * Joins: NoNoNo (~Adium@2a00:1158:0:201:6443:1940:b999:497b)
  294. # [08:56] * Quits: NoNoNo (~Adium@2a00:1158:0:201:6443:1940:b999:497b) (Client Quit)
  295. # [08:57] * Quits: BigKing_2nd (~BigKing@p5DD687FB.dip0.t-ipconnect.de) (Quit: Verlassend)
  296. # [08:57] * Joins: BigKing (~BigKing@p5DD687FB.dip0.t-ipconnect.de)
  297. # [08:59] * Joins: NoNoNo (~Adium@2a00:1158:0:201:614e:a599:4e22:6ce9)
  298. # [08:59] * Quits: BigKing (~BigKing@p5DD687FB.dip0.t-ipconnect.de) (Client Quit)
  299. # [08:59] * Joins: BigKing (~BigKing@p5DD687FB.dip0.t-ipconnect.de)
  300. # [09:00] * Joins: beevi7 (~manuel.bi@tim.7val.com)
  301. # [09:01] * Joins: doritoDan (~doritoDan@81-232-79-127-no46.business.telia.com)
  302. # [09:03] * Quits: BigKing (~BigKing@p5DD687FB.dip0.t-ipconnect.de) (Remote host closed the connection)
  303. # [09:05] * Joins: kennyluck (~kennyluck@114-43-121-205.dynamic.hinet.net)
  304. # [09:07] <paul_irish> ?g mathias icons @ dpogue
  305. # [09:07] <bot-t> dpogue, rel="shortcut icon" considered harmful · Mathias poopin Bynens - http://mathiasbynens.be/notes/rel-shortcut-icon
  306. # [09:07] <paul_irish> lolololol matjas
  307. # [09:07] <matjas> FFFFFUUUUU
  308. # [09:07] <paul_irish> :D
  309. # [09:07] * matjas shakes fist at krijn
  310. # [09:08] <nimbu> did you do it first matjas?
  311. # [09:08] <matjas> nimbu: yeah, i changed his full twitter name to krijn poopin’ hoetmer
  312. # [09:08] <nimbu> errr then clearly you had it coming :)
  313. # [09:08] * Joins: krijn (u2319@gateway/web/irccloud.com/x-puogzjukclrtfhbx)
  314. # [09:08] <matjas> he uses echofon which only shows the account names, so he didn’t notice for 3 days
  315. # [09:09] <matjas> nimbu: i don’t know, considering http://poopinrules.com/
  316. # [09:09] <nimbu> umm NO
  317. # [09:09] <krijn> You changed the rules man!
  318. # [09:09] <nimbu> ?nimbuslap matjas
  319. # [09:09] <bot-t> ( - -)/☆(*_*) ← matjas
  320. # [09:10] * Joins: squeakytoy (hidden-use@gateway.netset.se)
  321. # [09:10] * Joins: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk)
  322. # [09:10] <paul_irish> yeah that seems like fair retribution.
  323. # [09:11] * Joins: raphraph (~raph@LMontsouris-156-25-3-55.w80-14.abo.wanadoo.fr)
  324. # [09:13] <matjas> poop injection is the new sql injection
  325. # [09:16] * Joins: diimdeep (~dmitry@217.171.8.162)
  326. # [09:23] * Joins: kasadu (~kasadu@70.82-134-52.bkkb.no)
  327. # [09:24] * Quits: socialhapy (~socialhap@46-38-167-162.static.cloud-ips.co.uk) (Remote host closed the connection)
  328. # [09:24] * Joins: socialhapy (~socialhap@46-38-167-162.static.cloud-ips.co.uk)
  329. # [09:26] * Joins: JackLeo (~Domas@cl-78-158-19-35.fastlink.lt)
  330. # [09:30] * Joins: NetRoY (~NetRoY@nat/yahoo/x-cqfeoordtttuuguk)
  331. # [09:32] * Joins: Ms2ger (~Ms2ger@91.181.115.83)
  332. # [09:32] * Quits: niftylettuce (u2733@gateway/web/irccloud.com/x-gmcmeyjepdrqvtrp) (Read error: Operation timed out)
  333. # [09:32] * Joins: dbugger (~dbugger@business-092-079-139-146.static.arcor-ip.net)
  334. # [09:33] <dbugger> Hello guys. Im working with the History API and I have a couple question.
  335. # [09:33] * Quits: dr0id (~andy@unaffiliated/dr0id) (Quit: Leaving.)
  336. # [09:34] <dbugger> first, I have implemented all right with my ajax calls and the back button works all right, but if I come from, lets say "google.coM", the back button wont allow me to go there. How can I avoid these effect?
  337. # [09:46] * Joins: Hautain (~Hautain@AOrleans-258-1-76-109.w90-24.abo.wanadoo.fr)
  338. # [09:46] * psynaptic|away is now known as psynaptic
  339. # [09:46] * Joins: tbassetto (~tbassetto@anj75-2-88-162-180-30.fbx.proxad.net)
  340. # [09:47] * Joins: maxmanders (~maxmander@94.175.212.66)
  341. # [09:48] * Quits: Hautain_ (~Hautain@AOrleans-258-1-89-124.w90-24.abo.wanadoo.fr) (Ping timeout: 245 seconds)
  342. # [09:48] * psynaptic is now known as psynaptic|away
  343. # [09:49] * Joins: m1chael (m1chael@ip68-9-58-51.ri.ri.cox.net)
  344. # [09:51] * Quits: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net) (Ping timeout: 245 seconds)
  345. # [09:52] * psynaptic|away is now known as psynaptic
  346. # [09:53] * Quits: m1chael (m1chael@ip68-9-58-51.ri.ri.cox.net) (Ping timeout: 240 seconds)
  347. # [09:56] * Joins: huskyr (~huskyr@ip169-070.vpro.nl)
  348. # [10:05] * Quits: Ms2ger (~Ms2ger@91.181.115.83) (Ping timeout: 245 seconds)
  349. # [10:13] * psynaptic is now known as psynaptic|away
  350. # [10:13] * Joins: dr0id (~andy@unaffiliated/dr0id)
  351. # [10:27] * Quits: simenbrekken (~simenbrek@77.40.186.130) (Remote host closed the connection)
  352. #
  353. # Session Start: Tue Aug 23 15:06:15 2011
  354. # Session Ident: #html5
  355. # [15:06] * Now talking in #html5
  356. # [15:06] * Topic is 'Ask any question about HTML5 & Friends || HTML5 Spec for Developers: http://developers.whatwg.org || Also: http://html5rocks.com http://diveintohtml5.org http://mzl.la/9giLwR || Channel logs: http://j.mp/cG7UDa'
  357. # [15:06] * Set by marienz!~marienz@freenode/staff/marienz on Wed Aug 10 22:18:05
  358. # [15:09] * Quits: tristanseifert (~tristanse@c-67-164-14-81.hsd1.ca.comcast.net) (Ping timeout: 260 seconds)
  359. # [15:10] * Quits: m1chael (m1chael@ip68-9-58-51.ri.ri.cox.net) (Ping timeout: 276 seconds)
  360. # [15:12] * Quits: sleet|away (~ajyhsdfgw@c-76-100-128-96.hsd1.va.comcast.net) (Quit: ( www.nnscript.com :: NoNameScript 4.22 :: www.esnation.com ))
  361. # [15:13] * Quits: plh_ (~plh@w3cdhcp109.w3.org) (Ping timeout: 245 seconds)
  362. # [15:17] * Joins: plh_ (~plh@w3cdhcp109.w3.org)
  363. # [15:17] * Joins: DoubleA (~Adium@65.211.27.190)
  364. # [15:18] * Parts: DoubleA (~Adium@65.211.27.190)
  365. # [15:20] * Joins: chrisdev (~chrisdev@ts7.ny3.techspace.com)
  366. # [15:24] * Quits: diimdeep (~dmitry@217.171.8.162) (Quit: Ухожу я от вас)
  367. # [15:43] * Quits: NoNoNo (~Adium@2a00:1158:0:201:614e:a599:4e22:6ce9) (Remote host closed the connection)
  368. # [15:44] * Joins: NoNoNo (~Adium@2a00:1158:0:201:614e:a599:4e22:6ce9)
  369. # [15:44] * Joins: BigKing (~BigKing@p5DD687FB.dip0.t-ipconnect.de)
  370. # [15:44] * Joins: p3rsist (~p3rsist@modemcable251.101-23-96.mc.videotron.ca)
  371. # [15:45] * Quits: tbassetto (~tbassetto@LRouen-151-71-49-64.w80-11.abo.wanadoo.fr) (Read error: Connection reset by peer)
  372. # [15:46] * Quits: NetRoY (~NetRoY@nat/yahoo/x-ddlllqaahjtefemx) (Quit: NetRoY)
  373. # [15:46] * Joins: tbassetto (~tbassetto@LRouen-151-71-49-64.w80-11.abo.wanadoo.fr)
  374. # [15:48] * Joins: simplicity- (~simplicit@unaffiliated/simplicity-)
  375. # [15:51] * Parts: spasquali (~spasquali@64.61.91.74)
  376. # [15:55] * Parts: ericduran (~eric@cpe-69-203-69-3.nyc.res.rr.com)
  377. # [15:57] * Joins: tristanseifert (~tristanse@c-67-164-14-81.hsd1.ca.comcast.net)
  378. # [15:57] * Quits: different_sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl) (Quit: Ik ga weg)
  379. # [16:00] * Quits: digitalfiz (~digitalfi@unaffiliated/digitalfiz) (Ping timeout: 264 seconds)
  380. # [16:02] * Rob- is now known as robhawkes
  381. # [16:02] * Joins: andrewjbaker (~ajb@93-97-21-66.zone5.bethere.co.uk)
  382. # [16:03] * Joins: digitalfiz (~digitalfi@unaffiliated/digitalfiz)
  383. # [16:07] * Joins: jimi_hendrix (~jimi@unaffiliated/jimihendrix)
  384. # [16:08] * Quits: timmywil (~timmywil@sec1.epb.net) (Quit: O.o)
  385. # [16:09] * Quits: simplicity- (~simplicit@unaffiliated/simplicity-) (Quit: ...)
  386. # [16:11] * Quits: Ankheg (~Ankheg@91.224.77.4) (Read error: Connection reset by peer)
  387. # [16:12] * Joins: dcadenas (~dcadenas@r186-48-211-126.dialup.adsl.anteldata.net.uy)
  388. # [16:16] * Quits: tristanseifert (~tristanse@c-67-164-14-81.hsd1.ca.comcast.net) (Ping timeout: 258 seconds)
  389. # [16:19] * Joins: tristanseifert (~tristanse@c-67-164-14-81.hsd1.ca.comcast.net)
  390. # [16:22] * Quits: moshee (~moshee@unaffiliated/moshee) (Remote host closed the connection)
  391. # [16:23] * Joins: sleetx (~ajyhsdfgw@c-76-100-128-96.hsd1.va.comcast.net)
  392. # [16:28] * Joins: beeviz (~beevi2@ip-78-94-78-58.unitymediagroup.de)
  393. # [16:30] * Quits: JackLeo (~Domas@cl-78-158-19-35.fastlink.lt) (Ping timeout: 240 seconds)
  394. # [16:33] * Joins: sleet|away (~ajyhsdfgw@c-76-100-128-96.hsd1.va.comcast.net)
  395. # [16:33] * Quits: Ms2ger (~Ms2ger@91.181.90.167) (Ping timeout: 245 seconds)
  396. # [16:33] * Quits: sleetx (~ajyhsdfgw@c-76-100-128-96.hsd1.va.comcast.net) (Read error: Operation timed out)
  397. # [16:38] * Quits: beeviz (~beevi2@ip-78-94-78-58.unitymediagroup.de) (Ping timeout: 252 seconds)
  398. # [16:38] * Joins: moshee (~moshee@unaffiliated/moshee)
  399. # [16:41] * Joins: saschagehlich (~saschageh@p5DD551D5.dip.t-dialin.net)
  400. # [16:44] * Quits: buribu (~buribu@unaffiliated/buribu) (Read error: Connection reset by peer)
  401. # [16:44] * Joins: Ms2ger (~Ms2ger@91.181.90.167)
  402. # [16:46] * Joins: slifty (~slifty@c-24-61-131-98.hsd1.nh.comcast.net)
  403. # [16:46] <slifty> damn, got another quote on bash today but people don't like it ;) http://bash.org/?945895
  404. # [16:46] * sleet|away is now known as sleetx
  405. # [16:47] * Quits: NoNoNo (~Adium@2a00:1158:0:201:614e:a599:4e22:6ce9) (Quit: Leaving.)
  406. # [16:48] * Joins: Ms2ger` (~Ms2ger@91.181.90.167)
  407. # [16:50] * Quits: Ms2ger (~Ms2ger@91.181.90.167) (Ping timeout: 245 seconds)
  408. # [16:52] * Quits: Ms2ger` (~Ms2ger@91.181.90.167) (Client Quit)
  409. # [16:52] * Joins: Ms2ger` (~Ms2ger@91.181.90.167)
  410. # [16:55] * Joins: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net)
  411. # [16:55] * nimbupani is now known as nimbu
  412. # [16:55] * Joins: timmywil (~timmywil@sec1.epb.net)
  413. # [16:58] * Quits: nimbu (~Adium@c-24-18-47-160.hsd1.wa.comcast.net) (Client Quit)
  414. # [16:58] * Joins: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net)
  415. # [16:58] * nimbupani is now known as nimbu
  416. # [17:04] * Parts: iaincarsberg (u1388@gateway/web/irccloud.com/x-icwlqkexgbzgtrnj)
  417. # [17:07] * Quits: simenbrekken (~simenbrek@77.40.186.130) (Quit: Computer has gone to sleep.)
  418. # [17:09] * Joins: iaincarsberg (u1388@gateway/web/irccloud.com/x-icwlqkexgbzgtrnj)
  419. # [17:10] * Quits: beevi7 (~manuel.bi@tim.7val.com) (Ping timeout: 245 seconds)
  420. # [17:11] * Joins: mdale (~mdale@unaffiliated/mdale)
  421. # [17:14] * Quits: dr0id (~andy@unaffiliated/dr0id) (Quit: Leaving.)
  422. # [17:14] * Quits: robhawkes (~robhawkes@188-220-16-96.dsl.cnl.uk.net) (Read error: Operation timed out)
  423. # [17:15] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Quit: jetienne)
  424. # [17:17] * Quits: prajwalit (~prajwalit@121.243.225.226) (Ping timeout: 268 seconds)
  425. # [17:18] * Joins: prajwalit (~prajwalit@121.243.225.226)
  426. # [17:18] * Quits: boaz (~boaz@li326-230.members.linode.com) (Excess Flood)
  427. # [17:20] * Joins: boaz (~boaz@li326-230.members.linode.com)
  428. # [17:22] * Quits: slifty (~slifty@c-24-61-131-98.hsd1.nh.comcast.net) (Quit: My computer is lazy and fell asleep)
  429. # [17:24] * Quits: prajwalit (~prajwalit@121.243.225.226) (Quit: Ex-Chat)
  430. # [17:25] * Joins: robhawkes (~robhawkes@188-220-16-96.dsl.cnl.uk.net)
  431. # [17:26] * Quits: kasadu (~kasadu@70.82-134-52.bkkb.no) (Ping timeout: 255 seconds)
  432. # [17:26] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
  433. # [17:27] * Joins: kennyluck (~kennyluck@114-43-121-205.dynamic.hinet.net)
  434. # [17:27] * Joins: bEEEviz (~Manuel@46.115.19.61)
  435. # [17:32] * Quits: nikstepff (~nikstepff@4604ds6-fb.0.fullrate.dk) (Quit: nikstepff)
  436. # [17:32] * Quits: dug__ (~doug@64.31.25.146) (Quit: leaving)
  437. # [17:33] * Joins: Taftse (~Taftse@unaffiliated/taftse)
  438. # [17:34] * Quits: squeakytoy (hidden-use@gateway.netset.se) (Quit: Leaving)
  439. # [17:36] * Quits: raphraph (~raph@LMontsouris-156-25-3-55.w80-14.abo.wanadoo.fr) (Quit: Ex-Chat)
  440. # [17:37] * Joins: slifty (~slifty@c-24-61-131-98.hsd1.nh.comcast.net)
  441. # [17:37] * Quits: Frippe (~Frippe@unaffiliated/frippe) (Quit: Computer has gone to sleep)
  442. # [17:37] * Joins: Frippe (~Frippe@unaffiliated/frippe)
  443. # [17:39] * Quits: huskyr (~huskyr@ip169-070.vpro.nl) (Quit: huskyr)
  444. # [17:40] * Quits: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk) (Quit: Leaving.)
  445. # [17:41] * Quits: slifty (~slifty@c-24-61-131-98.hsd1.nh.comcast.net) (Client Quit)
  446. # [17:42] * Quits: p3rsist (~p3rsist@modemcable251.101-23-96.mc.videotron.ca) (Quit: Leaving)
  447. # [17:42] * Quits: Frippe (~Frippe@unaffiliated/frippe) (Ping timeout: 252 seconds)
  448. # [17:43] * Joins: p3rsist (~p3rsist@modemcable251.101-23-96.mc.videotron.ca)
  449. # [17:43] * Quits: p3rsist (~p3rsist@modemcable251.101-23-96.mc.videotron.ca) (Read error: Connection reset by peer)
  450. # [17:44] * Quits: dmachi1 (~dmachi@pool-72-66-204-7.ronkva.east.verizon.net) (Read error: Connection reset by peer)
  451. # [17:44] * Joins: dmachi (~dmachi@pool-72-66-204-7.ronkva.east.verizon.net)
  452. # [17:45] * Joins: tra (tra@www.restate.fi)
  453. # [17:46] * Joins: devongovett (~devongove@pppoe-68-142-63-136.gmavt.net)
  454. # [17:47] * Joins: FylGood (~fylgood@pool-108-28-240-83.washdc.fios.verizon.net)
  455. # [17:48] * Joins: brettgoulder (~textual@173-164-36-90-colorado.hfc.comcastbusiness.net)
  456. # [17:50] <tra> working on a slotmachine with html5 and started adding some sound effects and noticed that audio's don't play consistently. for example some times when rolling stops i might hear only once the sound and it should be played three times. i know this is an issue pretty much on every browser, but anyone have some sort of a workaround for this?
  457. # [17:50] * Parts: mdale (~mdale@unaffiliated/mdale)
  458. # [17:51] <RLa> how is audio played in the back, in separate thread?
  459. # [17:51] <RLa> if not i can think that other browser events might disturb playback
  460. # [17:52] <tra> js triggers a single audio element when a vertical row is stopped. no background music, just the effects when a "reel" stops
  461. # [17:52] <tra> some times it plays three times and sometimes just once or twice
  462. # [17:53] <RLa> weird
  463. # [17:56] * Joins: BrianBlakely (~Adium@out.dentsuamerica.com)
  464. # [17:57] * Joins: NetRoY (~NetRoY@122.178.211.189)
  465. # [17:57] <tra> console.log() logs the events ok, but sometimes the sound is not played. pretty weird.
  466. # [17:58] <tra> RLa: maybe something related to this i guess? http://code.google.com/p/chromium/issues/detail?id=73453
  467. # [17:59] * Joins: wlkh (~wlkh@c-76-24-226-103.hsd1.ma.comcast.net)
  468. # [18:00] * Joins: taylorRichie (~Adium@208.110.141.169)
  469. # [18:01] * Joins: simplicity- (~simplicit@unaffiliated/simplicity-)
  470. # [18:01] * Quits: andrewjbaker (~ajb@93-97-21-66.zone5.bethere.co.uk) (Quit: Leaving)
  471. # [18:01] * Joins: tw2113 (~tw2113@fedora/tw2113)
  472. # [18:04] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
  473. # [18:04] * Joins: solocio (~michael@tmo-106-92.customers.d1-online.com)
  474. # [18:04] * Quits: timmywil (~timmywil@sec1.epb.net) (Quit: O.o)
  475. # [18:09] * Quits: solocio (~michael@tmo-106-92.customers.d1-online.com) (Read error: Connection reset by peer)
  476. # [18:10] * Joins: solocio (~michael@tmo-106-92.customers.d1-online.com)
  477. # [18:10] * Joins: Frippe (~Frippe@unaffiliated/frippe)
  478. # [18:11] * Joins: rawfodog (~rawfodog@modemcable118.71-70-69.static.videotron.ca)
  479. # [18:11] * Quits: sasori (~sasori@acl1-719bts.gw.smartbro.net) (Read error: Connection reset by peer)
  480. # [18:16] * Quits: sleetx (~ajyhsdfgw@c-76-100-128-96.hsd1.va.comcast.net) (Quit: ( www.nnscript.com :: NoNameScript 4.22 :: www.esnation.com ))
  481. # [18:18] * Joins: zatan (~zatan@5ad19e91.bb.sky.com)
  482. # [18:19] * Quits: doritoDan (~doritoDan@81-232-79-127-no46.business.telia.com) (Quit: I love web and I love doritos. Coincidence? You decide.)
  483. # [18:20] * Quits: Jayflux (~jay_knows@cpc1-dudl6-0-0-cust197.wolv.cable.virginmedia.com) (Quit: ( www.nnscript.com :: NoNameScript 4.22 :: www.esnation.com ))
  484. # [18:20] <chrisdev> Anyone have any HTML5 game development tools they can recommend? I'm working on my first.
  485. # [18:21] * Quits: mike5w3c (~MikeSmith@EM114-48-128-216.pool.e-mobile.ne.jp) (Ping timeout: 252 seconds)
  486. # [18:21] * Joins: nikstepff (~nikstepff@2805ds4-by.0.fullrate.dk)
  487. # [18:25] * Quits: bEEEviz (~Manuel@46.115.19.61) (Read error: Connection reset by peer)
  488. # [18:25] * Quits: rawfodog (~rawfodog@modemcable118.71-70-69.static.videotron.ca) (Quit: Leaving)
  489. # [18:25] * Joins: rawfodog (~rawfodog@modemcable118.71-70-69.static.videotron.ca)
  490. # [18:25] * Quits: solocio (~michael@tmo-106-92.customers.d1-online.com) (Quit: solocio)
  491. # [18:26] * Joins: mike5w3c (~MikeSmith@EM114-48-159-109.pool.e-mobile.ne.jp)
  492. # [18:26] * Joins: chipnt (~ciprian@paris-18.progdev.fr)
  493. # [18:27] * Quits: maxmanders (~maxmander@94.175.212.66) (Quit: leaving)
  494. # [18:27] * Quits: nikstepff (~nikstepff@2805ds4-by.0.fullrate.dk) (Quit: nikstepff)
  495. # [18:29] <BrianBlakely> chrisdev: This is a <canvas> game engine. Looks like the most legitimate of its kind - http://impactjs.com/
  496. # [18:30] * Joins: ssickle (~ryanv@66.162.134.130)
  497. # [18:30] * Joins: JackLeo (~Domas@78-60-86-33.static.zebra.lt)
  498. # [18:31] * Joins: colinsullivan (~Adium@32.97.110.52)
  499. # [18:32] * Joins: FireFly (~firefly@unaffiliated/firefly)
  500. # [18:32] <sic1> dang that does look pretty sweet
  501. # [18:33] * Joins: cgcardona (~cgcardona@unaffiliated/cgcardona)
  502. # [18:33] <BrianBlakely> One day, everything you want to do on the web will be in a library. Creating an entire enterprise will be as simple as including 47 JS libraries and calling _('html').attr({ site: 'really great' });
  503. # [18:33] <BrianBlakely> enterprise site*
  504. # [18:34] * Joins: dguttman (~dguttman@cpe-75-85-0-213.socal.res.rr.com)
  505. # [18:38] * Quits: Taftse (~Taftse@unaffiliated/taftse) (Ping timeout: 260 seconds)
  506. # [18:39] * Joins: tantek (~tantek@34.198.247.173.mozilla-sfo1.web-pass.com)
  507. # [18:39] * Joins: CoverSlide (~Richardh@66-113-67-35.rev.ibsinc.com)
  508. # [18:44] * Quits: tomh- (u501@gateway/web/irccloud.com/x-sionhjlbjmcqipvs) (Max SendQ exceeded)
  509. # [18:45] * Quits: axelator (~chatzilla@cn-sfo1-natout.cnet.com) (Ping timeout: 240 seconds)
  510. # [18:47] * Quits: BLOB0 (lius@disketti.net) (Ping timeout: 240 seconds)
  511. # [18:47] * Quits: [tm]_ (~MikeSmith@sideshowbarker.net) (Ping timeout: 240 seconds)
  512. # [18:47] * Quits: antti_s (~asal@backport.reaktor.fi) (Ping timeout: 240 seconds)
  513. # [18:48] * Quits: skyfaller (~skyfaller@wikipedia/Skyfaller) (Ping timeout: 240 seconds)
  514. # [18:48] * Quits: xtc (~xtc@pc-144-158-83-200.cm.vtr.net) (Ping timeout: 240 seconds)
  515. # [18:48] * Joins: axelat0r (~chatzilla@cn-sfo1-natout.cnet.com)
  516. # [18:49] * Joins: BLOB0_ (lius@disketti.net)
  517. # [18:49] * Joins: [tm] (~MikeSmith@sideshowbarker.net)
  518. # [18:49] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Quit: Leaving.)
  519. # [18:49] * Quits: actel (u48@gateway/web/irccloud.com/x-rvvohwglibecdsby) (Ping timeout: 240 seconds)
  520. # [18:49] * Joins: antti_s (~asal@backport.reaktor.fi)
  521. # [18:49] * Joins: skyfaller (~skyfaller@wikipedia/Skyfaller)
  522. # [18:49] * Quits: axelat0r (~chatzilla@cn-sfo1-natout.cnet.com) (Remote host closed the connection)
  523. # [18:49] * Quits: zatan (~zatan@5ad19e91.bb.sky.com) (Ping timeout: 258 seconds)
  524. # [18:57] * Quits: Tellnes (~KrooniX@ec2-79-125-26-36.eu-west-1.compute.amazonaws.com) (Ping timeout: 240 seconds)
  525. # [18:57] * Quits: Dorward (~Dorward@94-192-4-225.zone6.bethere.co.uk) (Ping timeout: 240 seconds)
  526. # [18:57] * Joins: xtc (~xtc@pc-144-158-83-200.cm.vtr.net)
  527. # [18:57] * Quits: dleonardi (~wizard@mediavitamin.com) (Ping timeout: 240 seconds)
  528. # [19:01] * Quits: nimbu (~Adium@c-24-18-47-160.hsd1.wa.comcast.net) (Ping timeout: 240 seconds)
  529. # [19:01] * Quits: morgadin|afk (u719@gateway/web/irccloud.com/x-bfbmrcmdsvrwnhck) (Ping timeout: 240 seconds)
  530. # [19:01] * Joins: sandprickle (~sandprick@12-26-17-156.hopitelecom.net)
  531. # [19:01] * Joins: KrooniX (~KrooniX@ec2-79-125-26-36.eu-west-1.compute.amazonaws.com)
  532. # [19:01] * Joins: wookiehangover (~wookiehan@173-8-247-218-Colorado.hfc.comcastbusiness.net)
  533. # [19:01] * Joins: Dorward (~Dorward@94-192-4-225.zone6.bethere.co.uk)
  534. # [19:01] * Joins: actel (u48@gateway/web/irccloud.com/x-cjdznclxejrclvfn)
  535. # [19:01] * Joins: dleonard1 (~wizard@mediavitamin.com)
  536. # [19:01] * Joins: sharustar (~sharustar@unaffiliated/sharustar)
  537. # [19:01] * Joins: axelator (~chatzilla@cn-sfo1-natout.cnet.com)
  538. # [19:01] * sharustar is now known as WILDsharustar
  539. # [19:02] * Quits: pht` (pht@sYx.sk) (Ping timeout: 240 seconds)
  540. # [19:02] * Joins: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net)
  541. # [19:02] * nimbupani is now known as nimbu
  542. # [19:02] * Joins: pht` (pht@sYx.sk)
  543. # [19:03] * Joins: morgadin|afk (u719@gateway/web/irccloud.com/x-vpynfhtfhmozvbxv)
  544. # [19:03] -Martinp23- [Server Notice] Hi folks. The server you're on (wolfe) seems to be having some connectivity issues and may split from the network at any point. Apologies for the inconvenience. To avoid problems try reconnecting to chat.freenode.net. Thanks :)
  545. # [19:04] * Quits: JackLeo (~Domas@78-60-86-33.static.zebra.lt) (Ping timeout: 260 seconds)
  546. # [19:05] * Quits: cgcardona (~cgcardona@unaffiliated/cgcardona) (Quit: cgcardona)
  547. # [19:06] * Joins: JackLeo (~Domas@78-60-86-33.static.zebra.lt)
  548. # [19:06] * Joins: koggdal (~koggdal@user171.77-105-221.netatonce.net)
  549. # [19:06] * Quits: benv (~benv@99-7-171-41.lightspeed.sntcca.sbcglobal.net) (Quit: Leaving...)
  550. # [19:07] * Quits: dmachi (~dmachi@pool-72-66-204-7.ronkva.east.verizon.net) (Ping timeout: 245 seconds)
  551. # [19:07] * Quits: kppullin (~kppullin@pdpc/supporter/active/kppullin) (Read error: Connection reset by peer)
  552. # [19:09] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
  553. # [19:12] * Quits: JackLeo (~Domas@78-60-86-33.static.zebra.lt) (Ping timeout: 252 seconds)
  554. # [19:14] * Joins: kppullin (~kppullin@pdpc/supporter/active/kppullin)
  555. # [19:14] * Quits: tantek (~tantek@34.198.247.173.mozilla-sfo1.web-pass.com) (Quit: tantek)
  556. # [19:14] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Client Quit)
  557. # [19:14] * Quits: louisremi (~louisremi@mozilla-paris-253-98.cnt.nerim.net) (Ping timeout: 260 seconds)
  558. # [19:14] * Quits: saschagehlich (~saschageh@p5DD551D5.dip.t-dialin.net) (Remote host closed the connection)
  559. # [19:14] * Joins: montylounge (~kfricovsk@96.240.11.226)
  560. # [19:16] * Joins: tantek (~tantek@34.198.247.173.mozilla-sfo1.web-pass.com)
  561. # [19:18] * Joins: dmachi (~dmachi@pool-72-66-221-173.ronkva.east.verizon.net)
  562. # [19:20] * Quits: montylounge (~kfricovsk@96.240.11.226) (Quit: montylounge)
  563. # Session Close: Tue Aug 23 19:24:11 2011
  564. #
  565. # Session Start: Tue Aug 23 19:24:11 2011
  566. # Session Ident: #html5
  567. # [19:24] * Disconnected
  568. # [19:25] * Attempting to rejoin channel #html5
  569. # [19:25] * Rejoined channel #html5
  570. # [19:25] * Topic is 'Ask any question about HTML5 & Friends || HTML5 Spec for Developers: http://developers.whatwg.org || Also: http://html5rocks.com http://diveintohtml5.org http://mzl.la/9giLwR || Channel logs: http://j.mp/cG7UDa'
  571. # [19:25] * Set by marienz!~marienz@freenode/staff/marienz on Wed Aug 10 22:17:53
  572. # [19:25] * sharustar is now known as WILDsharustar
  573. # [19:26] * Joins: highfever (kurrent@S0106001ee5eddf48.vs.shawcable.net)
  574. # [19:27] * Joins: Pooze_ (Pooze@bnc.dotbnc.se)
  575. # [19:28] * Joins: Thasmo (~thasmo@d86-33-68-82.cust.tele2.at)
  576. # [19:28] * Quits: NetRoY (~NetRoY@122.178.211.189) (Remote host closed the connection)
  577. # [19:28] * Joins: NetRoY (~NetRoY@122.178.211.189)
  578. # [19:32] * Quits: Pooze (Pooze@bnc.dotbnc.se) (Ping timeout: 240 seconds)
  579. # [19:33] * Joins: ewokchewy (~liferay@rrcs-76-79-114-218.west.biz.rr.com)
  580. # [19:33] * Parts: ewokchewy (~liferay@rrcs-76-79-114-218.west.biz.rr.com)
  581. # [19:33] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
  582. # [19:34] * Quits: FylGood (~fylgood@pool-108-28-240-83.washdc.fios.verizon.net) (Quit: Textual IRC Client: http://www.textualapp.com/)
  583. # [19:36] * Joins: slifty (~slifty@18.111.36.51)
  584. # [19:36] * Quits: xec (~xec@2a00:10b0:1:1002:5ab0:35ff:fef8:6a01) (Remote host closed the connection)
  585. # [19:37] * Quits: brettgoulder (~textual@173-164-36-90-colorado.hfc.comcastbusiness.net) (Quit: Computer has gone to sleep.)
  586. # [19:38] * Joins: m1chael][ (m1chael@ip68-9-58-51.ri.ri.cox.net)
  587. # [19:42] * Joins: dcadenas_ (~dcadenas@r186-48-192-163.dialup.adsl.anteldata.net.uy)
  588. # [19:42] * Quits: dcadenas_ (~dcadenas@r186-48-192-163.dialup.adsl.anteldata.net.uy) (Read error: Connection reset by peer)
  589. # [19:42] * Joins: zatan (~zatan@5ad19e91.bb.sky.com)
  590. # [19:42] * Joins: dcadenas_ (~dcadenas@r186-48-247-88.dialup.adsl.anteldata.net.uy)
  591. # [19:43] * Joins: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net)
  592. # [19:44] * Joins: Net_RoY (~NetRoY@122.178.211.189)
  593. # [19:45] * Quits: dcadenas (~dcadenas@r186-48-211-126.dialup.adsl.anteldata.net.uy) (Ping timeout: 264 seconds)
  594. # [19:45] * Joins: benv (~benv@50-0-80-160.dsl.static.sonic.net)
  595. # [19:46] * Quits: actel (u48@gateway/web/irccloud.com/x-cjdznclxejrclvfn) (Max SendQ exceeded)
  596. # [19:46] * Joins: actel (u48@gateway/web/irccloud.com/x-bslovggfosrzneip)
  597. # [19:47] * Quits: NetRoY (~NetRoY@122.178.211.189) (Ping timeout: 260 seconds)
  598. # [19:47] * Net_RoY is now known as NetRoY
  599. # [19:55] * Quits: skyfaller (~skyfaller@wikipedia/Skyfaller) (Ping timeout: 276 seconds)
  600. # [19:55] * Quits: sic1 (~ckihneman@wsip-68-224-173-84.sd.sd.cox.net) (Quit: Get MacIrssi - http://www.sysctl.co.uk/projects/macirssi/)
  601. # [19:55] * Quits: wookiehangover (~wookiehan@173-8-247-218-Colorado.hfc.comcastbusiness.net) (Quit: Leaving...)
  602. # [19:56] * Quits: tbassetto (~tbassetto@LRouen-151-71-49-64.w80-11.abo.wanadoo.fr) (Quit: Linkinus - http://linkinus.com)
  603. # [19:57] * NetRoY is now known as netroy-backIn20
  604. # [19:58] * Joins: maxmanders (~maxmander@188-220-35-232.zone11.bethere.co.uk)
  605. # [19:59] * Joins: fearlesstost (~fearlesst@66.220.144.74)
  606. # [20:00] * netroy-backIn20 is now known as NetRoY
  607. # [20:03] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Quit: Leaving.)
  608. # [20:05] * Joins: David_Bradbury (~chatzilla@75-147-178-254-Washington.hfc.comcastbusiness.net)
  609. # [20:05] * Quits: skylamer` (cgskylamer@78.90.213.55)
  610. # [20:07] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: I was raided by the FBI and all I got to keep was this lousy quit message!)
  611. # [20:08] <BrianBlakely> Heh
  612. # [20:08] * Quits: highfever (kurrent@S0106001ee5eddf48.vs.shawcable.net) (Read error: Connection reset by peer)
  613. # [20:08] <BrianBlakely> Earthquake in NYC
  614. # [20:08] <BrianBlakely> Very, very tiny
  615. # [20:08] <BrianBlakely> But the phone lines are jammed
  616. # [20:08] <BrianBlakely> Now I know what it's like when it snows in LA
  617. # [20:08] <Thasmo> Also in Boston? Is that far away from NYC?
  618. # [20:09] <jreading> here in VA, defaintely felt that 5.8
  619. # [20:09] <moo-_-> BrianBlakely: but that's wrong coast!
  620. # [20:09] * moo-_- 's Twitter started beeping
  621. # [20:10] * Joins: highfever (kurrent@S0106001ee5eddf48.vs.shawcable.net)
  622. # [20:10] <BrianBlakely> Thasmo: It's about a 4hr drive from NYC. I have no idea what happened there, though.
  623. # [20:17] * Quits: miketaylr (~miketaylr@24.42.93.245) (Quit: miketaylr)
  624. # [20:21] <sandprickle> i'm trying to build a mobile-first site
  625. # [20:22] <sandprickle> but all the cases to design/develop for gets intimidating, me being rather noobish
  626. # [20:25] <sandprickle> esp iPhone 4 vs older iPhones; don't want things too small on the hi-res screen
  627. # [20:28] * Joins: shipit (~shipit@204-15-2-155-static.ipnetworksinc.net)
  628. # [20:28] * Quits: colinsullivan (~Adium@32.97.110.52) (Ping timeout: 258 seconds)
  629. # [20:28] * Joins: patcito (~123@190.42.95.121)
  630. # [20:30] <shepazu> hello, folks… does anyone know if some nifty new CSS feature would allow me to place an icon over an <img> element, without adding the icon via another <img>?
  631. # [20:31] <RLa> shepazu, http://www.w3schools.com/cssref/sel_before.asp
  632. # [20:31] <sandprickle> haven't heard of anything like that... don't think
  633. # [20:31] <sandprickle> http://w3fools.com/
  634. # [20:32] <RLa> it might not work with arbitrary code tho
  635. # [20:32] <RLa> better use javascript and dom to insert those icons
  636. # [20:32] <shepazu> I'm thinking something that takes a @background-image and moves it up in the z-index
  637. # [20:33] <sandprickle> shepazu: seems to me you'd still have to have a separate element
  638. # [20:34] <moo-_-> shepazu: separate element needed, unless to the whole image using <div>
  639. # [20:34] * Joins: colinsullivan (~Adium@32.97.110.58)
  640. # [20:34] <moo-_-> have background-image and border-image
  641. # [20:34] <moo-_-> and the border-image is the icon
  642. # [20:34] <moo-_-> or something along the lines
  643. # [20:34] <sandprickle> but img is more semantic no?
  644. # [20:35] <RLa> or use canvas and paint those in correct order
  645. # [20:35] <shepazu> "Whenever I hear of semantics... I release the safety catch of my Browning!"
  646. # [20:37] <shepazu> http://www.tjkdesign.com/articles/png_overlay_with_no_extra_markup.asp is interesting, but too hacky
  647. # [20:38] <shepazu> ok, guess there's no way to do it with CSS alone
  648. # [20:38] <shepazu> thanks
  649. # [20:40] <nimbu> shepazu: no there is no way :(
  650. # [20:41] * Joins: miketaylr (~miketaylr@24.42.93.245)
  651. # [20:41] * Quits: miketaylr (~miketaylr@24.42.93.245) (Client Quit)
  652. # [20:42] * Joins: miketaylr (~miketaylr@24.42.93.245)
  653. # [20:42] * Quits: highfever (kurrent@S0106001ee5eddf48.vs.shawcable.net)
  654. # [20:50] * Quits: jimi_hendrix (~jimi@unaffiliated/jimihendrix) (Read error: Connection reset by peer)
  655. # [20:50] * Joins: sleetx (~ajyhsdfgw@c-76-100-128-96.hsd1.va.comcast.net)
  656. # [20:50] * Joins: Taftse (~Taftse@unaffiliated/taftse)
  657. # [20:50] * Quits: xtc (~xtc@pc-144-158-83-200.cm.vtr.net) (Quit: This computer has gone to sleep)
  658. # [20:57] <tantek> anyone here in SF?
  659. # [20:58] <paul_irish> mountainview :/
  660. # [20:58] <paul_irish> benv: is in SF
  661. # [20:59] <benv> woozle wazzle
  662. # [20:59] * tantek has organized a semantic markup microformats/microdata/etc. meet up for tonight at Gordon Biersch, 2 Harrison st., 7pm: http://plancast.com/p/70aa
  663. # [21:00] <benv> oh god
  664. # [21:00] <benv> :)
  665. # [21:00] <paul_irish> sweet
  666. # [21:02] * Joins: LouisLazaris (40e735d4@gateway/web/freenode/ip.64.231.53.212)
  667. # [21:03] * Quits: zatan (~zatan@5ad19e91.bb.sky.com) (Read error: Operation timed out)
  668. # [21:04] * Joins: tigerpaw (~tigerpaw@unaffiliated/tigerpaw)
  669. # [21:06] * BLOB0_ is now known as BLOB0
  670. # [21:06] * Quits: BigKing (~BigKing@p5DD687FB.dip0.t-ipconnect.de) (Ping timeout: 264 seconds)
  671. # [21:06] * Quits: RLa (~RL@infdot.com) (Quit: Leaving)
  672. # [21:06] * Quits: David_Bradbury (~chatzilla@75-147-178-254-Washington.hfc.comcastbusiness.net) (Ping timeout: 258 seconds)
  673. # [21:11] * Joins: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com)
  674. # [21:11] * Quits: Frippe (~Frippe@unaffiliated/frippe) (Ping timeout: 260 seconds)
  675. # [21:12] * Joins: andrewjbaker (~ajb@host-78-150-172-30.as13285.net)
  676. # [21:12] * Quits: obert- (~obert@host239-207-dynamic.1-87-r.retail.telecomitalia.it) (Remote host closed the connection)
  677. # [21:12] * Joins: obert- (~obert@host239-207-dynamic.1-87-r.retail.telecomitalia.it)
  678. # [21:13] * Joins: simenbrekken (~simenbrek@c85-196-101-98.static.sdsl.no)
  679. # [21:14] * Joins: dSebastien (~dSebastie@195.48-244-81.adsl-dyn.isp.belgacom.be)
  680. # [21:20] * PPilate is now known as Pilate
  681. # [21:21] * Joins: zatan (~zatan@5ad19e91.bb.sky.com)
  682. # [21:22] * Parts: m1chael][ (m1chael@ip68-9-58-51.ri.ri.cox.net)
  683. # [21:24] * Quits: tantek (~tantek@34.198.247.173.mozilla-sfo1.web-pass.com) (Ping timeout: 260 seconds)
  684. # [21:27] * Quits: NetRoY (~NetRoY@122.178.211.189) (Remote host closed the connection)
  685. # [21:27] * Joins: NetRoY (~NetRoY@122.178.211.189)
  686. # [21:36] * Joins: jeffszusz (~jeffszusz@d24-57-194-149.home.cgocable.net)
  687. # [21:37] * Joins: Net_RoY (~NetRoY@122.178.211.189)
  688. # [21:39] * Joins: jacine (~jacine@drupal.org/user/88931/view)
  689. # [21:40] * Quits: NetRoY (~NetRoY@122.178.211.189) (Ping timeout: 258 seconds)
  690. # [21:40] * Net_RoY is now known as NetRoY
  691. # [21:41] * Quits: andrewjbaker (~ajb@host-78-150-172-30.as13285.net) (Quit: Parting is such sweet sorrow)
  692. # [21:41] * Joins: timmywil (~timmywil@sec1.epb.net)
  693. # [21:41] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
  694. # [21:42] * Joins: Frippe (~Frippe@unaffiliated/frippe)
  695. # [21:48] * Joins: doritoDan (~doritoDan@c-5eeaaa34-74736162.cust.telenor.se)
  696. # [21:49] * Joins: Jayflux (~jay_knows@cpc1-dudl6-0-0-cust197.wolv.cable.virginmedia.com)
  697. # [21:53] * Quits: johnkpaul (~johnkpaul@pool-74-108-115-181.nycmny.fios.verizon.net) (Remote host closed the connection)
  698. # [21:53] * Joins: David_Bradbury (~chatzilla@75-147-178-254-Washington.hfc.comcastbusiness.net)
  699. # [21:57] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Quit: Leaving.)
  700. # [21:57] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
  701. # [21:59] * Joins: tomh-_ (u501@gateway/web/irccloud.com/x-irlzyjphtyaruxgz)
  702. # [21:59] * tomh-_ is now known as tomh
  703. # [22:03] * Joins: skyfaller (~skyfaller@wikipedia/Skyfaller)
  704. # [22:04] * Joins: xtc (~xtc@pc-67-70-120-200.cm.vtr.net)
  705. # [22:06] * Joins: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk)
  706. # [22:08] * Joins: fluido (~yingyang@li6-217.members.linode.com)
  707. # [22:08] * Quits: skyfaller (~skyfaller@wikipedia/Skyfaller) (Read error: Connection reset by peer)
  708. # [22:08] * Joins: Ricki` (~ricki@84.19.108.75)
  709. # [22:08] * Parts: LouisLazaris (40e735d4@gateway/web/freenode/ip.64.231.53.212)
  710. # [22:09] * Quits: digitalfiz (~digitalfi@unaffiliated/digitalfiz) (Remote host closed the connection)
  711. # [22:09] <cylentwolf> robhawkes: are you going to be updating the github for rawkets anytime soon? or is it going offline for now and I need to figure out the code from there?
  712. # [22:10] * Quits: naquad (~naquad@174.142.224.219) (Ping timeout: 264 seconds)
  713. # [22:10] * Quits: doritoDan (~doritoDan@c-5eeaaa34-74736162.cust.telenor.se) (Read error: Connection reset by peer)
  714. # [22:12] * Joins: skyfal___ (~skyfaller@rrcs-24-103-99-21.nyc.biz.rr.com)
  715. # [22:12] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Read error: Connection reset by peer)
  716. # [22:12] * Quits: N0va (~ricki@84.19.108.75) (Ping timeout: 276 seconds)
  717. # [22:13] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
  718. # [22:15] * Joins: naquad_ (~naquad@174.142.224.219)
  719. # [22:20] * Quits: NetRoY (~NetRoY@122.178.211.189) (Quit: NetRoY)
  720. # [22:24] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Quit: Leaving.)
  721. # [22:24] * Quits: Ms2ger` (~Ms2ger@91.181.90.167) (Quit: nn)
  722. # [22:25] * Joins: LongBeach (~mike@AFontenayssB-152-1-57-254.w82-121.abo.wanadoo.fr)
  723. # [22:29] * Joins: tantek (~tantek@34.198.247.173.mozilla-sfo1.web-pass.com)
  724. # [22:30] <BrianBlakely> http://www.fontsquirrel.com/fontface/generator, if you were a lady, I would graciously ask you to the dance
  725. # [22:35] * Joins: doritoDan (~doritoDan@c-5eeaaa34-74736162.cust.telenor.se)
  726. # [22:36] * Joins: trumpetmic (~trumpetmi@173-160-38-41-colorado.hfc.comcastbusiness.net)
  727. # [22:42] * Joins: Rob- (~robhawkes@188-220-16-96.dsl.cnl.uk.net)
  728. # [22:45] * Quits: robhawkes (~robhawkes@188-220-16-96.dsl.cnl.uk.net) (Ping timeout: 246 seconds)
  729. # [22:46] * Joins: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl)
  730. # [22:46] * Quits: Jackneill (~Jackneill@unaffiliated/jackneill) (Ping timeout: 240 seconds)
  731. # [22:48] * Quits: devongovett (~devongove@pppoe-68-142-63-136.gmavt.net) (Quit: devongovett)
  732. # [22:50] * Quits: axelator (~chatzilla@cn-sfo1-natout.cnet.com) (Remote host closed the connection)
  733. # [22:53] * Joins: tw2113 (~tw2113@fedora/tw2113)
  734. # [22:54] * Quits: erichynds (~ehynds@venkman.brightcove.com)
  735. # [22:55] * Quits: miketaylr (~miketaylr@24.42.93.245) (Quit: miketaylr)
  736. # [22:56] * Quits: trumpetmic (~trumpetmi@173-160-38-41-colorado.hfc.comcastbusiness.net) (Ping timeout: 252 seconds)
  737. # [22:59] * Quits: rawfodog (~rawfodog@modemcable118.71-70-69.static.videotron.ca) (Read error: Connection reset by peer)
  738. # [22:59] * Quits: WILDsharustar (~sharustar@unaffiliated/sharustar) (Quit: Leaving)
  739. # [23:04] * Joins: BigKing (~BigKing@p5DD687FB.dip0.t-ipconnect.de)
  740. # [23:15] * Joins: johnkpaul (~johnkpaul@pool-74-108-115-181.nycmny.fios.verizon.net)
  741. # [23:16] * Joins: xtc|halles (~xtc@pc-67-70-120-200.cm.vtr.net)
  742. # [23:20] * Quits: xtc (~xtc@pc-67-70-120-200.cm.vtr.net) (Ping timeout: 260 seconds)
  743. # [23:26] * Quits: Frippe (~Frippe@unaffiliated/frippe) (Quit: Computer has gone to sleep)
  744. # [23:26] * Quits: JoshManders (~josh@unaffiliated/killswitch) (Read error: Operation timed out)
  745. # [23:26] * Joins: Frippe (~Frippe@unaffiliated/frippe)
  746. # [23:27] * Joins: JoshManders (~josh@unaffiliated/killswitch)
  747. # [23:30] * Quits: timmywil (~timmywil@sec1.epb.net) (Quit: O.o)
  748. # [23:31] * Joins: cyrusyrus (~cyrusyrus@122.169.38.203)
  749. # [23:31] * Quits: Frippe (~Frippe@unaffiliated/frippe) (Ping timeout: 268 seconds)
  750. # [23:37] * Quits: BigKing (~BigKing@p5DD687FB.dip0.t-ipconnect.de) (Remote host closed the connection)
  751. # [23:42] * Joins: axelator (~chatzilla@cn-sfo1-natout.cnet.com)
  752. # [23:48] * Quits: plh_ (~plh@w3cdhcp109.w3.org) (Ping timeout: 252 seconds)
  753. # [23:48] * Joins: plh_ (~plh@w3cdhcp109.w3.org)
  754. # [23:50] * Quits: cocoadaemon (~cocoadaem@2a01:e35:8a99:e90:20d:93ff:fe3b:868c) (Quit: shutdown -s -t 0)
  755. # [23:50] * Quits: koggdal (~koggdal@user171.77-105-221.netatonce.net) (Quit: koggdal)
  756. # [23:53] * Joins: N0va (~ricki@84.19.108.75)
  757. # [23:53] * Quits: slifty (~slifty@18.111.36.51) (Quit: That's it! I quit!)
  758. # [23:53] * Joins: slifty (~slifty@18.111.36.51)
  759. # [23:57] * Quits: LongBeach (~mike@AFontenayssB-152-1-57-254.w82-121.abo.wanadoo.fr)
  760. # [23:57] * Quits: Ricki` (~ricki@84.19.108.75) (Ping timeout: 252 seconds)
  761. # [23:58] * Quits: N0va (~ricki@84.19.108.75) (Ping timeout: 245 seconds)
  762. # Session Close: Wed Aug 24 00:00:00 2011

The end :)