/irc-logs / freenode / #html5 / 2011-03-06 / end

Options:

  1. # Session Start: Sun Mar 06 00:00:00 2011
  2. # Session Ident: #html5
  3. # [00:00] * Quits: techrush (~techrush@adsl-75-4-199-129.dsl.irvnca.sbcglobal.net) (Quit: Leaving)
  4. # [00:00] * Evet_ is now known as Evet
  5. # [00:01] * Quits: Evet (~Evet@78.191.38.139) (Changing host)
  6. # [00:01] * Joins: Evet (~Evet@pdpc/supporter/active/evet)
  7. # [00:03] * Quits: LynnWallenstein (~Lynn@pool-74-107-70-172.bltmmd.fios.verizon.net) (Ping timeout: 276 seconds)
  8. # [00:07] * Joins: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net)
  9. # [00:08] * Quits: wizL (~wizl@ahrinia.net) (Ping timeout: 252 seconds)
  10. # [00:12] * Quits: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net) (Client Quit)
  11. # [00:18] <uf0> paul_rish: well whenever you get back i'm wondering why in your template
  12. # [00:18] <uf0> for media queries you don't use the 'only' keyword
  13. # [00:18] <uf0> and is there a reason you left it out
  14. # [00:18] <paul_irish> well
  15. # [00:18] <uf0> you use @media screen and (foo)
  16. # [00:18] <obert-> bar
  17. # [00:18] <uf0> and i see a bunch of @media only screen and (foo)
  18. # [00:19] <uf0> on other mobile recommendations
  19. # [00:19] <paul_irish> so that means the MQ wouldnt match in other media types.. like print/projection/tv
  20. # [00:19] <paul_irish> this all gets a little fuzzy because most UAs kinda break spec in relation to their media type
  21. # [00:19] <paul_irish> google tv for example will match TV but also match Screen
  22. # [00:20] <paul_irish> so hypothetically.. if you.. were using a printer or something and the size of the viewport was small enough for that MQ to kick in
  23. # [00:20] <paul_irish> would you want those styles to apply in print view?
  24. # [00:20] <uf0> but i'm specifically talking about 'only' keyword
  25. # [00:20] <paul_irish> i know man
  26. # [00:21] <paul_irish> only means ONLY SCREEN
  27. # [00:21] <uf0> oh ok
  28. # [00:21] <uf0> ahh alright
  29. # [00:21] <paul_irish> i can't think of a realistic application where `only` matters
  30. # [00:21] <paul_irish> tbh
  31. # [00:21] <paul_irish> i think its fine both ways
  32. # [00:21] <uf0> gotcha
  33. # [00:21] <paul_irish> ?g media queries spec
  34. # [00:21] <bot-t> paul_irish, Media Queries - http://www.w3.org/TR/css3-mediaqueries/
  35. # [00:22] <paul_irish> "User agents must process media queries starting with ‘only’ as if the ‘only’ keyword was not present."
  36. # [00:22] <paul_irish> heh
  37. # [00:22] <uf0> yea I read that but was confused
  38. # [00:22] <uf0> lol
  39. # [00:22] <paul_irish> ah i got it.
  40. # [00:22] <paul_irish> it matters when you're in a link tag
  41. # [00:22] <uf0> usually specs just confuse me more than just your basical explanation
  42. # [00:22] <uf0> which i get now
  43. # [00:23] <paul_irish> because old UAs will be like <link rel=stylesheet media="screen and ( ....
  44. # [00:23] <paul_irish> but only see media="screen" ..
  45. # [00:23] <paul_irish> and just apply it without evaluating the MQ
  46. # [00:23] <paul_irish> the 'only' throws them a curve ball
  47. # [00:24] <paul_irish> so they dont download that stylesheet
  48. # [00:24] <uf0> ummm.. so I imagine it's safer bet to use then to leave out, no?
  49. # [00:24] <paul_irish> it makes sense to use it in the link tag
  50. # [00:24] <paul_irish> but if its an inlined MQ in an existing stylesheet.. it doesnt matter.
  51. # [00:24] * Quits: gasbakid (~gasbakid@41.96.99.182) (Remote host closed the connection)
  52. # [00:24] <uf0> :) makes complete sense now
  53. # [00:24] <uf0> thanks
  54. # [00:25] <paul_irish> no prob. thanks for asking
  55. # [00:25] <paul_irish> hey wanna do me a favor
  56. # [00:25] <uf0> sure
  57. # [00:25] <paul_irish> uf0: edit this page https://github.com/paulirish/html5-boilerplate/wiki/The-style and summarize that ^ so other people learn why :)
  58. # [00:26] <uf0> ok will do... I got one more for you
  59. # [00:26] <paul_irish> k
  60. # [00:27] <uf0> in your template you also use <header> <footer>
  61. # [00:27] <paul_irish> why not article?
  62. # [00:27] <uf0> but for the main content you use a <div id="main">
  63. # [00:27] <uf0> why not <section> ?
  64. # [00:27] <uf0> not article
  65. # [00:28] <paul_irish> can you make a compelling case that section is a more semantically appropriate element for all the uses that people will have from the h5bp?
  66. # [00:28] <paul_irish> i couldn't.
  67. # [00:28] <uf0> I have no idea
  68. # [00:28] * Quits: Thasmo (~thasmo@d86-32-70-59.cust.tele2.at)
  69. # [00:29] <uf0> I was just wondering why not if anything
  70. # [00:29] <uf0> i'm cool with div
  71. # [00:29] <paul_irish> me too.
  72. # [00:29] <paul_irish> i also try to avoid semantic debates
  73. # [00:29] <paul_irish> which this would cause :)
  74. # [00:30] <uf0> I'm confident in using header,footer,hgroup,article today
  75. # [00:31] <uf0> but all the other new ones I still scratch my head
  76. # [00:31] <uf0> like <section> <aside> <figcaption> etc..
  77. # [00:31] <uf0> but anyway that's all question i got for now
  78. # [00:33] <obert-> section is interesting perhaps
  79. # [00:36] <obert-> The section element represents a generic section of a document or application. A section, in this context, is a thematic grouping of content, -> if i got it,for example, i would to do something like <section><label></label><input></section>
  80. # [00:37] <uf0> i see
  81. # [00:37] <paul_irish> figure and figcaption are really nice
  82. # [00:37] <paul_irish> i use em for pictures with captions a lot
  83. # [00:37] <paul_irish> s'about it, really
  84. # [00:38] <obert-> mine is just a thought i would to know opinions,indeed
  85. # [00:38] <uf0> so instead of em you would use figcaption I assume
  86. # [00:43] * Quits: bartek (~bartek@69-196-155-220.dsl.teksavvy.com) (Quit: Computer has gone to sleep)
  87. # [00:43] <obert-> no opinions?:P
  88. # [00:43] <tbranyen> uhhhh so html5 video doesn't have udp streaming capabilities... :(
  89. # [00:43] <paul_irish> :(
  90. # [00:49] * Quits: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com) (Quit: dgathright)
  91. # [00:56] * Quits: dpy (~Marcel@d66172.upc-d.chello.nl) (Ping timeout: 255 seconds)
  92. # [00:59] * Joins: Evet_ (~Evet@95.13.33.199)
  93. # [01:00] * Quits: Evet (~Evet@pdpc/supporter/active/evet) (Ping timeout: 240 seconds)
  94. # [01:05] * Joins: jochen___ (~jochen@nat/google/x-nwcietdtgqdhaxag)
  95. # [01:06] * Quits: benschwarz (~benschwar@59.167.185.148) (Quit: Linkinus - http://linkinus.com)
  96. # [01:09] * Quits: jochen__ (~jochen@nat/google/x-kzssvzvnrooxnejh) (Ping timeout: 255 seconds)
  97. # [01:10] * Joins: jochen__ (~jochen@nat/google/x-rrxpqxapxxetgfdm)
  98. # [01:11] * Quits: jochen___ (~jochen@nat/google/x-nwcietdtgqdhaxag) (Ping timeout: 240 seconds)
  99. # [01:19] <uf0> paul_irish: Done. https://github.com/paulirish/html5-boilerplate/wiki/The-style
  100. # [01:19] <uf0> feel free to change anything I missed
  101. # [01:20] <paul_irish> thanks!
  102. # [01:20] <paul_irish> lookin charp
  103. # [01:21] <uf0> np
  104. # [01:23] * Quits: Quilck (~Quilck@90.183.82.215) (Ping timeout: 255 seconds)
  105. # [01:24] * Quits: Ramosa (Ramosa@unaffiliated/harald/x-000000001)
  106. # [01:26] * Joins: hij1nx (~hij1nx@cpe-66-65-124-111.nyc.res.rr.com)
  107. # [01:27] * Joins: tw2113 (~tw2113@fedora/tw2113)
  108. # [01:28] * Joins: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com)
  109. # [01:30] * Quits: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com) (Read error: Connection reset by peer)
  110. # [01:31] * Joins: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com)
  111. # [01:32] * Quits: KDN (~KDN@202.171.164.210) (Quit: KDN)
  112. # [01:35] * Quits: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com) (Read error: No route to host)
  113. # [01:35] * Joins: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com)
  114. # [01:36] * Joins: wizL (~wizl@ahrinia.net)
  115. # [01:36] * Joins: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net)
  116. # [01:36] * Quits: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com) (Read error: No route to host)
  117. # [01:37] * Quits: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net) (Client Quit)
  118. # [01:38] * Joins: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net)
  119. # [01:40] * Joins: daveluke (~davidluke@cpe-72-225-200-96.nyc.res.rr.com)
  120. # [01:43] * Joins: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com)
  121. # [01:47] * Quits: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com) (Client Quit)
  122. # [01:52] * Joins: ben_h (~ben@CPE-58-161-40-52.czqd1.win.bigpond.net.au)
  123. # [01:53] * Joins: davatron5000 (~davatron5@cpe-66-25-167-215.austin.res.rr.com)
  124. # [02:12] * Quits: Greko (~Greko@85.26.155.51) (Ping timeout: 250 seconds)
  125. # [02:13] * Joins: bartek (~bartek@69-196-155-220.dsl.teksavvy.com)
  126. # [02:14] <daleharvey> so anyone that does sammy type stuff, what would you think about something like http://pastebin.me/d66a6d92426552f737a8d2d2b40f78a3
  127. # [02:14] * Quits: bartek (~bartek@69-196-155-220.dsl.teksavvy.com) (Client Quit)
  128. # [02:18] * Joins: bartek (~bartek@69-196-155-220.dsl.teksavvy.com)
  129. # [02:18] * Quits: bartek (~bartek@69-196-155-220.dsl.teksavvy.com) (Client Quit)
  130. # [02:20] * Quits: antonkovalyov (~antonkova@adsl-75-18-218-201.dsl.pltn13.sbcglobal.net) (Quit: Leaving...)
  131. # [02:23] * Quits: toinso (~toinso@unaffiliated/toinso) (Quit: Leaving)
  132. # [02:31] * Joins: Quilck (~Quilck@90.183.82.215)
  133. # [02:36] <niftylettuce> paul_irish: i got the team assembled, woot
  134. # [02:36] * Quits: FireFly (~firefly@unaffiliated/firefly) (Quit: swatted to death)
  135. # [02:37] * Quits: Quilck (~Quilck@90.183.82.215)
  136. # [02:43] * Quits: Guest95104 (tristan@eliteof.lastlegend.org) (Remote host closed the connection)
  137. # [02:46] * Quits: wizL (~wizl@ahrinia.net) (Read error: Connection reset by peer)
  138. # [02:49] * Quits: boaz (~boaz@75-150-66-254-NewEngland.hfc.comcastbusiness.net) (Quit: boaz)
  139. # [02:50] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
  140. # [02:50] * Quits: _Tristan_ (tristan@eliteof.lastlegend.org) (Excess Flood)
  141. # [02:51] * Quits: obert- (~obert@host13-43-dynamic.60-82-r.retail.telecomitalia.it)
  142. # [02:53] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
  143. # [02:53] * Quits: _Tristan_ (tristan@eliteof.lastlegend.org) (Excess Flood)
  144. # [02:55] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
  145. # [02:55] * Quits: _Tristan_ (tristan@eliteof.lastlegend.org) (Excess Flood)
  146. # [02:55] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
  147. # [02:55] * Quits: _Tristan_ (tristan@eliteof.lastlegend.org) (Excess Flood)
  148. # [02:57] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
  149. # [02:57] * Quits: _Tristan_ (tristan@eliteof.lastlegend.org) (Excess Flood)
  150. # [02:58] * Joins: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com)
  151. # [03:01] * Joins: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net)
  152. # [03:01] * Joins: dgathright_ (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com)
  153. # [03:02] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
  154. # [03:02] * Quits: _Tristan_ (tristan@eliteof.lastlegend.org) (Excess Flood)
  155. # [03:02] * Quits: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com) (Read error: No route to host)
  156. # [03:02] * dgathright_ is now known as dgathright
  157. # [03:02] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
  158. # [03:02] * Quits: _Tristan_ (tristan@eliteof.lastlegend.org) (Excess Flood)
  159. # [03:07] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
  160. # [03:07] * Quits: _Tristan_ (tristan@eliteof.lastlegend.org) (Excess Flood)
  161. # [03:12] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
  162. # [03:12] * Quits: _Tristan_ (tristan@eliteof.lastlegend.org) (Excess Flood)
  163. # [03:19] * Joins: Tristan (tristan@eliteof.lastlegend.org)
  164. # [03:19] * Quits: Tristan (tristan@eliteof.lastlegend.org) (Excess Flood)
  165. # [03:21] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
  166. # [03:21] * Quits: _Tristan_ (tristan@eliteof.lastlegend.org) (Excess Flood)
  167. # [03:25] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
  168. # [03:31] * Quits: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net) (Ping timeout: 250 seconds)
  169. # [03:34] * Quits: davatron5000 (~davatron5@cpe-66-25-167-215.austin.res.rr.com) (Quit: davatron5000)
  170. # [03:38] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: Ex-Chat)
  171. # [03:38] * Quits: Erkan (thend@78.167.135.107) (Ping timeout: 248 seconds)
  172. # [03:57] * Quits: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com) (Ping timeout: 276 seconds)
  173. # [03:58] * Joins: dgathright (~dgathrigh@173.152.222.175)
  174. # [04:00] * Joins: dgathright_ (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com)
  175. # [04:02] * Joins: dgathright__ (~dgathrigh@173.152.222.175)
  176. # [04:02] * Quits: dgathright (~dgathrigh@173.152.222.175) (Read error: No route to host)
  177. # [04:02] * dgathright__ is now known as dgathright
  178. # [04:05] * Quits: dgathright_ (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com) (Ping timeout: 276 seconds)
  179. # [04:08] * Joins: dgathright_ (~dgathrigh@173.152.222.175)
  180. # [04:09] * Quits: dgathright_ (~dgathrigh@173.152.222.175) (Remote host closed the connection)
  181. # [04:09] * Quits: ben_h (~ben@CPE-58-161-40-52.czqd1.win.bigpond.net.au) (Quit: ben_h)
  182. # [04:10] * Quits: dgathright (~dgathrigh@173.152.222.175) (Ping timeout: 252 seconds)
  183. # [04:11] * Joins: dgathright (~dgathrigh@173.152.222.175)
  184. # [04:14] * Joins: pcwick (~pcwick@173-19-131-253.client.mchsi.com)
  185. # [04:14] * Joins: dgathright_ (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com)
  186. # [04:17] * Quits: yarwin (~yarwin@p5B2BD667.dip.t-dialin.net) (Quit: Leaving)
  187. # [04:18] * Quits: dgathright (~dgathrigh@173.152.222.175) (Ping timeout: 276 seconds)
  188. # [04:18] * dgathright_ is now known as dgathright
  189. # [04:20] * Joins: dguttman (~dguttman@cpe-98-149-45-68.socal.res.rr.com)
  190. # [04:41] * Quits: dguttman (~dguttman@cpe-98-149-45-68.socal.res.rr.com) (Quit: dguttman)
  191. # [04:53] <niftylettuce> paul_irish: can you do me a favor?
  192. # [05:02] * Joins: Unrelandom (~look@71-35-201-30.slkc.qwest.net)
  193. # [05:03] * Unrelandom is now known as Senix
  194. # [05:03] * Quits: Senix (~look@71-35-201-30.slkc.qwest.net) (Changing host)
  195. # [05:03] * Joins: Senix (~look@unaffiliated/look)
  196. # [05:03] * Joins: tw2113 (~tw2113@fedora/tw2113)
  197. # [05:08] * Parts: hij1nx (~hij1nx@cpe-66-65-124-111.nyc.res.rr.com)
  198. # [05:13] * Joins: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net)
  199. # [05:15] * Quits: kataire (~kataire@cable-78-35-115-245.netcologne.de) (Ping timeout: 276 seconds)
  200. # [05:17] * Quits: Senix (~look@unaffiliated/look) (Read error: Operation timed out)
  201. # [05:21] * Joins: skqr (~skqr@200.81.182.71)
  202. # [05:28] * Joins: Evanescence (~Evanescen@60.183.246.80)
  203. # [05:38] * Quits: skqr (~skqr@200.81.182.71) (Quit: Saionara, techies.)
  204. # [05:42] * Quits: cgcardona (~cgcardona@c-24-5-146-71.hsd1.ca.comcast.net) (Quit: zzzzz)
  205. # [05:46] * Quits: addyosmani (~apple@host86-147-69-154.range86-147.btcentralplus.com) (Ping timeout: 255 seconds)
  206. # [05:53] * Quits: tbranyen (~dick@aboutnerd.com) (Read error: Connection reset by peer)
  207. # [05:59] * Joins: nonge_ (~nonge@p5082A3F2.dip.t-dialin.net)
  208. # [06:03] * Quits: nonge (~nonge@p50829EAE.dip.t-dialin.net) (Ping timeout: 246 seconds)
  209. # [06:07] * Quits: Evanescence (~Evanescen@60.183.246.80) (Quit: I need to code or sleep now .)
  210. # [06:15] <tw2113> lols http://webjam.lowfi.es/disappointment/
  211. # [06:23] * Quits: Herrman (wolter@p50915761.dip.t-dialin.net) (Quit: Mir geht dieses scheinheilige, Nächstenhiebe austeilendes Bodenpersonal Gottes auf die Nerven. [Julia Krüger, Leserbrief an den SPIEGEL 35/95])
  212. # [06:25] * Joins: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net)
  213. # [06:33] * Quits: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com) (Quit: dgathright)
  214. # [06:37] * Joins: hij1nx (~hij1nx@cpe-66-65-124-111.nyc.res.rr.com)
  215. # [06:45] <niftylettuce> tw2113: haha
  216. # [06:47] <tw2113> you can thank HN for that one
  217. # [06:51] * Quits: Evet_ (~Evet@95.13.33.199) (Quit: Evet_)
  218. # [06:56] * Quits: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net) (Ping timeout: 260 seconds)
  219. # [07:11] * Quits: pcwick (~pcwick@173-19-131-253.client.mchsi.com) (Remote host closed the connection)
  220. # [07:13] * Quits: Killman (~killman@unaffiliated/killman) (Quit: bbl Zzzzz)
  221. # [07:13] <samot__> lol
  222. # [07:14] <samot__> im confused
  223. # [07:15] <tw2113> how so
  224. # [07:17] <tw2113> not sure the humor for that site i linked, samot__ ?
  225. # [07:18] <samot__> yeah
  226. # [07:18] <samot__> is it mocking all the new libraries that people are releasing
  227. # [07:18] <tw2113> well, aren't you disappointed that neither button does anything?
  228. # [07:19] <tw2113> check the source too
  229. # [07:19] * Joins: gasbakid (~gasbakid@41.96.99.182)
  230. # [07:40] * Quits: zill (43b76d5c@gateway/web/freenode/ip.67.183.109.92) (Quit: Page closed)
  231. # [08:01] * Joins: Bruce_Wayne (~rushyang@117.198.200.132)
  232. # [08:02] * Joins: Erkan (thend@78.167.19.47)
  233. # [08:08] * Joins: BigKing (~BigKing@p5DCE900A.dip0.t-ipconnect.de)
  234. # [08:37] * Quits: hij1nx (~hij1nx@cpe-66-65-124-111.nyc.res.rr.com) (Quit: hij1nx)
  235. # [08:37] * Quits: daveluke (~davidluke@cpe-72-225-200-96.nyc.res.rr.com) (Quit: daveluke)
  236. # [08:48] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: Going!)
  237. # [08:50] * Quits: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net) (Read error: Connection reset by peer)
  238. # [08:50] * Quits: vladikoff (~vladikoff@bas1-woodbridge48-2925111342.dsl.bell.ca)
  239. # [08:51] * Joins: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net)
  240. # [09:00] * Quits: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net) (Quit: Leaving.)
  241. # [09:00] * Quits: Erkan (thend@78.167.19.47) (Read error: Connection reset by peer)
  242. # [09:19] * Joins: Erkan (thend@78.167.19.47)
  243. # [09:20] * Joins: dmachi1 (~dmachi@pool-72-66-199-75.ronkva.east.verizon.net)
  244. # [09:20] * Quits: dmachi (~dmachi@pool-72-66-199-75.ronkva.east.verizon.net) (Read error: Connection reset by peer)
  245. # [09:25] * Joins: kataire (~kataire@cable-78-35-115-245.netcologne.de)
  246. # [09:26] * Quits: Ankheg (~Ankheg@94.158.194.27) (Quit: Leaving.)
  247. # [09:33] * Joins: mike5w3c (~MikeSmith@58x157x21x205.ap58.ftth.ucom.ne.jp)
  248. # [09:34] * Joins: jochen___ (~jochen@nat/google/x-cxlbzqcqpqucbghz)
  249. # [09:34] * Quits: Bruce_Wayne (~rushyang@117.198.200.132) (Quit: Ex-Chat)
  250. # [09:36] * Joins: midkniht (~midkniht@h177.144.255.206.cable.pnbl.cablelynx.com)
  251. # [09:38] * Quits: jochen__ (~jochen@nat/google/x-rrxpqxapxxetgfdm) (Ping timeout: 260 seconds)
  252. # [09:38] * jochen___ is now known as jochen__
  253. # [09:40] * midkniht is now known as bman
  254. # [09:42] * Quits: jacine (~jacine@drupal.org/user/88931/view) (Quit: buh bye :))
  255. # [09:44] * Quits: BigKing (~BigKing@p5DCE900A.dip0.t-ipconnect.de) (Remote host closed the connection)
  256. # [09:46] * Joins: antonkovalyov (~antonkova@adsl-75-18-218-201.dsl.pltn13.sbcglobal.net)
  257. # [10:03] <niftylettuce> nn
  258. # [10:03] <niftylettuce> \o/
  259. # [10:03] <bman> night
  260. # [10:06] * Quits: niftylettuce (~niftylett@c-76-125-157-178.hsd1.pa.comcast.net) (Quit: Leaving)
  261. # [10:13] * Quits: patcito (~123@190.42.89.63) (Remote host closed the connection)
  262. # [10:13] * Joins: jetienne_ (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
  263. # [10:16] * Joins: Howell` (~Howell`@58.34.74.161)
  264. # [10:21] * Quits: Howell` (~Howell`@58.34.74.161) (Quit: Howell`)
  265. # [10:30] * Quits: thatryan (~thatryan@c-71-202-1-91.hsd1.ca.comcast.net) (Quit: Leaving...)
  266. # [10:44] * Quits: jetienne_ (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Remote host closed the connection)
  267. # [10:48] * Joins: jus101 (~chatzilla@2.135.99.203.dynamic.amuri.net)
  268. # [10:50] * Joins: prudnikov (~prudnikov@nat-3.starnet.cz)
  269. # [10:50] <jus101> does navigator.geolocation.getCurrentPosition in Safari 5 ever return a position on a desktop mac? I see that chrome does, but nothing from Safari.
  270. # [11:09] * Joins: sam0t (~samot@14-202-130-124.static.tpgi.com.au)
  271. # [11:10] * Quits: samot__ (~samot@14-202-130-124.static.tpgi.com.au) (Ping timeout: 240 seconds)
  272. # [11:21] * Quits: jus101 (~chatzilla@2.135.99.203.dynamic.amuri.net) (Ping timeout: 252 seconds)
  273. # [11:28] * Quits: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net) (Quit: chriseppstein)
  274. # [11:44] * Joins: theasta (~theasta@pha75-16-88-171-131-100.fbx.proxad.net)
  275. # [11:45] * Parts: theasta (~theasta@pha75-16-88-171-131-100.fbx.proxad.net)
  276. # [11:50] * Joins: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk)
  277. # [11:54] * Quits: antonkovalyov (~antonkova@adsl-75-18-218-201.dsl.pltn13.sbcglobal.net) (Quit: Leaving...)
  278. # [12:16] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
  279. # [12:16] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
  280. # [12:27] * Joins: dpy (~Marcel@d66172.upc-d.chello.nl)
  281. # [12:51] * Joins: Quilck (~Quilck@90.183.82.215)
  282. # [12:54] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
  283. # [12:54] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
  284. # [12:55] * Quits: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk) (Quit: Leaving.)
  285. # [12:56] * Joins: gliese581 (~ManOnTheM@81.202.113.56.dyn.user.ono.com)
  286. # [12:59] * Quits: mr_daniel (~irssi@g224046056.adsl.alicedsl.de) (Ping timeout: 250 seconds)
  287. # [12:59] * Quits: gasbakid (~gasbakid@41.96.99.182) (Remote host closed the connection)
  288. # [13:01] * Joins: mr_daniel (~irssi@d223249.adsl.hansenet.de)
  289. # [13:04] * Joins: FireFly (~firefly@unaffiliated/firefly)
  290. # [13:08] * Joins: dguttman (~dguttman@cpe-75-85-11-227.socal.res.rr.com)
  291. # [13:17] * Quits: Sosby (~fsosby@s2.rdlbnc.com) (Ping timeout: 246 seconds)
  292. # [13:29] * Joins: Sosby (~fsosby@s2.rdlbnc.com)
  293. # [13:51] * Quits: Quilck (~Quilck@90.183.82.215) (Ping timeout: 276 seconds)
  294. # [13:52] * Joins: Quilck (~Quilck@90.183.82.215)
  295. # [13:52] * Joins: theasta (~theasta@pha75-16-88-171-131-100.fbx.proxad.net)
  296. # [13:52] * Quits: theasta (~theasta@pha75-16-88-171-131-100.fbx.proxad.net) (Client Quit)
  297. # [13:55] * Quits: dguttman (~dguttman@cpe-75-85-11-227.socal.res.rr.com) (Read error: Connection reset by peer)
  298. # [14:32] * Joins: dguttman (~dguttman@cpe-75-85-11-227.socal.res.rr.com)
  299. # [14:36] * Joins: daveluke (~davidluke@nmd.sbx07217.foresny.wayport.net)
  300. # [14:42] * Joins: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk)
  301. # [14:45] * Quits: daveluke (~davidluke@nmd.sbx07217.foresny.wayport.net) (Ping timeout: 252 seconds)
  302. # [14:48] * Joins: daveluke (~davidluke@64.134.65.150)
  303. # [14:50] * Quits: dguttman (~dguttman@cpe-75-85-11-227.socal.res.rr.com) (Read error: Connection reset by peer)
  304. # [14:52] * Joins: Evanescence (~Evanescen@122.236.249.223)
  305. # [15:00] * Quits: daveluke (~davidluke@64.134.65.150) (Quit: daveluke)
  306. # [15:04] * Quits: sam0t (~samot@14-202-130-124.static.tpgi.com.au) (Ping timeout: 252 seconds)
  307. # [15:04] * Joins: Ramosa (Ramosa@unaffiliated/harald/x-000000001)
  308. # [15:06] * Joins: sam0t (~samot@14-202-130-124.static.tpgi.com.au)
  309. # [15:14] * Quits: Evanescence (~Evanescen@122.236.249.223) (Quit: I need to code or sleep now .)
  310. # [15:20] * Joins: Howell` (~Howell`@124.78.4.215)
  311. # [15:39] * Joins: cgcardona (~cgcardona@c-24-5-146-71.hsd1.ca.comcast.net)
  312. # [15:49] * Joins: dguttman (~dguttman@cpe-75-85-11-227.socal.res.rr.com)
  313. # [15:50] * Joins: bartek (~bartek@69.196.130.113)
  314. # [15:55] * Quits: dguttman (~dguttman@cpe-75-85-11-227.socal.res.rr.com) (Read error: Operation timed out)
  315. # [15:57] * Joins: obert- (~obert@host165-194-dynamic.55-82-r.retail.telecomitalia.it)
  316. # [15:59] * Joins: tktiddle (~tim@cpc1-hari12-2-0-cust76.hari.cable.virginmedia.com)
  317. # [16:01] * Joins: dguttman (~dguttman@cpe-75-85-11-227.socal.res.rr.com)
  318. # [16:03] * Quits: dguttman (~dguttman@cpe-75-85-11-227.socal.res.rr.com) (Read error: Connection reset by peer)
  319. # [16:03] * Joins: dguttman (~dguttman@cpe-75-85-11-227.socal.res.rr.com)
  320. # [16:14] * Quits: dguttman (~dguttman@cpe-75-85-11-227.socal.res.rr.com) (Ping timeout: 246 seconds)
  321. # [16:15] * Quits: Quilck (~Quilck@90.183.82.215) (Ping timeout: 246 seconds)
  322. # [16:21] * Joins: BigKing (~BigKing@p5DCE82F3.dip0.t-ipconnect.de)
  323. # [16:32] * Joins: Killman (~killman@unaffiliated/killman)
  324. # [16:34] * Joins: Quilck (~Quilck@90.183.82.215)
  325. # [16:35] * Joins: boaz (~boaz@c-24-128-79-120.hsd1.ma.comcast.net)
  326. # [16:39] * Joins: Evanescence (~Evanescen@122.236.249.223)
  327. # [16:42] * Joins: snover (~Adium@unaffiliated/snover)
  328. # [16:43] * Quits: dpy (~Marcel@d66172.upc-d.chello.nl) (Quit: Leaving)
  329. # [16:48] * Parts: snover (~Adium@unaffiliated/snover)
  330. # [16:48] * Joins: hij1nx (~hij1nx@cpe-66-65-124-111.nyc.res.rr.com)
  331. # [16:50] * Parts: hij1nx (~hij1nx@cpe-66-65-124-111.nyc.res.rr.com)
  332. # [16:51] * Quits: tktiddle (~tim@cpc1-hari12-2-0-cust76.hari.cable.virginmedia.com) (Remote host closed the connection)
  333. # [16:57] * Quits: boaz (~boaz@c-24-128-79-120.hsd1.ma.comcast.net) (Quit: boaz)
  334. # [17:09] * Quits: Quilck (~Quilck@90.183.82.215) (Ping timeout: 260 seconds)
  335. # [17:10] * Joins: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net)
  336. # [17:12] * Joins: kennyluck (~kennyluck@114-25-213-250.dynamic.hinet.net)
  337. # [17:12] * Quits: Evanescence (~Evanescen@122.236.249.223) (Quit: I need to code or sleep now .)
  338. # [17:13] * Joins: Evanescence (~Evanescen@122.236.249.223)
  339. # [17:18] * Joins: vladikoff (~vladikoff@bas1-woodbridge48-2925111342.dsl.bell.ca)
  340. # [17:21] * Joins: tktiddle (~tim@cpc1-hari12-2-0-cust76.hari.cable.virginmedia.com)
  341. # [17:24] * Quits: Howell` (~Howell`@124.78.4.215) (Remote host closed the connection)
  342. # [17:27] * Quits: obert- (~obert@host165-194-dynamic.55-82-r.retail.telecomitalia.it)
  343. # [17:41] * Quits: bartek (~bartek@69.196.130.113) (Quit: Computer has gone to sleep)
  344. # [17:44] * Quits: Evanescence (~Evanescen@122.236.249.223) (Quit: I need to code or sleep now .)
  345. # [18:04] * Joins: Quilck (~Quilck@90.183.82.215)
  346. # [18:15] * Joins: Thasmo (~thasmo@d86-32-70-59.cust.tele2.at)
  347. # [18:32] * Joins: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net)
  348. # [18:38] * Joins: svenlito (~svnlto@78-86-0-182.zone2.bethere.co.uk)
  349. # [18:38] * Quits: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net) (Quit: Leaving.)
  350. # [18:41] * Quits: bman (~midkniht@h177.144.255.206.cable.pnbl.cablelynx.com) (Ping timeout: 276 seconds)
  351. # [18:51] * Joins: huskyr (~huskyr@535506A5.cm-6-6a.dynamic.ziggo.nl)
  352. # [18:56] * Quits: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net) (Ping timeout: 255 seconds)
  353. # [18:57] * Quits: BigKing (~BigKing@p5DCE82F3.dip0.t-ipconnect.de) (Remote host closed the connection)
  354. # [19:04] * Quits: huskyr (~huskyr@535506A5.cm-6-6a.dynamic.ziggo.nl) (Quit: huskyr)
  355. # [19:06] * Joins: Brodingo (~Brodingo@cpe-70-116-9-4.austin.res.rr.com)
  356. # [19:09] * Quits: tktiddle (~tim@cpc1-hari12-2-0-cust76.hari.cable.virginmedia.com) (Remote host closed the connection)
  357. # [19:12] * Joins: tktiddle (~tim@cpc1-hari12-2-0-cust76.hari.cable.virginmedia.com)
  358. # [19:16] * Joins: bman (~midkniht@h177.144.255.206.cable.pnbl.cablelynx.com)
  359. # [19:18] * Joins: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net)
  360. # [19:22] * Joins: patcito (~123@190.42.87.243)
  361. # [19:26] * Quits: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net) (Read error: Operation timed out)
  362. # [19:28] * Joins: tw2113 (~tw2113@fedora/tw2113)
  363. # [19:43] * Joins: dguttman (~dguttman@64.134.19.31)
  364. # [19:48] * Quits: bman (~midkniht@h177.144.255.206.cable.pnbl.cablelynx.com) (Ping timeout: 276 seconds)
  365. # [19:51] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Ping timeout: 240 seconds)
  366. # [19:53] * Quits: peol (~andree@unaffiliated/peol) (Ping timeout: 260 seconds)
  367. # [19:56] * Joins: thatryan (~thatryan@c-71-202-1-91.hsd1.ca.comcast.net)
  368. # [20:05] * Joins: boaz (~boaz@75-150-66-254-NewEngland.hfc.comcastbusiness.net)
  369. # [20:09] * Joins: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net)
  370. # [20:13] * Quits: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net) (Remote host closed the connection)
  371. # [20:13] * Joins: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net)
  372. # [20:17] * tty234_ is now known as tty234
  373. # [20:20] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: I was raided by the FBI and all I got to keep was this lousy quit message!)
  374. # [20:22] * Joins: antonkovalyov (~antonkova@adsl-75-18-218-201.dsl.pltn13.sbcglobal.net)
  375. # [20:27] * Joins: cocoadaemon (~cocoadaem@2a01:e35:8a99:e90:20d:93ff:fe3b:868c)
  376. # [20:28] * Quits: gliese581 (~ManOnTheM@81.202.113.56.dyn.user.ono.com) (Quit: Lost terminal)
  377. # [20:31] * Quits: tktiddle (~tim@cpc1-hari12-2-0-cust76.hari.cable.virginmedia.com) (Remote host closed the connection)
  378. # [20:32] * Quits: dguttman (~dguttman@64.134.19.31) (Quit: dguttman)
  379. # [20:34] * Quits: Thasmo (~thasmo@d86-32-70-59.cust.tele2.at)
  380. # [20:46] * Joins: obert- (~obert@host165-194-dynamic.55-82-r.retail.telecomitalia.it)
  381. # [20:46] * Quits: prudnikov (~prudnikov@nat-3.starnet.cz) (Read error: Operation timed out)
  382. # [20:48] * obert- you all suck
  383. # [20:53] * Joins: daveluke (~davidluke@cpe-72-225-200-96.nyc.res.rr.com)
  384. # [20:56] * Parts: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net) ("Leaving")
  385. # [21:00] * Joins: Senix (~look@unaffiliated/look)
  386. # [21:20] * Joins: dmachi (~dmachi@pool-72-66-199-75.ronkva.east.verizon.net)
  387. # [21:20] * Quits: dmachi1 (~dmachi@pool-72-66-199-75.ronkva.east.verizon.net) (Read error: Connection reset by peer)
  388. # [21:23] <thatryan> :(
  389. # [21:24] * Joins: tw2113 (~tw2113@fedora/tw2113)
  390. # [21:25] <obert-> :D
  391. # [21:26] <obert-> thatryan what's happen
  392. # [21:26] <thatryan> doing stuff and stuff
  393. # [21:26] <thatryan> hecka exciting!
  394. # [21:27] <obert-> not to be sad then
  395. # [21:27] <thatryan> lol you said we suck
  396. # [21:27] <obert-> ah
  397. # [21:27] <obert-> me??
  398. # [21:27] <obert-> must be my cat
  399. # [21:27] <thatryan> lol
  400. # [21:28] <paul_irish> tell your cat to Be Nice!
  401. # [21:28] <thatryan> yeah, thats just a mean kitty
  402. # [21:28] * Quits: Brodingo (~Brodingo@cpe-70-116-9-4.austin.res.rr.com) (Remote host closed the connection)
  403. # [21:28] <obert-> usually he just jumps over the keyb and left a 'meow'
  404. # [21:28] <thatryan> albeit, a smart kitty ;)
  405. # [21:29] <tw2113> this is why cats shouldn't be online
  406. # [21:29] <tw2113> they take over
  407. # [21:29] <obert-> purr
  408. # [21:31] <tw2113> interesting question...how much of the internet would go missing if we removed every reference to cats
  409. # [21:31] <thatryan> enough :)
  410. # [21:31] <obert-> http://eeeeek.org
  411. # [21:31] <tw2113> it'd be a catpocolypse
  412. # [21:32] <obert-> ecco.
  413. # [21:32] <thatryan> lol nice
  414. # [21:33] <thatryan> no more puns for you
  415. # [21:34] <obert-> comic sans enters ina bar and orders a drink, the barman flatly refuses to serve him. 'why?' enquires the font. 'we dont want your type in 'ere'
  416. # [21:34] * Joins: jacine (~jacine@drupal.org/user/88931/view)
  417. # [21:34] <tw2113> 3 men walk into a bar, the 4th one ducks
  418. # [21:35] <thatryan> nooo
  419. # [21:35] <obert-> ????
  420. # [21:35] <obert-> ducks?
  421. # [21:35] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Remote host closed the connection)
  422. # [21:35] <tw2113> evades
  423. # [21:36] * Joins: KemKemKem (~KemKemKEm@79-74-239-229.dynamic.dsl.as9105.com)
  424. # [21:36] <KemKemKem> hi
  425. # [21:36] * Quits: Quilck (~Quilck@90.183.82.215)
  426. # [21:36] <tw2113> yo
  427. # [21:36] <obert-> evades??
  428. # [21:37] <KemKemKem> do you think html5 and java will enable instant chat rooms on more websites?
  429. # [21:37] <KemKemKem> I'd quite like to use it on a social network site and wondered if it was ready for mass adoption yet.. what are your views?
  430. # [21:38] <tw2113> no idea personally
  431. # [21:38] <obert-> 2 men walk into a bar, middle one has a hat
  432. # [21:38] <obert-> wtf??
  433. # [21:38] <KemKemKem> http://rumpetroll.com/ <-- good example of html5 in action
  434. # [21:39] <KemKemKem> i think it uses websockets but i love the fact you can just start chatting with no slow java client
  435. # [21:39] <thatryan> lol obert-
  436. # [21:39] <KemKemKem> are you gonna finish the joke albert?
  437. # [21:39] <obert-> i dont get this kind of humor though
  438. # [21:40] <tw2113> 3 men walk into it, because they don't see it or something, the 4th one does, and moves out of the way before hit
  439. # [21:40] <tw2113> it's very stupid humor but it amuses me a bit :D
  440. # [21:40] <obert-> ...
  441. # [21:40] <obert-> and then sex will exists
  442. # [21:40] <KemKemKem> i always liked... a horse walks into a bar... the barman says "why the long face?"
  443. # [21:40] <KemKemKem> simple but brilliant
  444. # [21:41] <tw2113> regarding the chat room stuff, you'd have to gauge your websockets support and how many browsers/versions you want to be able to access it
  445. # [21:42] <obert-> mah :)
  446. # [21:43] <KemKemKem> well i'm planning a new site so i have zero users to worry about.. I'm just trying to work out if i should discriminate against older browsers and go with the cutting edge stuff. Most of my users will be 20-30 anyway so i'd imagine they'd have fairly modern browsers or be willing to upgrade
  447. # [21:44] * Joins: skqr (~skqr@200.81.182.224)
  448. # [21:44] <KemKemKem> i haven't really noticed much html5 / websockets apps around.. but sites which do have them and the demos look great
  449. # [21:44] <tw2113> i have a site still in the works that is targeted at twitter users, so likely very few IE users
  450. # [21:45] <obert-> a neutron walks into a bar, the barman asks "What can I get for you?" Neutron answers "Just passing through"
  451. # [21:45] <KemKemKem> I'm currently trying to build a social network site that makes your social life public
  452. # [21:46] <KemKemKem> *groan
  453. # [21:46] <tw2113> isn't that all of them?
  454. # [21:46] <KemKemKem> nah, social media is suprisingly not very social
  455. # [21:46] <KemKemKem> i want to build a site where your social life is very public, every event you go to is shared with everyone
  456. # [21:47] <tw2113> i imagine that's on purpose to prevent outcries and mass exodus
  457. # [21:47] <obert-> why the fuck are you following me on facebook??
  458. # [21:47] <tw2113> see: every little privacy change facebook's done
  459. # [21:48] <KemKemKem> facebooks a bit rubbish at event organising though isn't it?
  460. # [21:49] <tw2113> i'm just saying, i imagine it'd be hard to find mass support for such a thing with every little detail public
  461. # [21:49] <KemKemKem> well, the only reason why it's an issue with facebook is really because of all the embarrassing pictures on there
  462. # [21:50] <KemKemKem> i don't think most people have a problem telling people what their social plans are, and if you do then you're not forced to join
  463. # [21:50] <tw2113> just expressing my thoughts on it
  464. # [21:50] <KemKemKem> but imagine if everyone made their plans public, and used the site to plan which events they were going to..if you could see all the social events your friends were going to each week
  465. # [21:50] <KemKemKem> would be very useful
  466. # [21:50] <tw2113> and very easy to stalk
  467. # [21:50] <KemKemKem> keep your thoughts coming, they're welcome :)
  468. # [21:51] <KemKemKem> that's half the point :)
  469. # [21:51] <KemKemKem> i want to make it easy to stalk your friends
  470. # [21:51] <tw2113> until psycho ex's show up
  471. # [21:51] <KemKemKem> psycho ex's are psycho ex's though... if that's a problem for you then you just stop using the site
  472. # [21:52] <KemKemKem> i think 99% of people don't have stalkers so i don't think it's quite as big an issue as people think it to be personally
  473. # [21:52] <tw2113> I wish you luck, but I don't have the best feelings about the plans :P
  474. # [21:53] <KemKemKem> heh, nah i definitely appreciate that it could be a tool for stalking
  475. # [21:53] <KemKemKem> but i think the positives outweigh the negatives for most people (as they don't have stalkers!)
  476. # [21:53] * Parts: tw2113 (~tw2113@fedora/tw2113) ("IRC is just multiplayer notepad")
  477. # [21:54] <KemKemKem> you could get rid of the concept of friends too
  478. # [21:54] <KemKemKem> no adding or deleting, the people associated with you are the people you go to events with. Period.
  479. # [21:54] <KemKemKem> only slight issue is i've got to crowd-source every event going on in a city to make the site useful as a social planning tool
  480. # [21:57] <KemKemKem> so if you're free next tuesday and want to go out, the site will suggest an event for you which you and your friends have been on before.. if you go to a pub quiz every tuesday with four of your friends for several weeks last year, then it will be able to use this info to suggest that you go to a pub quiz etc...
  481. # [21:58] <KemKemKem> what's your twitter site about then?
  482. # [21:59] * Quits: Ramosa (Ramosa@unaffiliated/harald/x-000000001)
  483. # [22:06] * Joins: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net)
  484. # [22:07] * Quits: cocoadaemon (~cocoadaem@2a01:e35:8a99:e90:20d:93ff:fe3b:868c) (Quit: cocoadaemon)
  485. # [22:08] * Quits: LongBeach (~mike@AFontenayssB-152-1-27-75.w83-114.abo.wanadoo.fr) (Ping timeout: 252 seconds)
  486. # [22:08] * Parts: daveluke (~davidluke@cpe-72-225-200-96.nyc.res.rr.com)
  487. # [22:09] <KemKemKem> http://e-skindoctor.co.uk/planner.jpg
  488. # [22:09] <KemKemKem> that's basically the idea
  489. # [22:10] <KemKemKem> so your social life is public, people can see what events you are going to and you can easily find events to attend in your city
  490. # [22:11] * temp01 is now known as inter_net
  491. # [22:11] * inter_net is now known as temp01
  492. # [22:15] * Parts: skqr (~skqr@200.81.182.224)
  493. # [22:33] <daleharvey> antonkovalyov: you around?
  494. # [22:36] <antonkovalyov> daleharvey, yeah
  495. # [22:36] <antonkovalyov> sup?
  496. # [22:37] <daleharvey> you had anyone get jshint working in emacs yet? just before I give it a shot
  497. # [22:39] <antonkovalyov> daleharvey, not that i know of
  498. # [22:42] * Joins: peol (~andree@unaffiliated/peol)
  499. # [22:43] <daleharvey> ok, will let you know how it goes
  500. # [22:44] <antonkovalyov> cool thanks!
  501. # [22:45] * Joins: huskyr (~huskyr@535506A5.cm-6-6a.dynamic.ziggo.nl)
  502. # [22:53] * Joins: temp02 (~temp01@unaffiliated/temp01)
  503. # [22:54] * Joins: moo (~quassel@herd37.twinapex.fi)
  504. # [22:55] * Joins: jeremyselier (~Jeremy@2a01:e35:139f:2c60:fa1e:dfff:feec:469)
  505. # [22:55] * moo is now known as Guest7905
  506. # [22:55] * Joins: ajpiano_ (~ajpiano@li98-57.members.linode.com)
  507. # [22:56] * Joins: [tm]_ (~MikeSmith@sideshowbarker.net)
  508. # [22:56] * Joins: jeffsz (~jeffszusz@216.8.161.83)
  509. # [22:56] * Joins: Tolnem_ (~dlade@87.63.81.70)
  510. # [22:56] * Quits: jeffszusz (~jeffszusz@216.8.161.83) (Ping timeout: 250 seconds)
  511. # [22:56] * Quits: [tm] (~MikeSmith@sideshowbarker.net) (Ping timeout: 250 seconds)
  512. # [22:56] * Quits: bigbluehat_ (u632@gateway/web/irccloud.com/x-etelbefxuawxvbho) (Excess Flood)
  513. # [22:56] * Quits: hober (~ted@unaffiliated/hober) (Ping timeout: 250 seconds)
  514. # [22:56] * Quits: ajpiano (~ajpiano@li98-57.members.linode.com) (Ping timeout: 250 seconds)
  515. # [22:56] * Quits: temp01 (~temp01@unaffiliated/temp01) (Ping timeout: 250 seconds)
  516. # [22:56] * Quits: moo_ (~quassel@herd37.twinapex.fi) (Ping timeout: 250 seconds)
  517. # [22:56] * Quits: Tolnem (~dlade@87.63.81.70) (Ping timeout: 250 seconds)
  518. # [22:56] * Quits: hSATAC (~cat@221.169.252.14) (Ping timeout: 250 seconds)
  519. # [22:57] * ajpiano_ is now known as ajpiano
  520. # [22:57] * Joins: hSATAC (~cat@221.169.252.14)
  521. # [22:58] * Quits: croby (~croby@c-24-19-51-159.hsd1.wa.comcast.net) (Ping timeout: 276 seconds)
  522. # [23:04] * Joins: croby (~croby@c-24-19-51-159.hsd1.wa.comcast.net)
  523. # [23:04] * Quits: jeremyselier (~Jeremy@2a01:e35:139f:2c60:fa1e:dfff:feec:469) (Ping timeout: 264 seconds)
  524. # [23:15] * temp02 is now known as temp01
  525. # [23:20] * Quits: Erkan (thend@78.167.19.47)
  526. # [23:28] * Joins: Erkan (thend@78.167.19.47)
  527. # [23:36] <thatryan> hey paul_irish
  528. # [23:38] <paul_irish> sup
  529. # [23:39] <thatryan> how goes it
  530. # [23:39] <thatryan> taken over the world yet?
  531. # [23:44] <paul_irish> with a hangover. just about.
  532. # [23:44] <thatryan> lol winning
  533. # [23:44] <paul_irish> WINNNINGG
  534. # [23:44] <thatryan> damn it charlie
  535. # [23:45] <paul_irish> we're putting out a h5bp 1.0 RC like tomorrow or something
  536. # [23:46] <paul_irish> got modernizr 1.8 in the works too. amping it up for better plugins and extensibility
  537. # [23:46] <thatryan> with all the new changes? img and all? cool
  538. # [23:46] <thatryan> oh sweet, lots of stuff
  539. # [23:46] <nimbupani> yeah its about time.
  540. # [23:46] <thatryan> building in yepnope?
  541. # [23:46] <nimbupani> not in h5bp
  542. # [23:46] <paul_irish> not for 1.0. probably 1.1
  543. # [23:47] <paul_irish> when mod1.8 goes in
  544. # [23:47] <thatryan> cool, will give me time to understand how to use it better ;)
  545. # [23:47] <thatryan> wanna look at some jQuery? :D
  546. # [23:47] <paul_irish> sure
  547. # [23:48] <thatryan> for some reason, my $ is stopping working halfway through this... http://pastie.textmate.org/1640804
  548. # [23:48] <thatryan> and yes I am quite sure it is ugly
  549. # [23:49] <paul_irish> bro you gotta select less.
  550. # [23:49] <thatryan> lol
  551. # [23:49] <paul_irish> and DRY it
  552. # [23:49] <paul_irish> up
  553. # [23:49] <paul_irish> lets go to #jquery
  554. # [23:49] <thatryan> im not pre optimizing :)
  555. # [23:49] <thatryan> i was in there they are not helping :(
  556. # [23:50] <digitalfiz> I have charlie as my facebook profile pic :P
  557. # [23:51] <digitalfiz> http://cache.blippitt.com/wp-content/uploads/2011/03/Charlie-Sheen-Winning-Poster.jpg <-- that one
  558. # [23:52] <daleharvey> antonkovalyov: any chance of http://jshint.com/ giving you the options you have selected? :P
  559. # [23:53] <antonkovalyov> hm?
  560. # [23:53] * Joins: JKarsrud (~JKarsrud@178.74.12.26)
  561. # [23:54] <daleharvey> like with jslint, I have a bunch of options selected that I just wanna copy and paste, just mentioning for laziness sake, its nice for documentation as well
  562. # [23:54] <antonkovalyov> daleharvey, oh, in the works :)
  563. # [23:54] <antonkovalyov> brbr
  564. # [23:56] * Quits: huskyr (~huskyr@535506A5.cm-6-6a.dynamic.ziggo.nl) (Quit: huskyr)
  565. # [23:58] * Joins: huskyr (~huskyr@535506A5.cm-6-6a.dynamic.ziggo.nl)
  566. # Session Close: Mon Mar 07 00:00:00 2011

The end :)