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

Options:

  1. # Session Start: Tue Jul 26 00:00:00 2011
  2. # Session Ident: #html5
  3. # 03[00:02] * Joins: mike5w3c (~MikeSmith@EM1-112-250-5.pool.e-mobile.ne.jp)
  4. # 02[00:03] * Quits: wookiehangover (~wookiehan@c-98-245-45-244.hsd1.co.comcast.net) (Quit: Leaving...)
  5. # [00:04] <paul_irish> sic1: be sure to turn off mootools in the base fiddle
  6. # [00:04] <paul_irish> sandprickle: master branchhhhhhhhhh
  7. # [00:05] <sandprickle> ok thx man
  8. # [00:05] <grantg> even irish. :)
  9. # [00:05] <grantg> *evening
  10. # [00:07] <paul_irish> hey bro
  11. # [00:07] <grantg> I just posted in #audio about nezulator using xaudiojs now. :)
  12. # [00:08] <grantg> so web audio is used in that jsnes fork. :)
  13. # [00:08] <xonecas> grantg: o/
  14. # 02[00:08] * Quits: tw2113 (~tw2113@fedora/tw2113) (Ping timeout: 246 seconds)
  15. # [00:09] <grantg> hey xonecas
  16. # 03[00:09] * Joins: martin2df (~quassel@212.43.58.82)
  17. # 02[00:09] * Quits: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk) (Quit: Leaving.)
  18. # 02[00:11] * Quits: martin2df (~quassel@212.43.58.82) (Client Quit)
  19. # [00:11] <grantg> xonecas: http://zelex.net/nezulator/ should sound better than jsnes in chrome
  20. # [00:11] <grantg> at least on mac os x
  21. # [00:11] <grantg> much less latency
  22. # 03[00:13] * Joins: ighisas (~ighisas@122x212x216x66.ap122.ftth.ucom.ne.jp)
  23. # 02[00:14] * Quits: shipit (~shipit@204-15-2-155-static.ipnetworksinc.net) (Remote host closed the connection)
  24. # 03[00:14] * Parts: sandprickle (~sandprick@12-26-17-156.hopitelecom.net)
  25. # [00:18] <grantg> xonecas: meanwhile with js gba - http://pastebin.com/QtMhXNr8
  26. # [00:19] <grantg> double checking the hardware multiplication instrs for arm.
  27. # [00:19] <grantg> especially since it's 64 bit
  28. # [00:19] <grantg> and bitwise in js only does 32-bit signed
  29. # 02[00:21] * Quits: koggdal (~koggdal@user171.77-105-221.netatonce.net) (Quit: koggdal)
  30. # 02[00:21] * Quits: voxpelli (~anonymous@83.176.255.215) (Quit: voxpelli)
  31. # [00:23] <xonecas> You've been busy
  32. # [00:23] <xonecas> I need to update the build here at home
  33. # [00:23] <xonecas> haven't played in a while
  34. # [00:23] <xonecas> been gone
  35. # [00:23] <grantg> check the conditional nibble of the instruction for conditional execution, chunk the instr decoding, cast to unsigned 32, then multiply the two 32-bit unsigned values from registers, then add to existing value if accumulate flag is set, do some more js foo for grabbing the top 32 bits of the 64 bit result if need be ((x / 0x100000000) | 0) trick), update the CPSR registers if the S bit is...
  36. # [00:23] <grantg> ...set in the instruction, wrap it up.
  37. # 02[00:24] * Quits: Aamir (~aamirafri@cpc1-epso2-0-0-cust593.6-3.cable.virginmedia.com) (Quit: Away!)
  38. # [00:24] <grantg> :)
  39. # 03[00:25] * Joins: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
  40. # [00:25] <xonecas> Can you speak english :-P
  41. # [00:27] <grantg> me wants 64-bit bitwise for js
  42. # [00:27] <grantg> otherwise you have to use regular math ops to solve anything beyond 32-bit math
  43. # 02[00:28] * Quits: Manuel`AC (~manuel@unaffiliated/acmanuel/x-6275086) (Ping timeout: 246 seconds)
  44. # [00:28] <grantg> you divide by 0x100000000 to make anything in the lower 32 bits below the floating point
  45. # [00:28] <xonecas> I see
  46. # 02[00:28] * Quits: cocoadaemon (~cocoadaem@2a01:e35:8a99:e90:20d:93ff:fe3b:868c) (Quit: cocoadaemon)
  47. # [00:29] <grantg> then you use the | 0 trick to bound as 32-bit and drop the floating point.
  48. # [00:29] <grantg> :D
  49. # [00:29] <xonecas> :-)
  50. # [00:29] <nimbu> wayy too deep grantg
  51. # [00:29] <grantg> bitwise in js is limited to 32-bit, *but not regular math.*
  52. # [00:29] <grantg> heh
  53. # [00:31] <xonecas> grantg: I agree with nimbu lol
  54. # 02[00:31] * Quits: David_Bradbury (~chatzilla@75-147-178-254-Washington.hfc.comcastbusiness.net) (Quit: ChatZilla 0.9.87 [Firefox 5.0/20110615151330])
  55. # [00:32] <grantg> try >> 0 and >>> 0 in jsfiddle
  56. # [00:32] <grantg> subtle differences
  57. # [00:32] <grantg> one does the sign bit, the other doesn't.
  58. # 03[00:32] * Joins: remysharp (~remysharp@67.23.204.2)
  59. # [00:32] <grantg> making sure you're doing unsigned bit math is kinda important. :D
  60. # [00:32] <xonecas> But you have been busy while I was gone. I learned my lesson to not to code while on vacations (drunk) xonecas.com
  61. # [00:32] <grantg> heh
  62. # [00:32] <xonecas> ahah
  63. # [00:33] <xonecas> Sorry crock man told me not to use bitwise operators
  64. # [00:33] <grantg> xonecas: and ARM CPUs use a funny shift method for offsetting immediate values
  65. # [00:33] <grantg> ((immediate << (0x20 - shift)) | (immediate >> shift))
  66. # [00:33] <grantg> weeeee
  67. # [00:34] <grantg> shift right and carry into from the left
  68. # [00:34] <grantg> >_>
  69. # [00:34] <xonecas> grantg I worry about your sanity if you keep this up
  70. # 02[00:34] * Quits: x29a (~x29a@unaffiliated/x29a) (Ping timeout: 255 seconds)
  71. # [00:34] <grantg> xonecas: Do you really know how long JS GBA has been going on?
  72. # [00:34] <grantg> since JS GBC started
  73. # [00:34] <Peter`> give him his moment, he's just bragging off xonecas
  74. # [00:35] <grantg> last year
  75. # [00:35] <grantg> Peter`: :|
  76. # [00:35] <xonecas> I can see the dates in the repos
  77. # [00:35] <xonecas> Peter`: after all the time he has spent on this he needs some venting off
  78. # [00:35] <grantg> xonecas: The repo dates are after js gbc was almost done. :)
  79. # [00:35] <grantg> xonecas: I have been on too much
  80. # [00:35] <xonecas> ahahaha
  81. # [00:35] <xonecas> I kind of figured that muc
  82. # [00:35] <xonecas> much
  83. # 03[00:36] * Joins: phishbor (~runtalan@209-234-189-154.static.twtelecom.net)
  84. # [00:36] <grantg> simulating a cpu pipeline in js is fun. :)
  85. # [00:36] <grantg> that too. :)
  86. # [00:37] <grantg> "the program counter does not actually match the location of the currently executing instruction, apply a variable offset to that depending on the depth of the pipeline itself" <-- lol
  87. # 03[00:37] * Parts: Rik` (~Rik`@2a01:e34:ec0f:1570:e8d4:5762:3def:e451) ("Leaving...")
  88. # 02[00:37] * Quits: Jayflux (~jay_knows@cpc1-dudl6-0-0-cust197.wolv.cable.virginmedia.com) (Quit: ( www.nnscript.com :: NoNameScript 4.22 :: www.esnation.com ))
  89. # [00:38] <xonecas> well at least the docs tell you that
  90. # [00:38] <grantg> because the pc is used in the fetch staging pipeline
  91. # 03[00:38] * Joins: x29a (~x29a@g224219002.adsl.alicedsl.de)
  92. # [00:38] <grantg> true
  93. # 02[00:38] * Quits: x29a (~x29a@g224219002.adsl.alicedsl.de) (Remote host closed the connection)
  94. # 02[00:38] * Quits: phishbot (~runtalan@unaffiliated/phishbot) (Ping timeout: 276 seconds)
  95. # [00:39] <grantg> fetch/decode/execute
  96. # [00:39] <grantg> so what you're dealing with was determined two pipeline syncs ago
  97. # [00:39] <grantg> except on certain instructions, where a nasty flush can happen. :(
  98. # 03[00:41] * Joins: shipit (~shipit@204-15-2-155-static.ipnetworksinc.net)
  99. # 03[00:44] * Joins: phishbot (~runtalan@unaffiliated/phishbot)
  100. # 02[00:44] * Quits: gypsion (~gypsion@121.1.54.50) (Read error: Connection reset by peer)
  101. # 02[00:45] * Quits: phishbor (~runtalan@209-234-189-154.static.twtelecom.net) (Read error: Connection reset by peer)
  102. # [00:45] <xonecas> grantg: take a break man, play some snes :-P
  103. # [00:45] <grantg> xonecas: lol
  104. # [00:46] <grantg> or test some golden sun in google chrome
  105. # [00:46] <xonecas> there you go
  106. # 02[00:46] * Quits: jahrome_ (~jahrome@p3E990180.dip.t-dialin.net) (Quit: ChatZilla 0.9.86.1 [SeaMonkey 2.0.14/20110725021547])
  107. # [00:46] <grantg> but the world map is glitched. :(
  108. # [00:47] <grantg> cpu cycle accuracy is still a bummer. D:
  109. # [00:47] <grantg> things like branches on special reg values can cause extra clocking, so I need to fix that
  110. # [00:48] <grantg> (i.e. pipeline flush)
  111. # [00:48] <paul_irish> just wrote this. tweak if you want https://developer.mozilla.org/Creating_and_triggering_custom_events
  112. # [00:49] <grantg> nice
  113. # [00:51] <grantg> look what I found in a library today: http://i.imgur.com/duSnM.png
  114. # [00:51] <grantg> "The Internet Unleashed (c) 1994" - now on floppy
  115. # [00:51] <grantg> and stuck inside a cd case. LOL
  116. # [00:51] <xonecas> ahahahaha
  117. # [00:51] <xonecas> funny stuff there
  118. # [00:52] <grantg> found in the bowels of a library, next to programming for windows 3.11
  119. # [00:52] <xonecas> paul_irish: what is the dispatchEvent method?
  120. # 02[00:52] * Quits: dgathright (~dgathrigh@nat/yahoo/x-rzttoqzwbtbqrfvn) (Quit: dgathright)
  121. # [00:53] <paul_irish> standard dom level 2 event method
  122. # [00:54] <xonecas> I'm reading the docs, it's the trigger :-)
  123. # 03[00:54] * jacine is now known as jacine|brb
  124. # [00:54] <xonecas> <- foreigner, some times I need my keywords...
  125. # 02[00:56] * Quits: mike5w3c (~MikeSmith@EM1-112-250-5.pool.e-mobile.ne.jp) (Ping timeout: 276 seconds)
  126. # 03[00:59] * Joins: jahrome_ (~jahrome@p3E990180.dip.t-dialin.net)
  127. # 02[01:00] * Quits: remysharp (~remysharp@67.23.204.2) (Quit: Shazam)
  128. # [01:01] <sic1> paul_irish: mdc needs some help with copy and pasting code, but that is awesome! whats the compatibility like?
  129. # [01:01] <grantg> damn tf2 spies - http://i.imgur.com/ki96g.png
  130. # [01:01] <grantg> haters gonna hate big time
  131. # [01:02] <sic1> and dude, DUDE....i cant figure out how im bricking that transition, about...30% of the time it works as expected, the other %...does the initial animation onload
  132. # [01:03] <sic1> it would make me feel better if i could blame you tho
  133. # [01:03] <paul_irish> sic1: compat is everywhere but oldIE
  134. # [01:04] <paul_irish> feel free blaming me
  135. # [01:04] <sic1> sweetness x2
  136. # 02[01:05] * Quits: RaceCondition (~erik@82.131.64.95.cable.starman.ee) (Quit: RaceCondition)
  137. # [01:05] <gseguin> nimbu: thank you!
  138. # [01:05] <nimbu> gseguin: o for what :||
  139. # [01:06] <gseguin> the message that bot-t just delivered to me
  140. # [01:06] <nimbu> o right
  141. # [01:06] <nimbu> :))
  142. # [01:06] <gseguin> I'll give it a try
  143. # 02[01:06] * Quits: necolas (~necolas@5e0425de.bb.sky.com) (Remote host closed the connection)
  144. # 02[01:08] * Quits: moshee (~moshee@unaffiliated/moshee) (Ping timeout: 276 seconds)
  145. # 03[01:08] * Joins: RaceCondition (~erik@82.131.64.95.cable.starman.ee)
  146. # 03[01:08] * Joins: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net)
  147. # 02[01:08] * Quits: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net) (Changing host)
  148. # 03[01:08] * Joins: moshee (~moshee@unaffiliated/moshee)
  149. # 02[01:08] * Quits: RaceCondition (~erik@82.131.64.95.cable.starman.ee) (Client Quit)
  150. # 02[01:08] * Quits: robhawkes (~robhawkes@188-220-16-96.dsl.cnl.uk.net) (Quit: Leaving...)
  151. # 03[01:09] * Joins: dgathright (~dgathrigh@184.234.17.40)
  152. # 02[01:11] * Quits: BadQuanta (~BadQuanta@pool-98-117-221-233.bltmmd.fios.verizon.net) (Ping timeout: 255 seconds)
  153. # 02[01:13] * Quits: standup75 (~standup75@204.145.76.130) (Quit: standup75)
  154. # 02[01:15] * Quits: simplicity- (~simpli@unaffiliated/simplicity-) (Quit: simplicity-)
  155. # 02[01:16] * Quits: victor_ (~victor@84.232.172.142) (Quit: Ex-Chat)
  156. # 03[01:18] * Joins: tw2113 (~tw2113@fedora/tw2113)
  157. # 02[01:24] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Quit: Leaving.)
  158. # 02[01:26] * Quits: gpsietzema (~gpsietzem@188.201.167.121) (Remote host closed the connection)
  159. # 03[01:27] * Joins: hitchcock (~bluearcht@c-66-31-136-2.hsd1.ma.comcast.net)
  160. # 02[01:32] * Quits: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net) (Quit: phishy)
  161. # 03[01:33] * Joins: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
  162. # 03[01:35] * Parts: hitchcock (~bluearcht@c-66-31-136-2.hsd1.ma.comcast.net)
  163. # 02[01:36] * Quits: FireFly (~firefly@unaffiliated/firefly) (Quit: swatted to death)
  164. # 03[01:41] * jacine|brb is now known as jacine
  165. # 03[01:42] * Joins: skotttAFK (skottt@c-67-170-101-122.hsd1.wa.comcast.net)
  166. # 02[01:43] * Quits: ryanneufeld (~ryanneufe@S01060019e1edefc1.vc.shawcable.net) (Remote host closed the connection)
  167. # 02[01:43] * Quits: skottt (skottt@c-67-170-101-122.hsd1.wa.comcast.net) (Ping timeout: 264 seconds)
  168. # 02[01:50] * Quits: tigerpaw (~tigerpaw@unaffiliated/tigerpaw) (Quit: purrr)
  169. # 02[01:52] * Quits: dgathright (~dgathrigh@184.234.17.40) (Read error: Connection timed out)
  170. # 03[01:54] * Joins: dgathright (~dgathrigh@184.234.17.40)
  171. # 03[01:55] * Joins: smapde (~smapde@c-24-17-68-208.hsd1.wa.comcast.net)
  172. # 02[01:55] * Quits: svnlto (~svnlto@78-86-0-182.zone2.bethere.co.uk) (Remote host closed the connection)
  173. # 03[01:56] * Joins: Evanescence (~chris@122.237.29.189)
  174. # 03[01:56] * Joins: svenlito (~svnlto@78-86-0-182.zone2.bethere.co.uk)
  175. # 02[02:00] * Quits: thatryan (~thatryan@adsl-76-254-18-203.dsl.pltn13.sbcglobal.net) (Quit: Leaving...)
  176. # 03[02:00] * Joins: giulivo (~giulivo@host50-119-static.43-88-b.business.telecomitalia.it)
  177. # 02[02:01] * Quits: smapde (~smapde@c-24-17-68-208.hsd1.wa.comcast.net) (Read error: Connection reset by peer)
  178. # 03[02:02] * Joins: smapde (~smapde@c-24-17-68-208.hsd1.wa.comcast.net)
  179. # 02[02:02] * Quits: dgathright (~dgathrigh@184.234.17.40) (Quit: dgathright)
  180. # 02[02:03] * Quits: mascix (~mascix@83.66.110.192) (Quit: Leaving.)
  181. # 02[02:07] * Quits: smapde (~smapde@c-24-17-68-208.hsd1.wa.comcast.net) (Ping timeout: 258 seconds)
  182. # 03[02:08] * Joins: tigerpaw (~tigerpaw@unaffiliated/tigerpaw)
  183. # 02[02:12] * Quits: svenlito (~svnlto@78-86-0-182.zone2.bethere.co.uk) (Quit: svenlito)
  184. # 03[02:12] * Joins: timmywil (~timmywil@host-68-169-175-33.WISOLT2.epbfi.com)
  185. # 02[02:15] * Quits: ericduran (~ericduran@173-203-243-241.static.cloud-ips.com) (Quit: ericduran)
  186. # 02[02:15] * Quits: sic1 (~ckihneman@wsip-68-224-173-84.sd.sd.cox.net) (Quit: Computer has gone to sleep)
  187. # [02:16] <digitalfiz> http://i.imgur.com/7pOwI.jpg
  188. # 03[02:16] * Joins: sic1 (~ckihneman@wsip-68-224-173-84.sd.sd.cox.net)
  189. # 02[02:23] * Quits: grantg (~chatzilla@69.88.160.3) (Quit: ChatZilla 0.9.87 [Firefox 5.0.1/20110707182747])
  190. # 03[02:29] * Joins: RoosterJuice__ (~RoosterJu@S0106001e583db192.cg.shawcable.net)
  191. # 02[02:30] * Quits: techrush (~techrush@rrcs-173-197-64-177.west.biz.rr.com) (Quit: Leaving)
  192. # 03[02:32] * Joins: thatryan (~thatryan@c-24-4-109-126.hsd1.ca.comcast.net)
  193. # 02[02:32] * Quits: RoosterJuice_ (~RoosterJu@S0106001e583db192.cg.shawcable.net) (Ping timeout: 252 seconds)
  194. # 02[02:33] * Quits: jahrome_ (~jahrome@p3E990180.dip.t-dialin.net) (Quit: ChatZilla 0.9.86.1 [SeaMonkey 2.0.14/20110725021547])
  195. # 03[02:34] * Joins: jeffszusz (~jeffszusz@d24-57-194-149.home.cgocable.net)
  196. # 02[02:37] * Quits: timmywil (~timmywil@host-68-169-175-33.WISOLT2.epbfi.com) (Quit: Computer has gone to sleep.)
  197. # 02[02:42] * Quits: gliese582 (~ManOnTheM@81.202.113.56.dyn.user.ono.com) (Quit: leaving)
  198. # 02[02:45] * Quits: AppelonD (~AppelonD@0x5551c026.adsl.cybercity.dk) (Ping timeout: 240 seconds)
  199. # 02[02:54] * Quits: saschagehlich (~saschageh@p5DD5576D.dip.t-dialin.net) (Remote host closed the connection)
  200. # 02[02:57] * Quits: nimbu (~Adium@72-254-58-68.client.stsn.net) (Quit: Leaving.)
  201. # 03[02:57] * Joins: BadQuanta (~BadQuanta@pool-98-117-221-233.bltmmd.fios.verizon.net)
  202. # 03[02:57] * Joins: OzDave_mbp (~OzDave_mb@27-33-43-79.static.tpgi.com.au)
  203. # 02[02:59] * Quits: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net) (Quit: phishy)
  204. # 02[03:02] * Quits: sleetx (ajyhsdfgwa@c-98-204-136-53.hsd1.va.comcast.net) (Read error: Connection reset by peer)
  205. # 03[03:03] * Joins: sleetx (ajyhsdfgwa@c-98-204-136-53.hsd1.va.comcast.net)
  206. # 02[03:03] * Quits: giulivo (~giulivo@host50-119-static.43-88-b.business.telecomitalia.it) (Ping timeout: 258 seconds)
  207. # 02[03:03] * Quits: tantek (~tantek@72-254-95-69.client.stsn.net) (Quit: tantek)
  208. # 02[03:06] * Quits: Jon47 (~jonz@pool-173-79-102-81.washdc.fios.verizon.net) (Quit: Leaving.)
  209. # 02[03:08] * Quits: gseguin (~anonymous@67.136.90.250) (Quit: gseguin)
  210. # 02[03:09] * Quits: sleetx (ajyhsdfgwa@c-98-204-136-53.hsd1.va.comcast.net) (Read error: Connection reset by peer)
  211. # 03[03:09] * Joins: sleetx (ajyhsdfgwa@c-98-204-136-53.hsd1.va.comcast.net)
  212. # 02[03:12] * Quits: sleetx (ajyhsdfgwa@c-98-204-136-53.hsd1.va.comcast.net) (Read error: Connection reset by peer)
  213. # 03[03:12] * Joins: sleetx (ajyhsdfgwa@c-98-204-136-53.hsd1.va.comcast.net)
  214. # 03[03:15] * Joins: giulivo (~giulivo@109.114.19.35)
  215. # 02[03:19] * Quits: shepazu (~schepers@72-254-62-152.client.stsn.net) (Quit: shepazu)
  216. # 03[03:19] * Joins: aidalgol (~user@202.36.179.68)
  217. # 02[03:19] * Quits: axelator (~chatzilla@cn-sfo1-natout.cnet.com) (Remote host closed the connection)
  218. # 02[03:24] * Quits: Brodingo (~Brodingo@cpe-70-116-2-207.austin.res.rr.com) (Remote host closed the connection)
  219. # 03[03:32] * Joins: techrush (~techrush@adsl-75-4-18-152.dsl.irvnca.sbcglobal.net)
  220. # 02[03:34] * Quits: phishbot (~runtalan@unaffiliated/phishbot) (Quit: Leaving...)
  221. # 03[03:35] * Joins: gavin_huang (~gravof@122.246.52.88)
  222. # 02[03:40] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: Never look down on someone unless you're helping them up.)
  223. # 03[03:46] * Joins: plh_ (~plh@209.117.47.253)
  224. # 03[03:49] * Joins: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
  225. # 02[03:50] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 258 seconds)
  226. # 03[03:51] * Joins: buribu (~buribu@189-46-131-73.dsl.telesp.net.br)
  227. # 02[03:51] * Quits: buribu (~buribu@189-46-131-73.dsl.telesp.net.br) (Changing host)
  228. # 03[03:51] * Joins: buribu (~buribu@unaffiliated/buribu)
  229. # 02[03:55] * Quits: plh_ (~plh@209.117.47.253) (Quit: always accept cookies)
  230. # 02[03:57] * Quits: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net) (Quit: phishy)
  231. # 02[04:05] * Quits: aidalgol (~user@202.36.179.68) (Quit: moving)
  232. # 02[04:06] * Quits: Hautain_ (~Hautain@AOrleans-258-1-11-201.w90-8.abo.wanadoo.fr) (Read error: Connection reset by peer)
  233. # 03[04:06] * Joins: Hautain_ (~Hautain@AOrleans-258-1-11-201.w90-8.abo.wanadoo.fr)
  234. # 02[04:07] * Quits: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Ping timeout: 260 seconds)
  235. # 02[04:08] * Quits: smus (~smus@nat/google/x-gyvhflyrtdindqri) (Remote host closed the connection)
  236. # 03[04:09] * Joins: Eightamrock (~Eightamro@c-98-221-151-72.hsd1.nj.comcast.net)
  237. # 02[04:09] * Quits: nightfury (~nightfury@host-74-211-24-78.beyondbb.com) (Quit: nightfury)
  238. # 03[04:10] * Joins: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
  239. # 03[04:12] * Joins: smus (~smus@67.218.102.48)
  240. # 02[04:14] * Quits: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net) (Client Quit)
  241. # 03[04:16] * Joins: mdale (~mdale@unaffiliated/mdale)
  242. # 02[04:20] * Quits: OzDave_mbp (~OzDave_mb@27-33-43-79.static.tpgi.com.au) (Quit: OzDave_mbp)
  243. # 03[04:25] * Joins: aidalgol (~user@202.36.179.68)
  244. # 03[04:26] * Joins: OzDave_mbp (~OzDave_mb@27-33-43-79.static.tpgi.com.au)
  245. # 03[04:27] * Joins: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
  246. # 02[04:33] * Quits: benv_ (~benv@50-0-80-160.dsl.static.sonic.net) (Quit: Leaving...)
  247. # 03[04:37] * Joins: [1]Kichael (~Kichael@70-36-49-167.dyn.novuscom.net)
  248. # 03[04:37] * Joins: [2]Kichael (~Kichael@70-36-49-167.dyn.novuscom.net)
  249. # 02[04:38] * Quits: [2]Kichael (~Kichael@70-36-49-167.dyn.novuscom.net) (Read error: Connection reset by peer)
  250. # 02[04:39] * Quits: Kichael (~Kichael@70-36-49-167.dyn.novuscom.net) (Ping timeout: 250 seconds)
  251. # 02[04:41] * Quits: [1]Kichael (~Kichael@70-36-49-167.dyn.novuscom.net) (Ping timeout: 264 seconds)
  252. # 02[04:41] * Quits: aidalgol (~user@202.36.179.68) (Quit: ERC Version 5.3 (IRC client for Emacs))
  253. # 03[04:43] * Parts: mdale (~mdale@unaffiliated/mdale)
  254. # 02[04:44] * Quits: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net) (Quit: phishy)
  255. # 03[04:45] * Joins: Jon47 (~jonz@pool-173-79-102-81.washdc.fios.verizon.net)
  256. # 03[04:46] * Joins: saschagehlich (~saschageh@p5DD5576D.dip.t-dialin.net)
  257. # 02[04:49] * Quits: smus (~smus@67.218.102.48) (Remote host closed the connection)
  258. # 02[04:54] * Quits: gavin_huang (~gravof@122.246.52.88) (Read error: Connection timed out)
  259. # 03[04:54] * Joins: gavin_huang (~gravof@122.246.52.88)
  260. # 02[04:55] * Quits: KeepSafe (~jack@5ad17524.bb.sky.com) (Quit: Lost terminal)
  261. # 02[04:59] * Quits: BadQuanta (~BadQuanta@pool-98-117-221-233.bltmmd.fios.verizon.net) (Ping timeout: 255 seconds)
  262. # 03[04:59] * Joins: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
  263. # 02[05:05] * Quits: boaz (~boaz@li326-230.members.linode.com) (Excess Flood)
  264. # 03[05:05] * Joins: boaz (~boaz@li326-230.members.linode.com)
  265. # 03[05:07] * Joins: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
  266. # 02[05:10] * Quits: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net) (Client Quit)
  267. # 02[05:12] * Quits: Jon47 (~jonz@pool-173-79-102-81.washdc.fios.verizon.net) (Quit: Leaving.)
  268. # 02[05:12] * Quits: dmachi (~dmachi@pool-72-66-210-222.ronkva.east.verizon.net) (Read error: Connection reset by peer)
  269. # 03[05:12] * Joins: dmachi1 (~dmachi@pool-72-66-210-222.ronkva.east.verizon.net)
  270. # 02[05:15] * Quits: giulivo (~giulivo@109.114.19.35) (Quit: bye)
  271. # 03[05:16] * Joins: miketaylr (~miketaylr@24.42.93.245)
  272. # 02[05:16] * Quits: Eightamrock (~Eightamro@c-98-221-151-72.hsd1.nj.comcast.net)
  273. # 03[05:21] * Joins: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
  274. # 03[05:24] * Joins: danbeam_ (~anonymous@unaffiliated/danbeam)
  275. # 02[05:28] * Quits: boaz (~boaz@li326-230.members.linode.com) (Excess Flood)
  276. # 02[05:28] * Quits: Evanescence (~chris@122.237.29.189) (Quit: WeeChat 0.3.5)
  277. # 03[05:28] * Joins: Evanescence (~chris@122.237.29.189)
  278. # 03[05:29] * Joins: boaz (~boaz@li326-230.members.linode.com)
  279. # 03[05:30] * Joins: aidalgol (~user@132.181.225.148)
  280. # 02[05:31] * Quits: apalmer (~apalmer@091.135-78-65.ftth.swbr.surewest.net) (Read error: Connection reset by peer)
  281. # 03[05:32] * Joins: apalmer (~apalmer@091.135-78-65.ftth.swbr.surewest.net)
  282. # 02[05:33] * Quits: saschagehlich (~saschageh@p5DD5576D.dip.t-dialin.net) (Ping timeout: 240 seconds)
  283. # 03[05:35] * Joins: saschagehlich (~saschageh@p5DD55BF4.dip.t-dialin.net)
  284. # 02[05:38] * Quits: materialdesigner (~cah276@68-119-212-179.dhcp.hckr.nc.charter.com) (Ping timeout: 252 seconds)
  285. # 02[05:39] * Quits: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net) (Quit: phishy)
  286. # 03[05:41] * Joins: nonge__ (~nonge@p5B326ABA.dip.t-dialin.net)
  287. # 02[05:45] * Quits: dguttman (~dguttman@rrcs-173-196-159-188.west.biz.rr.com) (Quit: dguttman)
  288. # 02[05:45] * Quits: nonge_ (~nonge@p5082AF4D.dip.t-dialin.net) (Ping timeout: 240 seconds)
  289. # 02[05:47] * Quits: cjaredrun (~cjaredrun@216-235-101-HCC-37.hcc.net) (Quit: Linkinus - http://linkinus.com)
  290. # 02[05:48] * Quits: andr3 (~andr3@bl14-164-246.dsl.telepac.pt) (Quit: andr3)
  291. # 03[05:48] * Joins: cjaredrun (~cjaredrun@216-235-101-HCC-37.hcc.net)
  292. # 03[05:57] * Joins: mdale (~mdale@unaffiliated/mdale)
  293. # 02[06:02] * Quits: WILDsharustar (~sharustar@unaffiliated/sharustar) (Quit: Leaving)
  294. # 02[06:04] * Quits: Evanescence (~chris@122.237.29.189) (Quit: WeeChat 0.3.5)
  295. # 03[06:04] * Joins: wookiehangover (~wookiehan@c-98-245-45-244.hsd1.co.comcast.net)
  296. # 02[06:06] * Quits: digitalfiz (~digitalfi@unaffiliated/digitalfiz) (Ping timeout: 258 seconds)
  297. # 03[06:06] * Joins: Evanescence (~chris@122.237.29.189)
  298. # 03[06:07] * Joins: smus (~smus@173-167-97-246-sfba.hfc.comcastbusiness.net)
  299. # 03[06:07] * Joins: dr0id (~andy@unaffiliated/dr0id)
  300. # 03[06:08] * Joins: digitalfiz (~digitalfi@unaffiliated/digitalfiz)
  301. # 02[06:08] * Quits: taar779 (~taar779@d24-57-144-141.home.cgocable.net) (Quit: Leaving)
  302. # 03[06:08] * Joins: taar779 (~taar779@d24-57-144-141.home.cgocable.net)
  303. # 02[06:10] * Quits: Evanescence (~chris@122.237.29.189) (Client Quit)
  304. # 02[06:11] * Quits: aidalgol (~user@132.181.225.148) (Quit: class)
  305. # 02[06:12] * Quits: jeffszusz (~jeffszusz@d24-57-194-149.home.cgocable.net) (Remote host closed the connection)
  306. # 03[06:13] * Joins: Bioxyde (~Adium@189.75.18.177)
  307. # 03[06:13] * dr0id is now known as inferno
  308. # 03[06:14] * inferno is now known as firewall
  309. # 03[06:14] * firewall is now known as charged_bolt
  310. # 03[06:15] * Joins: Evanescence (~chris@122.237.29.189)
  311. # 03[06:32] * Joins: cypha`` (~cypha@unaffiliated/cypha)
  312. # 02[06:35] * Quits: cypha (~cypha@unaffiliated/cypha) (Ping timeout: 260 seconds)
  313. # 03[06:43] * Joins: phishbot (~runtalan@unaffiliated/phishbot)
  314. # 02[06:45] * Quits: boaz (~boaz@li326-230.members.linode.com) (Excess Flood)
  315. # 03[06:46] * Joins: boaz (~boaz@li326-230.members.linode.com)
  316. # 03[06:47] * Joins: tw2113 (~tw2113@fedora/tw2113)
  317. # 02[06:49] * Quits: dmachi1 (~dmachi@pool-72-66-210-222.ronkva.east.verizon.net) (Quit: Leaving.)
  318. # 03[06:49] * Joins: franksalim (~frank@64-71-23-250.static.wiline.com)
  319. # 03[06:56] * Joins: amigojapan (~chatzilla@p9047-ipngnfx01souka.saitama.ocn.ne.jp)
  320. # 02[06:57] * Quits: wookiehangover (~wookiehan@c-98-245-45-244.hsd1.co.comcast.net) (Quit: Leaving...)
  321. # 03[06:58] * Joins: LongBeach (~mike@AFontenayssB-152-1-17-205.w82-121.abo.wanadoo.fr)
  322. # 02[06:58] * Quits: miketaylr (~miketaylr@24.42.93.245) (Quit: miketaylr)
  323. # 02[06:58] * Quits: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Ping timeout: 252 seconds)
  324. # 02[07:01] * Quits: Evanescence (~chris@122.237.29.189) (Quit: WeeChat 0.3.5)
  325. # 02[07:05] * Quits: taar779 (~taar779@d24-57-144-141.home.cgocable.net) (Ping timeout: 240 seconds)
  326. # 03[07:13] * Joins: HealingDruid (~MorningSt@c-65-34-227-32.hsd1.fl.comcast.net)
  327. # 03[07:14] * Joins: BigKing (~BigKing@p5DD69553.dip0.t-ipconnect.de)
  328. # 02[07:37] * Quits: buribu (~buribu@unaffiliated/buribu) (Quit: Fui embora)
  329. # 02[07:39] * Quits: phishbot (~runtalan@unaffiliated/phishbot) (Quit: Leaving...)
  330. # 02[07:42] * Quits: Bioxyde (~Adium@189.75.18.177) (Quit: Leaving.)
  331. # 03[07:43] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
  332. # 02[07:46] * Quits: amigojapan (~chatzilla@p9047-ipngnfx01souka.saitama.ocn.ne.jp) (Ping timeout: 258 seconds)
  333. # 02[07:48] * Quits: kadiks (~kadiks@APuteaux-652-1-127-98.w90-2.abo.wanadoo.fr) (Quit: Leaving)
  334. # 03[07:50] * cypha`` is now known as cypha
  335. # 02[07:50] * Quits: techrush (~techrush@adsl-75-4-18-152.dsl.irvnca.sbcglobal.net) (Ping timeout: 276 seconds)
  336. # 03[07:53] * Joins: techrush (~techrush@adsl-75-4-18-152.dsl.irvnca.sbcglobal.net)
  337. # 03[07:57] * Joins: phishbot (~runtalan@unaffiliated/phishbot)
  338. # 03[07:59] * Joins: gpsietzema (~gpsietzem@188.201.167.121)
  339. # [08:03] <niftylettuce> need moar coffeee?
  340. # 02[08:05] * Quits: tw2113 (~tw2113@fedora/tw2113) (Remote host closed the connection)
  341. # 03[08:07] * Joins: simplicity- (~simpli@unaffiliated/simplicity-)
  342. # 02[08:07] * Quits: simplicity- (~simpli@unaffiliated/simplicity-) (Client Quit)
  343. # 03[08:14] * Joins: NetRoY (~NetRoY@nat/yahoo/x-tlsqndgsmvcvlxkt)
  344. # 02[08:14] * Quits: techrush (~techrush@adsl-75-4-18-152.dsl.irvnca.sbcglobal.net) (Quit: Leaving)
  345. # 03[08:15] * Joins: Amis (~Amis@mail.paks.hu)
  346. # 02[08:15] * Quits: Amis (~Amis@mail.paks.hu) (Changing host)
  347. # 03[08:15] * Joins: Amis (~Amis@unaffiliated/amis)
  348. # 02[08:15] * Quits: smus (~smus@173-167-97-246-sfba.hfc.comcastbusiness.net) (Remote host closed the connection)
  349. # 03[08:18] * Joins: tw2113 (~tw2113@fedora/tw2113)
  350. # 03[08:23] * Joins: svenlito (~svnlto@78-86-0-182.zone2.bethere.co.uk)
  351. # 02[08:24] * Quits: moshee (~moshee@unaffiliated/moshee) (Ping timeout: 250 seconds)
  352. # 03[08:24] * Joins: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net)
  353. # 02[08:24] * Quits: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net) (Changing host)
  354. # 03[08:24] * Joins: moshee (~moshee@unaffiliated/moshee)
  355. # 03[08:25] * Joins: dguttman (~dguttman@adsl-75-51-71-133.dsl.lsan03.sbcglobal.net)
  356. # 02[08:25] * Quits: dguttman (~dguttman@adsl-75-51-71-133.dsl.lsan03.sbcglobal.net) (Client Quit)
  357. # 02[08:30] * Quits: phishbot (~runtalan@unaffiliated/phishbot) (Quit: Leaving...)
  358. # 02[08:30] * Quits: jair (~jair@173-15-38-121-Illinois.hfc.comcastbusiness.net) (Quit: leaving)
  359. # 03[08:33] * Joins: dguttman (~dguttman@adsl-75-51-71-133.dsl.lsan03.sbcglobal.net)
  360. # 03[08:34] * Joins: pradeebv (~pradeebv@nat/yahoo/x-exjkopzkhhjsedsg)
  361. # 03[08:36] * Joins: SaadIbrahim (~mslfreak@115.186.124.30)
  362. # 02[08:36] * Quits: SaadIbrahim (~mslfreak@115.186.124.30) (Changing host)
  363. # 03[08:36] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
  364. # 02[08:39] * Quits: dguttman (~dguttman@adsl-75-51-71-133.dsl.lsan03.sbcglobal.net) (Quit: dguttman)
  365. # 02[08:39] * Quits: pradeebv (~pradeebv@nat/yahoo/x-exjkopzkhhjsedsg) (Client Quit)
  366. # 03[08:49] * Joins: phrearch (~phrearch_@5ED42DE2.cm-7-5a.dynamic.ziggo.nl)
  367. # 02[08:49] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 258 seconds)
  368. # 03[08:50] * Joins: dguttman (~dguttman@adsl-75-51-71-133.dsl.lsan03.sbcglobal.net)
  369. # 02[08:50] * Quits: JoshManders (~josh@unaffiliated/killswitch) (Ping timeout: 263 seconds)
  370. # 03[08:51] * Joins: pradeebv (~pradeebv@nat/yahoo/x-rvotmmjnvrfmfqdo)
  371. # 02[08:51] * Quits: dguttman (~dguttman@adsl-75-51-71-133.dsl.lsan03.sbcglobal.net) (Client Quit)
  372. # 03[08:54] * Joins: benv (~benv@99-7-171-41.lightspeed.sntcca.sbcglobal.net)
  373. # 02[08:57] * Quits: svenlito (~svnlto@78-86-0-182.zone2.bethere.co.uk) (Quit: svenlito)
  374. # 03[09:01] * Joins: beevi7 (~manuel.bi@tim.7val.com)
  375. # 03[09:11] * Joins: skylamer` (cgskylamer@78.90.213.55)
  376. # 03[09:12] * Joins: gypsion (~gypsion@121.1.54.50)
  377. # 02[09:13] * Quits: digitalfiz (~digitalfi@unaffiliated/digitalfiz) (Quit: Textual IRC Client: http://www.textualapp.com/)
  378. # 03[09:16] * Joins: spliter (~spliter@77.88.72.162)
  379. # 02[09:16] * Quits: pradeebv (~pradeebv@nat/yahoo/x-rvotmmjnvrfmfqdo) (Quit: pradeebv)
  380. # 03[09:17] * Joins: manuchill (~mstalfoor@83.232.96.217)
  381. # 02[09:17] * Quits: charged_bolt (~andy@unaffiliated/dr0id) (Quit: Leaving.)
  382. # 02[09:18] * Quits: gypsion (~gypsion@121.1.54.50) (Quit: Quit)
  383. # 03[09:18] * Joins: prajwalit (~prajwalit@121.243.225.226)
  384. # 03[09:19] * Joins: gypsion (~gypsion@121.1.54.50)
  385. # 03[09:25] * Joins: NoNoNo (~Adium@2a00:1158:0:201:6dab:5d89:4909:fd42)
  386. # 02[09:29] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Quit: dgathright)
  387. # 03[09:32] * Joins: x29a (~x29a@g224216197.adsl.alicedsl.de)
  388. # 02[09:33] * Quits: x29a (~x29a@g224216197.adsl.alicedsl.de) (Changing host)
  389. # 03[09:33] * Joins: x29a (~x29a@unaffiliated/x29a)
  390. # 02[09:34] * Quits: spliter (~spliter@77.88.72.162) (Quit: spliter)
  391. # 03[09:37] * Joins: Pingtimeout (~Hautain@AOrleans-258-1-137-61.w90-21.abo.wanadoo.fr)
  392. # 03[09:38] * Joins: raphraph (~raph@LMontsouris-156-25-3-55.w80-14.abo.wanadoo.fr)
  393. # 02[09:40] * Quits: Hautain_ (~Hautain@AOrleans-258-1-11-201.w90-8.abo.wanadoo.fr) (Ping timeout: 255 seconds)
  394. # 03[09:41] * Joins: svenlito (~svnlto@188-223-81-77.dsl.cnl.uk.net)
  395. # 03[09:41] * Joins: henrikkok (~henrikkok@193.89.252.234)
  396. # 02[09:43] * Quits: saschagehlich (~saschageh@p5DD55BF4.dip.t-dialin.net) (Remote host closed the connection)
  397. # 03[09:47] * Joins: saschagehlich (~saschageh@p5DD55BF4.dip.t-dialin.net)
  398. # 02[09:48] * Quits: Pingtimeout (~Hautain@AOrleans-258-1-137-61.w90-21.abo.wanadoo.fr) (Quit: Leaving)
  399. # 03[09:48] * Joins: Hautain (~Hautain@AOrleans-258-1-137-61.w90-21.abo.wanadoo.fr)
  400. # 03[09:55] * Joins: dr0id (~andy@unaffiliated/dr0id)
  401. # 03[09:57] * dr0id is now known as charged_bolt
  402. # 03[09:57] * Joins: Standfest (~Standfest@balticom-242-234.balticom.lv)
  403. # 03[09:57] * Joins: huskyr (~huskyr@ip169-070.vpro.nl)
  404. # 03[09:59] * Joins: Evanescence (~chris@122.237.29.189)
  405. # 02[10:00] * Quits: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk) (Ping timeout: 252 seconds)
  406. # 02[10:01] * Quits: thatryan (~thatryan@c-24-4-109-126.hsd1.ca.comcast.net) (Quit: Leaving...)
  407. # 03[10:01] * Joins: Aamir (~aamirafri@87.85.238.98)
  408. # 02[10:03] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: Never look down on someone unless you're helping them up.)
  409. # 02[10:03] * Quits: Aamir (~aamirafri@87.85.238.98) (Read error: Connection reset by peer)
  410. # 03[10:04] * Joins: Aamir (~aamirafri@87.85.238.98)
  411. # 02[10:14] * Quits: beevi7 (~manuel.bi@tim.7val.com) (Ping timeout: 255 seconds)
  412. # 03[10:14] * Joins: spliter (~spliter@77.88.72.162)
  413. # 03[10:23] * Parts: HealingDruid (~MorningSt@c-65-34-227-32.hsd1.fl.comcast.net)
  414. # 03[10:23] * Joins: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk)
  415. # 03[10:29] * Joins: kyxzme (~kyxzme@2001:b00:4020:1::1d)
  416. # 02[10:30] * Quits: Standfest (~Standfest@balticom-242-234.balticom.lv) (Quit: ..)
  417. # 03[10:31] * Joins: tbassetto (~tbassetto@LRouen-151-71-49-64.w80-11.abo.wanadoo.fr)
  418. # 03[10:31] * Joins: jayflux (4d2c1802@gateway/web/freenode/ip.77.44.24.2)
  419. # 02[10:33] * Quits: jochen__ (~jochen@nat/google/x-psnjskqaxtetyiur) (Remote host closed the connection)
  420. # 03[10:33] * Joins: jochen__ (~jochen@nat/google/x-aqhfgvmfnvdifgst)
  421. # 03[10:35] * Joins: robhawkes (~robhawkes@188-220-16-96.dsl.cnl.uk.net)
  422. # 03[10:36] * Joins: chachan (~quassel@200.109.140.111)
  423. # 02[10:40] * Quits: svenlito (~svnlto@188-223-81-77.dsl.cnl.uk.net) (Read error: Connection reset by peer)
  424. # 02[10:44] * Quits: NetRoY (~NetRoY@nat/yahoo/x-tlsqndgsmvcvlxkt) (Quit: NetRoY)
  425. # 03[10:48] * Joins: SaadIbrahim (~mslfreak@203.81.214.195)
  426. # 02[10:48] * Quits: SaadIbrahim (~mslfreak@203.81.214.195) (Changing host)
  427. # 03[10:48] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
  428. # [10:51] <jayflux> paul_irish: is there a shortcut for the elements inspector on dev tools? the little magnifying glass
  429. # [10:53] <acies> right click element, inspect ?
  430. # 03[10:54] * Joins: Jackneill (~Jackneill@91.82.172.180.pool.invitel.hu)
  431. # 02[10:54] * Quits: Jackneill (~Jackneill@91.82.172.180.pool.invitel.hu) (Changing host)
  432. # 03[10:54] * Joins: Jackneill (~Jackneill@unaffiliated/jackneill)
  433. # 03[10:55] * Joins: RaceCondition (~erik@82.131.73.234.cable.starman.ee)
  434. # 02[10:55] * Quits: jacine (~jacine@drupal.org/user/88931/view) (Quit: buh bye :))
  435. # 03[11:00] * Joins: NetRoY (~NetRoY@nat/yahoo/x-qansthdxvedfutpw)
  436. # 02[11:01] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 250 seconds)
  437. # 02[11:02] * Quits: NetRoY (~NetRoY@nat/yahoo/x-qansthdxvedfutpw) (Client Quit)
  438. # 03[11:02] * Joins: NetRoY (~NetRoY@nat/yahoo/x-rmtksxzcexjhlmcy)
  439. # 02[11:04] * Quits: Hautain (~Hautain@AOrleans-258-1-137-61.w90-21.abo.wanadoo.fr) (Read error: Connection reset by peer)
  440. # 03[11:05] * Joins: Hautain (~Hautain@AOrleans-258-1-137-61.w90-21.abo.wanadoo.fr)
  441. # 03[11:08] * Joins: louisremi (~louisremi@mozilla-paris-253-98.cnt.nerim.net)
  442. # 03[11:08] * Joins: dpy (~Marcel@2001:1af8:fe9b:0:221:70ff:fea7:aa9d)
  443. # 03[11:08] * Joins: cocoadaemon (~cocoadaem@2a01:e35:8a99:e90:20d:93ff:fe3b:868c)
  444. # 02[11:10] * Quits: shipit (~shipit@204-15-2-155-static.ipnetworksinc.net) (Remote host closed the connection)
  445. # 02[11:21] * Quits: gavin_huang (~gravof@122.246.52.88) (Remote host closed the connection)
  446. # 03[11:27] * Joins: noob634 (~noob@77.75.99.82)
  447. # 03[11:27] * Joins: shipit (~shipit@c-67-180-23-104.hsd1.ca.comcast.net)
  448. # [11:27] <noob634> guys whenever i expand my left div my right div is not visible
  449. # [11:27] <noob634> can any one help me out
  450. # [11:27] <noob634> ?
  451. # [11:27] <noob634> http://jsfiddle.net/nJAfR/1/
  452. # [11:28] <charged_bolt> Welcome back noob634 (with a new nick this time)
  453. # [11:28] <charged_bolt> so you are noob in #jquery and cross posting your question here as noob634
  454. # [11:28] <charged_bolt> ?!?!??!?!?!?
  455. # [11:28] <noob634> not as 634
  456. # [11:29] <noob634> system gives you this by default
  457. # [11:29] <noob634> because ther's already a noob here
  458. # [11:29] <noob634> :D
  459. # 03[11:29] * Joins: Manuel`AC (~manuel@524A216B.cm-4-3a.dynamic.ziggo.nl)
  460. # 02[11:29] * Quits: Manuel`AC (~manuel@524A216B.cm-4-3a.dynamic.ziggo.nl) (Changing host)
  461. # 03[11:29] * Joins: Manuel`AC (~manuel@unaffiliated/acmanuel/x-6275086)
  462. # [11:29] <charged_bolt> Lul :D
  463. # [11:29] <charged_bolt> you are funny bro
  464. # [11:29] <charged_bolt> I don't hate funny people
  465. # [11:29] <charged_bolt> but do you know you can "/join #some_channel" ?
  466. # [11:29] <charged_bolt> and use the same nick
  467. # [11:29] <noob634> i am not gay to get things straight
  468. # [11:30] <noob634> so dont love me
  469. # [11:30] <noob634> :P
  470. # [11:30] <charged_bolt> and noob609 in #javascript
  471. # [11:30] <charged_bolt> Lul
  472. # [11:30] <noob634> anyways u any good with html
  473. # 03[11:30] * Parts: acies (acies@kono.ningendomo.me)
  474. # [11:30] <charged_bolt> I am good with everything, but gotta get back to work now
  475. # [11:30] <noob634> ohh comeon
  476. # [11:30] <noob634> dnt be a spoi sport
  477. # [11:31] <noob634> have a look atleast
  478. # [11:31] <charged_bolt> HOld
  479. # [11:31] <noob634> http://jsfiddle.net/nJAfR/1/
  480. # [11:31] <charged_bolt> your code is so messy
  481. # [11:32] <charged_bolt> its so messy, I can give you a hint
  482. # [11:32] <charged_bolt> your slider div needs to be positioned absolutely/fixed
  483. # [11:32] <noob634> y are u giving hints
  484. # [11:32] <noob634> this is not an exam
  485. # [11:32] <charged_bolt> Heh
  486. # [11:33] <charged_bolt> #freelance <-- hire me there
  487. # [11:34] <noob634> do u know ruby?
  488. # [11:34] <charged_bolt> yes
  489. # [11:34] <noob634> how much will you charge then i can hire you for this
  490. # [11:34] <noob634> i want back end from ruby
  491. # [11:34] <noob634> i have built rails applicaion
  492. # [11:34] <noob634> anywyas ur charges will be high
  493. # [11:34] <noob634> i an not afford
  494. # [11:35] <noob634> i dont think i can
  495. # [11:35] <charged_bolt> lets talk in #freelance where there are more people who might be up to work for you
  496. # [11:35] <noob634> i dont have time at the moment actually
  497. # [11:35] <noob634> i have to show this to someone
  498. # [11:35] <charged_bolt> you freelance ?
  499. # [11:35] <noob634> in an hour
  500. # [11:35] <noob634> yeah
  501. # [11:35] <noob634> odesk
  502. # [11:35] <noob634> :D
  503. # [11:35] <charged_bolt> Heh
  504. # [11:35] <charged_bolt> you don't go to schools ?!
  505. # [11:35] <charged_bolt> where are you located bro ?
  506. # [11:35] <noob634> india
  507. # [11:36] <noob634> i am registered in a school
  508. # [11:36] <noob634> thts enough i think
  509. # [11:36] <noob634> :D
  510. # [11:36] <charged_bolt> :P
  511. # [11:36] <charged_bolt> msg me
  512. # [11:36] <noob634> u in india as well?
  513. # 03[11:37] * Joins: andr3 (~andr3@bl14-164-246.dsl.telepac.pt)
  514. # [11:37] <charged_bolt> do you go to schools ?
  515. # [11:38] <charged_bolt> I want to know how do you freelance as well as go to schools ?
  516. # 02[11:38] * Quits: dpy (~Marcel@2001:1af8:fe9b:0:221:70ff:fea7:aa9d) (Read error: Connection reset by peer)
  517. # [11:38] <noob634> i dont
  518. # [11:38] <noob634> i am registered
  519. # [11:38] <noob634> i only give exams
  520. # [11:39] <noob634> heard of proxy?
  521. # 02[11:40] * Quits: patcito (~123@190.42.86.184) (Read error: Connection reset by peer)
  522. # [11:41] <charged_bolt> nope, what the hell is htat ?
  523. # 02[11:42] * Quits: andr3 (~andr3@bl14-164-246.dsl.telepac.pt) (Client Quit)
  524. # [11:42] <noob634> some one giving attendance for u = proxy
  525. # [11:43] <charged_bolt> noob634: check PM
  526. # 02[11:44] * Quits: saschagehlich (~saschageh@p5DD55BF4.dip.t-dialin.net) (Remote host closed the connection)
  527. # 03[11:48] * Parts: louisremi (~louisremi@mozilla-paris-253-98.cnt.nerim.net)
  528. # 03[11:48] * Joins: buribu (~buribu@201-27-163-139.dsl.telesp.net.br)
  529. # 02[11:48] * Quits: buribu (~buribu@201-27-163-139.dsl.telesp.net.br) (Changing host)
  530. # 03[11:48] * Joins: buribu (~buribu@unaffiliated/buribu)
  531. # 03[11:48] * Joins: buribux (~buribu@201-27-163-139.dsl.telesp.net.br)
  532. # 02[11:50] * Quits: buribux (~buribu@201-27-163-139.dsl.telesp.net.br) (Changing host)
  533. # 03[11:50] * Joins: buribux (~buribu@unaffiliated/buribux)
  534. # 02[11:50] * Quits: noob634 (~noob@77.75.99.82) (Ping timeout: 276 seconds)
  535. # 03[11:52] * Joins: NoNoNo1 (~Adium@buerogw01.ispgateway.de)
  536. # 02[11:55] * Quits: NoNoNo (~Adium@2a00:1158:0:201:6dab:5d89:4909:fd42) (Ping timeout: 255 seconds)
  537. # 03[11:57] * Joins: SaadIbrahim (~mslfreak@203.81.214.195)
  538. # 02[11:57] * Quits: SaadIbrahim (~mslfreak@203.81.214.195) (Changing host)
  539. # 03[11:57] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
  540. # 03[11:58] * Joins: andr3 (~andr3@bl14-164-246.dsl.telepac.pt)
  541. # 02[12:02] * Quits: andr3 (~andr3@bl14-164-246.dsl.telepac.pt) (Client Quit)
  542. # 03[12:08] * Joins: Ms2ger (~Ms2ger@91.181.57.248)
  543. # 03[12:27] * Joins: FireFly (~firefly@unaffiliated/firefly)
  544. # 02[12:29] * Quits: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk) (Remote host closed the connection)
  545. # 03[12:30] * Joins: derekjohnson (~derekmj74@host81-149-242-230.in-addr.btopenworld.com)
  546. # 03[12:36] * Joins: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk)
  547. # 02[12:36] * Quits: chachan (~quassel@200.109.140.111) (Remote host closed the connection)
  548. # 03[12:41] * Joins: anthracite (~user@brln-4dbc6db8.pool.mediaWays.net)
  549. # 03[12:42] * Joins: amigojapan (~none@pw126230107041.16.tss.panda-world.ne.jp)
  550. # [12:42] <amigojapan> There will be a new version of gamemaker that will generate html5 apps!!!
  551. # 02[12:42] * Quits: buribux (~buribu@unaffiliated/buribux) (Ping timeout: 264 seconds)
  552. # 02[12:42] * Quits: buribu (~buribu@unaffiliated/buribu) (Ping timeout: 264 seconds)
  553. # 02[12:43] * Quits: echoSMILE (~censured@unaffiliated/echosmile) (Ping timeout: 255 seconds)
  554. # 03[12:46] * Joins: buribu (~buribu@201-27-163-139.dsl.telesp.net.br)
  555. # 02[12:46] * Quits: buribu (~buribu@201-27-163-139.dsl.telesp.net.br) (Changing host)
  556. # 03[12:46] * Joins: buribu (~buribu@unaffiliated/buribu)
  557. # 03[12:46] * Joins: buribux (~buribu@201-27-163-139.dsl.telesp.net.br)
  558. # 02[12:46] * Quits: shipit (~shipit@c-67-180-23-104.hsd1.ca.comcast.net) (Remote host closed the connection)
  559. # 02[12:48] * Quits: buribux (~buribu@201-27-163-139.dsl.telesp.net.br) (Read error: Connection reset by peer)
  560. # [12:50] <amigojapan> Gamemaker Is great and now it will generate multyplatform apps
  561. # 03[12:52] * Joins: shipit (~shipit@c-67-180-23-104.hsd1.ca.comcast.net)
  562. # 03[12:54] * Joins: buribux (~buribu@201-43-98-117.dsl.telesp.net.br)
  563. # 02[12:57] * Quits: buribu (~buribu@unaffiliated/buribu) (Ping timeout: 264 seconds)
  564. # 02[13:00] * Quits: Evanescence (~chris@122.237.29.189) (Quit: WeeChat 0.3.5)
  565. # 02[13:02] * Quits: BigKing (~BigKing@p5DD69553.dip0.t-ipconnect.de) (Remote host closed the connection)
  566. # 03[13:03] * Joins: superos (~rune@158-37-86-21.hib.no)
  567. # [13:04] <superos> Is off line storage of video and audio files supported on mobile devices (iOS and Android)?
  568. # 02[13:11] * Quits: amigojapan (~none@pw126230107041.16.tss.panda-world.ne.jp) (Ping timeout: 260 seconds)
  569. # 03[13:13] * Joins: koggdal (~koggdal@user171.77-105-221.netatonce.net)
  570. # 02[13:16] * Quits: ChrisBuchholz (~cb@li189-30.members.linode.com) (Quit: leaving)
  571. # 03[13:16] * Joins: ChrisBuchholz (~cb@li189-30.members.linode.com)
  572. # 03[13:20] * Joins: amigojapan (~none@pw126228183113.24.tik.panda-world.ne.jp)
  573. # [13:21] <amigojapan> Gamemaker Is great and now it will generate multyplatform apps <====. On iPhone it is
  574. # [13:21] <amigojapan> Err
  575. # [13:21] <amigojapan> Superos. On iPhone it is
  576. # 03[13:22] * Parts: manuchill (~mstalfoor@83.232.96.217) ("Ex-Chat")
  577. # 03[13:23] * Joins: chipnt (~Chip@paris-18.progdev.fr)
  578. # 02[13:23] * Quits: charged_bolt (~andy@unaffiliated/dr0id) (Ping timeout: 276 seconds)
  579. # 02[13:26] * Quits: tbassetto (~tbassetto@LRouen-151-71-49-64.w80-11.abo.wanadoo.fr) (Ping timeout: 264 seconds)
  580. # [13:28] <superos> amigojapan: On SO there are a few threads saying it does not work.
  581. # [13:28] <superos> Might be that iOS upgrades support it.
  582. # 03[13:28] * Joins: tbassetto (~tbassetto@LRouen-151-71-49-64.w80-11.abo.wanadoo.fr)
  583. # 03[13:30] * Joins: dr0id (~andy@unaffiliated/dr0id)
  584. # 03[13:30] * dr0id is now known as charged_bolt
  585. # 02[13:31] * Quits: boaz (~boaz@li326-230.members.linode.com) (Excess Flood)
  586. # 03[13:32] * Joins: boaz (~boaz@li326-230.members.linode.com)
  587. # [13:33] <amigojapan> Superos. I saw a tutorial where they cashed an html5 app on the iPhone so you don't need to download it again
  588. # [13:34] <superos> amigojapan: Sorry, but maybe I did not specify enought. I know text, js and images can be stored off line, but I read a lot about audio and video not supported.
  589. # [13:34] <amigojapan> Oh. Then I don't know. Sorry
  590. # [13:36] <superos> no problem
  591. # [13:36] <superos> I am investigating this for a new project
  592. # [13:36] <superos> using html5 to make a tourist guide
  593. # 03[13:36] * Joins: saschagehlich (~saschageh@p5DD55BF4.dip.t-dialin.net)
  594. # 03[13:40] * Joins: beevi7 (~manuel.bi@tim.7val.com)
  595. # 02[13:44] * Quits: buribux (~buribu@201-43-98-117.dsl.telesp.net.br) (Read error: Connection reset by peer)
  596. # 02[13:46] * Quits: charged_bolt (~andy@unaffiliated/dr0id) (Ping timeout: 260 seconds)
  597. # 03[13:49] * Joins: mokush (~quassel@188.24.97.161)
  598. # 03[13:50] * Joins: dr0id (~andy@unaffiliated/dr0id)
  599. # [13:50] <mokush> does anybody know if the max-width mediaquery changes with orientation?
  600. # 03[13:51] * Joins: Evanescence (~chris@122.237.29.189)
  601. # 02[13:51] * Quits: temp01 (~temp01@unaffiliated/temp01) (Ping timeout: 276 seconds)
  602. # 02[13:52] * Quits: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t) (Ping timeout: 255 seconds)
  603. # 03[13:58] * dr0id is now known as charged_bolt
  604. # 02[14:03] * Quits: jayflux (4d2c1802@gateway/web/freenode/ip.77.44.24.2) (Quit: Page closed)
  605. # 03[14:03] * Joins: plh_ (~plh@30-5-77.wireless.csail.mit.edu)
  606. # 02[14:03] * Quits: charged_bolt (~andy@unaffiliated/dr0id) (Ping timeout: 260 seconds)
  607. # 02[14:04] * Quits: amigojapan (~none@pw126228183113.24.tik.panda-world.ne.jp) (Remote host closed the connection)
  608. # 03[14:10] * Joins: amigojapan (~chatzilla@p9047-ipngnfx01souka.saitama.ocn.ne.jp)
  609. # 03[14:13] * Joins: erichynds (~ehynds@venkman.brightcove.com)
  610. # 02[14:18] * Quits: mdale (~mdale@unaffiliated/mdale) (Quit: Leaving.)
  611. # [14:20] <mokush> any idea how to clip contents of a box with border-radius?
  612. # 03[14:23] * Joins: Jon47 (~jonz@pool-173-79-102-81.washdc.fios.verizon.net)
  613. # 03[14:24] * Joins: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
  614. # 03[14:25] * Joins: svenlito (~svnlto@188-223-81-77.dsl.cnl.uk.net)
  615. # 02[14:27] * Quits: shipit (~shipit@c-67-180-23-104.hsd1.ca.comcast.net) (Remote host closed the connection)
  616. # 03[14:28] * Parts: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
  617. # 03[14:30] * Joins: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t)
  618. # 02[14:30] * Quits: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t) (Excess Flood)
  619. # 03[14:31] * Joins: temp01 (~temp01@unaffiliated/temp01)
  620. # 03[14:34] * Joins: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t)
  621. # 03[14:35] * Joins: amigojapan_ (~chatzilla@p9047-ipngnfx01souka.saitama.ocn.ne.jp)
  622. # 02[14:37] * Quits: amigojapan (~chatzilla@p9047-ipngnfx01souka.saitama.ocn.ne.jp) (Ping timeout: 240 seconds)
  623. # 03[14:37] * amigojapan_ is now known as amigojapan
  624. # 03[14:40] * Joins: shawn_dones (~shawn@98.19.222.132)
  625. # 03[14:44] * Joins: JoshManders (~josh@unaffiliated/killswitch)
  626. # 02[14:46] * Quits: sleetx (ajyhsdfgwa@c-98-204-136-53.hsd1.va.comcast.net) (Read error: Operation timed out)
  627. # 03[14:47] * Joins: sleetx (ajyhsdfgwa@c-98-204-136-53.hsd1.va.comcast.net)
  628. # 03[14:48] * Joins: voxpelli (~anonymous@83.176.255.215)
  629. # 02[14:56] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Read error: Connection reset by peer)
  630. # 03[14:57] * Joins: SaadIbrahim (~mslfreak@203.81.214.195)
  631. # 02[14:57] * Quits: SaadIbrahim (~mslfreak@203.81.214.195) (Changing host)
  632. # 03[14:57] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
  633. # 02[15:01] * Quits: mokush (~quassel@188.24.97.161) (Read error: Connection reset by peer)
  634. # 02[15:01] * Quits: derekjohnson (~derekmj74@host81-149-242-230.in-addr.btopenworld.com) (Ping timeout: 276 seconds)
  635. # 03[15:03] * Joins: chachan (~quassel@186.94.30.174)
  636. # 02[15:06] * Quits: pingo__ (~anders@77.40.160.226) (Ping timeout: 252 seconds)
  637. # 03[15:11] * Joins: TechCel (blah@pool-173-68-149-113.nycmny.fios.verizon.net)
  638. # 03[15:12] * Joins: pingo__ (~anders@77.40.160.226)
  639. # 02[15:13] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 258 seconds)
  640. # 03[15:14] * Joins: miketaylr (~miketaylr@206.217.92.186)
  641. # 03[15:15] * Joins: timmywil (~timmywil@sec1.epb.net)
  642. # 03[15:15] * Joins: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
  643. # 03[15:17] * Joins: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com)
  644. # 02[15:18] * Quits: TechCel (blah@pool-173-68-149-113.nycmny.fios.verizon.net) (Ping timeout: 246 seconds)
  645. # 03[15:21] * Joins: DoubleA (~Adium@65.211.27.190)
  646. # 03[15:21] * Parts: DoubleA (~Adium@65.211.27.190)
  647. # 03[15:22] * Joins: Thasmo (~thasmo@d86-33-68-82.cust.tele2.at)
  648. # 02[15:24] * Quits: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
  649. # 03[15:24] * Joins: dr0id (~andy@unaffiliated/dr0id)
  650. # 03[15:24] * Joins: ericbarnes (~ericbarne@rrcs-98-101-76-163.midsouth.biz.rr.com)
  651. # 02[15:28] * Quits: cypha (~cypha@unaffiliated/cypha) (Ping timeout: 258 seconds)
  652. # 03[15:31] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
  653. # 02[15:33] * Quits: JoshManders (~josh@unaffiliated/killswitch) (Ping timeout: 264 seconds)
  654. # 03[15:37] * Joins: SoulRaven (SoulRaven@89.41.157.171)
  655. # 03[15:38] * Joins: danja (~danny@host223-241-static.12-87-b.business.telecomitalia.it)
  656. # 03[15:41] * Joins: jensimmons (~jensimmon@drupal.org/user/140882/view)
  657. # 02[15:42] * Quits: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk) (Ping timeout: 252 seconds)
  658. # 03[15:42] * Joins: louisremi (~louisremi@mozilla-paris-253-98.cnt.nerim.net)
  659. # 03[15:46] * Joins: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk)
  660. # 03[15:48] * Joins: CrashTest_ (~CrashTest@c-66-235-13-223.sea.wa.customer.broadstripe.net)
  661. # 03[15:48] * Joins: taar779 (~taar779@205.211.88.4)
  662. # 03[15:50] * Joins: svnlto_ (~svnlto@188-223-81-77.dsl.cnl.uk.net)
  663. # 02[15:51] * Quits: svenlito (~svnlto@188-223-81-77.dsl.cnl.uk.net) (Read error: No route to host)
  664. # 02[15:53] * Quits: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk) (Remote host closed the connection)
  665. # 03[15:54] * Joins: devongovett (~devongove@pppoe-68-142-54-171.gmavt.net)
  666. # 03[15:56] * Joins: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net)
  667. # 03[15:56] * nimbupani is now known as nimbu
  668. # 03[15:59] * Joins: Maaksaa (~Maaksaa@217.118.92.19)
  669. # 03[15:59] * Joins: kollapse (~kollaps@79.116.205.96)
  670. # 02[15:59] * Quits: kollapse (~kollaps@79.116.205.96) (Changing host)
  671. # 03[15:59] * Joins: kollapse (~kollaps@unaffiliated/kollapse)
  672. # 02[16:00] * Quits: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Ping timeout: 252 seconds)
  673. # 03[16:00] * Parts: Maaksaa (~Maaksaa@217.118.92.19)
  674. # [16:01] <kollapse> Hi. I have a little curiosity about how search engines index content. Basically the index bot accesses a page and filters out all URLs and then follows them. But what if I have a hidden link? Will it follow that as well or will it ignore it ? Such as "<a href='http://www.site.com' style='display: hidden;'></a>"
  675. # 03[16:02] * Joins: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk)
  676. # [16:03] <OzDave_mbp> google webmaster tools account and indexing your site to that webmaster tools has a lot of google secrets to what they collect, they collect a lot more then just the ahref links and build and populate word clouds etc, as well as focusing on the first set amount of words in the page etc
  677. # 02[16:03] * Quits: superos (~rune@158-37-86-21.hib.no) (Quit: Leaving.)
  678. # [16:03] <OzDave_mbp> https://www.google.com/webmasters/tools/home?hl=en
  679. # 02[16:04] * Quits: svnlto_ (~svnlto@188-223-81-77.dsl.cnl.uk.net) (Read error: Connection reset by peer)
  680. # 03[16:05] * Joins: svenlito (~svnlto@188-223-81-77.dsl.cnl.uk.net)
  681. # 02[16:05] * Quits: RaceCondition (~erik@82.131.73.234.cable.starman.ee) (Quit: RaceCondition)
  682. # [16:06] <OzDave_mbp> on the flipside you can use it for your site anway
  683. # [16:06] <OzDave_mbp> you can control indexing with meta tags like NOINDEX NOFOLLOW etc
  684. # 02[16:07] * Quits: erichynds (~ehynds@venkman.brightcove.com) (Ping timeout: 250 seconds)
  685. # [16:07] <OzDave_mbp> its all neatly bundled in that service for you
  686. # [16:07] <kollapse> Thanks for that OzDave_mbp !
  687. # [16:07] <OzDave_mbp> np m8
  688. # 03[16:10] * Joins: andrewjbaker (~ajb@host-78-149-107-233.as13285.net)
  689. # 02[16:12] * Quits: taar779 (~taar779@205.211.88.4) (Quit: Leaving)
  690. # [16:13] <andrewjbaker> Anymore HTML5 game devs on since I last came stalking?^^
  691. # 03[16:14] * Joins: DoubleA (~Adium@65.211.27.190)
  692. # 02[16:14] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 240 seconds)
  693. # 02[16:14] * Quits: Amis (~Amis@unaffiliated/amis) (Quit: *pop*)
  694. # 03[16:15] * Parts: DoubleA (~Adium@65.211.27.190)
  695. # [16:16] <dr0id> nope
  696. # [16:16] <andrewjbaker> :-(
  697. # [16:16] <andrewjbaker> Pants.
  698. # 02[16:17] * Quits: saschagehlich (~saschageh@p5DD55BF4.dip.t-dialin.net) (Remote host closed the connection)
  699. # [16:19] <andrewjbaker> They're an elusive bunch. :-p
  700. # [16:20] <dr0id> what happened exactly ?
  701. # 03[16:20] * Joins: Bioxyde (~Adium@187.55.192.62)
  702. # 03[16:21] * Joins: JoshManders (~josh@unaffiliated/killswitch)
  703. # 03[16:21] * Parts: plh_ (~plh@30-5-77.wireless.csail.mit.edu) ("no more cookies")
  704. # [16:21] <shawn_dones> Yes do tell.
  705. # [16:22] <shawn_dones> HTML5 game dev's sounds interesting
  706. # [16:22] <andrewjbaker> I'm just trying to connect w/ as many HTML5 game devs as I possibly can. There's not a huge community at the mo'. Mostly cos' it's quite a diverse demographic: Flash, PBBGs, mobile, social, console, etc.
  707. # 02[16:22] * Quits: Bioxyde (~Adium@187.55.192.62) (Client Quit)
  708. # [16:23] <dr0id> I am interested to make html5 games
  709. # [16:23] <OzDave_mbp> count me in
  710. # [16:24] <andrewjbaker> LOL, OzDave_mbp you're already counted in. ;-)
  711. # [16:24] <shawn_dones> currently studying creating iPhone apps using html/css/JS
  712. # [16:24] <OzDave_mbp> :)
  713. # [16:24] <andrewjbaker> There's a small community of persistent browser-based games and HTML5 games devs over on #bbg.
  714. # [16:24] <OzDave_mbp> I am addicted to playing this game called " pay the mortgage " its ok! but it gets boring in stages
  715. # [16:24] <shawn_dones> lol @OzDave_mbp
  716. # [16:25] <OzDave_mbp> =]
  717. # [16:25] <shawn_dones> OzDave_mbp: I feel your pain bro
  718. # [16:25] <OzDave_mbp> hehe you must of played it ;)
  719. # [16:25] <shawn_dones> OzDave_mbp: are you kidding? I'm a seasoned vet
  720. # [16:26] <shawn_dones> I went to Full Sail University
  721. # [16:26] <OzDave_mbp> bwhaha Ive been grinding for a few years,.
  722. # [16:26] <OzDave_mbp> still not up there yet
  723. # [16:26] <shawn_dones> borrowed every penny
  724. # [16:27] <OzDave_mbp> I also play this other game, a million meals with rice!
  725. # [16:27] <OzDave_mbp> chciken teriyaki is a good one!
  726. # [16:27] <shawn_dones> Kentucky Education Department Slogan "Education Pays" they forgot to include the last words "With Inerest"
  727. # 03[16:27] * Joins: Bioxyde (~Adium@187.5.178.233)
  728. # [16:27] <OzDave_mbp> so true
  729. # [16:28] <shawn_dones> I do appreciate my college years tho
  730. # [16:28] <OzDave_mbp> they call them hecks debts over here, people called them hex's
  731. # 06[16:28] * andrewjbaker is on a Skype call... not being ignorant for no reason. ;-)
  732. # [16:28] <OzDave_mbp> np
  733. # 02[16:28] * Quits: skylamer` (cgskylamer@78.90.213.55)
  734. # [16:29] <dr0id> funny people on ic
  735. # [16:29] <dr0id> irc
  736. # [16:29] <OzDave_mbp> study now bleed later
  737. # 02[16:29] * Quits: Aamir (~aamirafri@87.85.238.98) (Read error: Connection reset by peer)
  738. # 03[16:30] * Joins: Aamir (~aamirafri@87.85.238.98)
  739. # 02[16:38] * Quits: Evanescence (~chris@122.237.29.189) (Quit: WeeChat 0.3.5)
  740. # 02[16:40] * Quits: dr0id (~andy@unaffiliated/dr0id) (Quit: Leaving.)
  741. # 02[16:41] * Quits: henrikkok (~henrikkok@193.89.252.234) (Quit: Leaving.)
  742. # 02[16:55] * Quits: Bioxyde (~Adium@187.5.178.233) (Quit: Leaving.)
  743. # 03[16:57] * Joins: simplicity- (~simpli@unaffiliated/simplicity-)
  744. # 02[16:58] * Quits: ighisas (~ighisas@122x212x216x66.ap122.ftth.ucom.ne.jp) (Remote host closed the connection)
  745. # 02[16:58] * Quits: prajwalit (~prajwalit@121.243.225.226) (Quit: Ex-Chat)
  746. # 03[16:58] * Joins: mokush (~quassel@188.24.97.161)
  747. # [17:00] <mokush> any idea for a way around this? http://fransdejonge.com/test/2010/border-radius/
  748. # 03[17:03] * Joins: obert (~quassel@host131-21-dynamic.10-87-r.retail.telecomitalia.it)
  749. # 02[17:05] * Quits: nimbu (~Adium@c-24-18-47-160.hsd1.wa.comcast.net) (Quit: Leaving.)
  750. # 03[17:06] * Joins: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
  751. # 03[17:08] * Joins: snover (~Adium@unaffiliated/snover)
  752. # 03[17:09] * Parts: snover (~Adium@unaffiliated/snover)
  753. # 03[17:12] * Joins: erichynds (~ehynds@venkman.brightcove.com)
  754. # 02[17:13] * Quits: spliter (~spliter@77.88.72.162) (Quit: spliter)
  755. # 03[17:13] * Joins: ericduran (~ericduran@173-203-243-241.static.cloud-ips.com)
  756. # [17:18] <Jon47> mokush, it's not ideal but instead of having two elements (the subject and the body) within a container that has border radius, just stack the two elements on top of each other and put border top-left/right radius on the subject, and border bottom-left/right radius on the body
  757. # [17:19] <mokush> Jon47: problem is, I have a container with overflow: auto that needs border radius. and it needs to scroll content inside.
  758. # 02[17:20] * Quits: beevi7 (~manuel.bi@tim.7val.com) (Ping timeout: 252 seconds)
  759. # 03[17:20] * Joins: thatryan (~thatryan@adsl-76-254-18-203.dsl.pltn13.sbcglobal.net)
  760. # 03[17:22] * Joins: RaceCondition (~erik@gprs-inet-65-7.elisa.ee)
  761. # [17:22] <Jon47> you can figure somethin out, might not be ideal or as shallow a construction as you like, but anything is possible
  762. # 02[17:23] * Quits: NoNoNo1 (~Adium@buerogw01.ispgateway.de) (Quit: Leaving.)
  763. # 02[17:25] * Quits: gpsietzema (~gpsietzem@188.201.167.121) (Remote host closed the connection)
  764. # 03[17:28] * Joins: phishbot (~runtalan@unaffiliated/phishbot)
  765. # 02[17:28] * Quits: phishbot (~runtalan@unaffiliated/phishbot) (Excess Flood)
  766. # 03[17:28] * Joins: phishbot (~runtalan@unaffiliated/phishbot)
  767. # 03[17:32] * Joins: BadQuanta (~BadQuanta@pool-98-117-221-233.bltmmd.fios.verizon.net)
  768. # 03[17:33] * Joins: wookiehangover (~wookiehan@173-8-247-218-Colorado.hfc.comcastbusiness.net)
  769. # 03[17:34] * CrashTest_ is now known as CrashAFK
  770. # 02[17:34] * Quits: phishbot (~runtalan@unaffiliated/phishbot) (Remote host closed the connection)
  771. # 03[17:34] * Joins: SaadIbrahim (~mslfreak@203.81.214.96)
  772. # 02[17:34] * Quits: SaadIbrahim (~mslfreak@203.81.214.96) (Changing host)
  773. # 03[17:34] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
  774. # 03[17:34] * Joins: phishbot (~runtalan@unaffiliated/phishbot)
  775. # 02[17:34] * Quits: phishbot (~runtalan@unaffiliated/phishbot) (Excess Flood)
  776. # 03[17:35] * Joins: phishbot (~runtalan@unaffiliated/phishbot)
  777. # 03[17:37] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
  778. # 03[17:37] * Joins: Amis (~Amis@unaffiliated/amis)
  779. # 03[17:38] * Joins: gseguin (~anonymous@67.136.90.250)
  780. # 02[17:41] * Quits: SoulRaven (SoulRaven@89.41.157.171)
  781. # 03[17:41] * Joins: taar779 (~taar779@205.211.88.4)
  782. # 02[17:43] * Quits: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk) (Ping timeout: 260 seconds)
  783. # 03[17:46] * CrashAFK is now known as CrashTest_
  784. # 03[17:48] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
  785. # 02[17:50] * Quits: obert (~quassel@host131-21-dynamic.10-87-r.retail.telecomitalia.it) (Remote host closed the connection)
  786. # 03[17:51] * Joins: nimbupani (~Adium@72-254-63-50.client.stsn.net)
  787. # 03[17:51] * nimbupani is now known as nimbu
  788. # 02[17:55] * Quits: RaceCondition (~erik@gprs-inet-65-7.elisa.ee) (Quit: RaceCondition)
  789. # 03[17:55] * Joins: mascix (~mascix@83.66.110.192)
  790. # 02[17:55] * Quits: devongovett (~devongove@pppoe-68-142-54-171.gmavt.net) (Remote host closed the connection)
  791. # 02[17:57] * Quits: huskyr (~huskyr@ip169-070.vpro.nl) (Quit: huskyr)
  792. # 03[17:58] * Joins: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk)
  793. # 03[17:58] * Joins: David_Bradbury (~chatzilla@75-147-178-254-Washington.hfc.comcastbusiness.net)
  794. # 02[18:00] * Quits: amigojapan (~chatzilla@p9047-ipngnfx01souka.saitama.ocn.ne.jp) (Quit: ChatZilla 0.9.87 [Firefox 5.0/20110615151330])
  795. # [18:00] <shawn_dones> Does using nav make it ok to not use ul's in navigations?
  796. # [18:02] <andrewjbaker> Bk.
  797. # 03[18:02] * Joins: devongovett (~devongove@pppoe-68-142-54-171.gmavt.net)
  798. # 02[18:03] * Quits: phishbot (~runtalan@unaffiliated/phishbot) (Read error: Connection reset by peer)
  799. # 03[18:03] * Joins: phishbot (~runtalan@unaffiliated/phishbot)
  800. # 03[18:03] * Joins: tantek_ (~tantek@76.164.21.47)
  801. # 02[18:05] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Read error: Connection reset by peer)
  802. # 02[18:06] * Quits: tantek_ (~tantek@76.164.21.47) (Client Quit)
  803. # 03[18:07] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
  804. # 03[18:09] * Joins: spasquali (~spasquali@64.61.91.74)
  805. # 03[18:09] * Parts: spasquali (~spasquali@64.61.91.74)
  806. # 03[18:10] * Joins: necolas (~necolas@5e0425de.bb.sky.com)
  807. # 02[18:11] * Quits: devongovett (~devongove@pppoe-68-142-54-171.gmavt.net) (Quit: devongovett)
  808. # 02[18:13] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Remote host closed the connection)
  809. # 03[18:16] * Joins: dankest (~dankest@ip68-99-125-185.sd.sd.cox.net)
  810. # 03[18:17] * Joins: Saaaaad (~mslfreak@unaffiliated/saadibrahim)
  811. # 02[18:17] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Disconnected by services)
  812. # 03[18:17] * Saaaaad is now known as SaadIbrahim
  813. # 03[18:18] * Joins: RaceCondition (~erik@gprs-inet-65-15.elisa.ee)
  814. # 03[18:19] * Joins: luchenbill (~gnome@shellium/member/unfunf)
  815. # 02[18:23] * Quits: NetRoY (~NetRoY@nat/yahoo/x-rmtksxzcexjhlmcy) (Quit: NetRoY)
  816. # 03[18:25] * Joins: tantek_ (~tantek@72-254-91-192.client.stsn.net)
  817. # 02[18:28] * Quits: JoshManders (~josh@unaffiliated/killswitch) (Quit: ChatZilla 0.9.86.1-rdmsoft [XULRunner 1.9.2.18/20110615082315])
  818. # 02[18:30] * Quits: raphraph (~raph@LMontsouris-156-25-3-55.w80-14.abo.wanadoo.fr) (Quit: Ex-Chat)
  819. # 03[18:33] * Joins: ryanneufeld (~ryanneufe@S01060019e1edefc1.vc.shawcable.net)
  820. # 03[18:34] * Joins: JoshManders (~josh@unaffiliated/killswitch)
  821. # 03[18:39] * danbeam_ is now known as danbeam
  822. # 02[18:40] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Quit: Leaving.)
  823. # 02[18:41] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Quit: dgathright)
  824. # 03[18:41] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
  825. # 03[18:41] * Joins: dguttman (~dguttman@adsl-75-51-71-133.dsl.lsan03.sbcglobal.net)
  826. # 03[18:42] * tantek_ is now known as tantek
  827. # 02[18:42] * Quits: andrewjbaker (~ajb@host-78-149-107-233.as13285.net) (Quit: Leaving)
  828. # 02[18:43] * Quits: tbassetto (~tbassetto@LRouen-151-71-49-64.w80-11.abo.wanadoo.fr) (Quit: Linkinus - http://linkinus.com)
  829. # 02[18:44] * Quits: taar779 (~taar779@205.211.88.4) (Quit: Leaving)
  830. # 02[18:46] * Quits: JoshManders (~josh@unaffiliated/killswitch) (Quit: ChatZilla 0.9.86.1-rdmsoft [XULRunner 1.9.2.18/20110615082315])
  831. # 03[18:47] * Joins: shipit (~shipit@c-67-180-23-104.hsd1.ca.comcast.net)
  832. # 02[18:49] * Quits: OzDave_mbp (~OzDave_mb@27-33-43-79.static.tpgi.com.au) (Quit: OzDave_mbp)
  833. # 03[18:50] * Joins: JackLeo (~Domas@78-60-86-33.static.zebra.lt)
  834. # [18:50] <JackLeo> hey need some help with styling :/ i'm doing something wrong...
  835. # [18:50] <JackLeo> http://jsfiddle.net/a4mpr/2/
  836. # 03[18:52] * Parts: tantek (~tantek@72-254-91-192.client.stsn.net)
  837. # 02[18:52] * Quits: benv (~benv@99-7-171-41.lightspeed.sntcca.sbcglobal.net) (Quit: Leaving...)
  838. # 02[18:54] * Quits: RaceCondition (~erik@gprs-inet-65-15.elisa.ee) (Quit: RaceCondition)
  839. # 02[18:59] * Quits: sic1 (~ckihneman@wsip-68-224-173-84.sd.sd.cox.net) (Quit: Computer has gone to sleep)
  840. # 02[19:01] * Quits: dguttman (~dguttman@adsl-75-51-71-133.dsl.lsan03.sbcglobal.net) (Quit: dguttman)
  841. # 03[19:05] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
  842. # 03[19:05] * Joins: shepazu (~schepers@72-254-56-48.client.stsn.net)
  843. # 02[19:06] * Quits: kollapse (~kollaps@unaffiliated/kollapse) (Remote host closed the connection)
  844. # 03[19:13] * Joins: cypha (~cypha@unaffiliated/cypha)
  845. # 03[19:15] * Joins: JonathanNeal (~rztjonath@96.25.192.141)
  846. # 03[19:15] * Joins: nerdfiles (~Adium@ppp-70-248-186-81.dsl.hstntx.swbell.net)
  847. # 03[19:16] * Joins: JoshManders (~josh@unaffiliated/killswitch)
  848. # 02[19:20] * Quits: anthracite (~user@brln-4dbc6db8.pool.mediaWays.net) (Quit: ERC Version 5.3 (IRC client for Emacs))
  849. # 03[19:21] * Joins: benv (~benv@50-0-80-160.dsl.static.sonic.net)
  850. # 02[19:23] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Ping timeout: 260 seconds)
  851. # 03[19:25] * Joins: beeviz (~beevi2@ip-78-94-3-11.unitymediagroup.de)
  852. # 03[19:28] * Joins: dguttman (~dguttman@cpe-75-85-0-213.socal.res.rr.com)
  853. # 03[19:29] * CrashTest_ is now known as CrashAFK
  854. # 03[19:29] * Joins: dgathright (~dgathrigh@nat/yahoo/x-hvwaeqxfkzpgudun)
  855. # 02[19:30] * Quits: voxpelli (~anonymous@83.176.255.215) (Read error: Connection reset by peer)
  856. # 02[19:31] * Quits: svenlito (~svnlto@188-223-81-77.dsl.cnl.uk.net) (Quit: svenlito)
  857. # 03[19:32] * Joins: voxpelli (~anonymous@83.176.255.215)
  858. # 02[19:34] * Quits: dgathright (~dgathrigh@nat/yahoo/x-hvwaeqxfkzpgudun) (Client Quit)
  859. # 02[19:35] * Quits: voxpelli (~anonymous@83.176.255.215) (Client Quit)
  860. # 02[19:35] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Quit: Leaving.)
  861. # 03[19:36] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
  862. # 03[19:39] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
  863. # 02[19:45] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
  864. # 03[19:45] * Joins: tw2113 (~tw2113@fedora/tw2113)
  865. # 03[19:49] * Joins: Zeddy (~Zeddy@cable-prv-fe9cdc00-246.dhcp.inet.fi)
  866. # 03[19:52] * Joins: dgathright (~dgathrigh@nat/yahoo/x-psiyzxngnyxiuzas)
  867. # 03[19:53] * Joins: obert (~quassel@host131-21-dynamic.10-87-r.retail.telecomitalia.it)
  868. # 03[19:54] * Joins: jacine (~jacine@drupal.org/user/88931/view)
  869. # 02[19:54] * Quits: dgathright (~dgathrigh@nat/yahoo/x-psiyzxngnyxiuzas) (Client Quit)
  870. # [19:55] <Zeddy> http://jsbin.com/acopez/3 anyone care to tell me why the position is only updated once on my android? :\
  871. # 02[19:55] * Quits: phrearch (~phrearch_@5ED42DE2.cm-7-5a.dynamic.ziggo.nl) (Quit: Leaving)
  872. # 03[19:55] * Joins: dgathright (~dgathrigh@nat/yahoo/x-buaslnwsilpbpdko)
  873. # 03[19:59] * Joins: Pensador (~Pensador@78.29.132.70)
  874. # [20:00] <Pensador> good afternoon
  875. # 03[20:03] * Joins: prajwalit (~prajwalit@59.95.28.70)
  876. # 03[20:05] * Joins: oknoway (~oknoway@72.11.82.226)
  877. # [20:06] <Zeddy> CMON
  878. # [20:06] <Zeddy> http://jsbin.com/omuzeh/edit#preview
  879. # [20:07] <Zeddy> even using the example code my android only updates location once
  880. # [20:07] <Zeddy> buuuulshit
  881. # 02[20:07] * Quits: dgathright (~dgathrigh@nat/yahoo/x-buaslnwsilpbpdko) (Quit: dgathright)
  882. # 03[20:08] * Joins: phishy__ (~jeff@pat-1.broadinstitute.org)
  883. # 02[20:09] * Quits: Aamir (~aamirafri@87.85.238.98) (Quit: Away!)
  884. # 03[20:15] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
  885. # 03[20:17] * Joins: rwt (~rwt@unaffiliated/rwt)
  886. # 02[20:18] * Quits: mokush (~quassel@188.24.97.161) (Remote host closed the connection)
  887. # 03[20:18] * Joins: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
  888. # 03[20:23] * ericduran is now known as ericduran|food
  889. # 03[20:25] * jensimmons is now known as jensimmons|aftk
  890. # 03[20:26] * CrashAFK is now known as CrashDiet_
  891. # 03[20:26] * Joins: jahrome_ (~jahrome@p3E99148C.dip.t-dialin.net)
  892. # [20:31] <Zeddy> seriously html5
  893. # [20:31] <Zeddy> why does watchPosition work like getPosition ?
  894. # 02[20:35] * Quits: necolas (~necolas@5e0425de.bb.sky.com) (Remote host closed the connection)
  895. # 03[20:36] * Joins: devinrolsen (~chatzilla@206.72.104.162)
  896. # 02[20:36] * Quits: devinrolsen (~chatzilla@206.72.104.162) (Client Quit)
  897. # 02[20:41] * Quits: louisremi (~louisremi@mozilla-paris-253-98.cnt.nerim.net) (Ping timeout: 260 seconds)
  898. # 03[20:42] * Joins: jamund (~jamund@50-73-38-137-utah.hfc.comcastbusiness.net)
  899. # [20:44] <Zeddy> http://jsbin.com/axuteb
  900. # [20:44] <Zeddy> this doesn't even work
  901. # [20:44] <Zeddy> >_>
  902. # 03[20:45] * Joins: digitalfiz (~digitalfi@unaffiliated/digitalfiz)
  903. # 02[20:49] * Quits: nerdfiles (~Adium@ppp-70-248-186-81.dsl.hstntx.swbell.net) (Read error: Connection reset by peer)
  904. # 03[20:49] * Joins: nerdfiles1 (~Adium@ppp-70-248-186-81.dsl.hstntx.swbell.net)
  905. # 03[20:50] * Joins: svenlito (~svnlto@78-86-0-182.zone2.bethere.co.uk)
  906. # 02[20:50] * Quits: kyxzme (~kyxzme@2001:b00:4020:1::1d) (Quit: Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety.)
  907. # 03[20:51] * ericduran|food is now known as ericduran
  908. # 03[20:58] * Joins: RaceCondition (~erik@82.131.73.234.cable.starman.ee)
  909. # 02[20:59] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Quit: Leaving.)
  910. # 03[21:01] * Joins: necolas (~necolas@5e0425de.bb.sky.com)
  911. # 02[21:02] * Quits: rwt (~rwt@unaffiliated/rwt) (Read error: Connection reset by peer)
  912. # 03[21:03] * Joins: rwt (~rwt@adsl-76-240-205-15.dsl.ipltin.sbcglobal.net)
  913. # 02[21:03] * Quits: rwt (~rwt@adsl-76-240-205-15.dsl.ipltin.sbcglobal.net) (Changing host)
  914. # 03[21:03] * Joins: rwt (~rwt@unaffiliated/rwt)
  915. # 03[21:03] * Joins: Eightamrock (~eightamro@h-64-236-128-40.nat.aol.com)
  916. # 03[21:03] * Eightamrock is now known as Guest93867
  917. # 02[21:03] * Quits: rwt (~rwt@unaffiliated/rwt) (Read error: Connection reset by peer)
  918. # 03[21:04] * Joins: rwt (~rwt@adsl-76-240-205-15.dsl.ipltin.sbcglobal.net)
  919. # 02[21:04] * Quits: rwt (~rwt@adsl-76-240-205-15.dsl.ipltin.sbcglobal.net) (Changing host)
  920. # 03[21:04] * Joins: rwt (~rwt@unaffiliated/rwt)
  921. # 02[21:05] * Quits: rwt (~rwt@unaffiliated/rwt) (Read error: Connection reset by peer)
  922. # 03[21:06] * Joins: NetRoY (~NetRoY@122.172.192.2)
  923. # 03[21:06] * Joins: rwt (~rwt@unaffiliated/rwt)
  924. # 02[21:07] * Quits: NetRoY (~NetRoY@122.172.192.2) (Read error: Connection reset by peer)
  925. # 03[21:07] * Joins: NetRoY (~NetRoY@122.172.192.2)
  926. # 03[21:07] * ericduran is now known as ericduran|mtg
  927. # 02[21:09] * Quits: rwt (~rwt@unaffiliated/rwt) (Read error: Connection reset by peer)
  928. # 03[21:09] * Joins: rwt (~rwt@adsl-76-240-205-15.dsl.ipltin.sbcglobal.net)
  929. # 02[21:09] * Quits: rwt (~rwt@adsl-76-240-205-15.dsl.ipltin.sbcglobal.net) (Changing host)
  930. # 03[21:09] * Joins: rwt (~rwt@unaffiliated/rwt)
  931. # 02[21:09] * Quits: Guest93867 (~eightamro@h-64-236-128-40.nat.aol.com)
  932. # 03[21:09] * CrashDiet_ is now known as CrashTest_
  933. # 03[21:10] * Joins: gypsion_ (~gypsion@121.1.54.50)
  934. # 02[21:10] * Quits: NetRoY (~NetRoY@122.172.192.2) (Read error: Connection reset by peer)
  935. # 03[21:11] * Joins: NetRoY (~NetRoY@122.172.192.2)
  936. # 02[21:12] * Quits: gypsion_ (~gypsion@121.1.54.50) (Client Quit)
  937. # 03[21:12] * Joins: ^gypsion^ (~gypsion@121.1.54.50)
  938. # 02[21:12] * Quits: NetRoY (~NetRoY@122.172.192.2) (Read error: Connection reset by peer)
  939. # 03[21:13] * Joins: NetRoY (~NetRoY@122.172.192.2)
  940. # 02[21:14] * Quits: NetRoY (~NetRoY@122.172.192.2) (Read error: Connection reset by peer)
  941. # 03[21:14] * Joins: NetRoY (~NetRoY@122.172.192.2)
  942. # 02[21:16] * Quits: NetRoY (~NetRoY@122.172.192.2) (Read error: Connection reset by peer)
  943. # 03[21:16] * Joins: NetRoY (~NetRoY@122.172.192.2)
  944. # 02[21:17] * Quits: necolas (~necolas@5e0425de.bb.sky.com) (Remote host closed the connection)
  945. # 02[21:18] * Quits: NetRoY (~NetRoY@122.172.192.2) (Client Quit)
  946. # 03[21:19] * Joins: FylGood (~fylgood@pool-96-255-176-18.washdc.fios.verizon.net)
  947. # 02[21:25] * Quits: ^gypsion^ (~gypsion@121.1.54.50) (Quit: Quit)
  948. # 02[21:25] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Ping timeout: 250 seconds)
  949. # 03[21:25] * Joins: Eightamr0ck (~Eightamr0@h-64-236-128-40.nat.aol.com)
  950. # 02[21:27] * Quits: JackLeo (~Domas@78-60-86-33.static.zebra.lt) (Ping timeout: 260 seconds)
  951. # 02[21:30] * Quits: David_Bradbury (~chatzilla@75-147-178-254-Washington.hfc.comcastbusiness.net) (Ping timeout: 260 seconds)
  952. # 02[21:30] * Quits: phishy__ (~jeff@pat-1.broadinstitute.org) (Quit: phishy__)
  953. # 02[21:30] * Quits: Jackneill (~Jackneill@unaffiliated/jackneill) (Ping timeout: 255 seconds)
  954. # 03[21:32] * Joins: dgathright (~dgathrigh@nat/yahoo/x-tbtizozzwbzpatho)
  955. # 03[21:32] * Joins: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk)
  956. # 02[21:33] * Quits: shipit (~shipit@c-67-180-23-104.hsd1.ca.comcast.net) (Remote host closed the connection)
  957. # 02[21:38] * Quits: nimbu (~Adium@72-254-63-50.client.stsn.net) (Remote host closed the connection)
  958. # 03[21:46] * Joins: benv_ (~benv@50-0-80-160.dsl.static.sonic.net)
  959. # 02[21:46] * Quits: benv (~benv@50-0-80-160.dsl.static.sonic.net) (Read error: Connection reset by peer)
  960. # 03[21:52] * Parts: CrashTest_ (~CrashTest@c-66-235-13-223.sea.wa.customer.broadstripe.net)
  961. # 03[21:54] * Joins: Jayflux (~jay_knows@cpc1-dudl6-0-0-cust197.wolv.cable.virginmedia.com)
  962. # 03[22:00] * Joins: BigKing (~BigKing@p5DD69553.dip0.t-ipconnect.de)
  963. # 03[22:05] * Joins: Maaksaa (~Maaksaa@217.118.92.17)
  964. # 03[22:07] * Parts: Maaksaa (~Maaksaa@217.118.92.17)
  965. # 03[22:08] * Joins: nimbupani (~Adium@72-254-63-50.client.stsn.net)
  966. # 03[22:08] * nimbupani is now known as nimbu
  967. # 03[22:08] * Joins: jeffszusz (~jeffszusz@d24-57-194-149.home.cgocable.net)
  968. # 03[22:08] * Joins: grantg (~chatzilla@69.88.160.3)
  969. # 03[22:09] * Joins: irae_ (~iraebrasi@186.204.192.70)
  970. # 03[22:09] * Joins: David_Bradbury (~chatzilla@75-147-178-254-Washington.hfc.comcastbusiness.net)
  971. # [22:10] <grantg> found a site that uses js gbc - http://www.pwobrasil.com/
  972. # [22:10] <grantg> lolwhat
  973. # [22:11] <grantg> wat
  974. # 06[22:12] * grantg slowly backs away and pours gasoline all over.
  975. # [22:12] <grantg> xonecas: You might wanna stand back. :P
  976. # [22:13] <tw2113> ooh puddles!
  977. # [22:13] <tw2113> *jumps in them*
  978. # 03[22:14] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
  979. # [22:14] <tw2113> boo! they use all the worst games too
  980. # [22:14] <grantg> heh
  981. # [22:15] <grantg> I think I know where some of the traffic is coming from now. <_<
  982. # 03[22:15] * Joins: Daljo (~Daljo629@c-174-59-48-35.hsd1.pa.comcast.net)
  983. # 02[22:16] * Quits: benv_ (~benv@50-0-80-160.dsl.static.sonic.net) (Read error: Connection reset by peer)
  984. # 03[22:17] * Joins: benv (~benv@50-0-80-160.dsl.static.sonic.net)
  985. # 02[22:17] * Quits: Badababuba (~Badababub@nodester.com) (Remote host closed the connection)
  986. # 03[22:18] * Joins: Badababuba (~Badababub@nodester.com)
  987. # 02[22:18] * Quits: Pensador (~Pensador@78.29.132.70) (Quit: Saindo)
  988. # 02[22:18] * Quits: Badababuba (~Badababub@nodester.com) (Remote host closed the connection)
  989. # 03[22:19] * Joins: Badababuba (~Badababub@nodester.com)
  990. # 03[22:19] * Joins: Bioxyde (~Adium@187.4.244.116)
  991. # 03[22:20] * jensimmons|aftk is now known as jensimmons
  992. # 02[22:20] * Quits: Badababuba (~Badababub@nodester.com) (Remote host closed the connection)
  993. # 02[22:25] * Quits: obert (~quassel@host131-21-dynamic.10-87-r.retail.telecomitalia.it) (Remote host closed the connection)
  994. # 02[22:26] * Quits: Zeddy (~Zeddy@cable-prv-fe9cdc00-246.dhcp.inet.fi)
  995. # 02[22:27] * Quits: rwt (~rwt@unaffiliated/rwt) (Quit: Leaving)
  996. # 02[22:29] * Quits: Amis (~Amis@unaffiliated/amis) (Quit: *pop*)
  997. # 02[22:31] * Quits: Eightamr0ck (~Eightamr0@h-64-236-128-40.nat.aol.com) (Remote host closed the connection)
  998. # [22:32] <grantg> not enough overstretched JPEGs with visible artifacts... moar geocities w/ frontpage 2002 plz.
  999. # 02[22:33] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Read error: Connection reset by peer)
  1000. # 02[22:33] * Quits: jahrome_ (~jahrome@p3E99148C.dip.t-dialin.net) (Quit: ChatZilla 0.9.86.1 [SeaMonkey 2.0.14/20110725021547])
  1001. # 03[22:34] * ericduran|mtg is now known as ericduran
  1002. # 03[22:35] * Joins: patcito (~123@190.42.85.124)
  1003. # 03[22:35] * Joins: kadiks (~kadiks@APuteaux-652-1-127-98.w90-2.abo.wanadoo.fr)
  1004. # 02[22:37] * Quits: mascix (~mascix@83.66.110.192) (Quit: Leaving.)
  1005. # 02[22:40] * Quits: ChrisBuchholz (~cb@li189-30.members.linode.com) (Quit: leaving)
  1006. # 03[22:40] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
  1007. # 03[22:40] * Joins: ChrisBuchholz (~cb@li189-30.members.linode.com)
  1008. # 02[22:41] * Quits: Ms2ger (~Ms2ger@91.181.57.248) (Quit: nn)
  1009. # [22:44] <grantg> OMFG, every image is an image map... weee back to 1999
  1010. # [22:44] <grantg> and <marquee> is being used
  1011. # [22:47] <tw2113> i closed that tab down and still felt the need for a bleech bath
  1012. # [22:47] <tw2113> you've been poking at it for awhile
  1013. # [22:47] <grantg> heh
  1014. # [22:47] <grantg> tw2113: Don't look a the markup
  1015. # [22:47] <grantg> I'll make you raeg
  1016. # [22:47] <grantg> *It'll
  1017. # [22:48] <grantg> *at
  1018. # [22:48] <grantg> "welcome back to 1999"
  1019. # [22:48] <grantg> "but you must use Firefox 5 or Chrome"
  1020. # 02[22:52] * Quits: simplicity- (~simpli@unaffiliated/simplicity-) (Quit: simplicity-)
  1021. # 03[22:53] * Joins: simplicity- (~simpli@unaffiliated/simplicity-)
  1022. # 02[22:55] * Quits: socialhapy (~socialhap@46-38-167-162.static.cloud-ips.co.uk) (Remote host closed the connection)
  1023. # 03[22:55] * Joins: socialhapy (~socialhap@46-38-167-162.static.cloud-ips.co.uk)
  1024. # [22:59] <franksalim> html5.reddit.com passed 1000 subscribers
  1025. # [23:00] <irae_> grantg: this site shames my country. it's so bad that I cleared cache & cookies twice after closing the tab.
  1026. # [23:00] <grantg> heh
  1027. # 02[23:01] * Quits: socialhapy (~socialhap@46-38-167-162.static.cloud-ips.co.uk) (Remote host closed the connection)
  1028. # 03[23:01] * Joins: socialhapy (~socialhap@46-38-167-162.static.cloud-ips.co.uk)
  1029. # 02[23:01] * Quits: BigKing (~BigKing@p5DD69553.dip0.t-ipconnect.de) (Remote host closed the connection)
  1030. # 02[23:03] * Quits: oknoway (~oknoway@72.11.82.226) (Quit: oknoway)
  1031. # 02[23:06] * Quits: shawn_dones (~shawn@98.19.222.132) (Quit: shawn_dones)
  1032. # 02[23:07] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 246 seconds)
  1033. # 02[23:08] * Quits: miketaylr (~miketaylr@206.217.92.186) (Quit: miketaylr)
  1034. # 02[23:10] * Quits: dguttman (~dguttman@cpe-75-85-0-213.socal.res.rr.com) (Quit: ...)
  1035. # 03[23:11] * Joins: Cacheaway (~rich@pool-72-90-77-181.syrcny.fios.verizon.net)
  1036. # [23:11] <grantg> tw2113: and by "found this site" I mean http://pastebin.com/cM33yqN5
  1037. # [23:11] <grantg> yeah
  1038. # [23:12] <grantg> :|
  1039. # 03[23:14] * Joins: materialdesigner (~cah276@68-119-212-179.dhcp.hckr.nc.charter.com)
  1040. # 02[23:14] * Quits: gypsion (~gypsion@121.1.54.50) (Ping timeout: 240 seconds)
  1041. # 03[23:14] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
  1042. # 03[23:17] * Joins: BigKing (~BigKing@p5DD69553.dip0.t-ipconnect.de)
  1043. # 02[23:19] * Quits: prajwalit (~prajwalit@59.95.28.70) (Quit: Ex-Chat)
  1044. # [23:20] <grantg> irae_: You might need to flip some tables too bro - (╯°□°)╯︵ ┻━┻
  1045. # [23:22] <irae_> grantg: lol
  1046. # [23:23] <daleharvey> can anyone point me to where id lookups happen inside v8? :P
  1047. # [23:24] <grantg> good thing pwobrasil.com doesn't know about http://www.grantgalitz.org/get_the_hell_out/PokemonYellow/
  1048. # 02[23:26] * Quits: BigKing (~BigKing@p5DD69553.dip0.t-ipconnect.de) (Remote host closed the connection)
  1049. # [23:26] <irae_> grantg: the idea to have the cable link working over the internet could be a great challenge.
  1050. # [23:26] <grantg> already tried an experimental system
  1051. # [23:26] <grantg> too much lag
  1052. # [23:27] <grantg> would cause the sync. locks between emulators to slow them down to a crawl
  1053. # 02[23:27] * Quits: gseguin (~anonymous@67.136.90.250) (Quit: gseguin)
  1054. # [23:28] <grantg> for one thing, there's comm proxying with the server, since you won't be able to directly connect to the other computer
  1055. # [23:28] <grantg> then there's the mysql server lag
  1056. # [23:28] <grantg> and the routine polling interval timing
  1057. # [23:28] <grantg> yeah
  1058. # [23:29] <franksalim> grantg: why mysql?
  1059. # [23:29] <franksalim> and why polling? use a websocket
  1060. # [23:29] <grantg> websockets don't work for many people
  1061. # [23:29] <grantg> I have to proxy the connection through the server
  1062. # [23:29] <franksalim> use a websocket polyfill
  1063. # [23:30] <irae_> but not many people would want to use cablelink either
  1064. # [23:30] <grantg> mysql is just used to temporarily organize the waitlisted requests
  1065. # [23:30] <grantg> for the target connection to pick up
  1066. # [23:31] <franksalim> you do have to proxy, at least until you can use the p2p stuff
  1067. # [23:31] <irae_> It's not the first project that I've seen that would benefit from browser p2p. is there any draft or spec for that?
  1068. # 02[23:31] * Quits: zatan (~zatan@5ad28990.bb.sky.com) (Ping timeout: 252 seconds)
  1069. # [23:31] <franksalim> but i think mysql is inappropriate to model a cable
  1070. # [23:31] <grantg> franksalim: many people have problems with websockets still
  1071. # 03[23:31] * Joins: slifty (~slifty@18.111.44.132)
  1072. # [23:31] <franksalim> irae_, http://tools.ietf.org/wg/rtcweb/
  1073. # [23:31] <grantg> inbound data is blocked at the router for many people
  1074. # [23:32] <franksalim> grantg, not over ssl. that works 95% of the time or more
  1075. # [23:32] <grantg> not for the people I've seen try to use websocket chat stuff
  1076. # [23:32] <tw2113> thatryan ping
  1077. # [23:32] <franksalim> grantg, where they using ssl?
  1078. # [23:32] <grantg> normal http connections are getting filtered
  1079. # [23:32] <grantg> for inbound crap in long living connections
  1080. # [23:33] <grantg> once you disconnect, the router blocks further inbound
  1081. # [23:33] <franksalim> but were they using a secure connection?
  1082. # [23:33] <franksalim> what do you mean by disconnect
  1083. # [23:33] <grantg> and many routers limit the initial inbound initiated by the first outgoing
  1084. # [23:33] <franksalim> and what do you mean by inbound
  1085. # [23:33] <franksalim> there are no inbound TCP connections with WebSocket
  1086. # [23:34] <grantg> franksalim: routers filter random inbound packets in many cases
  1087. # [23:34] <grantg> not everyone is on a UPnP
  1088. # [23:34] <franksalim> grantg, if they did that, they wouldn't work as routers
  1089. # [23:34] <grantg> see linksys being a bitch
  1090. # 02[23:34] * Quits: ericbarnes (~ericbarne@rrcs-98-101-76-163.midsouth.biz.rr.com) (Remote host closed the connection)
  1091. # [23:35] <grantg> franksalim: many routers with the default firewall set will not allow random inbound
  1092. # [23:35] <irae_> franksalim: thanks for the link! I was under the impression that rtc was for audio/video communication only, not browser p2p
  1093. # [23:35] <grantg> for home-user router
  1094. # [23:36] <franksalim> irae_, there has also been (less) discussion about data. i don't know if that will actually appear in the first round protocol and api
  1095. # [23:36] <franksalim> grantg, there are no inbound TCP connections with websocket
  1096. # [23:36] <franksalim> there are IP packets from the server
  1097. # [23:36] <franksalim> as there are in https
  1098. # [23:37] <franksalim> grantg: do you have any links about this type of failure
  1099. # 02[23:37] * Quits: timmywil (~timmywil@sec1.epb.net) (Ping timeout: 240 seconds)
  1100. # 02[23:38] * Quits: Manuel`AC (~manuel@unaffiliated/acmanuel/x-6275086) (Ping timeout: 240 seconds)
  1101. # 02[23:38] * Quits: boaz (~boaz@li326-230.members.linode.com) (Excess Flood)
  1102. # [23:38] <grantg> franksalim: It's a long lived tcp connection on port 80, no?
  1103. # [23:39] <grantg> I've been on computers where this kind of long lived connection gets cut strangely by the router
  1104. # [23:39] <franksalim> grantg: or 443 (or any other port)
  1105. # [23:39] <franksalim> some NAT boxes close idle connections
  1106. # 03[23:39] * Joins: boaz (~boaz@li326-230.members.linode.com)
  1107. # [23:39] <grantg> the problem is that firewalls at the routers are still meh
  1108. # [23:39] <franksalim> after a period of time in the minutes
  1109. # [23:40] <franksalim> many application protocols have a ping/pong to keep those connections open
  1110. # [23:40] <franksalim> websocket-10 does
  1111. # [23:40] <franksalim> for instance
  1112. # [23:40] <franksalim> IRC does
  1113. # [23:40] <grantg> true
  1114. # [23:40] <franksalim> which is why your connection to freenode is not dropping
  1115. # 02[23:40] * Quits: chipnt (~Chip@paris-18.progdev.fr)
  1116. # [23:40] <franksalim> and your link cable protocol should, too :)
  1117. # [23:40] <grantg> though I'm wondering why websocket connections for chat broke on some instances
  1118. # [23:41] <grantg> franksalim: I also know how to port forward. :)
  1119. # 03[23:41] * Joins: chipnt (~ciprian@paris-18.progdev.fr)
  1120. # 03[23:41] * Joins: HealingDruid (~MorningSt@c-65-34-227-32.hsd1.fl.comcast.net)
  1121. # [23:41] <franksalim> if it was port 80, unencrypted, there are more http proxies that will break connections
  1122. # [23:41] <franksalim> wss on port 443 should work almost all of the time
  1123. # [23:41] <grantg> if you say so
  1124. # [23:41] <grantg> I've seen otherwise
  1125. # [23:42] <franksalim> please let me know if you see it again
  1126. # [23:42] <grantg> older linksys boxes, always a pain
  1127. # [23:43] <irae_> I've not developed anything with websockets yet, but it's sad to see that a new protocol would suffer so much with lame hardware
  1128. # 03[23:43] * Joins: oknoway (~oknoway@c-76-27-233-137.hsd1.or.comcast.net)
  1129. # 02[23:43] * Quits: oknoway (~oknoway@c-76-27-233-137.hsd1.or.comcast.net) (Client Quit)
  1130. # 02[23:44] * Quits: koggdal (~koggdal@user171.77-105-221.netatonce.net) (Quit: koggdal)
  1131. # [23:44] <franksalim> irae_: very true. other protocols with long lived connections manage to work around it, though. xmpp and irc do.
  1132. # [23:44] <irae_> we already have problems enough with XHR long poling, if moving to websockets will require special care, why trouble?
  1133. # 03[23:44] * Joins: shipit (~shipit@204-15-2-155-static.ipnetworksinc.net)
  1134. # [23:44] <grantg> "did you try unplugging it and plugging it back in" is still said today.
  1135. # [23:44] <grantg> with linksys routers
  1136. # 03[23:44] * Joins: tantek (~tantek@72-254-90-199.client.stsn.net)
  1137. # [23:45] <grantg> franksalim: What if it's the firewall in the router realizing it's no longer HTTP after the upgrade message?
  1138. # [23:45] <irae_> franksalim: the protocol itself should provide some kind of workaround internally, so we can develop on top of it without worrying about keep alive and stuff
  1139. # [23:45] <franksalim> irae_: xhr long polling requires a lot of special care, too. you hit invisible limits with http implementations, as well
  1140. # [23:46] <franksalim> grantg: the firewall and router (99% of the time) can't inspect encrypted traffic. that's why i recommended wss
  1141. # [23:46] <franksalim> irae_: that's why the ping/pong frames were added to the websocket protocol spec
  1142. # [23:46] <irae_> franksalim: i know... what I meant was: if I already have trouble with long-poling, why care to change to a new technology that also have the same kind of trouble and less browser support?
  1143. # [23:46] <grantg> franksalim: Also I can't do client to client directly in many cases with the port blocked
  1144. # [23:46] <grantg> server still needed
  1145. # [23:47] <franksalim> grantg: you'll always need a server without p2p
  1146. # [23:47] <grantg> which is why I'm not gonna use websockets
  1147. # [23:47] <grantg> plus shitty websocket support on the server
  1148. # 03[23:47] * Parts: HealingDruid (~MorningSt@c-65-34-227-32.hsd1.fl.comcast.net)
  1149. # [23:47] <franksalim> irae_: if it ain't broke don't fix it. long-polling is really broken for some use cases
  1150. # [23:48] <franksalim> grantg: you need server for http polling, too
  1151. # [23:48] <grantg> I know, but I'd rather do http-polling if I'm stuck with the server as a middleman
  1152. # [23:50] <franksalim> grantg: i won't twist your arm
  1153. # [23:50] <grantg> :P
  1154. # 02[23:51] * Quits: Daljo (~Daljo629@c-174-59-48-35.hsd1.pa.comcast.net) (Remote host closed the connection)
  1155. # 02[23:55] * Quits: luchenbill (~gnome@shellium/member/unfunf) (Ping timeout: 258 seconds)
  1156. # Session Close: Wed Jul 27 00:00:00 2011

The end :)