Options:
- # Session Start: Tue Jul 12 00:00:00 2011
- # Session Ident: #html5
- # [00:05] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [00:05] * Joins: nerdfiles (~Adium@2002:62c9:63f7:1234:226:8ff:fede:6969)
- # [00:05] <niftylettuce> tw2113: :)
- # [00:06] * Joins: aidalgol (~user@114-134-7-23.rurallink.co.nz)
- # [00:08] * Quits: plh_ (~plh@30-6-254.wireless.csail.mit.edu) (Quit: always accept cookies)
- # [00:10] * Quits: pnhChris (~cac6982@c-76-117-34-253.hsd1.nj.comcast.net) (Quit: pnhChris)
- # [00:11] <aidalgol> Why is this not drawing any text on the canvas? http://paste.debian.net/122603/
- # [00:12] * Joins: keithclarkcouk (~keithclar@5e0d13ef.bb.sky.com)
- # [00:12] * Quits: Frippe (~Frippe@unaffiliated/frippe) (Quit: ^d)
- # [00:13] * Joins: Frippe (~Frippe@238.218.216.81.static.hud.siw.siwnet.net)
- # [00:13] * Quits: Frippe (~Frippe@238.218.216.81.static.hud.siw.siwnet.net) (Changing host)
- # [00:13] * Joins: Frippe (~Frippe@unaffiliated/frippe)
- # [00:13] * Quits: Ruian (~Ruian@AVelizy-551-1-150-217.w86-217.abo.wanadoo.fr) (Quit: This computer has gone to sleep)
- # [00:13] <tw2113> aidalgol is this supposed to be an "es" ? src="demotivational.es"
- # [00:13] <aidalgol> tw2113: Yes, I just use the ECMAScript extension, but it runs the same as if it had the "js" extension.
- # [00:14] * Quits: zatan_ (~zatan@5ad2ed93.bb.sky.com) (Ping timeout: 255 seconds)
- # [00:14] <aidalgol> Although, the MIME-type is wrong. :P
- # [00:14] <tw2113> i put it into jsbin.com and it pointed ou a missing semicolon after the ctx.fillText()
- # [00:14] <tw2113> and if it's supposed to render the mdn logo, i have it working
- # [00:15] <aidalgol> It renders the logo, but I want it to also draw the text "MDN" on the canvas.
- # [00:15] <tw2113> ah
- # [00:15] <grantg> http://www.grantgalitz.org/setintervalBug.html
- # [00:15] <tw2113> i'm going based off of very basics that i know, i have yet to really mess with canvas yet
- # [00:16] <grantg> numbu: Did you get it?
- # [00:16] * Quits: koggdal (~koggdal@90-231-15-164-no125.tbcn.telia.com) (Quit: koggdal)
- # [00:16] * Joins: levifig_ (u1908@gateway/web/irccloud.com/x-mickniviwhrrjinl)
- # [00:16] <nimbu> yes grantg :)
- # [00:17] <nimbu> grantg: even writing will take time
- # [00:17] <nimbu> so you should probably write it to an object
- # [00:17] <grantg> heh
- # [00:17] <nimbu> and then render it after like 5 seconds
- # [00:18] <nimbu> :P
- # [00:18] <grantg> it updates the timer once each callback
- # [00:18] <grantg> not that bad
- # [00:18] <nimbu> yes i tried to do that with a console.log and the time was drastically diff
- # [00:18] <grantg> just above 60 fps
- # [00:18] <grantg> heh
- # [00:18] <grantg> this averages it though
- # [00:19] <grantg> what we're really getting ->over time<-
- # [00:19] <aidalgol> Same problem, but slightly more readable code: http://paste.debian.net/122607/
- # [00:19] <nimbu> yes i notice that.
- # [00:20] <grantg> if a browser is seriously delaying itself, like with what I'm seeing with chrome, then that's an implementation prob
- # [00:20] <grantg> Since the browser should be able to make the next callback possibly come a little earlier to adjust
- # [00:21] <grantg> firefox is way better for me
- # [00:21] <grantg> gets way closer to 16.00
- # [00:21] * Parts: danbeam (~anonymous@unaffiliated/danbeam) ("lates")
- # [00:21] <keithclarkcouk> have you considered passing a delta time between timeouts so you can adjust for timer lag?
- # [00:22] <tw2113> no idea aidalgol :D sorry i can't help more
- # [00:22] <grantg> this is a setInterval
- # [00:22] <keithclarkcouk> it's what I do with games
- # [00:22] <grantg> should be averaging 16 ms here if set as such
- # [00:23] <grantg> browsers can manip their internal timers so they can get 16 ms if there's no system event blocking / other program blocking, and we finished the last callback on time.
- # [00:23] <moo-_-> keithclarkcouk: always get a clock from Date
- # [00:23] <moo-_-> timeouts are unreliable
- # [00:23] * Quits: ericduran (~ericduran@173-203-243-241.static.cloud-ips.com) (Quit: ericduran)
- # [00:24] <keithclarkcouk> moo-_-: yes they are!
- # [00:24] <grantg> heh
- # [00:24] <moo-_-> https://github.com/miohtama/slideshow9000/blob/master/slideshow/static/slideshow.js#L279 here is some animation loop I came up while ago
- # [00:26] <nimbu> grantg: http://jsfiddle.net/4TDgY/5/
- # [00:26] <nimbu> Chrome does seem to get close to 16
- # [00:26] * Quits: Frippe (~Frippe@unaffiliated/frippe) (Quit: Computer has gone to sleep)
- # [00:26] <BrianBlakely> http://www.neogaf.com/forum/showthread.php?p=29238524
- # [00:26] <keithclarkcouk> I managed to get finer granularity of timers in appcelerator by hooking into hardware accelerated animations and using the complete event
- # [00:26] <BrianBlakely> One of the best things Opera has ever done
- # [00:26] <BrianBlakely> Actually leverage the console in a console browser!
- # [00:27] <keithclarkcouk> I wonder is you could hook into transitionEnd to get better control over timings?
- # [00:27] <nimbu> keithclarkcouk: i actually tested it
- # [00:27] <grantg> nimbu: You changed it
- # [00:27] <nimbu> i mean i tested animation delay.
- # [00:27] <nimbu> grantg: of course.
- # [00:27] <grantg> and you killed it from doing a long running average
- # [00:27] <grantg> :/
- # [00:27] * Quits: Saadi (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 250 seconds)
- # [00:27] <nimbu> transition delay that is.
- # [00:27] <nimbu> grantg: i am testing it for 1000 iterations
- # [00:27] <grantg> make sure counter++ is in the right position
- # [00:27] <nimbu> i think thats pretty long.
- # [00:27] * Quits: skqr (~skqr@extwdig.dig.com) (Ping timeout: 255 seconds)
- # [00:28] <keithclarkcouk> nimbu: how did it turn out?
- # [00:28] * Joins: DarkHouse (DarkHouse@CPE00222d5a9ea8-CM00222d5a9ea5.cpe.net.cable.rogers.com)
- # [00:28] <grantg> you're updating counter before updating the div
- # [00:28] * Joins: Saadi (~mslfreak@113.203.150.197)
- # [00:28] * Quits: Saadi (~mslfreak@113.203.150.197) (Changing host)
- # [00:28] * Joins: Saadi (~mslfreak@unaffiliated/saadibrahim)
- # [00:28] * Joins: wookiehangover (~wookiehan@173-8-247-218-Colorado.hfc.comcastbusiness.net)
- # [00:28] <nimbu> grantg: the div is not updated by the counter
- # [00:28] <grantg> so you'll get a lower number than the real average. fyi
- # [00:29] * Quits: levifig_ (u1908@gateway/web/irccloud.com/x-mickniviwhrrjinl) (Quit: Updating details, brb)
- # [00:29] <nimbu> grantg: domer = timeDiff / counter; counter++; is what i have.
- # [00:29] <nimbu> which is what you had too.
- # [00:29] <keithclarkcouk> I guess requestAnimationFrame will solve this eventually
- # [00:29] <grantg> oh heh
- # [00:30] <grantg> you moved it around. :P
- # [00:30] <grantg> yeah
- # [00:30] <grantg> yours is correct
- # [00:30] <grantg> though chrome on mac os x shows a bad delay for me
- # [00:30] * Quits: David_Bradbury (~chatzilla@75-147-178-254-Washington.hfc.comcastbusiness.net) (Quit: ChatZilla 0.9.87 [Firefox 5.0/20110615151330])
- # [00:30] <keithclarkcouk> Latest IE10 PP implements in and it works really well
- # [00:30] * Joins: taar779 (~taar779@d24-57-144-141.home.cgocable.net)
- # [00:31] <nimbu> keithclarkcouk: i did this http://jsfiddle.net/nimbu/p5ztz/45/
- # [00:32] <nimbu> reqAnimFrame fires better once it gets going but the initial firing rate is pretty erratic
- # [00:32] * Joins: taar779_ (~taar779@d24-57-144-141.home.cgocable.net)
- # [00:33] * Quits: taar779_ (~taar779@d24-57-144-141.home.cgocable.net) (Client Quit)
- # [00:34] <keithclarkcouk> jsfiddle is not iPad friendly :(
- # [00:37] <moo-_-> FYI if you have any ideas http://stackoverflow.com/questions/6657491/detecting-powerful-browser-which-able-to-do-graphics-with-decent-speed
- # [00:37] * Quits: timmywil (~timmywil@sec1.epb.net) (Ping timeout: 255 seconds)
- # [00:37] <moo-_-> (related to the animation discussion)
- # [00:37] * grantg implements an auto-frameskip for the GBC and GBA emulators in JavaScript
- # [00:37] <grantg> I had to implement a workaround for buggy browsers that delay setInterval more than they should though
- # [00:38] <grantg> so I ninja'd in a running average that checks for a certain limit to be passed before frame skipping
- # [00:38] <grantg> (chrome needs this)
- # [00:38] <nimbu> oh srry keithclarkcouk you can trry http://jsfiddle.net/nimbu/p5ztz/45/show/
- # [00:38] <nimbu> oops just add /show/ and it should render?
- # [00:38] <nimbu> or maybe coz safari is relly old
- # [00:39] * Quits: oknoway (~oknoway@72.11.82.226) (Quit: oknoway)
- # [00:40] <keithclarkcouk> nimbu: problem is I can't scroll through the code because jsfiddle won't show scrollbars. I have bookmarked it tho, i'll take a look when I get to a proper computer.
- # [00:40] <nimbu> ohh
- # [00:40] <nimbu> :/
- # [00:40] <niftylettuce> lol whois result for google.com brings up funny whois.syra.com.au entry
- # [00:41] <keithclarkcouk> is the startup delay the issue?
- # [00:41] * Quits: nerdfiles (~Adium@2002:62c9:63f7:1234:226:8ff:fede:6969) (Read error: No route to host)
- # [00:41] <nimbu> keithclarkcouk: transition delay does not fire accurately
- # [00:41] <nimbu> in any browser.
- # [00:41] * Joins: nerdfiles (~Adium@c-98-201-99-247.hsd1.tx.comcast.net)
- # [00:42] <keithclarkcouk> oh. I wonder how accurate transition duration is?
- # [00:43] <nimbu> yeah well i didnt go there :)
- # [00:43] * Quits: adrian_o (~adrian_o@160.79.2.194) (Remote host closed the connection)
- # [00:44] <keithclarkcouk> cool, that means I have something to experiment with tomorrow :)
- # [00:44] <nimbu> yayy
- # [00:46] <grantg> heh, saw someone recently try to run firefox 1.5 on mac os x lion
- # [00:46] <grantg> did not work. lol
- # [00:47] * Joins: FylGood (~fylgood@pool-108-48-75-254.washdc.fios.verizon.net)
- # [00:48] * Joins: ModusPwnens (~gstreamer@adsl-75-11-162-150.dsl.sndg02.sbcglobal.net)
- # [00:48] <uf0> coda or dreamweaver?
- # [00:48] <ModusPwnens> Is anyone here knowledgeable about how to use vlc web plugin with html5 video tag?
- # [02:50] * Disconnected
- # [02:51] * Attempting to rejoin channel #html5
- # [02:51] * Rejoined channel #html5
- # [02:51] * Topic is 'Welcome, amigos :: Ask any question about html5 & Friends. || Author Spec: http://dev.w3.org/html5/spec-author-view/ || Full spec: http://whatwg.org/html5 || Also: http://html5rocks.com http://diveintohtml5.org http://mzl.la/9giLwR http://html5homi.es'
- # [02:51] * Set by marienz!~marienz@freenode/staff/marienz on Fri Nov 05 18:43:30
- # [02:52] * Quits: phishbot (~runtalan@unaffiliated/phishbot) (Ping timeout: 258 seconds)
- # [02:53] * Quits: nixoeen (~nixoeen@unaffiliated/nixoeen) (Quit: nixoeen)
- # [03:03] * Quits: JonathanNeal (~rztjonath@rrcs-76-79-114-212.west.biz.rr.com) (Read error: Connection reset by peer)
- # [03:04] * Joins: chipnt (~ciprian.o@paris-18.progdev.fr)
- # [03:04] * Quits: dgathright (~dgathrigh@nat/yahoo/x-sfxahpwupalooilo) (Read error: Connection reset by peer)
- # [03:05] * Joins: techrush (~techrush@adsl-75-4-217-241.dsl.irvnca.sbcglobal.net)
- # [03:06] * Joins: obert- (~obert@host78-20-dynamic.10-87-r.retail.telecomitalia.it)
- # [03:08] * Quits: obert- (~obert@host78-20-dynamic.10-87-r.retail.telecomitalia.it) (Client Quit)
- # [03:11] <uf0> guys making my transition from windows to mac
- # [03:12] <uf0> i used to use WAMP to set up my localhost apache server
- # [03:12] <uf0> what do i use now?
- # [03:12] * Quits: wdpro_kevin (~Adium@bur-inet-cp-0.disney.com) (Ping timeout: 250 seconds)
- # [03:12] <tw2113> mamp
- # [03:12] <uf0> tw2113: u use mamp?
- # [03:12] <tw2113> nope
- # [03:13] <uf0> so what do you use personally
- # [03:13] <tw2113> i usually just do all my fun work on a live server
- # [03:13] <uf0> by the way hey :)
- # [03:13] <uf0> it's been awhile
- # [03:13] <tw2113> and if i were to set up a local instance, it'd be xampp
- # [03:13] <uf0> my pc died and i decided to say fuck it
- # [03:13] <uf0> going mac
- # [03:14] <tw2113> hmm, apparently this page has builds for win/mac/linux http://www.apachefriends.org/en/xampp.html
- # [03:14] <tw2113> heck, i installed that on a flash drive at one point
- # [03:15] <tw2113> their mobile version
- # [03:15] <uf0> i see..
- # [03:15] <uf0> yea i'm googling right now
- # [03:15] <uf0> xampp vs mamp
- # [03:16] <tw2113> http://portableapps.com/apps
- # [03:19] * Joins: wookiehangover (~wookiehan@c-98-245-45-244.hsd1.co.comcast.net)
- # [03:22] * Joins: aidalgol (~user@202.36.179.68)
- # [03:25] * Joins: phishbot (~runtalan@unaffiliated/phishbot)
- # [03:26] * Quits: aidalgol (~user@202.36.179.68) (Client Quit)
- # [05:26] * Disconnected
- # [05:27] * Attempting to rejoin channel #html5
- # [05:27] * Rejoined channel #html5
- # [05:27] * Topic is 'Welcome, amigos :: Ask any question about html5 & Friends. || Author Spec: http://dev.w3.org/html5/spec-author-view/ || Full spec: http://whatwg.org/html5 || Also: http://html5rocks.com http://diveintohtml5.org http://mzl.la/9giLwR http://html5homi.es'
- # [05:27] * Set by marienz!~marienz@freenode/staff/marienz on Fri Nov 05 18:43:30
- # [05:28] <aidalgol> http://paste.debian.net/122627/ runs with the following error.
- # [05:28] <aidalgol> Error: uncaught exception: [Exception... "An invalid or illegal string was specified" code: "12" nsresult: "0x8053000c (NS_ERROR_DOM_SYNTAX_ERR)" location: "file:///home/aidan/src-aidan/demotivational/demotivational.es Line: 14"]
- # [05:28] * Joins: digitalfiz (~digitalfi@2001:470:1f0e:d09::2)
- # [05:29] * Joins: littlebearz (littlebear@CPE5cd9985b287f-CM0012c99a372c.cpe.net.cable.rogers.com)
- # [05:29] <aidalgol> What's wrong with the string? It looks fine to me.
- # [05:32] * Quits: techrush (~techrush@adsl-75-4-217-241.dsl.irvnca.sbcglobal.net) (Ping timeout: 260 seconds)
- # [05:35] <snover> aidalgol: script src, or inline script; pick one.
- # [05:35] * Joins: phishbot (~runtalan@unaffiliated/phishbot)
- # [05:36] <aidalgol> snover: Er, I use src, but I put it inline for pasting.
- # [05:36] * Quits: JoshManders (~josh@unaffiliated/killswitch) (Read error: Connection reset by peer)
- # [05:36] * Joins: JoshManders (~josh@173-17-81-122.client.mchsi.com)
- # [05:37] * JoshManders is now known as Guest63285
- # [05:37] * Guest63285 is now known as JoshManders
- # [05:37] * Quits: JoshManders (~josh@173-17-81-122.client.mchsi.com) (Changing host)
- # [05:37] * Joins: JoshManders (~josh@unaffiliated/killswitch)
- # [05:37] <snover> aidalgol: ok. well, I don’t know why measureText would be returning that
- # [05:38] <aidalgol> snover: Hmm...
- # [05:39] <snover> you’ll surely not be interested to know that mozMeasureText works fine…
- # [05:41] * Quits: brettgoulder (~brettgoul@c-76-120-64-228.hsd1.co.comcast.net) (Remote host closed the connection)
- # [05:41] <snover> and that there does not seem to be a bug report, which is strange since it does seem to be quite broken
- # [05:44] * Quits: phishbot (~runtalan@unaffiliated/phishbot) (Quit: Leaving...)
- # [05:44] * Joins: phishbot (~runtalan@unaffiliated/phishbot)
- # [05:46] * Quits: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net) (Read error: Operation timed out)
- # [05:46] * Joins: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net)
- # [05:48] * Joins: brettgoulder (~brettgoul@c-76-120-64-228.hsd1.co.comcast.net)
- # [05:49] <aidalgol> snover: OK, that's odd.
- # [05:49] <aidalgol> It's documented without the "moz" prefix. https://developer.mozilla.org/en/Drawing_text_using_a_canvas#measureText%28%29
- # [05:50] <snover> aidalgol: and with it, two headers down :)
- # [05:50] <snover> they should be calling the exact same code so why the fuck one works and the other one does not is very mysterious
- # [05:51] <snover> oh wait
- # [05:51] <snover> I see what’s going on here
- # [05:51] <snover> the return value of measureText is an object, not a number
- # [05:51] <snover> the return value of mozMeasureText is a number
- # [05:51] <snover> you want to access measureText().width
- # [05:52] * Joins: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
- # [05:53] * Quits: themiddleman (~rob@c-67-186-244-235.hsd1.ut.comcast.net) (Remote host closed the connection)
- # [05:53] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 250 seconds)
- # [05:53] * Quits: smus (~smus@67.218.105.98) (Remote host closed the connection)
- # [05:53] <aidalgol> snover: Oh, OK. How did you find that out?
- # [05:53] <aidalgol> (And, more importantly, how do I convert it to a number?
- # [05:54] <snover> aidalgol: it’s there, on that page
- # [05:54] <snover> right where you linked
- # [05:54] <snover> Return value
- # [05:54] <snover> “An nsIDOMTextMetrics object…”
- # [05:54] <chriseppstein> nimbu: yt? can I have that link to the js api for media queries again?
- # [05:55] * chriseppstein asks sheepishly
- # [05:55] * Joins: nonge__ (~nonge@p5082B626.dip.t-dialin.net)
- # [05:55] <nimbu> chriseppstein: lookings
- # [05:56] <nimbu> https://developer.mozilla.org/en/CSS/Using_media_queries_from_code
- # [05:56] <chriseppstein> <3
- # [05:57] <aidalgol> snover: Oh, so I assumed that it was some convoluted form of a string.
- # [05:57] <snover> firefox has shit error reporting sometimes
- # [05:59] * Quits: nonge_ (~nonge@p5B326D5E.dip.t-dialin.net) (Ping timeout: 264 seconds)
- # [06:01] * Joins: LongBeach (~mike@AFontenayssB-152-1-56-4.w82-121.abo.wanadoo.fr)
- # [06:01] <aidalgol> Oh, great, and nsIDOMTextMetrics has no documentation.
- # [06:01] <snover> aidalgol: read carefully
- # [06:02] <snover> if it helps pretend it says “property” instead of “attribute” because it should :)
- # [08:02] * Disconnected
- # [08:03] * Attempting to rejoin channel #html5
- # [08:03] * Rejoined channel #html5
- # [08:03] * Topic is 'Welcome, amigos :: Ask any question about html5 & Friends. || Author Spec: http://dev.w3.org/html5/spec-author-view/ || Full spec: http://whatwg.org/html5 || Also: http://html5rocks.com http://diveintohtml5.org http://mzl.la/9giLwR http://html5homi.es'
- # [08:03] * Set by marienz!~marienz@freenode/staff/marienz on Fri Nov 05 18:43:30
- # [08:04] * Quits: Jackneill (~Jackneill@unaffiliated/jackneill) (Read error: Connection reset by peer)
- # [08:05] * Joins: skylamer` (cgskylamer@78.90.213.55)
- # [08:06] * Joins: Jackneill (~Jackneill@unaffiliated/jackneill)
- # [08:08] * Joins: niftylettuce (~niftylett@c-71-61-47-144.hsd1.pa.comcast.net)
- # [08:09] * Joins: SaadIbrahim (~mslfreak@113.203.148.193)
- # [08:09] * Quits: SaadIbrahim (~mslfreak@113.203.148.193) (Changing host)
- # [08:09] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
- # [08:12] * Joins: Saadi (~mslfreak@113.203.148.193)
- # [08:12] * Quits: Saadi (~mslfreak@113.203.148.193) (Changing host)
- # [08:12] * Joins: Saadi (~mslfreak@unaffiliated/saadibrahim)
- # [08:15] * Joins: spliter (~spliter@77.88.72.162)
- # [08:17] * Quits: Saadi (~mslfreak@unaffiliated/saadibrahim) (Client Quit)
- # [08:22] * Joins: Ruian (~Ruian@AVelizy-551-1-150-217.w86-217.abo.wanadoo.fr)
- # [08:23] * Parts: snover (~Adium@unaffiliated/snover)
- # [08:23] * Quits: wookiehangover (~wookiehan@c-98-245-45-244.hsd1.co.comcast.net) (Quit: Leaving...)
- # [08:25] * Quits: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t) (Read error: Connection reset by peer)
- # [08:28] * Joins: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t)
- # [08:31] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 276 seconds)
- # [10:36] * Disconnected
- # [10:37] * Attempting to rejoin channel #html5
- # [10:37] * Rejoined channel #html5
- # [10:37] * Topic is 'Welcome, amigos :: Ask any question about html5 & Friends. || Author Spec: http://dev.w3.org/html5/spec-author-view/ || Full spec: http://whatwg.org/html5 || Also: http://html5rocks.com http://diveintohtml5.org http://mzl.la/9giLwR http://html5homi.es'
- # [10:37] * Set by marienz!~marienz@freenode/staff/marienz on Fri Nov 05 18:43:30
- # [10:40] * Joins: monteslu (~monteslu@ip68-109-170-79.ph.ph.cox.net)
- # [10:41] * Quits: Jackneill (~Jackneill@unaffiliated/jackneill) (Remote host closed the connection)
- # [10:41] * Quits: xtsjta (~chaos@130.225.196.9) (Quit: *)
- # [10:41] * Joins: jeremyselier (u2513@gateway/web/irccloud.com/x-fjicwxvqinkkfczu)
- # [10:42] * Quits: niftylettuce (~niftylett@c-71-61-47-144.hsd1.pa.comcast.net) (Ping timeout: 255 seconds)
- # [10:43] * Joins: Jackneill (~Jackneill@unaffiliated/jackneill)
- # [10:46] * Joins: mkwst (u395@gateway/web/irccloud.com/x-coihmswjrmubijjy)
- # [10:51] * Quits: phishbot (~runtalan@unaffiliated/phishbot) (Remote host closed the connection)
- # [10:57] * dr0id is now known as NoNoNoNo
- # [11:01] * Joins: _aron (~aron@87-194-128-46.bethere.co.uk)
- # [11:01] * Joins: Evanescence (~chris@122.237.42.42)
- # [11:06] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Remote host closed the connection)
- # [13:08] * Disconnected
- # [13:09] * Attempting to rejoin channel #html5
- # [13:09] * Rejoined channel #html5
- # [13:09] * Topic is 'Welcome, amigos :: Ask any question about html5 & Friends. || Author Spec: http://dev.w3.org/html5/spec-author-view/ || Full spec: http://whatwg.org/html5 || Also: http://html5rocks.com http://diveintohtml5.org http://mzl.la/9giLwR http://html5homi.es'
- # [13:09] * Set by marienz!~marienz@freenode/staff/marienz on Fri Nov 05 18:43:30
- # [13:10] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 264 seconds)
- # [13:21] <tomh-> anyone knows what the scope of localstorage is supposed to be? per site? per window?
- # [13:26] * Joins: RaceCondition (~erik@gprs-inet-65-12.elisa.ee)
- # [13:26] <shwetank> per site
- # [13:28] <shwetank> basically on a per-origin basis.
- # [13:30] <shwetank> which means subdomains will share that info
- # [13:33] * Quits: shipit (~shipit@204-15-2-155-static.ipnetworksinc.net) (Remote host closed the connection)
- # [13:33] * psynaptic_ is now known as psynaptic
- # [13:33] * Quits: Ruian (~Ruian@LPuteaux-151-41-23-90.w217-128.abo.wanadoo.fr) (Read error: Connection reset by peer)
- # [13:33] <moo-_-> has it any control over origin access like cookies?
- # [13:34] * Quits: Evanescence (~chris@122.237.42.42) (Quit: WeeChat 0.3.4)
- # [13:36] * Joins: FireFly (~firefly@unaffiliated/firefly)
- # [13:37] * Joins: iraebrasil (~iraebrasi@187.37.40.159)
- # [13:37] * Joins: nixoeen (~nixoeen@gb075.stw.stud.uni-saarland.de)
- # [13:37] * Quits: nixoeen (~nixoeen@gb075.stw.stud.uni-saarland.de) (Changing host)
- # [13:37] * Joins: nixoeen (~nixoeen@unaffiliated/nixoeen)
- # [13:37] * Parts: nixoeen (~nixoeen@unaffiliated/nixoeen)
- # [15:41] * Disconnected
- # [15:43] * Attempting to rejoin channel #html5
- # [15:43] * Rejoined channel #html5
- # [15:43] * Topic is 'Welcome, amigos :: Ask any question about html5 & Friends. || Author Spec: http://dev.w3.org/html5/spec-author-view/ || Full spec: http://whatwg.org/html5 || Also: http://html5rocks.com http://diveintohtml5.org http://mzl.la/9giLwR http://html5homi.es'
- # [15:43] * Set by marienz!~marienz@freenode/staff/marienz on Fri Nov 05 18:43:30
- # [15:43] * Quits: buribux (~buribu@201-43-253-153.dsl.telesp.net.br) (Read error: Connection reset by peer)
- # [15:45] * Parts: memoryleak (~memorylea@hotelplan.hotelplan.net)
- # [15:45] * Joins: taar779 (~taar779@205.211.88.4)
- # [15:46] * Quits: vier (~Josh@CPE-60-231-155-178.static.qld.bigpond.net.au) (Quit: Computer has gone to sleep)
- # [15:52] * Joins: chachan (~quassel@190.72.18.149)
- # [15:52] * Joins: thatryan (~thatryan@c-24-4-109-126.hsd1.ca.comcast.net)
- # [15:54] * Joins: skylamer` (cgskylamer@78.90.213.55)
- # [15:55] * Joins: CrashTest_ (~CrashTest@c-66-235-13-223.sea.wa.customer.broadstripe.net)
- # [16:02] * Joins: adrian_o (~adrian_o@160.79.2.194)
- # [16:02] * Joins: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net)
- # [16:02] * nimbupani is now known as nimbu
- # [16:03] * Joins: phishy__ (~jeff@pat-1.broadinstitute.org)
- # [16:03] * Quits: Ankheg (~Ankheg@91.224.77.4) (Quit: Leaving.)
- # [16:04] * Quits: gavin_huang (~gravof@115.220.110.24) (Read error: Connection reset by peer)
- # [16:06] * Joins: SaadIbrahim (~mslfreak@113.203.159.70)
- # [16:06] * Quits: SaadIbrahim (~mslfreak@113.203.159.70) (Changing host)
- # [16:06] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
- # [16:06] * SaadIbrahim is now known as Saadi
- # [16:08] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
- # [16:11] * Parts: shichuan (~Shi_Chuan@cm182.eta124.maxonline.com.sg)
- # [16:11] * Joins: seawise_ (~oleg@77.35.249.172)
- # [16:11] * Quits: seawise (~oleg@77.35.249.172) (Read error: Connection reset by peer)
- # [16:11] * seawise_ is now known as seawise
- # [16:12] * Quits: koggdal (~koggdal@host-90-236-122-93.mobileonline.telia.com) (Quit: koggdal)
- # [18:13] * Disconnected
- # [18:15] * Attempting to rejoin channel #html5
- # [18:15] * Rejoined channel #html5
- # [18:15] * Topic is 'Welcome, amigos :: Ask any question about html5 & Friends. || Author Spec: http://dev.w3.org/html5/spec-author-view/ || Full spec: http://whatwg.org/html5 || Also: http://html5rocks.com http://diveintohtml5.org http://mzl.la/9giLwR http://html5homi.es'
- # [18:15] * Set by marienz!~marienz@freenode/staff/marienz on Fri Nov 05 18:43:30
- # [18:19] * Joins: brettgoulder (~brettgoul@173-164-36-90-colorado.hfc.comcastbusiness.net)
- # [18:19] * Joins: RaceCondition (~erik@gprs-inet-65-26.elisa.ee)
- # [18:19] <phrearch> hi
- # [18:19] <phrearch> is the websocket protocol changed in firefox nightly?
- # [18:20] * Quits: metapeter (~metapeter@unaffiliated/metapeter) (Quit: metapeter)
- # [18:20] * Quits: ryanneufeld (~ryanneufe@S01060019e1edefc1.vc.shawcable.net) (Remote host closed the connection)
- # [18:23] * Joins: dgathright (~dgathrigh@c-71-204-165-122.hsd1.ca.comcast.net)
- # [18:24] * Joins: zatan__ (~zatan@5ad2edaf.bb.sky.com)
- # [18:27] * Quits: JoshManders (~josh@unaffiliated/killswitch) (Remote host closed the connection)
- # [18:29] * Joins: JoshManders (~josh@unaffiliated/killswitch)
- # [18:29] * Quits: axelator (~chatzilla@cn-sfo1-natout.cnet.com) (Remote host closed the connection)
- # [18:30] * Joins: bEEEviz (~Manuel@46.115.0.214)
- # [18:30] * Joins: axelator (~chatzilla@cn-sfo1-natout.cnet.com)
- # [18:33] * Quits: diamonds (~diamonds@unaffiliated/t0nic) (Quit: away)
- # [18:33] * Quits: zatan__ (~zatan@5ad2edaf.bb.sky.com) (Ping timeout: 240 seconds)
- # [18:34] * Joins: zatan__ (~zatan@5ad28990.bb.sky.com)
- # [18:35] * Joins: rros (~robert@78-27-52-235.dsl.alice.nl)
- # [18:35] * Joins: NetRoY (~NetRoY@122.167.219.113)
- # [18:35] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Quit: Leaving.)
- # [18:36] * Joins: shwetank (~emailshwe@122.173.149.15)
- # [18:36] * ericduran is now known as ericduran|afk
- # [18:36] * Parts: shwetank (~emailshwe@122.173.149.15)
- # [18:37] * Joins: benv (~benv@50-0-80-160.dsl.static.sonic.net)
- # [18:37] * Quits: teear (teear@84-231-25-80.elisa-mobile.fi) (Remote host closed the connection)
- # [18:38] * Quits: RaceCondition (~erik@gprs-inet-65-26.elisa.ee) (Ping timeout: 260 seconds)
- # [18:40] * Joins: teear (teear@84-231-25-80.elisa-mobile.fi)
- # [18:42] * Quits: seawise (~oleg@77.35.249.172) (Quit: seawise)
- # [18:46] * Joins: ryanneufeld (~ryanneufe@S01060019e1edefc1.vc.shawcable.net)
- # [18:47] * Joins: oD`Liberate (~Liberate@over-dozed.com)
- # [18:49] * oD`Liberate is now known as Liberate
- # [18:49] * Liberate is now known as LittleFool
- # [18:51] <jetienne> phrearch: you can try to ask on irc.mozilla.org #firefox
- # [18:51] * Joins: ModusPwnens (~gstreamer@adsl-75-11-162-150.dsl.sndg02.sbcglobal.net)
- # [18:52] * Quits: JoshManders (~josh@unaffiliated/killswitch) (Ping timeout: 260 seconds)
- # [18:53] * Joins: littlebearz (littlebear@141.117.185.109)
- # [18:55] * Quits: smus (~smus@67.218.106.198) (Remote host closed the connection)
- # [18:57] <ModusPwnens> Does anyone here know how to use the vlc web plugin with the html5 video tag?
- # [18:58] <jetienne> ModusPwnens: there is a confusion. vlc web plugin is a plugin. so not in the html5 video tag
- # [18:58] <jetienne> ModusPwnens: there is a #vlc channel which can give details on vlc web plugin tho
- # [18:59] <jetienne> ModusPwnens: html5 video tag got its own player inside the browser
- # [18:59] * Joins: smus (~smus@nat/google/x-wdqlbtvupbhpitss)
- # [18:59] <Rik`> phrearch: Aurora has support for the -07 version of the protocol
- # [19:00] <jetienne> Rik`: usable by default or requiring a option to be set ?
- # [19:00] <Rik`> usable by default but prefixed
- # [19:00] <Rik`> https://developer.mozilla.org/en/WebSockets/WebSockets_reference/WebSocket
- # [19:00] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
- # [19:00] <ModusPwnens> jetienne: Yes, I know, but the vlc web plugin specifically states that it can be used with the video tag
- # [19:01] <jetienne> Rik`: ok tahnks
- # [19:01] <ModusPwnens> http://wiki.videolan.org/Documentation:WebPlugin
- # [19:01] <ModusPwnens> Its bolded in the first paragraph.
- # [19:01] * Joins: bEEEeviz (~Manuel@46.115.11.254)
- # [19:01] * Quits: NetRoY (~NetRoY@122.167.219.113) (Quit: NetRoY)
- # [19:02] * Joins: jeffszusz (~jeffszusz@205.211.88.4)
- # [19:03] * Quits: bEEEviz (~Manuel@46.115.0.214) (Ping timeout: 260 seconds)
- # [19:04] * Quits: bEEEeviz (~Manuel@46.115.11.254) (Read error: Connection reset by peer)
- # [19:06] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Quit: Leaving.)
- # [19:07] * Quits: littlebearz (littlebear@141.117.185.109) (Ping timeout: 252 seconds)
- # [19:07] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
- # [19:07] * Joins: saaaaaad (~mslfreak@113.203.159.70)
- # [19:07] * Quits: saaaaaad (~mslfreak@113.203.159.70) (Changing host)
- # [19:07] * Joins: saaaaaad (~mslfreak@unaffiliated/saadibrahim)
- # [19:07] * Quits: Saadi (~mslfreak@unaffiliated/saadibrahim) (Disconnected by services)
- # [19:07] * saaaaaad is now known as Saadi
- # [19:07] * Joins: diamonds (~diamonds@static-155-212-205-238.mas.onecommunications.net)
- # [19:07] * Quits: diamonds (~diamonds@static-155-212-205-238.mas.onecommunications.net) (Changing host)
- # [19:07] * Joins: diamonds (~diamonds@unaffiliated/t0nic)
- # [19:08] * Quits: DarkHouse (DarkHouse@CPE00222d5a9ea8-CM00222d5a9ea5.cpe.net.cable.rogers.com) (Read error: Operation timed out)
- # [19:09] <ModusPwnens> Ok, how bout a different question: Is it possible to use the video tag for rtp streams?
- # [19:09] * Joins: snover (~Adium@unaffiliated/snover)
- # [19:10] * Quits: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com) (Quit: Reading http://davidwalsh.name)
- # [19:11] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 260 seconds)
- # [19:12] * Joins: RaceCondition (~erik@82.131.63.26.cable.starman.ee)
- # [19:12] * Quits: Saadi (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 264 seconds)
- # [21:12] * Disconnected
- # [21:13] * Attempting to rejoin channel #html5
- # [21:13] * Rejoined channel #html5
- # [21:13] * Topic is 'Welcome, amigos :: Ask any question about html5 & Friends. || Author Spec: http://dev.w3.org/html5/spec-author-view/ || Full spec: http://whatwg.org/html5 || Also: http://html5rocks.com http://diveintohtml5.org http://mzl.la/9giLwR http://html5homi.es'
- # [21:13] * Set by marienz!~marienz@freenode/staff/marienz on Fri Nov 05 18:43:30
- # [21:13] <ModusPwnens> it doesnt seem like overlays affect the performance very much.
- # [21:14] * Joins: fubd (407d89fa@gateway/web/freenode/ip.64.125.137.250)
- # [21:14] <ModusPwnens> according to the videos shown on this site: http://allvideos.fritz-elfert.de/local-content.html?start=12
- # [21:16] <fubd> so i'm checking out projects like Impact that compile to Javascript<->native GL apps on ios, and use <canvas> or even webgl when possible on the browser
- # [21:16] <fubd> does anyone know if there are any open source 'competitors' that do a similar thing?
- # [21:16] * Joins: aaaaaaaaaaaaa (~mslfreak@unaffiliated/saadibrahim)
- # [21:16] * Quits: Saadi (~mslfreak@unaffiliated/saadibrahim) (Disconnected by services)
- # [21:16] * aaaaaaaaaaaaa is now known as Saadi
- # [21:20] * Joins: iraebrasil (~iraebrasi@189.121.103.26)
- # [21:24] * Quits: iraebrasil (~iraebrasi@189.121.103.26) (Ping timeout: 258 seconds)
- # [21:25] * Quits: fubd (407d89fa@gateway/web/freenode/ip.64.125.137.250) (Quit: Page closed)
- # [21:26] <Aric> http://andrewvos.com/2011/02/21/amount-of-profanity-in-git-commit-messages-per-programming-language/
- # [21:27] <Aric> PHP has the lowest and Ruby the most, interesting
- # [21:31] * Quits: obert (~quassel@host78-20-dynamic.10-87-r.retail.telecomitalia.it) (Remote host closed the connection)
- # [21:32] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
- # [21:33] * Aric is now known as Ali
- # [21:33] * Ali is now known as Aric
- # [21:34] <cgcardona> haha
- # [21:36] <ModusPwnens> Hmm, can rtp be treated the same way as rtmp? I can find examples of rtmp in flowplayer docs, but nothing on rtp
- # [21:37] * Joins: dmachi (~dmachi@pool-71-254-65-21.ronkva.east.verizon.net)
- # [21:38] * Joins: shachaf (~shachaf@204.109.63.130)
- # [21:41] <ModusPwnens> In fact, there doesn't seem to be a lot of information in general about rtp streams =/
- # [21:42] * Joins: dgathright (~dgathrigh@nat/yahoo/x-czndscjxrvdvmfdi)
- # [21:44] * Parts: Ramosa (Ramosa@unaffiliated/harald/x-000000001)
- # [23:44] * Disconnected
- # [23:45] * Attempting to rejoin channel #html5
- # [23:45] * Rejoined channel #html5
- # [23:45] * Topic is 'Welcome, amigos :: Ask any question about html5 & Friends. || Author Spec: http://dev.w3.org/html5/spec-author-view/ || Full spec: http://whatwg.org/html5 || Also: http://html5rocks.com http://diveintohtml5.org http://mzl.la/9giLwR http://html5homi.es'
- # [23:45] * Set by marienz!~marienz@freenode/staff/marienz on Fri Nov 05 18:43:30
- # [23:48] * Joins: niftylettuce_ (~niftylett@c-71-61-47-144.hsd1.pa.comcast.net)
- # [23:48] * Quits: niftylettuce (~niftylett@32.167.95.154) (Ping timeout: 255 seconds)
- # [23:56] * Quits: beeviz (~beevi2@ip-78-94-3-11.unitymediagroup.de) (Ping timeout: 250 seconds)
- # [23:58] * Quits: koggdal (~koggdal@host-90-236-122-93.mobileonline.telia.com) (Quit: koggdal)
- # [23:59] * Quits: simplicity- (~simpli@unaffiliated/simplicity-) (Quit: simplicity-)
- # Session Close: Wed Jul 13 00:00:00 2011
The end :)