/irc-logs / freenode / #whatwg / 2007-11-17 / end

Options:

  1. # Session Start: Sat Nov 17 00:00:00 2007
  2. # Session Ident: #whatwg
  3. # [00:00] * Joins: weinig (n=weinig@17.203.15.140)
  4. # [00:12] * Joins: othermaciej (n=mjs@17.255.100.220)
  5. # [00:16] * othermaciej is now known as om_coffee
  6. # [00:29] * Quits: gavin_ (n=gavin@firefox/developer/gavin) (Read error: 113 (No route to host))
  7. # [00:39] * Joins: jgraham__ (n=jgraham@81-86-212-70.dsl.pipex.com)
  8. # [00:39] * Quits: kingryan (n=kingryan@corp.technorati.com)
  9. # [00:56] * Quits: jgraham_ (n=james@81-86-209-13.dsl.pipex.com) (Read error: 110 (Connection timed out))
  10. # [00:56] * Joins: jgraham_ (n=james@81-86-212-70.dsl.pipex.com)
  11. # [00:56] * Quits: jgraham (n=jgraham@81-86-209-13.dsl.pipex.com) (Read error: 110 (Connection timed out))
  12. # [01:22] * Quits: billmason (n=billmaso@ip156.unival.com) (Read error: 104 (Connection reset by peer))
  13. # [01:31] * Quits: KevinMarks (i=KevinMar@nat/google/x-8a6a4a1848d65d5e) ("The computer fell asleep")
  14. # [01:31] * Joins: KevinMarks (i=KevinMar@nat/google/x-cdad751fc5a5edc3)
  15. # [01:47] * Quits: KevinMarks (i=KevinMar@nat/google/x-cdad751fc5a5edc3) (Read error: 110 (Connection timed out))
  16. # [01:55] * Joins: kfish (n=conrad@61.194.21.25)
  17. # [02:02] * Quits: dbaron (n=dbaron@corp-241.mountainview.mozilla.com) ("8403864 bytes have been tenured, next gc will be global.")
  18. # [02:17] * Quits: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no) ("Leaving")
  19. # [02:18] * Joins: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no)
  20. # [02:18] * Quits: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no) (Client Quit)
  21. # [02:19] * Joins: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no)
  22. # [02:24] * Quits: tndH (i=Rob@87.102.12.217) ("ChatZilla 0.9.79-rdmsoft [XULRunner 1.8.0.9/2006120508]")
  23. # [02:35] * om_coffee is now known as othermaciej
  24. # [02:38] * Quits: othermaciej (n=mjs@17.255.100.220)
  25. # [02:42] * Quits: weinig (n=weinig@17.203.15.140) (Read error: 110 (Connection timed out))
  26. # [02:56] * Quits: jgraham_ (n=james@81-86-212-70.dsl.pipex.com) ("This computer has gone to sleep")
  27. # [03:07] * Joins: dglazkov (n=dglazkov@adsl-074-229-248-021.sip.bhm.bellsouth.net)
  28. # [03:11] * Quits: aroben (i=aroben@unaffiliated/aroben) ("Leaving")
  29. # [03:11] * Joins: KevinMarks (n=KevinMar@12.sub-75-208-51.myvzw.com)
  30. # [03:13] * Quits: dglazkov (n=dglazkov@adsl-074-229-248-021.sip.bhm.bellsouth.net) ("ChatZilla 0.9.79 [Firefox 2.0.0.9/2007102514]")
  31. # [03:15] * Joins: othermaciej (n=mjs@adsl-75-36-149-182.dsl.pltn13.sbcglobal.net)
  32. # [03:16] * Joins: weinig (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net)
  33. # [03:16] * Quits: KevinMarks (n=KevinMar@12.sub-75-208-51.myvzw.com) (Client Quit)
  34. # [03:17] * Quits: weinig (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net) (Remote closed the connection)
  35. # [03:17] * Joins: weinig (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net)
  36. # [03:19] * Joins: dglazkov (n=dglazkov@adsl-074-229-248-021.sip.bhm.bellsouth.net)
  37. # [03:20] <dglazkov> ok, another SQL spec question..
  38. # [03:21] <dglazkov> the spec doesn't mention what I should do about multiple transactions:
  39. # [03:22] <othermaciej> in what regard?
  40. # [03:22] <dglazkov> db.transaction(function() { ... }); // 1
  41. # [03:22] <dglazkov> db.transaction(function() { ... }); //2
  42. # [03:22] <dglazkov> are these queued up? is 2 blocked until 1 is finished
  43. # [03:23] <dglazkov> since both tx callbacks are executed asynchronously, what's the expected behavior
  44. # [03:34] <othermaciej> the locking isn't specified in detail, but they have to follow the lock requirements
  45. # [03:34] <othermaciej> if both only do reads they can likely execute in parallel
  46. # [03:34] <othermaciej> if they write, then they will get serialized
  47. # [03:40] * Quits: dglazkov (n=dglazkov@adsl-074-229-248-021.sip.bhm.bellsouth.net) ("ChatZilla 0.9.79 [Firefox 2.0.0.9/2007102514]")
  48. # [03:49] * Joins: dglazkov (n=dglazkov@adsl-074-229-248-021.sip.bhm.bellsouth.net)
  49. # [03:49] <dglazkov> sorry, had to restart ff
  50. # [03:50] <dglazkov> so, in SQLite-speak, you're saying that transaction is BEGIN DEFERRED, not BEGIN IMMEDIATE
  51. # [03:51] <dglazkov> because BEGIN IMMEDIATE won't let another BEGIN IMMEDIATE happen until it's committed
  52. # [03:51] * Quits: csarven (n=nevrasc@81-5-133-33.static.nfwebsolutions.com) ("http://www.csarven.ca")
  53. # [03:56] <othermaciej> well I don't know, the spec is unclear on this
  54. # [03:56] <othermaciej> we've been discussing what it should be
  55. # [03:57] <othermaciej> dglazkov: are you looking to implement the spec?
  56. # [03:57] <dglazkov> I think I am just going to go with BEGIN IMMEDIATE for now and sort it out later
  57. # [03:57] <dglazkov> yes, I already have it pretty much working
  58. # [03:57] <othermaciej> cool
  59. # [03:57] <othermaciej> native implementation for Gecko?
  60. # [03:59] <dglazkov> cheating w/Gears :)
  61. # [04:16] * Quits: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no) ("This computer has gone to sleep")
  62. # [04:22] * Joins: auk (n=scott@h-68-165-22-123.lsanca54.dynamic.covad.net)
  63. # [04:36] * Quits: dglazkov (n=dglazkov@adsl-074-229-248-021.sip.bhm.bellsouth.net) ("ChatZilla 0.9.79 [Firefox 2.0.0.9/2007102514]")
  64. # [04:49] * weinig is now known as weinig|away
  65. # [04:50] * Quits: othermaciej (n=mjs@adsl-75-36-149-182.dsl.pltn13.sbcglobal.net)
  66. # [04:53] * Joins: roc (n=roc@121-72-48-235.dsl.telstraclear.net)
  67. # [05:51] * Quits: roc (n=roc@121-72-48-235.dsl.telstraclear.net)
  68. # [06:12] * Joins: mpt_ (n=mpt@222-152-137-123.jetstream.xtra.co.nz)
  69. # [06:19] * Quits: mpt (n=mpt@canonical/launchpad/mpt) (Read error: 110 (Connection timed out))
  70. # [06:28] * Joins: zcorpan (n=zcorpan@c-cb21e353.1451-1-64736c12.cust.bredbandsbolaget.se)
  71. # [06:41] * Quits: jruderman (n=jruderma@corp-241.mountainview.mozilla.com)
  72. # [07:07] * Quits: zcorpan (n=zcorpan@c-cb21e353.1451-1-64736c12.cust.bredbandsbolaget.se) (Read error: 110 (Connection timed out))
  73. # [07:10] * Joins: othermaciej (n=mjs@adsl-75-36-149-182.dsl.pltn13.sbcglobal.net)
  74. # [07:15] * Quits: othermaciej (n=mjs@adsl-75-36-149-182.dsl.pltn13.sbcglobal.net)
  75. # [07:20] * Quits: csarven- (n=nevrasc@modemcable130.251-202-24.mc.videotron.ca) ("http:/www.csarven.ca")
  76. # [07:23] * Joins: jruderman (n=jruderma@c-67-180-15-227.hsd1.ca.comcast.net)
  77. # [07:38] * Joins: roc (n=roc@121-72-37-136.dsl.telstraclear.net)
  78. # [07:44] * Joins: mpt__ (n=mpt@222-152-132-116.jetstream.xtra.co.nz)
  79. # [07:52] * Quits: mpt_ (n=mpt@222-152-137-123.jetstream.xtra.co.nz) (Read error: 110 (Connection timed out))
  80. # [08:15] * Quits: auk (n=scott@h-68-165-22-123.lsanca54.dynamic.covad.net) ("Ex-Chat")
  81. # [08:16] * Quits: hober (n=ted@unaffiliated/hober) ("ERC Version 5.3 (devel) (IRC client for Emacs)")
  82. # [09:01] * Quits: kfish (n=conrad@61.194.21.25) ("Pike!")
  83. # [09:17] * Quits: roc (n=roc@121-72-37-136.dsl.telstraclear.net)
  84. # [09:22] * Joins: tantek (n=tantek@70.13.83.194)
  85. # [09:38] * Quits: tantek (n=tantek@70.13.83.194)
  86. # [10:13] * Joins: ROBOd (n=robod@89.122.216.38)
  87. # [10:31] * Joins: roc (n=roc@121-72-27-118.dsl.telstraclear.net)
  88. # [11:06] * Quits: roc (n=roc@121-72-27-118.dsl.telstraclear.net)
  89. # [11:14] * Joins: webben (n=benh@81.168.106.209)
  90. # [11:46] * Joins: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no)
  91. # [11:59] * Quits: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no) ("This computer has gone to sleep")
  92. # [12:02] * Joins: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
  93. # [12:10] * Joins: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no)
  94. # [12:18] * Quits: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no) ("This computer has gone to sleep")
  95. # [12:26] * Quits: hasather (n=hasather@90-231-107-133-no62.tbcn.telia.com) ("leaving")
  96. # [12:26] * Joins: maikmerten (n=maikmert@T7c27.t.pppool.de)
  97. # [12:34] * Joins: tndH_ (i=Rob@87.102.12.217)
  98. # [12:34] * tndH_ is now known as tndH
  99. # [12:37] * Quits: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
  100. # [13:10] * Joins: hasather (n=hasather@90-231-107-133-no62.tbcn.telia.com)
  101. # [13:14] * Joins: zcorpan (n=zcorpan@c-cb21e353.1451-1-64736c12.cust.bredbandsbolaget.se)
  102. # [14:07] * Quits: zcorpan (n=zcorpan@c-cb21e353.1451-1-64736c12.cust.bredbandsbolaget.se) (Read error: 110 (Connection timed out))
  103. # [14:26] * Joins: webben_ (n=benh@dip5-fw.corp.ukl.yahoo.com)
  104. # [14:42] * Parts: annevk (n=annevk@86.90.70.28)
  105. # [14:44] * Quits: webben (n=benh@81.168.106.209) (Read error: 110 (Connection timed out))
  106. # [14:46] * Joins: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no)
  107. # [14:46] * Quits: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no) (Remote closed the connection)
  108. # [14:46] * Joins: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no)
  109. # [15:10] * Joins: jgraham_ (n=jgraham@81-86-210-2.dsl.pipex.com)
  110. # [15:12] * Quits: jgraham__ (n=jgraham@81-86-212-70.dsl.pipex.com) (Read error: 110 (Connection timed out))
  111. # [15:19] * Joins: mpt_ (n=mpt@222-152-129-163.jetstream.xtra.co.nz)
  112. # [15:20] * Quits: gsnedders (n=gsnedder@host86-145-188-131.range86-145.btcentralplus.com)
  113. # [15:21] * Joins: Lachy_ (n=Lachlan@ti200710a340-2585.bb.online.no)
  114. # [15:21] * Quits: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no) (Read error: 104 (Connection reset by peer))
  115. # [15:27] * Quits: mpt__ (n=mpt@222-152-132-116.jetstream.xtra.co.nz) (Read error: 110 (Connection timed out))
  116. # [15:32] * Joins: gsnedders (n=gsnedder@host86-145-188-131.range86-145.btcentralplus.com)
  117. # [15:39] * Joins: KevinMarks (n=KevinMar@c-98-207-134-151.hsd1.ca.comcast.net)
  118. # [16:14] * Quits: webben_ (n=benh@dip5-fw.corp.ukl.yahoo.com) (Read error: 110 (Connection timed out))
  119. # [16:33] * Quits: Lachy_ (n=Lachlan@ti200710a340-2585.bb.online.no) (Read error: 110 (Connection timed out))
  120. # [17:21] * Joins: webben (n=benh@81.168.106.209)
  121. # [17:21] * Joins: zcorpan (n=zcorpan@c-cb21e353.1451-1-64736c12.cust.bredbandsbolaget.se)
  122. # [17:26] * Quits: webben (n=benh@81.168.106.209) (Client Quit)
  123. # [17:30] <zcorpan> anyone know where the demo this is a screenshot of is? http://annevankesteren.nl/2006/05/canvas-3d
  124. # [17:30] <zcorpan> (is that correct english?)
  125. # [17:37] <zcorpan> or other 3d canvas demos
  126. # [17:37] <zcorpan> found this http://files.myopera.com/grafio/files/demo1.html
  127. # [17:39] <hsivonen> is the experimental build already available for Mac PPC?
  128. # [17:47] <zcorpan> don't think so
  129. # [17:50] <zcorpan> http://www.svgopen.org/papers/abstract3/wowslides+demos.zip has a 3d canvas demo
  130. # [17:50] * Joins: csarven (n=nevrasc@modemcable130.251-202-24.mc.videotron.ca)
  131. # [17:55] * Quits: mpt_ (n=mpt@222-152-129-163.jetstream.xtra.co.nz) ("This computer has gone to sleep")
  132. # [18:14] * Quits: hasather (n=hasather@90-231-107-133-no62.tbcn.telia.com) ("Lost terminal")
  133. # [18:19] * Joins: webben (n=benh@dip5-fw.corp.ukl.yahoo.com)
  134. # [18:35] * Joins: jgraham (n=james@81-86-210-2.dsl.pipex.com)
  135. # [18:44] <Philip`> http://philip.html5.org/demos/canvas/opera-3d/textured-cube.html has a totally exciting cube demo
  136. # [18:45] * Joins: weinig (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net)
  137. # [18:49] * Joins: maikmerten_ (n=maikmert@T7d8f.t.pppool.de)
  138. # [18:49] <zcorpan> apart from the 3d snake game, all demos are a rotating cube, it seems :)
  139. # [18:50] <Philip`> I'm not really sure what else you could do with it :-p
  140. # [18:50] <zcorpan> heh
  141. # [18:51] <Philip`> As far as I can tell, it can't do anything like http://canvex.lazyilluminati.com/misc/3d.html since there's no lighting
  142. # [18:52] <Philip`> and the addVertex(...) API doesn't scale very well when vertexes have coordinates, optionally texture coordinates, optionally normals, and optionally whatever else is added later
  143. # [18:54] * Quits: grimboy (n=grimboy@85.211.235.116) (Read error: 110 (Connection timed out))
  144. # [18:55] * Joins: grimboy (n=grimboy@85.211.238.27)
  145. # [18:57] * Joins: jwalden (n=waldo@RANDOM-SIX-FIFTY.MIT.EDU)
  146. # [19:01] * Quits: weinig|away (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net) (Read error: 110 (Connection timed out))
  147. # [19:05] * Joins: Lachy_ (n=Lachlan@ti200710a340-2585.bb.online.no)
  148. # [19:05] * Quits: Lachy_ (n=Lachlan@ti200710a340-2585.bb.online.no) (Client Quit)
  149. # [19:05] * Joins: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no)
  150. # [19:07] * Quits: maikmerten (n=maikmert@T7c27.t.pppool.de) (Read error: 110 (Connection timed out))
  151. # [19:08] * Quits: jgraham (n=james@81-86-210-2.dsl.pipex.com) ("This computer has gone to sleep")
  152. # [19:37] * Joins: grimeboy (n=grimboy@85.211.237.68)
  153. # [19:50] * Joins: aroben (n=aroben@unaffiliated/aroben)
  154. # [19:52] * Quits: grimboy (n=grimboy@85.211.238.27) (Read error: 110 (Connection timed out))
  155. # [19:58] * Quits: maikmerten_ (n=maikmert@T7d8f.t.pppool.de) (Remote closed the connection)
  156. # [20:04] * Quits: weinig (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net) (Remote closed the connection)
  157. # [20:05] * Joins: weinig (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net)
  158. # [20:06] * Quits: zcorpan (n=zcorpan@c-cb21e353.1451-1-64736c12.cust.bredbandsbolaget.se) (Read error: 110 (Connection timed out))
  159. # [20:12] * Philip` wishes the OpenGL spec was developed more openly
  160. # [20:18] * Quits: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no) ("This computer has gone to sleep")
  161. # [21:00] * Joins: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no)
  162. # [21:13] * Quits: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no) ("This computer has gone to sleep")
  163. # [21:27] * Quits: ROBOd (n=robod@89.122.216.38) ("http://www.robodesign.ro")
  164. # [22:23] * Quits: aroben (n=aroben@unaffiliated/aroben) (Read error: 110 (Connection timed out))
  165. # [22:25] * Quits: weinig (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net)
  166. # [22:29] * Joins: aroben (n=aroben@unaffiliated/aroben)
  167. # [22:30] * Joins: othermaciej (n=mjs@dsl081-048-145.sfo1.dsl.speakeasy.net)
  168. # [22:48] * Joins: mpt (n=mpt@222-152-142-216.jetstream.xtra.co.nz)
  169. # [23:03] * Joins: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no)
  170. # [23:17] * Joins: jgraham (n=james@81-86-210-2.dsl.pipex.com)
  171. # [23:28] * Joins: weinig (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net)
  172. # [23:29] * Joins: annevk (n=annevk@86.90.70.28)
  173. # [23:29] * Quits: weinig (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net) (Remote closed the connection)
  174. # [23:30] * Joins: weinig (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net)
  175. # [23:47] * Quits: jgraham (n=james@81-86-210-2.dsl.pipex.com) ("This computer has gone to sleep")
  176. # Session Close: Sun Nov 18 00:00:01 2007

The end :)