Options:
- # Session Start: Sun Mar 18 00:00:00 2012
- # Session Ident: #html5
- # [00:06] <tw2113> yo
- # [00:13] * Joins: tylerstalder (~tylerstal@c-76-21-12-194.hsd1.ca.comcast.net)
- # [00:14] * Joins: johnkpaul (~johnkpaul@pool-96-250-167-7.nycmny.fios.verizon.net)
- # [00:15] <grantg> whoa
- # [00:16] <grantg> Slightly changing some javascript just reduced some code from taking up 50% of the cpu in chrome to 10%
- # [00:16] <grantg> Same logic still
- # [00:16] <grantg> Just the format of the js itself was changed
- # [00:17] <grantg> same math. O_O
- # [00:17] <grantg> Does anyone else know if putting decrement/increment operators inside the if is super slow in v8?
- # [00:18] <grantg> seems moving it out fixes perf issues in V8
- # [00:18] * Quits: Ms2ger (~Ms2ger@91.181.21.107) (Quit: nn)
- # [00:18] * Joins: snowfox (~benschaaf@c-98-243-88-119.hsd1.mi.comcast.net)
- # [00:21] <StoneCypher> you're probably seeing a significant change because of hoisting
- # [00:21] <StoneCypher> if there's that big a performance difference, step through it and watch what it does
- # [00:21] <StoneCypher> i suspect that it's not actually doing the same thing
- # [00:21] <StoneCypher> that there's a behavioral difference you have not yet noticed
- # [00:21] <grantg> The code is already manually inlined
- # [00:21] * Joins: odwalla (~shane@184-76-83-2.war.clearwire-wmx.net)
- # [00:22] <grantg> this involves something different, doesn't involve calling funcs inside the if
- # [00:22] <grantg> I'll give you the git commit diff
- # [00:23] * Joins: neciO (~juan@d51A447EF.access.telenet.be)
- # [00:24] <grantg> https://github.com/grantgalitz/GameBoy-Online/commit/09112309a6c89a9fc42c8402af2fd22f9e5b43de
- # [00:24] <socialhapy> ★ Commit on GameBoy-Online by grantgalitz (1m, 3s ago): Performance update for V8. Seems moving some counter math around made stuff faster.
- # [00:24] <grantg> That's too the LLE-APU branch, so it won't show up on the main
- # [00:24] <grantg> It samples at 4194304 Hz for audio gen
- # [00:25] <grantg> involves emulating the actual hardware logic gate counters
- # [00:25] <grantg> *and counters
- # [00:25] <grantg> some edge shit that needs to basically be stepped through 1 clock at a time
- # [00:26] <grantg> The audio gen code was redone for complete accuracy.
- # [00:27] <grantg> these audio synth units run in parallel to the cpu and at the same clock rate as the cpu in base speed
- # [00:27] <grantg> and feed into successive sweep/length/duty/envelope units
- # [00:28] <grantg> and the big thing was the 512 hz frame sequencer emulation which no documentation says anything about, but the hardware uses to frame the logic for counter control itself
- # [00:28] <Velmont> That's just to cry for. That it made such a difference. -- Tested any other engines?
- # [00:28] <grantg> yeah
- # [00:28] * Quits: snowfox (~benschaaf@c-98-243-88-119.hsd1.mi.comcast.net) (Quit: snowfox)
- # [00:28] <grantg> small diff in Firefox
- # [00:29] <grantg> Audio gen takes up over 80% of the cpu usage in chrome still though
- # [00:29] <grantg> plus the fact it has to be resampled in js as the web audio api doesn't allow anything other than 44.1 khz
- # [00:30] <grantg> also bi-linear is too shitty for this kind of resampling, as it's way past the 2x factor
- # [00:30] <grantg> so it was custom. :/
- # [00:30] <Velmont> Hmm. WebAudio API, there was two competing ones were there not? Don't think we've implemented any of those yet in Opera :-/
- # [00:30] * Quits: moshee (~moshee@unaffiliated/moshee) (Ping timeout: 255 seconds)
- # [00:30] <grantg> moz audio and web audio
- # [00:30] * Joins: moshee (~moshee@c-50-135-229-127.hsd1.wa.comcast.net)
- # [00:30] * Quits: moshee (~moshee@c-50-135-229-127.hsd1.wa.comcast.net) (Changing host)
- # [00:30] * Joins: moshee (~moshee@unaffiliated/moshee)
- # [00:31] <grantg> moz audio DOES take my sample rate of 4194304 hz and resamples it
- # [00:31] <grantg> though w/ bi-linear. :P
- # [00:31] <grantg> so firefox resamples it in the browser than in js
- # [00:31] <grantg> which is way better
- # [00:31] <grantg> in terms of perf
- # [00:33] <grantg> heh, for Opera to have audio support, right now it uses a flash swf to create an api exposed to js
- # [00:33] <grantg> callbacks from flash
- # [00:34] <grantg> too bad opera has horrible setInterval timing, so the emulator is screwed with overall audio/video frame stability
- # [00:34] * Joins: colinwd (~colinwd@static-50-53-32-231.bvtn.or.frontiernet.net)
- # [00:35] <Velmont> Yes. Sad. -- We need an audio API, -- but what's "winning" is undecided yet AFAIK, so I guess we're blocking on that. Or maybe someone is working on it, not my domain. :-)
- # [00:36] <grantg> The web audio api is the proposed one
- # [00:36] <grantg> moz audio was never supposed to be adopted by others
- # [00:36] <grantg> the one by roc is the one being pushed now
- # [00:36] <Velmont> grantg: Are you using the ... wait-for-vsync paint pull for the others?
- # [00:37] <grantg> requestAnimationFrame?
- # [00:37] <grantg> I time with setInterval
- # [00:37] <grantg> and buffer gfx
- # [00:37] <Velmont> I know Opera very recently changed something in setTimeout/setInterval, -- to match others better. Dunno if that will help with that.
- # [00:37] <grantg> to blit on requestAnimationFrame
- # [00:37] <grantg> firefox though has broken requestAnimationFrame support
- # [00:38] <grantg> had to force firefox to not use it
- # [00:38] <grantg> firefox has shitty frame timing that drops fps to 10 fps
- # [00:38] <Velmont> The resolution
- # [00:38] <grantg> Everything is timed by a master setInterval of 16 ms
- # [00:39] <grantg> But video is always buffered upon swizzling
- # [00:39] <grantg> so the copy op is also the swizzle op
- # [00:39] <grantg> to make it fast
- # [00:39] * Quits: tertl3 (~tertl3@108-85-17-207.lightspeed.gnvlsc.sbcglobal.net) (Ping timeout: 244 seconds)
- # [00:40] <grantg> Velmont: I request another requestAnimationFrame outside it
- # [00:40] <grantg> From the setInterval loop itself
- # [00:40] <grantg> rather than in every requestAnimationFrame
- # [00:40] <grantg> since the frame rate is specific
- # [00:41] <grantg> this breaks firefox, but too bad, because I don't want to flood the event queue with useless draw requests that don't have equal spacing to the real frame rate
- # [00:41] <JonathanNeal> Pomax: you around?
- # [00:45] <grantg> the event queue already is flooded with callbacks for audio fill in V8
- # [00:45] <grantg> so no need to flood the damn queue more and block the audio itself from useless frame draw reqs
- # [00:45] * Quits: sephr (~Eli@unaffiliated/sephr) (Ping timeout: 246 seconds)
- # [00:45] <Velmont> Yes. I guess building an emulator is a really good test case for a lot of low level stuff.
- # [00:45] * Quits: JoeyCadle (Poboy@68.204.127.52) (Ping timeout: 244 seconds)
- # [00:45] <grantg> I noticed Opera tries to get 16 ms spacing, while chrome tries to get an *average* of 16 ms
- # [00:45] <grantg> V8 will have cases of 12 and 20 ms spacings between calls
- # [00:46] <grantg> but it's actually better
- # [00:46] <grantg> due to it delaying or calling earlier due to gc
- # [00:46] <grantg> it accounts for gc and various delays
- # [00:46] <grantg> Firefox always tries to do 16
- # [00:46] <grantg> V8 seems to be the one that's the most different
- # [00:47] <grantg> May look shitty upon tracings of the timings, but it actually works out
- # [00:47] * Quits: marcocarag (~marcocara@pool-72-80-94-176.nycmny.fios.verizon.net) (Quit: marcocarag)
- # [00:47] <Velmont> Hmmm... I wonder how that influences the rest of the web.
- # [00:47] <grantg> because the variance is actually the compensation
- # [00:48] <grantg> Velmont: it helps
- # [00:49] <grantg> makes things more stable that need exact number of iterations over time
- # [00:49] <Velmont> Maybe it's worth looking into trying to change it then.
- # [00:49] <grantg> as the other browsers seem to always never hit their target of x iterations
- # [00:49] <grantg> over y time
- # [00:49] <grantg> I wish this was a param in setInterval actually
- # [00:50] <grantg> whether to use the compensation algo or not
- # [00:50] * Quits: Rob- (~robhawkes@188-220-16-96.dsl.cnl.uk.net) (Read error: Operation timed out)
- # [00:52] <grantg> Anyhow, the "LLE-APU" version is a separate version because it does take up much more cpu load
- # [00:52] <grantg> due to an LLE rather than HLE gen, which would bog down browsers
- # [00:53] <grantg> because it *is* sampling at over 4 mhz
- # [00:56] * Quits: Nathandim (~textual@athedsl-4367546.home.otenet.gr) (Remote host closed the connection)
- # [00:57] * Quits: Reite (~chris@213.109-247-20.customer.lyse.net) (Ping timeout: 245 seconds)
- # [00:57] <grantg> because the audio hardware is just lots of counters timed off the master cpu clock with different clock dividers
- # [00:58] <grantg> with the waveform itself being the same
- # [00:59] * Quits: Taftse (Taftse@unaffiliated/taftse) (Ping timeout: 248 seconds)
- # [00:59] <grantg> even the white noise is just a multi-stage xor algorithm
- # [01:01] * Quits: necolas (~necolas@host-92-12-160-162.as43234.net) (Remote host closed the connection)
- # [01:05] * Joins: joepie91 (~joepie91@s514735fe.adsl.wanadoo.nl)
- # [01:06] <grantg> at leasts in runs fullspeed in chrome. :P
- # [01:07] * Joins: rupl (~anonymous@12.14.150.2)
- # [01:13] * Quits: diogogmt (~kvirc@net1.senecac.on.ca) (Quit: KVIrc 4.1.1 Equilibrium http://www.kvirc.net/)
- # [01:18] * Joins: eMKay (~eMKay@adsl-84-226-75-73.adslplus.ch)
- # [01:18] * Quits: eMKay (~eMKay@adsl-84-226-75-73.adslplus.ch) (Client Quit)
- # [01:20] * Joins: eMKay (~eMKay@adsl-84-226-75-73.adslplus.ch)
- # [01:20] * Quits: grantg (~chatzilla@69.88.160.3) (Read error: Connection reset by peer)
- # [01:20] * Quits: eMKay (~eMKay@adsl-84-226-75-73.adslplus.ch) (Read error: Connection reset by peer)
- # [01:20] * Joins: jacine (~jacine@drupal.org/user/88931/view)
- # [01:21] * Quits: venom00ut (~venom00@unaffiliated/venom00) (Ping timeout: 260 seconds)
- # [01:22] * Quits: jacine (~jacine@drupal.org/user/88931/view) (Read error: Connection reset by peer)
- # [01:22] * Joins: jacine (~jacine@drupal.org/user/88931/view)
- # [01:23] * Joins: confus3d (~ignor3d@pdpc/supporter/active/confus3d)
- # [01:24] <confus3d> hi. is <embed src="path/to/src" id="id_of_video" /> valid html5? I have this in my document, and I uploaded it to the w3 validator thing, and it says it's not valid, but on their own website, it has the embed src thing and it says it is valid... is this just a false positive?
- # [01:24] <confus3d> using transitional dtd
- # [01:24] * Joins: ryanstewart (~rstewart@c-71-227-153-101.hsd1.wa.comcast.net)
- # [01:25] * Quits: koggdal (~koggdal@c213-89-119-74.bredband.comhem.se) (Quit: koggdal)
- # [01:25] * Joins: pandeiro_ (~mu@bd21cbd8.virtua.com.br)
- # [01:27] * Quits: pandeiro (~mu@bd21cbd8.virtua.com.br) (Read error: Operation timed out)
- # [01:28] * Joins: GhostFreeman (~GhostFree@67.218.172.11)
- # [01:28] * Joins: cccaldas (~cccaldas@177.17.94.120)
- # [01:32] * Joins: machine2 (~machine4@pool-74-111-197-200.lsanca.fios.verizon.net)
- # [01:33] * Joins: marcocarag (~marcocara@pool-72-80-94-176.nycmny.fios.verizon.net)
- # [01:33] * Joins: sephr (~Eli@unaffiliated/sephr)
- # [01:35] * Quits: dmachi1 (~dmachi@pool-72-66-216-88.ronkva.east.verizon.net) (Quit: Leaving.)
- # [01:40] * Quits: marcocarag (~marcocara@pool-72-80-94-176.nycmny.fios.verizon.net) (Quit: marcocarag)
- # [01:42] * Joins: marcocarag (~marcocara@pool-72-80-94-176.nycmny.fios.verizon.net)
- # [01:42] * Quits: localhost (~chris@cpe-76-188-161-222.neo.res.rr.com) (Remote host closed the connection)
- # [01:43] * Quits: drublic (~drublic@frbg-5f730bbe.pool.mediaWays.net) (Remote host closed the connection)
- # [01:44] * Joins: tertl3 (~tertl3@108-85-17-207.lightspeed.gnvlsc.sbcglobal.net)
- # [01:45] * Quits: marcocarag (~marcocara@pool-72-80-94-176.nycmny.fios.verizon.net) (Client Quit)
- # [01:45] * Joins: localhost (~chris@cpe-76-188-161-222.neo.res.rr.com)
- # [01:46] * Joins: Nathandim (~textual@athedsl-4367546.home.otenet.gr)
- # [01:47] * Quits: ryanstewart (~rstewart@c-71-227-153-101.hsd1.wa.comcast.net) (Quit: ryanstewart)
- # [01:48] * Quits: xp_prg (~nyb@32.hnl1.superb.net) (Disconnected by services)
- # [01:49] * Joins: xp_prg2 (~nyb@32.hnl1.superb.net)
- # [01:57] * Joins: ryanstewart (~rstewart@c-71-227-153-101.hsd1.wa.comcast.net)
- # [02:00] <Pomax> JonathanNeal: sporadically
- # [02:03] * Quits: dilvie (~chatzilla@c-50-131-97-22.hsd1.ca.comcast.net) (Ping timeout: 245 seconds)
- # [02:04] * Quits: karega (~karegaani@cpe-76-184-236-100.tx.res.rr.com) (Ping timeout: 272 seconds)
- # [02:04] * Joins: dilvie (~chatzilla@c-50-131-97-22.hsd1.ca.comcast.net)
- # [02:04] * Quits: gde33 (kvirc@546A1A51.cm-12-3a.dynamic.ziggo.nl) (Read error: Connection reset by peer)
- # [02:04] * Quits: dilvie (~chatzilla@c-50-131-97-22.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [02:05] * Joins: DrAwesomeClaws (~DrAwesome@2002:47ea:56fe:0:30df:7d43:6899:a40d)
- # [02:06] * Quits: jacine (~jacine@drupal.org/user/88931/view) (Quit: buh bye :))
- # [02:15] * Joins: Me1000 (~Me1000@74-129-231-197.dhcp.insightbb.com)
- # [02:15] * Quits: pandeiro_ (~mu@bd21cbd8.virtua.com.br) (Quit: WeeChat 0.3.7)
- # [02:15] * Joins: pandeiro (~mu@bd21cbd8.virtua.com.br)
- # [02:18] * JasonStoudt is now known as JasonS|away
- # [02:24] * Quits: sarro (~sarro@i5E864E4D.versanet.de)
- # [02:25] * Quits: alrra (~alrra@unaffiliated/alrra) (Ping timeout: 265 seconds)
- # [02:27] * johnkpaul is now known as johnkpaul-afk
- # [02:30] * Parts: shifter1 (~Carl@adsl-74-190-120-134.asm.bellsouth.net)
- # [02:32] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: I was raided by the FBI and all I got to keep was this lousy quit message!)
- # [02:36] * Quits: DrAwesomeClaws (~DrAwesome@2002:47ea:56fe:0:30df:7d43:6899:a40d) (Remote host closed the connection)
- # [02:37] * Joins: DrAwesomeClaws (~DrAwesome@c-71-234-86-254.hsd1.ct.comcast.net)
- # [02:38] * Joins: SrPx (b1110c06@gateway/web/freenode/ip.177.17.12.6)
- # [02:38] <SrPx> any way to write text with border?
- # [02:41] * Joins: dmachi (~dmachi@pool-72-66-216-88.ronkva.east.verizon.net)
- # [02:45] * Joins: snowfox (~benschaaf@c-98-243-88-119.hsd1.mi.comcast.net)
- # [02:47] * Joins: Lightheaded (~lighthead@225-216-131-46.internet.emt.ee)
- # [02:49] * Quits: neciO (~juan@d51A447EF.access.telenet.be) (Quit: leaving)
- # [02:52] * Quits: Me1000 (~Me1000@74-129-231-197.dhcp.insightbb.com) (Quit: Leaving...)
- # [02:56] * Quits: Robinux (~Johnson@unaffiliated/robinux) (Ping timeout: 272 seconds)
- # [02:57] * Quits: snowfox (~benschaaf@c-98-243-88-119.hsd1.mi.comcast.net) (Quit: snowfox)
- # [03:01] * Quits: Jayflux (~jay_knows@cpc1-dudl6-0-0-cust1981.wolv.cable.virginmedia.com) (Read error: Connection reset by peer)
- # [03:04] * Joins: PsiliPharm (~psiliphar@50.10.184.67)
- # [03:05] * Joins: dabbad00 (~dabbad00@71-211-210-74.hlrn.qwest.net)
- # [03:06] * Joins: jacine (~jacine@drupal.org/user/88931/view)
- # [03:07] * Joins: snowfox (~benschaaf@c-98-243-88-119.hsd1.mi.comcast.net)
- # [03:09] * Quits: jacine (~jacine@drupal.org/user/88931/view) (Client Quit)
- # [03:10] * Joins: jacine (~jacine@drupal.org/user/88931/view)
- # [03:10] * Joins: Robinux (~Johnson@unaffiliated/robinux)
- # [03:11] * Quits: snowfox (~benschaaf@c-98-243-88-119.hsd1.mi.comcast.net) (Client Quit)
- # [03:11] * Quits: ryanstewart (~rstewart@c-71-227-153-101.hsd1.wa.comcast.net) (Quit: ryanstewart)
- # [03:12] * Quits: felideon (~felideon@184.105.242.75) (Ping timeout: 252 seconds)
- # [03:14] * Quits: colinwd (~colinwd@static-50-53-32-231.bvtn.or.frontiernet.net) (Remote host closed the connection)
- # [03:14] * Joins: _jzl (~jzl@206-188-76-206.cpe.distributel.net)
- # [03:14] * Quits: _jzl (~jzl@206-188-76-206.cpe.distributel.net) (Remote host closed the connection)
- # [03:15] * Joins: _jzl (~jzl@206-188-76-206.cpe.distributel.net)
- # [03:15] * Joins: felideon (~felideon@184.105.242.75)
- # [03:15] <Pomax> SrPx: http://jsfiddle.net/LeNzz/
- # [03:16] <Pomax> short answer: no. Longer answer: no, but you can fake it with 1px text shadows
- # [03:16] * Quits: _jzl (~jzl@206-188-76-206.cpe.distributel.net) (Remote host closed the connection)
- # [03:16] <SrPx> Pomax: correct answer: awesome.
- # [03:16] <SrPx> thanks
- # [03:21] * Quits: jblanche (~jblanche@ivr94-10-88-177-169-11.fbx.proxad.net) (Quit: jblanche)
- # [03:24] * Joins: tantek (~tantek@70-36-139-112.dsl.dynamic.sonic.net)
- # [03:24] * Joins: jblanche (~jblanche@ivr94-10-88-177-169-11.fbx.proxad.net)
- # [03:38] * Quits: deasy (~deasy@109.89.87.172) (Quit: Nom d'un quark, c'est Edmonton!)
- # [03:40] * Quits: DrAwesomeClaws (~DrAwesome@c-71-234-86-254.hsd1.ct.comcast.net) (Remote host closed the connection)
- # [03:40] * Quits: jblanche (~jblanche@ivr94-10-88-177-169-11.fbx.proxad.net) (Quit: jblanche)
- # [03:41] * Joins: coeus (~coeus@dslb-084-061-056-177.pools.arcor-ip.net)
- # [03:42] * Joins: DrAwesomeClaws (~DrAwesome@c-71-234-86-254.hsd1.ct.comcast.net)
- # [03:43] * Joins: ericbarnes (~ericbarne@cpe-075-181-047-014.carolina.res.rr.com)
- # [03:48] * Quits: tylerstalder (~tylerstal@c-76-21-12-194.hsd1.ca.comcast.net) (Quit: Computer has gone to sleep.)
- # [03:52] <Pomax> FINALLY
- # [03:52] <Pomax> http://wiki.whatwg.org/wiki/Canvas
- # [03:52] <Pomax> "Ellipses - DONE"
- # [03:53] <Pomax> about bloody time O_O
- # [03:53] <Pomax> now hopefully it can land soon >_>
- # [03:56] <thezoggy> or draw text 2px larger on a layer below it?
- # [03:56] <Pomax> that instantly fails due to stretch.
- # [03:56] <thezoggy> or use font kit that has the border built in
- # [03:57] <StoneCypher> Pomax: why did you wait
- # [03:57] <StoneCypher> Pomax: it's a pixel canvas; ellipses aren't rocket science
- # [03:57] <Pomax> wait? I'm one of the people who filed a ticket to get it added to canvas
- # [03:58] <Pomax> it's an elementary draw operation, why make 100,000 canvas users implement something that should have been in from the start?
- # [03:58] <StoneCypher> my point being, after you filed that ticket, ten lines of javascript, half an hour, and you've got a perfect portable answer for your own work
- # [03:58] <Pomax> (there's circular arc, but no elliptical arc)
- # [03:58] <Pomax> uh..
- # [03:58] <Pomax> hi, I work on processing.js
- # [03:58] <StoneCypher> oh.
- # [03:58] <Pomax> we support ellipse just fine
- # [03:58] <Pomax> but why make thousands of canvas users reinvent the wheel, every time
- # [03:58] <Pomax> when there really is no need for it.
- # [03:58] <StoneCypher> i rather doubt there are thousands of people needing ellipse.
- # [03:58] <Pomax> I'm just really glad it's finally getting added in
- # [03:58] <StoneCypher> but
- # [03:58] <Pomax> now we can get rid of our own implementations
- # [03:59] <ard_> ah right, I forgot I wanted to write a proposal for a new method in canvas api
- # [03:59] <StoneCypher> i actually won't be using the spec one anyway
- # [03:59] <StoneCypher> as i need pixel invariant rendering
- # [03:59] <StoneCypher> and the spec isn't strict enough for that to be the case
- # [04:00] <Pomax> that's your call, but I don't like reinventing the wheel in a way that's slower than actually getting the wheel added by the people selling me the car.
- # [04:00] <Pomax> well yeah, then you have a problem inherent to canvas
- # [04:00] * StoneCypher notes that generally speaking, browser geometry isn't very well implemented
- # [04:00] <StoneCypher> well
- # [04:00] * Quits: Robinux (~Johnson@unaffiliated/robinux) (Ping timeout: 260 seconds)
- # [04:00] <StoneCypher> to <canvas> geometry
- # [04:00] <Pomax> canvas is not a pixel grid.
- # [04:00] <StoneCypher> but canvas is a pixel canvas; it's just implementing a span renderer of my own
- # [04:00] <StoneCypher> it offers one
- # [04:00] <Pomax> canvas is, emphatically, not a pixel canvas.
- # [04:01] <StoneCypher> you're being obstinant
- # [04:01] <Pomax> no, it's been an annoying problem since day one
- # [04:01] <Pomax> canvas coordinates are between pixels, and its axes are continuous, not discrete
- # [04:01] <StoneCypher> er.
- # [04:02] * Joins: Robinux (~Johnson@unaffiliated/robinux)
- # [04:02] <StoneCypher> i'm not trying to be a jerk but
- # [04:02] <Pomax> it's why drawing a straight line gets antialiassed.
- # [04:02] <StoneCypher> you do realize that only applies to geometry, which i'm explicitly talking about not using
- # [04:02] <StoneCypher> right
- # [04:02] <StoneCypher> well no
- # [04:02] <StoneCypher> that's because the developer didn't use the appropriate coordinate, which is on 1.5
- # [04:03] <StoneCypher> but
- # [04:03] * Joins: sasori (~sasori@acl1-719bts.gw.smartbro.net)
- # [04:03] <Pomax> I move that blame to the spec. saying "it's your fault that 0,0 is actually 0.5/0.5 and you need to subtract 0.5" is having made a bad spec.
- # [04:03] <StoneCypher> no you're just avoiding the issue
- # [04:04] <StoneCypher> there *is* a pixel canvas
- # [04:04] <Pomax> if you have your own code that maps pixels to canvas points, you've solved your problem.
- # [04:04] <StoneCypher> that the thing you want to do isn't it is beside the point
- # [04:04] <StoneCypher> a pixel canvas exists
- # [04:04] <StoneCypher> that is good enough
- # [04:05] <StoneCypher> the presence of a pixel canvas means that someone who needs pixel invariance and wants to use <canvas> may self implement
- # [04:05] <StoneCypher> taht's all i meant.
- # [04:05] <Pomax> fair enough
- # [04:05] <StoneCypher> the fact that the geometry system prefers math elegance to novice programmer convenience is besides the point
- # [04:05] <Pomax> but any move that makes working with canvas easier is a good move in my book, so for the first time ever, I salute Hickson.
- # [04:05] * Joins: ryanstewart (~rstewart@c-71-227-153-101.hsd1.wa.comcast.net)
- # [04:05] <StoneCypher> i assume that means you've never talked to him.
- # [04:06] <Pomax> I have only interacted with him online.
- # [04:06] <StoneCypher> it's like shooting yourself in the face with a shotgun full of forks :(
- # [04:06] <Pomax> that... does not sound fun =x
- # [04:07] <Pomax> I thoroughly did not enjoy my interactions with him, and many echo that sentiment, but I think you've just won the "most painful description" =/
- # [04:08] * Quits: ryanstewart (~rstewart@c-71-227-153-101.hsd1.wa.comcast.net) (Remote host closed the connection)
- # [04:08] * Joins: ryanstewart (~rstewart@sjfw1.adobe.com)
- # [04:08] * Joins: flra (~alexandru@86.125.230.248)
- # [04:08] <StoneCypher> yeah i am
- # [04:08] <StoneCypher> not a fan.
- # [04:08] * Quits: flra (~alexandru@86.125.230.248) (Max SendQ exceeded)
- # [04:09] * Joins: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl)
- # [04:09] * Joins: flra (~alexandru@86.125.230.248)
- # [04:09] * Joins: Leemp (~lee@71-221-71-62.eugn.qwest.net)
- # [04:09] * Quits: flra (~alexandru@86.125.230.248) (Max SendQ exceeded)
- # [04:09] * Joins: flra (~alexandru@86.125.230.248)
- # [04:10] * Joins: decthomas_ (~decthomas@dD5E0145A.access.telenet.be)
- # [04:12] * Joins: dmachi1 (~dmachi@pool-72-66-216-88.ronkva.east.verizon.net)
- # [04:12] * Quits: dmachi (~dmachi@pool-72-66-216-88.ronkva.east.verizon.net) (Read error: Connection reset by peer)
- # [04:12] * Quits: decthomas (decthomas@nat/netlash/x-ymfvtxwnefmrazyh) (Ping timeout: 246 seconds)
- # [04:12] * decthomas_ is now known as decthomas
- # [04:13] * Quits: PsiliPharm (~psiliphar@50.10.184.67) (Ping timeout: 246 seconds)
- # [04:16] * Quits: davidbanham (~davidbanh@95.27.233.220.static.exetel.com.au) (Remote host closed the connection)
- # [04:16] * Quits: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net) (Remote host closed the connection)
- # [04:17] * Joins: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net)
- # [04:17] * Joins: davidbanham (~davidbanh@95.27.233.220.static.exetel.com.au)
- # [04:17] * Quits: davidbanham (~davidbanh@95.27.233.220.static.exetel.com.au) (Remote host closed the connection)
- # [04:17] * Joins: PsiliPharm (~psiliphar@50.10.184.67)
- # [04:21] * Joins: debsan (~debsan@190.245.74.16)
- # [04:22] * Joins: gavin_huang (~gravof@115.214.244.79)
- # [04:24] * Quits: randomubuntuguy (~randomubu@cpe-066-057-080-255.nc.res.rr.com) (Ping timeout: 246 seconds)
- # [04:25] * Quits: samol (~samol@coc119.neoplus.adsl.tpnet.pl) (Remote host closed the connection)
- # [04:25] * johnkpaul-afk is now known as johnkpaul
- # [04:26] * Quits: Robinux (~Johnson@unaffiliated/robinux) (Ping timeout: 246 seconds)
- # [04:27] * Quits: jacine (~jacine@drupal.org/user/88931/view) (Quit: buh bye :))
- # [04:29] * Quits: johnkpaul (~johnkpaul@pool-96-250-167-7.nycmny.fios.verizon.net) (Remote host closed the connection)
- # [04:30] * Quits: PsiliPharm (~psiliphar@50.10.184.67) (Remote host closed the connection)
- # [04:36] * Quits: dnstbr (~dnstbr@cpe-72-191-156-43.rgv.res.rr.com)
- # [04:36] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [04:44] * Joins: kppullin_ (~kppullin@wsip-98-173-13-146.oc.oc.cox.net)
- # [04:45] * Moonies is now known as MOONIES
- # [04:47] * Quits: kppullin (~kppullin@pdpc/supporter/active/kppullin) (Ping timeout: 248 seconds)
- # [04:52] * Quits: csprite (~chatzilla@190.6.232.66) (Read error: Connection reset by peer)
- # [04:53] * Quits: RobLoach (~RobLoach@drupal.org/user/61114/view) (Quit: Leaving.)
- # [04:54] * Quits: SrPx (b1110c06@gateway/web/freenode/ip.177.17.12.6) (Ping timeout: 245 seconds)
- # [04:56] * Joins: dr0id (~andy@unaffiliated/dr0id)
- # [05:00] * Joins: techrush- (~techrush@cpe-76-175-29-57.socal.res.rr.com)
- # [05:04] * Quits: techrush (~techrush@cpe-76-175-29-57.socal.res.rr.com) (Ping timeout: 276 seconds)
- # [05:07] * Joins: Vennril2 (~vennril@p4FCB0227.dip0.t-ipconnect.de)
- # [05:08] * Quits: Vennril (~vennril@p4FCB0188.dip0.t-ipconnect.de) (Ping timeout: 245 seconds)
- # [05:09] * Vennril2 is now known as Vennril
- # [05:10] * Joins: davidbanham (~davidbanh@95.27.233.220.static.exetel.com.au)
- # [05:10] * Quits: dabbad00 (~dabbad00@71-211-210-74.hlrn.qwest.net) (*.net *.split)
- # [05:10] * Quits: chriseppstein (~chrisepps@99-6-85-4.lightspeed.sntcca.sbcglobal.net) (*.net *.split)
- # [05:10] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (*.net *.split)
- # [05:10] * Quits: dhruvasagar (~dhruvasag@65.98.79.137) (*.net *.split)
- # [05:10] * Quits: chayin (quassel@nat/nokia/x-ugptjjmuesahrnpi) (*.net *.split)
- # [05:10] * Quits: Epeli (epeli@melmacian.net) (*.net *.split)
- # [05:14] * Joins: dabbad00 (~dabbad00@71-211-210-74.hlrn.qwest.net)
- # [05:14] * Joins: chriseppstein (~chrisepps@99-6-85-4.lightspeed.sntcca.sbcglobal.net)
- # [05:14] * Joins: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [05:14] * Joins: dhruvasagar (~dhruvasag@65.98.79.137)
- # [05:14] * Joins: chayin (quassel@nat/nokia/x-ugptjjmuesahrnpi)
- # [05:14] * Joins: Epeli (epeli@melmacian.net)
- # [05:14] * Quits: dabear (~quassel@87.238.49.7) (Ping timeout: 246 seconds)
- # [05:14] * Quits: dabbad00 (~dabbad00@71-211-210-74.hlrn.qwest.net) (Excess Flood)
- # [05:14] * Quits: davidbanham (~davidbanh@95.27.233.220.static.exetel.com.au) (Remote host closed the connection)
- # [05:14] * Joins: dabbad00 (~dabbad00@71-211-210-74.hlrn.qwest.net)
- # [05:15] * Joins: dabear (~quassel@87.238.49.7)
- # [05:16] * Joins: davidbanham (~davidbanh@95.27.233.220.static.exetel.com.au)
- # [05:30] * Quits: tantek (~tantek@70-36-139-112.dsl.dynamic.sonic.net) (Quit: tantek)
- # [05:40] * Quits: ericbarnes (~ericbarne@cpe-075-181-047-014.carolina.res.rr.com) (Quit: Textual IRC Client: http://www.textualapp.com/)
- # [05:42] * Quits: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl) (Ping timeout: 265 seconds)
- # [05:43] * Joins: cccaldas_ (~cccaldas@177.17.18.58)
- # [05:46] * Quits: cccaldas (~cccaldas@177.17.94.120) (Ping timeout: 250 seconds)
- # [05:50] * Quits: Vennril (~vennril@p4FCB0227.dip0.t-ipconnect.de) (Quit: Nettalk6 - www.ntalk.de)
- # [05:54] * Quits: pandeiro (~mu@bd21cbd8.virtua.com.br) (Quit: WeeChat 0.3.7)
- # [05:54] * dr0id is now known as w0rk
- # [05:55] * MOONIES is now known as Moonies
- # [05:57] * Quits: austincheney (~IceChat77@108-72-77-136.lightspeed.rcsntx.sbcglobal.net) (Ping timeout: 265 seconds)
- # [06:11] * Joins: caasiHuang (~caasiHuan@59-126-203-62.HINET-IP.hinet.net)
- # [06:16] * Quits: cccaldas_ (~cccaldas@177.17.18.58) (Ping timeout: 252 seconds)
- # [06:19] * Joins: gyzmodo (x@89.146.104.139)
- # [06:25] * Joins: irbinix2 (~irbinix@178.124.169.236)
- # [06:25] <irbinix2> vladikoff
- # [06:25] * Parts: irbinix2 (~irbinix@178.124.169.236)
- # [06:37] * Joins: pneftali (~pneftali@120.28.233.253)
- # [06:41] * Joins: dnstbr (~dnstbr@cpe-70-115-73-22.rgv.res.rr.com)
- # [06:45] * Joins: aed (aed@ip68-11-25-146.no.no.cox.net)
- # [06:55] * Quits: aed (aed@ip68-11-25-146.no.no.cox.net) (Ping timeout: 255 seconds)
- # [07:00] * Quits: rupl (~anonymous@12.14.150.2) (Quit: ^_^)
- # [07:03] * Parts: matt5 (~Webis@unaffiliated/matt5)
- # [07:03] * Quits: dnstbr (~dnstbr@cpe-70-115-73-22.rgv.res.rr.com) (Quit: Computer has gone to sleep.)
- # [07:05] * Quits: Luxx_ (~highoh@c-67-171-35-186.hsd1.wa.comcast.net) (Ping timeout: 244 seconds)
- # [07:07] * Quits: davidbanham (~davidbanh@95.27.233.220.static.exetel.com.au) (Remote host closed the connection)
- # [07:20] * Joins: mr_lou (~sirlou@0x555321d8.adsl.cybercity.dk)
- # [07:21] * Joins: Jaylee_ (u4856@gateway/web/irccloud.com/x-tklacgczioepocvk)
- # [07:26] * Joins: devilsbackyard (~kushagra@117.203.12.152)
- # [07:30] * Quits: w0rk (~andy@unaffiliated/dr0id) (Quit: Leaving.)
- # [07:36] * Joins: machiolate (~thetentma@cpe-98-154-161-205.socal.res.rr.com)
- # [07:39] * Quits: Moonies (~Bongle@unaffiliated/moonies) (Quit: quack)
- # [07:46] * Quits: sephr (~Eli@unaffiliated/sephr) (Ping timeout: 276 seconds)
- # [07:47] * Joins: obert- (~obert@host99-207-dynamic.1-87-r.retail.telecomitalia.it)
- # [08:04] * Joins: LongBeach (~mike@AFontenayssB-152-1-59-225.w82-121.abo.wanadoo.fr)
- # [08:14] * Quits: axos4111 (~axos@xdsl-78-35-143-212.netcologne.de) (Read error: Operation timed out)
- # [08:28] <JonathanNeal> hi
- # [08:30] * Joins: axos411 (~axos@xdsl-78-35-167-150.netcologne.de)
- # [08:35] * Joins: glcrazy (~SiRiuS@rdslink-v90-240.suceava.rdsnet.ro)
- # [08:39] * Joins: grantg (~chatzilla@69.88.160.3)
- # [08:46] * Joins: alrra (~alrra@188.24.80.182)
- # [08:46] * Quits: alrra (~alrra@188.24.80.182) (Changing host)
- # [08:46] * Joins: alrra (~alrra@unaffiliated/alrra)
- # [08:53] * Joins: Reite (~chris@213.109-247-20.customer.lyse.net)
- # [08:55] * Joins: jetienne_ (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [08:56] * Quits: grantg (~chatzilla@69.88.160.3) (Quit: ChatZilla 0.9.88.1 [Firefox 11.0/20120312181643])
- # [09:02] * Joins: JoeyCadle (joeycadle@68.204.127.52)
- # [09:02] * Parts: odwalla (~shane@184-76-83-2.war.clearwire-wmx.net)
- # [09:04] * Joins: dr0id (~andy@unaffiliated/dr0id)
- # [09:09] * Quits: flra (~alexandru@86.125.230.248) (Quit: Leaving.)
- # [09:15] * Quits: JoeyCadle (joeycadle@68.204.127.52)
- # [09:24] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: Don't follow me)
- # [09:24] * Quits: axos411 (~axos@xdsl-78-35-167-150.netcologne.de) (Quit: Leaving.)
- # [09:30] * Joins: Moonies (~Bongle@unaffiliated/moonies)
- # [09:36] * Joins: _inc (~inc@unaffiliated/-inc/x-0498339)
- # [09:40] * Joins: pinage404 (~pinage404@APuteaux-651-1-258-249.w82-120.abo.wanadoo.fr)
- # [09:41] * Quits: caniuse (~caniuse@li239-175.members.linode.com) (Remote host closed the connection)
- # [09:41] * Joins: caniuse (~caniuse@li239-175.members.linode.com)
- # [09:45] <thezoggy> hi
- # [09:45] <thezoggy> <-- Jonathon
- # [09:45] <thezoggy> the only way to spell it :p
- # [09:45] * thezoggy is now known as _zoggy_
- # [09:46] * Joins: venom00ut (~venom00@net-188-218-168-8.cust.dsl.vodafone.it)
- # [09:46] * Quits: venom00ut (~venom00@net-188-218-168-8.cust.dsl.vodafone.it) (Changing host)
- # [09:46] * Joins: venom00ut (~venom00@unaffiliated/venom00)
- # [09:57] * Joins: SAngeli (~SAngeli@host242-77-static.82-94-b.business.telecomitalia.it)
- # [09:59] * Moonies is now known as two2daN
- # [10:02] * Joins: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl)
- # [10:05] * two2daN is now known as Moonies
- # [10:12] * Quits: machiolate (~thetentma@cpe-98-154-161-205.socal.res.rr.com) (Remote host closed the connection)
- # [10:16] * Quits: patcito (~123@190.42.254.219) (Remote host closed the connection)
- # [10:17] * Quits: monteslu (~monteslu@ip68-109-174-213.ph.ph.cox.net) (Ping timeout: 255 seconds)
- # [10:19] * Joins: PsiliPharm (~psiliphar@50.10.184.67)
- # [10:21] <chee> i hurt myself peeing
- # [10:21] <chee> iersetjhlnedfh
- # [10:21] <chee> wrong window
- # [10:22] * Quits: Nathandim (~textual@athedsl-4367546.home.otenet.gr) (Quit: My mac has gone to sleep.)
- # [10:24] * Quits: _inc (~inc@unaffiliated/-inc/x-0498339) (Ping timeout: 252 seconds)
- # [10:27] * Joins: _inc (~inc@unaffiliated/-inc/x-0498339)
- # [10:29] * Joins: monteslu (~monteslu@ip68-109-174-213.ph.ph.cox.net)
- # [10:29] * Joins: deasy (~deasy@109.89.87.172)
- # [10:30] <Moonies> right window
- # [10:30] * Joins: insin (~insin@host31-53-14-193.range31-53.btcentralplus.com)
- # [10:35] * Quits: ageis (kevin@ageispolis.net) (Ping timeout: 272 seconds)
- # [10:36] * Quits: insin (~insin@host31-53-14-193.range31-53.btcentralplus.com) (Quit: What's the point in giving us haaaaannnds?)
- # [10:39] * Joins: ageis (kevin@ageispolis.net)
- # [10:39] * Joins: neciO (~juan@d51A447EF.access.telenet.be)
- # [10:41] * Joins: davidbanham (~davidbanh@95.27.233.220.static.exetel.com.au)
- # [10:41] * Joins: Shusshu (~shu@ip51cd1542.speed.planet.nl)
- # [10:42] * Joins: flra (~alexandru@86.125.230.248)
- # [10:42] * Joins: kaichanvong (u2773@gateway/web/irccloud.com/x-kitpcxsgzvhmhuxy)
- # [10:44] * Quits: Shusshu (~shu@ip51cd1542.speed.planet.nl) (Client Quit)
- # [10:44] <chee> Moonies: ololo
- # [10:45] <Moonies> /me strokes chee
- # [10:46] * Joins: rbrooks_ (~jwbf75ug@gateway/tor-sasl/jwbf75ug)
- # [10:46] <Moonies> OH GOD
- # [10:46] <Moonies> HOW VULGAR
- # [10:47] * Joins: dnstbr (~dnstbr@cpe-72-191-156-43.rgv.res.rr.com)
- # [10:48] * Joins: XklamationMarc (~Xklamatio@unaffiliated/xklamationmarc)
- # [10:49] * Quits: rbrooks (~jwbf75ug@gateway/tor-sasl/jwbf75ug) (Ping timeout: 276 seconds)
- # [10:52] * Joins: tylerstalder (~tylerstal@c-76-21-12-194.hsd1.ca.comcast.net)
- # [10:53] * Joins: whitman (~whitman@87-194-159-116.bethere.co.uk)
- # [10:56] * Quits: coeus (~coeus@dslb-084-061-056-177.pools.arcor-ip.net) (Ping timeout: 252 seconds)
- # [10:57] * Quits: Lightheaded (~lighthead@225-216-131-46.internet.emt.ee) (Read error: Connection reset by peer)
- # [10:58] * Joins: Lightheaded (~lighthead@225-216-131-46.internet.emt.ee)
- # [10:58] * Quits: jetienne_ (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Quit: jetienne_)
- # [10:59] * Quits: danja (~danny@host108-236-static.12-87-b.business.telecomitalia.it) (Ping timeout: 246 seconds)
- # [11:02] * Quits: chriseppstein (~chrisepps@99-6-85-4.lightspeed.sntcca.sbcglobal.net) (Quit: chriseppstein)
- # [11:03] * Joins: Evanescence (~Evanescen@60.183.228.186)
- # [11:08] * Parts: Sita (~sitafn@unaffiliated/sita)
- # [11:10] * Joins: bot-t1 (~bot-t@unaffiliated/temp01/bot/bot-t)
- # [11:10] * Quits: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t) (Disconnected by services)
- # [11:10] * Joins: Jonadabe (~Jonadabe@bl10-136-55.dsl.telepac.pt)
- # [11:11] * Quits: caasiHuang (~caasiHuan@59-126-203-62.HINET-IP.hinet.net) (Remote host closed the connection)
- # [11:13] * Joins: danja (~danny@host46-207-dynamic.8-79-r.retail.telecomitalia.it)
- # [11:13] * Joins: caasiHuang (~caasiHuan@59-126-203-62.HINET-IP.hinet.net)
- # [11:13] * Quits: Evanescence (~Evanescen@60.183.228.186) (Quit: my website: http://stardiviner.dyndns-blog.com/)
- # [11:13] * Quits: caasiHuang (~caasiHuan@59-126-203-62.HINET-IP.hinet.net) (Remote host closed the connection)
- # [11:16] * Quits: GhostFreeman (~GhostFree@67.218.172.11) (Quit: Not here, will respond later)
- # [11:17] * Joins: jetienne_ (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [11:24] * Quits: pneftali (~pneftali@120.28.233.253) (Ping timeout: 252 seconds)
- # [11:33] * Joins: Taftse (~Taftse@unaffiliated/taftse)
- # [11:34] * Joins: ZeepZop (~chatzilla@cpe-75-84-90-74.socal.res.rr.com)
- # [11:34] * Quits: Moonies (~Bongle@unaffiliated/moonies) (Quit: quack)
- # [11:34] * Quits: bot-t1 (~bot-t@unaffiliated/temp01/bot/bot-t) (Read error: Connection reset by peer)
- # [11:37] * Joins: csprite (~chatzilla@190.6.232.66)
- # [11:38] * Joins: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t)
- # [11:40] * Joins: janimati (janimati@176.97.27.34)
- # [11:42] <janimati> hello
- # [11:45] * Joins: Jayflux (~jay_knows@cpc1-dudl6-0-0-cust1981.wolv.cable.virginmedia.com)
- # [11:47] * Joins: nonge_ (~nonge@p5B326D89.dip.t-dialin.net)
- # [11:51] * Quits: nonge (~nonge@p5082BD6D.dip.t-dialin.net) (Ping timeout: 264 seconds)
- # [11:52] * Joins: koggdal (~koggdal@c213-89-119-74.bredband.comhem.se)
- # [11:55] * Quits: Lightheaded (~lighthead@225-216-131-46.internet.emt.ee) (Read error: Connection reset by peer)
- # [11:55] * Parts: devilsbackyard (~kushagra@117.203.12.152)
- # [11:58] * Joins: drublic (~drublic@frbg-5d84f748.pool.mediaWays.net)
- # [12:01] * Quits: pinage404 (~pinage404@APuteaux-651-1-258-249.w82-120.abo.wanadoo.fr) (Quit: Screw you guys I'm going home)
- # [12:04] * Quits: dabbad00 (~dabbad00@71-211-210-74.hlrn.qwest.net) (Ping timeout: 255 seconds)
- # [12:07] * Joins: Robinux (~Johnson@unaffiliated/robinux)
- # [12:13] * Quits: gyzmodo (x@89.146.104.139) (Read error: Connection reset by peer)
- # [12:14] * Quits: davidbanham (~davidbanh@95.27.233.220.static.exetel.com.au) (Remote host closed the connection)
- # [12:15] * Joins: davidbanham (~davidbanh@95.27.233.220.static.exetel.com.au)
- # [12:17] * Quits: davidbanham (~davidbanh@95.27.233.220.static.exetel.com.au) (Remote host closed the connection)
- # [12:22] * Quits: ZeepZop (~chatzilla@cpe-75-84-90-74.socal.res.rr.com) (Quit: ChatZilla 0.9.88.1 [Firefox 11.0/20120310010446])
- # [12:24] * Quits: tylerstalder (~tylerstal@c-76-21-12-194.hsd1.ca.comcast.net) (Quit: Computer has gone to sleep.)
- # [12:25] * Quits: janimati (janimati@176.97.27.34) (Quit: Leaving)
- # [12:27] * Quits: Robinux (~Johnson@unaffiliated/robinux) (Ping timeout: 264 seconds)
- # [12:29] * Quits: csprite (~chatzilla@190.6.232.66) (Quit: ChatZilla 0.9.88.1 [Firefox 11.0/20120312181643])
- # [12:33] * Joins: jblanche (~jblanche@ivr94-10-88-177-169-11.fbx.proxad.net)
- # [12:35] * Quits: jetienne_ (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Quit: i love javascript and webgl. see http://pacmaze.com)
- # [12:35] * Joins: jetienne_ (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [12:35] * Joins: Robinux (~Johnson@unaffiliated/robinux)
- # [12:36] * Joins: samol (~samol@coc119.neoplus.adsl.tpnet.pl)
- # [12:40] * Quits: whitman (~whitman@87-194-159-116.bethere.co.uk)
- # [12:40] * Joins: roadt (~roadt@60.168.89.68)
- # [12:41] * Joins: robhawkes (~robhawkes@188-220-16-96.dsl.cnl.uk.net)
- # [12:46] * Quits: Jonadabe (~Jonadabe@bl10-136-55.dsl.telepac.pt) (Quit: http://www.visitportugal.com | http://www.youtube.com/visitportugal)
- # [12:47] * Joins: sarro (~sarro@i5E864B4F.versanet.de)
- # [12:48] * Quits: sphinxxx (~sphinxxx@pool-74-102-8-51.nwrknj.fios.verizon.net) (Quit: sphinxxx)
- # [12:51] * Quits: flra (~alexandru@86.125.230.248) (Quit: Leaving.)
- # [12:53] * Quits: PsiliPharm (~psiliphar@50.10.184.67) (Remote host closed the connection)
- # [12:57] * Joins: flra (~alexandru@86.125.230.248)
- # [12:58] * Quits: flra (~alexandru@86.125.230.248) (Max SendQ exceeded)
- # [12:58] * Joins: flra (~alexandru@86.125.230.248)
- # [12:59] * Quits: flra (~alexandru@86.125.230.248) (Max SendQ exceeded)
- # [12:59] * Joins: flra (~alexandru@86.125.230.248)
- # [13:04] * Joins: johnkpaul (~johnkpaul@pool-96-250-167-7.nycmny.fios.verizon.net)
- # [13:08] * Joins: Evanescence (~Evanescen@60.183.228.186)
- # [13:16] * Joins: bot-t1 (~bot-t@unaffiliated/temp01/bot/bot-t)
- # [13:16] * Quits: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t) (Disconnected by services)
- # [13:16] * Quits: temp02 (~temp01@unaffiliated/temp01) (Ping timeout: 272 seconds)
- # [13:19] * Joins: temp01 (~temp01@unaffiliated/temp01)
- # [13:20] * Joins: austincheney (~IceChat77@108-72-77-136.lightspeed.rcsntx.sbcglobal.net)
- # [13:24] * Joins: necolas (~necolas@host-92-12-160-162.as43234.net)
- # [13:24] * Quits: elnn (~elnn@martini.snu.ac.kr) (Ping timeout: 246 seconds)
- # [13:25] * Joins: elnn (~elnn@martini.snu.ac.kr)
- # [13:25] * Joins: jacobolu_ (~jacobolus@50-0-133-210.dsl.static.sonic.net)
- # [13:29] * Joins: rickibalboa (~ricki@84.19.108.75)
- # [13:29] * Quits: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net) (Ping timeout: 248 seconds)
- # [13:37] * Joins: Joefish (~Joefish@p4FDA8A55.dip0.t-ipconnect.de)
- # [13:45] * Quits: jochen__ (jochen@nat/google/x-eoainiaynevynpuf) (Remote host closed the connection)
- # [13:45] * Joins: jochen__ (jochen@nat/google/x-inxaaasieedsdmvp)
- # [13:45] * Quits: samol (~samol@coc119.neoplus.adsl.tpnet.pl) (Read error: Operation timed out)
- # [13:45] * Quits: jetienne_ (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Quit: jetienne_)
- # [13:46] * Joins: davidbanham (~davidbanh@95.27.233.220.static.exetel.com.au)
- # [13:48] * Quits: Robinux (~Johnson@unaffiliated/robinux) (Quit: Leaving IRC forever... :()
- # [13:52] * Joins: pierreghz (~pierreghz@cust-93-63-111-94.dyn.as47377.net)
- # [13:55] * Joins: srp_ (~quassel@115.99.249.238)
- # [13:59] * Joins: srp__ (~quassel@115.99.249.238)
- # [13:59] * Joins: krater (benito@177.48.93.35)
- # [14:00] * Parts: krater (benito@177.48.93.35)
- # [14:00] * Joins: samol (~samol@accb193.neoplus.adsl.tpnet.pl)
- # [14:02] * Joins: Lightheaded (~lighthead@251.18.50.84.dyn.estpak.ee)
- # [14:04] * johnkpaul is now known as johnkpaul-afk
- # [14:06] * Quits: srp__ (~quassel@115.99.249.238) (Read error: Connection reset by peer)
- # [14:08] * Quits: srp_ (~quassel@115.99.249.238) (Read error: Connection reset by peer)
- # [14:09] * Quits: roadt (~roadt@60.168.89.68) (Ping timeout: 264 seconds)
- # [14:17] * Joins: Gjedda-Reite (~chris@213.109-247-20.customer.lyse.net)
- # [14:17] * Joins: gasbakid (~gasbakid@41.96.117.156)
- # [14:18] * Joins: sean`` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl)
- # [14:18] * Quits: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl) (Ping timeout: 245 seconds)
- # [14:21] * Joins: BauerUK_ (~b@cpc21-wiga12-2-0-cust7.18-3.cable.virginmedia.com)
- # [14:21] * Joins: gdr (~gdr@galath.net)
- # [14:21] * Joins: g105b (~g105b@cpc3-derb14-2-0-cust187.8-3.cable.virginmedia.com)
- # [14:21] * Joins: samol_ (~samol@accb193.neoplus.adsl.tpnet.pl)
- # [14:23] * Quits: Lightheaded (~lighthead@251.18.50.84.dyn.estpak.ee) (Ping timeout: 246 seconds)
- # [14:24] * Quits: danja (~danny@host46-207-dynamic.8-79-r.retail.telecomitalia.it) (Quit: gorn)
- # [14:25] * Joins: gmcabrita_ (u4474@gateway/web/irccloud.com/x-cnoamsyxpcrardpz)
- # [14:26] * Quits: gmcabrita (u4474@gateway/web/irccloud.com/x-rcjorxinorcsnkhe) (Disconnected by services)
- # [14:26] * gmcabrita_ is now known as gmcabrita
- # [14:26] * Quits: samol (~samol@accb193.neoplus.adsl.tpnet.pl) (*.net *.split)
- # [14:26] * Quits: monteslu (~monteslu@ip68-109-174-213.ph.ph.cox.net) (*.net *.split)
- # [14:26] * Quits: Reite (~chris@213.109-247-20.customer.lyse.net) (*.net *.split)
- # [14:26] * Quits: gavin_huang (~gravof@115.214.244.79) (*.net *.split)
- # [14:26] * Quits: sw0rdfish (~Johnson@unaffiliated/robinux) (*.net *.split)
- # [14:26] * Quits: ajvb (~avb@ec2-50-16-91-243.compute-1.amazonaws.com) (*.net *.split)
- # [14:26] * Quits: BauerUK (~b@cpc21-wiga12-2-0-cust7.18-3.cable.virginmedia.com) (*.net *.split)
- # [14:28] * Joins: monteslu (~monteslu@ip68-109-174-213.ph.ph.cox.net)
- # [14:28] * Joins: ajvb (~avb@ec2-50-16-91-243.compute-1.amazonaws.com)
- # [14:28] * Joins: gavin_huang (~gravof@115.214.244.79)
- # [14:29] * Quits: FACEFOX (~facefox@pool-74-111-197-200.lsanca.fios.verizon.net) (Ping timeout: 244 seconds)
- # [14:29] * Quits: machine2 (~machine4@pool-74-111-197-200.lsanca.fios.verizon.net) (Ping timeout: 252 seconds)
- # [14:34] * Joins: machine2 (~machine4@pool-74-111-197-200.lsanca.fios.verizon.net)
- # [14:35] * Joins: FACEFOX (~facefox@pool-74-111-197-200.lsanca.fios.verizon.net)
- # [14:39] * Joins: Progster (~blah@pool-173-68-149-113.nycmny.fios.verizon.net)
- # [14:43] * Quits: venom00ut (~venom00@unaffiliated/venom00) (Remote host closed the connection)
- # [14:46] * Quits: thcipriani (~tyler@c-67-176-52-249.hsd1.co.comcast.net) (Ping timeout: 260 seconds)
- # [14:46] * Joins: venom00ut (~venom00@unaffiliated/venom00)
- # [14:48] * Joins: thcipriani (~tyler@c-67-176-52-249.hsd1.co.comcast.net)
- # [14:52] * Quits: gasbakid (~gasbakid@41.96.117.156) (Remote host closed the connection)
- # [14:58] * Quits: sean`` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl) (Ping timeout: 245 seconds)
- # [14:59] * Quits: dnstbr (~dnstbr@cpe-72-191-156-43.rgv.res.rr.com) (Quit: Computer has gone to sleep.)
- # [14:59] * Joins: roadt (~roadt@60.168.89.68)
- # [14:59] * Joins: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl)
- # [15:01] * Joins: uu (~uu@115.85.239.248)
- # [15:05] * Joins: snowfox (~benschaaf@c-98-243-88-119.hsd1.mi.comcast.net)
- # [15:06] * Joins: rickibaloba` (~ricki@84.19.108.75)
- # [15:07] * Quits: snowfox (~benschaaf@c-98-243-88-119.hsd1.mi.comcast.net) (Client Quit)
- # [15:09] * Joins: GhostFreeman (~GhostFree@67.218.172.11)
- # [15:09] * Quits: rickibalboa (~ricki@84.19.108.75) (Ping timeout: 272 seconds)
- # [15:24] * Quits: samol_ (~samol@accb193.neoplus.adsl.tpnet.pl) (Read error: Operation timed out)
- # [15:24] * Joins: sephr (~Eli@unaffiliated/sephr)
- # [15:25] * Joins: krater (benito@177.48.93.35)
- # [15:26] * Quits: DrAwesomeClaws (~DrAwesome@c-71-234-86-254.hsd1.ct.comcast.net) (Ping timeout: 246 seconds)
- # [15:27] * Joins: caasiHuang (~caasiHuan@59-126-203-62.HINET-IP.hinet.net)
- # [15:29] * Joins: marcocarag (~marcocara@pool-72-80-94-176.nycmny.fios.verizon.net)
- # [15:31] * Parts: krater (benito@177.48.93.35)
- # [15:32] * Quits: jblanche (~jblanche@ivr94-10-88-177-169-11.fbx.proxad.net) (Quit: jblanche)
- # [15:40] * Joins: jetienne_ (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [15:47] * Quits: jetienne_ (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Quit: jetienne_)
- # [15:48] * kadiks_ is now known as kadiks
- # [15:53] * Quits: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl) (Quit: Ik ga weg)
- # [15:57] * Joins: Taftse2 (~Taftse@unaffiliated/taftse)
- # [15:58] * Quits: Taftse (~Taftse@unaffiliated/taftse) (Ping timeout: 240 seconds)
- # [16:01] * Quits: Joefish (~Joefish@p4FDA8A55.dip0.t-ipconnect.de)
- # [16:01] * Joins: mike5w3c (~MikeSmith@p15181-obmd01.tokyo.ocn.ne.jp)
- # [16:02] * Joins: rupl (~anonymous@12.14.150.2)
- # [16:03] * Joins: chokri (~chokri@197.27.12.53)
- # [16:03] * Quits: caasiHuang (~caasiHuan@59-126-203-62.HINET-IP.hinet.net) (Remote host closed the connection)
- # [16:04] * Joins: caasiHuang (~caasiHuan@59-126-203-62.HINET-IP.hinet.net)
- # [16:07] * Joins: Joefish (~Joefish@p4FDA8A55.dip0.t-ipconnect.de)
- # [16:11] * Joins: DrAwesomeClaws (~DrAwesome@2002:47ea:56fe:0:3859:4df2:68b0:eb8d)
- # [16:12] * Joins: dmachi (~dmachi@pool-72-66-216-88.ronkva.east.verizon.net)
- # [16:12] * Quits: dmachi1 (~dmachi@pool-72-66-216-88.ronkva.east.verizon.net) (Read error: Connection reset by peer)
- # [16:16] * Joins: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl)
- # [16:16] * Quits: LongBeach (~mike@AFontenayssB-152-1-59-225.w82-121.abo.wanadoo.fr)
- # [16:18] * chokri is now known as Chikore
- # [16:18] * Joins: pandeiro (~mu@bd21cbd8.virtua.com.br)
- # [16:24] * Quits: pandeiro (~mu@bd21cbd8.virtua.com.br) (Ping timeout: 252 seconds)
- # [16:25] * Quits: dr0id (~andy@unaffiliated/dr0id) (Quit: Leaving.)
- # [16:33] * Joins: axos411 (~axos@xdsl-78-35-167-150.netcologne.de)
- # [16:35] * Quits: caasiHuang (~caasiHuan@59-126-203-62.HINET-IP.hinet.net) (Read error: Connection timed out)
- # [16:36] * Joins: caasiHuang (~caasiHuan@59-126-203-62.HINET-IP.hinet.net)
- # [16:37] * Quits: DrAwesomeClaws (~DrAwesome@2002:47ea:56fe:0:3859:4df2:68b0:eb8d) (Remote host closed the connection)
- # [16:44] * Quits: uu (~uu@115.85.239.248) (Quit: 离开)
- # [16:46] * Joins: devongovett (~devongove@140-251.198-178.cust.bluewin.ch)
- # [16:47] * Quits: devongovett (~devongove@140-251.198-178.cust.bluewin.ch) (Read error: Connection reset by peer)
- # [16:48] * Joins: DrAwesomeClaws (~DrAwesome@110.sub-174-252-40.myvzw.com)
- # [16:49] * Joins: devongovett (~devongove@140-251.198-178.cust.bluewin.ch)
- # [16:50] * Joins: miketaylr (~miketaylr@80.232.109.46)
- # [16:53] * Quits: Taftse2 (~Taftse@unaffiliated/taftse) (Read error: Connection reset by peer)
- # [16:53] * rbrooks_ is now known as rbrooks
- # [16:53] * Joins: Taftse (Taftse@unaffiliated/taftse)
- # [16:54] * Quits: axos411 (~axos@xdsl-78-35-167-150.netcologne.de) (Ping timeout: 245 seconds)
- # [16:58] * Joins: silentimp (~silentimp@95.111.250.243)
- # [17:00] * Joins: coeus (~coeus@dslb-084-061-056-177.pools.arcor-ip.net)
- # [17:00] * Quits: devongovett (~devongove@140-251.198-178.cust.bluewin.ch) (Read error: Connection reset by peer)
- # [17:01] * Quits: FACEFOX (~facefox@pool-74-111-197-200.lsanca.fios.verizon.net) (Ping timeout: 240 seconds)
- # [17:02] * Joins: devongovett (~devongove@140-251.198-178.cust.bluewin.ch)
- # [17:02] * Joins: FACEFOX (~facefox@pool-74-111-197-200.lsanca.fios.verizon.net)
- # [17:04] * Quits: DrAwesomeClaws (~DrAwesome@110.sub-174-252-40.myvzw.com) (Ping timeout: 246 seconds)
- # [17:10] * Joins: DrAwesomeClaws (~DrAwesome@175.sub-174-252-39.myvzw.com)
- # [17:11] * Joins: Robinux (~Johnson@unaffiliated/robinux)
- # [17:12] * Joins: DrAwesom_ (~DrAwesome@38.sub-174-254-164.myvzw.com)
- # [17:15] * Quits: DrAwesomeClaws (~DrAwesome@175.sub-174-252-39.myvzw.com) (Ping timeout: 276 seconds)
- # [17:17] * Quits: DrAwesom_ (~DrAwesome@38.sub-174-254-164.myvzw.com) (Ping timeout: 260 seconds)
- # [17:18] * Joins: axos411 (~axos@xdsl-78-35-167-150.netcologne.de)
- # [17:19] * Quits: debsan (~debsan@190.245.74.16) (Ping timeout: 245 seconds)
- # [17:19] * Quits: johnkpaul-afk (~johnkpaul@pool-96-250-167-7.nycmny.fios.verizon.net)
- # [17:21] * Quits: Chikore (~chokri@197.27.12.53) (Read error: Connection reset by peer)
- # [17:22] * Quits: jacobolu_ (~jacobolus@50-0-133-210.dsl.static.sonic.net) (Remote host closed the connection)
- # [17:23] * Joins: xarxer (~null@2001:9b0:14:2006:219:dbff:fecf:49db)
- # [17:23] * Quits: _inc (~inc@unaffiliated/-inc/x-0498339) (Ping timeout: 252 seconds)
- # [17:25] * Joins: _inc (~inc@unaffiliated/-inc/x-0498339)
- # [17:25] * Joins: debsan (~debsan@190.245.74.16)
- # [17:26] * Quits: Evanescence (~Evanescen@60.183.228.186) (Quit: my website: http://stardiviner.dyndns-blog.com/)
- # [17:32] * Quits: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk) (Remote host closed the connection)
- # [17:33] * Quits: devongovett (~devongove@140-251.198-178.cust.bluewin.ch) (Read error: Connection reset by peer)
- # [17:34] * Joins: devongovett (~devongove@140-251.198-178.cust.bluewin.ch)
- # [17:34] * Quits: axos411 (~axos@xdsl-78-35-167-150.netcologne.de) (Ping timeout: 245 seconds)
- # [17:34] * Quits: Robinux (~Johnson@unaffiliated/robinux) (Quit: Leaving IRC forever... :()
- # [17:34] * Joins: pandeiro (~mu@bd21cbd8.virtua.com.br)
- # [17:34] * Quits: rupl (~anonymous@12.14.150.2) (Ping timeout: 260 seconds)
- # [17:36] * Joins: alrra_ (~alrra@188.24.67.13)
- # [17:38] * Quits: austincheney (~IceChat77@108-72-77-136.lightspeed.rcsntx.sbcglobal.net) (Ping timeout: 265 seconds)
- # [17:38] * Quits: alrra (~alrra@unaffiliated/alrra) (Ping timeout: 245 seconds)
- # [17:41] * Joins: sphinxxx (~sphinxxx@pool-74-102-8-51.nwrknj.fios.verizon.net)
- # [17:49] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [17:53] * Joins: tylerstalder (~tylerstal@c-76-21-12-194.hsd1.ca.comcast.net)
- # [17:58] * Joins: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk)
- # [18:00] * Quits: alrra_ (~alrra@188.24.67.13) (Quit: Leaving)
- # [18:00] * Joins: alrra (~alrra@188.24.67.13)
- # [18:00] * Quits: alrra (~alrra@188.24.67.13) (Changing host)
- # [18:00] * Joins: alrra (~alrra@unaffiliated/alrra)
- # [18:04] * Parts: silentimp (~silentimp@95.111.250.243)
- # [18:07] * Joins: jacobolus (~jacobolus@75-144-246-6-SFBA.hfc.comcastbusiness.net)
- # [18:10] * Quits: Epeli (epeli@melmacian.net) (Quit: Lost terminal)
- # [18:11] * Joins: Epeli (epeli@melmacian.net)
- # [18:11] * Quits: glcrazy (~SiRiuS@rdslink-v90-240.suceava.rdsnet.ro) (Remote host closed the connection)
- # [18:13] * Joins: jblanche (~jblanche@ivr94-10-88-177-169-11.fbx.proxad.net)
- # [18:13] * Joins: krater_ (~benito@201008219035.user.veloxzone.com.br)
- # [18:14] * Joins: choclatboy (~yamcsha@41.141.62.23)
- # [18:15] * Joins: Lightheaded (~lighthead@217.31.196.88.dyn.estpak.ee)
- # [18:16] * Parts: choclatboy (~yamcsha@41.141.62.23)
- # [18:18] * Quits: krater_ (~benito@201008219035.user.veloxzone.com.br) (Ping timeout: 276 seconds)
- # [18:20] * Quits: Orbitrix (Orbitrix@c-68-35-88-96.hsd1.nm.comcast.net) (Ping timeout: 265 seconds)
- # [18:23] * Joins: krater_ (~benito@189.71.58.91)
- # [18:29] * Joins: tantek (~tantek@70-36-139-112.dsl.dynamic.sonic.net)
- # [18:30] * Quits: tantek (~tantek@70-36-139-112.dsl.dynamic.sonic.net) (Client Quit)
- # [18:30] * Joins: Orbitrix (Orbitrix@c-68-35-88-96.hsd1.nm.comcast.net)
- # [18:31] * Quits: squeakytoy (~squeakyto@h87-96-232-107.dynamic.se.alltele.net) (Ping timeout: 246 seconds)
- # [18:31] * Quits: devongovett (~devongove@140-251.198-178.cust.bluewin.ch) (Read error: Connection reset by peer)
- # [18:31] * Joins: devongovett (~devongove@140-251.198-178.cust.bluewin.ch)
- # [18:31] * Joins: tantek (~tantek@70-36-139-112.dsl.dynamic.sonic.net)
- # [18:32] * Quits: necolas (~necolas@host-92-12-160-162.as43234.net) (Remote host closed the connection)
- # [18:33] * Quits: tantek (~tantek@70-36-139-112.dsl.dynamic.sonic.net) (Read error: Connection reset by peer)
- # [18:34] * Joins: huevos (Orbitrix@c-68-35-88-96.hsd1.nm.comcast.net)
- # [18:36] * Quits: Orbitrix (Orbitrix@c-68-35-88-96.hsd1.nm.comcast.net) (Ping timeout: 260 seconds)
- # [18:37] * Quits: caasiHuang (~caasiHuan@59-126-203-62.HINET-IP.hinet.net) (Remote host closed the connection)
- # [18:37] * Joins: cccaldas (~cccaldas@177.17.18.58)
- # [18:38] * Joins: caasiHuang (~caasiHuan@59-126-203-62.HINET-IP.hinet.net)
- # [18:39] * Quits: gavin_huang (~gravof@115.214.244.79) (Quit: Leaving)
- # [18:39] * Quits: moshee (~moshee@unaffiliated/moshee) (Ping timeout: 252 seconds)
- # [18:40] * Joins: moshee (~moshee@unaffiliated/moshee)
- # [18:44] * Joins: whitman (~whitman@87-194-159-116.bethere.co.uk)
- # [18:45] * Joins: michaelw (~michaelw@tor.foldr.org)
- # [18:46] * Quits: marcocarag (~marcocara@pool-72-80-94-176.nycmny.fios.verizon.net) (Quit: marcocarag)
- # [18:51] * Quits: pandeiro (~mu@bd21cbd8.virtua.com.br) (Read error: Operation timed out)
- # [18:57] * Quits: krater_ (~benito@189.71.58.91) (Quit: OUCH!!!)
- # [18:59] * Quits: Lightheaded (~lighthead@217.31.196.88.dyn.estpak.ee) (Ping timeout: 252 seconds)
- # [19:00] * Joins: marcocarag (~marcocara@pool-72-80-94-176.nycmny.fios.verizon.net)
- # [19:01] * Quits: cccaldas (~cccaldas@177.17.18.58) (Ping timeout: 252 seconds)
- # [19:05] * Joins: charvN (~charvN@ip-62-129-44-150.customer.poda.cz)
- # [19:09] * Joins: imsky (~imsky@c-71-194-152-46.hsd1.in.comcast.net)
- # [19:10] * Quits: roadt (~roadt@60.168.89.68) (Ping timeout: 246 seconds)
- # [19:11] * Joins: samol (~samol@accb193.neoplus.adsl.tpnet.pl)
- # [19:12] * Joins: Vennril (~vennril@p4FCB0227.dip0.t-ipconnect.de)
- # [19:12] * Joins: boogyman (~boogy@pdpc/supporter/professional/boogyman)
- # [19:16] * Joins: jacine (~jacine@drupal.org/user/88931/view)
- # [19:23] * Joins: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [19:23] * Joins: Ms2ger (~Ms2ger@91.181.21.107)
- # [19:24] * Quits: caasiHuang (~caasiHuan@59-126-203-62.HINET-IP.hinet.net) (Read error: Operation timed out)
- # [19:25] * Joins: caasiHuang (~caasiHuan@59-126-203-62.HINET-IP.hinet.net)
- # [19:29] * Joins: dividinglimits (~boogy@72.184.194.26)
- # [19:31] * Quits: boogyman (~boogy@pdpc/supporter/professional/boogyman) (Ping timeout: 255 seconds)
- # [19:31] * dividinglimits is now known as boogyman
- # [19:32] * Joins: Lightheaded (~lighthead@251.18.50.84.dyn.estpak.ee)
- # [19:36] * Quits: coeus (~coeus@dslb-084-061-056-177.pools.arcor-ip.net) (Quit: Verlassend)
- # [19:40] * Quits: ageis (kevin@ageispolis.net) (Quit: http://ageispolis.net)
- # [19:41] * Joins: austincheney (~IceChat77@108-72-77-136.lightspeed.rcsntx.sbcglobal.net)
- # [19:49] * Joins: Robinux (~Johnson@unaffiliated/robinux)
- # [19:50] * Joins: ageis (kevin@ageispolis.net)
- # [19:50] * Joins: insin (~insin@host31-53-14-193.range31-53.btcentralplus.com)
- # [19:54] * Quits: ageis (kevin@ageispolis.net) (Quit: http://ageispolis.net)
- # [19:56] * Joins: chriseppstein (~chrisepps@99-6-85-4.lightspeed.sntcca.sbcglobal.net)
- # [19:58] * Quits: mr_lou (~sirlou@0x555321d8.adsl.cybercity.dk) (Quit: Ex-Chat)
- # [19:59] * Joins: Me1000 (~Me1000@74-143-218-6.static.insightbb.com)
- # [20:00] * Quits: austincheney (~IceChat77@108-72-77-136.lightspeed.rcsntx.sbcglobal.net) (Ping timeout: 264 seconds)
- # [20:02] * Joins: ageis (kevin@ageispolis.net)
- # [20:06] * Quits: marcocarag (~marcocara@pool-72-80-94-176.nycmny.fios.verizon.net) (Quit: marcocarag)
- # [20:08] * Joins: marcocarag (~marcocara@pool-72-80-94-176.nycmny.fios.verizon.net)
- # [20:10] * Joins: Luxx_ (~highoh@c-67-171-35-186.hsd1.wa.comcast.net)
- # [20:13] * Joins: johnkpaul (~johnkpaul@ool-6c3abe9a.static.optonline.net)
- # [20:16] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: Going!)
- # [20:20] * Joins: ruimarinho (~ruimarinh@a89-152-72-177.cpe.netcabo.pt)
- # [20:22] * Quits: alrra (~alrra@unaffiliated/alrra) (Read error: Connection reset by peer)
- # [20:30] * Joins: austincheney (~IceChat77@108-72-77-136.lightspeed.rcsntx.sbcglobal.net)
- # [20:33] * nonge_ is now known as nonge
- # [20:36] * Joins: mr_lou (~sirlou@0x555321d8.adsl.cybercity.dk)
- # [20:38] * Joins: silentimp (~silentimp@stream-93.195.users.odessa.comstar.net.ua)
- # [20:42] * Joins: patcito (~123@201.240.71.225)
- # [20:47] * Quits: GhostFreeman (~GhostFree@67.218.172.11) (Quit: Not here, will respond later)
- # [20:47] * Quits: silentimp (~silentimp@stream-93.195.users.odessa.comstar.net.ua) (Quit: silentimp)
- # [20:52] * Quits: chovy (~chovy@108-194-42-92.lightspeed.mtryca.sbcglobal.net) (Ping timeout: 244 seconds)
- # [20:53] * Quits: phrearch (~phrearch_@5ED42DE2.cm-7-5a.dynamic.ziggo.nl) (Remote host closed the connection)
- # [20:54] * Joins: chovy (~chovy@108-194-42-92.lightspeed.mtryca.sbcglobal.net)
- # [20:54] * Joins: jetienne_ (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [20:57] * Joins: tmds (~tmds@gateway/tor-sasl/tmds)
- # [20:58] * Parts: gmcabrita (u4474@gateway/web/irccloud.com/x-cnoamsyxpcrardpz)
- # [21:02] * Quits: mr_lou (~sirlou@0x555321d8.adsl.cybercity.dk) (Quit: Ex-Chat)
- # [21:03] * Quits: SAngeli (~SAngeli@host242-77-static.82-94-b.business.telecomitalia.it) (Quit: Sto andando via)
- # [21:04] * Quits: Joefish (~Joefish@p4FDA8A55.dip0.t-ipconnect.de)
- # [21:07] * Quits: _inc (~inc@unaffiliated/-inc/x-0498339) (Ping timeout: 252 seconds)
- # [21:09] * Joins: _inc (~inc@unaffiliated/-inc/x-0498339)
- # [21:12] * Quits: _inc (~inc@unaffiliated/-inc/x-0498339) (Client Quit)
- # [21:13] * Quits: rbrooks (~jwbf75ug@gateway/tor-sasl/jwbf75ug) (Remote host closed the connection)
- # [21:15] * Joins: rbrooks (~jwbf75ug@gateway/tor-sasl/jwbf75ug)
- # [21:15] * Joins: colinwd (~colinwd@static-50-53-32-231.bvtn.or.frontiernet.net)
- # [21:16] * Quits: rbrooks (~jwbf75ug@gateway/tor-sasl/jwbf75ug) (Remote host closed the connection)
- # [21:18] * Joins: SAngeli (~SAngeli@host242-77-static.82-94-b.business.telecomitalia.it)
- # [21:20] * Joins: pandeiro (~mu@187.38.241.17)
- # [21:20] * Joins: tomnewmann (~tomnewman@host81-159-193-54.range81-159.btcentralplus.com)
- # [21:23] * Joins: tiglog (~topeak@118.186.129.169)
- # [21:25] * Joins: BigKing (~BigKing@dslb-146-060-123-204.pools.arcor-ip.net)
- # [21:27] * Quits: SAngeli (~SAngeli@host242-77-static.82-94-b.business.telecomitalia.it) (Quit: Sto andando via)
- # [21:27] * Joins: rbrooks (~jwbf75ug@gateway/tor-sasl/jwbf75ug)
- # [21:27] * Quits: flra (~alexandru@86.125.230.248) (Quit: Leaving.)
- # [21:28] * Quits: jetienne_ (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Quit: jetienne_)
- # [21:29] * Quits: pandeiro (~mu@187.38.241.17) (Ping timeout: 245 seconds)
- # [21:30] * Quits: koggdal (~koggdal@c213-89-119-74.bredband.comhem.se) (Quit: koggdal)
- # [21:31] * Joins: pandeiro (~mu@187.38.241.17)
- # [21:31] * Quits: huevos (Orbitrix@c-68-35-88-96.hsd1.nm.comcast.net) (Ping timeout: 246 seconds)
- # [21:32] * Joins: necolas (~necolas@5ade73f0.bb.sky.com)
- # [21:32] * Quits: rickibaloba` (~ricki@84.19.108.75) (Ping timeout: 240 seconds)
- # [21:32] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [21:35] * Quits: kadiks (~kadiks@APuteaux-652-1-63-157.w83-204.abo.wanadoo.fr) (Quit: Leaving)
- # [21:38] * Quits: pierreghz (~pierreghz@cust-93-63-111-94.dyn.as47377.net) (Quit: Quitte)
- # [21:38] * Joins: uf0_work (~deeznuts@cpe-67-247-8-211.nyc.res.rr.com)
- # [21:42] * Joins: _inc (~inc@unaffiliated/-inc/x-0498339)
- # [21:42] * Joins: jblanche_ (~jblanche@ivr94-10-88-177-169-11.fbx.proxad.net)
- # [21:43] * Quits: jblanche (~jblanche@ivr94-10-88-177-169-11.fbx.proxad.net) (Read error: Connection reset by peer)
- # [21:43] * jblanche_ is now known as jblanche
- # [21:43] * Joins: ruimarinh (~ruimarinh@a89-152-72-177.cpe.netcabo.pt)
- # [21:44] * Joins: mbeenen (~user@c-98-232-8-119.hsd1.wa.comcast.net)
- # [21:47] * Joins: Orbitrix (Orbitrix@c-68-35-88-96.hsd1.nm.comcast.net)
- # [21:47] * Quits: ruimarinho (~ruimarinh@a89-152-72-177.cpe.netcabo.pt) (Ping timeout: 246 seconds)
- # [21:51] * Quits: Orbitrix (Orbitrix@c-68-35-88-96.hsd1.nm.comcast.net) (Ping timeout: 244 seconds)
- # [21:59] * Joins: manuchill (~mstalfoor@81.69.16.186)
- # [21:59] * Quits: clouder`grr (nospam@cpe-24-242-30-84.elp.res.rr.com) (Ping timeout: 240 seconds)
- # [22:01] * Joins: cccaldas (~cccaldas@177.17.18.58)
- # [22:05] * Parts: ageis (kevin@ageispolis.net)
- # [22:05] * Quits: Progster (~blah@pool-173-68-149-113.nycmny.fios.verizon.net) (Ping timeout: 260 seconds)
- # [22:06] * Joins: dnstbr (~dnstbr@cpe-72-191-156-43.rgv.res.rr.com)
- # [22:06] * Quits: cccaldas (~cccaldas@177.17.18.58) (Ping timeout: 264 seconds)
- # [22:10] * Joins: Orbitrix (Orbitrix@c-68-35-88-96.hsd1.nm.comcast.net)
- # [22:11] * Joins: silentimp (~silentimp@37.19.193.221)
- # [22:14] * Quits: Me1000 (~Me1000@74-143-218-6.static.insightbb.com) (Quit: Bye!)
- # [22:17] * Quits: monteslu (~monteslu@ip68-109-174-213.ph.ph.cox.net) (Ping timeout: 255 seconds)
- # [22:19] * Quits: robhawkes (~robhawkes@188-220-16-96.dsl.cnl.uk.net) (Quit: Linkinus - http://linkinus.com)
- # [22:23] * Joins: cccaldas (~cccaldas@177.17.18.58)
- # [22:23] * Quits: manuchill (~mstalfoor@81.69.16.186) (Ping timeout: 246 seconds)
- # [22:23] * Quits: cccaldas (~cccaldas@177.17.18.58) (Client Quit)
- # [22:24] * Joins: cccaldas (~cccaldas@177.17.18.58)
- # [22:29] * Joins: monteslu (~monteslu@ip68-109-174-213.ph.ph.cox.net)
- # [22:30] * Joins: andr3 (~andr3@bl14-164-78.dsl.telepac.pt)
- # [22:30] * Quits: Robinux (~Johnson@unaffiliated/robinux) (Ping timeout: 252 seconds)
- # [22:33] * Quits: austincheney (~IceChat77@108-72-77-136.lightspeed.rcsntx.sbcglobal.net) (Ping timeout: 264 seconds)
- # [22:33] * Quits: Mattc0m (mrnuclear0@c-68-50-205-184.hsd1.wv.comcast.net) (Read error: Connection reset by peer)
- # [22:34] * Joins: Mattc0m (mrnuclear0@c-68-50-205-184.hsd1.wv.comcast.net)
- # [22:35] * Joins: axos411 (~axos@xdsl-84-44-154-201.netcologne.de)
- # [22:38] * Joins: manuchill (~mstalfoor@81.69.16.186)
- # [22:38] * Quits: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl) (Quit: Ik ga weg)
- # [22:40] * Quits: devongovett (~devongove@140-251.198-178.cust.bluewin.ch) (Quit: devongovett)
- # [22:44] * Joins: Robinux (~Johnson@unaffiliated/robinux)
- # [22:45] * Joins: austincheney (~IceChat77@108-72-77-136.lightspeed.rcsntx.sbcglobal.net)
- # [22:50] * Quits: austincheney (~IceChat77@108-72-77-136.lightspeed.rcsntx.sbcglobal.net) (Ping timeout: 264 seconds)
- # [22:54] * Quits: Ms2ger (~Ms2ger@91.181.21.107) (Quit: nn)
- # [22:54] * Quits: silentimp (~silentimp@37.19.193.221) (Ping timeout: 276 seconds)
- # [22:56] * Quits: manuchill (~mstalfoor@81.69.16.186) (Quit: Ex-Chat)
- # [22:56] * Quits: caasiHuang (~caasiHuan@59-126-203-62.HINET-IP.hinet.net) (Remote host closed the connection)
- # [22:57] * Quits: whitman (~whitman@87-194-159-116.bethere.co.uk) (Ping timeout: 252 seconds)
- # [22:58] * Quits: andr3 (~andr3@bl14-164-78.dsl.telepac.pt) (Ping timeout: 244 seconds)
- # [22:58] * Quits: BigKing (~BigKing@dslb-146-060-123-204.pools.arcor-ip.net) (Remote host closed the connection)
- # [22:58] * Joins: odwalla (~shane@184-76-83-2.war.clearwire-wmx.net)
- # [23:04] * Joins: BBBThunda (~IceChat77@pool-71-162-117-84.bstnma.fios.verizon.net)
- # [23:07] * Quits: raj (~raj@unaffiliated/cypha) (Read error: Connection reset by peer)
- # [23:08] * Joins: mritr (~mritr@76-220-61-128.lightspeed.sntcca.sbcglobal.net)
- # [23:15] * Quits: colinwd (~colinwd@static-50-53-32-231.bvtn.or.frontiernet.net) (Remote host closed the connection)
- # [23:15] * Joins: Jon47 (~Adium@pool-74-96-160-56.washdc.fios.verizon.net)
- # [23:17] * Joins: glcrazy (~SiRiuS@rdslink-v90-240.suceava.rdsnet.ro)
- # [23:17] * Joins: colinwd (~colinwd@static-50-53-32-231.bvtn.or.frontiernet.net)
- # [23:18] * Quits: techrush- (~techrush@cpe-76-175-29-57.socal.res.rr.com) (Quit: Leaving)
- # [23:20] * Quits: axos411 (~axos@xdsl-84-44-154-201.netcologne.de) (Quit: Leaving.)
- # [23:25] * Quits: dnstbr (~dnstbr@cpe-72-191-156-43.rgv.res.rr.com)
- # [23:27] * Quits: mritr (~mritr@76-220-61-128.lightspeed.sntcca.sbcglobal.net) (Quit: Colloquy for iPad - http://colloquy.mobi)
- # [23:28] * Joins: caasiHuang (~caasiHuan@59-126-203-62.HINET-IP.hinet.net)
- # [23:34] * Quits: colinwd (~colinwd@static-50-53-32-231.bvtn.or.frontiernet.net) (Remote host closed the connection)
- # [23:36] * Quits: patcito (~123@201.240.71.225) (Ping timeout: 246 seconds)
- # [23:38] <Pomax> paul_irish: this question is a trick
- # [23:38] * Quits: Taftse (Taftse@unaffiliated/taftse) (Read error: Connection reset by peer)
- # [23:38] <Pomax> "What is your primary browser for developing?" cannot possibly be real
- # [23:38] * Joins: Taftse (Taftse@unaffiliated/taftse)
- # [23:38] <Pomax> why can't I click more than one ;)
- # [23:38] * Quits: Taftse (Taftse@unaffiliated/taftse) (Read error: Connection reset by peer)
- # [23:38] <Pomax> (I always codevelop in Chrome in Firefox. With opera as sanity check)
- # [23:38] * Joins: Taftse (Taftse@unaffiliated/taftse)
- # [23:40] * Joins: pinage404 (~pinage404@APuteaux-651-1-258-249.w82-120.abo.wanadoo.fr)
- # [23:40] * Quits: johnkpaul (~johnkpaul@ool-6c3abe9a.static.optonline.net)
- # [23:40] * Joins: grantg (~chatzilla@69.88.160.3)
- # [23:41] * Quits: pinage404 (~pinage404@APuteaux-651-1-258-249.w82-120.abo.wanadoo.fr) (Remote host closed the connection)
- # [23:47] * Quits: davidbanham (~davidbanh@95.27.233.220.static.exetel.com.au) (Remote host closed the connection)
- # [23:47] * Quits: jblanche (~jblanche@ivr94-10-88-177-169-11.fbx.proxad.net) (Quit: jblanche)
- # [23:49] * Joins: schnoomac (~schnoomac@melbourne.99cluster.com)
- # [23:50] * Quits: mh0 (MH0@unaffiliated/mh0) (Ping timeout: 260 seconds)
- # [23:52] * Joins: jblanche (~jblanche@ivr94-10-88-177-169-11.fbx.proxad.net)
- # [23:54] * Joins: GhostFreeman (~GhostFree@64.134.186.229)
- # [23:55] * Joins: colinwd (~colinwd@static-50-53-32-231.bvtn.or.frontiernet.net)
- # Session Close: Mon Mar 19 00:00:00 2012
The end :)