Options:
- # Session Start: Thu Jan 27 00:00:00 2011
- # Session Ident: #html5
- # [00:08] * matjas is now known as matj
- # [00:08] * matj is now known as matjas
- # [00:11] * Joins: ben_c (~ben_c@cpc9-brig17-2-0-cust194.3-3.cable.virginmedia.com)
- # [00:17] * Quits: Titosemi1 (~titosemi@g229018048.adsl.alicedsl.de) (Quit: Leaving.)
- # [00:17] <cgcardona> y?
- # [00:18] <snover> antonkovalyov: :]
- # [00:20] * Joins: vokoda``` (~user@host86-145-189-61.range86-145.btcentralplus.com)
- # [00:20] * Quits: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk) (Quit: Leaving.)
- # [00:21] * Quits: MattDiPasquale (~MattDiPas@rrcs-184-74-229-10.nyc.biz.rr.com) (Remote host closed the connection)
- # [00:22] * Quits: vokoda`` (~user@host109-156-5-161.range109-156.btcentralplus.com) (Ping timeout: 240 seconds)
- # [00:23] * Joins: BrianBlakely (~Adium@208.253.25.162)
- # [00:25] <BrianBlakely> Hey guys, is it safe to start using JS Strict Mode today? Will it kill anyone?
- # [00:26] <BrianBlakely> Or, more specifically, will browsers that don't support Strict Mode care if I throw it in there?
- # [00:26] <snover> no browsers support it afaik so um
- # [00:26] <dgathright> it will kill baby bunnies. So if you want that on your shoulders, then sure.
- # [00:26] <snover> you will probably be broken and not realise it
- # [00:26] * Joins: romainhuet (~romainhue@pro75-6-88-185-123-205.fbx.proxad.net)
- # [00:26] <dgathright> but yeah, no browsers support strict AFAIK
- # [00:26] <dgathright> good for future compatibility though.
- # [00:27] <dgathright> I use it
- # [00:27] <BrianBlakely> Oh, I assumed Chrome supported it, at least. I was Googling for support as I asked the question
- # [00:27] <tw2113> just do, cgcardona
- # [00:28] <BrianBlakely> Considering I don't know whether my code is compliant yet, I probably shouldn't be using it without that confirmation
- # [00:28] <dgathright> and no, browsers ignore it if they don't support it. That's what it is triggered as a simple string defined at the top.
- # [00:28] <BrianBlakely> Thanks for the help fellas
- # [00:28] <BrianBlakely> dgathright: Much appreciated
- # [00:28] <dgathright> np
- # [00:29] <antonkovalyov> snover, seriously though
- # [00:29] <antonkovalyov> i got an error about unexpected whitespace
- # [00:29] <snover> antonkovalyov: no, seriously, dude is nuts :)
- # [00:29] <antonkovalyov> UNEXPECTED WHITESPACE!
- # [00:31] * Quits: ericduran (~ericduran@173-203-243-241.static.cloud-ips.com) (Quit: ericduran)
- # [00:31] * Quits: symb (symb@p57B8E67E.dip.t-dialin.net) (Ping timeout: 255 seconds)
- # [00:34] <snover> Personally, I do run it with strict whitespace turned on
- # [00:34] <snover> but you know, that’s the whole thing about it: choice
- # [00:34] <snover> like, it complains at me for where I put some of my operators when splitting lines
- # [00:34] * Quits: plh_ (~plh@209-6-123-224.c3-0.arl-ubr1.sbo-arl.ma.cable.rcn.com) (Quit: always accept cookies)
- # [00:35] * Quits: ndimatteo (~ndimatteo@c-71-58-78-11.hsd1.pa.comcast.net) (Quit: ndimatteo)
- # [00:35] * Quits: kor (~kor@ip146-53-210-87.adsl2.static.versatel.nl) (Quit: kor)
- # [00:35] * Joins: ndimatteo (~ndimatteo@c-71-58-78-11.hsd1.pa.comcast.net)
- # [00:37] * Joins: symb (symb@p54A7AB99.dip.t-dialin.net)
- # [00:38] <dgathright> wondering why the strictness with whitespace in JSLint. Pretty much everything is in there for a reason. Don't seen much info about that error @ http://www.jslint.com/lint.html
- # [00:38] <dgathright> But, maybe it could just be a style/convention thing.
- # [00:39] <snover> it’s mostly style/convention
- # [00:39] * Joins: jeffszusz (~jeffszusz@dyn216-8-170-154.ADSL.mnsi.net)
- # [00:40] <snover> like for instance, function () instead of function() because if was a named function, it would be function name()
- # [00:40] <snover> just little shit like that
- # [00:42] <antonkovalyov> snover, so you don't do chains?
- # [00:42] * Quits: dcadenas (~dcadenas@r186-48-205-40.dialup.adsl.anteldata.net.uy) (Remote host closed the connection)
- # [00:43] * snover is now known as snover|away
- # [00:43] <antonkovalyov> snover, something like chain().doSmth().\n\s\s\s\sdoSmthElse() breaks
- # [00:43] <antonkovalyov> very annoying
- # [00:43] <antonkovalyov> i just put it under strict whitespace option
- # [00:44] <snover|away> antonkovalyov: because you dot whitespace functioncall instead of whitespace dot functioncall
- # [00:44] <snover|away> it still poops on me in one spot where I am doing a function call using array notation
- # [00:44] <antonkovalyov> i understand why, i don't understand how it is important
- # [00:44] <snover|away> anyway, bbl
- # [00:44] <antonkovalyov> laters
- # [00:54] <dgathright> antonkovalyov: Explanation for the no-whitespace-after-dot rule. http://www.jameswiseman.com/blog/2011/01/24/jslint-messages-a-dot-following-a-number-can-be-confused-with-a-decimal-point/
- # [00:55] <dgathright> Another reason, thought I'm not sure what Crock means by the relaxation of reserved words in ES5 - http://tech.groups.yahoo.com/group/jslint_com/message/1448
- # [00:57] <dgathright> glad to see reserved words will be allowed as properties in ES5 though.
- # [00:57] <antonkovalyov> dgathright, ya that can happen. but prohibiting chains because of this is overkill
- # [00:57] <antonkovalyov> never ever in my life i had such bug
- # [00:58] <dgathright> I prefer the dot starting the line as opposed to ending it. But, that's just personal preference.
- # [00:58] * Quits: hubble (~hubble@173-165-61-105-Illinois.hfc.comcastbusiness.net) (Quit: hubble)
- # [01:05] * Joins: jochen___ (~jochen@nat/google/x-zevcuaiiyxnbyrib)
- # [01:07] * snover|away is now known as snover
- # [01:07] <TheEmpath> having great success with canvas!
- # [01:07] <TheEmpath> question about optimization
- # [01:08] <TheEmpath> say i have images outside of the canvas's viewport
- # [01:08] * Quits: tw2113 (~tw2113asw@fedora/tw2113) (Quit: Leaving)
- # [01:09] * Quits: jochen__ (~jochen@nat/google/x-exorefqehsyafhfz) (Ping timeout: 255 seconds)
- # [01:09] * jochen___ is now known as jochen__
- # [01:09] <TheEmpath> when i go my context.drawImage and its outside of the viewport
- # [01:09] <TheEmpath> will it still go through the image and draw it even if it isn't on the canvas?
- # [01:09] * Quits: kidfribble (~kidfribbl@c-66-31-28-249.hsd1.ma.comcast.net) (Quit: kidfribble)
- # [01:10] <TheEmpath> if not, then freaking awesome
- # [01:10] <TheEmpath> if so, then thats a major resource waste :/
- # [01:12] * Quits: echoSMILE (~smile@unaffiliated/echosmile) (Ping timeout: 255 seconds)
- # [01:19] <paul_irish> TheEmpath: hmmm won't drawImage throw an exception if you're placing it at a position that doesnt exist?
- # [01:20] * Quits: gattuso (~gattuso@93-36-176-176.ip61.fastwebnet.it) (Remote host closed the connection)
- # [01:22] <TheEmpath> hrmm
- # [01:22] <TheEmpath> im about to find out!
- # [01:22] <TheEmpath> looks like ill have to try/catch
- # [01:22] <TheEmpath> cuz i shoudl still be able to move crap off the screen
- # [01:23] <TheEmpath> and if i draw it, it should just ignore the draw request if its off the canvas LOS
- # [01:23] <TheEmpath> otherwise, you'll be right back where Flash is with having tons of assets permanently in memory regardless of LOS
- # [01:23] * Joins: dguttman_ (~dguttman@gige.bur.digisynd.com)
- # [01:23] * Quits: ben_c (~ben_c@cpc9-brig17-2-0-cust194.3-3.cable.virginmedia.com) (Quit: Leaving.)
- # [01:26] * Quits: dguttman (~dguttman@gige.bur.digisynd.com) (Ping timeout: 276 seconds)
- # [01:26] * dguttman_ is now known as dguttman
- # [01:31] <paul_irish> TheEmpath: it'd probably be a lot more effective to see if x and y are > the canvas width/height
- # [01:31] <paul_irish> and not draw in that case
- # [01:31] <paul_irish> would be a lot less costly than a try/catch exception
- # [01:32] * Joins: thatryan (~thatryan@adsl-99-24-221-251.dsl.pltn13.sbcglobal.net)
- # [01:34] * Quits: dguttman (~dguttman@gige.bur.digisynd.com) (Quit: dguttman)
- # [01:38] <paul_irish> hey what do you guys think about an #html5 office hours.. like 90 minutes every few weeks where paulrouget and me and some html5doctor guys and remy.. all are here and all of us can tackle questions from the developer hordes. yesss?!
- # [01:40] <BrianBlakely> paul_irish: Uh — YES
- # [01:40] <BrianBlakely> Say, anyone know of a validator for JS Strict?
- # [01:40] <snover> BrianBlakely: jslint *runs*
- # [01:40] <BrianBlakely> Srsly?
- # [01:41] <BrianBlakely> JSLint THREEquels Strict Mode?
- # [01:41] <snover> It has some strict mode something in it
- # [01:41] <snover> I dunno if it is just a check for the 'use strict'; string or more or what
- # [01:41] <BrianBlakely> So you don't really know if it follows the same rules?
- # [01:42] <BrianBlakely> Sorry, not following completely
- # [01:42] <franksalim> paul_irish: isn't that how an IRC channel normally operates? except maybe less of a free-for-all?
- # [01:46] <BrianBlakely> snover: I'll give JSLint a go, see if it really follows Strict Mode guidelines. Thanks
- # [01:46] * Joins: dguttman (~dguttman@gige.bur.digisynd.com)
- # [01:46] * Quits: BrianBlakely (~Adium@208.253.25.162) (Quit: Leaving.)
- # [01:46] * Quits: dguttman (~dguttman@gige.bur.digisynd.com) (Remote host closed the connection)
- # [01:46] <snover> fua.
- # [01:46] * Joins: dguttman (~dguttman@gige.bur.digisynd.com)
- # [01:47] <snover> bot-t: Tell BrianBlakely it’s just a parser/tokenizer, it will not be able to tell you if you are doing some illegal runtime operation
- # [01:47] <bot-t> snover, Okay.
- # [01:47] * Joins: gimix (~gimix@pc1.gnt-network-unet.ocn.ne.jp)
- # [01:49] <paul_irish> franksalim: yeah the idea is like... make an event out of it.. get involvement from a buncha folks.. have an end time.
- # [01:49] <paul_irish> rather than rely on people (like me) who like to idle and chitchat all day long
- # [01:50] <paul_irish> it would be really busy in here.
- # [01:50] <paul_irish> funn
- # [01:51] * Joins: techrush_ (~techrush@rrcs-173-198-32-131.west.biz.rr.com)
- # [01:51] * Parts: M1ghtyDOC (~hireglenn@74-212-246-74.static-ip.telepacific.net)
- # [01:52] * Quits: techrush (~techrush@rrcs-173-198-32-131.west.biz.rr.com) (Read error: Connection reset by peer)
- # [01:54] <dgathright> BrianBlakely: JSLint will get you most of the way to strict mode compliance. JSLint is more focused on syntax, whereas strict-mode relies quite a bit on execution & context of variables, so I think we just have to wait until browsers come out with ES5 strict mode support to accurately verify code.
- # [01:56] * Quits: Trisox (Trisox@g31044.upc-g.chello.nl)
- # [01:57] * Quits: benv (~benv@75-101-56-240.dsl.static.sonic.net) (Read error: Connection reset by peer)
- # [01:58] <dgathright> For example, eval() in strict mode cannot modify values outside of its scope. So checking for that in a simple linter could be near impossible.
- # [01:58] <dgathright> (I use "simple" lightly)
- # [02:01] <dgathright> Why are there no JSlint "yo dawg" meme pics?
- # [02:08] * Quits: svenlito (~svnlto@78-86-0-182.zone2.bethere.co.uk) (Quit: svenlito)
- # [02:13] * Quits: jeffszusz (~jeffszusz@dyn216-8-170-154.ADSL.mnsi.net) (Remote host closed the connection)
- # [02:14] * Joins: benv (~benv@75-101-56-240.dsl.static.sonic.net)
- # [02:15] * Quits: romainhuet (~romainhue@pro75-6-88-185-123-205.fbx.proxad.net) (Quit: romainhuet)
- # [02:16] * Joins: Brodingo (~Brodingo@cpe-70-116-9-4.austin.res.rr.com)
- # [02:18] * Quits: dug__ (43b1012e@gateway/web/freenode/ip.67.177.1.46) (Quit: Page closed)
- # [02:18] * Quits: vokoda``` (~user@host86-145-189-61.range86-145.btcentralplus.com) (Ping timeout: 240 seconds)
- # [02:18] * Quits: thatryan (~thatryan@adsl-99-24-221-251.dsl.pltn13.sbcglobal.net) (Quit: Leaving...)
- # [02:25] * Quits: techrush_ (~techrush@rrcs-173-198-32-131.west.biz.rr.com) (Ping timeout: 240 seconds)
- # [02:32] * Quits: boaz (~boaz@64.119.153.2) (Quit: boaz)
- # [02:36] * Joins: thatryan (~thatryan@c-71-202-1-91.hsd1.ca.comcast.net)
- # [02:37] * Joins: mike5w3c (~MikeSmith@EM111-188-137-73.pool.e-mobile.ne.jp)
- # [02:40] * Quits: noxxten (noxxten@adsl-93-110-145.owb.bellsouth.net)
- # [02:43] * Quits: JonathanNeal (~JNizzle@rrcs-76-79-114-214.west.biz.rr.com) (Quit: Leaving)
- # [02:59] * Quits: bobslaede (~bob@port474.ds1-fa.adsl.cybercity.dk) (Ping timeout: 265 seconds)
- # [03:06] * Joins: bobslaede (~bob@port474.ds1-fa.adsl.cybercity.dk)
- # [03:09] * Joins: jus101 (~chatzilla@203-97-83-44.sli-systems.com)
- # [03:10] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [03:13] * Joins: nimbupani (~Adium@c-24-22-131-46.hsd1.wa.comcast.net)
- # [03:14] * Quits: coweso (~coweso@unaffiliated/toinso) (Quit: Leaving)
- # [03:18] * Quits: matjas (~matjas@91.182.27.219) (Quit: Computer has gone to sleep.)
- # [03:24] * Quits: xonecas (~sean@c-98-207-113-220.hsd1.ca.comcast.net) (Disconnected by services)
- # [03:25] * Joins: silanus (~silanus@p5DDEBDA4.dip.t-dialin.net)
- # [03:27] * Quits: silanus_ (~silanus@p5DDEB7B9.dip.t-dialin.net) (Ping timeout: 240 seconds)
- # [03:34] * Joins: bentruyman (~bentruyma@c-67-163-43-249.hsd1.il.comcast.net)
- # [03:34] * Joins: felcom (~felcom@rrcs-71-43-19-2.se.biz.rr.com)
- # [03:34] <felcom> well finally figured out my @font-face problem...
- # [03:35] * Quits: croby (~croby@c-24-19-51-159.hsd1.wa.comcast.net) (Quit: croby)
- # [03:35] <felcom> was being served via subdomain so I had to base64 encode
- # [03:35] <paul_irish> you know..
- # [03:35] <paul_irish> i was wondering about that
- # [03:35] <paul_irish> but your sample code did not come from a different subdomain
- # [03:35] <paul_irish> i guess the CSS was..
- # [03:36] <paul_irish> felcom: https://github.com/paulirish/html5-boilerplate/blob/master/.htaccess#L57-69
- # [03:36] <felcom> yeah, it didn't even dawn on me that it would matter
- # [03:36] <felcom> yeah i'll probably do that instead
- # [03:40] * Quits: bentruyman (~bentruyma@c-67-163-43-249.hsd1.il.comcast.net) (Quit: bentruyman)
- # [03:42] * Joins: felcom_ (~felcom@36.196.91.184.cfl.res.rr.com)
- # [03:42] * Quits: gliese581 (~FranOntan@81.202.113.56.dyn.user.ono.com) (Ping timeout: 255 seconds)
- # [03:44] * Quits: felcom (~felcom@rrcs-71-43-19-2.se.biz.rr.com) (Ping timeout: 240 seconds)
- # [03:44] * felcom_ is now known as felcom
- # [03:46] * Quits: felcom (~felcom@36.196.91.184.cfl.res.rr.com) (Remote host closed the connection)
- # [03:46] * Joins: felcom (~felcom@rrcs-71-43-19-2.se.biz.rr.com)
- # [03:48] * Joins: techrush (~techrush@adsl-75-4-203-46.dsl.irvnca.sbcglobal.net)
- # [03:50] * Joins: felcom_ (~felcom@36.196.91.184.cfl.res.rr.com)
- # [03:50] * Quits: felcom_ (~felcom@36.196.91.184.cfl.res.rr.com) (Remote host closed the connection)
- # [03:50] * Joins: felcom_ (~felcom@rrcs-71-43-19-2.se.biz.rr.com)
- # [03:50] * Quits: felcom_ (~felcom@rrcs-71-43-19-2.se.biz.rr.com) (Client Quit)
- # [03:53] * Quits: felcom (~felcom@rrcs-71-43-19-2.se.biz.rr.com) (Ping timeout: 276 seconds)
- # [03:53] * Quits: jacine|afk (~jacine@drupal.org/user/88931/view) (Quit: buh bye :))
- # [04:03] <Pewpewarrows> is there a resource somewhere that says exactly what global variables are already taken in js for each browser?
- # [04:05] <snover> Pewpewarrows: that varies and changes constantly.
- # [04:06] <Pewpewarrows> well wouldn't it be constant for past versions of browsers?
- # [04:06] * Quits: benv (~benv@75-101-56-240.dsl.static.sonic.net) (Quit: Leaving...)
- # [04:18] * Joins: LynnMWallenstein (~Lynn@pool-74-107-70-172.bltmmd.fios.verizon.net)
- # [04:22] * Quits: LynnWallenstein (~Lynn@pool-74-107-70-172.bltmmd.fios.verizon.net) (Ping timeout: 264 seconds)
- # [04:25] * Joins: dug__ (43b1012e@gateway/web/freenode/ip.67.177.1.46)
- # [04:27] * Quits: paul_irish (~paul_iris@nat/google/x-xgpbqbjiwyprryuw) (Remote host closed the connection)
- # [04:28] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: Going!)
- # [04:29] <Pewpewarrows> Chrome has some ridiculous caching in place for unpacked dev extensions from your local machine
- # [04:29] <Pewpewarrows> mine will randomly start using code from a week ago after I reload an extension
- # [04:30] * Quits: jdalton (~johndavid@cpe-75-187-124-204.insight.res.rr.com)
- # [04:30] * Joins: paul_irish (~paul_iris@67.218.109.242)
- # [04:30] * Joins: jdalton (~johndavid@cpe-75-187-124-204.insight.res.rr.com)
- # [04:30] * Quits: chipotle (~chipotle@209-6-67-222.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com) (Remote host closed the connection)
- # [04:31] * Joins: chipotle (~chipotle@209-6-67-222.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com)
- # [04:32] * Joins: kidfribble (~kidfribbl@c-66-31-28-249.hsd1.ma.comcast.net)
- # [04:33] * Quits: jus101 (~chatzilla@203-97-83-44.sli-systems.com) (Ping timeout: 240 seconds)
- # [04:45] * Quits: b33m (b33m@c-71-202-37-221.hsd1.ca.comcast.net) (Ping timeout: 276 seconds)
- # [04:46] * Joins: qq99 (~qq99@CPE0026f3378f10-CM0026f3378f0d.cpe.net.cable.rogers.com)
- # [04:46] * Joins: b33m (~nickhome@c-71-202-37-221.hsd1.ca.comcast.net)
- # [04:46] <qq99> anyone else feel the <canvas> and all these new 3d js apps are unbearably slow? running at 1ghz dualcore is unbearable, running 2ghz dual core is OK but still <10fps
- # [04:46] <qq99> I'm not even talking super sophisticated apps either :/
- # [04:47] <paul_irish> what browser are you running?
- # [04:47] <paul_irish> ff3.6 or something?
- # [04:47] <qq99> yeah
- # [04:47] <paul_irish> :>
- # [04:48] <qq99> no hardware acceleration in ff3.6?
- # [04:48] * paul_irish is clearly psychic.
- # [04:48] <paul_irish> no. 3.6 has jack shit.
- # [04:48] <paul_irish> use FF4 beta.
- # [04:48] <qq99> oh, understood, thanks
- # [04:48] <paul_irish> :)
- # [04:48] <thatryan> heyo paul_irish what up
- # [04:48] <paul_irish> or... use chrome like a boss.
- # [04:48] <thatryan> LIKE A BOSS
- # [04:48] <paul_irish> ^^
- # [04:48] <qq99> I can't be without my noscript/adblock
- # [04:50] <paul_irish> qq99: there are both for chrome now.
- # [04:50] <paul_irish> there didnt used to be.
- # [04:50] <paul_irish> now there is.
- # [04:50] <qq99> :o I will check this out right now
- # [04:50] <Sosby> https://chrome.google.com/webstore/detail/gighmmpiobklfepjocnamgkkbiglidom
- # [04:50] <Sosby> https://chrome.google.com/webstore/detail/odjhifogjcknibkahlpidmdajjpkkcfn
- # [04:52] * Joins: dguttman_ (~dguttman@gige.bur.digisynd.com)
- # [04:52] * Quits: dguttman_ (~dguttman@gige.bur.digisynd.com) (Client Quit)
- # [04:54] * Quits: dguttman (~dguttman@gige.bur.digisynd.com) (Ping timeout: 255 seconds)
- # [04:55] <Brodingo> i dont see any godamn snowflakes
- # [04:55] <Pewpewarrows> the chrome adblock guy is really doing it fulltime?
- # [04:55] <Pewpewarrows> impressive
- # [04:59] <chromedFiz> i thought it was foolish lol
- # [05:04] * Joins: jgv (~jgv@184.152.75.83)
- # [05:07] * Quits: paul_irish (~paul_iris@67.218.109.242) (Remote host closed the connection)
- # [05:13] * Joins: jeffszusz (~jeffszusz@dyn216-8-170-154.ADSL.mnsi.net)
- # [05:13] <Pewpewarrows> depends how good is donation revenue is
- # [05:13] <Pewpewarrows> I doubt it's much though
- # [05:17] * Joins: paul_irish (~paul_iris@c-76-21-40-62.hsd1.ca.comcast.net)
- # [05:18] * Quits: Neiluj_ (~Julien@195.200.175.214) (Quit: Neiluj_)
- # [05:19] * Joins: okaycool (~okaycool@113.19.248.225)
- # [05:21] * Quits: bobslaede (~bob@port474.ds1-fa.adsl.cybercity.dk) (Ping timeout: 246 seconds)
- # [05:23] * Joins: bentruyman (~bentruyma@li159-104.members.linode.com)
- # [05:26] * Quits: antonkovalyov (~antonkova@75-101-56-240.dsl.static.sonic.net) (Quit: Leaving...)
- # [05:27] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [05:28] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [05:28] * Joins: bobslaede (~bob@port474.ds1-fa.adsl.cybercity.dk)
- # [05:37] * Quits: LynnMWallenstein (~Lynn@pool-74-107-70-172.bltmmd.fios.verizon.net) (Read error: Connection reset by peer)
- # [05:46] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [05:46] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [05:50] * Quits: Pewpewarrows (~Pewpewarr@c-69-143-122-59.hsd1.va.comcast.net) (Quit: Leaving)
- # [05:55] * Quits: qq99 (~qq99@CPE0026f3378f10-CM0026f3378f0d.cpe.net.cable.rogers.com) (Quit: Leaving)
- # [06:05] * Joins: LongBeach (~mike@AFontenayssB-152-1-51-92.w82-121.abo.wanadoo.fr)
- # [06:06] * Quits: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Quit: Leaving)
- # [06:14] * Quits: nimbupani (~Adium@c-24-22-131-46.hsd1.wa.comcast.net) (Quit: Leaving.)
- # [06:15] * Joins: nimbupani (~Adium@c-24-22-131-46.hsd1.wa.comcast.net)
- # [06:16] * Quits: kennyluck (~kennyluck@2001:200:1c0:3602:225:ff:fe4d:f8c7) (Quit: kennyluck)
- # [06:16] * Joins: kennyluck (~kennyluck@2001:200:1c0:3602:225:ff:fe4d:f8c7)
- # [06:18] <cgcardona> http://richwchan.com/2011/01/25/literally-drawing-the-html-5-logo-in-canvas-with-javascript/
- # [06:21] * Joins: antonkovalyov (~antonkova@adsl-75-18-218-201.dsl.pltn13.sbcglobal.net)
- # [06:23] * Quits: jgv (~jgv@184.152.75.83) (Remote host closed the connection)
- # [06:30] * Quits: bentruyman (~bentruyma@li159-104.members.linode.com) (Ping timeout: 264 seconds)
- # [06:31] * Joins: NiftyLettuce (~niftylett@h247.119.232.68.ip.windstream.net)
- # [06:31] <NiftyLettuce> paul_irish: added you on the fb's
- # [06:32] * Joins: bentruyman (~bentruyma@c-67-163-43-249.hsd1.il.comcast.net)
- # [06:32] <paul_irish> dont see any last name Lettuce.
- # [06:33] <NiftyLettuce> paul_irish: ? no
- # [06:34] <antonkovalyov> geez facebook
- # [06:34] <antonkovalyov> i remember somebody hating facebook
- # [06:34] <antonkovalyov> oh yeah, it was paul_irish
- # [06:35] <NiftyLettuce> antonkovalyov: no he was hating on the hot purple folk
- # [06:35] <antonkovalyov> the fuck is this :)
- # [06:35] <NiftyLettuce> you tell me
- # [06:36] <antonkovalyov> you sound like my college teachers
- # [06:36] <NiftyLettuce> you sound like my italian teacher who almost flunked me when I called him You in the informal conjugation
- # [06:36] <NiftyLettuce> said Tu instead of Lei or some shit
- # [06:37] * Quits: bentruyman (~bentruyma@c-67-163-43-249.hsd1.il.comcast.net) (Remote host closed the connection)
- # [06:37] <NiftyLettuce> I told him that it was all hot pink's fault, then he said its okay, hot purple is to blame
- # [06:37] <NiftyLettuce> xD
- # [06:38] <antonkovalyov> oh god my brain
- # [06:40] * Quits: b33m (~nickhome@c-71-202-37-221.hsd1.ca.comcast.net) (Ping timeout: 255 seconds)
- # [06:43] * Joins: dgathright_ (~dgathrigh@nat/yahoo/x-wjzqtepuqwwgjyvp)
- # [06:44] * Joins: lukebrooker (~lukebrook@vg28.vodafone.com.au)
- # [06:47] * Quits: dgathright (~dgathrigh@nat/yahoo/x-lffdjmbhktxjpkum) (Ping timeout: 255 seconds)
- # [06:47] * dgathright_ is now known as dgathright
- # [06:48] * Quits: dug__ (43b1012e@gateway/web/freenode/ip.67.177.1.46) (Quit: Page closed)
- # [07:00] * Quits: ndimatteo (~ndimatteo@c-71-58-78-11.hsd1.pa.comcast.net) (Quit: ndimatteo)
- # [07:02] * Joins: xonecas (~sean@c-98-207-113-220.hsd1.ca.comcast.net)
- # [07:02] * Quits: peol (~andree@unaffiliated/peol) (Read error: Connection reset by peer)
- # [07:03] * Parts: nimbupani (~Adium@c-24-22-131-46.hsd1.wa.comcast.net)
- # [07:05] * Quits: lukebrooker (~lukebrook@vg28.vodafone.com.au) (Quit: Colloquy for iPhone - http://colloquy.mobi)
- # [07:06] * Quits: jeffszusz (~jeffszusz@dyn216-8-170-154.ADSL.mnsi.net) (Read error: Connection reset by peer)
- # [07:09] * Quits: patcito (~123@190.42.224.12) (Read error: Connection reset by peer)
- # [07:12] * Joins: HT (~ht@ip3e83ff64.speed.planet.nl)
- # [07:13] * Joins: bentruyman (~bentruyma@li159-104.members.linode.com)
- # [07:24] * Quits: cgcardona (~cgcardona@cpe-98-150-150-230.hawaii.res.rr.com) (Quit: zzzzz)
- # [07:25] * Quits: Brodingo (~Brodingo@cpe-70-116-9-4.austin.res.rr.com) (Remote host closed the connection)
- # [07:26] * Joins: cgcardona (~cgcardona@cpe-98-150-150-230.hawaii.res.rr.com)
- # [07:45] * Quits: Drule (Drule@83.181.2.198) (Ping timeout: 240 seconds)
- # [07:50] * Quits: cgcardona (~cgcardona@cpe-98-150-150-230.hawaii.res.rr.com) (Quit: zzzzz)
- # [07:50] * Quits: antonkovalyov (~antonkova@adsl-75-18-218-201.dsl.pltn13.sbcglobal.net) (Quit: Leaving...)
- # [07:54] * Quits: obert- (~obert@87.19.203.220)
- # [07:54] * Joins: Howell` (~Howell`@116.226.88.12)
- # [07:54] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [07:55] * Quits: snover (~Adium@unaffiliated/snover) (Quit: Leaving.)
- # [07:55] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [07:58] * Joins: daggberg (~daggberg@41.212.23.34)
- # [07:59] <mike5w3c> https://github.com/facebook/jsgamebench
- # [08:01] <mike5w3c> "code to exercise browsers under game-like conditions… exists to explore HTML5’s game performance limits"
- # [08:06] <NiftyLettuce> oye nice
- # [08:06] <NiftyLettuce> fb dev team?
- # [08:09] <mike5w3c> yeah
- # [08:09] <mike5w3c> Cory Ondrejka
- # [08:09] <mike5w3c> aka Cory Linden
- # [08:09] <mike5w3c> was CTO of Linden Labs
- # [08:09] <mike5w3c> Second Life
- # [08:12] * Quits: Killman (~Killman@unaffiliated/killman) (Quit: bbl Zzzzzzzzzzzz)
- # [08:15] * Joins: antonkovalyov (~antonkova@adsl-75-18-218-201.dsl.pltn13.sbcglobal.net)
- # [08:24] <jomn> hi, any good web tool for minifying CSS and JS files?
- # [08:25] <thatryan> ?yui
- # [08:25] <bot-t> YUI Library - http://developer.yahoo.com/yui/
- # [08:25] * Joins: teddy_ (~teddy@c80-216-93-142.bredband.comhem.se)
- # [08:26] * Quits: okaycool (~okaycool@113.19.248.225) (Read error: Connection reset by peer)
- # [08:27] * Joins: M-sprite (~M-sprite@122.236.244.22)
- # [08:28] * Joins: anttio (~anttio@huittinen.of.frantic.com)
- # [08:29] * Quits: M-sprite (~M-sprite@122.236.244.22) (Client Quit)
- # [08:29] * Joins: M-sprite (~M-sprite@122.236.244.22)
- # [08:34] * Joins: mike5w3c_ (~MikeSmith@EM111-188-12-91.pool.e-mobile.ne.jp)
- # [08:37] * Quits: mike5w3c (~MikeSmith@EM111-188-137-73.pool.e-mobile.ne.jp) (Ping timeout: 240 seconds)
- # [08:37] * mike5w3c_ is now known as mike5w3c
- # [08:38] * Quits: antonkovalyov (~antonkova@adsl-75-18-218-201.dsl.pltn13.sbcglobal.net) (Quit: Leaving...)
- # [08:40] <mike5w3c> whoah
- # [08:40] <mike5w3c> is Joe Hewitt at Facebook now?
- # [08:42] <mike5w3c> I guess he is
- # [08:42] <mike5w3c> https://github.com/joehewitt
- # [08:42] * Joins: peol (~andree@unaffiliated/peol)
- # [08:43] <mike5w3c> I guess he's been there for quite a while
- # [08:44] <mike5w3c> did the Facebook iPhone app
- # [08:45] * Joins: Drule (~Drule@mail.upsales.com)
- # [08:52] * Quits: xonecas (~sean@c-98-207-113-220.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [08:54] * Quits: Drule (~Drule@mail.upsales.com)
- # [08:54] * Joins: xonecas (~sean@c-98-207-113-220.hsd1.ca.comcast.net)
- # [08:58] * Joins: Drule (~Drule@mail.upsales.com)
- # [08:59] * Quits: Drule (~Drule@mail.upsales.com) (Client Quit)
- # [09:00] * Joins: Drule (~Drule@mail.upsales.com)
- # [09:00] * Quits: xonecas (~sean@c-98-207-113-220.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
- # [09:01] * Quits: Drule (~Drule@mail.upsales.com) (Client Quit)
- # [09:02] * Joins: Drule (~Drule@mail.upsales.com)
- # [09:02] * Joins: xonecas (~sean@c-98-207-113-220.hsd1.ca.comcast.net)
- # [09:05] * Quits: NiftyLettuce (~niftylett@h247.119.232.68.ip.windstream.net) (Ping timeout: 246 seconds)
- # [09:09] * Joins: obert- (~obert@87.19.203.220)
- # [09:10] <dgathright> mike5w3c: Yup. Joe has been at Facebook for ~4 years. Came in with the Parakey acquisition.
- # [09:10] * Joins: phrearch (~phrearch_@82-136-229-19.ip.telfort.nl)
- # [09:12] * Quits: peol (~andree@unaffiliated/peol) (Read error: Connection reset by peer)
- # [09:12] * Joins: peol (~andree@91.213.250.6)
- # [09:12] * Quits: peol (~andree@91.213.250.6) (Changing host)
- # [09:12] * Joins: peol (~andree@unaffiliated/peol)
- # [09:12] <mike5w3c> dgathright: ah, OK
- # [09:12] * Quits: bentruyman (~bentruyma@li159-104.members.linode.com) (Quit: bentruyman)
- # [09:13] * Joins: russinkungen (russinkung@c-94-255-140-136.cust.bredband2.com)
- # [09:14] * Quits: xonecas (~sean@c-98-207-113-220.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
- # [09:16] * Joins: xonecas (~sean@c-98-207-113-220.hsd1.ca.comcast.net)
- # [09:22] * Quits: xonecas (~sean@c-98-207-113-220.hsd1.ca.comcast.net) (Ping timeout: 255 seconds)
- # [09:23] * Quits: M-sprite (~M-sprite@122.236.244.22) (Quit: M-sprite want to kiss a handsome guy.)
- # [09:25] * Joins: romainhuet (~romainhue@pro75-4-82-238-200-10.fbx.proxad.net)
- # [09:26] * Quits: romainhuet (~romainhue@pro75-4-82-238-200-10.fbx.proxad.net) (Client Quit)
- # [09:26] * Joins: romainhuet (~romainhue@2a01:e35:2eec:80a0:226:8ff:fedf:5bfa)
- # [09:29] * Quits: teddy_ (~teddy@c80-216-93-142.bredband.comhem.se) (Remote host closed the connection)
- # [09:29] * Joins: xonecas (~sean@c-98-207-113-220.hsd1.ca.comcast.net)
- # [09:31] * Quits: monteslu (~monteslu@ip68-109-170-79.ph.ph.cox.net) (Read error: Operation timed out)
- # [09:33] * Quits: techrush (~techrush@adsl-75-4-203-46.dsl.irvnca.sbcglobal.net) (Ping timeout: 255 seconds)
- # [09:33] * Quits: xonecas (~sean@c-98-207-113-220.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
- # [09:39] * Quits: thatryan (~thatryan@c-71-202-1-91.hsd1.ca.comcast.net) (Quit: Leaving...)
- # [09:42] * Quits: peol (~andree@unaffiliated/peol) (Read error: Connection reset by peer)
- # [09:42] * Joins: peol (~andree@91.213.250.6)
- # [09:42] * Quits: peol (~andree@91.213.250.6) (Changing host)
- # [09:42] * Joins: peol (~andree@unaffiliated/peol)
- # [09:43] * Joins: richardjapenga (~Richard@5353CFCA.cm-6-4d.dynamic.ziggo.nl)
- # [09:45] * Joins: svenlito (~svnlto@78-86-0-182.zone2.bethere.co.uk)
- # [09:45] <phrearch> hey
- # [09:45] <phrearch> anyone an idea how to make fuzzy brushes for canvas?
- # [09:47] * Joins: Ms2ger (~Ms2ger@91.181.107.252)
- # [09:48] * Joins: monteslu (~monteslu@ip68-109-170-79.ph.ph.cox.net)
- # [09:49] * Joins: M-sprite (~M-sprite@122.236.244.22)
- # [09:51] * Joins: okaycool (~okaycool@113.19.248.225)
- # [09:52] * Joins: henrikkok (~Adium@80.199.116.190.static.peytz.dk)
- # [09:52] * Joins: xonecas (~sean@c-98-207-113-220.hsd1.ca.comcast.net)
- # [09:54] * Joins: techrush (~techrush@adsl-75-4-203-46.dsl.irvnca.sbcglobal.net)
- # [09:54] * Quits: M-sprite (~M-sprite@122.236.244.22) (Client Quit)
- # [09:57] * Joins: Titosemi (~titosemi@g229018048.adsl.alicedsl.de)
- # [09:58] * Quits: xonecas (~sean@c-98-207-113-220.hsd1.ca.comcast.net) (Ping timeout: 264 seconds)
- # [10:00] * Joins: beevi7 (~manuel.bi@tim.7val.com)
- # [10:03] * Joins: kor (~kor@ip146-53-210-87.adsl2.static.versatel.nl)
- # [10:03] * Joins: M-sprite (~M-sprite@122.236.244.22)
- # [10:07] * Quits: techrush (~techrush@adsl-75-4-203-46.dsl.irvnca.sbcglobal.net) (Ping timeout: 240 seconds)
- # [10:10] * Joins: xonecas (~sean@c-98-207-113-220.hsd1.ca.comcast.net)
- # [10:12] * Quits: peol (~andree@unaffiliated/peol) (Read error: Connection reset by peer)
- # [10:13] * Joins: peol (~andree@91.213.250.6)
- # [10:13] * Quits: peol (~andree@91.213.250.6) (Changing host)
- # [10:13] * Joins: peol (~andree@unaffiliated/peol)
- # [10:15] * Quits: svenlito (~svnlto@78-86-0-182.zone2.bethere.co.uk) (Ping timeout: 260 seconds)
- # [10:26] * Joins: bjdsd (~bjdsd@ip68-8-125-109.sd.sd.cox.net)
- # [10:28] * Quits: andrew_m (~AndrewMas@gatek.mh.bbc.co.uk) (Quit: Leaving)
- # [10:35] * Joins: ben_c (~ben_c@cpc9-brig17-2-0-cust194.3-3.cable.virginmedia.com)
- # [10:39] * Quits: bjdsd (~bjdsd@ip68-8-125-109.sd.sd.cox.net) (Quit: Colloquy for iPad - http://colloquy.mobi)
- # [10:40] * Quits: ben_c (~ben_c@cpc9-brig17-2-0-cust194.3-3.cable.virginmedia.com) (Quit: Leaving.)
- # [10:43] * Quits: peol (~andree@unaffiliated/peol) (Read error: Connection reset by peer)
- # [10:43] * Joins: peol (~andree@91.213.250.6)
- # [10:43] * Quits: peol (~andree@91.213.250.6) (Changing host)
- # [10:43] * Joins: peol (~andree@unaffiliated/peol)
- # [10:50] * Joins: Levis (~Levis@93-63-109-252.ip27.fastwebnet.it)
- # [10:50] * Levis is now known as Guest90386
- # [10:54] * Quits: Howell` (~Howell`@116.226.88.12) (Remote host closed the connection)
- # [10:54] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [10:55] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [11:03] * Joins: gattuso (~gattuso@93-36-217-225.ip62.fastwebnet.it)
- # [11:05] * Joins: myakura (~myakura@p2032-ipbf3005marunouchi.tokyo.ocn.ne.jp)
- # [11:06] * Joins: svenlito (~svenlito@193.111.227.10)
- # [11:11] * Joins: jeremyselier (~Jeremy@pro75-4-82-238-200-10.fbx.proxad.net)
- # [11:12] * Joins: codetonowhere1 (~Adium@2001:67c:90:770:222:41ff:fe2a:3d9e)
- # [11:13] * Quits: peol (~andree@unaffiliated/peol) (Read error: Connection reset by peer)
- # [11:13] * Joins: peol (~andree@91.213.250.6)
- # [11:13] * Quits: peol (~andree@91.213.250.6) (Changing host)
- # [11:13] * Joins: peol (~andree@unaffiliated/peol)
- # [11:14] * Joins: mokush (~mokush@188.24.40.245)
- # [11:16] * Quits: dgathright (~dgathrigh@nat/yahoo/x-wjzqtepuqwwgjyvp) (Quit: dgathright)
- # [11:18] * Quits: monteslu (~monteslu@ip68-109-170-79.ph.ph.cox.net) (Ping timeout: 240 seconds)
- # [11:23] * Joins: matjas (~matjas@91.182.204.71)
- # [11:25] * Joins: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [11:32] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [11:32] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [11:32] * Joins: monteslu (~monteslu@ip68-109-170-79.ph.ph.cox.net)
- # [11:35] * Joins: vyvea (~vyvea@78.63.114.251)
- # [11:35] * Quits: kor (~kor@ip146-53-210-87.adsl2.static.versatel.nl) (Ping timeout: 240 seconds)
- # [11:38] * Joins: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com)
- # [11:39] * Joins: iNico (~iNico@LLagny-156-34-42-237.w80-14.abo.wanadoo.fr)
- # [11:43] * Quits: peol (~andree@unaffiliated/peol) (Read error: Connection reset by peer)
- # [11:44] * Joins: peol (~andree@91.213.250.6)
- # [11:44] * Quits: peol (~andree@91.213.250.6) (Changing host)
- # [11:44] * Joins: peol (~andree@unaffiliated/peol)
- # [11:46] * Joins: svenlito_ (~svnlto@188-223-81-77.dsl.cnl.uk.net)
- # [11:53] * Joins: Titosemi1 (~titosemi@f053229218.adsl.alicedsl.de)
- # [11:54] * Quits: Titosemi (~titosemi@g229018048.adsl.alicedsl.de) (Ping timeout: 240 seconds)
- # [11:55] * Quits: Drule (~Drule@mail.upsales.com)
- # [12:00] * Joins: Drule (~Drule@mail.upsales.com)
- # [12:03] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [12:03] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [12:07] * Joins: seutje (~steve@drupal.org/user/264148/view)
- # [12:08] * Joins: kor (~kor@ip146-53-210-87.adsl2.static.versatel.nl)
- # [12:16] * Joins: wpnew (~hmm@93-39-98-3.ip75.fastwebnet.it)
- # [12:17] <wpnew> the new logo html5 is like superman :D
- # [12:31] <okaycool> wpnew: ye!
- # [12:32] * Joins: andree (~andree@unaffiliated/peol)
- # [12:32] * Quits: peol (~andree@unaffiliated/peol) (Read error: Connection reset by peer)
- # [12:33] * Quits: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com) (Quit: dgathright)
- # [12:34] * Joins: benschwarz (~ben@59.167.185.148)
- # [12:34] * Quits: andree (~andree@unaffiliated/peol) (Client Quit)
- # [12:40] * Joins: Trisox (Trisox@g31044.upc-g.chello.nl)
- # [12:43] <jetienne> im looking at CORS and the "Origin" header in request... i dont get it... from what i understand, the server will provide the rescource only if it likes the "Origin" header... but this header is provided by the client itself... so what prevent the client from lying ?
- # [12:44] <jetienne> it looks to me like .... "tell me if you are allowed... ah you are ?... then you are, take the rescource now"
- # [12:44] <jetienne> i dont see any security in this
- # [12:46] <jetienne> http://www.ietf.org/rfc/rfc3514.txt <- another version of this model, published 1st april tho
- # [12:46] <jetienne> what do i miss ?
- # [12:48] * Joins: gliese581 (~FranOntan@81.202.113.56.dyn.user.ono.com)
- # [12:49] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [12:49] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [13:02] * Quits: phrearch (~phrearch_@82-136-229-19.ip.telfort.nl) (Read error: Operation timed out)
- # [13:03] * Joins: anttio_ (~anttio@lapinjarvi.of.frantic.com)
- # [13:07] * Quits: anttio (~anttio@huittinen.of.frantic.com) (Ping timeout: 276 seconds)
- # [13:07] * anttio_ is now known as anttio
- # [13:08] * Quits: M-sprite (~M-sprite@122.236.244.22) (Quit: I need to code or sleep now .)
- # [13:11] * Joins: peol (~andree@unaffiliated/peol)
- # [13:14] * Quits: mokush (~mokush@188.24.40.245) (Quit: Konversation terminated!)
- # [13:14] * Joins: mokush_ (~mokush@188.24.40.245)
- # [13:15] * Quits: mokush_ (~mokush@188.24.40.245) (Remote host closed the connection)
- # [13:16] * Joins: mokush (~mokush@188.24.40.245)
- # [13:20] * Joins: dcadenas (~dcadenas@186-8-21-27-dynamic.movinet.com.uy)
- # [13:23] * Quits: benschwarz (~ben@59.167.185.148) (Ping timeout: 240 seconds)
- # [13:31] * Joins: benschwarz (~ben@59.167.185.148)
- # [13:41] * Quits: peol (~andree@unaffiliated/peol) (Read error: Connection reset by peer)
- # [13:48] * Quits: matjas (~matjas@91.182.204.71) (Quit: Computer has gone to sleep.)
- # [13:55] * Joins: peol (~andree@91.213.250.6)
- # [13:55] * Quits: peol (~andree@91.213.250.6) (Changing host)
- # [13:55] * Joins: peol (~andree@unaffiliated/peol)
- # [13:56] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [13:57] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [13:57] <danielfilho> who needs an IIS server?
- # [13:58] <danielfilho> fucking jsonp application FALL because IIS can't handle that amount of requests.
- # [14:02] * Quits: mokush (~mokush@188.24.40.245) (Remote host closed the connection)
- # [14:07] * Parts: okaycool (~okaycool@113.19.248.225)
- # [14:08] * Quits: dcadenas (~dcadenas@186-8-21-27-dynamic.movinet.com.uy) (Remote host closed the connection)
- # [14:09] * Joins: plh_ (~plh@209-6-123-224.c3-0.arl-ubr1.sbo-arl.ma.cable.rcn.com)
- # [14:09] * Joins: lukebrooker (~lukebrook@ppp118-208-32-115.lns20.bne1.internode.on.net)
- # [14:10] * Joins: dug__ (43b1012e@gateway/web/freenode/ip.67.177.1.46)
- # [14:13] * Quits: HAITI (~j@unaffiliated/haiti) (Ping timeout: 265 seconds)
- # [14:18] * Quits: anttio (~anttio@lapinjarvi.of.frantic.com) (Remote host closed the connection)
- # [14:18] * Joins: anttio (~anttio@huittinen.of.frantic.com)
- # [14:20] * Joins: HAITI (~j@unaffiliated/haiti)
- # [14:27] * Quits: chipotle (~chipotle@209-6-67-222.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com) (Quit: eat a burrito)
- # [14:28] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [14:28] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [14:29] * Quits: lukebrooker (~lukebrook@ppp118-208-32-115.lns20.bne1.internode.on.net) (Quit: Colloquy for iPhone - http://colloquy.mobi)
- # [14:35] * Joins: mike5w3c_ (~MikeSmith@EM114-48-214-164.pool.e-mobile.ne.jp)
- # [14:35] * Quits: richardjapenga (~Richard@5353CFCA.cm-6-4d.dynamic.ziggo.nl) (Quit: Ik ga weg)
- # [14:37] * Quits: mike5w3c (~MikeSmith@EM111-188-12-91.pool.e-mobile.ne.jp) (Ping timeout: 265 seconds)
- # [14:37] * mike5w3c_ is now known as mike5w3c
- # [14:40] * Quits: russinkungen (russinkung@c-94-255-140-136.cust.bredband2.com)
- # [14:41] * Quits: peol (~andree@unaffiliated/peol) (Read error: Connection reset by peer)
- # [14:43] * Joins: cocoadaemon (~cocoadaem@2a01:e35:8a99:e90:20d:93ff:fe3b:868c)
- # [14:51] * Joins: dcadenas (~dcadenas@r186-48-200-110.dialup.adsl.anteldata.net.uy)
- # [14:53] * Joins: Pewpewarrows (~Pewpewarr@75-145-93-41-WashingtonDC.hfc.comcastbusiness.net)
- # [14:56] * Joins: benv- (~benv@75-101-56-240.dsl.static.sonic.net)
- # [15:00] * Joins: ben_alman (~ben_alman@pool-74-104-156-115.bstnma.fios.verizon.net)
- # [15:02] * Joins: echoSMILE (~smile@bl17-143-182.dsl.telepac.pt)
- # [15:02] * Quits: echoSMILE (~smile@bl17-143-182.dsl.telepac.pt) (Changing host)
- # [15:02] * Joins: echoSMILE (~smile@unaffiliated/echosmile)
- # [15:05] * Joins: g105b (5e1e6582@gateway/web/freenode/ip.94.30.101.130)
- # [15:14] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [15:15] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [15:18] * Joins: matjas (~matjas@ip-213-49-112-240.dsl.scarlet.be)
- # [15:18] * Quits: jeremyselier (~Jeremy@pro75-4-82-238-200-10.fbx.proxad.net) (Ping timeout: 240 seconds)
- # [15:18] * Quits: Ms2ger (~Ms2ger@91.181.107.252) (Remote host closed the connection)
- # [15:20] * Joins: Ms2ger (~Ms2ger@91.181.107.252)
- # [15:23] * Joins: jeremyselier (~Jeremy@pro75-4-82-238-200-10.fbx.proxad.net)
- # [15:28] * Joins: miketaylr (~miketaylr@206.217.92.186)
- # [15:28] * Quits: echoSMILE (~smile@unaffiliated/echosmile) (Read error: Operation timed out)
- # [15:28] * Quits: miketaylr (~miketaylr@206.217.92.186) (Client Quit)
- # [15:29] * Joins: g105b_ (5e1e6582@gateway/web/freenode/ip.94.30.101.130)
- # [15:31] * Joins: miketaylr (~miketaylr@206.217.92.186)
- # [15:32] * Quits: g105b (5e1e6582@gateway/web/freenode/ip.94.30.101.130) (Ping timeout: 265 seconds)
- # [15:34] * Joins: tw2113 (~tw2113asw@host-66-96-230-24.midco.net)
- # [15:34] * Quits: tw2113 (~tw2113asw@host-66-96-230-24.midco.net) (Changing host)
- # [15:34] * Joins: tw2113 (~tw2113asw@fedora/tw2113)
- # [15:34] * Joins: dcadenas_ (~dcadenas@r186-48-199-160.dialup.adsl.anteldata.net.uy)
- # [15:35] * Quits: dcadenas (~dcadenas@r186-48-200-110.dialup.adsl.anteldata.net.uy) (Read error: Connection reset by peer)
- # [15:42] * Quits: kidfribble (~kidfribbl@c-66-31-28-249.hsd1.ma.comcast.net) (Quit: kidfribble)
- # [15:43] * Joins: andrzejsliwa (~andrzejsl@host-81-190-187-17.kwidzyn.mm.pl)
- # [15:44] * Quits: g105b_ (5e1e6582@gateway/web/freenode/ip.94.30.101.130) (Ping timeout: 265 seconds)
- # [15:44] * Joins: kidfribble (~kidfribbl@c-66-31-28-249.hsd1.ma.comcast.net)
- # [15:51] * Quits: iNico (~iNico@LLagny-156-34-42-237.w80-14.abo.wanadoo.fr) (Read error: Connection reset by peer)
- # [15:52] * Joins: iNico (~iNico@LLagny-156-34-42-237.w80-14.abo.wanadoo.fr)
- # [15:52] * Quits: Trisox (Trisox@g31044.upc-g.chello.nl) (Ping timeout: 265 seconds)
- # [15:54] * Joins: Trisox (Trisox@g31044.upc-g.chello.nl)
- # [16:01] * dmachi1 is now known as dmachi
- # [16:05] * Joins: felcom (~felcom@rrcs-71-43-19-2.se.biz.rr.com)
- # [16:06] <felcom> boo for designers insisting on angled shadows =(
- # [16:12] * Quits: andrzejsliwa (~andrzejsl@host-81-190-187-17.kwidzyn.mm.pl) (Remote host closed the connection)
- # [16:18] * Joins: hubble (~hubble@173-165-61-105-Illinois.hfc.comcastbusiness.net)
- # [16:24] * Joins: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com)
- # [16:25] * Quits: anttio (~anttio@huittinen.of.frantic.com) (Quit: anttio)
- # [16:30] * Joins: jamund (~jamund@174-23-31-124.slkc.qwest.net)
- # [16:34] * Quits: jamund (~jamund@174-23-31-124.slkc.qwest.net) (Client Quit)
- # [16:35] * Quits: daggberg (~daggberg@41.212.23.34) (Read error: No route to host)
- # [16:36] * Quits: KDN (~KDN@202.171.164.210) (Read error: Connection reset by peer)
- # [16:37] * Quits: matjas (~matjas@ip-213-49-112-240.dsl.scarlet.be) (Quit: Computer has gone to sleep.)
- # [16:38] * Joins: andrzejsliwa (~andrzejsl@host-81-190-187-17.kwidzyn.mm.pl)
- # [16:39] * Joins: zcorpan (~zcorpan@c-8d9ae355.410-6-64736c14.cust.bredbandsbolaget.se)
- # [16:41] * Quits: paul_irish (~paul_iris@c-76-21-40-62.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [16:42] * Quits: zcorpan (~zcorpan@c-8d9ae355.410-6-64736c14.cust.bredbandsbolaget.se) (Remote host closed the connection)
- # [16:43] * Joins: zcorpan (~zcorpan@c-8d9ae355.410-6-64736c14.cust.bredbandsbolaget.se)
- # [16:44] * Joins: snover (~Adium@unaffiliated/snover)
- # [16:46] * Joins: KDN (~KDN@202.171.164.210)
- # [16:51] * Quits: dug__ (43b1012e@gateway/web/freenode/ip.67.177.1.46) (Ping timeout: 265 seconds)
- # [17:00] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [17:00] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [17:01] * Joins: Mussious (~kamil@dgd58.neoplus.adsl.tpnet.pl)
- # [17:02] * Joins: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [17:03] * Quits: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Max SendQ exceeded)
- # [17:04] * Joins: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [17:05] * Quits: Mussious (~kamil@dgd58.neoplus.adsl.tpnet.pl) (Client Quit)
- # [17:05] * Joins: patcito (~123@190.42.193.120)
- # [17:05] * Joins: jamund (~jamund@66.7.120.126)
- # [17:05] * Joins: ericduran (~ericduran@173-203-243-241.static.cloud-ips.com)
- # [17:06] * Joins: paul_irish (~paul_iris@66.109.106.126)
- # [17:07] * Joins: bentruyman (~bentruyma@li159-104.members.linode.com)
- # [17:10] * Joins: thatryan (~thatryan@adsl-99-24-221-251.dsl.pltn13.sbcglobal.net)
- # [17:10] * Quits: henrikkok (~Adium@80.199.116.190.static.peytz.dk) (Quit: Leaving.)
- # [17:12] * Quits: beevi7 (~manuel.bi@tim.7val.com) (Ping timeout: 272 seconds)
- # [17:13] * Joins: addyosmani (~apple@host109-154-60-192.range109-154.btcentralplus.com)
- # [17:13] * Quits: myakura (~myakura@p2032-ipbf3005marunouchi.tokyo.ocn.ne.jp) (Remote host closed the connection)
- # [17:16] * Joins: figital (~figital@64.119.153.2)
- # [17:20] * Quits: iNico (~iNico@LLagny-156-34-42-237.w80-14.abo.wanadoo.fr) (Quit: iNico)
- # [17:20] * Joins: ben_c (~ben_c@cpc9-brig17-2-0-cust194.3-3.cable.virginmedia.com)
- # [17:33] * Joins: Nakre (~Nakre@81.215.20.93)
- # [17:34] * Quits: zcorpan (~zcorpan@c-8d9ae355.410-6-64736c14.cust.bredbandsbolaget.se) (Quit: zcorpan)
- # [17:34] <Evet> why the hell google make svg impossible?
- # [17:36] <Evet> http://www.wired.com/gadgetlab/2011/01/kongregate-android-marketplace/
- # [17:36] <paul_irish> oh android. :( yeah. sucks.
- # [17:39] * Joins: dguttman (~dguttman@cpe-98-149-45-68.socal.res.rr.com)
- # [17:40] * Quits: andrzejsliwa (~andrzejsl@host-81-190-187-17.kwidzyn.mm.pl) (Remote host closed the connection)
- # [17:42] * Joins: matjas_ (~matjas@91.182.204.71)
- # [17:43] * Quits: seutje (~steve@drupal.org/user/264148/view) (Quit: WeeChat 0.3.2)
- # [17:52] * Quits: Drule (~Drule@mail.upsales.com)
- # [17:52] * Joins: noxxten (noxxten@adsl-93-110-145.owb.bellsouth.net)
- # [17:58] * Joins: exp (~zAyghip8@cpc2-ely02-0-0-cust338.5-1.cable.virginmedia.com)
- # [18:03] * Joins: cgcardona (~cgcardona@cpe-98-150-150-230.hawaii.res.rr.com)
- # [18:03] <mike5w3c> http://lab.simurai.com/ui/zen-player/
- # [18:05] * Quits: bentruyman (~bentruyma@li159-104.members.linode.com) (Ping timeout: 240 seconds)
- # [18:07] * Joins: antonkovalyov (~antonkova@216.239.45.19)
- # [18:07] * Joins: croby (~croby@c-24-19-51-159.hsd1.wa.comcast.net)
- # [18:09] * Quits: dguttman (~dguttman@cpe-98-149-45-68.socal.res.rr.com) (Quit: dguttman)
- # [18:13] * Joins: techrush (~techrush@adsl-75-4-203-46.dsl.irvnca.sbcglobal.net)
- # [18:14] <Evet> kool
- # [18:18] * Quits: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Quit: Leaving)
- # [18:18] * Quits: paul_irish (~paul_iris@66.109.106.126) (Remote host closed the connection)
- # [18:20] * Joins: navi_sir (~navi@dhcp-077-250-183-068.chello.nl)
- # [18:20] * Joins: andrzejsliwa (~andrzejsl@host-81-190-187-17.kwidzyn.mm.pl)
- # [18:20] * Joins: JonathanNeal (~Jonathan@rrcs-76-79-114-214.west.biz.rr.com)
- # [18:20] <JonathanNeal> came up with this this morning http://sandbox.thewikies.com/html5-spec-live-search/
- # [18:20] <JonathanNeal> what think you?
- # [18:22] <Nakre> looks nice to me lol
- # [18:22] <JonathanNeal> thanks Nakre
- # [18:23] <mike5w3c> JonathanNeal: what's it indexing? the section titles?
- # [18:23] <mike5w3c> dfn's?
- # [18:23] * Quits: antonkovalyov (~antonkova@216.239.45.19) (Read error: Operation timed out)
- # [18:24] <JonathanNeal> I dunno, some json page i downloaded from someone (that I think runs on whatwg or w3c)
- # [18:25] * Joins: FylGood (~fylgood@pool-71-178-230-133.washdc.fios.verizon.net)
- # [18:25] <JonathanNeal> Someone said "hey jon neal wanna make a live search of the html5 doc that would be like how a mobile app is" and after I freed my soul from some other obligations I made it.
- # [18:25] <JonathanNeal> I think benschwarz asked for it. I could be totally wrong.
- # [18:25] <JonathanNeal> and paul_irish
- # [18:25] * Joins: peol (~andree@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [18:25] * Quits: peol (~andree@h55eb1e56.selukra.dyn.perspektivbredband.net) (Changing host)
- # [18:25] * Joins: peol (~andree@unaffiliated/peol)
- # [18:25] * Quits: FylGood (~fylgood@pool-71-178-230-133.washdc.fios.verizon.net) (Remote host closed the connection)
- # [18:28] * Joins: boaz (~boaz@c-24-128-79-120.hsd1.ma.comcast.net)
- # [18:30] * Joins: antonkovalyov (~antonkova@75.126.14.202-static.reverse.softlayer.com)
- # [18:31] <JonathanNeal> mike5w3c, you would know more than I, right?
- # [18:32] <JonathanNeal> on this subject (cause I'd totally take you down in mario kart wii)
- # [18:32] <mike5w3c> heh
- # [18:33] * Quits: techrush (~techrush@adsl-75-4-203-46.dsl.irvnca.sbcglobal.net) (Ping timeout: 250 seconds)
- # [18:34] * Joins: paul_irish (~paul_iris@nat/google/x-phfscywdlhlmbqbf)
- # [18:34] * Joins: JKarsrud (~JKarsrud@178.74.12.26)
- # [18:40] <JonathanNeal> heya paul_irish http://sandbox.thewikies.com/html5-spec-live-search/
- # [18:41] * Quits: antonkovalyov (~antonkova@75.126.14.202-static.reverse.softlayer.com) (Remote host closed the connection)
- # [18:42] * Joins: antonkovalyov (~antonkova@216.239.45.19)
- # [18:43] <paul_irish> :D
- # [18:44] * Joins: thecolor3 (~thecolor3@rrcs-24-43-162-254.west.biz.rr.com)
- # [18:44] <paul_irish> yup i think this is pretty much on point
- # [18:44] <thecolor3> hey everyone. Hows it going. I have a question. How many of you gave up on jw player for html5 integration and found a simplier solution?
- # [18:45] <JonathanNeal> thecolor3, I gave up on jwplayer years ago.
- # [18:46] <JonathanNeal> Most folks still use html5 video with a flash fallback like Video For Everybody @ http://camendesign.com/code/video_for_everybody
- # [18:46] <thecolor3> http://pastebin.com/W4xv2uvB is my existing code for jwplayer that I have been using for a while but have no idea how to get it to work with just html5 instead and fallback
- # [18:46] <JonathanNeal> When I say "like" I mean "as seen at"
- # [18:47] <JonathanNeal> thecolor3, try using http://sandbox.thewikies.com/vfe-generator/
- # [18:47] <JonathanNeal> If you know the url, it will do most of the work for you, including the flash fallback for IE. It even supports JW Player.
- # [18:48] <thecolor3> sweet. Now the question I have is, what if you are dynamically loading content. Does it really matter?
- # [18:49] <JonathanNeal> It matters, you would probably want to generate html like you see in vfe-generator
- # [18:49] * Joins: Michael (~disney@extwdig.dig.com)
- # [18:49] <paul_irish> ^
- # [18:49] * Quits: Michael (~disney@extwdig.dig.com) (Changing host)
- # [18:49] * Joins: Michael (~disney@unaffiliated/jabberwock)
- # [18:49] <Michael> <
- # [18:50] <thecolor3> JonathanNeal, by dynamically loading I mean via js and its just a createplayer setup with the url and thrown into the container from js
- # [18:51] <thecolor3> so like a href="javascript: createplayer(../aviisha/1.mp4);")
- # [18:53] * Quits: andrzejsliwa (~andrzejsl@host-81-190-187-17.kwidzyn.mm.pl) (Read error: Connection reset by peer)
- # [18:54] <JonathanNeal> Yea, I follow you. So, write a script that generates that html :)
- # [18:55] <thecolor3> JonathanNeal: I can have the player play a single file np. thats supported easily
- # [18:55] <thecolor3> specifically in html5 with fall back
- # [18:56] * Quits: KDN (~KDN@202.171.164.210) (Ping timeout: 255 seconds)
- # [18:57] * Joins: MattDiPasquale (~MattDiPas@rrcs-184-74-229-10.nyc.biz.rr.com)
- # [18:57] <JonathanNeal> yea
- # [18:58] * Joins: andrzejsliwa (~andrzejsl@host-81-190-187-17.kwidzyn.mm.pl)
- # [18:59] * Joins: dcadenas (~dcadenas@r186-48-212-170.dialup.adsl.anteldata.net.uy)
- # [19:00] * Quits: dcadenas_ (~dcadenas@r186-48-199-160.dialup.adsl.anteldata.net.uy) (Read error: Operation timed out)
- # [19:00] * Joins: Mussious (~kamil@dgd58.neoplus.adsl.tpnet.pl)
- # [19:02] * Quits: antonkovalyov (~antonkova@216.239.45.19) (Ping timeout: 250 seconds)
- # [19:02] <thecolor3> Just the issue is figuring out what I need to change in the js to accomidate the fallback seamlessly
- # [19:05] <JonathanNeal> thecolor3, http://pastie.org/1503218
- # [19:06] * Joins: n20 (~n20@unaffiliated/n20)
- # [19:06] <JonathanNeal> try that
- # [19:06] <n20> How come I can't use autocomplete="on" on an input[type="email"]? It doesn't work, although Firefox indeed does save the password... :-(
- # [19:07] * Quits: svenlito_ (~svnlto@188-223-81-77.dsl.cnl.uk.net) (Read error: Connection reset by peer)
- # [19:07] <thecolor3> JonathanNeal: Enclosed with <script text/javascript of course?
- # [19:08] * Joins: svenlito_ (~svnlto@188-223-81-77.dsl.cnl.uk.net)
- # [19:08] <JonathanNeal> ... you betcha
- # [19:08] * Joins: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [19:08] * Joins: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com)
- # [19:08] <JonathanNeal> Or just <script> (cause you don't need the type="text/javascript")
- # [19:09] * Quits: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Max SendQ exceeded)
- # [19:09] * Joins: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [19:10] * Quits: jomn (~jomn@c80-216-24-119.bredband.comhem.se) (Remote host closed the connection)
- # [19:11] <thecolor3> JonathanNeal: problem is that its disallowing auto creates based on <a href link
- # [19:11] <thecolor3> and its not creating it within the the ph I have setup within the site
- # [19:12] <Michael> paul_irish, Did we ever find a fallback for ruby notation?
- # [19:13] <thecolor3> JonathanNeal: but thanks I will try to take it from here ^_^
- # [19:13] <JonathanNeal> thecolor3, I think I set you off on the right direction.
- # [19:14] * Quits: kor (~kor@ip146-53-210-87.adsl2.static.versatel.nl) (Quit: kor)
- # [19:14] <thecolor3> JonathanNeal: yea totally and thanks. I am sure it will take some time but will make my life easier
- # [19:15] * Quits: paul_irish (~paul_iris@nat/google/x-phfscywdlhlmbqbf) (Remote host closed the connection)
- # [19:18] * Quits: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com) (Quit: dgathright)
- # [19:18] <n20> Shouldn't autocomplete="on" work on input[type="email"]?
- # [19:19] <n20> (inputs utilizing the email-type)
- # [19:19] <JonathanNeal> yea, that would make sense to me, n20
- # [19:20] <JonathanNeal> I think it was intended to, based on this old ms note from http://msdn.microsoft.com/en-us/library/ms533032(v=vs.85).aspx
- # [19:21] <JonathanNeal> I hate that I just references, msdn (like referencing w3schools)
- # [19:21] <JonathanNeal> *referenced msdn
- # [19:21] * Joins: dguttman (~dguttman@gige.bur.digisynd.com)
- # [19:21] <n20> JonathanNeal: However, it doesn't want to "display" the emails or something, even though it actually saves it in the local password vault. Really weird...
- # [19:21] <n20> JonathanNeal: I forgive you! ;-)
- # [19:22] * Joins: kor (~kor@ip146-53-210-87.adsl2.static.versatel.nl)
- # [19:22] <JonathanNeal> n20, do you have an example online someone else can test?
- # [19:23] <n20> JonathanNeal: I'll set one up!
- # [19:23] <JonathanNeal> n20, also look at http://miketaylr.com/code/input-type-attr.html
- # [19:24] * Joins: jomn (~jomn@c80-216-24-119.bredband.comhem.se)
- # [19:24] <xonecas> JonathanNeal: sweet thing you made up there ! thank you!
- # [19:24] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Remote host closed the connection)
- # [19:25] <n20> Well, FF3.6 doesn't support the email-type quite yet --> parses it as text --> should be displaying correctly?
- # [19:25] <JonathanNeal> xonecas, what did I do?
- # [19:27] * Quits: jeremyselier (~Jeremy@pro75-4-82-238-200-10.fbx.proxad.net) (Ping timeout: 240 seconds)
- # [19:30] * Joins: antonkovalyov (~antonkova@216.239.45.19)
- # [19:30] <xonecas> http://sandbox.thewikies.com/html5-spec-live-search/
- # [19:30] <xonecas> that really nice
- # [19:32] <n20> JonathanNeal: Ok, that's plain weird - it works in my test case.
- # [19:35] <JonathanNeal> thanks
- # [19:35] * Joins: paul_irish (~paul_iris@nat/google/x-zdkoirglnlhucqyj)
- # [19:37] * Quits: navi_sir (~navi@dhcp-077-250-183-068.chello.nl) (Quit: navi_sir)
- # [19:39] * Joins: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com)
- # [19:39] * Joins: murz (~mmurraywa@wcproxy.msnbc.com)
- # [19:40] <paul_irish> Michael: yeah there is one of the page.
- # [19:40] <bot-t> (11 mins 50 secs ago) <boaz> tell paul_irish http://www.zeldman.com/2011/01/27/html5-vs-html/#comment-57989 <-- the debate is back on
- # [19:43] * Quits: svenlito_ (~svnlto@188-223-81-77.dsl.cnl.uk.net) (Quit: svenlito_)
- # [19:46] * Quits: svenlito (~svenlito@193.111.227.10) (Remote host closed the connection)
- # [19:46] * Joins: jacine (~jacine@drupal.org/user/88931/view)
- # [19:54] * Quits: antonkovalyov (~antonkova@216.239.45.19) (Ping timeout: 240 seconds)
- # [19:55] * Quits: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com) (Quit: dgathright)
- # [19:56] <Michael> sweet
- # [19:58] * Joins: jus101 (~chatzilla@203-97-83-44.sli-systems.com)
- # [20:00] * Joins: Killman (~Killman@unaffiliated/killman)
- # [20:01] * Quits: codetonowhere1 (~Adium@2001:67c:90:770:222:41ff:fe2a:3d9e) (Quit: Leaving.)
- # [20:02] <felcom> does firefox have problems with margins (css) on html5 elements such as <header> and <footer> ?
- # [20:05] <felcom> it seems if I set a top/bottom margin on a child of a <header> or <footer>, the margin doesnt push the child away from the <header> or <footer>
- # [20:06] <felcom> instead it pushes the next parent, as if the <header/footer> wasn't containing it
- # [20:07] <felcom> padding works though
- # [20:08] <Pewpewarrows> hah where on earth is that HTML logo you were lounging by paul_irish?
- # [20:09] * Quits: addyosmani (~apple@host109-154-60-192.range109-154.btcentralplus.com) (Ping timeout: 240 seconds)
- # [20:09] * Joins: addyosmani (~apple@host86-164-98-252.range86-164.btcentralplus.com)
- # [20:09] <noxxten> felcon: why don't you use a html5 css reset? That would probably solve your issues :p.
- # [20:10] <felcom> i am =x
- # [20:10] <noxxten> ahh.
- # [20:11] <Pewpewarrows> felcom: I notice that on most browsers with the very first element on the page with margin-top, it'll bubble up and push the entire page down, never noticed it with a footer though
- # [20:11] <noxxten> target the element and add !important; into the css to make the margin/padding 0. if anything changes, then you have some styling going on somewhere. if not, then it isn't a margin or padding issue :p
- # [20:12] <felcom> Pewpewarrows: yeah i have that same problem in the header as well
- # [20:12] * Joins: Drule (Drule@83.181.2.198)
- # [20:14] <Pewpewarrows> my only solution to that was to add another wrapper and just give it some top padding
- # [20:14] <Pewpewarrows> I think, maybe that was for a different problem, I really don't remember anymore
- # [20:14] <jamund> are you doing display: block
- # [20:14] <felcom> yeah it's like certain html5 elements don't act as content containers
- # [20:14] <felcom> yeah in the reset
- # [20:14] <noxxten> it's usually a good idea to use the body itself as a wrapper if you can.
- # [20:15] <noxxten> that solves the issues for me at least.
- # [20:16] * Joins: dug__ (43b1012e@gateway/web/freenode/ip.67.177.1.46)
- # [20:23] * Quits: cocoadaemon (~cocoadaem@2a01:e35:8a99:e90:20d:93ff:fe3b:868c) (Quit: cocoadaemon)
- # [20:25] * Quits: jamund (~jamund@66.7.120.126) (Quit: jamund)
- # [20:25] * Joins: jamund (~jamund@66.7.120.126)
- # [20:28] * Quits: Guest90386 (~Levis@93-63-109-252.ip27.fastwebnet.it) (Remote host closed the connection)
- # [20:29] * Quits: boaz (~boaz@c-24-128-79-120.hsd1.ma.comcast.net) (Quit: boaz)
- # [20:29] * ericduran is now known as ericduran|afk
- # [20:30] * Quits: andrzejsliwa (~andrzejsl@host-81-190-187-17.kwidzyn.mm.pl) (Remote host closed the connection)
- # [20:30] * Joins: Ramosa (Ramosa@unaffiliated/harald/x-000000001)
- # [20:31] * Joins: andrzejsliwa (~andrzejsl@host-81-190-187-17.kwidzyn.mm.pl)
- # [20:31] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [20:32] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [20:32] * Quits: andrzejsliwa (~andrzejsl@host-81-190-187-17.kwidzyn.mm.pl) (Remote host closed the connection)
- # [20:33] * Quits: Mussious (~kamil@dgd58.neoplus.adsl.tpnet.pl) (Quit: Ex-Chat)
- # [20:34] * Joins: mike5w3c_ (~MikeSmith@EM114-48-180-220.pool.e-mobile.ne.jp)
- # [20:35] * Joins: antonkovalyov (~antonkova@nat/google/x-hscadyvccsqifmxy)
- # [20:35] <mike5w3c_> ya gotta love these Virtual Life Project guys
- # [20:35] <paul_irish> Pewpewarrows: tokyo
- # [20:35] <paul_irish> mike ^ brought us there.
- # [20:35] <Pewpewarrows> oh nice
- # [20:35] <mike5w3c_> http://www.dionyziz.com/
- # [20:35] <mike5w3c_> "greetings, human. I'm dionyziz, a daredevil of technology."
- # [20:36] * Joins: dguttman_ (~dguttman@gige.bur.digisynd.com)
- # [20:36] * Quits: dguttman_ (~dguttman@gige.bur.digisynd.com) (Client Quit)
- # [20:36] <mike5w3c_> HTML Love Bug
- # [20:37] * Quits: mike5w3c (~MikeSmith@EM114-48-214-164.pool.e-mobile.ne.jp) (Ping timeout: 240 seconds)
- # [20:37] * mike5w3c_ is now known as mike5w3c
- # [20:37] <JonathanNeal> love bug eh
- # [20:37] * Joins: Thasmo (~thasmo@d86-32-70-21.cust.tele2.at)
- # [20:37] <mike5w3c> maybe paul_irish should change his nick to html_love_bug
- # [20:38] * paul_irish is now known as html_love_bug
- # [20:38] <mike5w3c> heh
- # [20:38] <mike5w3c> excellent
- # [20:38] <JonathanNeal> oh em gee
- # [20:38] <html_love_bug> ♥
- # [20:39] <JonathanNeal> html_love_bug, love mike5w3c with puppies in paragraph tags
- # [20:39] <JonathanNeal> ... oh, it doesn't work like bot-t?
- # [20:39] <mike5w3c> kee hee hee
- # [20:40] * Quits: peol (~andree@unaffiliated/peol) (Quit: Bye!)
- # [20:40] * Quits: dguttman (~dguttman@gige.bur.digisynd.com) (Ping timeout: 265 seconds)
- # [20:41] <JonathanNeal> http://sandbox.thewikies.com/puppies-in-p/
- # [20:42] * Joins: dguttman (~dguttman@gige.bur.digisynd.com)
- # [20:42] * ericduran|afk is now known as ericduran
- # [20:42] <mike5w3c> now that's a photo
- # [20:42] * Quits: dguttman (~dguttman@gige.bur.digisynd.com) (Client Quit)
- # [20:43] * Joins: boaz (~boaz@c-24-128-79-120.hsd1.ma.comcast.net)
- # [20:43] <mike5w3c> even Michelangelo never created nothing as wonderful as that photo
- # [20:45] * Joins: dgathright (~dgathrigh@nat/yahoo/x-ewwrvmavxbkbjztx)
- # [20:45] <felcom> ain't never seen no doggie not walkin that high
- # [20:48] <thatryan> antonkovalyov: you around?
- # [20:48] <antonkovalyov> ya
- # [20:48] <antonkovalyov> on the conf soon
- # [20:48] <antonkovalyov> and battery is dying
- # [20:48] <antonkovalyov> so might leave soon
- # [20:48] <antonkovalyov> sup?
- # [20:49] <thatryan> you are going tonight righ?
- # [20:49] <thatryan> will they check our names or something? how do they know if we were "in" and not on waiting list or whatever? ;)
- # [20:49] * Joins: coweso (~coweso@unaffiliated/toinso)
- # [20:49] * Joins: echoSMILE (~smile@bl17-218-205.dsl.telepac.pt)
- # [20:49] * Quits: echoSMILE (~smile@bl17-218-205.dsl.telepac.pt) (Changing host)
- # [20:49] * Joins: echoSMILE (~smile@unaffiliated/echosmile)
- # [20:50] <tw2113> i'm here!
- # [20:50] <tw2113> technically
- # [20:51] <thatryan> liar
- # [20:53] * Quits: HAITI (~j@unaffiliated/haiti) (Ping timeout: 276 seconds)
- # [20:54] <antonkovalyov> thatryan, they might check with the list of rsvps
- # [20:54] <antonkovalyov> or they won't care
- # [20:54] <antonkovalyov> prob the latter
- # [20:54] <antonkovalyov> it is just when it is full, security might turn people away
- # [20:55] <antonkovalyov> but it depends on the building and i've never been to that one
- # [20:56] * Joins: peol (~andree@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [20:56] * Quits: peol (~andree@h55eb1e56.selukra.dyn.perspektivbredband.net) (Changing host)
- # [20:56] * Joins: peol (~andree@unaffiliated/peol)
- # [20:56] <thatryan> ah gotcha
- # [20:56] <thatryan> just wanted to make sure :)
- # [20:59] * Quits: jus101 (~chatzilla@203-97-83-44.sli-systems.com) (Quit: ChatZilla 0.9.86 [Firefox 3.6.13/20101203075014])
- # [21:00] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [21:00] * Quits: romainhuet (~romainhue@2a01:e35:2eec:80a0:226:8ff:fedf:5bfa) (Quit: romainhuet)
- # [21:00] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [21:00] <JonathanNeal> html5 conf?
- # [21:00] <JonathanNeal> html conf?
- # [21:00] * Joins: romainhuet (~romainhue@2a01:e35:2eec:80a0:226:8ff:fedf:5bfa)
- # [21:00] <JonathanNeal> htm conf?
- # [21:00] <html_love_bug> lovebug conf
- # [21:00] <JonathanNeal> ooo
- # [21:00] <JonathanNeal> that conf
- # [21:00] <JonathanNeal> i wanted to speak at that conf
- # [21:01] * Quits: romainhuet (~romainhue@2a01:e35:2eec:80a0:226:8ff:fedf:5bfa) (Read error: Connection reset by peer)
- # [21:01] * Joins: romainhuet_ (~romainhue@pro75-4-82-238-200-10.fbx.proxad.net)
- # [21:01] * Quits: boaz (~boaz@c-24-128-79-120.hsd1.ma.comcast.net) (Quit: boaz)
- # [21:06] * Joins: grantg (d8bdab51@gateway/web/freenode/ip.216.189.171.81)
- # [21:07] <grantg> xonecas: saw your github watch. :P
- # [21:07] * Quits: romainhuet_ (~romainhue@pro75-4-82-238-200-10.fbx.proxad.net) (Quit: romainhuet_)
- # [21:07] * Joins: zcorpan (~zcorpan@c-8d9ae355.410-6-64736c14.cust.bredbandsbolaget.se)
- # [21:08] * Joins: matjas__ (~matjas@91.182.204.71)
- # [21:09] * Joins: grantg_ (d8bdab51@gateway/web/freenode/ip.216.189.171.81)
- # [21:10] * Quits: matjas_ (~matjas@91.182.204.71) (Ping timeout: 240 seconds)
- # [21:10] * Quits: html_love_bug (~paul_iris@nat/google/x-zdkoirglnlhucqyj) (Remote host closed the connection)
- # [21:12] * Quits: grantg (d8bdab51@gateway/web/freenode/ip.216.189.171.81) (Ping timeout: 265 seconds)
- # [21:15] * Quits: echoSMILE (~smile@unaffiliated/echosmile) (Ping timeout: 240 seconds)
- # [21:16] <cgcardona> what is the best webpage to send to a client regarding the suckiness or IE?
- # [21:17] <noxxten> cgcardona: http://www.google.com/search?ie=UTF-8&q=IE6+bugs+wikipedia
- # [21:18] * Joins: echoSMILE (~smile@bl17-218-205.dsl.telepac.pt)
- # [21:18] * Quits: echoSMILE (~smile@bl17-218-205.dsl.telepac.pt) (Changing host)
- # [21:18] * Joins: echoSMILE (~smile@unaffiliated/echosmile)
- # [21:19] * Quits: antonkovalyov (~antonkova@nat/google/x-hscadyvccsqifmxy) (Quit: Leaving...)
- # [21:20] <noxxten> i've noticed everyone using html5 has held it up by using a JS shiv. But whats going to happen if someone visited the website without js enabled in IE6?
- # [21:20] * Quits: grantg_ (d8bdab51@gateway/web/freenode/ip.216.189.171.81) (Ping timeout: 265 seconds)
- # [21:21] <tw2113> they get a messed up layout cause they won't have the html5 tags be styleable
- # [21:21] <tw2113> IE6 will ignore them
- # [21:22] <noxxten> yeah. I figured as such. So basically you either develop in html5, or develop the website to work in IE6. either or.
- # [21:23] <tw2113> or you use the shiv and develop for both
- # [21:23] <tw2113> and i really wonder why so many people worry about IE6+no js
- # [21:23] <tw2113> if someone is paranoid enough to not use js, they're likely not using IE6 as well
- # [21:24] <tw2113> and i think the numbers for those people are really really small
- # [21:24] <tw2113> jsut me though
- # [21:24] <tw2113> just*
- # [21:25] <noxxten> I just make the assumption that most IE6 users are office people with nazi's for their IT department. I've heard plenty of stories of IT forcing IE6 on the company and disabling javascript for 'security reasons' :\
- # [21:25] <noxxten> In a good situation, I would design for my target audience... But for this website I don't yet know who that is.
- # [21:25] <tw2113> my next statement there is "is your website something they need to be viewing while at work?"
- # [21:26] <snover> there’s no reason for a corporate IT department to enforce IE6 for day-to-day web browsing so there is really no reason to pay any credence to it at all at this point
- # [21:26] <noxxten> possibly.
- # [21:27] * Quits: matjas__ (~matjas@91.182.204.71) (Remote host closed the connection)
- # [21:27] * Joins: matjas_ (~matjas@91.182.204.71)
- # [21:27] * matjas_ is now known as matjas
- # [21:28] * Quits: thatryan (~thatryan@adsl-99-24-221-251.dsl.pltn13.sbcglobal.net) (Quit: Leaving...)
- # [21:31] * Quits: benschwarz (~ben@59.167.185.148) (Quit: benschwarz)
- # [21:31] * Joins: benschwarz (~ben@59.167.185.148)
- # [21:32] * Quits: felcom (~felcom@rrcs-71-43-19-2.se.biz.rr.com) (Quit: felcom)
- # [21:33] * Joins: andrzejsliwa (~andrzejsl@host-81-190-187-17.kwidzyn.mm.pl)
- # [21:33] * Quits: andrzejsliwa (~andrzejsl@host-81-190-187-17.kwidzyn.mm.pl) (Remote host closed the connection)
- # [21:35] <Pewpewarrows> http://exitfegs.co.uk/Sources.html
- # [21:36] <Pewpewarrows> don't worry guys, he says he used HTML5 and CSS3 to make the page
- # [21:36] <Pewpewarrows> future of the web right thur
- # [21:37] * Quits: figital (~figital@64.119.153.2) (Remote host closed the connection)
- # [21:37] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [21:38] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [21:39] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [21:39] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [21:40] * Joins: pumkinhed (~pumkinhed@d209-89-238-201.abhsia.telus.net)
- # [21:40] * Joins: figital (~figital@64.119.153.2)
- # [21:40] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [21:40] <pumkinhed> hello #html, i got a quick q, i am using safari browser, and trying to use input type=number but when i use it in a form the only ones that get sent back to my webserver and the input type=text, the numbers just dont come back
- # [21:40] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [21:40] <pumkinhed> anyone else experience this behavior
- # [21:40] <pumkinhed> ?
- # [21:42] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [21:42] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [21:43] <Michael> hmm
- # [21:43] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [21:43] <Michael> No I haven't
- # [21:43] <pumkinhed> shrug
- # [21:43] <Michael> Is number officially supported by safari?
- # [21:43] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [21:43] <pumkinhed> yeah, it changes the iphone keyboard
- # [21:44] <Michael> So this is safari/iphone you're using?
- # [21:44] <pumkinhed> yep
- # [21:44] <Michael> And the values are not being sent to the webserver?
- # [21:44] <Michael> Hmm
- # [21:44] <tw2113> this isn't #html, this is #html5 :P
- # [21:44] <Michael> ^^
- # [21:44] <pumkinhed> afaik input type=number is a html5 attr, no?
- # [21:44] <JonathanNeal> Hey I made my own HTML5 logo @ http://sandbox.thewikies.com/puppies-in-p/
- # [21:44] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [21:44] <Michael> sfw?
- # [21:45] <tw2113> it has puppies
- # [21:45] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [21:45] <JonathanNeal> yes, it's sfw
- # [21:45] <Michael> exactly why I asked
- # [21:45] <pumkinhed> what about my q isnt html5?
- # [21:45] <pumkinhed> is the input tag deprecated?
- # [21:45] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [21:45] * Quits: Ms2ger (~Ms2ger@91.181.107.252) (Ping timeout: 246 seconds)
- # [21:45] <tw2113> pumkinhed, in your intro paragraph you simply said #html
- # [21:46] <tw2113> was my only point
- # [21:46] <JonathanNeal> pumkinhed, no they decided to keep <input />
- # [21:46] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [21:46] <pumkinhed> tw2113: ah being a pedantic nerd, gotcha
- # [21:46] <pumkinhed> ;-P
- # [21:46] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [21:46] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [21:46] * Quits: figital (~figital@64.119.153.2) (Read error: Connection reset by peer)
- # [21:47] <pumkinhed> JonathanNeal: thanks, are those additional input types supposed to post?
- # [21:47] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [21:48] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [21:48] <JonathanNeal> pumkinhed, miketaylr.com/code/input-type-attr.html
- # [21:48] <JonathanNeal> http://miketaylr.com/code/input-type-attr.html ^^
- # [21:48] * Joins: figital (~figital@64.119.153.2)
- # [21:51] <pumkinhed> ah, cool. i am going to create a quick test form instead, maybe theres something about my form or the fact i am using jquery
- # [21:51] * Quits: addyosmani (~apple@host86-164-98-252.range86-164.btcentralplus.com) (Quit: addyosmani)
- # [21:58] <tw2113> hee, accidentally made a background image slider
- # [21:58] * Joins: Ms2ger (~Ms2ger@91.181.227.85)
- # [21:59] * Joins: matjas_ (~matjas@91.182.10.138)
- # [22:00] * Joins: thatryan (~thatryan@adsl-99-24-221-251.dsl.pltn13.sbcglobal.net)
- # [22:00] * Quits: matjas (~matjas@91.182.204.71) (Ping timeout: 240 seconds)
- # [22:02] * Joins: bentruyman (~bentruyma@li159-104.members.linode.com)
- # [22:06] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [22:08] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [22:08] <tw2113> heh, not often i can say that IE did something good
- # [22:08] * Joins: cocoadaemon (~cocoadaem@2001:470:1f09:12:20d:93ff:fe3b:868c)
- # [22:09] <tw2113> it made me realize i forgot to close an unordered list
- # [22:09] * Joins: addyosmani (~apple@host86-164-98-252.range86-164.btcentralplus.com)
- # [22:14] * Joins: franksalim_ (~frank@108-65-76-174.lightspeed.sntcca.sbcglobal.net)
- # [22:17] * Quits: franksalim (~frank@108-65-76-174.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 240 seconds)
- # [22:27] * Quits: peol (~andree@unaffiliated/peol) (Quit: peol)
- # [22:27] * Quits: echoSMILE (~smile@unaffiliated/echosmile) (Ping timeout: 240 seconds)
- # [22:27] * Joins: peol (~andree@unaffiliated/peol)
- # [22:28] * Joins: echoSMIL1 (~smile@bl17-217-163.dsl.telepac.pt)
- # [22:30] * Joins: antonkovalyov (~antonkova@216.239.45.19)
- # [22:34] * Joins: franksalim__ (~frank@108-65-76-174.lightspeed.sntcca.sbcglobal.net)
- # [22:37] * Quits: franksalim_ (~frank@108-65-76-174.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 240 seconds)
- # [22:38] * franksalim__ is now known as franksalim
- # [22:40] * Quits: Ms2ger (~Ms2ger@91.181.227.85) (Quit: nn)
- # [22:44] * Quits: miketaylr (~miketaylr@206.217.92.186) (Quit: miketaylr)
- # [22:45] * Quits: antonkovalyov (~antonkova@216.239.45.19) (Ping timeout: 240 seconds)
- # [22:48] * Joins: antonkovalyov (~antonkova@216.239.45.19)
- # [22:49] * Joins: Wooboy (~simon@host-85-201-3-233.brutele.be)
- # [22:50] * Quits: cocoadaemon (~cocoadaem@2001:470:1f09:12:20d:93ff:fe3b:868c) (Quit: cocoadaemon)
- # [22:53] * Joins: Mouldy_Punk (~Mouldy_Pu@cpc1-pmth3-0-0-cust905.6-1.cable.virginmedia.com)
- # [22:55] * Joins: nimbupani (~Adium@c-24-22-131-46.hsd1.wa.comcast.net)
- # [22:59] <Mouldy_Punk> Hey guys. I've just started delving into HTML 5, but am unsure of when exactly to use the <article> and <section> tags. Consider a list of user messages, similar to Facebook's wall. Am I right in thinking that the wall as a whole would be an article, and each individual message would be a section?
- # [22:59] <nimbupani> its the other way around Mouldy_Punk
- # [22:59] <bot-t> (22 hours 30 mins ago) <coldhead> tell nimbupani http://www.abc.net.au/rn/futuretense/stories/2011/3092658.htm
- # [23:00] <Mouldy_Punk> nimbupani, Ah, right OK. That made more sense to me, but the stuff I found online seemed to suggest you have sections of articles rather than articles in sections - it was probably just the examples they were using. Thanks (:
- # [23:01] * Quits: HT (~ht@ip3e83ff64.speed.planet.nl) (Remote host closed the connection)
- # [23:02] * Quits: Pewpewarrows (~Pewpewarr@75-145-93-41-WashingtonDC.hfc.comcastbusiness.net) (Quit: Leaving)
- # [23:02] * Quits: Ramosa (Ramosa@unaffiliated/harald/x-000000001) (Ping timeout: 272 seconds)
- # [23:04] * ericduran is now known as ericduran|afk
- # [23:06] * Quits: vyvea (~vyvea@78.63.114.251) (Quit: Leaving)
- # [23:07] * Joins: romainhuet (~romainhue@pro75-6-88-185-123-205.fbx.proxad.net)
- # [23:07] * Joins: antonkovalyo (~antonkova@216.239.45.19)
- # [23:07] * Quits: Michael (~disney@unaffiliated/jabberwock) (Quit: Leaving)
- # [23:08] * Joins: Ramosa (Ramosa@port81.ds1-hr.adsl.cybercity.dk)
- # [23:08] * Quits: Ramosa (Ramosa@port81.ds1-hr.adsl.cybercity.dk) (Changing host)
- # [23:08] * Joins: Ramosa (Ramosa@unaffiliated/harald/x-000000001)
- # [23:08] * Joins: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk)
- # [23:08] <nimbupani> ?tell coldhead commented
- # [23:08] <bot-t> nimbupani, Okay.
- # [23:09] * antonkovalyo is now known as antonkovalyov_
- # [23:09] <mike5w3c> http://the-m-project.net/index.html
- # [23:10] <mike5w3c> https://github.com/mwaylabs/The-M-Project
- # [23:10] * Quits: antonkovalyov (~antonkova@216.239.45.19) (Ping timeout: 240 seconds)
- # [23:10] <mike5w3c> "a server-agnostic JavaScript framework for mobile web apps"
- # [23:14] * Quits: echoSMIL1 (~smile@bl17-217-163.dsl.telepac.pt) (Changing host)
- # [23:14] * Joins: echoSMIL1 (~smile@unaffiliated/echosmile)
- # [23:14] * echoSMIL1 is now known as echoSMILE
- # [23:15] * Joins: HAITI (~j@unaffiliated/haiti)
- # [23:17] <dgathright> wow, so the-m-project.com was already taken? yeesh...
- # [23:18] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [23:18] * Quits: LongBeach (~mike@AFontenayssB-152-1-51-92.w82-121.abo.wanadoo.fr)
- # [23:18] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [23:20] <dgathright> I imagine that Hell for domain squatters will be seeing that sex.com's registration expired and is available, only for them to get a "We're sorry, an error occurred, please try again." upon checkout. Which they experience for all eternity.
- # [23:21] * Quits: Titosemi1 (~titosemi@f053229218.adsl.alicedsl.de) (Quit: Leaving.)
- # [23:21] * Quits: Trisox (Trisox@g31044.upc-g.chello.nl) (Ping timeout: 272 seconds)
- # [23:23] * Quits: antonkovalyov_ (~antonkova@216.239.45.19) (Ping timeout: 276 seconds)
- # [23:26] * Joins: dcadenas_ (~dcadenas@r186-48-240-24.dialup.adsl.anteldata.net.uy)
- # [23:27] * Quits: Ramosa (Ramosa@unaffiliated/harald/x-000000001)
- # [23:27] * Quits: dcadenas (~dcadenas@r186-48-212-170.dialup.adsl.anteldata.net.uy) (Ping timeout: 250 seconds)
- # [23:28] * Quits: tw2113 (~tw2113asw@fedora/tw2113) (Quit: Leaving)
- # [23:28] * Quits: ben_c (~ben_c@cpc9-brig17-2-0-cust194.3-3.cable.virginmedia.com) (Quit: Leaving.)
- # [23:31] * ericduran|afk is now known as ericduran
- # [23:31] * Joins: Trisox (Trisox@g31044.upc-g.chello.nl)
- # [23:31] * Parts: zcorpan (~zcorpan@c-8d9ae355.410-6-64736c14.cust.bredbandsbolaget.se)
- # [23:32] <JonathanNeal> moooooon riiiiiiver
- # [23:33] <nimbupani> ?g moon river
- # [23:33] <bot-t> nimbupani, YouTube - moon river-breakfast at tiffany´s - http://www.youtube.com/watch?v=BOByH_iOn88
- # [23:33] <JonathanNeal> :)
- # [23:33] * Joins: Brodingo (~Brodingo@cpe-70-116-9-4.austin.res.rr.com)
- # [23:42] * Quits: kor (~kor@ip146-53-210-87.adsl2.static.versatel.nl) (Quit: kor)
- # [23:55] <JonathanNeal> music.thewikies.com/random/Henry_Mancini_&_Audrey_Hepburn_-_Moon_River.mp3
- # [23:56] <JonathanNeal> nimbupani: ^^
- # [23:56] <nimbupani> woooooot
- # [23:56] <nimbupani> thx JonathanNeal
- # [23:59] * Quits: cgcardona (~cgcardona@cpe-98-150-150-230.hawaii.res.rr.com) (Quit: zzzzz)
- # Session Close: Fri Jan 28 00:00:00 2011
The end :)