Options:
- # Session Start: Sun Mar 06 00:00:00 2011
- # Session Ident: #html5
- # [00:00] * Quits: techrush (~techrush@adsl-75-4-199-129.dsl.irvnca.sbcglobal.net) (Quit: Leaving)
- # [00:00] * Evet_ is now known as Evet
- # [00:01] * Quits: Evet (~Evet@78.191.38.139) (Changing host)
- # [00:01] * Joins: Evet (~Evet@pdpc/supporter/active/evet)
- # [00:03] * Quits: LynnWallenstein (~Lynn@pool-74-107-70-172.bltmmd.fios.verizon.net) (Ping timeout: 276 seconds)
- # [00:07] * Joins: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net)
- # [00:08] * Quits: wizL (~wizl@ahrinia.net) (Ping timeout: 252 seconds)
- # [00:12] * Quits: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net) (Client Quit)
- # [00:18] <uf0> paul_rish: well whenever you get back i'm wondering why in your template
- # [00:18] <uf0> for media queries you don't use the 'only' keyword
- # [00:18] <uf0> and is there a reason you left it out
- # [00:18] <paul_irish> well
- # [00:18] <uf0> you use @media screen and (foo)
- # [00:18] <obert-> bar
- # [00:18] <uf0> and i see a bunch of @media only screen and (foo)
- # [00:19] <uf0> on other mobile recommendations
- # [00:19] <paul_irish> so that means the MQ wouldnt match in other media types.. like print/projection/tv
- # [00:19] <paul_irish> this all gets a little fuzzy because most UAs kinda break spec in relation to their media type
- # [00:19] <paul_irish> google tv for example will match TV but also match Screen
- # [00:20] <paul_irish> so hypothetically.. if you.. were using a printer or something and the size of the viewport was small enough for that MQ to kick in
- # [00:20] <paul_irish> would you want those styles to apply in print view?
- # [00:20] <uf0> but i'm specifically talking about 'only' keyword
- # [00:20] <paul_irish> i know man
- # [00:21] <paul_irish> only means ONLY SCREEN
- # [00:21] <uf0> oh ok
- # [00:21] <uf0> ahh alright
- # [00:21] <paul_irish> i can't think of a realistic application where `only` matters
- # [00:21] <paul_irish> tbh
- # [00:21] <paul_irish> i think its fine both ways
- # [00:21] <uf0> gotcha
- # [00:21] <paul_irish> ?g media queries spec
- # [00:21] <bot-t> paul_irish, Media Queries - http://www.w3.org/TR/css3-mediaqueries/
- # [00:22] <paul_irish> "User agents must process media queries starting with ‘only’ as if the ‘only’ keyword was not present."
- # [00:22] <paul_irish> heh
- # [00:22] <uf0> yea I read that but was confused
- # [00:22] <uf0> lol
- # [00:22] <paul_irish> ah i got it.
- # [00:22] <paul_irish> it matters when you're in a link tag
- # [00:22] <uf0> usually specs just confuse me more than just your basical explanation
- # [00:22] <uf0> which i get now
- # [00:23] <paul_irish> because old UAs will be like <link rel=stylesheet media="screen and ( ....
- # [00:23] <paul_irish> but only see media="screen" ..
- # [00:23] <paul_irish> and just apply it without evaluating the MQ
- # [00:23] <paul_irish> the 'only' throws them a curve ball
- # [00:24] <paul_irish> so they dont download that stylesheet
- # [00:24] <uf0> ummm.. so I imagine it's safer bet to use then to leave out, no?
- # [00:24] <paul_irish> it makes sense to use it in the link tag
- # [00:24] <paul_irish> but if its an inlined MQ in an existing stylesheet.. it doesnt matter.
- # [00:24] * Quits: gasbakid (~gasbakid@41.96.99.182) (Remote host closed the connection)
- # [00:24] <uf0> :) makes complete sense now
- # [00:24] <uf0> thanks
- # [00:25] <paul_irish> no prob. thanks for asking
- # [00:25] <paul_irish> hey wanna do me a favor
- # [00:25] <uf0> sure
- # [00:25] <paul_irish> uf0: edit this page https://github.com/paulirish/html5-boilerplate/wiki/The-style and summarize that ^ so other people learn why :)
- # [00:26] <uf0> ok will do... I got one more for you
- # [00:26] <paul_irish> k
- # [00:27] <uf0> in your template you also use <header> <footer>
- # [00:27] <paul_irish> why not article?
- # [00:27] <uf0> but for the main content you use a <div id="main">
- # [00:27] <uf0> why not <section> ?
- # [00:27] <uf0> not article
- # [00:28] <paul_irish> can you make a compelling case that section is a more semantically appropriate element for all the uses that people will have from the h5bp?
- # [00:28] <paul_irish> i couldn't.
- # [00:28] <uf0> I have no idea
- # [00:28] * Quits: Thasmo (~thasmo@d86-32-70-59.cust.tele2.at)
- # [00:29] <uf0> I was just wondering why not if anything
- # [00:29] <uf0> i'm cool with div
- # [00:29] <paul_irish> me too.
- # [00:29] <paul_irish> i also try to avoid semantic debates
- # [00:29] <paul_irish> which this would cause :)
- # [00:30] <uf0> I'm confident in using header,footer,hgroup,article today
- # [00:31] <uf0> but all the other new ones I still scratch my head
- # [00:31] <uf0> like <section> <aside> <figcaption> etc..
- # [00:31] <uf0> but anyway that's all question i got for now
- # [00:33] <obert-> section is interesting perhaps
- # [00:36] <obert-> The section element represents a generic section of a document or application. A section, in this context, is a thematic grouping of content, -> if i got it,for example, i would to do something like <section><label></label><input></section>
- # [00:37] <uf0> i see
- # [00:37] <paul_irish> figure and figcaption are really nice
- # [00:37] <paul_irish> i use em for pictures with captions a lot
- # [00:37] <paul_irish> s'about it, really
- # [00:38] <obert-> mine is just a thought i would to know opinions,indeed
- # [00:38] <uf0> so instead of em you would use figcaption I assume
- # [00:43] * Quits: bartek (~bartek@69-196-155-220.dsl.teksavvy.com) (Quit: Computer has gone to sleep)
- # [00:43] <obert-> no opinions?:P
- # [00:43] <tbranyen> uhhhh so html5 video doesn't have udp streaming capabilities... :(
- # [00:43] <paul_irish> :(
- # [00:49] * Quits: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com) (Quit: dgathright)
- # [00:56] * Quits: dpy (~Marcel@d66172.upc-d.chello.nl) (Ping timeout: 255 seconds)
- # [00:59] * Joins: Evet_ (~Evet@95.13.33.199)
- # [01:00] * Quits: Evet (~Evet@pdpc/supporter/active/evet) (Ping timeout: 240 seconds)
- # [01:05] * Joins: jochen___ (~jochen@nat/google/x-nwcietdtgqdhaxag)
- # [01:06] * Quits: benschwarz (~benschwar@59.167.185.148) (Quit: Linkinus - http://linkinus.com)
- # [01:09] * Quits: jochen__ (~jochen@nat/google/x-kzssvzvnrooxnejh) (Ping timeout: 255 seconds)
- # [01:10] * Joins: jochen__ (~jochen@nat/google/x-rrxpqxapxxetgfdm)
- # [01:11] * Quits: jochen___ (~jochen@nat/google/x-nwcietdtgqdhaxag) (Ping timeout: 240 seconds)
- # [01:19] <uf0> paul_irish: Done. https://github.com/paulirish/html5-boilerplate/wiki/The-style
- # [01:19] <uf0> feel free to change anything I missed
- # [01:20] <paul_irish> thanks!
- # [01:20] <paul_irish> lookin charp
- # [01:21] <uf0> np
- # [01:23] * Quits: Quilck (~Quilck@90.183.82.215) (Ping timeout: 255 seconds)
- # [01:24] * Quits: Ramosa (Ramosa@unaffiliated/harald/x-000000001)
- # [01:26] * Joins: hij1nx (~hij1nx@cpe-66-65-124-111.nyc.res.rr.com)
- # [01:27] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [01:28] * Joins: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com)
- # [01:30] * Quits: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com) (Read error: Connection reset by peer)
- # [01:31] * Joins: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com)
- # [01:32] * Quits: KDN (~KDN@202.171.164.210) (Quit: KDN)
- # [01:35] * Quits: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com) (Read error: No route to host)
- # [01:35] * Joins: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com)
- # [01:36] * Joins: wizL (~wizl@ahrinia.net)
- # [01:36] * Joins: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net)
- # [01:36] * Quits: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com) (Read error: No route to host)
- # [01:37] * Quits: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net) (Client Quit)
- # [01:38] * Joins: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net)
- # [01:40] * Joins: daveluke (~davidluke@cpe-72-225-200-96.nyc.res.rr.com)
- # [01:43] * Joins: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com)
- # [01:47] * Quits: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com) (Client Quit)
- # [01:52] * Joins: ben_h (~ben@CPE-58-161-40-52.czqd1.win.bigpond.net.au)
- # [01:53] * Joins: davatron5000 (~davatron5@cpe-66-25-167-215.austin.res.rr.com)
- # [02:12] * Quits: Greko (~Greko@85.26.155.51) (Ping timeout: 250 seconds)
- # [02:13] * Joins: bartek (~bartek@69-196-155-220.dsl.teksavvy.com)
- # [02:14] <daleharvey> so anyone that does sammy type stuff, what would you think about something like http://pastebin.me/d66a6d92426552f737a8d2d2b40f78a3
- # [02:14] * Quits: bartek (~bartek@69-196-155-220.dsl.teksavvy.com) (Client Quit)
- # [02:18] * Joins: bartek (~bartek@69-196-155-220.dsl.teksavvy.com)
- # [02:18] * Quits: bartek (~bartek@69-196-155-220.dsl.teksavvy.com) (Client Quit)
- # [02:20] * Quits: antonkovalyov (~antonkova@adsl-75-18-218-201.dsl.pltn13.sbcglobal.net) (Quit: Leaving...)
- # [02:23] * Quits: toinso (~toinso@unaffiliated/toinso) (Quit: Leaving)
- # [02:31] * Joins: Quilck (~Quilck@90.183.82.215)
- # [02:36] <niftylettuce> paul_irish: i got the team assembled, woot
- # [02:36] * Quits: FireFly (~firefly@unaffiliated/firefly) (Quit: swatted to death)
- # [02:37] * Quits: Quilck (~Quilck@90.183.82.215)
- # [02:43] * Quits: Guest95104 (tristan@eliteof.lastlegend.org) (Remote host closed the connection)
- # [02:46] * Quits: wizL (~wizl@ahrinia.net) (Read error: Connection reset by peer)
- # [02:49] * Quits: boaz (~boaz@75-150-66-254-NewEngland.hfc.comcastbusiness.net) (Quit: boaz)
- # [02:50] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
- # [02:50] * Quits: _Tristan_ (tristan@eliteof.lastlegend.org) (Excess Flood)
- # [02:51] * Quits: obert- (~obert@host13-43-dynamic.60-82-r.retail.telecomitalia.it)
- # [02:53] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
- # [02:53] * Quits: _Tristan_ (tristan@eliteof.lastlegend.org) (Excess Flood)
- # [02:55] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
- # [02:55] * Quits: _Tristan_ (tristan@eliteof.lastlegend.org) (Excess Flood)
- # [02:55] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
- # [02:55] * Quits: _Tristan_ (tristan@eliteof.lastlegend.org) (Excess Flood)
- # [02:57] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
- # [02:57] * Quits: _Tristan_ (tristan@eliteof.lastlegend.org) (Excess Flood)
- # [02:58] * Joins: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com)
- # [03:01] * Joins: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net)
- # [03:01] * Joins: dgathright_ (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com)
- # [03:02] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
- # [03:02] * Quits: _Tristan_ (tristan@eliteof.lastlegend.org) (Excess Flood)
- # [03:02] * Quits: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com) (Read error: No route to host)
- # [03:02] * dgathright_ is now known as dgathright
- # [03:02] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
- # [03:02] * Quits: _Tristan_ (tristan@eliteof.lastlegend.org) (Excess Flood)
- # [03:07] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
- # [03:07] * Quits: _Tristan_ (tristan@eliteof.lastlegend.org) (Excess Flood)
- # [03:12] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
- # [03:12] * Quits: _Tristan_ (tristan@eliteof.lastlegend.org) (Excess Flood)
- # [03:19] * Joins: Tristan (tristan@eliteof.lastlegend.org)
- # [03:19] * Quits: Tristan (tristan@eliteof.lastlegend.org) (Excess Flood)
- # [03:21] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
- # [03:21] * Quits: _Tristan_ (tristan@eliteof.lastlegend.org) (Excess Flood)
- # [03:25] * Joins: _Tristan_ (tristan@eliteof.lastlegend.org)
- # [03:31] * Quits: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net) (Ping timeout: 250 seconds)
- # [03:34] * Quits: davatron5000 (~davatron5@cpe-66-25-167-215.austin.res.rr.com) (Quit: davatron5000)
- # [03:38] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: Ex-Chat)
- # [03:38] * Quits: Erkan (thend@78.167.135.107) (Ping timeout: 248 seconds)
- # [03:57] * Quits: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com) (Ping timeout: 276 seconds)
- # [03:58] * Joins: dgathright (~dgathrigh@173.152.222.175)
- # [04:00] * Joins: dgathright_ (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com)
- # [04:02] * Joins: dgathright__ (~dgathrigh@173.152.222.175)
- # [04:02] * Quits: dgathright (~dgathrigh@173.152.222.175) (Read error: No route to host)
- # [04:02] * dgathright__ is now known as dgathright
- # [04:05] * Quits: dgathright_ (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com) (Ping timeout: 276 seconds)
- # [04:08] * Joins: dgathright_ (~dgathrigh@173.152.222.175)
- # [04:09] * Quits: dgathright_ (~dgathrigh@173.152.222.175) (Remote host closed the connection)
- # [04:09] * Quits: ben_h (~ben@CPE-58-161-40-52.czqd1.win.bigpond.net.au) (Quit: ben_h)
- # [04:10] * Quits: dgathright (~dgathrigh@173.152.222.175) (Ping timeout: 252 seconds)
- # [04:11] * Joins: dgathright (~dgathrigh@173.152.222.175)
- # [04:14] * Joins: pcwick (~pcwick@173-19-131-253.client.mchsi.com)
- # [04:14] * Joins: dgathright_ (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com)
- # [04:17] * Quits: yarwin (~yarwin@p5B2BD667.dip.t-dialin.net) (Quit: Leaving)
- # [04:18] * Quits: dgathright (~dgathrigh@173.152.222.175) (Ping timeout: 276 seconds)
- # [04:18] * dgathright_ is now known as dgathright
- # [04:20] * Joins: dguttman (~dguttman@cpe-98-149-45-68.socal.res.rr.com)
- # [04:41] * Quits: dguttman (~dguttman@cpe-98-149-45-68.socal.res.rr.com) (Quit: dguttman)
- # [04:53] <niftylettuce> paul_irish: can you do me a favor?
- # [05:02] * Joins: Unrelandom (~look@71-35-201-30.slkc.qwest.net)
- # [05:03] * Unrelandom is now known as Senix
- # [05:03] * Quits: Senix (~look@71-35-201-30.slkc.qwest.net) (Changing host)
- # [05:03] * Joins: Senix (~look@unaffiliated/look)
- # [05:03] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [05:08] * Parts: hij1nx (~hij1nx@cpe-66-65-124-111.nyc.res.rr.com)
- # [05:13] * Joins: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net)
- # [05:15] * Quits: kataire (~kataire@cable-78-35-115-245.netcologne.de) (Ping timeout: 276 seconds)
- # [05:17] * Quits: Senix (~look@unaffiliated/look) (Read error: Operation timed out)
- # [05:21] * Joins: skqr (~skqr@200.81.182.71)
- # [05:28] * Joins: Evanescence (~Evanescen@60.183.246.80)
- # [05:38] * Quits: skqr (~skqr@200.81.182.71) (Quit: Saionara, techies.)
- # [05:42] * Quits: cgcardona (~cgcardona@c-24-5-146-71.hsd1.ca.comcast.net) (Quit: zzzzz)
- # [05:46] * Quits: addyosmani (~apple@host86-147-69-154.range86-147.btcentralplus.com) (Ping timeout: 255 seconds)
- # [05:53] * Quits: tbranyen (~dick@aboutnerd.com) (Read error: Connection reset by peer)
- # [05:59] * Joins: nonge_ (~nonge@p5082A3F2.dip.t-dialin.net)
- # [06:03] * Quits: nonge (~nonge@p50829EAE.dip.t-dialin.net) (Ping timeout: 246 seconds)
- # [06:07] * Quits: Evanescence (~Evanescen@60.183.246.80) (Quit: I need to code or sleep now .)
- # [06:15] <tw2113> lols http://webjam.lowfi.es/disappointment/
- # [06:23] * Quits: Herrman (wolter@p50915761.dip.t-dialin.net) (Quit: Mir geht dieses scheinheilige, Nächstenhiebe austeilendes Bodenpersonal Gottes auf die Nerven. [Julia Krüger, Leserbrief an den SPIEGEL 35/95])
- # [06:25] * Joins: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net)
- # [06:33] * Quits: dgathright (~dgathrigh@cpe-76-90-139-148.socal.res.rr.com) (Quit: dgathright)
- # [06:37] * Joins: hij1nx (~hij1nx@cpe-66-65-124-111.nyc.res.rr.com)
- # [06:45] <niftylettuce> tw2113: haha
- # [06:47] <tw2113> you can thank HN for that one
- # [06:51] * Quits: Evet_ (~Evet@95.13.33.199) (Quit: Evet_)
- # [06:56] * Quits: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net) (Ping timeout: 260 seconds)
- # [07:11] * Quits: pcwick (~pcwick@173-19-131-253.client.mchsi.com) (Remote host closed the connection)
- # [07:13] * Quits: Killman (~killman@unaffiliated/killman) (Quit: bbl Zzzzz)
- # [07:13] <samot__> lol
- # [07:14] <samot__> im confused
- # [07:15] <tw2113> how so
- # [07:17] <tw2113> not sure the humor for that site i linked, samot__ ?
- # [07:18] <samot__> yeah
- # [07:18] <samot__> is it mocking all the new libraries that people are releasing
- # [07:18] <tw2113> well, aren't you disappointed that neither button does anything?
- # [07:19] <tw2113> check the source too
- # [07:19] * Joins: gasbakid (~gasbakid@41.96.99.182)
- # [07:40] * Quits: zill (43b76d5c@gateway/web/freenode/ip.67.183.109.92) (Quit: Page closed)
- # [08:01] * Joins: Bruce_Wayne (~rushyang@117.198.200.132)
- # [08:02] * Joins: Erkan (thend@78.167.19.47)
- # [08:08] * Joins: BigKing (~BigKing@p5DCE900A.dip0.t-ipconnect.de)
- # [08:37] * Quits: hij1nx (~hij1nx@cpe-66-65-124-111.nyc.res.rr.com) (Quit: hij1nx)
- # [08:37] * Quits: daveluke (~davidluke@cpe-72-225-200-96.nyc.res.rr.com) (Quit: daveluke)
- # [08:48] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: Going!)
- # [08:50] * Quits: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net) (Read error: Connection reset by peer)
- # [08:50] * Quits: vladikoff (~vladikoff@bas1-woodbridge48-2925111342.dsl.bell.ca)
- # [08:51] * Joins: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net)
- # [09:00] * Quits: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net) (Quit: Leaving.)
- # [09:00] * Quits: Erkan (thend@78.167.19.47) (Read error: Connection reset by peer)
- # [09:19] * Joins: Erkan (thend@78.167.19.47)
- # [09:20] * Joins: dmachi1 (~dmachi@pool-72-66-199-75.ronkva.east.verizon.net)
- # [09:20] * Quits: dmachi (~dmachi@pool-72-66-199-75.ronkva.east.verizon.net) (Read error: Connection reset by peer)
- # [09:25] * Joins: kataire (~kataire@cable-78-35-115-245.netcologne.de)
- # [09:26] * Quits: Ankheg (~Ankheg@94.158.194.27) (Quit: Leaving.)
- # [09:33] * Joins: mike5w3c (~MikeSmith@58x157x21x205.ap58.ftth.ucom.ne.jp)
- # [09:34] * Joins: jochen___ (~jochen@nat/google/x-cxlbzqcqpqucbghz)
- # [09:34] * Quits: Bruce_Wayne (~rushyang@117.198.200.132) (Quit: Ex-Chat)
- # [09:36] * Joins: midkniht (~midkniht@h177.144.255.206.cable.pnbl.cablelynx.com)
- # [09:38] * Quits: jochen__ (~jochen@nat/google/x-rrxpqxapxxetgfdm) (Ping timeout: 260 seconds)
- # [09:38] * jochen___ is now known as jochen__
- # [09:40] * midkniht is now known as bman
- # [09:42] * Quits: jacine (~jacine@drupal.org/user/88931/view) (Quit: buh bye :))
- # [09:44] * Quits: BigKing (~BigKing@p5DCE900A.dip0.t-ipconnect.de) (Remote host closed the connection)
- # [09:46] * Joins: antonkovalyov (~antonkova@adsl-75-18-218-201.dsl.pltn13.sbcglobal.net)
- # [10:03] <niftylettuce> nn
- # [10:03] <niftylettuce> \o/
- # [10:03] <bman> night
- # [10:06] * Quits: niftylettuce (~niftylett@c-76-125-157-178.hsd1.pa.comcast.net) (Quit: Leaving)
- # [10:13] * Quits: patcito (~123@190.42.89.63) (Remote host closed the connection)
- # [10:13] * Joins: jetienne_ (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [10:16] * Joins: Howell` (~Howell`@58.34.74.161)
- # [10:21] * Quits: Howell` (~Howell`@58.34.74.161) (Quit: Howell`)
- # [10:30] * Quits: thatryan (~thatryan@c-71-202-1-91.hsd1.ca.comcast.net) (Quit: Leaving...)
- # [10:44] * Quits: jetienne_ (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Remote host closed the connection)
- # [10:48] * Joins: jus101 (~chatzilla@2.135.99.203.dynamic.amuri.net)
- # [10:50] * Joins: prudnikov (~prudnikov@nat-3.starnet.cz)
- # [10:50] <jus101> does navigator.geolocation.getCurrentPosition in Safari 5 ever return a position on a desktop mac? I see that chrome does, but nothing from Safari.
- # [11:09] * Joins: sam0t (~samot@14-202-130-124.static.tpgi.com.au)
- # [11:10] * Quits: samot__ (~samot@14-202-130-124.static.tpgi.com.au) (Ping timeout: 240 seconds)
- # [11:21] * Quits: jus101 (~chatzilla@2.135.99.203.dynamic.amuri.net) (Ping timeout: 252 seconds)
- # [11:28] * Quits: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net) (Quit: chriseppstein)
- # [11:44] * Joins: theasta (~theasta@pha75-16-88-171-131-100.fbx.proxad.net)
- # [11:45] * Parts: theasta (~theasta@pha75-16-88-171-131-100.fbx.proxad.net)
- # [11:50] * Joins: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk)
- # [11:54] * Quits: antonkovalyov (~antonkova@adsl-75-18-218-201.dsl.pltn13.sbcglobal.net) (Quit: Leaving...)
- # [12:16] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [12:16] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [12:27] * Joins: dpy (~Marcel@d66172.upc-d.chello.nl)
- # [12:51] * Joins: Quilck (~Quilck@90.183.82.215)
- # [12:54] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Remote host closed the connection)
- # [12:54] * Joins: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net)
- # [12:55] * Quits: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk) (Quit: Leaving.)
- # [12:56] * Joins: gliese581 (~ManOnTheM@81.202.113.56.dyn.user.ono.com)
- # [12:59] * Quits: mr_daniel (~irssi@g224046056.adsl.alicedsl.de) (Ping timeout: 250 seconds)
- # [12:59] * Quits: gasbakid (~gasbakid@41.96.99.182) (Remote host closed the connection)
- # [13:01] * Joins: mr_daniel (~irssi@d223249.adsl.hansenet.de)
- # [13:04] * Joins: FireFly (~firefly@unaffiliated/firefly)
- # [13:08] * Joins: dguttman (~dguttman@cpe-75-85-11-227.socal.res.rr.com)
- # [13:17] * Quits: Sosby (~fsosby@s2.rdlbnc.com) (Ping timeout: 246 seconds)
- # [13:29] * Joins: Sosby (~fsosby@s2.rdlbnc.com)
- # [13:51] * Quits: Quilck (~Quilck@90.183.82.215) (Ping timeout: 276 seconds)
- # [13:52] * Joins: Quilck (~Quilck@90.183.82.215)
- # [13:52] * Joins: theasta (~theasta@pha75-16-88-171-131-100.fbx.proxad.net)
- # [13:52] * Quits: theasta (~theasta@pha75-16-88-171-131-100.fbx.proxad.net) (Client Quit)
- # [13:55] * Quits: dguttman (~dguttman@cpe-75-85-11-227.socal.res.rr.com) (Read error: Connection reset by peer)
- # [14:32] * Joins: dguttman (~dguttman@cpe-75-85-11-227.socal.res.rr.com)
- # [14:36] * Joins: daveluke (~davidluke@nmd.sbx07217.foresny.wayport.net)
- # [14:42] * Joins: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk)
- # [14:45] * Quits: daveluke (~davidluke@nmd.sbx07217.foresny.wayport.net) (Ping timeout: 252 seconds)
- # [14:48] * Joins: daveluke (~davidluke@64.134.65.150)
- # [14:50] * Quits: dguttman (~dguttman@cpe-75-85-11-227.socal.res.rr.com) (Read error: Connection reset by peer)
- # [14:52] * Joins: Evanescence (~Evanescen@122.236.249.223)
- # [15:00] * Quits: daveluke (~davidluke@64.134.65.150) (Quit: daveluke)
- # [15:04] * Quits: sam0t (~samot@14-202-130-124.static.tpgi.com.au) (Ping timeout: 252 seconds)
- # [15:04] * Joins: Ramosa (Ramosa@unaffiliated/harald/x-000000001)
- # [15:06] * Joins: sam0t (~samot@14-202-130-124.static.tpgi.com.au)
- # [15:14] * Quits: Evanescence (~Evanescen@122.236.249.223) (Quit: I need to code or sleep now .)
- # [15:20] * Joins: Howell` (~Howell`@124.78.4.215)
- # [15:39] * Joins: cgcardona (~cgcardona@c-24-5-146-71.hsd1.ca.comcast.net)
- # [15:49] * Joins: dguttman (~dguttman@cpe-75-85-11-227.socal.res.rr.com)
- # [15:50] * Joins: bartek (~bartek@69.196.130.113)
- # [15:55] * Quits: dguttman (~dguttman@cpe-75-85-11-227.socal.res.rr.com) (Read error: Operation timed out)
- # [15:57] * Joins: obert- (~obert@host165-194-dynamic.55-82-r.retail.telecomitalia.it)
- # [15:59] * Joins: tktiddle (~tim@cpc1-hari12-2-0-cust76.hari.cable.virginmedia.com)
- # [16:01] * Joins: dguttman (~dguttman@cpe-75-85-11-227.socal.res.rr.com)
- # [16:03] * Quits: dguttman (~dguttman@cpe-75-85-11-227.socal.res.rr.com) (Read error: Connection reset by peer)
- # [16:03] * Joins: dguttman (~dguttman@cpe-75-85-11-227.socal.res.rr.com)
- # [16:14] * Quits: dguttman (~dguttman@cpe-75-85-11-227.socal.res.rr.com) (Ping timeout: 246 seconds)
- # [16:15] * Quits: Quilck (~Quilck@90.183.82.215) (Ping timeout: 246 seconds)
- # [16:21] * Joins: BigKing (~BigKing@p5DCE82F3.dip0.t-ipconnect.de)
- # [16:32] * Joins: Killman (~killman@unaffiliated/killman)
- # [16:34] * Joins: Quilck (~Quilck@90.183.82.215)
- # [16:35] * Joins: boaz (~boaz@c-24-128-79-120.hsd1.ma.comcast.net)
- # [16:39] * Joins: Evanescence (~Evanescen@122.236.249.223)
- # [16:42] * Joins: snover (~Adium@unaffiliated/snover)
- # [16:43] * Quits: dpy (~Marcel@d66172.upc-d.chello.nl) (Quit: Leaving)
- # [16:48] * Parts: snover (~Adium@unaffiliated/snover)
- # [16:48] * Joins: hij1nx (~hij1nx@cpe-66-65-124-111.nyc.res.rr.com)
- # [16:50] * Parts: hij1nx (~hij1nx@cpe-66-65-124-111.nyc.res.rr.com)
- # [16:51] * Quits: tktiddle (~tim@cpc1-hari12-2-0-cust76.hari.cable.virginmedia.com) (Remote host closed the connection)
- # [16:57] * Quits: boaz (~boaz@c-24-128-79-120.hsd1.ma.comcast.net) (Quit: boaz)
- # [17:09] * Quits: Quilck (~Quilck@90.183.82.215) (Ping timeout: 260 seconds)
- # [17:10] * Joins: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net)
- # [17:12] * Joins: kennyluck (~kennyluck@114-25-213-250.dynamic.hinet.net)
- # [17:12] * Quits: Evanescence (~Evanescen@122.236.249.223) (Quit: I need to code or sleep now .)
- # [17:13] * Joins: Evanescence (~Evanescen@122.236.249.223)
- # [17:18] * Joins: vladikoff (~vladikoff@bas1-woodbridge48-2925111342.dsl.bell.ca)
- # [17:21] * Joins: tktiddle (~tim@cpc1-hari12-2-0-cust76.hari.cable.virginmedia.com)
- # [17:24] * Quits: Howell` (~Howell`@124.78.4.215) (Remote host closed the connection)
- # [17:27] * Quits: obert- (~obert@host165-194-dynamic.55-82-r.retail.telecomitalia.it)
- # [17:41] * Quits: bartek (~bartek@69.196.130.113) (Quit: Computer has gone to sleep)
- # [17:44] * Quits: Evanescence (~Evanescen@122.236.249.223) (Quit: I need to code or sleep now .)
- # [18:04] * Joins: Quilck (~Quilck@90.183.82.215)
- # [18:15] * Joins: Thasmo (~thasmo@d86-32-70-59.cust.tele2.at)
- # [18:32] * Joins: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net)
- # [18:38] * Joins: svenlito (~svnlto@78-86-0-182.zone2.bethere.co.uk)
- # [18:38] * Quits: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net) (Quit: Leaving.)
- # [18:41] * Quits: bman (~midkniht@h177.144.255.206.cable.pnbl.cablelynx.com) (Ping timeout: 276 seconds)
- # [18:51] * Joins: huskyr (~huskyr@535506A5.cm-6-6a.dynamic.ziggo.nl)
- # [18:56] * Quits: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net) (Ping timeout: 255 seconds)
- # [18:57] * Quits: BigKing (~BigKing@p5DCE82F3.dip0.t-ipconnect.de) (Remote host closed the connection)
- # [19:04] * Quits: huskyr (~huskyr@535506A5.cm-6-6a.dynamic.ziggo.nl) (Quit: huskyr)
- # [19:06] * Joins: Brodingo (~Brodingo@cpe-70-116-9-4.austin.res.rr.com)
- # [19:09] * Quits: tktiddle (~tim@cpc1-hari12-2-0-cust76.hari.cable.virginmedia.com) (Remote host closed the connection)
- # [19:12] * Joins: tktiddle (~tim@cpc1-hari12-2-0-cust76.hari.cable.virginmedia.com)
- # [19:16] * Joins: bman (~midkniht@h177.144.255.206.cable.pnbl.cablelynx.com)
- # [19:18] * Joins: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net)
- # [19:22] * Joins: patcito (~123@190.42.87.243)
- # [19:26] * Quits: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net) (Read error: Operation timed out)
- # [19:28] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [19:43] * Joins: dguttman (~dguttman@64.134.19.31)
- # [19:48] * Quits: bman (~midkniht@h177.144.255.206.cable.pnbl.cablelynx.com) (Ping timeout: 276 seconds)
- # [19:51] * Quits: socialhapy (~socialhap@h55eb1e56.selukra.dyn.perspektivbredband.net) (Ping timeout: 240 seconds)
- # [19:53] * Quits: peol (~andree@unaffiliated/peol) (Ping timeout: 260 seconds)
- # [19:56] * Joins: thatryan (~thatryan@c-71-202-1-91.hsd1.ca.comcast.net)
- # [20:05] * Joins: boaz (~boaz@75-150-66-254-NewEngland.hfc.comcastbusiness.net)
- # [20:09] * Joins: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net)
- # [20:13] * Quits: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net) (Remote host closed the connection)
- # [20:13] * Joins: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net)
- # [20:17] * tty234_ is now known as tty234
- # [20:20] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: I was raided by the FBI and all I got to keep was this lousy quit message!)
- # [20:22] * Joins: antonkovalyov (~antonkova@adsl-75-18-218-201.dsl.pltn13.sbcglobal.net)
- # [20:27] * Joins: cocoadaemon (~cocoadaem@2a01:e35:8a99:e90:20d:93ff:fe3b:868c)
- # [20:28] * Quits: gliese581 (~ManOnTheM@81.202.113.56.dyn.user.ono.com) (Quit: Lost terminal)
- # [20:31] * Quits: tktiddle (~tim@cpc1-hari12-2-0-cust76.hari.cable.virginmedia.com) (Remote host closed the connection)
- # [20:32] * Quits: dguttman (~dguttman@64.134.19.31) (Quit: dguttman)
- # [20:34] * Quits: Thasmo (~thasmo@d86-32-70-59.cust.tele2.at)
- # [20:46] * Joins: obert- (~obert@host165-194-dynamic.55-82-r.retail.telecomitalia.it)
- # [20:46] * Quits: prudnikov (~prudnikov@nat-3.starnet.cz) (Read error: Operation timed out)
- # [20:48] * obert- you all suck
- # [20:53] * Joins: daveluke (~davidluke@cpe-72-225-200-96.nyc.res.rr.com)
- # [20:56] * Parts: IanWizard (~IanWizard@c-98-237-207-104.hsd1.wa.comcast.net) ("Leaving")
- # [21:00] * Joins: Senix (~look@unaffiliated/look)
- # [21:20] * Joins: dmachi (~dmachi@pool-72-66-199-75.ronkva.east.verizon.net)
- # [21:20] * Quits: dmachi1 (~dmachi@pool-72-66-199-75.ronkva.east.verizon.net) (Read error: Connection reset by peer)
- # [21:23] <thatryan> :(
- # [21:24] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [21:25] <obert-> :D
- # [21:26] <obert-> thatryan what's happen
- # [21:26] <thatryan> doing stuff and stuff
- # [21:26] <thatryan> hecka exciting!
- # [21:27] <obert-> not to be sad then
- # [21:27] <thatryan> lol you said we suck
- # [21:27] <obert-> ah
- # [21:27] <obert-> me??
- # [21:27] <obert-> must be my cat
- # [21:27] <thatryan> lol
- # [21:28] <paul_irish> tell your cat to Be Nice!
- # [21:28] <thatryan> yeah, thats just a mean kitty
- # [21:28] * Quits: Brodingo (~Brodingo@cpe-70-116-9-4.austin.res.rr.com) (Remote host closed the connection)
- # [21:28] <obert-> usually he just jumps over the keyb and left a 'meow'
- # [21:28] <thatryan> albeit, a smart kitty ;)
- # [21:29] <tw2113> this is why cats shouldn't be online
- # [21:29] <tw2113> they take over
- # [21:29] <obert-> purr
- # [21:31] <tw2113> interesting question...how much of the internet would go missing if we removed every reference to cats
- # [21:31] <thatryan> enough :)
- # [21:31] <obert-> http://eeeeek.org
- # [21:31] <tw2113> it'd be a catpocolypse
- # [21:32] <obert-> ecco.
- # [21:32] <thatryan> lol nice
- # [21:33] <thatryan> no more puns for you
- # [21:34] <obert-> comic sans enters ina bar and orders a drink, the barman flatly refuses to serve him. 'why?' enquires the font. 'we dont want your type in 'ere'
- # [21:34] * Joins: jacine (~jacine@drupal.org/user/88931/view)
- # [21:34] <tw2113> 3 men walk into a bar, the 4th one ducks
- # [21:35] <thatryan> nooo
- # [21:35] <obert-> ????
- # [21:35] <obert-> ducks?
- # [21:35] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Remote host closed the connection)
- # [21:35] <tw2113> evades
- # [21:36] * Joins: KemKemKem (~KemKemKEm@79-74-239-229.dynamic.dsl.as9105.com)
- # [21:36] <KemKemKem> hi
- # [21:36] * Quits: Quilck (~Quilck@90.183.82.215)
- # [21:36] <tw2113> yo
- # [21:36] <obert-> evades??
- # [21:37] <KemKemKem> do you think html5 and java will enable instant chat rooms on more websites?
- # [21:37] <KemKemKem> I'd quite like to use it on a social network site and wondered if it was ready for mass adoption yet.. what are your views?
- # [21:38] <tw2113> no idea personally
- # [21:38] <obert-> 2 men walk into a bar, middle one has a hat
- # [21:38] <obert-> wtf??
- # [21:38] <KemKemKem> http://rumpetroll.com/ <-- good example of html5 in action
- # [21:39] <KemKemKem> i think it uses websockets but i love the fact you can just start chatting with no slow java client
- # [21:39] <thatryan> lol obert-
- # [21:39] <KemKemKem> are you gonna finish the joke albert?
- # [21:39] <obert-> i dont get this kind of humor though
- # [21:40] <tw2113> 3 men walk into it, because they don't see it or something, the 4th one does, and moves out of the way before hit
- # [21:40] <tw2113> it's very stupid humor but it amuses me a bit :D
- # [21:40] <obert-> ...
- # [21:40] <obert-> and then sex will exists
- # [21:40] <KemKemKem> i always liked... a horse walks into a bar... the barman says "why the long face?"
- # [21:40] <KemKemKem> simple but brilliant
- # [21:41] <tw2113> regarding the chat room stuff, you'd have to gauge your websockets support and how many browsers/versions you want to be able to access it
- # [21:42] <obert-> mah :)
- # [21:43] <KemKemKem> well i'm planning a new site so i have zero users to worry about.. I'm just trying to work out if i should discriminate against older browsers and go with the cutting edge stuff. Most of my users will be 20-30 anyway so i'd imagine they'd have fairly modern browsers or be willing to upgrade
- # [21:44] * Joins: skqr (~skqr@200.81.182.224)
- # [21:44] <KemKemKem> i haven't really noticed much html5 / websockets apps around.. but sites which do have them and the demos look great
- # [21:44] <tw2113> i have a site still in the works that is targeted at twitter users, so likely very few IE users
- # [21:45] <obert-> a neutron walks into a bar, the barman asks "What can I get for you?" Neutron answers "Just passing through"
- # [21:45] <KemKemKem> I'm currently trying to build a social network site that makes your social life public
- # [21:46] <KemKemKem> *groan
- # [21:46] <tw2113> isn't that all of them?
- # [21:46] <KemKemKem> nah, social media is suprisingly not very social
- # [21:46] <KemKemKem> i want to build a site where your social life is very public, every event you go to is shared with everyone
- # [21:47] <tw2113> i imagine that's on purpose to prevent outcries and mass exodus
- # [21:47] <obert-> why the fuck are you following me on facebook??
- # [21:47] <tw2113> see: every little privacy change facebook's done
- # [21:48] <KemKemKem> facebooks a bit rubbish at event organising though isn't it?
- # [21:49] <tw2113> i'm just saying, i imagine it'd be hard to find mass support for such a thing with every little detail public
- # [21:49] <KemKemKem> well, the only reason why it's an issue with facebook is really because of all the embarrassing pictures on there
- # [21:50] <KemKemKem> i don't think most people have a problem telling people what their social plans are, and if you do then you're not forced to join
- # [21:50] <tw2113> just expressing my thoughts on it
- # [21:50] <KemKemKem> but imagine if everyone made their plans public, and used the site to plan which events they were going to..if you could see all the social events your friends were going to each week
- # [21:50] <KemKemKem> would be very useful
- # [21:50] <tw2113> and very easy to stalk
- # [21:50] <KemKemKem> keep your thoughts coming, they're welcome :)
- # [21:51] <KemKemKem> that's half the point :)
- # [21:51] <KemKemKem> i want to make it easy to stalk your friends
- # [21:51] <tw2113> until psycho ex's show up
- # [21:51] <KemKemKem> psycho ex's are psycho ex's though... if that's a problem for you then you just stop using the site
- # [21:52] <KemKemKem> i think 99% of people don't have stalkers so i don't think it's quite as big an issue as people think it to be personally
- # [21:52] <tw2113> I wish you luck, but I don't have the best feelings about the plans :P
- # [21:53] <KemKemKem> heh, nah i definitely appreciate that it could be a tool for stalking
- # [21:53] <KemKemKem> but i think the positives outweigh the negatives for most people (as they don't have stalkers!)
- # [21:53] * Parts: tw2113 (~tw2113@fedora/tw2113) ("IRC is just multiplayer notepad")
- # [21:54] <KemKemKem> you could get rid of the concept of friends too
- # [21:54] <KemKemKem> no adding or deleting, the people associated with you are the people you go to events with. Period.
- # [21:54] <KemKemKem> only slight issue is i've got to crowd-source every event going on in a city to make the site useful as a social planning tool
- # [21:57] <KemKemKem> so if you're free next tuesday and want to go out, the site will suggest an event for you which you and your friends have been on before.. if you go to a pub quiz every tuesday with four of your friends for several weeks last year, then it will be able to use this info to suggest that you go to a pub quiz etc...
- # [21:58] <KemKemKem> what's your twitter site about then?
- # [21:59] * Quits: Ramosa (Ramosa@unaffiliated/harald/x-000000001)
- # [22:06] * Joins: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net)
- # [22:07] * Quits: cocoadaemon (~cocoadaem@2a01:e35:8a99:e90:20d:93ff:fe3b:868c) (Quit: cocoadaemon)
- # [22:08] * Quits: LongBeach (~mike@AFontenayssB-152-1-27-75.w83-114.abo.wanadoo.fr) (Ping timeout: 252 seconds)
- # [22:08] * Parts: daveluke (~davidluke@cpe-72-225-200-96.nyc.res.rr.com)
- # [22:09] <KemKemKem> http://e-skindoctor.co.uk/planner.jpg
- # [22:09] <KemKemKem> that's basically the idea
- # [22:10] <KemKemKem> so your social life is public, people can see what events you are going to and you can easily find events to attend in your city
- # [22:11] * temp01 is now known as inter_net
- # [22:11] * inter_net is now known as temp01
- # [22:15] * Parts: skqr (~skqr@200.81.182.224)
- # [22:33] <daleharvey> antonkovalyov: you around?
- # [22:36] <antonkovalyov> daleharvey, yeah
- # [22:36] <antonkovalyov> sup?
- # [22:37] <daleharvey> you had anyone get jshint working in emacs yet? just before I give it a shot
- # [22:39] <antonkovalyov> daleharvey, not that i know of
- # [22:42] * Joins: peol (~andree@unaffiliated/peol)
- # [22:43] <daleharvey> ok, will let you know how it goes
- # [22:44] <antonkovalyov> cool thanks!
- # [22:45] * Joins: huskyr (~huskyr@535506A5.cm-6-6a.dynamic.ziggo.nl)
- # [22:53] * Joins: temp02 (~temp01@unaffiliated/temp01)
- # [22:54] * Joins: moo (~quassel@herd37.twinapex.fi)
- # [22:55] * Joins: jeremyselier (~Jeremy@2a01:e35:139f:2c60:fa1e:dfff:feec:469)
- # [22:55] * moo is now known as Guest7905
- # [22:55] * Joins: ajpiano_ (~ajpiano@li98-57.members.linode.com)
- # [22:56] * Joins: [tm]_ (~MikeSmith@sideshowbarker.net)
- # [22:56] * Joins: jeffsz (~jeffszusz@216.8.161.83)
- # [22:56] * Joins: Tolnem_ (~dlade@87.63.81.70)
- # [22:56] * Quits: jeffszusz (~jeffszusz@216.8.161.83) (Ping timeout: 250 seconds)
- # [22:56] * Quits: [tm] (~MikeSmith@sideshowbarker.net) (Ping timeout: 250 seconds)
- # [22:56] * Quits: bigbluehat_ (u632@gateway/web/irccloud.com/x-etelbefxuawxvbho) (Excess Flood)
- # [22:56] * Quits: hober (~ted@unaffiliated/hober) (Ping timeout: 250 seconds)
- # [22:56] * Quits: ajpiano (~ajpiano@li98-57.members.linode.com) (Ping timeout: 250 seconds)
- # [22:56] * Quits: temp01 (~temp01@unaffiliated/temp01) (Ping timeout: 250 seconds)
- # [22:56] * Quits: moo_ (~quassel@herd37.twinapex.fi) (Ping timeout: 250 seconds)
- # [22:56] * Quits: Tolnem (~dlade@87.63.81.70) (Ping timeout: 250 seconds)
- # [22:56] * Quits: hSATAC (~cat@221.169.252.14) (Ping timeout: 250 seconds)
- # [22:57] * ajpiano_ is now known as ajpiano
- # [22:57] * Joins: hSATAC (~cat@221.169.252.14)
- # [22:58] * Quits: croby (~croby@c-24-19-51-159.hsd1.wa.comcast.net) (Ping timeout: 276 seconds)
- # [23:04] * Joins: croby (~croby@c-24-19-51-159.hsd1.wa.comcast.net)
- # [23:04] * Quits: jeremyselier (~Jeremy@2a01:e35:139f:2c60:fa1e:dfff:feec:469) (Ping timeout: 264 seconds)
- # [23:15] * temp02 is now known as temp01
- # [23:20] * Quits: Erkan (thend@78.167.19.47)
- # [23:28] * Joins: Erkan (thend@78.167.19.47)
- # [23:36] <thatryan> hey paul_irish
- # [23:38] <paul_irish> sup
- # [23:39] <thatryan> how goes it
- # [23:39] <thatryan> taken over the world yet?
- # [23:44] <paul_irish> with a hangover. just about.
- # [23:44] <thatryan> lol winning
- # [23:44] <paul_irish> WINNNINGG
- # [23:44] <thatryan> damn it charlie
- # [23:45] <paul_irish> we're putting out a h5bp 1.0 RC like tomorrow or something
- # [23:46] <paul_irish> got modernizr 1.8 in the works too. amping it up for better plugins and extensibility
- # [23:46] <thatryan> with all the new changes? img and all? cool
- # [23:46] <thatryan> oh sweet, lots of stuff
- # [23:46] <nimbupani> yeah its about time.
- # [23:46] <thatryan> building in yepnope?
- # [23:46] <nimbupani> not in h5bp
- # [23:46] <paul_irish> not for 1.0. probably 1.1
- # [23:47] <paul_irish> when mod1.8 goes in
- # [23:47] <thatryan> cool, will give me time to understand how to use it better ;)
- # [23:47] <thatryan> wanna look at some jQuery? :D
- # [23:47] <paul_irish> sure
- # [23:48] <thatryan> for some reason, my $ is stopping working halfway through this... http://pastie.textmate.org/1640804
- # [23:48] <thatryan> and yes I am quite sure it is ugly
- # [23:49] <paul_irish> bro you gotta select less.
- # [23:49] <thatryan> lol
- # [23:49] <paul_irish> and DRY it
- # [23:49] <paul_irish> up
- # [23:49] <paul_irish> lets go to #jquery
- # [23:49] <thatryan> im not pre optimizing :)
- # [23:49] <thatryan> i was in there they are not helping :(
- # [23:50] <digitalfiz> I have charlie as my facebook profile pic :P
- # [23:51] <digitalfiz> http://cache.blippitt.com/wp-content/uploads/2011/03/Charlie-Sheen-Winning-Poster.jpg <-- that one
- # [23:52] <daleharvey> antonkovalyov: any chance of http://jshint.com/ giving you the options you have selected? :P
- # [23:53] <antonkovalyov> hm?
- # [23:53] * Joins: JKarsrud (~JKarsrud@178.74.12.26)
- # [23:54] <daleharvey> like with jslint, I have a bunch of options selected that I just wanna copy and paste, just mentioning for laziness sake, its nice for documentation as well
- # [23:54] <antonkovalyov> daleharvey, oh, in the works :)
- # [23:54] <antonkovalyov> brbr
- # [23:56] * Quits: huskyr (~huskyr@535506A5.cm-6-6a.dynamic.ziggo.nl) (Quit: huskyr)
- # [23:58] * Joins: huskyr (~huskyr@535506A5.cm-6-6a.dynamic.ziggo.nl)
- # Session Close: Mon Mar 07 00:00:00 2011
The end :)