Options:
- # Session Start: Fri Mar 02 00:00:00 2012
- # Session Ident: #html5
- # [00:00] <aerotwist> @paul_irish nerdy
- # [00:00] <paul_irish> damn straight
- # [00:00] <aerotwist> high fives all round
- # [00:00] <scottkellum> Yes, particularly iPad 1
- # [00:01] <paul_irish> Hmmm so scottkellum i was thinking of a test page of about 1000 elements with .ir on them
- # [00:01] <paul_irish> in webkit you could look at the Reflow duration
- # [00:01] <scottkellum> But optimization should not be device specific. This should effect everything and I noticed issues in the speed of the iPad 1.
- # [00:01] <paul_irish> which should be the measurement we're interested in here, if it has a cost to rendering
- # [00:01] * Quits: digitalfiz (~fiz@unaffiliated/digitalfiz) (Quit: [Textual IRC Client: http://www.textualapp.com/])
- # [00:01] <paul_irish> well.. reflow (layout) and paint
- # [00:01] <paul_irish> both
- # [00:02] <paul_irish> of course we can't instrument ipads with that
- # [00:02] <paul_irish> so there's that
- # [00:02] <paul_irish> (This is using the Timeline tool... that is)
- # [00:02] <andrewjbaker> aerotwist, re: console.log() to file, I think someone also suggested employing the logging functionality for arrays as exhibited by Eclipse in the past too. So you gradually expand the elements you want to see, split into groups: 0..9, 10..19, etc.
- # [00:03] <JonathanNeal> okay
- # [00:03] <JonathanNeal> so this is a performance issue with text indent?
- # [00:03] <paul_irish> essentially
- # [00:03] <paul_irish> i suppose on ipad we could measure +new Date; from <head> to window.onload
- # [00:04] <paul_irish> but that captures so much lifecycle that we're not concerned with
- # [00:04] <JonathanNeal> does this +new Date thing have anything to do with that?
- # [00:04] <necolas> what's the concern about inline elements? when do those ever get IR-ed?
- # [00:04] <paul_irish> ++ i would never expect to see inlines get IR'd
- # [00:05] * Quits: segora (~marc@p5793CD19.dip.t-dialin.net) (Quit: segora)
- # [00:05] * Joins: erichynds (~ehynds@pool-71-184-234-218.bstnma.fios.verizon.net)
- # [00:05] <chriseppstein> maybe I was wrong about that concern. seems like our existing mixin doesn't handle it
- # [00:05] <necolas> in the end, NIR is the only robust method. but if you need IE7 support, these old ways are..the way
- # [00:06] * Quits: keithclarkcouk (~keithclar@5ad54d06.bb.sky.com) (Ping timeout: 260 seconds)
- # [00:06] <JonathanNeal> NIR?
- # [00:06] <necolas> although i cant remember the last time i used IR
- # [00:06] <JonathanNeal> What do these acronyms stand for?
- # [00:06] <necolas> JonathanNeal: http://nicolasgallagher.com/css-image-replacement-with-pseudo-elements/
- # [00:06] <JonathanNeal> ____ image replacement.
- # [00:06] <necolas> Nash IR
- # [00:06] <JonathanNeal> i had seen that article.
- # [00:07] <necolas> afaik, works with block-level HTML fallback content. works with images off. the whole deal
- # [00:07] <necolas> but in the meantime, if this positive text-indent has benefits...
- # [00:07] * Joins: tantek (~tantek@206.13.35.251)
- # [00:08] * Quits: sedovsek (~robert.se@93-103-104-107.dynamic.t-2.net)
- # [00:08] <JonathanNeal> and what's the issue with the Keller method?
- # [00:08] <JonathanNeal> Kellum
- # [00:09] <paul_irish> well
- # [00:09] <paul_irish> we are looking at if it has a performance advantage when it comes to reflow/paint
- # [00:09] <necolas> scottkellum: couldn't you use -100% instead?
- # [00:09] <paul_irish> anecdotal evidence suggests worthwhile performance gain on iPad1
- # [00:09] <scottkellum> No, the idea is to move the content away from the content
- # [00:10] <JonathanNeal> scottkellum is here, well that helps clear things up.
- # [00:10] <scottkellum> With negative values, the content is moving towards the container.
- # [00:10] * Quits: gasbakid (~gasbakid@41.96.77.232) (Remote host closed the connection)
- # [00:10] <JonathanNeal> I see a performance difference on my pc @ http://lab.pgdn.us/hidden-text-performance/
- # [00:11] <paul_irish> JonathanNeal: try http://dl.dropbox.com/u/39519/temp/hiddentextperf.html
- # [00:11] <scottkellum> A positive values starts the content past the view, and it continues to flow away from the element. 100% starts the content JUST off screen
- # [00:11] <paul_irish> its the same but switched order
- # [00:11] <JonathanNeal> remember my pc exploded earlier with windows 8, so i apologize for seeming so out of it.
- # [00:11] * Quits: giulivo (~giulivo@dynamic-adsl-94-37-231-208.clienti.tiscali.it) (Quit: bye)
- # [00:11] <JonathanNeal> testing
- # [00:11] <necolas> scottkellum: works for me with -100%
- # [00:11] <chriseppstein> paul_irish: good catch
- # [00:12] <scottkellum> yes, it works. Start adding a lot more text :)
- # [00:12] <JonathanNeal> Don't see much difference between those paul_irish
- # [00:12] <necolas> scottkellum: i did
- # [00:12] <JonathanNeal> but won't the overflow of text show up?
- # [00:12] <JonathanNeal> with -100%?
- # [00:12] <necolas> scottkellum: oh, the image is so dark i didnt see the text over it
- # [00:13] <chriseppstein> I got it: color: transparent. #boom #done :P
- # [00:13] * Quits: rickibalboa (~ricki@84.19.108.75) (Ping timeout: 252 seconds)
- # [00:13] <JonathanNeal> ha, i have no way to test anything locally, everything is gone. jsfiddle it is.
- # [00:14] <JonathanNeal> chriseppstein: and on child elements with that overwritten?
- # [00:14] <JonathanNeal> so what's wrong with indent 100%?
- # [00:14] <necolas> chriseppstein: doesn't work properly
- # [00:14] <JonathanNeal> Does it work in IE?
- # [00:14] <necolas> chriseppstein: e.g. when you have a shit-tonne of text in the containers
- # [00:14] <paul_irish> scottkellum: you gonna be at sxsw/
- # [00:15] <chriseppstein> i can't have nice things
- # [00:15] <scottkellum> paul_irish yes
- # [00:15] <necolas> chriseppstein: do you still use IR?
- # [00:15] <paul_irish> \o/ awesome. let's hang out
- # [00:15] <scottkellum> paul_irish Sweeet, lets do it.
- # [00:15] * Quits: glcrazy (~SiRiuS@79.119.94.207) (Remote host closed the connection)
- # [00:16] <chriseppstein> necolas: we do this: http://compass-style.org/reference/compass/typography/text/replacement/#mixin-hide-text
- # [00:16] <chriseppstein> (click view-source on that mixin)
- # [00:16] <JonathanNeal> wouldn't child elements with nowrap off also break this?
- # [00:16] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [00:17] <JonathanNeal> Perhaps that's an unrealistic concern.
- # [00:17] * Joins: deasy (~deasy@85.201.207.128)
- # [00:17] <necolas> chriseppstein: sure, but do _you_ actually still use IR on sites?
- # [00:17] <chriseppstein> tbh, I never do this except on an element with nested content
- # [00:17] <JonathanNeal> Text was showing up for me with text-indent: 100%, I had to kick it to text-indent: 200%
- # [00:18] <chriseppstein> necolas: yes
- # [00:18] <necolas> oh
- # [00:18] <paul_irish> scottkellum: also. pointed someone to treesaverjs lately and he is so happy i did. just found Seasons so i'll pass that along
- # [00:18] * Joins: MistuhKurtz (~ColKurtz@216.86.217.155)
- # [00:18] <chriseppstein> dammit I meant I only do IR on an element with simple content like text -- never any nested elements except inline ones
- # [00:19] <JonathanNeal> Do you guys see it? @ http://jsfiddle.net/EWSmB/
- # [00:19] <JonathanNeal> The L from "Lorem" is showing.
- # [00:19] <JonathanNeal> oh ... it's also kicking the page over.
- # [00:20] <JonathanNeal> I guess with IR you have to specify a width?
- # [00:20] <scottkellum> jonathanNeal: you need to define a width for the - element
- # [00:20] <necolas> JonathanNeal: http://jsfiddle.net/EWSmB/1/
- # [00:21] <necolas> it's just poking out coz there's no width for overflow to clip
- # [00:21] <JonathanNeal> still shows up for me, necolas.
- # [00:21] <JonathanNeal> yea
- # [00:21] <JonathanNeal> oh, it's still escaping though.
- # [00:21] <necolas> the nice thing about NIR, is you can get away with only setting a height
- # [00:21] <chriseppstein> on ipad1 why not this: & { color: transparent; & * {display: none; }}
- # [00:21] <JonathanNeal> but I see it fixed with http://jsfiddle.net/EWSmB/2/
- # [00:22] <necolas> chriseppstein: coz color transparent has it's own problems
- # [00:22] <JonathanNeal> and text shadow would still show, right?
- # [00:22] * Quits: koggdal (~koggdal@c213-89-119-74.bredband.comhem.se) (Quit: koggdal)
- # [00:22] <JonathanNeal> you'd see its invisible shadow!
- # [00:22] <necolas> good point
- # [00:22] * Quits: venom00ut (~venom00@unaffiliated/venom00) (Ping timeout: 252 seconds)
- # [00:23] <chriseppstein> on ipad1 why not this: & { color: transparent; text-shadow: none; & * {display: none; }}
- # [00:23] <JonathanNeal> what's the current method again?
- # [00:23] * Joins: pinage404 (~pinage404@APuteaux-651-1-146-147.w92-154.abo.wanadoo.fr)
- # [00:23] <scottkellum> chriseppstein: the goal is to find a universal solution. The symptom shows up on the iPad 1 but the problem is everywhere. Really like the color:transparent thing thoguh.
- # [00:23] <necolas> scottkellum: if you had a lot of text in the element, you might still get a very long box drawn offscreen
- # [00:23] <JonathanNeal> chriseppstein: at that point, just use clip on the children
- # [00:23] <JonathanNeal> chriseppstein: eg & * { clip: rect(0 0 0 0); position: absolute; } "{
- # [00:23] <JonathanNeal> :P
- # [00:24] <chriseppstein> seems like all this moving stuff is a huge hack. we want to hide the text. so hide it :)
- # [00:24] <JonathanNeal> how do people normally use this? with a css background image?
- # [00:24] <chriseppstein> JonathanNeal: is clip more performant than display none?
- # [00:24] <scottkellum> necolas: very true, the box has the potential to still be big but the chances of it being smaller than 9999px are quite good.
- # [00:25] * Quits: Nathandim (~textual@ppp-2-84-19-33.home.otenet.gr) (Quit: My mac has gone to sleep.)
- # [00:25] <JonathanNeal> scottkellum: true, as long as you're not IRing something with nested children, which .. I'm guilty of doing in the past.
- # [00:26] * Quits: marcocarag (~marcocara@38.117.157.59) (Quit: marcocarag)
- # [00:26] <JonathanNeal> but even then, hopefully smaller than 9999
- # [00:26] <scottkellum> necolas: If the text were longer than 9999px then even bigger problems would occur with the old method, text would start to run into the box
- # [00:26] <necolas> JonathanNeal: im gonna roll NIR into the toolkit since it's IE8+ :)
- # [00:26] * Quits: bribroder (~bribroder@unaffiliated/bribroder) (Remote host closed the connection)
- # [00:26] <necolas> scottkellum: yep
- # [00:26] <JonathanNeal> the old method was what? and worked in what?
- # [00:27] <necolas> JonathanNeal: it's in h5bp
- # [00:27] <JonathanNeal> yea ... my computer is all sorts of sad.
- # [00:27] <JonathanNeal> Treat me with a handicap.
- # [00:27] <JonathanNeal> that direction: ltr; is wise too.
- # [00:27] <necolas> tbh, im surprised the original technique didn't positively indent text like this. pretty much every other variant used that concept (but did it with padding etc)
- # [00:28] * Quits: pinage404 (~pinage404@APuteaux-651-1-146-147.w92-154.abo.wanadoo.fr) (Remote host closed the connection)
- # [00:28] * Quits: BigKing (~BigKing@dslb-188-109-035-165.pools.arcor-ip.net) (Remote host closed the connection)
- # [00:28] * Joins: markkes (~markkes@53509CCC.cm-6-1c.dynamic.ziggo.nl)
- # [00:29] <scottkellum> necolas: they might have had to deal with browsers that didn’t support white-space
- # [00:29] <necolas> i suppose image carousel's are death to ipad 1
- # [00:29] * Quits: onla (onla@newshell4.bshellz.net) (Ping timeout: 265 seconds)
- # [00:29] <scottkellum> With out white-space: nowrap the second word will land in the element
- # [00:30] <JonathanNeal> .ir { direction: ltr; overflow: hidden; text-indent: 100%; white-space: nowrap; } .ir * { display: none; } ?
- # [00:30] * Joins: Viceroy (~ViceroyPu@76.9.202.25)
- # [00:31] <necolas> scottkellum: yeah
- # [00:31] * Quits: aerotwist (~aerotwist@host81-159-211-208.range81-159.btcentralplus.com) (Remote host closed the connection)
- # [00:31] * Quits: Reite (~chris@213.109-247-20.customer.lyse.net) (Ping timeout: 260 seconds)
- # [00:32] * Joins: hughfdjackson (~hughfdjac@host86-182-24-20.range86-182.btcentralplus.com)
- # [00:32] <JonathanNeal> whaddaya think of the combo suggestion above, necolas, scottkellum?
- # [00:33] <necolas> JonathanNeal: yeah that's what it'll be if we switch method
- # [00:33] <JonathanNeal> will the line height still need to be adjusted?
- # [00:34] <JonathanNeal> for display inline block i would imagine so.
- # [00:34] <chriseppstein> scottkellum: when you guys figure out what's the best answer can you ping the compass issue and let me know if it's good to go, or if there's caveat, etc?
- # [00:34] <chriseppstein> I need to get back to work
- # [00:35] <scottkellum> I need to run as well
- # [00:35] <JonathanNeal> you could font-size 0 to, to reduce the drawing too.
- # [00:35] <chriseppstein> no hurry ;)
- # [00:36] * Parts: Viceroy (~ViceroyPu@76.9.202.25) ("Leaving")
- # [00:36] <scottkellum> jonathanneal, I like it but it needs to include no-js.
- # [00:36] <JonathanNeal> scottkellum: what is js about what i said?
- # [00:36] <scottkellum> gtg, later. wish I could stay.
- # [00:37] <paul_irish> o.o
- # [00:37] <JonathanNeal> .ir { direction: ltr; font: 0/0 serif; overflow: hidden; text-indent: 100%; white-space: nowrap; } .ir * { display: none; }
- # [00:37] <scottkellum> sorry, not reading it right. I need time to play with it. worrie about screen readers with display none.
- # [00:37] <JonathanNeal> well, talk more later.
- # [00:37] <scottkellum> lecture already started though :(
- # [00:38] <paul_irish> :)
- # [00:38] <paul_irish> bye scottttt
- # [00:38] <JonathanNeal> clip: rect(0 0 0 0); position: absolute; will make it screenreader kind.
- # [00:38] * Quits: scottkellum (~scottkell@207.239.55.34) (Quit: scottkellum)
- # [00:38] * Joins: Viceroy (~ViceroyPu@76.9.202.25)
- # [00:38] <JonathanNeal> I would opt for that before using :before or :after, necolas, imho
- # [00:38] * Joins: gimi (~gimi@115.72.227.41)
- # [00:38] * Viceroy is now known as Viceroy22
- # [00:38] <necolas> for h5bp, we cant use :before
- # [00:39] <necolas> but for h5bp-ui, i can
- # [00:39] <JonathanNeal> what i meant to say was, i prefer this method over :before and :after anyway, regardless of compatibility.
- # [00:39] <necolas> why? it's worse
- # [00:39] * Joins: Hopsy (~Hopsy@ip6-27-210-87.adsl2.static.versatel.nl)
- # [00:40] * paul_irish thinks we can drop ie6 from h5bp now
- # [00:40] <paul_irish> oh. ie7
- # [00:40] <paul_irish> my b
- # [00:40] * Quits: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net) (Remote host closed the connection)
- # [00:44] * paul_irish is now known as paul_irish_
- # [00:44] <Pomax> can we make MS send a leter to its customers going "we would like to know whether you think we should top supporting old versions of IE" and then if only 1% responds "keep it", axe the older ones
- # [00:45] * Quits: Hopsy (~Hopsy@ip6-27-210-87.adsl2.static.versatel.nl) (Ping timeout: 265 seconds)
- # [00:46] * Quits: deasy (~deasy@85.201.207.128) (Read error: Connection reset by peer)
- # [00:46] * Joins: keithclarkcouk (~keithclar@5ad54d06.bb.sky.com)
- # [00:47] * Joins: aljosa (~aljosa@141-136-219-192.dsl.iskon.hr)
- # [00:47] <necolas> JonathanNeal: i dont see the benefits over NIR
- # [00:48] * Quits: sphinxxx (~sphinxxx@69.160.252.5) (Quit: sphinxxx)
- # [00:49] * Joins: deasy (~deasy@85.201.207.128)
- # [00:49] <JonathanNeal> nir is :before,:after?
- # [00:50] * Joins: Nathandim (~textual@ppp-2-84-19-33.home.otenet.gr)
- # [00:51] * Quits: andr3 (~andr3@bl14-253-47.dsl.telepac.pt) (Quit: andr3)
- # [00:52] <necolas> JonathanNeal: i thought you read the article? it uses :before
- # [00:53] * Joins: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net)
- # [00:53] * Quits: sasori_ (~sasori@acl1-719bts.gw.smartbro.net) (Ping timeout: 255 seconds)
- # [00:54] * Joins: cccaldas (~cccaldas@187.59.101.9)
- # [00:55] <JonathanNeal> I did ... I don't know how to explain this but in Windows 8 I'm having a lot of trouble using the computer.
- # [00:56] <JonathanNeal> So, when we reference these things, I can't quickly double check and verify so my brain is like totally scattered.
- # [00:59] * Quits: keithclarkcouk (~keithclar@5ad54d06.bb.sky.com) (Ping timeout: 245 seconds)
- # [00:59] * Quits: cmw (~cmw@vpn.openpeak.com) (Ping timeout: 246 seconds)
- # [00:59] * Quits: deasy (~deasy@85.201.207.128) (Quit: Nom d'un quark, c'est Edmonton!)
- # [01:00] * Joins: plh (~plh@209-6-123-224.c3-0.arl-ubr1.sbo-arl.ma.cable.rcn.com)
- # [01:01] * Quits: necolas (~necolas@5e0c715f.bb.sky.com) (Remote host closed the connection)
- # [01:04] * Joins: Graister- (~graister@212-149-203-36.bb.dnainternet.fi)
- # [01:05] * Joins: davidmurdoch (434ef46a@gateway/web/freenode/ip.67.78.244.106)
- # [01:05] <davidmurdoch> did I miss the .ir party?
- # [01:05] * Quits: dmachi (~dmachi@pool-72-66-209-165.ronkva.east.verizon.net) (Quit: Leaving.)
- # [01:06] <JonathanNeal> davidmurdoch: no way man, let's talk!
- # [01:06] <xp_prg2> JonathanNeal did you figure anything out?
- # [01:07] <davidmurdoch> what's been discussed so far?
- # [01:07] <Bish> how many people are using <ie8 ?
- # [01:07] <Bish> percentage?
- # [01:07] <Bish> of all users, including ff,opera,chrome etc etc
- # [01:08] <davidmurdoch> 923456712 +- 923456712 :-p
- # [01:08] <JonathanNeal> xp_prg2: well ... about that ie test.
- # [01:09] <JonathanNeal> Bish: not sure, i hope we get to the point where we can drop ie<8
- # [01:09] <JonathanNeal> But, personally, I still don't like the :before method
- # [01:10] <Bish> i hope we get to the point where we drop microsoft
- # [01:10] <davidmurdoch> The before methods won't work in IE<8, right?
- # [01:10] * davidmurdoch has dropped IE7 in my day job.
- # [01:10] * Joins: dannygarcia (412cd922@gateway/web/freenode/ip.65.44.217.34)
- # [01:10] <Bish> well, anyways, im going to bed, have a good night
- # [01:10] <Bish> guess u dont have night, anyways have a nice day
- # [01:11] <markkes> Bish, i would say about 5% ish?
- # [01:11] <Bish> markkes, okay good, since my pages displays fine ( even the graphs printed by javascript ) , but some stuff like... color:green; for prices does not work
- # [01:11] <Bish> im to lazy for 5 % :D
- # [01:11] <JonathanNeal> davidmurdoch: that is correct.
- # [01:12] <markkes> But i dont know how reliable http://gs.statcounter.com/ is
- # [01:12] <markkes> Nice stats tho
- # [01:12] <davidmurdoch> jonathanneal: since I just jumped in I wasn't sure if we were talking about necola's image replacement method. ??
- # [01:12] <JonathanNeal> My concern has nothing to do with what is possible, it's at the very minimum, preferencial.
- # [01:12] <davidmurdoch> *necolas
- # [01:13] <JonathanNeal> Being that it's hard for me to switch applications, I can't tell you much about the different methods, but necolas could.
- # [01:13] <JonathanNeal> http://nicolasgallagher.com/css-image-replacement-with-pseudo-elements/
- # [01:13] * Quits: robhawkes (~robhawkes@188-220-16-96.dsl.cnl.uk.net) (Ping timeout: 276 seconds)
- # [01:16] * Quits: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net) (Remote host closed the connection)
- # [01:16] <JonathanNeal> It just seems very indirect.
- # [01:17] * Quits: marvin_ (~shikhai@pD9F4D324.dip0.t-ipconnect.de) (Quit: Leaving)
- # [01:17] * Quits: carminec (~user@205.233.83.87) (Quit: ERC Version 5.3 (IRC client for Emacs))
- # [01:17] * Joins: marcocarag (~marcocara@pool-72-80-94-176.nycmny.fios.verizon.net)
- # [01:21] * Quits: themiddleman_itv (~robot@50-73-38-137-utah.hfc.comcastbusiness.net) (Quit: themiddleman_itv)
- # [01:22] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: Nice Scotty, now beam my clothes up too!)
- # [01:23] * Joins: pinage404 (~pinage404@APuteaux-651-1-146-147.w92-154.abo.wanadoo.fr)
- # [01:25] * Parts: pinage404 (~pinage404@APuteaux-651-1-146-147.w92-154.abo.wanadoo.fr)
- # [01:26] * Quits: chriseppstein (~chrisepps@209.119.65.162) (Quit: chriseppstein)
- # [01:26] * Quits: davidmurdoch (434ef46a@gateway/web/freenode/ip.67.78.244.106) (Quit: Page closed)
- # [01:27] * Joins: davidmurdoch (434ef46a@gateway/web/freenode/ip.67.78.244.106)
- # [01:28] * Joins: buribu (~buribu@unaffiliated/buribu)
- # [01:28] * Quits: cccaldas (~cccaldas@187.59.101.9) (Ping timeout: 260 seconds)
- # [01:30] * Quits: Jon47 (~Adium@pool-74-96-160-56.washdc.fios.verizon.net) (Quit: Leaving.)
- # [01:30] * Quits: gimi (~gimi@115.72.227.41) (Quit: gimi)
- # [01:31] * Quits: mh0 (MH0@unaffiliated/mh0) (Ping timeout: 244 seconds)
- # [01:31] * Joins: kadiks (~kadiks@APuteaux-652-1-109-115.w90-2.abo.wanadoo.fr)
- # [01:31] * Joins: cmw (cmw@c-76-108-152-196.hsd1.fl.comcast.net)
- # [01:31] * cmw is now known as Guest25139
- # [01:32] * Guest25139 is now known as cmw
- # [01:33] * Quits: tantek (~tantek@206.13.35.251) (Quit: tantek)
- # [01:35] * Joins: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com)
- # [01:37] * Quits: obert- (~obert@host99-207-dynamic.1-87-r.retail.telecomitalia.it)
- # [01:38] * Quits: mattur (~mattur@host81-133-37-248.in-addr.btopenworld.com)
- # [01:39] * Joins: tantek (~tantek@206.13.35.251)
- # [01:40] * Quits: plh (~plh@209-6-123-224.c3-0.arl-ubr1.sbo-arl.ma.cable.rcn.com) (Quit: always accept cookies)
- # [01:40] * Quits: jamund (~jamund@c-174-52-214-161.hsd1.ut.comcast.net) (Quit: jamund)
- # [01:40] * Joins: Dranzerkire (~Kire@adsl-065-006-168-106.sip.mia.bellsouth.net)
- # [01:40] * Quits: dannygarcia (412cd922@gateway/web/freenode/ip.65.44.217.34) (Quit: Page closed)
- # [01:43] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Read error: Connection reset by peer)
- # [01:43] * jetienne_ is now known as jetienne
- # [01:43] * Quits: enoex (~enoex@70-36-146-66.dsl.dynamic.sonic.net) (Quit: enoex)
- # [01:46] * Quits: Jayflux (~jay_knows@cpc1-dudl6-0-0-cust1981.wolv.cable.virginmedia.com) (Quit: ( www.nnscript.com :: NoNameScript 4.22 :: www.esnation.com ))
- # [01:48] * Quits: aljosa (~aljosa@141-136-219-192.dsl.iskon.hr) (Remote host closed the connection)
- # [01:50] * Joins: caasiHuang (~caasiHuan@59-126-203-62.HINET-IP.hinet.net)
- # [01:51] * Quits: Dranzerkire (~Kire@adsl-065-006-168-106.sip.mia.bellsouth.net) (Quit: Leaving)
- # [01:54] * Quits: erichynds (~ehynds@pool-71-184-234-218.bstnma.fios.verizon.net)
- # [01:57] * Parts: louisremi (~louisremi@mon69-3-87-90-54-237.dsl.sta.abo.bbox.fr)
- # [01:58] * Quits: thcipriani (~tyler@173-14-24-158-Colorado.hfc.comcastbusiness.net) (Quit: leaving)
- # [02:01] * Quits: dhruvasagar (~dhruvasag@65.98.79.137) (Excess Flood)
- # [02:02] * Joins: dhruvasagar (~dhruvasag@65.98.79.137)
- # [02:03] * Joins: sasori (~sasori@acl1-719bts.gw.smartbro.net)
- # [02:04] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Quit: jetienne)
- # [02:04] * Joins: neilus (~neilus@catv-188-142-168-131.catv.broadband.hu)
- # [02:07] * Joins: enoex (~enoex@70-36-146-66.dsl.dynamic.sonic.net)
- # [02:08] * Joins: jacobolus (~jacobolus@75-144-246-6-SFBA.hfc.comcastbusiness.net)
- # [02:09] * Quits: cmw (cmw@c-76-108-152-196.hsd1.fl.comcast.net) (Read error: Connection reset by peer)
- # [02:09] * Joins: cmw (cmw@c-76-108-152-196.hsd1.fl.comcast.net)
- # [02:09] * Quits: davidmurdoch (434ef46a@gateway/web/freenode/ip.67.78.244.106) (Quit: Page closed)
- # [02:11] * Quits: JonathanNeal (~Jonathan@71.21.36.135) (Quit: Leaving.)
- # [02:14] * Joins: pexite_ (~pexite@hyp-p-106.pabianice.msk.pl)
- # [02:15] * Quits: taylorRichie (~Adium@208.110.141.169) (Quit: Leaving.)
- # [02:16] * Quits: dhruvasagar (~dhruvasag@65.98.79.137) (Excess Flood)
- # [02:17] * Joins: dhruvasagar (~dhruvasag@65.98.79.137)
- # [02:18] * Joins: davidbanham (~davidbanh@95.27.233.220.static.exetel.com.au)
- # [02:19] * Quits: zampano (~zampano@unaffiliated/zampano) (Quit: Leaving)
- # [02:19] * Joins: JonathanNeal (~Jonathan@71.21.36.135)
- # [02:20] * Quits: thatryan (~thatryan@c-24-4-167-46.hsd1.ca.comcast.net) (Quit: Leaving...)
- # [02:20] * Joins: dilvie (~chatzilla@c-50-131-97-22.hsd1.ca.comcast.net)
- # [02:20] * Quits: carlos_antonio (~benway@173.230.152.21) (Quit: Lost terminal)
- # [02:21] * Joins: krisbulman (~kgbulman@blk-7-219-73.eastlink.ca)
- # [02:21] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [02:21] * Quits: sarro (~sarro@i5E86468D.versanet.de) (Ping timeout: 248 seconds)
- # [02:22] * Joins: snowfox (~benschaaf@c-98-243-88-119.hsd1.mi.comcast.net)
- # [02:22] * Quits: snowfox (~benschaaf@c-98-243-88-119.hsd1.mi.comcast.net) (Client Quit)
- # [02:24] * Quits: Nathandim (~textual@ppp-2-84-19-33.home.otenet.gr) (Remote host closed the connection)
- # [02:25] <krisbulman> any updates on whether the Kellum Method (replacement of FIR) actually has any real performance improvement?
- # [02:27] * Joins: zampano (~zampano@unaffiliated/zampano)
- # [02:28] * Quits: gliese581 (~ManOnTheM@81.202.113.56.dyn.user.ono.com) (Quit: leaving)
- # [02:29] * Parts: lifechamp (~lifechamp@5ED2345B.cm-7-3a.dynamic.ziggo.nl)
- # [02:29] * Quits: markkes (~markkes@53509CCC.cm-6-1c.dynamic.ziggo.nl) (Quit: Leaving...)
- # [02:29] * Quits: axos411 (~axos@xdsl-87-79-197-128.netcologne.de) (Quit: Leaving.)
- # [02:32] * Joins: axos411 (~axos@xdsl-87-79-197-128.netcologne.de)
- # [02:34] * Quits: Viceroy22 (~ViceroyPu@76.9.202.25) (Quit: Leaving)
- # [02:41] * Joins: thatryan (~thatryan@c-24-7-104-15.hsd1.ca.comcast.net)
- # [02:41] <JonathanNeal> krisbulman: there is a style testing tool out there, right?
- # [02:41] <JonathanNeal> You could test it.
- # [02:41] <JonathanNeal> I'll test it with you.
- # [02:42] * Quits: wesleyhales (~wesleyhal@c-98-252-148-52.hsd1.ga.comcast.net) (Quit: wesleyhales)
- # [02:42] <JonathanNeal> I'm interested in knowing what font: 0/0 serif; text-indent: 100%; looks like on all browsers.
- # [02:42] <krisbulman> 3 hours ago, paul_irish_ mentioned " come by #html5 on freenode -- we're banging this out now."
- # [02:42] <JonathanNeal> if that improves the kellum method then i say we go for THAT.
- # [02:43] <krisbulman> i was interested in the results of his testing
- # [02:43] <JonathanNeal> Someone else could tell you if there were numbers. I don't recall any.
- # [02:44] <JonathanNeal> krisbulman: http://andy.edinborough.org/CSS-Stress-Testing-and-Performance-Profiling
- # [02:45] * Joins: carlos_antonio (~benway@173.230.152.21)
- # [02:45] <krisbulman> he mentions an optimal way to test it here: https://github.com/h5bp/html5-boilerplate/issues/1005#issuecomment-4272406
- # [02:45] <socialhapy> ★ Issue #1005 on html5-boilerplate, reported by davidmurdoch (4h, 53m ago): Look into updating .ir to use a "new and improved" method
- # [02:46] <JonathanNeal> i'll goto http://lab.pgdn.us/hidden-text-performance/
- # [02:46] <JonathanNeal> and run the bookmarklet.
- # [02:47] <JonathanNeal> Well, that threw an error. You wanna try?
- # [02:47] <krisbulman> yep, sec
- # [02:47] <JonathanNeal> The CSS Stress Test bookmarklet is on th elink I shared just a little ways up.
- # [02:48] <JonathanNeal> It's throwing an error like "Cannot read property 'parentNode' of undefined"
- # [02:48] <JonathanNeal> If your test works, share the results.
- # [02:48] * Joins: ciro_nunes (bb73f183@gateway/web/freenode/ip.187.115.241.131)
- # [02:49] <krisbulman> Removing .animated 2 0 saves 28.01ms 8.33ms
- # [02:49] <krisbulman> blare, sec, will sketch it
- # [02:49] <krisbulman> skitch*
- # [02:50] <krisbulman> https://skitch.com/krisbulman/8gpc7/hidden-text-performance-testing
- # [02:51] <JonathanNeal> k
- # [02:51] <JonathanNeal> so old is slower than new?
- # [02:52] <krisbulman> looks to be that way
- # [02:52] <JonathanNeal> Good.
- # [02:54] <JonathanNeal> https://gist.github.com/1954805
- # [02:54] * Quits: tantek (~tantek@206.13.35.251) (Quit: tantek)
- # [02:55] * Joins: axos4111 (~axos@xdsl-78-35-181-175.netcologne.de)
- # [02:56] * Joins: jochen___ (jochen@nat/google/x-zexrjtpxeqwgtmsw)
- # [02:56] * Quits: jochen__ (jochen@nat/google/x-ksumsdtfsbpvnvpn) (Read error: Connection reset by peer)
- # [02:56] * jochen___ is now known as jochen__
- # [02:57] <JonathanNeal> Will that work?
- # [02:57] * Quits: axos411 (~axos@xdsl-87-79-197-128.netcologne.de) (Ping timeout: 260 seconds)
- # [02:59] * Quits: dgathright (~dgathrigh@CPE-75-81-131-0.wi.res.rr.com) (Ping timeout: 276 seconds)
- # [02:59] <JonathanNeal> would you test that as well, krisbulman?
- # [03:02] * Quits: jacobolus (~jacobolus@75-144-246-6-SFBA.hfc.comcastbusiness.net) (Ping timeout: 252 seconds)
- # [03:03] * Joins: abraxas (~abraxas@113x33x180x18.ap113.ftth.ucom.ne.jp)
- # [03:04] * Quits: marcocarag (~marcocara@pool-72-80-94-176.nycmny.fios.verizon.net) (Quit: marcocarag)
- # [03:05] * Joins: jacobolus (~jacobolus@75-144-246-6-SFBA.hfc.comcastbusiness.net)
- # [03:06] * Joins: dgathright (~dgathrigh@CPE-75-81-131-0.wi.res.rr.com)
- # [03:09] * Joins: johnkpaul (~johnkpaul@pool-96-250-167-7.nycmny.fios.verizon.net)
- # [03:11] * Parts: krisbulman (~kgbulman@blk-7-219-73.eastlink.ca)
- # [03:12] * Joins: techrush (~techrush@cpe-76-175-29-57.socal.res.rr.com)
- # [03:14] * Quits: diogogmt (~kvirc@CPE0018396f5ec0-CM0012c99ea256.cpe.net.cable.rogers.com) (Read error: Operation timed out)
- # [03:19] * Joins: marcocarag (~marcocara@pool-72-80-94-176.nycmny.fios.verizon.net)
- # [03:20] * Quits: fearlesstost (~fearlesst@2620:0:1cfe:1e:89d6:f3db:c716:947d) (Quit: fearlesstost)
- # [03:25] * Joins: fearlesstost_ (~fearlesst@107.43.169.48)
- # [03:25] * Quits: fearlesstost_ (~fearlesst@107.43.169.48) (Client Quit)
- # [03:27] * Joins: jamund (~jamund@97.75.189.62)
- # [03:28] * Joins: themiddleman_itv (~robot@97.75.189.62)
- # [03:28] * Quits: dyamanoha (~dyamanoha@69.84.244.195) (Ping timeout: 255 seconds)
- # [03:29] <JonathanNeal> Here's the page to test http://jsfiddle.net/CpewT/show/
- # [03:30] * Joins: diogogmt (~kvirc@CPE0018396f5ec0-CM0012c99ea256.cpe.net.cable.rogers.com)
- # [03:32] <tertl4> what is this?
- # [03:32] <tertl4> cats rotating?
- # [03:34] <JonathanNeal> Yes.
- # [03:35] <tertl4> cool
- # [03:35] * Joins: kurtzhong (~kurtzhong@116.226.106.80)
- # [03:35] <tertl4> can u make it spin really fast?
- # [03:36] <tertl4> like 6000rpm
- # [03:36] * Quits: buribu (~buribu@unaffiliated/buribu) (Quit: como eh triste o adels :´()
- # [03:36] <tertl4> idk
- # [03:36] <tertl4> is it becnhmark?
- # [03:36] <JonathanNeal> http://jsfiddle.net/CpewT/1/
- # [03:36] <tertl4> what is it telling me
- # [03:36] <JonathanNeal> This gives you some instructions, tertl4
- # [03:37] * Quits: dhruvasagar (~dhruvasag@65.98.79.137) (Excess Flood)
- # [03:37] <JonathanNeal> We want to know which one of these is more performant.
- # [03:37] <tertl4> i think they are identical
- # [03:38] <tertl4> but it also feels like an optical illusion machine
- # [03:38] <tertl4> twilight zone
- # [03:38] * Quits: hughfdjackson (~hughfdjac@host86-182-24-20.range86-182.btcentralplus.com) (Quit: hughfdjackson)
- # [03:38] <JonathanNeal> but in testing they might reveal to be causing a performance impact.
- # [03:38] <JonathanNeal> http://jsfiddle.net/CpewT/2/ ( maybe this will help the testing )
- # [03:39] <tertl4> i dont see a difference
- # [03:39] * Joins: ZeepZop (~chatzilla@cpe-75-84-90-74.socal.res.rr.com)
- # [03:39] * Joins: dhruvasagar (~dhruvasag@65.98.79.137)
- # [03:40] <tertl4> what would be hit, the quality?
- # [03:40] <tertl4> blurring?
- # [03:40] <tertl4> spinning?
- # [03:40] * Quits: andrewjbaker (~ajb@host-78-149-107-141.as13285.net) (Quit: Leaving)
- # [03:40] <JonathanNeal> http://jsfiddle.net/CpewT/3/show/
- # [03:40] <JonathanNeal> there, i added the test bookmarklet for you :D
- # [03:41] <tertl4> i see that u like mvc
- # [03:42] <tertl4> i choose mvc too
- # [03:43] * Quits: kurtzhong (~kurtzhong@116.226.106.80) (Ping timeout: 252 seconds)
- # [03:43] * Quits: themiddleman_itv (~robot@97.75.189.62) (Quit: themiddleman_itv)
- # [03:44] <clouder`grr> what if you make the cat spin so fast, it looks like it's spinning backwards
- # [03:44] * Joins: kurtzhong (~kurtzhong@li317-39.members.linode.com)
- # [03:44] * Quits: johnkpaul (~johnkpaul@pool-96-250-167-7.nycmny.fios.verizon.net) (Remote host closed the connection)
- # [03:45] <tertl4> interesting JonathanNeal
- # [03:45] <tertl4> border-radius huh
- # [03:46] <JonathanNeal> Yeap, taking off for a while. See you guys later.
- # [03:46] * Parts: JonathanNeal (~Jonathan@71.21.36.135)
- # [03:49] * Quits: axos4111 (~axos@xdsl-78-35-181-175.netcologne.de) (Quit: Leaving.)
- # [03:51] * Joins: axos411 (~axos@xdsl-78-35-181-175.netcologne.de)
- # [03:51] * Quits: axos411 (~axos@xdsl-78-35-181-175.netcologne.de) (Remote host closed the connection)
- # [03:51] * Joins: axos411 (~axos@xdsl-78-35-181-175.netcologne.de)
- # [03:53] * Quits: enoex (~enoex@70-36-146-66.dsl.dynamic.sonic.net) (Quit: enoex)
- # [03:55] * Joins: dyamanoha (~dyamanoha@c-76-104-240-3.hsd1.wa.comcast.net)
- # [03:55] * Quits: JoshuaJones (~JoshuaJon@67.198.198.66) (Quit: JoshuaJones)
- # [03:56] * Joins: enoex (~enoex@70-36-146-66.dsl.dynamic.sonic.net)
- # [03:56] * Joins: jeffszusz (~jeffszusz@d24-57-245-48.home.cgocable.net)
- # [03:57] * Joins: tylerstalder (~tylerstal@c-76-21-12-194.hsd1.ca.comcast.net)
- # [03:57] * Quits: axos411 (~axos@xdsl-78-35-181-175.netcologne.de) (Quit: Leaving.)
- # [04:01] * Joins: Moonies (~Bongle@unaffiliated/moonies)
- # [04:02] * Quits: ciro_nunes (bb73f183@gateway/web/freenode/ip.187.115.241.131) (Ping timeout: 245 seconds)
- # [04:06] * Quits: pexite_ (~pexite@hyp-p-106.pabianice.msk.pl) (Quit: Leaving)
- # [04:07] * Quits: dilvie (~chatzilla@c-50-131-97-22.hsd1.ca.comcast.net) (Ping timeout: 244 seconds)
- # [04:07] * Joins: devongovett (~devongove@pcp038545pcs.morro.reshall.calpoly.edu)
- # [04:08] * Parts: jeffszusz (~jeffszusz@d24-57-245-48.home.cgocable.net) ("Leaving...")
- # [04:08] * Joins: Luxx_ (~highoh@c-67-171-35-186.hsd1.wa.comcast.net)
- # [04:11] * Quits: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com) (Quit: Reading http://davidwalsh.name)
- # [04:11] * Quits: pexite (~pexite@hyp-p-106.pabianice.msk.pl) (Ping timeout: 265 seconds)
- # [04:13] * Quits: marcocarag (~marcocara@pool-72-80-94-176.nycmny.fios.verizon.net) (Quit: marcocarag)
- # [04:15] * Quits: tylerstalder (~tylerstal@c-76-21-12-194.hsd1.ca.comcast.net) (Quit: Computer has gone to sleep.)
- # [04:16] * Quits: enoex (~enoex@70-36-146-66.dsl.dynamic.sonic.net) (Quit: enoex)
- # [04:18] * Joins: enoex (~enoex@70-36-146-66.dsl.dynamic.sonic.net)
- # [04:18] * Quits: enoex (~enoex@70-36-146-66.dsl.dynamic.sonic.net) (Client Quit)
- # [04:18] * Quits: monteslu (~monteslu@ip68-109-174-213.ph.ph.cox.net) (Read error: Operation timed out)
- # [04:19] * Joins: Conexion (~Phantom@50.46.234.2)
- # [04:32] * Joins: monteslu (~monteslu@ip68-109-174-213.ph.ph.cox.net)
- # [04:33] * Quits: Moonies (~Bongle@unaffiliated/moonies) (Quit: quack)
- # [04:36] * Joins: kurtzhong_ (~kurtzhong@116.226.106.80)
- # [04:38] * Quits: kurtzhong (~kurtzhong@li317-39.members.linode.com) (Ping timeout: 244 seconds)
- # [04:38] * kurtzhong_ is now known as kurtzhong
- # [04:39] * Parts: ontime (~ontime@unaffiliated/ontime) ("Leaving")
- # [04:42] * Joins: ericbarnes (~ericbarne@cpe-075-181-047-014.carolina.res.rr.com)
- # [04:43] * Joins: coeus_ (~coeus@dslb-084-061-033-126.pools.arcor-ip.net)
- # [04:43] * Quits: jacobolus (~jacobolus@75-144-246-6-SFBA.hfc.comcastbusiness.net) (Remote host closed the connection)
- # [04:45] * Quits: WebDragon (~webdragon@c-68-82-181-85.hsd1.de.comcast.net) (Quit: how's life treating me? ...like a fridge magnet poem :P)
- # [04:46] * Quits: coeus (~coeus@dslb-084-061-010-191.pools.arcor-ip.net) (Ping timeout: 265 seconds)
- # [04:47] * Joins: kevwil (~kevwil@c-67-161-153-2.hsd1.co.comcast.net)
- # [04:48] * Parts: kevwil (~kevwil@c-67-161-153-2.hsd1.co.comcast.net)
- # [04:53] * Joins: SrPx (b1289521@gateway/web/freenode/ip.177.40.149.33)
- # [04:53] <SrPx> hey, canvasContext.scale(0.5,1) is not working :/ no error, nothing.
- # [04:54] * Joins: themiddleman_itv (~robot@97.75.189.62)
- # [04:54] * Quits: themiddleman_itv (~robot@97.75.189.62) (Client Quit)
- # [04:55] * Quits: marmalade (~G-A-B-E-N@142.68.206.79) (Read error: Connection reset by peer)
- # [04:56] * Joins: themiddleman_itv (~robot@97.75.189.62)
- # [04:59] * Joins: Vennril2 (~vennril@p4FCB0952.dip0.t-ipconnect.de)
- # [05:00] * Quits: Vennril (~vennril@p4FCB10C9.dip0.t-ipconnect.de) (Ping timeout: 260 seconds)
- # [05:00] * Vennril2 is now known as Vennril
- # [05:10] * Joins: GhostFreeman (~GhostFree@c-24-98-246-138.hsd1.ga.comcast.net)
- # [05:12] * Quits: jamund (~jamund@97.75.189.62) (Quit: jamund)
- # [05:16] * Joins: kevwil (~kevwil@c-67-161-153-2.hsd1.co.comcast.net)
- # [05:17] * Joins: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net)
- # [05:24] * Quits: Orbitrix (Orbitrix@c-68-35-88-96.hsd1.nm.comcast.net) (Read error: Connection reset by peer)
- # [05:24] * Quits: themiddleman_itv (~robot@97.75.189.62) (Quit: themiddleman_itv)
- # [05:25] * Joins: Orbitrix (Orbitrix@c-68-35-88-96.hsd1.nm.comcast.net)
- # [05:28] * Quits: kurtzhong (~kurtzhong@116.226.106.80) (Ping timeout: 276 seconds)
- # [05:32] * Joins: kurtzhong (~kurtzhong@li317-39.members.linode.com)
- # [05:36] * Joins: themiddleman_itv (~robot@c-71-199-11-248.hsd1.ut.comcast.net)
- # [05:36] * Parts: kevwil (~kevwil@c-67-161-153-2.hsd1.co.comcast.net) ("WeeChat 0.3.6")
- # [05:40] * cynicalj1y is now known as cynicaljoy
- # [05:41] * Joins: AnthonyCat (~AnthonyCa@CPE-58-175-28-253.mqdl1.lon.bigpond.net.au)
- # [05:42] <AnthonyCat> How can I check for contextmenu support, other than a /Firefox/.test(navigator.userAgent) ?
- # [05:50] <paul_irish_> 'oncontextmenu' in document.body
- # [05:50] <paul_irish_> aka look at modernizr's tests
- # [05:52] * Quits: webguynow (~webguynow@c-24-1-222-204.hsd1.il.comcast.net)
- # [06:02] * Quits: diogogmt (~kvirc@CPE0018396f5ec0-CM0012c99ea256.cpe.net.cable.rogers.com) (Quit: KVIrc 4.1.1 Equilibrium http://www.kvirc.net/)
- # [06:03] * Joins: JonathanNeal (~Jonathan@cpe-67-49-67-212.socal.res.rr.com)
- # [06:04] <JonathanNeal> hello
- # [06:08] * Joins: gavin_huang (~gravof@125.114.98.22)
- # [06:12] * Quits: SrPx (b1289521@gateway/web/freenode/ip.177.40.149.33) (Ping timeout: 245 seconds)
- # [06:13] * Joins: machine2 (~machine4@pool-74-111-197-200.lsanca.fios.verizon.net)
- # [06:14] * Joins: marcocarag (~marcocara@pool-72-80-94-176.nycmny.fios.verizon.net)
- # [06:14] * Quits: marcocarag (~marcocara@pool-72-80-94-176.nycmny.fios.verizon.net) (Client Quit)
- # [06:20] * Quits: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net) (Quit: Leaving)
- # [06:22] * Joins: grantg (~chatzilla@69.88.160.3)
- # [06:32] * Joins: brettgoulder (~textual@c-71-196-153-23.hsd1.co.comcast.net)
- # [06:40] * Joins: jamund (~jamund@c-174-52-214-161.hsd1.ut.comcast.net)
- # [06:41] * Quits: machine2 (~machine4@pool-74-111-197-200.lsanca.fios.verizon.net) (Ping timeout: 245 seconds)
- # [06:41] * Joins: dilvie (~chatzilla@c-50-131-97-22.hsd1.ca.comcast.net)
- # [06:42] * Joins: JonathanNeal1 (~Jonathan@cpe-67-49-67-212.socal.res.rr.com)
- # [06:42] * Joins: skylamer` (cgskylamer@78.90.213.55)
- # [06:42] * Quits: JonathanNeal (~Jonathan@cpe-67-49-67-212.socal.res.rr.com) (Disconnected by services)
- # [06:42] * JonathanNeal1 is now known as JonathanNeal
- # [06:42] * Quits: Conexion (~Phantom@50.46.234.2) (Ping timeout: 252 seconds)
- # [06:45] * Quits: jamund (~jamund@c-174-52-214-161.hsd1.ut.comcast.net) (Client Quit)
- # [06:45] * Joins: machine2 (~machine4@pool-74-111-197-200.lsanca.fios.verizon.net)
- # [06:46] * Quits: skylamer` (cgskylamer@78.90.213.55) (Remote host closed the connection)
- # [06:47] * Quits: machine2 (~machine4@pool-74-111-197-200.lsanca.fios.verizon.net) (Excess Flood)
- # [06:48] * Joins: pradeepbv (~pradeepbv@nat/yahoo/x-auqnxcdkkquvzjut)
- # [06:48] * Joins: machine2 (~machine4@pool-74-111-197-200.lsanca.fios.verizon.net)
- # [06:49] * Joins: niloy_ (~niloy@61.12.96.158)
- # [06:49] * Joins: niloy (~niloy@61.12.96.158)
- # [06:50] * Joins: srj55 (~Steve@d24-141-169-128.home.cgocable.net)
- # [07:00] * Joins: machine1 (~gfdffdfd@pool-74-111-197-200.lsanca.fios.verizon.net)
- # [07:00] * Quits: techrush (~techrush@cpe-76-175-29-57.socal.res.rr.com) (Ping timeout: 248 seconds)
- # [07:02] * Joins: LongBeach (~mike@AFontenayssB-152-1-47-245.w83-114.abo.wanadoo.fr)
- # [07:08] * Joins: Reite (~chris@213.109-247-20.customer.lyse.net)
- # [07:09] * Quits: brettgoulder (~textual@c-71-196-153-23.hsd1.co.comcast.net) (Quit: Textual IRC Client: http://www.textualapp.com/)
- # [07:12] * Quits: muddo (~muddo@gateway/tor-sasl/muddo) (Ping timeout: 276 seconds)
- # [07:13] * Quits: welly (~welly@unaffiliated/welly) (Quit: Computer has gone to sleep.)
- # [07:14] * Quits: kurtzhong (~kurtzhong@li317-39.members.linode.com) (Ping timeout: 260 seconds)
- # [07:15] * Quits: ericbarnes (~ericbarne@cpe-075-181-047-014.carolina.res.rr.com) (Quit: Textual IRC Client: http://www.textualapp.com/)
- # [07:19] * Quits: Vennril (~vennril@p4FCB0952.dip0.t-ipconnect.de) (Quit: Nettalk6 - www.ntalk.de)
- # [07:19] * Quits: caasiHuang (~caasiHuan@59-126-203-62.HINET-IP.hinet.net) (Remote host closed the connection)
- # [07:19] * Joins: shwetank (~shwetank@122.173.44.219)
- # [07:26] * Joins: muddo (~muddo@gateway/tor-sasl/muddo)
- # [07:28] * Joins: c_t_montgomery (~c_t_montg@75.77.185.82.nw.nuvox.net)
- # [07:30] * Joins: kurtzhong (~kurtzhong@116.226.96.69)
- # [07:31] * Quits: kadiks (~kadiks@APuteaux-652-1-109-115.w90-2.abo.wanadoo.fr) (Quit: Leaving)
- # [07:31] * Quits: kurtzhong (~kurtzhong@116.226.96.69) (Remote host closed the connection)
- # [07:32] * Joins: kurtzhong (~kurtzhong@116.226.96.69)
- # [07:33] * Quits: miketaylr (~miketaylr@cpe-68-203-0-108.austin.res.rr.com) (Quit: Leaving...)
- # [07:34] * Joins: kurtzhong_ (~kurtzhong@116.226.96.69)
- # [07:35] * Quits: kurtzhong_ (~kurtzhong@116.226.96.69) (Client Quit)
- # [07:36] * Quits: kurtzhong (~kurtzhong@116.226.96.69) (Ping timeout: 255 seconds)
- # [07:37] * Joins: venom00ut (~venom00@net-188-218-175-19.cust.dsl.vodafone.it)
- # [07:37] * Quits: venom00ut (~venom00@net-188-218-175-19.cust.dsl.vodafone.it) (Changing host)
- # [07:37] * Joins: venom00ut (~venom00@unaffiliated/venom00)
- # [07:40] * Quits: silky (~silky@pool-74-108-142-22.nycmny.fios.verizon.net) (Ping timeout: 276 seconds)
- # [07:44] * Joins: caasiHuang (~caasiHuan@59-126-203-62.HINET-IP.hinet.net)
- # [07:49] * Joins: tylerstalder (~tylerstal@c-76-21-12-194.hsd1.ca.comcast.net)
- # [07:53] * Joins: jochen___ (jochen@nat/google/x-oivuqdwawdlqkeca)
- # [07:55] * Quits: ZeepZop (~chatzilla@cpe-75-84-90-74.socal.res.rr.com) (Quit: ChatZilla 0.9.88 [Firefox 10.0.2/20120216101208])
- # [07:55] <paul_irish_> my my http://www.html5accessibility.com/HTML5ASS/
- # [07:56] * Joins: silky (~silky@pool-74-108-142-22.nycmny.fios.verizon.net)
- # [07:56] <grantg> lol
- # [07:57] <paul_irish_> sup grantg
- # [07:57] * paul_irish_ is now known as paul_irish
- # [07:57] * Quits: jochen__ (jochen@nat/google/x-zexrjtpxeqwgtmsw) (Ping timeout: 260 seconds)
- # [07:57] * jochen___ is now known as jochen__
- # [07:57] <grantg> I herd you liek shitty lcd blur emulation, so https://github.com/grantgalitz/GameBoy-Online/commit/7b4b8e42f5f153486703db70cebc41f8fcc55a1f
- # [07:57] <socialhapy> ★ Commit on GameBoy-Online by grantgalitz (31m, 20s ago): Emulating LCD blur of real gameboys by doing manual blending with the last internal frame generated.
- # [07:58] <paul_irish> hahahahah whoa
- # [07:58] <grantg> So you get that blur emulation that an actual gameboy does
- # [07:58] <paul_irish> that's fantastic.
- # [07:58] <grantg> Since a gameboy has a really really shitty lcd
- # [07:59] * Quits: hober (~ted@unaffiliated/hober) (Read error: Connection reset by peer)
- # [07:59] <grantg> paul_irish: I wonder if V8 optimizes for that right shift 1
- # [07:59] * Joins: hober (~ted@unaffiliated/hober)
- # [07:59] <grantg> That's a trick for lossy divide by two
- # [07:59] <grantg> Also to force to int
- # [08:00] <AnthonyCat> Thanks paul_irish_.
- # [08:02] * Joins: Ducki (~Ducki@pD9E39439.dip0.t-ipconnect.de)
- # [08:03] <grantg> I probably should allow the user to specify a blend % between 0 and 50
- # [08:03] <grantg> Rather than assume 50
- # [08:06] * Joins: pinage404 (~pinage404@APuteaux-651-1-146-147.w92-154.abo.wanadoo.fr)
- # [08:09] * Joins: SrPx (b1289521@gateway/web/freenode/ip.177.40.149.33)
- # [08:09] <SrPx> why I'm losing my PNG's alpha channel when using <img src="myimg.png">?
- # [08:09] * Parts: JonathanNeal (~Jonathan@cpe-67-49-67-212.socal.res.rr.com)
- # [08:10] <grantg> What browser?
- # [08:10] <grantg> Please don't say IE
- # [08:10] <grantg> Or I'll kill you
- # [08:11] <grantg> personally
- # [08:11] <SrPx> firefox man
- # [08:11] <grantg> heh
- # [08:11] <SrPx> 10.0.2
- # [08:11] <grantg> you shouldn't
- # [08:11] <SrPx> weird
- # [08:13] * Joins: milky (~silky@pool-74-108-142-22.nycmny.fios.verizon.net)
- # [08:14] * Parts: AnthonyCat (~AnthonyCa@CPE-58-175-28-253.mqdl1.lon.bigpond.net.au)
- # [08:14] * Quits: themiddleman_itv (~robot@c-71-199-11-248.hsd1.ut.comcast.net) (Quit: themiddleman_itv)
- # [08:14] * Joins: AnthonyCat (~AnthonyCa@CPE-58-175-28-253.mqdl1.lon.bigpond.net.au)
- # [08:15] * Quits: machine2 (~machine4@pool-74-111-197-200.lsanca.fios.verizon.net) (Quit: : http://www.beta.facefox.com/index.php?do=/user/register/)
- # [08:16] * Joins: roel (~quassel@d54C236E3.access.telenet.be)
- # [08:17] * Joins: machine2 (~machine4@pool-74-111-197-200.lsanca.fios.verizon.net)
- # [08:17] * Quits: silky (~silky@pool-74-108-142-22.nycmny.fios.verizon.net) (Ping timeout: 276 seconds)
- # [08:17] * Joins: gyzmodo (x@89.146.123.168)
- # [08:19] * Quits: milky (~silky@pool-74-108-142-22.nycmny.fios.verizon.net) (Ping timeout: 276 seconds)
- # [08:19] * Joins: milky (~silky@pool-74-108-142-22.nycmny.fios.verizon.net)
- # [08:24] * Quits: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Ping timeout: 244 seconds)
- # [08:28] * Quits: thatryan (~thatryan@c-24-7-104-15.hsd1.ca.comcast.net) (Quit: Leaving...)
- # [08:29] * Quits: machine2 (~machine4@pool-74-111-197-200.lsanca.fios.verizon.net) (Quit: : http://www.beta.facefox.com/index.php?do=/user/register/)
- # [08:32] * Quits: Luxx_ (~highoh@c-67-171-35-186.hsd1.wa.comcast.net)
- # [08:34] * Joins: dirkpennings (~dirkpenni@90-145-26-140.bbserv.nl)
- # [08:37] * Quits: Reite (~chris@213.109-247-20.customer.lyse.net) (Ping timeout: 246 seconds)
- # [08:39] * Quits: srj55 (~Steve@d24-141-169-128.home.cgocable.net) (Ping timeout: 252 seconds)
- # [08:41] * Quits: sw0rdfish (~Johnson@unaffiliated/robinux) (Ping timeout: 260 seconds)
- # [08:46] * Joins: sw0rdfish (~Johnson@unaffiliated/robinux)
- # [08:47] * Quits: dilvie (~chatzilla@c-50-131-97-22.hsd1.ca.comcast.net) (Ping timeout: 272 seconds)
- # [08:51] * Joins: markkes (~markkes@195.222.119.123)
- # [08:55] * Joins: mh0 (MH0@unaffiliated/mh0)
- # [08:56] * Quits: machine1 (~gfdffdfd@pool-74-111-197-200.lsanca.fios.verizon.net) (Ping timeout: 255 seconds)
- # [08:57] * Joins: machine1 (~gfdffdfd@pool-74-111-197-200.lsanca.fios.verizon.net)
- # [09:01] * Joins: Shusshu (~shu@ip51cd1542.speed.planet.nl)
- # [09:03] * Joins: necolas (~necolas@5e0c715f.bb.sky.com)
- # [09:08] * Joins: Trisox (~Trisox@dw87236798.amsterdam-tc.dataweb.net)
- # [09:11] * Joins: astearns_ (~astearns@192.150.22.5)
- # [09:11] * Quits: astearns (~astearns@192.150.22.5) (Ping timeout: 265 seconds)
- # [09:11] * astearns_ is now known as astearns
- # [09:13] * Joins: odinswand (~odinswand@27-32-234-171.static.tpgi.com.au)
- # [09:13] * Joins: myakura (~myakura@FL1-110-233-178-43.tky.mesh.ad.jp)
- # [09:13] * Quits: tylerstalder (~tylerstal@c-76-21-12-194.hsd1.ca.comcast.net) (Quit: Computer has gone to sleep.)
- # [09:14] * Quits: gnarf (~gnarf@unaffiliated/gnarf) (Ping timeout: 252 seconds)
- # [09:16] * Quits: kborchers (~kborchers@unaffiliated/kborchers) (Ping timeout: 240 seconds)
- # [09:19] * Quits: necolas (~necolas@5e0c715f.bb.sky.com) (Remote host closed the connection)
- # [09:20] * Joins: tantek (~tantek@70-36-139-112.dsl.dynamic.sonic.net)
- # [09:21] * Joins: kevindougans (~kevindoug@106.Red-213-96-89.staticIP.rima-tde.net)
- # [09:22] * Joins: deasy (~deasy@85.201.207.128)
- # [09:23] * Quits: dyamanoha (~dyamanoha@c-76-104-240-3.hsd1.wa.comcast.net) (Ping timeout: 248 seconds)
- # [09:25] * Joins: kevindougans_ (~kevindoug@95.60.152.43)
- # [09:26] * Quits: kevindougans (~kevindoug@106.Red-213-96-89.staticIP.rima-tde.net) (Ping timeout: 276 seconds)
- # [09:26] * kevindougans_ is now known as kevindougans
- # [09:29] * Quits: grantg (~chatzilla@69.88.160.3) (Ping timeout: 255 seconds)
- # [09:30] * Quits: abraxas (~abraxas@113x33x180x18.ap113.ftth.ucom.ne.jp)
- # [09:31] * Quits: kevindougans (~kevindoug@95.60.152.43) (Read error: Connection reset by peer)
- # [09:31] * Joins: kevindougans_ (~kevindoug@95.60.152.43)
- # [09:31] * Quits: venom00ut (~venom00@unaffiliated/venom00) (Ping timeout: 265 seconds)
- # [09:31] * Joins: grantg (~chatzilla@69.88.160.3)
- # [09:32] * Joins: venom00ut (~venom00@unaffiliated/venom00)
- # [09:33] * Joins: glcrazy (~SiRiuS@79.119.94.207)
- # [09:34] * Quits: kevindougans_ (~kevindoug@95.60.152.43) (Read error: Connection reset by peer)
- # [09:35] * Joins: kevindougans (~kevindoug@95.60.152.43)
- # [09:35] * Quits: kevindougans (~kevindoug@95.60.152.43) (Client Quit)
- # [09:37] * Joins: tiglog (~topeak@117.79.233.194)
- # [09:38] * Quits: gnarf_ (~gnarf@unaffiliated/gnarf) (Quit: ZNC - http://znc.sourceforge.net)
- # [09:38] * Quits: kborchers_ (~kborchers@unaffiliated/kborchers) (Quit: ZNC - http://znc.sourceforge.net)
- # [09:38] * Quits: tiglog (~topeak@117.79.233.194) (Max SendQ exceeded)
- # [09:38] * Quits: grantg (~chatzilla@69.88.160.3) (Quit: ChatZilla 0.9.88 [Firefox 10.0.2/20120215223356])
- # [09:39] * Joins: tiglog (~topeak@118.186.129.186)
- # [09:42] * Joins: gnarf (~gnarf@unaffiliated/gnarf)
- # [09:43] * Joins: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [09:45] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Client Quit)
- # [09:45] * Joins: kborchers (~kborchers@unaffiliated/kborchers)
- # [09:52] * Joins: whitman (whitman@itsad-034.its.dur.ac.uk)
- # [09:52] * Joins: Jonadabe (~Jonadabe@bl5-183-202.dsl.telepac.pt)
- # [09:52] * Quits: cmw (cmw@c-76-108-152-196.hsd1.fl.comcast.net) (Ping timeout: 260 seconds)
- # [09:53] * Joins: gasbakid (~gasbakid@41.96.11.65)
- # [09:57] * Joins: xec (~xec@188.95.241.142)
- # [09:57] * Quits: xec (~xec@188.95.241.142) (Remote host closed the connection)
- # [09:57] * Joins: xec (~xec@2a00:10b0:1:1002:5ab0:35ff:fef8:6a01)
- # [10:03] * Joins: robhawkes (~robhawkes@188-220-16-96.dsl.cnl.uk.net)
- # [10:03] * Joins: BigKing (~BigKing@dslb-088-076-064-152.pools.arcor-ip.net)
- # [10:03] * Joins: andrewjbaker (~ajb@host-78-149-107-141.as13285.net)
- # [10:06] * Quits: whitman (whitman@itsad-034.its.dur.ac.uk)
- # [10:15] * Joins: howlymowly (~quassel@tubsat.fb12.tu-berlin.de)
- # [10:16] * Quits: patcito (~123@190.42.21.183) (Read error: Connection reset by peer)
- # [10:16] * Joins: whitman (whitman@itsad-034.its.dur.ac.uk)
- # [10:16] * Joins: manuchill (~mstalfoor@83.232.96.217)
- # [10:22] * Joins: Shahor (~Shahor@78.109.80.22)
- # [10:22] * Joins: drublic (~drublic@pd95c0c71.dip0.t-ipconnect.de)
- # [10:24] * Joins: nathanstaines (~nathansta@217.205.197.194)
- # [10:24] * Quits: manuchill (~mstalfoor@83.232.96.217) (Quit: Ex-Chat)
- # [10:27] * Quits: devongovett (~devongove@pcp038545pcs.morro.reshall.calpoly.edu) (Quit: devongovett)
- # [10:29] * Joins: manuchill (~mstalfoor@83.232.96.217)
- # [10:29] * Quits: pinage404 (~pinage404@APuteaux-651-1-146-147.w92-154.abo.wanadoo.fr) (Read error: Connection reset by peer)
- # [10:30] * Quits: Stava (~Stava@h-86-113.a197.priv.bahnhof.se) (Remote host closed the connection)
- # [10:31] * Quits: pradeepbv (~pradeepbv@nat/yahoo/x-auqnxcdkkquvzjut) (Quit: pradeepbv)
- # [10:32] * Quits: AnthonyCat (~AnthonyCa@CPE-58-175-28-253.mqdl1.lon.bigpond.net.au) (Quit: AnthonyCat)
- # [10:33] * Joins: JakeA (~Adium@93-97-17-15.zone5.bethere.co.uk)
- # [10:37] * Quits: tiglog (~topeak@118.186.129.186) (Quit: Leaving)
- # [10:38] * Joins: Ms2ger (~Ms2ger@91.181.184.71)
- # [10:38] * Joins: axos411 (~axos@xdsl-78-35-181-175.netcologne.de)
- # [10:40] * Quits: axos411 (~axos@xdsl-78-35-181-175.netcologne.de) (Client Quit)
- # [10:43] * Quits: dephex (~dddd@CPE-65-31-112-81.wi.res.rr.com) (Ping timeout: 245 seconds)
- # [10:44] * Quits: paul4 (~Paul@186.214.130.14) (Quit: Leaving.)
- # [10:44] * Quits: niloy (~niloy@61.12.96.158) (Ping timeout: 246 seconds)
- # [10:45] * Quits: niloy_ (~niloy@61.12.96.158) (Ping timeout: 260 seconds)
- # [10:45] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: Nice Scotty, now beam my clothes up too!)
- # [10:46] * Parts: manuchill (~mstalfoor@83.232.96.217) ("Ex-Chat")
- # [10:46] * Quits: BigKing (~BigKing@dslb-088-076-064-152.pools.arcor-ip.net) (Remote host closed the connection)
- # [10:50] * Joins: vit0 (~textual@cha92-16-88-182-96-217.fbx.proxad.net)
- # [10:51] * Joins: necolas (~necolas@109.231.202.66)
- # [10:57] * Joins: johnoxton (~johnoxton@nat/canonical/x-uoutqxwhokvvfqdj)
- # [10:58] * Joins: kas187 (~kas187@exchange-02.abasoft.co.uk)
- # [11:08] * Quits: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net) (Remote host closed the connection)
- # [11:12] * Quits: johnoxton (~johnoxton@nat/canonical/x-uoutqxwhokvvfqdj) (Read error: Connection reset by peer)
- # [11:12] * Quits: SrPx (b1289521@gateway/web/freenode/ip.177.40.149.33) (Ping timeout: 245 seconds)
- # [11:12] * Joins: johnoxton (~johnoxton@nat/canonical/x-cwsdzyaeevvwhcnp)
- # [11:12] * Quits: chayin (quassel@nat/nokia/x-ghjdharherexufhw) (Quit: No Ping reply in 180 seconds.)
- # [11:13] * Joins: chayin (quassel@nat/nokia/x-jemovdfmypkmgeez)
- # [11:16] * Joins: nonge_ (~nonge@p5082B207.dip.t-dialin.net)
- # [11:17] * Joins: niloy (~niloy@61.12.96.158)
- # [11:17] * Joins: zeppo (~zeppo@c-6e90e255.04-4-64736c14.cust.bredbandsbolaget.se)
- # [11:18] * Joins: niloy_ (~niloy@61.12.96.158)
- # [11:19] * Quits: vit0 (~textual@cha92-16-88-182-96-217.fbx.proxad.net) (Quit: Textual IRC Client: http://www.textualapp.com/)
- # [11:20] * Quits: nonge (~nonge@p5082B5FC.dip.t-dialin.net) (Ping timeout: 260 seconds)
- # [11:22] * Joins: louisremi (~louisremi@mon69-3-87-90-54-237.dsl.sta.abo.bbox.fr)
- # [11:22] * Joins: vit0 (~textual@cha92-16-88-182-96-217.fbx.proxad.net)
- # [11:23] * Quits: drublic (~drublic@pd95c0c71.dip0.t-ipconnect.de) (Remote host closed the connection)
- # [11:27] * Quits: Shusshu (~shu@ip51cd1542.speed.planet.nl)
- # [11:39] * Joins: sedovsek (~robert.se@93-103-104-107.dynamic.t-2.net)
- # [11:43] * Joins: Stava (~Stava@h-86-113.a197.priv.bahnhof.se)
- # [11:45] * Quits: louisremi (~louisremi@mon69-3-87-90-54-237.dsl.sta.abo.bbox.fr) (Read error: Operation timed out)
- # [11:51] * Joins: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [11:52] * Quits: vit0 (~textual@cha92-16-88-182-96-217.fbx.proxad.net) (Quit: Textual IRC Client: http://www.textualapp.com/)
- # [12:02] * Joins: Acry (~Carsten@p57ADBBB9.dip.t-dialin.net)
- # [12:02] * Parts: Acry (~Carsten@p57ADBBB9.dip.t-dialin.net)
- # [12:02] * Joins: rickibalboa (~ricki@84.19.108.75)
- # [12:03] * Quits: shwetank (~shwetank@122.173.44.219) (Quit: Leaving...)
- # [12:08] * Joins: shwetank (~shwetank@122.173.44.219)
- # [12:10] * Quits: shwetank (~shwetank@122.173.44.219) (Client Quit)
- # [12:11] * Joins: louisremi (~louisremi@mon69-3-87-90-54-237.dsl.sta.abo.bbox.fr)
- # [12:12] * Quits: zampano (~zampano@unaffiliated/zampano) (Ping timeout: 260 seconds)
- # [12:12] * Joins: Behi (~textual@CPE-124-176-170-167.lns2.win.bigpond.net.au)
- # [12:18] * Quits: johnoxton (~johnoxton@nat/canonical/x-cwsdzyaeevvwhcnp) (Read error: Connection reset by peer)
- # [12:18] * Joins: plh (~plh@209-6-123-224.c3-0.arl-ubr1.sbo-arl.ma.cable.rcn.com)
- # [12:18] * Joins: johnoxton (~johnoxton@nat/canonical/x-vpwngeoytltjcheg)
- # [12:20] * Quits: coeus_ (~coeus@dslb-084-061-033-126.pools.arcor-ip.net) (Quit: Verlassend)
- # [12:22] * Joins: andr3 (~andr3@194.65.5.235)
- # [12:23] * Quits: dgathright (~dgathrigh@CPE-75-81-131-0.wi.res.rr.com) (Quit: dgathright)
- # [12:25] * Joins: zampano (~zampano@unaffiliated/zampano)
- # [12:26] * Joins: pinage404 (~pinage404@APuteaux-651-1-146-147.w92-154.abo.wanadoo.fr)
- # [12:29] * Joins: axos411 (~axos@xdsl-78-35-181-175.netcologne.de)
- # [12:30] * Quits: pinage404 (~pinage404@APuteaux-651-1-146-147.w92-154.abo.wanadoo.fr) (Remote host closed the connection)
- # [12:33] * Joins: pinage404 (~pinage404@APuteaux-651-1-146-147.w92-154.abo.wanadoo.fr)
- # [12:34] * Quits: ColKurtz (~ColKurtz@pool-108-23-5-233.lsanca.fios.verizon.net) (Read error: Connection reset by peer)
- # [12:34] * Joins: ColKurtz (~ColKurtz@pool-108-23-5-233.lsanca.fios.verizon.net)
- # [12:42] * Joins: skylamer` (cgskylamer@78.90.213.55)
- # [12:45] * Joins: obert- (~obert@host99-207-dynamic.1-87-r.retail.telecomitalia.it)
- # [12:46] * Quits: Jonadabe (~Jonadabe@bl5-183-202.dsl.telepac.pt) (Ping timeout: 252 seconds)
- # [12:46] * Joins: Jonadabe (~Jonadabe@bl5-183-202.dsl.telepac.pt)
- # [12:51] * Joins: keithclarkcouk (~keithclar@84.19.53.21)
- # [12:54] * Quits: howlymowly (~quassel@tubsat.fb12.tu-berlin.de) (Remote host closed the connection)
- # [12:55] * Joins: gasbakid__ (~gasbakid@41.96.127.227)
- # [12:56] * Quits: robhawkes (~robhawkes@188-220-16-96.dsl.cnl.uk.net) (Quit: Linkinus - http://linkinus.com)
- # [12:56] * Quits: gasbakid (~gasbakid@41.96.11.65) (Ping timeout: 276 seconds)
- # [13:08] * Joins: kevindougans (~kevindoug@106.Red-213-96-89.staticIP.rima-tde.net)
- # [13:10] * Quits: Ducki (~Ducki@pD9E39439.dip0.t-ipconnect.de) (Read error: Connection reset by peer)
- # [13:12] * Joins: cccaldas (~cccaldas@186.212.125.35)
- # [13:13] * Quits: odinswand (~odinswand@27-32-234-171.static.tpgi.com.au)
- # [13:13] * Joins: g105b (~g105b@cpc3-derb14-2-0-cust187.8-3.cable.virginmedia.com)
- # [13:18] * Parts: pinage404 (~pinage404@APuteaux-651-1-146-147.w92-154.abo.wanadoo.fr) ("Screw you guys I'm going home")
- # [13:18] * Joins: robhawkes (~robhawkes@188-220-16-96.dsl.cnl.uk.net)
- # [13:18] * Quits: clouder`grr (nospam@cpe-24-242-30-84.elp.res.rr.com) (Ping timeout: 244 seconds)
- # [13:23] * Quits: davidbanham (~davidbanh@95.27.233.220.static.exetel.com.au) (Read error: Connection reset by peer)
- # [13:23] * Joins: davidbanham (~davidbanh@95.27.233.220.static.exetel.com.au)
- # [13:25] * Quits: cccaldas (~cccaldas@186.212.125.35) (Ping timeout: 260 seconds)
- # [13:26] * Quits: dirkpennings (~dirkpenni@90-145-26-140.bbserv.nl) (Ping timeout: 244 seconds)
- # [13:38] * Joins: pinage404 (~pinage404@APuteaux-651-1-146-147.w92-154.abo.wanadoo.fr)
- # [13:39] * Joins: Jon47 (~Adium@pool-74-96-160-56.washdc.fios.verizon.net)
- # [13:45] * Joins: stndoostds (~vineela@24-241-231-17.dhcp.mdsn.wi.charter.com)
- # [13:46] * Joins: philipvonbargen (~philipvon@gw.sinnerschrader.de)
- # [13:47] * Joins: sarro (~sarro@i5E865FEB.versanet.de)
- # [13:48] * Quits: stndoostds (~vineela@24-241-231-17.dhcp.mdsn.wi.charter.com) (Client Quit)
- # [13:53] * Joins: Rickih (~user1@84.19.108.75)
- # [13:55] * Quits: axos411 (~axos@xdsl-78-35-181-175.netcologne.de) (Ping timeout: 246 seconds)
- # [13:56] * Quits: necolas (~necolas@109.231.202.66) (Ping timeout: 276 seconds)
- # [13:57] * Quits: sarro (~sarro@i5E865FEB.versanet.de) (Ping timeout: 248 seconds)
- # [13:58] * Joins: sarro (~sarro@i5E865FEB.versanet.de)
- # [13:58] * Joins: erichynds (~ehynds@venkman.brightcove.com)
- # [13:58] * Joins: pexite (~pexite@hyp-p-106.pabianice.msk.pl)
- # [13:59] * Joins: necolas (~necolas@109.231.202.66)
- # [14:04] * Joins: gimi (~gimi@14.161.10.85)
- # [14:05] * Quits: necolas (~necolas@109.231.202.66) (Ping timeout: 248 seconds)
- # [14:06] * Joins: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl)
- # [14:07] * Joins: axos411 (~axos@xdsl-78-35-181-175.netcologne.de)
- # [14:10] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:10] * Joins: bendman (~bendman@pool-108-48-103-170.washdc.fios.verizon.net)
- # [14:11] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:11] * Quits: tantek (~tantek@70-36-139-112.dsl.dynamic.sonic.net) (Read error: Connection reset by peer)
- # [14:11] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:11] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:11] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:11] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:11] * Joins: tantek (~tantek@70-36-139-112.dsl.dynamic.sonic.net)
- # [14:11] * Quits: louisremi (~louisremi@mon69-3-87-90-54-237.dsl.sta.abo.bbox.fr) (Read error: Operation timed out)
- # [14:12] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:12] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:12] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:12] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:12] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:13] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Excess Flood)
- # [14:14] * Joins: Nathandim (~textual@ppp-2-84-19-33.home.otenet.gr)
- # [14:15] * Joins: necolas (~necolas@109.231.202.66)
- # [14:16] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:16] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:17] * Quits: GhostFreeman (~GhostFree@c-24-98-246-138.hsd1.ga.comcast.net) (Quit: Not here, will respond later)
- # [14:17] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:17] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:21] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:22] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:23] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:23] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:23] * Parts: pinage404 (~pinage404@APuteaux-651-1-146-147.w92-154.abo.wanadoo.fr) ("Screw you guys I'm going home")
- # [14:24] * Joins: ericbarnes (~ericbarne@cpe-075-181-047-014.carolina.res.rr.com)
- # [14:24] * Joins: Armen_ (~armen@dsl-69-171-154-4.acanac.net)
- # [14:25] * Quits: gyzmodo (x@89.146.123.168) (Read error: Connection reset by peer)
- # [14:25] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:26] * Joins: gyzmodo (x@89.146.123.168)
- # [14:26] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:26] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:26] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:27] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:27] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:27] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:27] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:27] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:27] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:29] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:30] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:34] * Joins: digitalfiz (~fiz@unaffiliated/digitalfiz)
- # [14:34] * Quits: Rickih (~user1@84.19.108.75) (Remote host closed the connection)
- # [14:35] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:35] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:36] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:36] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:36] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:36] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:38] * Quits: g105b (~g105b@cpc3-derb14-2-0-cust187.8-3.cable.virginmedia.com) (Quit: I wonder what this button does?)
- # [14:38] * Quits: keithclarkcouk (~keithclar@84.19.53.21) (Remote host closed the connection)
- # [14:41] * Joins: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net)
- # [14:44] * Joins: gliese581 (~ManOnTheM@81.202.113.56.dyn.user.ono.com)
- # [14:50] * Joins: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [14:50] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:50] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:51] * Joins: v0yager (~v0yager@75-130-82-139.static.kgpt.tn.charter.com)
- # [14:51] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:51] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:52] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:53] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:54] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [14:54] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [14:54] * Joins: cmw (~cmw@c-76-108-152-196.hsd1.fl.comcast.net)
- # [14:55] * Quits: rickibalboa (~ricki@84.19.108.75) (Ping timeout: 240 seconds)
- # [14:55] * Joins: carminec (~user@194-73-252-216.dsl.colba.net)
- # [14:55] * Joins: Jp100 (~user@87.113.184.203)
- # [15:00] * Joins: cloudpopup (hidden-use@ns.netset.se)
- # [15:00] * Quits: v0yager (~v0yager@75-130-82-139.static.kgpt.tn.charter.com) (Remote host closed the connection)
- # [15:01] * Joins: louisremi (~louisremi@mon69-3-87-90-54-237.dsl.sta.abo.bbox.fr)
- # [15:02] * Joins: shichuan (~Shi_Chuan@31.205.41.171)
- # [15:03] * Quits: plh (~plh@209-6-123-224.c3-0.arl-ubr1.sbo-arl.ma.cable.rcn.com) (Quit: always accept cookies)
- # [15:05] * Quits: venom00ut (~venom00@unaffiliated/venom00) (Read error: Connection reset by peer)
- # [15:06] * Joins: venom00ut (~venom00@net-188-218-175-19.cust.dsl.vodafone.it)
- # [15:06] * Quits: venom00ut (~venom00@net-188-218-175-19.cust.dsl.vodafone.it) (Changing host)
- # [15:06] * Joins: venom00ut (~venom00@unaffiliated/venom00)
- # [15:06] * Joins: shwetank (~shwetank@122.173.44.219)
- # [15:07] * Quits: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net) (Ping timeout: 276 seconds)
- # [15:07] * Quits: bendman (~bendman@pool-108-48-103-170.washdc.fios.verizon.net) (Quit: bendman)
- # [15:11] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [15:11] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [15:11] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [15:11] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [15:11] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [15:11] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [15:12] * Joins: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com)
- # [15:12] * Joins: BigKing (~BigKing@dslb-088-076-064-152.pools.arcor-ip.net)
- # [15:13] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [15:16] * Joins: vit0 (~textual@81.80.168.47)
- # [15:17] * Quits: gimi (~gimi@14.161.10.85) (Quit: gimi)
- # [15:18] * Joins: axos4111 (~axos@xdsl-78-35-160-211.netcologne.de)
- # [15:18] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [15:19] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [15:19] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [15:19] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [15:19] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [15:20] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [15:20] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [15:20] * Quits: venom00ut (~venom00@unaffiliated/venom00) (Read error: Connection reset by peer)
- # [15:20] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [15:20] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [15:20] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [15:21] * Quits: axos411 (~axos@xdsl-78-35-181-175.netcologne.de) (Ping timeout: 252 seconds)
- # [15:21] * Joins: venom00ut (~venom00@net-188-218-175-19.cust.dsl.vodafone.it)
- # [15:21] * Quits: venom00ut (~venom00@net-188-218-175-19.cust.dsl.vodafone.it) (Changing host)
- # [15:21] * Joins: venom00ut (~venom00@unaffiliated/venom00)
- # [15:21] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Read error: Connection reset by peer)
- # [15:25] * Joins: scottkellum (~scottkell@207.239.55.34)
- # [15:25] * Joins: chriseppstein (~chrisepps@99-6-85-4.lightspeed.sntcca.sbcglobal.net)
- # [15:26] * Quits: niloy_ (~niloy@61.12.96.158) (Ping timeout: 245 seconds)
- # [15:26] * Joins: wesleyhales (~wesleyhal@c-98-252-148-52.hsd1.ga.comcast.net)
- # [15:26] * Quits: niloy (~niloy@61.12.96.158) (Ping timeout: 260 seconds)
- # [15:27] * Quits: kevindougans (~kevindoug@106.Red-213-96-89.staticIP.rima-tde.net) (Quit: kevindougans)
- # [15:31] * Joins: niloy (~niloy@61.12.96.158)
- # [15:31] * Joins: niloy_ (~niloy@61.12.96.158)
- # [15:35] * Quits: carminec (~user@194-73-252-216.dsl.colba.net) (Ping timeout: 260 seconds)
- # [15:40] * Joins: carminec (~user@216.252.69.225)
- # [15:44] * Joins: devmikey (~irc@unaffiliated/devmikey)
- # [15:47] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Quit: i love javascript and webgl. see http://pacmaze.com)
- # [15:48] * Quits: vit0 (~textual@81.80.168.47) (Ping timeout: 244 seconds)
- # [15:49] * Joins: sphinxxx (~sphinxxx@pool-74-102-8-51.nwrknj.fios.verizon.net)
- # [15:49] * Joins: rodfersou (bb3e080a@gateway/web/freenode/ip.187.62.8.10)
- # [15:51] * Joins: Jackneill (~Jackneill@unaffiliated/jackneill)
- # [15:53] * Quits: c_t_montgomery (~c_t_montg@75.77.185.82.nw.nuvox.net) (Remote host closed the connection)
- # [15:56] * Quits: cmw (~cmw@c-76-108-152-196.hsd1.fl.comcast.net) (Ping timeout: 244 seconds)
- # [15:57] * Joins: bribroder (~bribroder@unaffiliated/bribroder)
- # [15:57] * Quits: DeLorean731 (~X@mx01.simtekfence.com) (Read error: Connection reset by peer)
- # [15:58] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [15:59] * Joins: DeLorean731 (~X@mx01.simtekfence.com)
- # [15:59] * Quits: DeLorean731 (~X@mx01.simtekfence.com) (Excess Flood)
- # [15:59] * Joins: DeLorean731 (~X@mx01.simtekfence.com)
- # [15:59] * Quits: DeLorean731 (~X@mx01.simtekfence.com) (Excess Flood)
- # [15:59] * Joins: DeLorean731 (~X@mx01.simtekfence.com)
- # [15:59] * Quits: DeLorean731 (~X@mx01.simtekfence.com) (Excess Flood)
- # [16:00] * Joins: DeLorean731 (~X@mx01.simtekfence.com)
- # [16:00] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [16:01] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [16:01] * Parts: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [16:02] * Joins: cmw (~cmw@vpn.openpeak.com)
- # [16:02] * cmw is now known as Guest5482
- # [16:03] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [16:03] * Quits: gavin_huang (~gravof@125.114.98.22) (Quit: Leaving)
- # [16:04] * Joins: gavin_huang (~gravof@125.114.98.22)
- # [16:05] * Joins: randomubuntuguy (~randomubu@cpe-066-057-080-255.nc.res.rr.com)
- # [16:05] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [16:05] * Quits: gavin_huang (~gravof@125.114.98.22) (Client Quit)
- # [16:06] * Joins: gavin_huang (~gravof@125.114.98.22)
- # [16:07] * Joins: Vennril (~vennril@p4FCB0952.dip0.t-ipconnect.de)
- # [16:08] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [16:09] * Joins: themiddleman_itv (~robot@c-71-199-11-248.hsd1.ut.comcast.net)
- # [16:10] * Quits: gavin_huang (~gravof@125.114.98.22) (Read error: Connection reset by peer)
- # [16:10] * Joins: gavinsmit (~gavinsmit@CPEe05fb90cc8fb-CM00222ddfdbcd.cpe.net.cable.rogers.com)
- # [16:11] * Joins: gavin_huang (~gravof@206.253.164.145)
- # [16:11] * Quits: gavin_huang (~gravof@206.253.164.145) (Client Quit)
- # [16:13] * Joins: v0yager (~v0yager@bordm.com)
- # [16:15] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [16:16] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [16:16] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [16:17] * Quits: v0yager (~v0yager@bordm.com) (Remote host closed the connection)
- # [16:17] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [16:17] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [16:17] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [16:17] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [16:17] * Joins: v0yager (~v0yager@75-130-82-139.static.kgpt.tn.charter.com)
- # [16:17] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [16:17] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [16:18] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [16:18] * Joins: gavin_huang (~gravof@125.114.98.22)
- # [16:18] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [16:18] * Quits: monteslu (~monteslu@ip68-109-174-213.ph.ph.cox.net) (Read error: Operation timed out)
- # [16:19] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [16:20] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [16:22] * Quits: nathanstaines (~nathansta@217.205.197.194) (Quit: Linkinus - http://linkinus.com)
- # [16:22] * Quits: v0yager (~v0yager@75-130-82-139.static.kgpt.tn.charter.com) (Ping timeout: 276 seconds)
- # [16:22] * Joins: fdhsfdsgdsg (~ghkhghffd@117.3.195.94)
- # [16:24] * Quits: fdhsfdsgdsg (~ghkhghffd@117.3.195.94) (K-Lined)
- # [16:24] * Joins: marmalade (~G-A-B-E-N@142.68.77.10)
- # [16:24] * Quits: gavin_huang (~gravof@125.114.98.22) (Quit: Leaving)
- # [16:25] * Joins: atlas__ (~scott@198.169.4.30)
- # [16:28] * Quits: caasiHuang (~caasiHuan@59-126-203-62.HINET-IP.hinet.net) (Remote host closed the connection)
- # [16:30] * Joins: langbiangplaza (~ghkhghffd@117.3.195.94)
- # [16:30] * Joins: caasiHuang (~caasiHuan@59-126-203-62.HINET-IP.hinet.net)
- # [16:30] * Quits: dhruvasagar (~dhruvasag@65.98.79.137) (Excess Flood)
- # [16:30] * Quits: langbiangplaza (~ghkhghffd@117.3.195.94) (Max SendQ exceeded)
- # [16:31] * Quits: randomubuntuguy (~randomubu@cpe-066-057-080-255.nc.res.rr.com) (Read error: Operation timed out)
- # [16:32] * Joins: dhruvasagar (~dhruvasag@65.98.79.137)
- # [16:32] * Quits: erichynds (~ehynds@venkman.brightcove.com)
- # [16:32] * Joins: monteslu (~monteslu@ip68-109-174-213.ph.ph.cox.net)
- # [16:32] * Joins: devongovett (~devongove@pcp038545pcs.morro.reshall.calpoly.edu)
- # [16:34] * Joins: randomubuntuguy (~randomubu@cpe-066-057-080-255.nc.res.rr.com)
- # [16:34] * Quits: themiddleman_itv (~robot@c-71-199-11-248.hsd1.ut.comcast.net) (Quit: themiddleman_itv)
- # [16:39] * Joins: gavin_huang (~gravof@125.114.98.22)
- # [16:39] * Joins: miketaylr (~miketaylr@cpe-68-203-0-108.austin.res.rr.com)
- # [16:40] * Guest5482 is now known as cmw
- # [16:48] * Joins: srp_ (~quassel@115.99.249.129)
- # [16:52] * Quits: Shahor (~Shahor@78.109.80.22) (Quit: Leaving...)
- # [16:53] * Joins: Shahor (~Shahor@78.109.80.22)
- # [16:54] * Joins: krater (~benito@189.71.68.10)
- # [16:54] * Quits: machine1 (~gfdffdfd@pool-74-111-197-200.lsanca.fios.verizon.net) (Ping timeout: 252 seconds)
- # [16:55] * Joins: jamund (~jamund@c-174-52-214-161.hsd1.ut.comcast.net)
- # [16:56] * Quits: robhawkes (~robhawkes@188-220-16-96.dsl.cnl.uk.net) (Remote host closed the connection)
- # [16:56] * Joins: thcipriani (~tyler@173-14-24-158-Colorado.hfc.comcastbusiness.net)
- # [16:57] * Joins: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net)
- # [16:57] * Joins: dyamanoha (~dyamanoha@c-76-104-240-3.hsd1.wa.comcast.net)
- # [17:00] * Joins: techrush (~techrush@cpe-76-175-29-57.socal.res.rr.com)
- # [17:02] * Joins: machine1 (machine1@pool-74-111-197-200.lsanca.fios.verizon.net)
- # [17:02] * Joins: plh (~plh@w3cdhcp109.w3.org)
- # [17:03] * Quits: phpstud (~nadjib@dhcp-077-251-014-244.chello.nl) (Quit: Ex-Chat)
- # [17:03] * Quits: machine1 (machine1@pool-74-111-197-200.lsanca.fios.verizon.net) (Excess Flood)
- # [17:05] * Joins: kevwil (~kevwil@c-67-161-153-2.hsd1.co.comcast.net)
- # [17:05] * Parts: kevwil (~kevwil@c-67-161-153-2.hsd1.co.comcast.net)
- # [17:06] * Joins: machine1 (machine1@pool-74-111-197-200.lsanca.fios.verizon.net)
- # [17:08] * Quits: Trisox (~Trisox@dw87236798.amsterdam-tc.dataweb.net) (Quit: Leaving...)
- # [17:09] * Joins: dgathright (~dgathrigh@CPE-75-81-131-0.wi.res.rr.com)
- # [17:09] * Quits: roel (~quassel@d54C236E3.access.telenet.be) (Remote host closed the connection)
- # [17:09] * Joins: robhawkes (~robhawkes@188-220-16-96.dsl.cnl.uk.net)
- # [17:10] * Quits: markkes (~markkes@195.222.119.123) (Quit: Leaving...)
- # [17:12] * Joins: themiddleman_itv (~robot@50-73-38-137-utah.hfc.comcastbusiness.net)
- # [17:14] * Parts: rumpl (~opera@smtp.megalo-company.com)
- # [17:15] * Quits: louisremi (~louisremi@mon69-3-87-90-54-237.dsl.sta.abo.bbox.fr) (Read error: Connection reset by peer)
- # [17:17] * Joins: louisremi (~louisremi@mon69-3-87-90-54-237.dsl.sta.abo.bbox.fr)
- # [17:17] * Quits: techrush (~techrush@cpe-76-175-29-57.socal.res.rr.com) (Ping timeout: 252 seconds)
- # [17:18] * Joins: debsan (~debsan@190.245.74.16)
- # [17:19] * Joins: snowfox (~benschaaf@50-77-199-197-static.hfc.comcastbusiness.net)
- # [17:20] * Quits: carminec (~user@216.252.69.225) (Ping timeout: 252 seconds)
- # [17:22] * Quits: louisremi (~louisremi@mon69-3-87-90-54-237.dsl.sta.abo.bbox.fr) (Read error: Connection reset by peer)
- # [17:22] * Joins: louisremi (~louisremi@mon69-3-87-90-54-237.dsl.sta.abo.bbox.fr)
- # [17:22] * Joins: David_Bradbury (~chatzilla@75-147-178-254-Washington.hfc.comcastbusiness.net)
- # [17:24] * Quits: chriseppstein (~chrisepps@99-6-85-4.lightspeed.sntcca.sbcglobal.net) (Quit: chriseppstein)
- # [17:25] * Quits: snowfox (~benschaaf@50-77-199-197-static.hfc.comcastbusiness.net) (Remote host closed the connection)
- # [17:25] * Joins: snowfox (~benschaaf@50-77-199-197-static.hfc.comcastbusiness.net)
- # [17:26] * Quits: randomubuntuguy (~randomubu@cpe-066-057-080-255.nc.res.rr.com) (Ping timeout: 260 seconds)
- # [17:27] * Joins: rickibalboa (~ricki@84.19.108.75)
- # [17:29] * Joins: erichynds (~ehynds@venkman.brightcove.com)
- # [17:32] * Quits: Shahor (~Shahor@78.109.80.22) (Quit: Leaving...)
- # [17:33] * Joins: Shahor (~Shahor@78.109.80.22)
- # [17:33] * Joins: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [17:33] * Parts: krater (~benito@189.71.68.10)
- # [17:35] * Quits: gavin_huang (~gravof@125.114.98.22) (Quit: Leaving)
- # [17:35] * Joins: gimi (~gimi@115.72.204.128)
- # [17:37] * Joins: dmachi (~dmachi@pool-72-66-209-165.ronkva.east.verizon.net)
- # [17:39] * Quits: bibo360 (~bibo360@159.71.64.86.rev.sfr.net) (Remote host closed the connection)
- # [17:39] * Joins: johnkpaul (~johnkpaul@ool-6c3abe9a.static.optonline.net)
- # [17:40] * Joins: clouder`grr (nospam@cpe-24-242-30-84.elp.res.rr.com)
- # [17:40] * Joins: gimi_ (~gimi@115.72.206.47)
- # [17:41] * Quits: gimi (~gimi@115.72.204.128) (Ping timeout: 244 seconds)
- # [17:43] * Quits: kennnnneth (~howaboutw@38.117.157.59) (Quit: kennnnneth)
- # [17:44] * Joins: tylerstalder (~tylerstal@c-76-21-12-194.hsd1.ca.comcast.net)
- # [17:44] * Joins: thatryan (~thatryan@c-24-4-167-46.hsd1.ca.comcast.net)
- # [17:44] * Joins: Rickih (~user1@84.19.108.75)
- # [17:44] * Quits: Rickih (~user1@84.19.108.75) (Client Quit)
- # [17:45] * Joins: marcocarag (~marcocara@38.117.157.59)
- # [17:48] * Joins: carminec (~user@216.252.69.225)
- # [17:49] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Quit: jetienne)
- # [17:50] * Quits: kas187 (~kas187@exchange-02.abasoft.co.uk) (Quit: kas187)
- # [17:50] * Joins: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [17:53] * theresa_away is now known as theresaanna
- # [17:53] * Quits: ParanoidGal (~ParanoidG@host86-130-44-97.range86-130.btcentralplus.com) (Read error: Connection reset by peer)
- # [17:54] * Joins: WebDragon (~webdragon@c-68-82-181-85.hsd1.de.comcast.net)
- # [17:54] * Parts: aperture (~aperture@ninthfloor.org)
- # [17:58] * Joins: srj55 (~Steve@d24-141-169-128.home.cgocable.net)
- # [18:00] * Joins: randomubuntuguy (~randomubu@cpe-066-057-080-255.nc.res.rr.com)
- # [18:01] * Joins: B3Jesus (~B3Jesus@cpc6-wolv15-2-0-cust412.wolv.cable.virginmedia.com)
- # [18:08] * Quits: caasiHuang (~caasiHuan@59-126-203-62.HINET-IP.hinet.net) (Remote host closed the connection)
- # [18:09] * Quits: shwetank (~shwetank@122.173.44.219) (Quit: Linkinus - http://linkinus.com)
- # [18:10] * Quits: whitman (whitman@itsad-034.its.dur.ac.uk)
- # [18:10] * Quits: dyamanoha (~dyamanoha@c-76-104-240-3.hsd1.wa.comcast.net) (Ping timeout: 244 seconds)
- # [18:12] * Quits: carminec (~user@216.252.69.225) (Ping timeout: 260 seconds)
- # [18:15] * Quits: randomubuntuguy (~randomubu@cpe-066-057-080-255.nc.res.rr.com) (Ping timeout: 276 seconds)
- # [18:15] * Quits: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net) (Ping timeout: 276 seconds)
- # [18:16] * Quits: zeppo (~zeppo@c-6e90e255.04-4-64736c14.cust.bredbandsbolaget.se) (Quit: zeppo)
- # [18:18] * Quits: temp01 (~temp01@unaffiliated/temp01) (Ping timeout: 245 seconds)
- # [18:18] * Quits: philipvonbargen (~philipvon@gw.sinnerschrader.de) (Read error: Connection reset by peer)
- # [18:19] * Quits: sarro (~sarro@i5E865FEB.versanet.de) (Ping timeout: 255 seconds)
- # [18:19] * Quits: bot-t1 (~bot-t@unaffiliated/temp01/bot/bot-t) (Ping timeout: 245 seconds)
- # [18:20] * Joins: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net)
- # [18:21] * Joins: dyamanoha (~dyamanoha@nmd.sbx11384.kirklwa.wayport.net)
- # [18:21] * Joins: temp01 (~temp01@unaffiliated/temp01)
- # [18:22] * Joins: Evanescence (~Evanescen@60.183.198.64)
- # [18:23] * Quits: xec (~xec@2a00:10b0:1:1002:5ab0:35ff:fef8:6a01) (Remote host closed the connection)
- # [18:23] * Joins: nFFF (~nf@host86-177-245-219.range86-177.btcentralplus.com)
- # [18:23] <necolas> matjas paul_irish divya: strange bug https://github.com/h5bp/html5-boilerplate/issues/1006
- # [18:23] <socialhapy> ★ Issue #1006 on html5-boilerplate, reported by sethenmaleno (31m, 6s ago): @font-face fonts showing unexpected font-weight & margins/paddings
- # [18:24] <necolas> come across it before?
- # [18:25] <divya> bold maybe just fake bolding
- # [18:25] <divya> coz of the font that is used
- # [18:26] * Parts: johnoxton (~johnoxton@nat/canonical/x-vpwngeoytltjcheg)
- # [18:27] * Quits: sphinxxx (~sphinxxx@pool-74-102-8-51.nwrknj.fios.verizon.net) (Quit: sphinxxx)
- # [18:27] <divya> necolas: the margin/padding is same
- # [18:27] <divya> not an issue
- # [18:27] <divya> its only the bold?
- # [18:28] <divya> which seems like a font-face issue
- # [18:28] <divya> he should set font-weight to bold.
- # [18:28] <divya> so as to not fake bold
- # [18:28] <divya> not normal.
- # [18:28] * divya comments.
- # [18:28] <necolas> yeah only the bold
- # [18:29] <necolas> he's not faking bold
- # [18:29] <divya> no by setting font-weight to normal
- # [18:29] <divya> and using it on h2
- # [18:29] <divya> browsers are, by spec, forced to fakebold
- # [18:29] <necolas> he's already set font-weight normal in the font-face block
- # [18:29] <divya> because h2 has default font-weight as bold
- # [18:29] <divya> if he wants it to be used for bold either he should set the font-weight descriptor in @font-face to bold
- # [18:29] <necolas> yeah, all headings do. but firefox is the only one being strange about it
- # [18:29] * Quits: tylerstalder (~tylerstal@c-76-21-12-194.hsd1.ca.comcast.net) (Quit: Computer has gone to sleep.)
- # [18:30] <divya> no even opera.
- # [18:30] <divya> only safari and chrome likely not do it.
- # [18:30] <divya> oh they do do it but its not that different
- # [18:31] * Joins: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net)
- # [18:33] * Quits: louisremi (~louisremi@mon69-3-87-90-54-237.dsl.sta.abo.bbox.fr) (Ping timeout: 240 seconds)
- # [18:35] * Quits: shichuan (~Shi_Chuan@31.205.41.171) (Quit: Leaving.)
- # [18:35] <necolas> divya: actually, it just seems that some browsers cannot handle bolding that font-face properly
- # [18:36] <necolas> chrome won't do anything even if you explicitly set the font-weight to bold or normal
- # [18:36] <necolas> same with opera
- # [18:37] <divya> do you have a fiddle?
- # [18:37] <divya> i have one, lemme dig it up
- # [18:37] * Joins: sphinxxx (~sphinxxx@pool-74-102-8-51.nwrknj.fios.verizon.net)
- # [18:38] * nonge_ is now known as nonge
- # [18:39] * Quits: B3Jesus (~B3Jesus@cpc6-wolv15-2-0-cust412.wolv.cable.virginmedia.com) (Quit: Textual IRC Client: http://www.textualapp.com/)
- # [18:40] <necolas> divya: setting font-weight:bold in the @font-face block actually reduces the weight of the font in chrome
- # [18:40] * Quits: cloudpopup (hidden-use@ns.netset.se) (Quit: Leaving)
- # [18:40] * Joins: carminec (~user@253-91-252-216.dsl.colba.net)
- # [18:41] * Joins: randomubuntuguy (~randomubu@cpe-066-057-080-255.nc.res.rr.com)
- # [18:41] <divya> yeah thats the point.
- # [18:41] * Joins: kevindougans (~kevindoug@106.Red-213-96-89.staticIP.rima-tde.net)
- # [18:41] <divya> it doesnt apply the fake bold
- # [18:41] <necolas> divya: i dont think this is an h5bp issue, just a general one to do with browsers and the lack of different weight fonts in his @ block
- # [18:42] <divya> yeah its not h5bp issue at all
- # [18:42] <divya> thats what i mean
- # [18:42] <necolas> yeah but you said "or use font-weight: bold on the @font-face descriptor"...which doesn't work
- # [18:42] <divya> what doesnt work?
- # [18:42] <divya> if you want to clarify please go ahead and say so
- # [18:43] <necolas> using font-weight:bold on the @ block doesnt work
- # [18:43] * Joins: sarro (~sarro@i5E865FEB.versanet.de)
- # [18:43] <divya> but what is "not work" does it normalize the rendering across the browsers or not is the question no?
- # [18:44] <necolas> no, it doesnt
- # [18:44] <necolas> firefox stays ultra-bold, chrome drops down to "normal"
- # [18:45] * Quits: Jon47 (~Adium@pool-74-96-160-56.washdc.fios.verizon.net) (Quit: Leaving.)
- # [18:45] * Quits: andrewjbaker (~ajb@host-78-149-107-141.as13285.net) (Quit: Leaving)
- # [18:46] <divya> necolas: http://jsfiddle.net/nimbu/wcBmD/15/
- # [18:47] <divya> i hope that shows the difference.
- # [18:47] * Joins: JonathanNeal (~Jonathan@cpe-67-49-67-212.socal.res.rr.com)
- # [18:47] * Quits: marcocarag (~marcocara@38.117.157.59) (Quit: marcocarag)
- # [18:47] <JonathanNeal> hi
- # [18:47] <divya> opera seems to have the nearest normal behaviour here.
- # [18:47] * Joins: dilvie (~chatzilla@c-50-131-97-22.hsd1.ca.comcast.net)
- # [18:49] * Joins: dephex (~dddd@CPE-72-128-193-51.wi.res.rr.com)
- # [18:50] * Quits: niloy_ (~niloy@61.12.96.158) (Ping timeout: 260 seconds)
- # [18:51] * Quits: niloy (~niloy@61.12.96.158) (Ping timeout: 265 seconds)
- # [18:54] * Joins: Jayflux (~jay_knows@cpc1-dudl6-0-0-cust1981.wolv.cable.virginmedia.com)
- # [18:57] <astearns> hey divya - my question yesterday was on font-weight:bold in @font-face. I was just wondering if you had any reason not to do it (since you went with h1->normal in html5please)
- # [18:57] <astearns> sounds like you're OK with it :)
- # [18:57] <divya> astearns: ohh because I am using the link from google straight.
- # [18:57] <divya> so it does UA sniffing and serves only the right type :/
- # [18:57] <astearns> hmm - should be something in the API that lets you choose the font-weight for the rule
- # [18:57] * Quits: randomubuntuguy (~randomubu@cpe-066-057-080-255.nc.res.rr.com) (Ping timeout: 276 seconds)
- # [18:57] <divya> OHH is there?
- # [18:58] * divya has never checked
- # [18:58] <astearns> haven't either - if not there should be
- # [18:58] <divya> haha no astearns http://www.google.com/webfonts#QuickUsePlace:quickUse/Family:
- # [18:59] <divya> clearly the single main reason for crappy web fonts.
- # [18:59] * Quits: gimi_ (~gimi@115.72.206.47) (Quit: gimi_)
- # [18:59] <divya> oh wait
- # [18:59] <divya> sorry bad link :(
- # [18:59] <divya> astearns: http://www.google.com/webfonts#QuickUsePlace:quickUse/Family:Erica+One
- # [19:00] * Parts: JonathanNeal (~Jonathan@cpe-67-49-67-212.socal.res.rr.com)
- # [19:00] * Joins: tylerstalder (~tylerstal@c-50-131-59-86.hsd1.ca.comcast.net)
- # [19:01] <astearns> even if the link doesn't give you the proper rule, you can duplicate the @font-face rule the link gives you and change the font weight. Then the font gets used for both normal and bold
- # [19:02] * Joins: odinswand (~odinswand@27-32-234-171.static.tpgi.com.au)
- # [19:02] * Quits: dyamanoha (~dyamanoha@nmd.sbx11384.kirklwa.wayport.net) (Ping timeout: 260 seconds)
- # [19:02] * Joins: JoshuaJones (~JoshuaJon@67.198.198.66)
- # [19:02] <divya> astearns: yeah but it gives the @font-face rule depending on the browser you use
- # [19:02] <divya> so it only returns a woff font in it for opera/ff/chrome
- # [19:02] <divya> and a .eot for IE
- # [19:02] * Quits: dilvie (~chatzilla@c-50-131-97-22.hsd1.ca.comcast.net) (Ping timeout: 244 seconds)
- # [19:02] <astearns> ah, that's the part I was missing. Thanks!
- # [19:04] * Joins: Hopsy (~Hopsy@ip6-27-210-87.adsl2.static.versatel.nl)
- # [19:10] * Joins: diogogmt (~kvirc@142.204.16.10)
- # [19:11] * Joins: pinage404 (~pinage404@APuteaux-651-1-146-147.w92-154.abo.wanadoo.fr)
- # [19:11] * Quits: pinage404 (~pinage404@APuteaux-651-1-146-147.w92-154.abo.wanadoo.fr) (Remote host closed the connection)
- # [19:12] * Joins: pinage404 (~pinage404@APuteaux-651-1-146-147.w92-154.abo.wanadoo.fr)
- # [19:13] * Quits: erichynds (~ehynds@venkman.brightcove.com) (Ping timeout: 245 seconds)
- # [19:14] * Quits: JakeA (~Adium@93-97-17-15.zone5.bethere.co.uk) (Quit: Leaving.)
- # [19:14] * Parts: pinage404 (~pinage404@APuteaux-651-1-146-147.w92-154.abo.wanadoo.fr)
- # [19:18] * Quits: Evanescence (~Evanescen@60.183.198.64) (Quit: my website: http://stardiviner.dyndns-blog.com/)
- # [19:22] * Joins: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t)
- # [19:24] * Quits: debsan (~debsan@190.245.74.16) (Quit: Leaving)
- # [19:24] * Joins: debsan (~debsan@190.245.74.16)
- # [19:25] * Joins: dootdoot_ (~dootdoot@static-50-53-32-231.bvtn.or.frontiernet.net)
- # [19:29] * Joins: louisremi (~louisremi@mon69-3-87-90-54-237.dsl.sta.abo.bbox.fr)
- # [19:29] * Quits: BreadMaker (~BreadMake@pc-56-167-100-190.cm.vtr.net) (Remote host closed the connection)
- # [19:31] * Quits: necolas (~necolas@109.231.202.66) (Remote host closed the connection)
- # [19:32] * Joins: fearlesstost (~fearlesst@107.39.133.197)
- # [19:32] * Joins: BreadMaker (~BreadMake@pc-56-167-100-190.cm.vtr.net)
- # [19:34] * Joins: JonathanNeal (~Jonathan@71.21.36.135)
- # [19:35] <JonathanNeal> This is the right channel for HTML5 and Friends questions? Okay, what episode of Friends was based on a plot point from another NBC television show, Mad About You?
- # [19:37] * Quits: muddo (~muddo@gateway/tor-sasl/muddo) (Remote host closed the connection)
- # [19:37] * dootdoot_ is now known as colinwd
- # [19:37] * Joins: muddo (~muddo@gateway/tor-sasl/muddo)
- # [19:39] * Joins: fearlesstost_ (~fearlesst@173.252.71.3)
- # [19:40] * Joins: tw2113 (~tw2113@host-162-8-107-208.midco.net)
- # [19:40] * Quits: tw2113 (~tw2113@host-162-8-107-208.midco.net) (Changing host)
- # [19:40] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [19:41] * Joins: taylorRichie (~Adium@c-174-52-182-176.hsd1.ut.comcast.net)
- # [19:41] * Joins: erichynds (~ehynds@venkman.brightcove.com)
- # [19:42] * Quits: fearlesstost (~fearlesst@107.39.133.197) (Ping timeout: 245 seconds)
- # [19:42] * fearlesstost_ is now known as fearlesstost
- # [19:43] * Quits: nFFF (~nf@host86-177-245-219.range86-177.btcentralplus.com)
- # [19:43] * Quits: diogogmt (~kvirc@142.204.16.10) (Ping timeout: 244 seconds)
- # [19:44] * Joins: diogogmt (~kvirc@net1.senecac.on.ca)
- # [19:45] * Quits: louisremi (~louisremi@mon69-3-87-90-54-237.dsl.sta.abo.bbox.fr) (Ping timeout: 248 seconds)
- # [19:46] * Parts: scottkellum (~scottkell@207.239.55.34)
- # [19:47] * Quits: nonge (~nonge@p5082B207.dip.t-dialin.net) (Quit: Verlassend)
- # [19:48] * Joins: whitman (~whitman@87-194-159-116.bethere.co.uk)
- # [19:56] * Quits: mike5w3c (~MikeSmith@p15181-obmd01.tokyo.ocn.ne.jp) (Ping timeout: 244 seconds)
- # [20:00] * Quits: localhost (~chris@cpe-76-188-161-222.neo.res.rr.com) (Remote host closed the connection)
- # [20:00] * Joins: debsan_ (~debsan@190.245.74.16)
- # [20:01] * Quits: sw0rdfish (~Johnson@unaffiliated/robinux) (Ping timeout: 248 seconds)
- # [20:02] * Joins: localhost (~chris@cpe-76-188-161-222.neo.res.rr.com)
- # [20:02] * Quits: debsan (~debsan@190.245.74.16) (Ping timeout: 245 seconds)
- # [20:03] * Joins: intellilogic (~intellilo@static-96-241-182-10.washdc.fios.verizon.net)
- # [20:06] * Joins: xec (~xec@54.109-247-17.customer.lyse.net)
- # [20:08] * Quits: axos4111 (~axos@xdsl-78-35-160-211.netcologne.de) (Ping timeout: 260 seconds)
- # [20:10] * Joins: axos411 (~axos@xdsl-78-35-160-211.netcologne.de)
- # [20:10] * Joins: melst (~Melli@pop1-3622.catv.wtnet.de)
- # [20:10] * Parts: melst (~Melli@pop1-3622.catv.wtnet.de)
- # [20:11] * Quits: gavinsmit (~gavinsmit@CPEe05fb90cc8fb-CM00222ddfdbcd.cpe.net.cable.rogers.com) (Quit: Leaving...)
- # [20:13] * Quits: Jp100 (~user@87.113.184.203) (Quit: Jp100)
- # [20:15] * Joins: sw0rdfish (~Johnson@unaffiliated/robinux)
- # [20:17] * Joins: v0yager (~v0yager@75-130-82-139.static.kgpt.tn.charter.com)
- # [20:18] * Quits: diogogmt (~kvirc@net1.senecac.on.ca) (Ping timeout: 255 seconds)
- # [20:21] * Joins: dilvie (~chatzilla@50-0-92-40.dsl.dynamic.sonic.net)
- # [20:21] * Quits: devongovett (~devongove@pcp038545pcs.morro.reshall.calpoly.edu) (Quit: devongovett)
- # [20:21] * Quits: v0yager (~v0yager@75-130-82-139.static.kgpt.tn.charter.com) (Ping timeout: 252 seconds)
- # [20:24] * Quits: odinswand (~odinswand@27-32-234-171.static.tpgi.com.au)
- # [20:25] * Joins: devongovett (~devongove@pcp038545pcs.morro.reshall.calpoly.edu)
- # [20:26] * Parts: dilvie (~chatzilla@50-0-92-40.dsl.dynamic.sonic.net)
- # [20:26] * Quits: devongovett (~devongove@pcp038545pcs.morro.reshall.calpoly.edu) (Client Quit)
- # [20:27] * Joins: markkes (~markkes@53509CCC.cm-6-1c.dynamic.ziggo.nl)
- # [20:27] * Joins: rarar3 (~subway@ridezap.com)
- # [20:27] * Joins: Shusshu (~shu@ip51cd1542.speed.planet.nl)
- # [20:30] * Joins: deasy_ (~deasy@85.201.207.128)
- # [20:30] * Quits: deasy_ (~deasy@85.201.207.128) (Client Quit)
- # [20:31] * Quits: gyzmodo (x@89.146.123.168) (Ping timeout: 252 seconds)
- # [20:32] * Joins: marcocarag (~marcocara@38.117.157.59)
- # [20:35] * Joins: chriseppstein (~chrisepps@209.119.65.162)
- # [20:36] * Quits: Shahor (~Shahor@78.109.80.22) (Quit: Linkinus - http://linkinus.com)
- # [20:39] * Quits: fearlesstost (~fearlesst@173.252.71.3) (Ping timeout: 240 seconds)
- # [20:39] * Quits: sphinxxx (~sphinxxx@pool-74-102-8-51.nwrknj.fios.verizon.net) (Quit: sphinxxx)
- # [20:41] * Quits: myakura (~myakura@FL1-110-233-178-43.tky.mesh.ad.jp) (Remote host closed the connection)
- # [20:42] * Joins: gyzmodo (x@89.146.124.207)
- # [20:42] * Joins: lar_zzz (~lar_zzz@p4FE25EB6.dip.t-dialin.net)
- # [20:43] * Quits: gasbakid__ (~gasbakid@41.96.127.227) (Quit: Quitte)
- # [20:44] * Joins: gasbakid (~gasbakid@41.96.127.227)
- # [20:45] <tertl4> can someone explain to me .net nnuke?
- # [20:45] * Joins: patcito (~123@190.42.20.55)
- # [20:45] * Quits: gyzmodo (x@89.146.124.207) (Client Quit)
- # [20:45] * Quits: atlas__ (~scott@198.169.4.30) (Ping timeout: 245 seconds)
- # [20:46] * Quits: deasy (~deasy@85.201.207.128) (Quit: Nom d'un quark, c'est Edmonton!)
- # [20:47] * Quits: srj55 (~Steve@d24-141-169-128.home.cgocable.net) (Ping timeout: 260 seconds)
- # [20:47] * Joins: fearlesstost (~fearlesst@2620:0:1cfe:1e:6de4:6a5e:2759:5dbd)
- # [20:48] * Joins: srj55 (~Steve@d24-141-169-128.home.cgocable.net)
- # [20:50] * Joins: Thireg (~Thireg@APlessis-Bouchard-152-1-33-231.w83-114.abo.wanadoo.fr)
- # [20:50] <Pomax> whoo, done with http://processingjs.nihongoresources.com/test/spritesB
- # [20:51] <Pomax> now to start work on the level editor web page.
- # [20:51] * Joins: odinswand (~odinswand@27-32-234-171.static.tpgi.com.au)
- # [20:52] * Quits: odinswand (~odinswand@27-32-234-171.static.tpgi.com.au) (Client Quit)
- # [20:57] * Joins: manuchill (~mstalfoor@81.69.16.186)
- # [20:59] * Joins: diogogmt (~kvirc@142.204.70.21)
- # [20:59] * Quits: tantek (~tantek@70-36-139-112.dsl.dynamic.sonic.net) (Quit: tantek)
- # [21:00] * Joins: franksalim (~frank@64-71-23-251.static.wiline.com)
- # [21:00] * Quits: robhawkes (~robhawkes@188-220-16-96.dsl.cnl.uk.net) (Ping timeout: 276 seconds)
- # [21:01] * Joins: Jp100 (~user@87.113.184.203)
- # [21:01] * Joins: Jp100_ (~user@87.113.184.203)
- # [21:01] * Quits: Jp100_ (~user@87.113.184.203) (Client Quit)
- # [21:01] * Quits: Jp100 (~user@87.113.184.203) (Read error: Connection reset by peer)
- # [21:03] * Joins: gyzmodo (x@89.146.91.224)
- # [21:04] * Joins: odinswand (~odinswand@27-32-234-171.static.tpgi.com.au)
- # [21:04] * Quits: caniuse (~caniuse@li239-175.members.linode.com) (Remote host closed the connection)
- # [21:04] * Joins: robhawkes (~robhawkes@188-220-16-96.dsl.cnl.uk.net)
- # [21:05] * Joins: caniuse (~caniuse@li239-175.members.linode.com)
- # [21:05] * Quits: caniuse (~caniuse@li239-175.members.linode.com) (Remote host closed the connection)
- # [21:05] * Quits: srp_ (~quassel@115.99.249.129) (Read error: Connection reset by peer)
- # [21:05] * Joins: caniuse (~caniuse@li239-175.members.linode.com)
- # [21:07] * Quits: caniuse (~caniuse@li239-175.members.linode.com) (Remote host closed the connection)
- # [21:08] * Joins: caniuse (~caniuse@li239-175.members.linode.com)
- # [21:08] * Joins: Jon47 (~Adium@pool-74-96-160-56.washdc.fios.verizon.net)
- # [21:08] * Quits: caniuse (~caniuse@li239-175.members.linode.com) (Remote host closed the connection)
- # [21:09] * Joins: sphinxxx (~sphinxxx@pool-108-35-12-88.nwrknj.fios.verizon.net)
- # [21:10] * Joins: caniuse (~caniuse@li239-175.members.linode.com)
- # [21:10] * Quits: caniuse (~caniuse@li239-175.members.linode.com) (Remote host closed the connection)
- # [21:10] * Joins: scottkellum (~scottkell@207.239.55.34)
- # [21:10] * Quits: kevindougans (~kevindoug@106.Red-213-96-89.staticIP.rima-tde.net) (Quit: kevindougans)
- # [21:11] * Joins: jstoudt (~jstoudt@216-164-173-139.c3-0.atw-ubr5.atw.pa.cable.rcn.com)
- # [21:11] * Joins: caniuse (~caniuse@li239-175.members.linode.com)
- # [21:11] * Quits: caniuse (~caniuse@li239-175.members.linode.com) (Remote host closed the connection)
- # [21:13] * Joins: caniuse (~caniuse@li239-175.members.linode.com)
- # [21:13] * Quits: caniuse (~caniuse@li239-175.members.linode.com) (Remote host closed the connection)
- # [21:13] * Joins: caniuse (~caniuse@li239-175.members.linode.com)
- # [21:14] * Quits: gyzmodo (x@89.146.91.224) (Ping timeout: 240 seconds)
- # [21:14] * jstoudt is now known as Jason_Stoudt
- # [21:14] * Joins: gyzmodo (x@89.146.92.246)
- # [21:15] * Joins: myakura (~myakura@FL1-110-233-178-43.tky.mesh.ad.jp)
- # [21:16] * Parts: scottkellum (~scottkell@207.239.55.34)
- # [21:16] * Joins: Guest7593 (~Guest7593@app5.chatmosphere.org)
- # [21:16] * Quits: Guest7593 (~Guest7593@app5.chatmosphere.org) (Client Quit)
- # [21:17] * Joins: scottkellum (~scottkell@207.239.55.34)
- # [21:19] * Quits: intellilogic (~intellilo@static-96-241-182-10.washdc.fios.verizon.net)
- # [21:22] * Quits: tertl4 (~tertl3@108-85-17-207.lightspeed.gnvlsc.sbcglobal.net) (Quit: Nettalk6 - www.ntalk.de)
- # [21:26] * Quits: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net) (Remote host closed the connection)
- # [21:28] * Joins: xonecas (~Hello@76-220-29-1.lightspeed.sntcca.sbcglobal.net)
- # [21:31] * Quits: rarar3 (~subway@ridezap.com) (Remote host closed the connection)
- # [21:31] <xonecas> o/
- # [21:32] <xonecas> paul_irish: when you have a chance I would like your feedback on https://github.com/h5bp/server-configs/issues/46
- # [21:32] <socialhapy> ★ Issue #46 on server-configs, reported by klaemo (1d, 41m ago): Node.js config
- # [21:33] <xonecas> just to make sure you agree with the changes sugested there
- # [21:38] * Joins: mdel (~mdel@70-89-52-242-smc-pa.hfc.comcastbusiness.net)
- # [21:39] <mdel> paul_irish: curious... are you on #teamSASS
- # [21:42] * Quits: patcito (~123@190.42.20.55) (Read error: Connection reset by peer)
- # [21:43] * Quits: thatryan (~thatryan@c-24-4-167-46.hsd1.ca.comcast.net) (Quit: Leaving...)
- # [21:44] * Joins: patcito (~123@190.42.20.55)
- # [21:45] * Joins: CharlesBroughton (60307178@gateway/web/freenode/ip.96.48.113.120)
- # [21:46] <CharlesBroughton> Hello ther! Does someone have a second to spare to help me brainstorm a way to work around a known browser issue with pages? ex: A footer that should be "at the foot" of a document, I have it doing this so far.. but larger pages go UNDER the footer, and I need some ideas on how to fix this.
- # [21:47] <xonecas> CharlesBroughton: http://ryanfait.com/sticky-footer/ or just google sticky footer for more implementations
- # [21:47] * Quits: machine1 (machine1@pool-74-111-197-200.lsanca.fios.verizon.net) (Ping timeout: 260 seconds)
- # [21:48] <xonecas> with that implementations, the footer will always be at the bottom, but it will get pushed down if the content is larger than the window
- # [21:48] <CharlesBroughton> xonecas: Hmm, interesting; I've not seem the trick of negative bottom margins, I think that's exaclty what mine was missing.
- # [21:48] <xonecas> great :-)
- # [21:50] <CharlesBroughton> xonecas: Erm.. .crap, that kills my nice shadowing effects :(
- # [21:50] * Quits: Hopsy (~Hopsy@ip6-27-210-87.adsl2.static.versatel.nl) (Ping timeout: 240 seconds)
- # [21:51] <xonecas> CharlesBroughton: play around with it, and read up on more implemtations, you'll find a way
- # [21:52] <CharlesBroughton> xonecas: Yeah, I'm looking into it right now... not sure I'll find a good way to do it unfortunately; the way I've done the effects... bleh. Sometimes I wish browsers just ... worked, or listened to w3c; either way (doesn't everyone?)
- # [21:52] * Joins: necolas (~necolas@5e0c715f.bb.sky.com)
- # [21:52] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Quit: jetienne)
- # [21:53] <CharlesBroughton> xonecas: BLEGH, the same problem I had last time!
- # [21:53] <CharlesBroughton> xonecas: Now my "container" is 100% height (minimum).... which DOESN'T include the footer or header height :/
- # [21:53] <CharlesBroughton> So the page is now 100% + 100px + 120px minimum :(
- # [21:54] <CharlesBroughton> Whatever happened to CSS expressions? Are they still detested worse than inline javascripts, or are they fine now?
- # [21:55] <CharlesBroughton> IE: min-height: {100% - 220px} or whatever the syntax was.
- # [21:55] <CharlesBroughton> Is that still "works in 2 / 100 browsers" ?
- # [21:55] * Joins: machine1 (machine1@pool-74-111-197-200.lsanca.fios.verizon.net)
- # [21:55] * Quits: andr3 (~andr3@194.65.5.235) (Quit: andr3)
- # [21:59] * Quits: rodfersou (bb3e080a@gateway/web/freenode/ip.187.62.8.10) (Quit: Page closed)
- # [22:02] * Quits: Shusshu (~shu@ip51cd1542.speed.planet.nl)
- # [22:02] * Joins: mattur (~mattur@host81-133-37-248.in-addr.btopenworld.com)
- # [22:04] <Ms2ger> calc()
- # [22:04] * Joins: jacobolus (~jacobolus@75-144-246-6-SFBA.hfc.comcastbusiness.net)
- # [22:06] * Quits: whitman (~whitman@87-194-159-116.bethere.co.uk)
- # [22:06] * Parts: CharlesBroughton (60307178@gateway/web/freenode/ip.96.48.113.120)
- # [22:06] * Joins: JakeA (~Adium@94-195-85-255.zone9.bethere.co.uk)
- # [22:12] * Quits: erichynds (~ehynds@venkman.brightcove.com)
- # [22:13] * Quits: devmikey (~irc@unaffiliated/devmikey) (Read error: Connection reset by peer)
- # [22:14] * Quits: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl) (Quit: Ik ga weg)
- # [22:14] * Quits: WebDragon (~webdragon@c-68-82-181-85.hsd1.de.comcast.net) (Ping timeout: 276 seconds)
- # [22:17] * Quits: JakeA (~Adium@94-195-85-255.zone9.bethere.co.uk) (Quit: Leaving.)
- # [22:18] * Quits: Thireg (~Thireg@APlessis-Bouchard-152-1-33-231.w83-114.abo.wanadoo.fr) (Quit: Thireg)
- # [22:19] * Joins: snearch (~snearch@f053002234.adsl.alicedsl.de)
- # [22:19] * Quits: Jackneill (~Jackneill@unaffiliated/jackneill) (Ping timeout: 244 seconds)
- # [22:21] * Joins: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [22:22] * Joins: devongovett (~devongove@pcp038545pcs.morro.reshall.calpoly.edu)
- # [22:24] * Quits: snearch (~snearch@f053002234.adsl.alicedsl.de) (Client Quit)
- # [22:25] * Quits: machine1 (machine1@pool-74-111-197-200.lsanca.fios.verizon.net) (Ping timeout: 276 seconds)
- # [22:25] * Quits: sphinxxx (~sphinxxx@pool-108-35-12-88.nwrknj.fios.verizon.net) (Quit: sphinxxx)
- # [22:25] * Quits: lar_zzz (~lar_zzz@p4FE25EB6.dip.t-dialin.net) (Quit: Leaving.)
- # [22:26] <devongovett> divya: still need me? Here I am! :)
- # [22:26] * Joins: WebDragon (~webdragon@c-68-82-181-85.hsd1.de.comcast.net)
- # [22:26] * Joins: thatryan (~thatryan@c-24-4-167-46.hsd1.ca.comcast.net)
- # [22:27] * Quits: Demp (Demp@unaffiliated/demp) (Ping timeout: 240 seconds)
- # [22:33] * Joins: tantek (~tantek@nat/mozilla/x-wozvpisofxpykfnl)
- # [22:33] * Quits: Ms2ger (~Ms2ger@91.181.184.71) (Quit: nn)
- # [22:35] * Quits: kennyluck (~kennyluck@114-25-243-187.dynamic.hinet.net) (Read error: Connection reset by peer)
- # [22:35] * Joins: machine1 (machine1@pool-74-111-197-200.lsanca.fios.verizon.net)
- # [22:39] * Joins: gimi (~gimi@115.72.206.47)
- # [22:41] * Joins: kennyluck (~kennyluck@114-43-118-136.dynamic.hinet.net)
- # [22:42] * Joins: louisremi (~louisremi@mon69-3-87-90-54-237.dsl.sta.abo.bbox.fr)
- # [22:47] * Joins: Demp (Demp@bzq-79-183-195-187.red.bezeqint.net)
- # [22:47] * Quits: Demp (Demp@bzq-79-183-195-187.red.bezeqint.net) (Changing host)
- # [22:47] * Joins: Demp (Demp@unaffiliated/demp)
- # [22:47] * Quits: devongovett (~devongove@pcp038545pcs.morro.reshall.calpoly.edu) (Quit: devongovett)
- # [22:48] * Quits: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t) (Quit: bot-t)
- # [22:49] * Quits: manuchill (~mstalfoor@81.69.16.186) (Quit: Ex-Chat)
- # [22:58] <scottkellum> CharlesBroughton: If you need to use CSS expressions or calc I highly recommend you use a preprocessor. I am not a fan of expressions/logic in CSS itself and it can dramatically hurt compatibility and performance.
- # [22:58] <paul_irish> mdel: yes i'm talking to chris eppstein about sass 3.2 which is gonna be AWESOMEMEMEME
- # [22:58] <paul_irish> mdel: stylus has some advantages now but 3.2 will make up most that ground
- # [22:58] * Quits: skylamer` (cgskylamer@78.90.213.55) (Remote host closed the connection)
- # [22:59] <scottkellum> paul_irish: Sass 3.2 is a whole lot of awesome.
- # [22:59] <mdel> paul_irish: I've been using LESS for a few years, I figured it might be time to check out the other side of the fence
- # [22:59] <paul_irish> xonecas: https://github.com/h5bp/server-configs/issues/46 looks fine to me. keep going. i suck at node so i can't offer much
- # [22:59] <socialhapy> ★ Issue #46 on server-configs, reported by klaemo (1d, 2h ago): Node.js config
- # [22:59] <paul_irish> mdel: do it.
- # [23:02] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Quit: jetienne)
- # [23:02] <mdel> paul_irish: yeah we have one of our devs using it right now for comparison... at some level, working with sass is nearly the same
- # [23:03] <mdel> i personally would miss implicit mixins, but that might go away after a few hours of @includin'
- # [23:03] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
- # [23:04] <paul_irish> anyone remember how to leave messages for people with irc services?
- # [23:04] <tw2113> ?tell paul_irish hi
- # [23:04] <tw2113> damn
- # [23:04] <tw2113> .tell
- # [23:04] <paul_irish> no like with nickserv
- # [23:04] <tw2113> ah
- # [23:04] <paul_irish> https://toxin.jottit.com/freenode_memoserv_commands :)
- # [23:05] <scottkellum> mdel: try @extend .selector — It adds to the class instead of re-writing all the contents of the selector. Much more efficient than implicit mixins.
- # [23:05] <tw2113> whoa....my firefox affiliate link total went from 16 to 168
- # [23:07] <tw2113> check that, 207 :D
- # [23:11] * Joins: odwalla (~shane@c-67-171-141-237.hsd1.or.comcast.net)
- # [23:11] * Joins: tsatse (~tsatse@2a01:e35:8b7c:5310:21a:73ff:fe8d:5cbe)
- # [23:13] * Joins: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t)
- # [23:13] * Joins: temp02 (~temp01@unaffiliated/temp01)
- # [23:16] * Quits: temp01 (~temp01@unaffiliated/temp01) (Ping timeout: 276 seconds)
- # [23:18] * Quits: louisremi (~louisremi@mon69-3-87-90-54-237.dsl.sta.abo.bbox.fr) (Ping timeout: 244 seconds)
- # [23:19] * Joins: erichynds (~ehynds@pool-71-184-234-218.bstnma.fios.verizon.net)
- # [23:19] * Quits: digitalfiz (~fiz@unaffiliated/digitalfiz) (Quit: [Textual IRC Client: http://www.textualapp.com/])
- # [23:19] * Quits: cmw (~cmw@vpn.openpeak.com) (Ping timeout: 255 seconds)
- # [23:19] * Quits: ericbarnes (~ericbarne@cpe-075-181-047-014.carolina.res.rr.com) (Quit: Textual IRC Client: http://www.textualapp.com/)
- # [23:20] * Joins: nFFF (~sd@5ac50a65.bb.sky.com)
- # [23:22] * Joins: jacobolu_ (~jacobolus@75-144-246-6-SFBA.hfc.comcastbusiness.net)
- # [23:22] * Quits: jacobolus (~jacobolus@75-144-246-6-SFBA.hfc.comcastbusiness.net) (Ping timeout: 244 seconds)
- # [23:24] * Quits: gimi (~gimi@115.72.206.47) (Ping timeout: 265 seconds)
- # [23:25] * Quits: johnkpaul (~johnkpaul@ool-6c3abe9a.static.optonline.net) (Read error: Connection reset by peer)
- # [23:25] * Joins: johnkpaul (~johnkpaul@ool-6c3abe9a.static.optonline.net)
- # [23:28] * Quits: odinswand (~odinswand@27-32-234-171.static.tpgi.com.au)
- # [23:29] * Joins: gimi (~gimi@115.72.235.87)
- # [23:30] * Quits: glcrazy (~SiRiuS@79.119.94.207) (Remote host closed the connection)
- # [23:31] * Joins: andr3 (~andr3@bl14-169-164.dsl.telepac.pt)
- # [23:33] * Joins: odinswand (~odinswand@27-32-234-171.static.tpgi.com.au)
- # [23:35] * Joins: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [23:36] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Client Quit)
- # [23:36] * Joins: crivera (~carlos@rrcs-24-173-74-98.sw.biz.rr.com)
- # [23:36] * Quits: xarxer (~xarxer@2001:9b0:14:2006:219:dbff:fecf:3230) (Ping timeout: 260 seconds)
- # [23:36] <crivera> how can you make an input box where the cursor starts in the middle, then as you type the text starts to fill in the input box
- # [23:37] * Joins: jacobolus (~jacobolus@75-144-246-6-SFBA.hfc.comcastbusiness.net)
- # [23:37] <nFFF> Probably going to need js for that crivera ;p
- # [23:38] <crivera> k
- # [23:38] <nFFF> dynamically update the text margin-left
- # [23:38] <nFFF> as you enter shit
- # [23:38] * Quits: jacobolu_ (~jacobolus@75-144-246-6-SFBA.hfc.comcastbusiness.net) (Ping timeout: 252 seconds)
- # [23:40] <Graister-> why not text-align: center on the input?
- # [23:42] * theresaanna is now known as theresa_away
- # [23:42] * Quits: snowfox (~benschaaf@50-77-199-197-static.hfc.comcastbusiness.net) (Read error: Operation timed out)
- # [23:45] * Quits: gasbakid (~gasbakid@41.96.127.227) (Remote host closed the connection)
- # [23:46] * Quits: erichynds (~ehynds@pool-71-184-234-218.bstnma.fios.verizon.net)
- # [23:47] * Joins: JonathanNeal1 (~Jonathan@71.21.36.135)
- # [23:47] * Quits: JonathanNeal1 (~Jonathan@71.21.36.135) (Read error: Connection reset by peer)
- # [23:47] * Joins: xarxer (~xarxer@2001:9b0:14:2006:219:dbff:fecf:49db)
- # [23:49] * Quits: muddo (~muddo@gateway/tor-sasl/muddo) (Remote host closed the connection)
- # [23:50] * Quits: JonathanNeal (~Jonathan@71.21.36.135) (Ping timeout: 260 seconds)
- # [23:51] * Joins: muddo (~muddo@gateway/tor-sasl/muddo)
- # [23:55] * Joins: yogig (~yogig@67-131-94-2.dia.static.qwest.net)
- # [23:55] * Joins: sooperduper (~sooperdup@c-24-7-89-221.hsd1.ca.comcast.net)
- # [23:55] * Joins: cmw (cmw@c-76-108-152-196.hsd1.fl.comcast.net)
- # Session Close: Sat Mar 03 00:00:00 2012
The end :)