/irc-logs / freenode / #html5 / 2011-07-02 / end

Options:

  1. # Session Start: Sat Jul 02 00:00:00 2011
  2. # Session Ident: #html5
  3. # [11:16] * Attempting to rejoin channel #html5
  4. # [11:16] * Rejoined channel #html5
  5. # [11:16] * Topic is 'Welcome, amigos :: Ask any question about html5 & Friends. || Author Spec: http://dev.w3.org/html5/spec-author-view/ || Full spec: http://whatwg.org/html5 || Also: http://html5rocks.com http://diveintohtml5.org http://mzl.la/9giLwR http://html5homi.es'
  6. # [11:16] * Set by marienz!~marienz@freenode/staff/marienz on Fri Nov 05 18:43:30
  7. # [11:16] * Joins: vjvjftft (~ajpiano@cpe-68-173-41-149.nyc.res.rr.com)
  8. # [11:19] * Quits: ajpiaNOU (~ajpiano@cpe-68-173-41-149.nyc.res.rr.com) (Read error: Connection reset by peer)
  9. # [11:20] * Quits: cocoadaemon (~cocoadaem@cho94-7-88-169-144-233.fbx.proxad.net) (Quit: cocoadaemon)
  10. # [11:38] * Joins: ajpiaNOU (~ajpiano@cpe-68-173-41-149.nyc.res.rr.com)
  11. # [11:39] * Quits: Saadi (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 240 seconds)
  12. # [11:39] * Quits: ajpiaNOU (~ajpiano@cpe-68-173-41-149.nyc.res.rr.com) (Remote host closed the connection)
  13. # [11:39] * Joins: ajpiaNOU (~ajpiano@cpe-68-173-41-149.nyc.res.rr.com)
  14. # [11:39] * Quits: vjvjftft (~ajpiano@cpe-68-173-41-149.nyc.res.rr.com) (Read error: Connection reset by peer)
  15. # [11:39] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 258 seconds)
  16. # [11:41] <iraebrasil> does anyone knows what builder/framework uses requireCss and require as seen here https://github.com/voloko/facebook-circles/blob/master/src/app.js to output everything as one file like this one? http://www.circlehack.com/src/app.js
  17. # [11:49] <jetienne> https://github.com/pete-otaqui/require-css/blob/master/lib/require-css.js is a possibility
  18. # [11:49] <iraebrasil> jetienne: it's not that one...
  19. # [11:49] <iraebrasil> :(
  20. # [11:50] <iraebrasil> I am searching for about an hour already
  21. # [11:50] <jetienne> good luck
  22. # [11:50] * psynaptic|away is now known as psynaptic
  23. # [11:50] <iraebrasil> the one I am searching for inlines the css file as a string
  24. # [11:51] <iraebrasil> thank you for your help, jetienne
  25. # [11:56] * Quits: patcito (~123@190.42.95.68) (Read error: Connection reset by peer)
  26. # [12:06] * Quits: Rik` (~Rik`@2a01:e34:ec0f:1570:daa2:5eff:fe97:85ee) (Remote host closed the connection)
  27. # [12:07] * Joins: Rik` (~Rik`@2a01:e34:ec0f:1570:daa2:5eff:fe97:85ee)
  28. # [12:09] * Joins: Ms2ger (~Ms2ger@91.181.168.11)
  29. # [12:09] * Quits: Rik` (~Rik`@2a01:e34:ec0f:1570:daa2:5eff:fe97:85ee) (Remote host closed the connection)
  30. # [12:09] * Joins: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk)
  31. # [12:10] * Quits: Ramosa (Ramosa@unaffiliated/harald/x-000000001) (Read error: Connection reset by peer)
  32. # [12:13] * Joins: Rik` (~Rik`@2a01:e34:ec0f:1570:daa2:5eff:fe97:85ee)
  33. # [12:14] * Quits: robhawkes (~robhawkes@94.196.77.134.threembb.co.uk) (Quit: Leaving...)
  34. # [12:18] * Quits: Ms2ger (~Ms2ger@91.181.168.11) (Ping timeout: 250 seconds)
  35. # [12:18] * Joins: shipit (~shipit@c-67-180-23-104.hsd1.ca.comcast.net)
  36. # [12:20] * Joins: kollapse (~kollaps@unaffiliated/kollapse)
  37. # [12:20] <kollapse> Hello. If I have an .SVGZ file with multiple shapes in it, how do I select which shape (or coordinate ??) to display.
  38. # [12:29] * Joins: Ramosa (Ramosa@unaffiliated/harald/x-000000001)
  39. # [12:33] <dr0id> iraebrasil: there ?
  40. # [12:33] <iraebrasil> dr0id: hi
  41. # [12:33] <dr0id> you said you made use of modernizr and hide the arrows in ipad. but that doesn't stop it from downloading in the ipad, does it ? :-/
  42. # [12:33] * Joins: Ms2ger (~Ms2ger@91.181.168.11)
  43. # [12:34] <iraebrasil> yup, if the arrows are images this is bad
  44. # [12:34] <dr0id> how would you usually stop extra resources from loading ?
  45. # [12:35] <iraebrasil> myne were unicode characters with transform:scaleX(0.6)
  46. # [12:35] <dr0id> also if that had been a background image, it wouldn't had loaded, right ? or would it
  47. # [12:35] <dr0id> ohh, I see
  48. # [12:35] <iraebrasil> yes, background imagens wouldn't have loaded :)
  49. # [12:36] <iraebrasil> but you must use the class properlly
  50. # [12:36] * Joins: onr (~onur@nginx/adept/pdpc.active.evet)
  51. # [12:36] <dr0id> yeah
  52. # [12:37] <iraebrasil> .arrow {background:a.png} .no-touch .arrow {display:none;} would load it, but...
  53. # [12:37] <iraebrasil> .touch .arrow {background:a.png} .no-touch .arrow {display:none;} will not
  54. # [12:37] <iraebrasil> or I can be wrong... better to check :D
  55. # [12:37] <iraebrasil> lol
  56. # [12:37] * Joins: beeviz (~beevi2@ip-78-94-3-11.unitymediagroup.de)
  57. # [12:37] <dr0id> background should be there in no-touch ;)
  58. # [12:38] <dr0id> yeah, if you can test and find out
  59. # [12:39] * Joins: ThewyBread (~ThewyBrea@175.33.191.103)
  60. # [12:40] <iraebrasil> Oh, I see... I typed it incorrectly
  61. # [12:41] <iraebrasil> .no-touch .arrow {background:a.png} .touch .arrow {display:none;} <-- this should work, image only load on non-touch devices
  62. # [12:41] <dr0id> cool, tested ? :P thanks :D
  63. # [12:41] * Quits: MissionCritical (~MissionCr@unaffiliated/missioncritical) (Remote host closed the connection)
  64. # [12:42] <iraebrasil> I can't test this right now, but I am pretty sure it will work...
  65. # [12:44] * Joins: SaadIbrahim (~mslfreak@182.178.42.43)
  66. # [12:44] * Quits: SaadIbrahim (~mslfreak@182.178.42.43) (Changing host)
  67. # [12:44] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
  68. # [12:44] * SaadIbrahim is now known as Saadi
  69. # [12:45] <dr0id> ok
  70. # [12:45] * Quits: shipit (~shipit@c-67-180-23-104.hsd1.ca.comcast.net) (Remote host closed the connection)
  71. # [12:46] <iraebrasil> dr0id: ok, tested now... works
  72. # [12:46] <iraebrasil> i remembered I had another project already setup in my local apache with modernizr... it was simple to test there ;)
  73. # [12:47] * psynaptic is now known as psynaptic|away
  74. # [12:47] <dr0id> iraebrasil: so the image "won't load" if it's a touch screen ?
  75. # [12:48] <iraebrasil> it won't
  76. # [12:48] * Quits: Ms2ger (~Ms2ger@91.181.168.11) (Ping timeout: 255 seconds)
  77. # [12:49] <dr0id> cool, thanks for the favour :)
  78. # [12:49] * Quits: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk) (Quit: Leaving.)
  79. # [12:49] * Joins: Ms2ger (~Ms2ger@91.181.168.11)
  80. # [12:49] <iraebrasil> np :)
  81. # [12:53] * Joins: MissionCritical (~MissionCr@unaffiliated/missioncritical)
  82. # [12:56] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Remote host closed the connection)
  83. # [12:56] * Joins: codeon (~himanshu@182.68.79.223)
  84. # [12:59] * Quits: Saadi (~mslfreak@unaffiliated/saadibrahim) (Disconnected by services)
  85. # [12:59] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
  86. # [12:59] * SaadIbrahim is now known as Saadi
  87. # [13:08] * Joins: SaadIbrahim (~mslfreak@182.178.83.247)
  88. # [13:08] * Quits: SaadIbrahim (~mslfreak@182.178.83.247) (Changing host)
  89. # [13:08] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
  90. # [13:08] * Quits: Saadi (~mslfreak@unaffiliated/saadibrahim) (Disconnected by services)
  91. # [13:09] * Joins: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl)
  92. # [13:09] * Joins: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net)
  93. # [13:09] * nimbupani is now known as nimbu
  94. # [13:09] * Parts: nimbu (~Adium@c-24-18-47-160.hsd1.wa.comcast.net)
  95. # [13:10] * Quits: ThewyBread (~ThewyBrea@175.33.191.103) (Quit: Computer has gone to sleep.)
  96. # [13:13] * Quits: codeon (~himanshu@182.68.79.223) (Read error: Connection timed out)
  97. # [13:32] * Joins: rros (~robert@78.27.52.235)
  98. # [13:34] * Quits: kyxzme (~kvirc@93-42-12-83.ip84.fastwebnet.it) (Quit: KVIrc 4.0.4 Insomnia http://www.kvirc.net/)
  99. # [13:35] * Joins: Jayflux (~jay_knows@cpc1-dudl6-0-0-cust197.wolv.cable.virginmedia.com)
  100. # [13:36] * Quits: sw0rdfish (~Johnson@unaffiliated/robinux) (Ping timeout: 258 seconds)
  101. # [13:40] * Joins: Saaaaad (~mslfreak@113.203.140.112)
  102. # [13:40] * Quits: Saaaaad (~mslfreak@113.203.140.112) (Changing host)
  103. # [13:40] * Joins: Saaaaad (~mslfreak@unaffiliated/saadibrahim)
  104. # [13:40] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Disconnected by services)
  105. # [13:40] * Saaaaad is now known as SaadIbrahim
  106. # [13:47] * Quits: simenbrekken (~simenbrek@c85-196-101-98.static.sdsl.no) (Quit: Computer has gone to sleep.)
  107. # [14:03] * Joins: sedovsek (~robert.se@84-255-198-197.static.t-2.net)
  108. # [14:04] <kollapse> How can I display only an object from inside an SVG ? For example I don't want to display the entire file.svg but rather file.svg#ObjectID
  109. # [14:12] * Quits: Rik` (~Rik`@2a01:e34:ec0f:1570:daa2:5eff:fe97:85ee) (Remote host closed the connection)
  110. # [14:18] * Joins: Rik` (~Rik`@2a01:e34:ec0f:1570:daa2:5eff:fe97:85ed)
  111. # [14:24] * Joins: shichuan (~Shi_Chuan@cm182.eta124.maxonline.com.sg)
  112. # [14:25] * Quits: Evanescence (~chris@122.237.21.189) (Ping timeout: 255 seconds)
  113. # [14:33] * Quits: Jackneill (~Jackneill@unaffiliated/jackneill) (Remote host closed the connection)
  114. # [14:34] * Quits: skylamer` (cgskylamer@78.90.213.55)
  115. # [14:34] * Quits: drewcode (~chatzilla@24-107-73-144.dhcp.stls.mo.charter.com) (Ping timeout: 264 seconds)
  116. # [14:34] * Joins: Jackneill (~Jackneill@unaffiliated/jackneill)
  117. # [14:38] * Quits: MissionCritical (~MissionCr@unaffiliated/missioncritical) (Remote host closed the connection)
  118. # [14:42] * Quits: Jackneill (~Jackneill@unaffiliated/jackneill) (Quit: Nettalk6 - www.ntalk.de)
  119. # [14:51] * Joins: MissionCritical (~MissionCr@unaffiliated/missioncritical)
  120. # [14:52] * Joins: cocoadaemon (~cocoadaem@9.132.1.93.rev.sfr.net)
  121. # [14:59] <onr> kollapse: its pretty possible with javascript
  122. # [15:00] <onr> kollapse: well, with css too
  123. # [15:00] <kollapse> onr: Would it also be possible in Cavas? I reckon not. :(
  124. # [15:01] <kollapse> I actually have an SVG file with about 20 objects (shapes) in it, each one with its own ID. It would've been great if you could dispaly only one object by using file.svg#ID
  125. # [15:03] <onr> yeah it would be good
  126. # [15:04] <kollapse> Now I have to cut 20 shapes, turn them into png and then import them into canvas :( None of the Canvas extensions are capable of this either (processing.js, CakeJS)
  127. # [15:05] <onr> kollapse: take a look at fabric.js
  128. # [15:08] <kollapse> onr: Hmm, looks very interesting but I wonder if it could be used in combination with processing.js
  129. # [15:17] * Quits: chromedFiz (u533@gateway/web/irccloud.com/x-kmiqgviawghcycva) (Quit: Connection closed for inactivity)
  130. # [15:18] * Joins: robhawkes (~robhawkes@94.197.93.39.threembb.co.uk)
  131. # [15:20] * Quits: mike5w3c (~MikeSmith@EM1-112-25-122.pool.e-mobile.ne.jp) (Ping timeout: 240 seconds)
  132. # [15:24] * Joins: Jackneill (~Jackneill@82.131.229.29.pool.invitel.hu)
  133. # [15:24] * Quits: Jackneill (~Jackneill@82.131.229.29.pool.invitel.hu) (Changing host)
  134. # [15:24] * Joins: Jackneill (~Jackneill@unaffiliated/jackneill)
  135. # [15:30] * Quits: cheeaun (u2141@gateway/web/irccloud.com/x-ysemkwdxtbebzxpi) (Quit: Connection closed for inactivity)
  136. # [15:32] * Quits: temp01 (~temp01@unaffiliated/temp01) (Ping timeout: 240 seconds)
  137. # [15:33] * Joins: bot-t1 (~bot-t@unaffiliated/temp01/bot/bot-t)
  138. # [15:33] * Quits: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t) (Disconnected by services)
  139. # [15:33] * Quits: bot-t1 (~bot-t@unaffiliated/temp01/bot/bot-t) (Excess Flood)
  140. # [15:34] * Joins: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t)
  141. # [15:34] * Joins: temp01 (~temp01@unaffiliated/temp01)
  142. # [15:34] * Quits: benv (~benv@99-7-171-41.lightspeed.sntcca.sbcglobal.net) (Quit: Leaving...)
  143. # [15:48] * Quits: overra (~overra@206.255.16.231) (Ping timeout: 264 seconds)
  144. # [15:48] * Joins: materialdesigner (~materiald@68-119-212-179.dhcp.hckr.nc.charter.com)
  145. # [15:52] * Quits: dpy (~Marcel@dhcp-077-248-090-235.chello.nl) (Ping timeout: 255 seconds)
  146. # [16:03] * Quits: gavin_huang (~gravof@122.246.48.161) (Read error: Connection reset by peer)
  147. # [16:13] * Quits: Ms2ger (~Ms2ger@91.181.168.11) (Ping timeout: 255 seconds)
  148. # [16:13] * Quits: gnuyoga (~gnuyoga@ec2-175-41-145-244.ap-southeast-1.compute.amazonaws.com) (Remote host closed the connection)
  149. # [16:25] * Joins: Ms2ger (~Ms2ger@91.181.88.153)
  150. # [16:37] * Joins: Xisc (~xisc@46.39.19.95.dynamic.jazztel.es)
  151. # [16:42] * Joins: codeon (~himanshu@182.64.244.166)
  152. # [16:45] * Joins: cgcardona (~cgcardona@adsl-68-127-138-229.dsl.pltn13.pacbell.net)
  153. # [16:45] * Quits: cgcardona (~cgcardona@adsl-68-127-138-229.dsl.pltn13.pacbell.net) (Changing host)
  154. # [16:45] * Joins: cgcardona (~cgcardona@unaffiliated/cgcardona)
  155. # [16:45] * Quits: cgcardona (~cgcardona@unaffiliated/cgcardona) (Client Quit)
  156. # [16:51] * Joins: cgcardona (~cgcardona@unaffiliated/cgcardona)
  157. # [16:51] * Quits: moshee (~moshee@unaffiliated/moshee) (Ping timeout: 252 seconds)
  158. # [16:52] * Joins: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net)
  159. # [16:52] * Quits: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net) (Changing host)
  160. # [16:52] * Joins: moshee (~moshee@unaffiliated/moshee)
  161. # [16:56] * Quits: dr0id (~andy@unaffiliated/dr0id) (Quit: Leaving.)
  162. # [17:05] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 240 seconds)
  163. # [17:10] * Joins: MikeSmith (~mikesmith@EM1-112-181-143.pool.e-mobile.ne.jp)
  164. # [17:19] * Joins: MikeSmith_ (~mikesmith@EM1-112-182-192.pool.e-mobile.ne.jp)
  165. # [17:20] * Quits: MikeSmith (~mikesmith@EM1-112-181-143.pool.e-mobile.ne.jp) (Ping timeout: 258 seconds)
  166. # [17:24] * Quits: MikeSmith_ (~mikesmith@EM1-112-182-192.pool.e-mobile.ne.jp) (Ping timeout: 255 seconds)
  167. # [17:27] * Joins: thedudeinblack (4086f2ca@gateway/web/freenode/ip.64.134.242.202)
  168. # [17:28] <thedudeinblack> hey yall, how does HTML5 markup scale in older browsers?
  169. # [17:28] <thedudeinblack> does it just ignore, or will it cause internal combustion of the rendering engine?
  170. # [17:28] <thedudeinblack> i.e. IE6 will be like "i suck" and not render the page at all
  171. # [17:32] <thedudeinblack> someone had better answer me....................
  172. # [17:33] <thedudeinblack> so it sounds like the best strategy is to wrap your HTML5 stuff in just plain old div's........ so you get semantic niceness without error explosions
  173. # [17:34] * Joins: dgathright (~dgathrigh@c-71-204-165-122.hsd1.ca.comcast.net)
  174. # [17:46] * Quits: thedudeinblack (4086f2ca@gateway/web/freenode/ip.64.134.242.202) (Ping timeout: 252 seconds)
  175. # [17:56] * Quits: digitalfiz (~digitalfi@96bus106.tampabay.res.rr.com) (Remote host closed the connection)
  176. # [18:01] * Quits: shepazu (~schepers@pool-71-174-254-88.bstnma.fios.verizon.net) (Quit: shepazu)
  177. # [18:02] * Quits: gde33 (kvirc@546A1A51.cm-12-3a.dynamic.ziggo.nl) (Quit: KVIrc 4.0.4 Insomnia http://www.kvirc.net/)
  178. # [18:05] * Joins: digitalfiz (~digitalfi@96bus106.tampabay.res.rr.com)
  179. # [18:07] * Quits: shichuan (~Shi_Chuan@cm182.eta124.maxonline.com.sg) (Quit: Leaving.)
  180. # [18:13] * Joins: MikeSmith (~mikesmith@EM111-188-67-232.pool.e-mobile.ne.jp)
  181. # [18:20] * Quits: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl) (Ping timeout: 276 seconds)
  182. # [18:32] * Joins: simenbrekken (~simenbrek@c85-196-101-98.static.sdsl.no)
  183. # [18:33] * Quits: emil-malmoe (~emil-emil@h-191-247.A189.priv.bahnhof.se) (Remote host closed the connection)
  184. # [18:36] * Quits: Rik` (~Rik`@2a01:e34:ec0f:1570:daa2:5eff:fe97:85ed) (Remote host closed the connection)
  185. # [18:36] * Joins: Rik` (~Rik`@2a01:e34:ec0f:1570:daa2:5eff:fe97:85ed)
  186. # [18:40] * Quits: Rik` (~Rik`@2a01:e34:ec0f:1570:daa2:5eff:fe97:85ed) (Remote host closed the connection)
  187. # [18:40] * Joins: Rik` (~Rik`@2a01:e34:ec0f:1570:daa2:5eff:fe97:85ed)
  188. # [18:41] * Quits: Xisc (~xisc@46.39.19.95.dynamic.jazztel.es) (Remote host closed the connection)
  189. # [18:41] * Joins: c_guy (~chatzilla@c-98-242-97-201.hsd1.ga.comcast.net)
  190. # [18:42] * Quits: Rik` (~Rik`@2a01:e34:ec0f:1570:daa2:5eff:fe97:85ed) (Remote host closed the connection)
  191. # [18:42] * Joins: Rik` (~Rik`@2a01:e34:ec0f:1570:daa2:5eff:fe97:85ed)
  192. # [18:43] <c_guy> anyone had problems with the audio "ended" property in chrome?
  193. # [18:43] <c_guy> it is always false for me
  194. # [18:43] <c_guy> works fine in firefox
  195. # [18:45] * Quits: Rik` (~Rik`@2a01:e34:ec0f:1570:daa2:5eff:fe97:85ed) (Remote host closed the connection)
  196. # [18:45] * Quits: robhawkes (~robhawkes@94.197.93.39.threembb.co.uk) (Ping timeout: 255 seconds)
  197. # [18:46] * Joins: wookiehangover (~wookiehan@c-98-245-45-244.hsd1.co.comcast.net)
  198. # [18:48] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  199. # [18:53] * Joins: shichuan (~Shi_Chuan@cm182.eta124.maxonline.com.sg)
  200. # [18:53] * Joins: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
  201. # [18:53] * Quits: MikeSmith (~mikesmith@EM111-188-67-232.pool.e-mobile.ne.jp) (Ping timeout: 276 seconds)
  202. # [18:53] <paul_irish> c_guy:
  203. # [18:53] <paul_irish> i do onended="this.play()" pretty often
  204. # [18:53] <paul_irish> oh but that's the event not the prop
  205. # [18:53] <paul_irish> dunno about the porp
  206. # [18:54] <c_guy> I haven't checked to see if the event is firing. I'll try that.
  207. # [18:54] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  208. # [18:54] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  209. # [18:59] * Joins: patcito (~123@190.42.95.68)
  210. # [19:00] * Quits: materialdesigner (~materiald@68-119-212-179.dhcp.hckr.nc.charter.com) (Quit: materialdesigner)
  211. # [19:01] * Joins: techrush (~techrush@adsl-75-4-217-241.dsl.irvnca.sbcglobal.net)
  212. # [19:01] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  213. # [19:01] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
  214. # [19:02] * Joins: JKarsrud (~JKarsrud@178.74.13.36)
  215. # [19:02] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
  216. # [19:04] * Joins: Rik` (~Rik`@2a01:e34:ec0f:1570:daa2:5eff:fe97:85ed)
  217. # [19:05] * Joins: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl)
  218. # [19:05] * Quits: Rik` (~Rik`@2a01:e34:ec0f:1570:daa2:5eff:fe97:85ed) (Remote host closed the connection)
  219. # [19:06] * Joins: Rik` (~Rik`@2a01:e34:ec0f:1570:daa2:5eff:fe97:85ed)
  220. # [19:10] * Joins: SaadIbrahim (~mslfreak@113.203.158.52)
  221. # [19:10] * Quits: SaadIbrahim (~mslfreak@113.203.158.52) (Changing host)
  222. # [19:10] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
  223. # [19:11] * Quits: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net) (Quit: phishy)
  224. # [19:12] * Joins: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
  225. # [19:14] * Joins: tw2113 (~tw2113@fedora/tw2113)
  226. # [19:16] * Quits: techrush (~techrush@adsl-75-4-217-241.dsl.irvnca.sbcglobal.net) (Quit: Leaving)
  227. # [19:19] * Joins: robhawkes (~robhawkes@94.196.134.133.threembb.co.uk)
  228. # [19:23] * Joins: MikeSmith (~mikesmith@EM1-112-7-159.pool.e-mobile.ne.jp)
  229. # [19:26] * Quits: Jackneill (~Jackneill@unaffiliated/jackneill) (Remote host closed the connection)
  230. # [19:28] * Joins: Jackneill (~Jackneill@unaffiliated/jackneill)
  231. # [19:35] * Quits: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net) (Quit: phishy)
  232. # [19:40] * Joins: jeffszusz (~jeffszusz@66.11.186.38)
  233. # [19:42] * Quits: sedovsek (~robert.se@84-255-198-197.static.t-2.net) (Ping timeout: 252 seconds)
  234. # [19:44] * Quits: ajpiaNOU (~ajpiano@cpe-68-173-41-149.nyc.res.rr.com) (Quit: Bye!)
  235. # [19:46] * Joins: sedovsek (~robert.se@84-255-198-197.static.t-2.net)
  236. # [19:48] * Joins: techrush (~techrush@adsl-75-4-217-241.dsl.irvnca.sbcglobal.net)
  237. # [19:56] * Joins: NetRoY (~NetRoY@122.167.80.149)
  238. # [19:58] * Quits: MikeSmith (~mikesmith@EM1-112-7-159.pool.e-mobile.ne.jp) (Quit: hands busy doing other things)
  239. # [20:00] * Joins: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
  240. # [20:04] * Quits: kadiks (~kadiks@APuteaux-652-1-7-34.w82-124.abo.wanadoo.fr) (Ping timeout: 260 seconds)
  241. # [20:05] * Joins: Xisc (~xisc@46.39.19.95.dynamic.jazztel.es)
  242. # [20:07] * Parts: shichuan (~Shi_Chuan@cm182.eta124.maxonline.com.sg)
  243. # [20:07] * Joins: MikeSmith (~mikesmith@EM1-112-7-159.pool.e-mobile.ne.jp)
  244. # [20:09] * Joins: noisea (~noisea@a213-22-249-151.cpe.netcabo.pt)
  245. # [20:10] * Quits: noisea (~noisea@a213-22-249-151.cpe.netcabo.pt) (Remote host closed the connection)
  246. # [20:14] * Quits: beeviz (~beevi2@ip-78-94-3-11.unitymediagroup.de) (Quit: Verlassend)
  247. # [20:15] * Joins: beeviz (~beevi2@ip-78-94-3-11.unitymediagroup.de)
  248. # [20:15] * Quits: dmachi (~dmachi@pool-72-66-195-104.ronkva.east.verizon.net) (Read error: Connection reset by peer)
  249. # [20:15] * Joins: dmachi (~dmachi@pool-72-66-195-104.ronkva.east.verizon.net)
  250. # [20:16] * Quits: Xisc (~xisc@46.39.19.95.dynamic.jazztel.es) (Remote host closed the connection)
  251. # [20:19] * Quits: cocoadaemon (~cocoadaem@9.132.1.93.rev.sfr.net) (Quit: cocoadaemon)
  252. # [20:23] * Joins: Xisc (~xisc@46.39.19.95.dynamic.jazztel.es)
  253. # [20:36] * Joins: taar779 (~taar779@d24-57-144-141.home.cgocable.net)
  254. # [20:37] * Joins: cyrusyrus (~cyrusyrus@122.169.32.93)
  255. # [20:40] * Quits: dgathright (~dgathrigh@c-71-204-165-122.hsd1.ca.comcast.net) (Quit: dgathright)
  256. # [20:41] * Quits: moshee (~moshee@unaffiliated/moshee) (Ping timeout: 252 seconds)
  257. # [20:42] * Joins: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net)
  258. # [20:42] * Quits: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net) (Changing host)
  259. # [20:42] * Joins: moshee (~moshee@unaffiliated/moshee)
  260. # [20:42] * Quits: Jackneill (~Jackneill@unaffiliated/jackneill) (Quit: Nettalk6 - www.ntalk.de)
  261. # [20:44] * Joins: Jackneill (~Jackneill@82.131.229.29.pool.invitel.hu)
  262. # [20:44] * Quits: Jackneill (~Jackneill@82.131.229.29.pool.invitel.hu) (Changing host)
  263. # [20:44] * Joins: Jackneill (~Jackneill@unaffiliated/jackneill)
  264. # [20:44] * Joins: snover (~Adium@unaffiliated/snover)
  265. # [20:45] * Quits: taar779 (~taar779@d24-57-144-141.home.cgocable.net) (Quit: Ex-Chat)
  266. # [20:46] * Quits: techrush (~techrush@adsl-75-4-217-241.dsl.irvnca.sbcglobal.net) (Ping timeout: 250 seconds)
  267. # [20:47] * Quits: MikeSmith (~mikesmith@EM1-112-7-159.pool.e-mobile.ne.jp) (Quit: hands busy doing other things)
  268. # [20:52] * Joins: Aamir (~aamirafri@92.20.20.142)
  269. # [20:52] * Joins: taar779 (~taar779@d24-57-144-141.home.cgocable.net)
  270. # [20:54] * Quits: cgcardona (~cgcardona@unaffiliated/cgcardona) (Quit: zzzzz)
  271. # [20:54] * Quits: Xisc (~xisc@46.39.19.95.dynamic.jazztel.es) (Remote host closed the connection)
  272. # [20:55] * Quits: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net) (Quit: phishy)
  273. # [20:55] * Joins: tob1 (~tob1@ppp-93-104-0-223.dynamic.mnet-online.de)
  274. # [20:55] * Joins: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
  275. # [20:58] * Parts: snover (~Adium@unaffiliated/snover)
  276. # [21:03] * Quits: NetRoY (~NetRoY@122.167.80.149) (Quit: NetRoY)
  277. # [21:09] * Joins: Aamir_ (~aamirafri@92.20.86.107)
  278. # [21:10] * Quits: Aamir (~aamirafri@92.20.20.142) (Ping timeout: 252 seconds)
  279. # [21:10] * Aamir_ is now known as Aamir
  280. # [21:14] * Quits: tob1 (~tob1@ppp-93-104-0-223.dynamic.mnet-online.de) (Quit: tob1)
  281. # [21:18] * Joins: timmywil (~timmywil@host-68-169-175-33.WISOLT2.epbfi.com)
  282. # [21:23] * Quits: Jayflux (~jay_knows@cpc1-dudl6-0-0-cust197.wolv.cable.virginmedia.com) (Quit: ( www.nnscript.com :: NoNameScript 4.22 :: www.esnation.com ))
  283. # [21:25] * Quits: JoshManders (~Josh@unaffiliated/killswitch) (Ping timeout: 264 seconds)
  284. # [21:25] * Quits: Aamir (~aamirafri@92.20.86.107) (Read error: No route to host)
  285. # [21:26] * Joins: Aamir (~aamirafri@92.20.86.107)
  286. # [21:26] * Joins: cocoadaemon (~cocoadaem@2a01:e35:8a99:e90:20d:93ff:fe3b:868c)
  287. # [21:34] * Quits: Aamir (~aamirafri@92.20.86.107) (Quit: Away!)
  288. # [21:38] * Quits: Jackneill (~Jackneill@unaffiliated/jackneill) (Ping timeout: 240 seconds)
  289. # [21:39] * Quits: cocoadaemon (~cocoadaem@2a01:e35:8a99:e90:20d:93ff:fe3b:868c) (Quit: cocoadaemon)
  290. # [21:39] * Joins: king313 (~king313@unaffiliated/king313)
  291. # [21:41] <king313> hi guys, i'm trying to understand html5 and its validation
  292. # [21:41] <king313> i'm having a problem with a really simple structure (7 lines) which gives me a proble
  293. # [21:41] <king313> s/proble/problem
  294. # [21:41] <king313> in the closing head tag, here is the code and the validation result:
  295. # [21:41] <king313> http://pastebin.com/x1RiSdyz
  296. # [21:42] <tw2113> you need a <title></title>
  297. # [21:43] <king313> oh, it is!
  298. # [21:43] <king313> thanks
  299. # [21:46] * Joins: materialdesigner (~materiald@68-119-212-179.dhcp.hckr.nc.charter.com)
  300. # [21:49] * Joins: niels__ (~niels@4606ds3-van.0.fullrate.dk)
  301. # [21:49] * Joins: ryanneufeld (~ryanneufe@S0106002618c70459.vf.shawcable.net)
  302. # [21:49] * Parts: niels__ (~niels@4606ds3-van.0.fullrate.dk) ("Konversation terminated!")
  303. # [21:50] <ryanneufeld> paul_irish:yt?
  304. # [21:51] <ryanneufeld> ?tell paul_irish have a look at this: http://www.youtube.com/watch?v=N8A5_GACqhM&feature=player_embedded#t=301s any idea what's up with the spacing he's describing?
  305. # [21:51] <bot-t> ryanneufeld, Okay.
  306. # [21:56] * Joins: techrush (~techrush@adsl-75-4-217-241.dsl.irvnca.sbcglobal.net)
  307. # [21:58] * Joins: Aamir (~aamirafri@92.20.86.107)
  308. # [22:01] * Joins: Saadi (~mslfreak@unaffiliated/saadibrahim)
  309. # [22:01] * Joins: jacine (~jacine@drupal.org/user/88931/view)
  310. # [22:04] * Quits: codeon (~himanshu@182.64.244.166) (Ping timeout: 255 seconds)
  311. # [22:09] * Joins: codeon (~himanshu@182.64.244.166)
  312. # [22:18] * Quits: beeviz (~beevi2@ip-78-94-3-11.unitymediagroup.de) (Ping timeout: 240 seconds)
  313. # [22:21] * Joins: codeon_ (~himanshu@182.64.244.166)
  314. # [22:22] * Quits: codeon (~himanshu@182.64.244.166) (Read error: No route to host)
  315. # [22:22] * Quits: codeon_ (~himanshu@182.64.244.166) (Read error: Connection reset by peer)
  316. # [22:23] * Joins: codeon (~himanshu@182.64.244.166)
  317. # [22:23] * Joins: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
  318. # [22:23] * Quits: cyrusyrus (~cyrusyrus@122.169.32.93) (Remote host closed the connection)
  319. # [22:26] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: Nice Scotty, now beam my clothes up too!)
  320. # [22:26] * Joins: Brodingo (~Brodingo@cpe-70-116-2-207.austin.res.rr.com)
  321. # [22:32] * Joins: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com)
  322. # [22:46] * Quits: Ms2ger (~Ms2ger@91.181.88.153) (Quit: nn)
  323. # [22:48] * Quits: kppullin (~kppullin@wsip-98-173-13-146.oc.oc.cox.net) (Ping timeout: 246 seconds)
  324. # [22:51] * Quits: king313 (~king313@unaffiliated/king313) (Quit: .)
  325. # [22:55] * Quits: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com) (Quit: Reading http://davidwalsh.name)
  326. # [22:55] * Quits: kollapse (~kollaps@unaffiliated/kollapse) (Ping timeout: 264 seconds)
  327. # [23:03] * Joins: gde33 (kvirc@546A1A51.cm-12-3a.dynamic.ziggo.nl)
  328. # [23:05] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 255 seconds)
  329. # [23:05] * Joins: SaadIbrahim (~mslfreak@113.203.174.195)
  330. # [23:06] * Quits: SaadIbrahim (~mslfreak@113.203.174.195) (Changing host)
  331. # [23:06] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
  332. # [23:06] * Quits: Saadi (~mslfreak@unaffiliated/saadibrahim) (Disconnected by services)
  333. # [23:06] * SaadIbrahim is now known as Saadi
  334. # [23:07] * Quits: sedovsek (~robert.se@84-255-198-197.static.t-2.net)
  335. # [23:09] * Joins: Xisc (~xisc@46.39.19.95.dynamic.jazztel.es)
  336. # [23:11] * Joins: cgcardona (~cgcardona@unaffiliated/cgcardona)
  337. # [23:12] <cgcardona> hai
  338. # [23:14] * Quits: Aamir (~aamirafri@92.20.86.107) (Quit: Away!)
  339. # [23:19] * Joins: dgathright (~dgathrigh@99.139.66.5)
  340. # [23:21] * Quits: codeon (~himanshu@182.64.244.166) (Quit: Ex-Chat)
  341. # [23:32] * Joins: Aamir (~aamirafri@92.20.86.107)
  342. # [23:44] * Joins: overra (~overra@206.255.16.231)
  343. # [23:45] * Quits: dgathright (~dgathrigh@99.139.66.5) (Ping timeout: 276 seconds)
  344. # [23:46] * Quits: Aamir (~aamirafri@92.20.86.107) (Quit: Away!)
  345. # [23:51] * Joins: dgathright (~dgathrigh@nat/yahoo/x-vgorikwcufwbiiwe)
  346. # [23:52] * Joins: FylGood (~fylgood@pool-108-48-75-254.washdc.fios.verizon.net)
  347. # Session Close: Sun Jul 03 00:00:00 2011

The end :)