Options:
- # Session Start: Tue Jul 26 00:00:00 2011
- # Session Ident: #html5
- # 03[00:02] * Joins: mike5w3c (~MikeSmith@EM1-112-250-5.pool.e-mobile.ne.jp)
- # 02[00:03] * Quits: wookiehangover (~wookiehan@c-98-245-45-244.hsd1.co.comcast.net) (Quit: Leaving...)
- # [00:04] <paul_irish> sic1: be sure to turn off mootools in the base fiddle
- # [00:04] <paul_irish> sandprickle: master branchhhhhhhhhh
- # [00:05] <sandprickle> ok thx man
- # [00:05] <grantg> even irish. :)
- # [00:05] <grantg> *evening
- # [00:07] <paul_irish> hey bro
- # [00:07] <grantg> I just posted in #audio about nezulator using xaudiojs now. :)
- # [00:08] <grantg> so web audio is used in that jsnes fork. :)
- # [00:08] <xonecas> grantg: o/
- # 02[00:08] * Quits: tw2113 (~tw2113@fedora/tw2113) (Ping timeout: 246 seconds)
- # [00:09] <grantg> hey xonecas
- # 03[00:09] * Joins: martin2df (~quassel@212.43.58.82)
- # 02[00:09] * Quits: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk) (Quit: Leaving.)
- # 02[00:11] * Quits: martin2df (~quassel@212.43.58.82) (Client Quit)
- # [00:11] <grantg> xonecas: http://zelex.net/nezulator/ should sound better than jsnes in chrome
- # [00:11] <grantg> at least on mac os x
- # [00:11] <grantg> much less latency
- # 03[00:13] * Joins: ighisas (~ighisas@122x212x216x66.ap122.ftth.ucom.ne.jp)
- # 02[00:14] * Quits: shipit (~shipit@204-15-2-155-static.ipnetworksinc.net) (Remote host closed the connection)
- # 03[00:14] * Parts: sandprickle (~sandprick@12-26-17-156.hopitelecom.net)
- # [00:18] <grantg> xonecas: meanwhile with js gba - http://pastebin.com/QtMhXNr8
- # [00:19] <grantg> double checking the hardware multiplication instrs for arm.
- # [00:19] <grantg> especially since it's 64 bit
- # [00:19] <grantg> and bitwise in js only does 32-bit signed
- # 02[00:21] * Quits: koggdal (~koggdal@user171.77-105-221.netatonce.net) (Quit: koggdal)
- # 02[00:21] * Quits: voxpelli (~anonymous@83.176.255.215) (Quit: voxpelli)
- # [00:23] <xonecas> You've been busy
- # [00:23] <xonecas> I need to update the build here at home
- # [00:23] <xonecas> haven't played in a while
- # [00:23] <xonecas> been gone
- # [00:23] <grantg> check the conditional nibble of the instruction for conditional execution, chunk the instr decoding, cast to unsigned 32, then multiply the two 32-bit unsigned values from registers, then add to existing value if accumulate flag is set, do some more js foo for grabbing the top 32 bits of the 64 bit result if need be ((x / 0x100000000) | 0) trick), update the CPSR registers if the S bit is...
- # [00:23] <grantg> ...set in the instruction, wrap it up.
- # 02[00:24] * Quits: Aamir (~aamirafri@cpc1-epso2-0-0-cust593.6-3.cable.virginmedia.com) (Quit: Away!)
- # [00:24] <grantg> :)
- # 03[00:25] * Joins: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
- # [00:25] <xonecas> Can you speak english :-P
- # [00:27] <grantg> me wants 64-bit bitwise for js
- # [00:27] <grantg> otherwise you have to use regular math ops to solve anything beyond 32-bit math
- # 02[00:28] * Quits: Manuel`AC (~manuel@unaffiliated/acmanuel/x-6275086) (Ping timeout: 246 seconds)
- # [00:28] <grantg> you divide by 0x100000000 to make anything in the lower 32 bits below the floating point
- # [00:28] <xonecas> I see
- # 02[00:28] * Quits: cocoadaemon (~cocoadaem@2a01:e35:8a99:e90:20d:93ff:fe3b:868c) (Quit: cocoadaemon)
- # [00:29] <grantg> then you use the | 0 trick to bound as 32-bit and drop the floating point.
- # [00:29] <grantg> :D
- # [00:29] <xonecas> :-)
- # [00:29] <nimbu> wayy too deep grantg
- # [00:29] <grantg> bitwise in js is limited to 32-bit, *but not regular math.*
- # [00:29] <grantg> heh
- # [00:31] <xonecas> grantg: I agree with nimbu lol
- # 02[00:31] * Quits: David_Bradbury (~chatzilla@75-147-178-254-Washington.hfc.comcastbusiness.net) (Quit: ChatZilla 0.9.87 [Firefox 5.0/20110615151330])
- # [00:32] <grantg> try >> 0 and >>> 0 in jsfiddle
- # [00:32] <grantg> subtle differences
- # [00:32] <grantg> one does the sign bit, the other doesn't.
- # 03[00:32] * Joins: remysharp (~remysharp@67.23.204.2)
- # [00:32] <grantg> making sure you're doing unsigned bit math is kinda important. :D
- # [00:32] <xonecas> But you have been busy while I was gone. I learned my lesson to not to code while on vacations (drunk) xonecas.com
- # [00:32] <grantg> heh
- # [00:32] <xonecas> ahah
- # [00:33] <xonecas> Sorry crock man told me not to use bitwise operators
- # [00:33] <grantg> xonecas: and ARM CPUs use a funny shift method for offsetting immediate values
- # [00:33] <grantg> ((immediate << (0x20 - shift)) | (immediate >> shift))
- # [00:33] <grantg> weeeee
- # [00:34] <grantg> shift right and carry into from the left
- # [00:34] <grantg> >_>
- # [00:34] <xonecas> grantg I worry about your sanity if you keep this up
- # 02[00:34] * Quits: x29a (~x29a@unaffiliated/x29a) (Ping timeout: 255 seconds)
- # [00:34] <grantg> xonecas: Do you really know how long JS GBA has been going on?
- # [00:34] <grantg> since JS GBC started
- # [00:34] <Peter`> give him his moment, he's just bragging off xonecas
- # [00:35] <grantg> last year
- # [00:35] <grantg> Peter`: :|
- # [00:35] <xonecas> I can see the dates in the repos
- # [00:35] <xonecas> Peter`: after all the time he has spent on this he needs some venting off
- # [00:35] <grantg> xonecas: The repo dates are after js gbc was almost done. :)
- # [00:35] <grantg> xonecas: I have been on too much
- # [00:35] <xonecas> ahahaha
- # [00:35] <xonecas> I kind of figured that muc
- # [00:35] <xonecas> much
- # 03[00:36] * Joins: phishbor (~runtalan@209-234-189-154.static.twtelecom.net)
- # [00:36] <grantg> simulating a cpu pipeline in js is fun. :)
- # [00:36] <grantg> that too. :)
- # [00:37] <grantg> "the program counter does not actually match the location of the currently executing instruction, apply a variable offset to that depending on the depth of the pipeline itself" <-- lol
- # 03[00:37] * Parts: Rik` (~Rik`@2a01:e34:ec0f:1570:e8d4:5762:3def:e451) ("Leaving...")
- # 02[00:37] * Quits: Jayflux (~jay_knows@cpc1-dudl6-0-0-cust197.wolv.cable.virginmedia.com) (Quit: ( www.nnscript.com :: NoNameScript 4.22 :: www.esnation.com ))
- # [00:38] <xonecas> well at least the docs tell you that
- # [00:38] <grantg> because the pc is used in the fetch staging pipeline
- # 03[00:38] * Joins: x29a (~x29a@g224219002.adsl.alicedsl.de)
- # [00:38] <grantg> true
- # 02[00:38] * Quits: x29a (~x29a@g224219002.adsl.alicedsl.de) (Remote host closed the connection)
- # 02[00:38] * Quits: phishbot (~runtalan@unaffiliated/phishbot) (Ping timeout: 276 seconds)
- # [00:39] <grantg> fetch/decode/execute
- # [00:39] <grantg> so what you're dealing with was determined two pipeline syncs ago
- # [00:39] <grantg> except on certain instructions, where a nasty flush can happen. :(
- # 03[00:41] * Joins: shipit (~shipit@204-15-2-155-static.ipnetworksinc.net)
- # 03[00:44] * Joins: phishbot (~runtalan@unaffiliated/phishbot)
- # 02[00:44] * Quits: gypsion (~gypsion@121.1.54.50) (Read error: Connection reset by peer)
- # 02[00:45] * Quits: phishbor (~runtalan@209-234-189-154.static.twtelecom.net) (Read error: Connection reset by peer)
- # [00:45] <xonecas> grantg: take a break man, play some snes :-P
- # [00:45] <grantg> xonecas: lol
- # [00:46] <grantg> or test some golden sun in google chrome
- # [00:46] <xonecas> there you go
- # 02[00:46] * Quits: jahrome_ (~jahrome@p3E990180.dip.t-dialin.net) (Quit: ChatZilla 0.9.86.1 [SeaMonkey 2.0.14/20110725021547])
- # [00:46] <grantg> but the world map is glitched. :(
- # [00:47] <grantg> cpu cycle accuracy is still a bummer. D:
- # [00:47] <grantg> things like branches on special reg values can cause extra clocking, so I need to fix that
- # [00:48] <grantg> (i.e. pipeline flush)
- # [00:48] <paul_irish> just wrote this. tweak if you want https://developer.mozilla.org/Creating_and_triggering_custom_events
- # [00:49] <grantg> nice
- # [00:51] <grantg> look what I found in a library today: http://i.imgur.com/duSnM.png
- # [00:51] <grantg> "The Internet Unleashed (c) 1994" - now on floppy
- # [00:51] <grantg> and stuck inside a cd case. LOL
- # [00:51] <xonecas> ahahahaha
- # [00:51] <xonecas> funny stuff there
- # [00:52] <grantg> found in the bowels of a library, next to programming for windows 3.11
- # [00:52] <xonecas> paul_irish: what is the dispatchEvent method?
- # 02[00:52] * Quits: dgathright (~dgathrigh@nat/yahoo/x-rzttoqzwbtbqrfvn) (Quit: dgathright)
- # [00:53] <paul_irish> standard dom level 2 event method
- # [00:54] <xonecas> I'm reading the docs, it's the trigger :-)
- # 03[00:54] * jacine is now known as jacine|brb
- # [00:54] <xonecas> <- foreigner, some times I need my keywords...
- # 02[00:56] * Quits: mike5w3c (~MikeSmith@EM1-112-250-5.pool.e-mobile.ne.jp) (Ping timeout: 276 seconds)
- # 03[00:59] * Joins: jahrome_ (~jahrome@p3E990180.dip.t-dialin.net)
- # 02[01:00] * Quits: remysharp (~remysharp@67.23.204.2) (Quit: Shazam)
- # [01:01] <sic1> paul_irish: mdc needs some help with copy and pasting code, but that is awesome! whats the compatibility like?
- # [01:01] <grantg> damn tf2 spies - http://i.imgur.com/ki96g.png
- # [01:01] <grantg> haters gonna hate big time
- # [01:02] <sic1> and dude, DUDE....i cant figure out how im bricking that transition, about...30% of the time it works as expected, the other %...does the initial animation onload
- # [01:03] <sic1> it would make me feel better if i could blame you tho
- # [01:03] <paul_irish> sic1: compat is everywhere but oldIE
- # [01:04] <paul_irish> feel free blaming me
- # [01:04] <sic1> sweetness x2
- # 02[01:05] * Quits: RaceCondition (~erik@82.131.64.95.cable.starman.ee) (Quit: RaceCondition)
- # [01:05] <gseguin> nimbu: thank you!
- # [01:05] <nimbu> gseguin: o for what :||
- # [01:06] <gseguin> the message that bot-t just delivered to me
- # [01:06] <nimbu> o right
- # [01:06] <nimbu> :))
- # [01:06] <gseguin> I'll give it a try
- # 02[01:06] * Quits: necolas (~necolas@5e0425de.bb.sky.com) (Remote host closed the connection)
- # 02[01:08] * Quits: moshee (~moshee@unaffiliated/moshee) (Ping timeout: 276 seconds)
- # 03[01:08] * Joins: RaceCondition (~erik@82.131.64.95.cable.starman.ee)
- # 03[01:08] * Joins: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net)
- # 02[01:08] * Quits: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net) (Changing host)
- # 03[01:08] * Joins: moshee (~moshee@unaffiliated/moshee)
- # 02[01:08] * Quits: RaceCondition (~erik@82.131.64.95.cable.starman.ee) (Client Quit)
- # 02[01:08] * Quits: robhawkes (~robhawkes@188-220-16-96.dsl.cnl.uk.net) (Quit: Leaving...)
- # 03[01:09] * Joins: dgathright (~dgathrigh@184.234.17.40)
- # 02[01:11] * Quits: BadQuanta (~BadQuanta@pool-98-117-221-233.bltmmd.fios.verizon.net) (Ping timeout: 255 seconds)
- # 02[01:13] * Quits: standup75 (~standup75@204.145.76.130) (Quit: standup75)
- # 02[01:15] * Quits: simplicity- (~simpli@unaffiliated/simplicity-) (Quit: simplicity-)
- # 02[01:16] * Quits: victor_ (~victor@84.232.172.142) (Quit: Ex-Chat)
- # 03[01:18] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # 02[01:24] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Quit: Leaving.)
- # 02[01:26] * Quits: gpsietzema (~gpsietzem@188.201.167.121) (Remote host closed the connection)
- # 03[01:27] * Joins: hitchcock (~bluearcht@c-66-31-136-2.hsd1.ma.comcast.net)
- # 02[01:32] * Quits: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net) (Quit: phishy)
- # 03[01:33] * Joins: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
- # 03[01:35] * Parts: hitchcock (~bluearcht@c-66-31-136-2.hsd1.ma.comcast.net)
- # 02[01:36] * Quits: FireFly (~firefly@unaffiliated/firefly) (Quit: swatted to death)
- # 03[01:41] * jacine|brb is now known as jacine
- # 03[01:42] * Joins: skotttAFK (skottt@c-67-170-101-122.hsd1.wa.comcast.net)
- # 02[01:43] * Quits: ryanneufeld (~ryanneufe@S01060019e1edefc1.vc.shawcable.net) (Remote host closed the connection)
- # 02[01:43] * Quits: skottt (skottt@c-67-170-101-122.hsd1.wa.comcast.net) (Ping timeout: 264 seconds)
- # 02[01:50] * Quits: tigerpaw (~tigerpaw@unaffiliated/tigerpaw) (Quit: purrr)
- # 02[01:52] * Quits: dgathright (~dgathrigh@184.234.17.40) (Read error: Connection timed out)
- # 03[01:54] * Joins: dgathright (~dgathrigh@184.234.17.40)
- # 03[01:55] * Joins: smapde (~smapde@c-24-17-68-208.hsd1.wa.comcast.net)
- # 02[01:55] * Quits: svnlto (~svnlto@78-86-0-182.zone2.bethere.co.uk) (Remote host closed the connection)
- # 03[01:56] * Joins: Evanescence (~chris@122.237.29.189)
- # 03[01:56] * Joins: svenlito (~svnlto@78-86-0-182.zone2.bethere.co.uk)
- # 02[02:00] * Quits: thatryan (~thatryan@adsl-76-254-18-203.dsl.pltn13.sbcglobal.net) (Quit: Leaving...)
- # 03[02:00] * Joins: giulivo (~giulivo@host50-119-static.43-88-b.business.telecomitalia.it)
- # 02[02:01] * Quits: smapde (~smapde@c-24-17-68-208.hsd1.wa.comcast.net) (Read error: Connection reset by peer)
- # 03[02:02] * Joins: smapde (~smapde@c-24-17-68-208.hsd1.wa.comcast.net)
- # 02[02:02] * Quits: dgathright (~dgathrigh@184.234.17.40) (Quit: dgathright)
- # 02[02:03] * Quits: mascix (~mascix@83.66.110.192) (Quit: Leaving.)
- # 02[02:07] * Quits: smapde (~smapde@c-24-17-68-208.hsd1.wa.comcast.net) (Ping timeout: 258 seconds)
- # 03[02:08] * Joins: tigerpaw (~tigerpaw@unaffiliated/tigerpaw)
- # 02[02:12] * Quits: svenlito (~svnlto@78-86-0-182.zone2.bethere.co.uk) (Quit: svenlito)
- # 03[02:12] * Joins: timmywil (~timmywil@host-68-169-175-33.WISOLT2.epbfi.com)
- # 02[02:15] * Quits: ericduran (~ericduran@173-203-243-241.static.cloud-ips.com) (Quit: ericduran)
- # 02[02:15] * Quits: sic1 (~ckihneman@wsip-68-224-173-84.sd.sd.cox.net) (Quit: Computer has gone to sleep)
- # [02:16] <digitalfiz> http://i.imgur.com/7pOwI.jpg
- # 03[02:16] * Joins: sic1 (~ckihneman@wsip-68-224-173-84.sd.sd.cox.net)
- # 02[02:23] * Quits: grantg (~chatzilla@69.88.160.3) (Quit: ChatZilla 0.9.87 [Firefox 5.0.1/20110707182747])
- # 03[02:29] * Joins: RoosterJuice__ (~RoosterJu@S0106001e583db192.cg.shawcable.net)
- # 02[02:30] * Quits: techrush (~techrush@rrcs-173-197-64-177.west.biz.rr.com) (Quit: Leaving)
- # 03[02:32] * Joins: thatryan (~thatryan@c-24-4-109-126.hsd1.ca.comcast.net)
- # 02[02:32] * Quits: RoosterJuice_ (~RoosterJu@S0106001e583db192.cg.shawcable.net) (Ping timeout: 252 seconds)
- # 02[02:33] * Quits: jahrome_ (~jahrome@p3E990180.dip.t-dialin.net) (Quit: ChatZilla 0.9.86.1 [SeaMonkey 2.0.14/20110725021547])
- # 03[02:34] * Joins: jeffszusz (~jeffszusz@d24-57-194-149.home.cgocable.net)
- # 02[02:37] * Quits: timmywil (~timmywil@host-68-169-175-33.WISOLT2.epbfi.com) (Quit: Computer has gone to sleep.)
- # 02[02:42] * Quits: gliese582 (~ManOnTheM@81.202.113.56.dyn.user.ono.com) (Quit: leaving)
- # 02[02:45] * Quits: AppelonD (~AppelonD@0x5551c026.adsl.cybercity.dk) (Ping timeout: 240 seconds)
- # 02[02:54] * Quits: saschagehlich (~saschageh@p5DD5576D.dip.t-dialin.net) (Remote host closed the connection)
- # 02[02:57] * Quits: nimbu (~Adium@72-254-58-68.client.stsn.net) (Quit: Leaving.)
- # 03[02:57] * Joins: BadQuanta (~BadQuanta@pool-98-117-221-233.bltmmd.fios.verizon.net)
- # 03[02:57] * Joins: OzDave_mbp (~OzDave_mb@27-33-43-79.static.tpgi.com.au)
- # 02[02:59] * Quits: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net) (Quit: phishy)
- # 02[03:02] * Quits: sleetx (ajyhsdfgwa@c-98-204-136-53.hsd1.va.comcast.net) (Read error: Connection reset by peer)
- # 03[03:03] * Joins: sleetx (ajyhsdfgwa@c-98-204-136-53.hsd1.va.comcast.net)
- # 02[03:03] * Quits: giulivo (~giulivo@host50-119-static.43-88-b.business.telecomitalia.it) (Ping timeout: 258 seconds)
- # 02[03:03] * Quits: tantek (~tantek@72-254-95-69.client.stsn.net) (Quit: tantek)
- # 02[03:06] * Quits: Jon47 (~jonz@pool-173-79-102-81.washdc.fios.verizon.net) (Quit: Leaving.)
- # 02[03:08] * Quits: gseguin (~anonymous@67.136.90.250) (Quit: gseguin)
- # 02[03:09] * Quits: sleetx (ajyhsdfgwa@c-98-204-136-53.hsd1.va.comcast.net) (Read error: Connection reset by peer)
- # 03[03:09] * Joins: sleetx (ajyhsdfgwa@c-98-204-136-53.hsd1.va.comcast.net)
- # 02[03:12] * Quits: sleetx (ajyhsdfgwa@c-98-204-136-53.hsd1.va.comcast.net) (Read error: Connection reset by peer)
- # 03[03:12] * Joins: sleetx (ajyhsdfgwa@c-98-204-136-53.hsd1.va.comcast.net)
- # 03[03:15] * Joins: giulivo (~giulivo@109.114.19.35)
- # 02[03:19] * Quits: shepazu (~schepers@72-254-62-152.client.stsn.net) (Quit: shepazu)
- # 03[03:19] * Joins: aidalgol (~user@202.36.179.68)
- # 02[03:19] * Quits: axelator (~chatzilla@cn-sfo1-natout.cnet.com) (Remote host closed the connection)
- # 02[03:24] * Quits: Brodingo (~Brodingo@cpe-70-116-2-207.austin.res.rr.com) (Remote host closed the connection)
- # 03[03:32] * Joins: techrush (~techrush@adsl-75-4-18-152.dsl.irvnca.sbcglobal.net)
- # 02[03:34] * Quits: phishbot (~runtalan@unaffiliated/phishbot) (Quit: Leaving...)
- # 03[03:35] * Joins: gavin_huang (~gravof@122.246.52.88)
- # 02[03:40] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: Never look down on someone unless you're helping them up.)
- # 03[03:46] * Joins: plh_ (~plh@209.117.47.253)
- # 03[03:49] * Joins: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
- # 02[03:50] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 258 seconds)
- # 03[03:51] * Joins: buribu (~buribu@189-46-131-73.dsl.telesp.net.br)
- # 02[03:51] * Quits: buribu (~buribu@189-46-131-73.dsl.telesp.net.br) (Changing host)
- # 03[03:51] * Joins: buribu (~buribu@unaffiliated/buribu)
- # 02[03:55] * Quits: plh_ (~plh@209.117.47.253) (Quit: always accept cookies)
- # 02[03:57] * Quits: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net) (Quit: phishy)
- # 02[04:05] * Quits: aidalgol (~user@202.36.179.68) (Quit: moving)
- # 02[04:06] * Quits: Hautain_ (~Hautain@AOrleans-258-1-11-201.w90-8.abo.wanadoo.fr) (Read error: Connection reset by peer)
- # 03[04:06] * Joins: Hautain_ (~Hautain@AOrleans-258-1-11-201.w90-8.abo.wanadoo.fr)
- # 02[04:07] * Quits: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Ping timeout: 260 seconds)
- # 02[04:08] * Quits: smus (~smus@nat/google/x-gyvhflyrtdindqri) (Remote host closed the connection)
- # 03[04:09] * Joins: Eightamrock (~Eightamro@c-98-221-151-72.hsd1.nj.comcast.net)
- # 02[04:09] * Quits: nightfury (~nightfury@host-74-211-24-78.beyondbb.com) (Quit: nightfury)
- # 03[04:10] * Joins: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
- # 03[04:12] * Joins: smus (~smus@67.218.102.48)
- # 02[04:14] * Quits: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net) (Client Quit)
- # 03[04:16] * Joins: mdale (~mdale@unaffiliated/mdale)
- # 02[04:20] * Quits: OzDave_mbp (~OzDave_mb@27-33-43-79.static.tpgi.com.au) (Quit: OzDave_mbp)
- # 03[04:25] * Joins: aidalgol (~user@202.36.179.68)
- # 03[04:26] * Joins: OzDave_mbp (~OzDave_mb@27-33-43-79.static.tpgi.com.au)
- # 03[04:27] * Joins: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
- # 02[04:33] * Quits: benv_ (~benv@50-0-80-160.dsl.static.sonic.net) (Quit: Leaving...)
- # 03[04:37] * Joins: [1]Kichael (~Kichael@70-36-49-167.dyn.novuscom.net)
- # 03[04:37] * Joins: [2]Kichael (~Kichael@70-36-49-167.dyn.novuscom.net)
- # 02[04:38] * Quits: [2]Kichael (~Kichael@70-36-49-167.dyn.novuscom.net) (Read error: Connection reset by peer)
- # 02[04:39] * Quits: Kichael (~Kichael@70-36-49-167.dyn.novuscom.net) (Ping timeout: 250 seconds)
- # 02[04:41] * Quits: [1]Kichael (~Kichael@70-36-49-167.dyn.novuscom.net) (Ping timeout: 264 seconds)
- # 02[04:41] * Quits: aidalgol (~user@202.36.179.68) (Quit: ERC Version 5.3 (IRC client for Emacs))
- # 03[04:43] * Parts: mdale (~mdale@unaffiliated/mdale)
- # 02[04:44] * Quits: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net) (Quit: phishy)
- # 03[04:45] * Joins: Jon47 (~jonz@pool-173-79-102-81.washdc.fios.verizon.net)
- # 03[04:46] * Joins: saschagehlich (~saschageh@p5DD5576D.dip.t-dialin.net)
- # 02[04:49] * Quits: smus (~smus@67.218.102.48) (Remote host closed the connection)
- # 02[04:54] * Quits: gavin_huang (~gravof@122.246.52.88) (Read error: Connection timed out)
- # 03[04:54] * Joins: gavin_huang (~gravof@122.246.52.88)
- # 02[04:55] * Quits: KeepSafe (~jack@5ad17524.bb.sky.com) (Quit: Lost terminal)
- # 02[04:59] * Quits: BadQuanta (~BadQuanta@pool-98-117-221-233.bltmmd.fios.verizon.net) (Ping timeout: 255 seconds)
- # 03[04:59] * Joins: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # 02[05:05] * Quits: boaz (~boaz@li326-230.members.linode.com) (Excess Flood)
- # 03[05:05] * Joins: boaz (~boaz@li326-230.members.linode.com)
- # 03[05:07] * Joins: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
- # 02[05:10] * Quits: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net) (Client Quit)
- # 02[05:12] * Quits: Jon47 (~jonz@pool-173-79-102-81.washdc.fios.verizon.net) (Quit: Leaving.)
- # 02[05:12] * Quits: dmachi (~dmachi@pool-72-66-210-222.ronkva.east.verizon.net) (Read error: Connection reset by peer)
- # 03[05:12] * Joins: dmachi1 (~dmachi@pool-72-66-210-222.ronkva.east.verizon.net)
- # 02[05:15] * Quits: giulivo (~giulivo@109.114.19.35) (Quit: bye)
- # 03[05:16] * Joins: miketaylr (~miketaylr@24.42.93.245)
- # 02[05:16] * Quits: Eightamrock (~Eightamro@c-98-221-151-72.hsd1.nj.comcast.net)
- # 03[05:21] * Joins: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
- # 03[05:24] * Joins: danbeam_ (~anonymous@unaffiliated/danbeam)
- # 02[05:28] * Quits: boaz (~boaz@li326-230.members.linode.com) (Excess Flood)
- # 02[05:28] * Quits: Evanescence (~chris@122.237.29.189) (Quit: WeeChat 0.3.5)
- # 03[05:28] * Joins: Evanescence (~chris@122.237.29.189)
- # 03[05:29] * Joins: boaz (~boaz@li326-230.members.linode.com)
- # 03[05:30] * Joins: aidalgol (~user@132.181.225.148)
- # 02[05:31] * Quits: apalmer (~apalmer@091.135-78-65.ftth.swbr.surewest.net) (Read error: Connection reset by peer)
- # 03[05:32] * Joins: apalmer (~apalmer@091.135-78-65.ftth.swbr.surewest.net)
- # 02[05:33] * Quits: saschagehlich (~saschageh@p5DD5576D.dip.t-dialin.net) (Ping timeout: 240 seconds)
- # 03[05:35] * Joins: saschagehlich (~saschageh@p5DD55BF4.dip.t-dialin.net)
- # 02[05:38] * Quits: materialdesigner (~cah276@68-119-212-179.dhcp.hckr.nc.charter.com) (Ping timeout: 252 seconds)
- # 02[05:39] * Quits: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net) (Quit: phishy)
- # 03[05:41] * Joins: nonge__ (~nonge@p5B326ABA.dip.t-dialin.net)
- # 02[05:45] * Quits: dguttman (~dguttman@rrcs-173-196-159-188.west.biz.rr.com) (Quit: dguttman)
- # 02[05:45] * Quits: nonge_ (~nonge@p5082AF4D.dip.t-dialin.net) (Ping timeout: 240 seconds)
- # 02[05:47] * Quits: cjaredrun (~cjaredrun@216-235-101-HCC-37.hcc.net) (Quit: Linkinus - http://linkinus.com)
- # 02[05:48] * Quits: andr3 (~andr3@bl14-164-246.dsl.telepac.pt) (Quit: andr3)
- # 03[05:48] * Joins: cjaredrun (~cjaredrun@216-235-101-HCC-37.hcc.net)
- # 03[05:57] * Joins: mdale (~mdale@unaffiliated/mdale)
- # 02[06:02] * Quits: WILDsharustar (~sharustar@unaffiliated/sharustar) (Quit: Leaving)
- # 02[06:04] * Quits: Evanescence (~chris@122.237.29.189) (Quit: WeeChat 0.3.5)
- # 03[06:04] * Joins: wookiehangover (~wookiehan@c-98-245-45-244.hsd1.co.comcast.net)
- # 02[06:06] * Quits: digitalfiz (~digitalfi@unaffiliated/digitalfiz) (Ping timeout: 258 seconds)
- # 03[06:06] * Joins: Evanescence (~chris@122.237.29.189)
- # 03[06:07] * Joins: smus (~smus@173-167-97-246-sfba.hfc.comcastbusiness.net)
- # 03[06:07] * Joins: dr0id (~andy@unaffiliated/dr0id)
- # 03[06:08] * Joins: digitalfiz (~digitalfi@unaffiliated/digitalfiz)
- # 02[06:08] * Quits: taar779 (~taar779@d24-57-144-141.home.cgocable.net) (Quit: Leaving)
- # 03[06:08] * Joins: taar779 (~taar779@d24-57-144-141.home.cgocable.net)
- # 02[06:10] * Quits: Evanescence (~chris@122.237.29.189) (Client Quit)
- # 02[06:11] * Quits: aidalgol (~user@132.181.225.148) (Quit: class)
- # 02[06:12] * Quits: jeffszusz (~jeffszusz@d24-57-194-149.home.cgocable.net) (Remote host closed the connection)
- # 03[06:13] * Joins: Bioxyde (~Adium@189.75.18.177)
- # 03[06:13] * dr0id is now known as inferno
- # 03[06:14] * inferno is now known as firewall
- # 03[06:14] * firewall is now known as charged_bolt
- # 03[06:15] * Joins: Evanescence (~chris@122.237.29.189)
- # 03[06:32] * Joins: cypha`` (~cypha@unaffiliated/cypha)
- # 02[06:35] * Quits: cypha (~cypha@unaffiliated/cypha) (Ping timeout: 260 seconds)
- # 03[06:43] * Joins: phishbot (~runtalan@unaffiliated/phishbot)
- # 02[06:45] * Quits: boaz (~boaz@li326-230.members.linode.com) (Excess Flood)
- # 03[06:46] * Joins: boaz (~boaz@li326-230.members.linode.com)
- # 03[06:47] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # 02[06:49] * Quits: dmachi1 (~dmachi@pool-72-66-210-222.ronkva.east.verizon.net) (Quit: Leaving.)
- # 03[06:49] * Joins: franksalim (~frank@64-71-23-250.static.wiline.com)
- # 03[06:56] * Joins: amigojapan (~chatzilla@p9047-ipngnfx01souka.saitama.ocn.ne.jp)
- # 02[06:57] * Quits: wookiehangover (~wookiehan@c-98-245-45-244.hsd1.co.comcast.net) (Quit: Leaving...)
- # 03[06:58] * Joins: LongBeach (~mike@AFontenayssB-152-1-17-205.w82-121.abo.wanadoo.fr)
- # 02[06:58] * Quits: miketaylr (~miketaylr@24.42.93.245) (Quit: miketaylr)
- # 02[06:58] * Quits: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Ping timeout: 252 seconds)
- # 02[07:01] * Quits: Evanescence (~chris@122.237.29.189) (Quit: WeeChat 0.3.5)
- # 02[07:05] * Quits: taar779 (~taar779@d24-57-144-141.home.cgocable.net) (Ping timeout: 240 seconds)
- # 03[07:13] * Joins: HealingDruid (~MorningSt@c-65-34-227-32.hsd1.fl.comcast.net)
- # 03[07:14] * Joins: BigKing (~BigKing@p5DD69553.dip0.t-ipconnect.de)
- # 02[07:37] * Quits: buribu (~buribu@unaffiliated/buribu) (Quit: Fui embora)
- # 02[07:39] * Quits: phishbot (~runtalan@unaffiliated/phishbot) (Quit: Leaving...)
- # 02[07:42] * Quits: Bioxyde (~Adium@189.75.18.177) (Quit: Leaving.)
- # 03[07:43] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
- # 02[07:46] * Quits: amigojapan (~chatzilla@p9047-ipngnfx01souka.saitama.ocn.ne.jp) (Ping timeout: 258 seconds)
- # 02[07:48] * Quits: kadiks (~kadiks@APuteaux-652-1-127-98.w90-2.abo.wanadoo.fr) (Quit: Leaving)
- # 03[07:50] * cypha`` is now known as cypha
- # 02[07:50] * Quits: techrush (~techrush@adsl-75-4-18-152.dsl.irvnca.sbcglobal.net) (Ping timeout: 276 seconds)
- # 03[07:53] * Joins: techrush (~techrush@adsl-75-4-18-152.dsl.irvnca.sbcglobal.net)
- # 03[07:57] * Joins: phishbot (~runtalan@unaffiliated/phishbot)
- # 03[07:59] * Joins: gpsietzema (~gpsietzem@188.201.167.121)
- # [08:03] <niftylettuce> need moar coffeee?
- # 02[08:05] * Quits: tw2113 (~tw2113@fedora/tw2113) (Remote host closed the connection)
- # 03[08:07] * Joins: simplicity- (~simpli@unaffiliated/simplicity-)
- # 02[08:07] * Quits: simplicity- (~simpli@unaffiliated/simplicity-) (Client Quit)
- # 03[08:14] * Joins: NetRoY (~NetRoY@nat/yahoo/x-tlsqndgsmvcvlxkt)
- # 02[08:14] * Quits: techrush (~techrush@adsl-75-4-18-152.dsl.irvnca.sbcglobal.net) (Quit: Leaving)
- # 03[08:15] * Joins: Amis (~Amis@mail.paks.hu)
- # 02[08:15] * Quits: Amis (~Amis@mail.paks.hu) (Changing host)
- # 03[08:15] * Joins: Amis (~Amis@unaffiliated/amis)
- # 02[08:15] * Quits: smus (~smus@173-167-97-246-sfba.hfc.comcastbusiness.net) (Remote host closed the connection)
- # 03[08:18] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # 03[08:23] * Joins: svenlito (~svnlto@78-86-0-182.zone2.bethere.co.uk)
- # 02[08:24] * Quits: moshee (~moshee@unaffiliated/moshee) (Ping timeout: 250 seconds)
- # 03[08:24] * Joins: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net)
- # 02[08:24] * Quits: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net) (Changing host)
- # 03[08:24] * Joins: moshee (~moshee@unaffiliated/moshee)
- # 03[08:25] * Joins: dguttman (~dguttman@adsl-75-51-71-133.dsl.lsan03.sbcglobal.net)
- # 02[08:25] * Quits: dguttman (~dguttman@adsl-75-51-71-133.dsl.lsan03.sbcglobal.net) (Client Quit)
- # 02[08:30] * Quits: phishbot (~runtalan@unaffiliated/phishbot) (Quit: Leaving...)
- # 02[08:30] * Quits: jair (~jair@173-15-38-121-Illinois.hfc.comcastbusiness.net) (Quit: leaving)
- # 03[08:33] * Joins: dguttman (~dguttman@adsl-75-51-71-133.dsl.lsan03.sbcglobal.net)
- # 03[08:34] * Joins: pradeebv (~pradeebv@nat/yahoo/x-exjkopzkhhjsedsg)
- # 03[08:36] * Joins: SaadIbrahim (~mslfreak@115.186.124.30)
- # 02[08:36] * Quits: SaadIbrahim (~mslfreak@115.186.124.30) (Changing host)
- # 03[08:36] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
- # 02[08:39] * Quits: dguttman (~dguttman@adsl-75-51-71-133.dsl.lsan03.sbcglobal.net) (Quit: dguttman)
- # 02[08:39] * Quits: pradeebv (~pradeebv@nat/yahoo/x-exjkopzkhhjsedsg) (Client Quit)
- # 03[08:49] * Joins: phrearch (~phrearch_@5ED42DE2.cm-7-5a.dynamic.ziggo.nl)
- # 02[08:49] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 258 seconds)
- # 03[08:50] * Joins: dguttman (~dguttman@adsl-75-51-71-133.dsl.lsan03.sbcglobal.net)
- # 02[08:50] * Quits: JoshManders (~josh@unaffiliated/killswitch) (Ping timeout: 263 seconds)
- # 03[08:51] * Joins: pradeebv (~pradeebv@nat/yahoo/x-rvotmmjnvrfmfqdo)
- # 02[08:51] * Quits: dguttman (~dguttman@adsl-75-51-71-133.dsl.lsan03.sbcglobal.net) (Client Quit)
- # 03[08:54] * Joins: benv (~benv@99-7-171-41.lightspeed.sntcca.sbcglobal.net)
- # 02[08:57] * Quits: svenlito (~svnlto@78-86-0-182.zone2.bethere.co.uk) (Quit: svenlito)
- # 03[09:01] * Joins: beevi7 (~manuel.bi@tim.7val.com)
- # 03[09:11] * Joins: skylamer` (cgskylamer@78.90.213.55)
- # 03[09:12] * Joins: gypsion (~gypsion@121.1.54.50)
- # 02[09:13] * Quits: digitalfiz (~digitalfi@unaffiliated/digitalfiz) (Quit: Textual IRC Client: http://www.textualapp.com/)
- # 03[09:16] * Joins: spliter (~spliter@77.88.72.162)
- # 02[09:16] * Quits: pradeebv (~pradeebv@nat/yahoo/x-rvotmmjnvrfmfqdo) (Quit: pradeebv)
- # 03[09:17] * Joins: manuchill (~mstalfoor@83.232.96.217)
- # 02[09:17] * Quits: charged_bolt (~andy@unaffiliated/dr0id) (Quit: Leaving.)
- # 02[09:18] * Quits: gypsion (~gypsion@121.1.54.50) (Quit: Quit)
- # 03[09:18] * Joins: prajwalit (~prajwalit@121.243.225.226)
- # 03[09:19] * Joins: gypsion (~gypsion@121.1.54.50)
- # 03[09:25] * Joins: NoNoNo (~Adium@2a00:1158:0:201:6dab:5d89:4909:fd42)
- # 02[09:29] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Quit: dgathright)
- # 03[09:32] * Joins: x29a (~x29a@g224216197.adsl.alicedsl.de)
- # 02[09:33] * Quits: x29a (~x29a@g224216197.adsl.alicedsl.de) (Changing host)
- # 03[09:33] * Joins: x29a (~x29a@unaffiliated/x29a)
- # 02[09:34] * Quits: spliter (~spliter@77.88.72.162) (Quit: spliter)
- # 03[09:37] * Joins: Pingtimeout (~Hautain@AOrleans-258-1-137-61.w90-21.abo.wanadoo.fr)
- # 03[09:38] * Joins: raphraph (~raph@LMontsouris-156-25-3-55.w80-14.abo.wanadoo.fr)
- # 02[09:40] * Quits: Hautain_ (~Hautain@AOrleans-258-1-11-201.w90-8.abo.wanadoo.fr) (Ping timeout: 255 seconds)
- # 03[09:41] * Joins: svenlito (~svnlto@188-223-81-77.dsl.cnl.uk.net)
- # 03[09:41] * Joins: henrikkok (~henrikkok@193.89.252.234)
- # 02[09:43] * Quits: saschagehlich (~saschageh@p5DD55BF4.dip.t-dialin.net) (Remote host closed the connection)
- # 03[09:47] * Joins: saschagehlich (~saschageh@p5DD55BF4.dip.t-dialin.net)
- # 02[09:48] * Quits: Pingtimeout (~Hautain@AOrleans-258-1-137-61.w90-21.abo.wanadoo.fr) (Quit: Leaving)
- # 03[09:48] * Joins: Hautain (~Hautain@AOrleans-258-1-137-61.w90-21.abo.wanadoo.fr)
- # 03[09:55] * Joins: dr0id (~andy@unaffiliated/dr0id)
- # 03[09:57] * dr0id is now known as charged_bolt
- # 03[09:57] * Joins: Standfest (~Standfest@balticom-242-234.balticom.lv)
- # 03[09:57] * Joins: huskyr (~huskyr@ip169-070.vpro.nl)
- # 03[09:59] * Joins: Evanescence (~chris@122.237.29.189)
- # 02[10:00] * Quits: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk) (Ping timeout: 252 seconds)
- # 02[10:01] * Quits: thatryan (~thatryan@c-24-4-109-126.hsd1.ca.comcast.net) (Quit: Leaving...)
- # 03[10:01] * Joins: Aamir (~aamirafri@87.85.238.98)
- # 02[10:03] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: Never look down on someone unless you're helping them up.)
- # 02[10:03] * Quits: Aamir (~aamirafri@87.85.238.98) (Read error: Connection reset by peer)
- # 03[10:04] * Joins: Aamir (~aamirafri@87.85.238.98)
- # 02[10:14] * Quits: beevi7 (~manuel.bi@tim.7val.com) (Ping timeout: 255 seconds)
- # 03[10:14] * Joins: spliter (~spliter@77.88.72.162)
- # 03[10:23] * Parts: HealingDruid (~MorningSt@c-65-34-227-32.hsd1.fl.comcast.net)
- # 03[10:23] * Joins: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk)
- # 03[10:29] * Joins: kyxzme (~kyxzme@2001:b00:4020:1::1d)
- # 02[10:30] * Quits: Standfest (~Standfest@balticom-242-234.balticom.lv) (Quit: ..)
- # 03[10:31] * Joins: tbassetto (~tbassetto@LRouen-151-71-49-64.w80-11.abo.wanadoo.fr)
- # 03[10:31] * Joins: jayflux (4d2c1802@gateway/web/freenode/ip.77.44.24.2)
- # 02[10:33] * Quits: jochen__ (~jochen@nat/google/x-psnjskqaxtetyiur) (Remote host closed the connection)
- # 03[10:33] * Joins: jochen__ (~jochen@nat/google/x-aqhfgvmfnvdifgst)
- # 03[10:35] * Joins: robhawkes (~robhawkes@188-220-16-96.dsl.cnl.uk.net)
- # 03[10:36] * Joins: chachan (~quassel@200.109.140.111)
- # 02[10:40] * Quits: svenlito (~svnlto@188-223-81-77.dsl.cnl.uk.net) (Read error: Connection reset by peer)
- # 02[10:44] * Quits: NetRoY (~NetRoY@nat/yahoo/x-tlsqndgsmvcvlxkt) (Quit: NetRoY)
- # 03[10:48] * Joins: SaadIbrahim (~mslfreak@203.81.214.195)
- # 02[10:48] * Quits: SaadIbrahim (~mslfreak@203.81.214.195) (Changing host)
- # 03[10:48] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
- # [10:51] <jayflux> paul_irish: is there a shortcut for the elements inspector on dev tools? the little magnifying glass
- # [10:53] <acies> right click element, inspect ?
- # 03[10:54] * Joins: Jackneill (~Jackneill@91.82.172.180.pool.invitel.hu)
- # 02[10:54] * Quits: Jackneill (~Jackneill@91.82.172.180.pool.invitel.hu) (Changing host)
- # 03[10:54] * Joins: Jackneill (~Jackneill@unaffiliated/jackneill)
- # 03[10:55] * Joins: RaceCondition (~erik@82.131.73.234.cable.starman.ee)
- # 02[10:55] * Quits: jacine (~jacine@drupal.org/user/88931/view) (Quit: buh bye :))
- # 03[11:00] * Joins: NetRoY (~NetRoY@nat/yahoo/x-qansthdxvedfutpw)
- # 02[11:01] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 250 seconds)
- # 02[11:02] * Quits: NetRoY (~NetRoY@nat/yahoo/x-qansthdxvedfutpw) (Client Quit)
- # 03[11:02] * Joins: NetRoY (~NetRoY@nat/yahoo/x-rmtksxzcexjhlmcy)
- # 02[11:04] * Quits: Hautain (~Hautain@AOrleans-258-1-137-61.w90-21.abo.wanadoo.fr) (Read error: Connection reset by peer)
- # 03[11:05] * Joins: Hautain (~Hautain@AOrleans-258-1-137-61.w90-21.abo.wanadoo.fr)
- # 03[11:08] * Joins: louisremi (~louisremi@mozilla-paris-253-98.cnt.nerim.net)
- # 03[11:08] * Joins: dpy (~Marcel@2001:1af8:fe9b:0:221:70ff:fea7:aa9d)
- # 03[11:08] * Joins: cocoadaemon (~cocoadaem@2a01:e35:8a99:e90:20d:93ff:fe3b:868c)
- # 02[11:10] * Quits: shipit (~shipit@204-15-2-155-static.ipnetworksinc.net) (Remote host closed the connection)
- # 02[11:21] * Quits: gavin_huang (~gravof@122.246.52.88) (Remote host closed the connection)
- # 03[11:27] * Joins: noob634 (~noob@77.75.99.82)
- # 03[11:27] * Joins: shipit (~shipit@c-67-180-23-104.hsd1.ca.comcast.net)
- # [11:27] <noob634> guys whenever i expand my left div my right div is not visible
- # [11:27] <noob634> can any one help me out
- # [11:27] <noob634> ?
- # [11:27] <noob634> http://jsfiddle.net/nJAfR/1/
- # [11:28] <charged_bolt> Welcome back noob634 (with a new nick this time)
- # [11:28] <charged_bolt> so you are noob in #jquery and cross posting your question here as noob634
- # [11:28] <charged_bolt> ?!?!??!?!?!?
- # [11:28] <noob634> not as 634
- # [11:29] <noob634> system gives you this by default
- # [11:29] <noob634> because ther's already a noob here
- # [11:29] <noob634> :D
- # 03[11:29] * Joins: Manuel`AC (~manuel@524A216B.cm-4-3a.dynamic.ziggo.nl)
- # 02[11:29] * Quits: Manuel`AC (~manuel@524A216B.cm-4-3a.dynamic.ziggo.nl) (Changing host)
- # 03[11:29] * Joins: Manuel`AC (~manuel@unaffiliated/acmanuel/x-6275086)
- # [11:29] <charged_bolt> Lul :D
- # [11:29] <charged_bolt> you are funny bro
- # [11:29] <charged_bolt> I don't hate funny people
- # [11:29] <charged_bolt> but do you know you can "/join #some_channel" ?
- # [11:29] <charged_bolt> and use the same nick
- # [11:29] <noob634> i am not gay to get things straight
- # [11:30] <noob634> so dont love me
- # [11:30] <noob634> :P
- # [11:30] <charged_bolt> and noob609 in #javascript
- # [11:30] <charged_bolt> Lul
- # [11:30] <noob634> anyways u any good with html
- # 03[11:30] * Parts: acies (acies@kono.ningendomo.me)
- # [11:30] <charged_bolt> I am good with everything, but gotta get back to work now
- # [11:30] <noob634> ohh comeon
- # [11:30] <noob634> dnt be a spoi sport
- # [11:31] <noob634> have a look atleast
- # [11:31] <charged_bolt> HOld
- # [11:31] <noob634> http://jsfiddle.net/nJAfR/1/
- # [11:31] <charged_bolt> your code is so messy
- # [11:32] <charged_bolt> its so messy, I can give you a hint
- # [11:32] <charged_bolt> your slider div needs to be positioned absolutely/fixed
- # [11:32] <noob634> y are u giving hints
- # [11:32] <noob634> this is not an exam
- # [11:32] <charged_bolt> Heh
- # [11:33] <charged_bolt> #freelance <-- hire me there
- # [11:34] <noob634> do u know ruby?
- # [11:34] <charged_bolt> yes
- # [11:34] <noob634> how much will you charge then i can hire you for this
- # [11:34] <noob634> i want back end from ruby
- # [11:34] <noob634> i have built rails applicaion
- # [11:34] <noob634> anywyas ur charges will be high
- # [11:34] <noob634> i an not afford
- # [11:35] <noob634> i dont think i can
- # [11:35] <charged_bolt> lets talk in #freelance where there are more people who might be up to work for you
- # [11:35] <noob634> i dont have time at the moment actually
- # [11:35] <noob634> i have to show this to someone
- # [11:35] <charged_bolt> you freelance ?
- # [11:35] <noob634> in an hour
- # [11:35] <noob634> yeah
- # [11:35] <noob634> odesk
- # [11:35] <noob634> :D
- # [11:35] <charged_bolt> Heh
- # [11:35] <charged_bolt> you don't go to schools ?!
- # [11:35] <charged_bolt> where are you located bro ?
- # [11:35] <noob634> india
- # [11:36] <noob634> i am registered in a school
- # [11:36] <noob634> thts enough i think
- # [11:36] <noob634> :D
- # [11:36] <charged_bolt> :P
- # [11:36] <charged_bolt> msg me
- # [11:36] <noob634> u in india as well?
- # 03[11:37] * Joins: andr3 (~andr3@bl14-164-246.dsl.telepac.pt)
- # [11:37] <charged_bolt> do you go to schools ?
- # [11:38] <charged_bolt> I want to know how do you freelance as well as go to schools ?
- # 02[11:38] * Quits: dpy (~Marcel@2001:1af8:fe9b:0:221:70ff:fea7:aa9d) (Read error: Connection reset by peer)
- # [11:38] <noob634> i dont
- # [11:38] <noob634> i am registered
- # [11:38] <noob634> i only give exams
- # [11:39] <noob634> heard of proxy?
- # 02[11:40] * Quits: patcito (~123@190.42.86.184) (Read error: Connection reset by peer)
- # [11:41] <charged_bolt> nope, what the hell is htat ?
- # 02[11:42] * Quits: andr3 (~andr3@bl14-164-246.dsl.telepac.pt) (Client Quit)
- # [11:42] <noob634> some one giving attendance for u = proxy
- # [11:43] <charged_bolt> noob634: check PM
- # 02[11:44] * Quits: saschagehlich (~saschageh@p5DD55BF4.dip.t-dialin.net) (Remote host closed the connection)
- # 03[11:48] * Parts: louisremi (~louisremi@mozilla-paris-253-98.cnt.nerim.net)
- # 03[11:48] * Joins: buribu (~buribu@201-27-163-139.dsl.telesp.net.br)
- # 02[11:48] * Quits: buribu (~buribu@201-27-163-139.dsl.telesp.net.br) (Changing host)
- # 03[11:48] * Joins: buribu (~buribu@unaffiliated/buribu)
- # 03[11:48] * Joins: buribux (~buribu@201-27-163-139.dsl.telesp.net.br)
- # 02[11:50] * Quits: buribux (~buribu@201-27-163-139.dsl.telesp.net.br) (Changing host)
- # 03[11:50] * Joins: buribux (~buribu@unaffiliated/buribux)
- # 02[11:50] * Quits: noob634 (~noob@77.75.99.82) (Ping timeout: 276 seconds)
- # 03[11:52] * Joins: NoNoNo1 (~Adium@buerogw01.ispgateway.de)
- # 02[11:55] * Quits: NoNoNo (~Adium@2a00:1158:0:201:6dab:5d89:4909:fd42) (Ping timeout: 255 seconds)
- # 03[11:57] * Joins: SaadIbrahim (~mslfreak@203.81.214.195)
- # 02[11:57] * Quits: SaadIbrahim (~mslfreak@203.81.214.195) (Changing host)
- # 03[11:57] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
- # 03[11:58] * Joins: andr3 (~andr3@bl14-164-246.dsl.telepac.pt)
- # 02[12:02] * Quits: andr3 (~andr3@bl14-164-246.dsl.telepac.pt) (Client Quit)
- # 03[12:08] * Joins: Ms2ger (~Ms2ger@91.181.57.248)
- # 03[12:27] * Joins: FireFly (~firefly@unaffiliated/firefly)
- # 02[12:29] * Quits: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk) (Remote host closed the connection)
- # 03[12:30] * Joins: derekjohnson (~derekmj74@host81-149-242-230.in-addr.btopenworld.com)
- # 03[12:36] * Joins: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk)
- # 02[12:36] * Quits: chachan (~quassel@200.109.140.111) (Remote host closed the connection)
- # 03[12:41] * Joins: anthracite (~user@brln-4dbc6db8.pool.mediaWays.net)
- # 03[12:42] * Joins: amigojapan (~none@pw126230107041.16.tss.panda-world.ne.jp)
- # [12:42] <amigojapan> There will be a new version of gamemaker that will generate html5 apps!!!
- # 02[12:42] * Quits: buribux (~buribu@unaffiliated/buribux) (Ping timeout: 264 seconds)
- # 02[12:42] * Quits: buribu (~buribu@unaffiliated/buribu) (Ping timeout: 264 seconds)
- # 02[12:43] * Quits: echoSMILE (~censured@unaffiliated/echosmile) (Ping timeout: 255 seconds)
- # 03[12:46] * Joins: buribu (~buribu@201-27-163-139.dsl.telesp.net.br)
- # 02[12:46] * Quits: buribu (~buribu@201-27-163-139.dsl.telesp.net.br) (Changing host)
- # 03[12:46] * Joins: buribu (~buribu@unaffiliated/buribu)
- # 03[12:46] * Joins: buribux (~buribu@201-27-163-139.dsl.telesp.net.br)
- # 02[12:46] * Quits: shipit (~shipit@c-67-180-23-104.hsd1.ca.comcast.net) (Remote host closed the connection)
- # 02[12:48] * Quits: buribux (~buribu@201-27-163-139.dsl.telesp.net.br) (Read error: Connection reset by peer)
- # [12:50] <amigojapan> Gamemaker Is great and now it will generate multyplatform apps
- # 03[12:52] * Joins: shipit (~shipit@c-67-180-23-104.hsd1.ca.comcast.net)
- # 03[12:54] * Joins: buribux (~buribu@201-43-98-117.dsl.telesp.net.br)
- # 02[12:57] * Quits: buribu (~buribu@unaffiliated/buribu) (Ping timeout: 264 seconds)
- # 02[13:00] * Quits: Evanescence (~chris@122.237.29.189) (Quit: WeeChat 0.3.5)
- # 02[13:02] * Quits: BigKing (~BigKing@p5DD69553.dip0.t-ipconnect.de) (Remote host closed the connection)
- # 03[13:03] * Joins: superos (~rune@158-37-86-21.hib.no)
- # [13:04] <superos> Is off line storage of video and audio files supported on mobile devices (iOS and Android)?
- # 02[13:11] * Quits: amigojapan (~none@pw126230107041.16.tss.panda-world.ne.jp) (Ping timeout: 260 seconds)
- # 03[13:13] * Joins: koggdal (~koggdal@user171.77-105-221.netatonce.net)
- # 02[13:16] * Quits: ChrisBuchholz (~cb@li189-30.members.linode.com) (Quit: leaving)
- # 03[13:16] * Joins: ChrisBuchholz (~cb@li189-30.members.linode.com)
- # 03[13:20] * Joins: amigojapan (~none@pw126228183113.24.tik.panda-world.ne.jp)
- # [13:21] <amigojapan> Gamemaker Is great and now it will generate multyplatform apps <====. On iPhone it is
- # [13:21] <amigojapan> Err
- # [13:21] <amigojapan> Superos. On iPhone it is
- # 03[13:22] * Parts: manuchill (~mstalfoor@83.232.96.217) ("Ex-Chat")
- # 03[13:23] * Joins: chipnt (~Chip@paris-18.progdev.fr)
- # 02[13:23] * Quits: charged_bolt (~andy@unaffiliated/dr0id) (Ping timeout: 276 seconds)
- # 02[13:26] * Quits: tbassetto (~tbassetto@LRouen-151-71-49-64.w80-11.abo.wanadoo.fr) (Ping timeout: 264 seconds)
- # [13:28] <superos> amigojapan: On SO there are a few threads saying it does not work.
- # [13:28] <superos> Might be that iOS upgrades support it.
- # 03[13:28] * Joins: tbassetto (~tbassetto@LRouen-151-71-49-64.w80-11.abo.wanadoo.fr)
- # 03[13:30] * Joins: dr0id (~andy@unaffiliated/dr0id)
- # 03[13:30] * dr0id is now known as charged_bolt
- # 02[13:31] * Quits: boaz (~boaz@li326-230.members.linode.com) (Excess Flood)
- # 03[13:32] * Joins: boaz (~boaz@li326-230.members.linode.com)
- # [13:33] <amigojapan> Superos. I saw a tutorial where they cashed an html5 app on the iPhone so you don't need to download it again
- # [13:34] <superos> amigojapan: Sorry, but maybe I did not specify enought. I know text, js and images can be stored off line, but I read a lot about audio and video not supported.
- # [13:34] <amigojapan> Oh. Then I don't know. Sorry
- # [13:36] <superos> no problem
- # [13:36] <superos> I am investigating this for a new project
- # [13:36] <superos> using html5 to make a tourist guide
- # 03[13:36] * Joins: saschagehlich (~saschageh@p5DD55BF4.dip.t-dialin.net)
- # 03[13:40] * Joins: beevi7 (~manuel.bi@tim.7val.com)
- # 02[13:44] * Quits: buribux (~buribu@201-43-98-117.dsl.telesp.net.br) (Read error: Connection reset by peer)
- # 02[13:46] * Quits: charged_bolt (~andy@unaffiliated/dr0id) (Ping timeout: 260 seconds)
- # 03[13:49] * Joins: mokush (~quassel@188.24.97.161)
- # 03[13:50] * Joins: dr0id (~andy@unaffiliated/dr0id)
- # [13:50] <mokush> does anybody know if the max-width mediaquery changes with orientation?
- # 03[13:51] * Joins: Evanescence (~chris@122.237.29.189)
- # 02[13:51] * Quits: temp01 (~temp01@unaffiliated/temp01) (Ping timeout: 276 seconds)
- # 02[13:52] * Quits: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t) (Ping timeout: 255 seconds)
- # 03[13:58] * dr0id is now known as charged_bolt
- # 02[14:03] * Quits: jayflux (4d2c1802@gateway/web/freenode/ip.77.44.24.2) (Quit: Page closed)
- # 03[14:03] * Joins: plh_ (~plh@30-5-77.wireless.csail.mit.edu)
- # 02[14:03] * Quits: charged_bolt (~andy@unaffiliated/dr0id) (Ping timeout: 260 seconds)
- # 02[14:04] * Quits: amigojapan (~none@pw126228183113.24.tik.panda-world.ne.jp) (Remote host closed the connection)
- # 03[14:10] * Joins: amigojapan (~chatzilla@p9047-ipngnfx01souka.saitama.ocn.ne.jp)
- # 03[14:13] * Joins: erichynds (~ehynds@venkman.brightcove.com)
- # 02[14:18] * Quits: mdale (~mdale@unaffiliated/mdale) (Quit: Leaving.)
- # [14:20] <mokush> any idea how to clip contents of a box with border-radius?
- # 03[14:23] * Joins: Jon47 (~jonz@pool-173-79-102-81.washdc.fios.verizon.net)
- # 03[14:24] * Joins: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
- # 03[14:25] * Joins: svenlito (~svnlto@188-223-81-77.dsl.cnl.uk.net)
- # 02[14:27] * Quits: shipit (~shipit@c-67-180-23-104.hsd1.ca.comcast.net) (Remote host closed the connection)
- # 03[14:28] * Parts: phishy (~jeff@c-71-192-162-156.hsd1.nh.comcast.net)
- # 03[14:30] * Joins: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t)
- # 02[14:30] * Quits: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t) (Excess Flood)
- # 03[14:31] * Joins: temp01 (~temp01@unaffiliated/temp01)
- # 03[14:34] * Joins: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t)
- # 03[14:35] * Joins: amigojapan_ (~chatzilla@p9047-ipngnfx01souka.saitama.ocn.ne.jp)
- # 02[14:37] * Quits: amigojapan (~chatzilla@p9047-ipngnfx01souka.saitama.ocn.ne.jp) (Ping timeout: 240 seconds)
- # 03[14:37] * amigojapan_ is now known as amigojapan
- # 03[14:40] * Joins: shawn_dones (~shawn@98.19.222.132)
- # 03[14:44] * Joins: JoshManders (~josh@unaffiliated/killswitch)
- # 02[14:46] * Quits: sleetx (ajyhsdfgwa@c-98-204-136-53.hsd1.va.comcast.net) (Read error: Operation timed out)
- # 03[14:47] * Joins: sleetx (ajyhsdfgwa@c-98-204-136-53.hsd1.va.comcast.net)
- # 03[14:48] * Joins: voxpelli (~anonymous@83.176.255.215)
- # 02[14:56] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Read error: Connection reset by peer)
- # 03[14:57] * Joins: SaadIbrahim (~mslfreak@203.81.214.195)
- # 02[14:57] * Quits: SaadIbrahim (~mslfreak@203.81.214.195) (Changing host)
- # 03[14:57] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
- # 02[15:01] * Quits: mokush (~quassel@188.24.97.161) (Read error: Connection reset by peer)
- # 02[15:01] * Quits: derekjohnson (~derekmj74@host81-149-242-230.in-addr.btopenworld.com) (Ping timeout: 276 seconds)
- # 03[15:03] * Joins: chachan (~quassel@186.94.30.174)
- # 02[15:06] * Quits: pingo__ (~anders@77.40.160.226) (Ping timeout: 252 seconds)
- # 03[15:11] * Joins: TechCel (blah@pool-173-68-149-113.nycmny.fios.verizon.net)
- # 03[15:12] * Joins: pingo__ (~anders@77.40.160.226)
- # 02[15:13] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 258 seconds)
- # 03[15:14] * Joins: miketaylr (~miketaylr@206.217.92.186)
- # 03[15:15] * Joins: timmywil (~timmywil@sec1.epb.net)
- # 03[15:15] * Joins: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # 03[15:17] * Joins: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com)
- # 02[15:18] * Quits: TechCel (blah@pool-173-68-149-113.nycmny.fios.verizon.net) (Ping timeout: 246 seconds)
- # 03[15:21] * Joins: DoubleA (~Adium@65.211.27.190)
- # 03[15:21] * Parts: DoubleA (~Adium@65.211.27.190)
- # 03[15:22] * Joins: Thasmo (~thasmo@d86-33-68-82.cust.tele2.at)
- # 02[15:24] * Quits: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
- # 03[15:24] * Joins: dr0id (~andy@unaffiliated/dr0id)
- # 03[15:24] * Joins: ericbarnes (~ericbarne@rrcs-98-101-76-163.midsouth.biz.rr.com)
- # 02[15:28] * Quits: cypha (~cypha@unaffiliated/cypha) (Ping timeout: 258 seconds)
- # 03[15:31] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
- # 02[15:33] * Quits: JoshManders (~josh@unaffiliated/killswitch) (Ping timeout: 264 seconds)
- # 03[15:37] * Joins: SoulRaven (SoulRaven@89.41.157.171)
- # 03[15:38] * Joins: danja (~danny@host223-241-static.12-87-b.business.telecomitalia.it)
- # 03[15:41] * Joins: jensimmons (~jensimmon@drupal.org/user/140882/view)
- # 02[15:42] * Quits: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk) (Ping timeout: 252 seconds)
- # 03[15:42] * Joins: louisremi (~louisremi@mozilla-paris-253-98.cnt.nerim.net)
- # 03[15:46] * Joins: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk)
- # 03[15:48] * Joins: CrashTest_ (~CrashTest@c-66-235-13-223.sea.wa.customer.broadstripe.net)
- # 03[15:48] * Joins: taar779 (~taar779@205.211.88.4)
- # 03[15:50] * Joins: svnlto_ (~svnlto@188-223-81-77.dsl.cnl.uk.net)
- # 02[15:51] * Quits: svenlito (~svnlto@188-223-81-77.dsl.cnl.uk.net) (Read error: No route to host)
- # 02[15:53] * Quits: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk) (Remote host closed the connection)
- # 03[15:54] * Joins: devongovett (~devongove@pppoe-68-142-54-171.gmavt.net)
- # 03[15:56] * Joins: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net)
- # 03[15:56] * nimbupani is now known as nimbu
- # 03[15:59] * Joins: Maaksaa (~Maaksaa@217.118.92.19)
- # 03[15:59] * Joins: kollapse (~kollaps@79.116.205.96)
- # 02[15:59] * Quits: kollapse (~kollaps@79.116.205.96) (Changing host)
- # 03[15:59] * Joins: kollapse (~kollaps@unaffiliated/kollapse)
- # 02[16:00] * Quits: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Ping timeout: 252 seconds)
- # 03[16:00] * Parts: Maaksaa (~Maaksaa@217.118.92.19)
- # [16:01] <kollapse> Hi. I have a little curiosity about how search engines index content. Basically the index bot accesses a page and filters out all URLs and then follows them. But what if I have a hidden link? Will it follow that as well or will it ignore it ? Such as "<a href='http://www.site.com' style='display: hidden;'></a>"
- # 03[16:02] * Joins: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk)
- # [16:03] <OzDave_mbp> google webmaster tools account and indexing your site to that webmaster tools has a lot of google secrets to what they collect, they collect a lot more then just the ahref links and build and populate word clouds etc, as well as focusing on the first set amount of words in the page etc
- # 02[16:03] * Quits: superos (~rune@158-37-86-21.hib.no) (Quit: Leaving.)
- # [16:03] <OzDave_mbp> https://www.google.com/webmasters/tools/home?hl=en
- # 02[16:04] * Quits: svnlto_ (~svnlto@188-223-81-77.dsl.cnl.uk.net) (Read error: Connection reset by peer)
- # 03[16:05] * Joins: svenlito (~svnlto@188-223-81-77.dsl.cnl.uk.net)
- # 02[16:05] * Quits: RaceCondition (~erik@82.131.73.234.cable.starman.ee) (Quit: RaceCondition)
- # [16:06] <OzDave_mbp> on the flipside you can use it for your site anway
- # [16:06] <OzDave_mbp> you can control indexing with meta tags like NOINDEX NOFOLLOW etc
- # 02[16:07] * Quits: erichynds (~ehynds@venkman.brightcove.com) (Ping timeout: 250 seconds)
- # [16:07] <OzDave_mbp> its all neatly bundled in that service for you
- # [16:07] <kollapse> Thanks for that OzDave_mbp !
- # [16:07] <OzDave_mbp> np m8
- # 03[16:10] * Joins: andrewjbaker (~ajb@host-78-149-107-233.as13285.net)
- # 02[16:12] * Quits: taar779 (~taar779@205.211.88.4) (Quit: Leaving)
- # [16:13] <andrewjbaker> Anymore HTML5 game devs on since I last came stalking?^^
- # 03[16:14] * Joins: DoubleA (~Adium@65.211.27.190)
- # 02[16:14] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 240 seconds)
- # 02[16:14] * Quits: Amis (~Amis@unaffiliated/amis) (Quit: *pop*)
- # 03[16:15] * Parts: DoubleA (~Adium@65.211.27.190)
- # [16:16] <dr0id> nope
- # [16:16] <andrewjbaker> :-(
- # [16:16] <andrewjbaker> Pants.
- # 02[16:17] * Quits: saschagehlich (~saschageh@p5DD55BF4.dip.t-dialin.net) (Remote host closed the connection)
- # [16:19] <andrewjbaker> They're an elusive bunch. :-p
- # [16:20] <dr0id> what happened exactly ?
- # 03[16:20] * Joins: Bioxyde (~Adium@187.55.192.62)
- # 03[16:21] * Joins: JoshManders (~josh@unaffiliated/killswitch)
- # 03[16:21] * Parts: plh_ (~plh@30-5-77.wireless.csail.mit.edu) ("no more cookies")
- # [16:21] <shawn_dones> Yes do tell.
- # [16:22] <shawn_dones> HTML5 game dev's sounds interesting
- # [16:22] <andrewjbaker> I'm just trying to connect w/ as many HTML5 game devs as I possibly can. There's not a huge community at the mo'. Mostly cos' it's quite a diverse demographic: Flash, PBBGs, mobile, social, console, etc.
- # 02[16:22] * Quits: Bioxyde (~Adium@187.55.192.62) (Client Quit)
- # [16:23] <dr0id> I am interested to make html5 games
- # [16:23] <OzDave_mbp> count me in
- # [16:24] <andrewjbaker> LOL, OzDave_mbp you're already counted in. ;-)
- # [16:24] <shawn_dones> currently studying creating iPhone apps using html/css/JS
- # [16:24] <OzDave_mbp> :)
- # [16:24] <andrewjbaker> There's a small community of persistent browser-based games and HTML5 games devs over on #bbg.
- # [16:24] <OzDave_mbp> I am addicted to playing this game called " pay the mortgage " its ok! but it gets boring in stages
- # [16:24] <shawn_dones> lol @OzDave_mbp
- # [16:25] <OzDave_mbp> =]
- # [16:25] <shawn_dones> OzDave_mbp: I feel your pain bro
- # [16:25] <OzDave_mbp> hehe you must of played it ;)
- # [16:25] <shawn_dones> OzDave_mbp: are you kidding? I'm a seasoned vet
- # [16:26] <shawn_dones> I went to Full Sail University
- # [16:26] <OzDave_mbp> bwhaha Ive been grinding for a few years,.
- # [16:26] <OzDave_mbp> still not up there yet
- # [16:26] <shawn_dones> borrowed every penny
- # [16:27] <OzDave_mbp> I also play this other game, a million meals with rice!
- # [16:27] <OzDave_mbp> chciken teriyaki is a good one!
- # [16:27] <shawn_dones> Kentucky Education Department Slogan "Education Pays" they forgot to include the last words "With Inerest"
- # 03[16:27] * Joins: Bioxyde (~Adium@187.5.178.233)
- # [16:27] <OzDave_mbp> so true
- # [16:28] <shawn_dones> I do appreciate my college years tho
- # [16:28] <OzDave_mbp> they call them hecks debts over here, people called them hex's
- # 06[16:28] * andrewjbaker is on a Skype call... not being ignorant for no reason. ;-)
- # [16:28] <OzDave_mbp> np
- # 02[16:28] * Quits: skylamer` (cgskylamer@78.90.213.55)
- # [16:29] <dr0id> funny people on ic
- # [16:29] <dr0id> irc
- # [16:29] <OzDave_mbp> study now bleed later
- # 02[16:29] * Quits: Aamir (~aamirafri@87.85.238.98) (Read error: Connection reset by peer)
- # 03[16:30] * Joins: Aamir (~aamirafri@87.85.238.98)
- # 02[16:38] * Quits: Evanescence (~chris@122.237.29.189) (Quit: WeeChat 0.3.5)
- # 02[16:40] * Quits: dr0id (~andy@unaffiliated/dr0id) (Quit: Leaving.)
- # 02[16:41] * Quits: henrikkok (~henrikkok@193.89.252.234) (Quit: Leaving.)
- # 02[16:55] * Quits: Bioxyde (~Adium@187.5.178.233) (Quit: Leaving.)
- # 03[16:57] * Joins: simplicity- (~simpli@unaffiliated/simplicity-)
- # 02[16:58] * Quits: ighisas (~ighisas@122x212x216x66.ap122.ftth.ucom.ne.jp) (Remote host closed the connection)
- # 02[16:58] * Quits: prajwalit (~prajwalit@121.243.225.226) (Quit: Ex-Chat)
- # 03[16:58] * Joins: mokush (~quassel@188.24.97.161)
- # [17:00] <mokush> any idea for a way around this? http://fransdejonge.com/test/2010/border-radius/
- # 03[17:03] * Joins: obert (~quassel@host131-21-dynamic.10-87-r.retail.telecomitalia.it)
- # 02[17:05] * Quits: nimbu (~Adium@c-24-18-47-160.hsd1.wa.comcast.net) (Quit: Leaving.)
- # 03[17:06] * Joins: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # 03[17:08] * Joins: snover (~Adium@unaffiliated/snover)
- # 03[17:09] * Parts: snover (~Adium@unaffiliated/snover)
- # 03[17:12] * Joins: erichynds (~ehynds@venkman.brightcove.com)
- # 02[17:13] * Quits: spliter (~spliter@77.88.72.162) (Quit: spliter)
- # 03[17:13] * Joins: ericduran (~ericduran@173-203-243-241.static.cloud-ips.com)
- # [17:18] <Jon47> mokush, it's not ideal but instead of having two elements (the subject and the body) within a container that has border radius, just stack the two elements on top of each other and put border top-left/right radius on the subject, and border bottom-left/right radius on the body
- # [17:19] <mokush> Jon47: problem is, I have a container with overflow: auto that needs border radius. and it needs to scroll content inside.
- # 02[17:20] * Quits: beevi7 (~manuel.bi@tim.7val.com) (Ping timeout: 252 seconds)
- # 03[17:20] * Joins: thatryan (~thatryan@adsl-76-254-18-203.dsl.pltn13.sbcglobal.net)
- # 03[17:22] * Joins: RaceCondition (~erik@gprs-inet-65-7.elisa.ee)
- # [17:22] <Jon47> you can figure somethin out, might not be ideal or as shallow a construction as you like, but anything is possible
- # 02[17:23] * Quits: NoNoNo1 (~Adium@buerogw01.ispgateway.de) (Quit: Leaving.)
- # 02[17:25] * Quits: gpsietzema (~gpsietzem@188.201.167.121) (Remote host closed the connection)
- # 03[17:28] * Joins: phishbot (~runtalan@unaffiliated/phishbot)
- # 02[17:28] * Quits: phishbot (~runtalan@unaffiliated/phishbot) (Excess Flood)
- # 03[17:28] * Joins: phishbot (~runtalan@unaffiliated/phishbot)
- # 03[17:32] * Joins: BadQuanta (~BadQuanta@pool-98-117-221-233.bltmmd.fios.verizon.net)
- # 03[17:33] * Joins: wookiehangover (~wookiehan@173-8-247-218-Colorado.hfc.comcastbusiness.net)
- # 03[17:34] * CrashTest_ is now known as CrashAFK
- # 02[17:34] * Quits: phishbot (~runtalan@unaffiliated/phishbot) (Remote host closed the connection)
- # 03[17:34] * Joins: SaadIbrahim (~mslfreak@203.81.214.96)
- # 02[17:34] * Quits: SaadIbrahim (~mslfreak@203.81.214.96) (Changing host)
- # 03[17:34] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
- # 03[17:34] * Joins: phishbot (~runtalan@unaffiliated/phishbot)
- # 02[17:34] * Quits: phishbot (~runtalan@unaffiliated/phishbot) (Excess Flood)
- # 03[17:35] * Joins: phishbot (~runtalan@unaffiliated/phishbot)
- # 03[17:37] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
- # 03[17:37] * Joins: Amis (~Amis@unaffiliated/amis)
- # 03[17:38] * Joins: gseguin (~anonymous@67.136.90.250)
- # 02[17:41] * Quits: SoulRaven (SoulRaven@89.41.157.171)
- # 03[17:41] * Joins: taar779 (~taar779@205.211.88.4)
- # 02[17:43] * Quits: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk) (Ping timeout: 260 seconds)
- # 03[17:46] * CrashAFK is now known as CrashTest_
- # 03[17:48] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
- # 02[17:50] * Quits: obert (~quassel@host131-21-dynamic.10-87-r.retail.telecomitalia.it) (Remote host closed the connection)
- # 03[17:51] * Joins: nimbupani (~Adium@72-254-63-50.client.stsn.net)
- # 03[17:51] * nimbupani is now known as nimbu
- # 02[17:55] * Quits: RaceCondition (~erik@gprs-inet-65-7.elisa.ee) (Quit: RaceCondition)
- # 03[17:55] * Joins: mascix (~mascix@83.66.110.192)
- # 02[17:55] * Quits: devongovett (~devongove@pppoe-68-142-54-171.gmavt.net) (Remote host closed the connection)
- # 02[17:57] * Quits: huskyr (~huskyr@ip169-070.vpro.nl) (Quit: huskyr)
- # 03[17:58] * Joins: [E]sc (~armani@cm218-252-220-28.hkcable.com.hk)
- # 03[17:58] * Joins: David_Bradbury (~chatzilla@75-147-178-254-Washington.hfc.comcastbusiness.net)
- # 02[18:00] * Quits: amigojapan (~chatzilla@p9047-ipngnfx01souka.saitama.ocn.ne.jp) (Quit: ChatZilla 0.9.87 [Firefox 5.0/20110615151330])
- # [18:00] <shawn_dones> Does using nav make it ok to not use ul's in navigations?
- # [18:02] <andrewjbaker> Bk.
- # 03[18:02] * Joins: devongovett (~devongove@pppoe-68-142-54-171.gmavt.net)
- # 02[18:03] * Quits: phishbot (~runtalan@unaffiliated/phishbot) (Read error: Connection reset by peer)
- # 03[18:03] * Joins: phishbot (~runtalan@unaffiliated/phishbot)
- # 03[18:03] * Joins: tantek_ (~tantek@76.164.21.47)
- # 02[18:05] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Read error: Connection reset by peer)
- # 02[18:06] * Quits: tantek_ (~tantek@76.164.21.47) (Client Quit)
- # 03[18:07] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
- # 03[18:09] * Joins: spasquali (~spasquali@64.61.91.74)
- # 03[18:09] * Parts: spasquali (~spasquali@64.61.91.74)
- # 03[18:10] * Joins: necolas (~necolas@5e0425de.bb.sky.com)
- # 02[18:11] * Quits: devongovett (~devongove@pppoe-68-142-54-171.gmavt.net) (Quit: devongovett)
- # 02[18:13] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Remote host closed the connection)
- # 03[18:16] * Joins: dankest (~dankest@ip68-99-125-185.sd.sd.cox.net)
- # 03[18:17] * Joins: Saaaaad (~mslfreak@unaffiliated/saadibrahim)
- # 02[18:17] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Disconnected by services)
- # 03[18:17] * Saaaaad is now known as SaadIbrahim
- # 03[18:18] * Joins: RaceCondition (~erik@gprs-inet-65-15.elisa.ee)
- # 03[18:19] * Joins: luchenbill (~gnome@shellium/member/unfunf)
- # 02[18:23] * Quits: NetRoY (~NetRoY@nat/yahoo/x-rmtksxzcexjhlmcy) (Quit: NetRoY)
- # 03[18:25] * Joins: tantek_ (~tantek@72-254-91-192.client.stsn.net)
- # 02[18:28] * Quits: JoshManders (~josh@unaffiliated/killswitch) (Quit: ChatZilla 0.9.86.1-rdmsoft [XULRunner 1.9.2.18/20110615082315])
- # 02[18:30] * Quits: raphraph (~raph@LMontsouris-156-25-3-55.w80-14.abo.wanadoo.fr) (Quit: Ex-Chat)
- # 03[18:33] * Joins: ryanneufeld (~ryanneufe@S01060019e1edefc1.vc.shawcable.net)
- # 03[18:34] * Joins: JoshManders (~josh@unaffiliated/killswitch)
- # 03[18:39] * danbeam_ is now known as danbeam
- # 02[18:40] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Quit: Leaving.)
- # 02[18:41] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Quit: dgathright)
- # 03[18:41] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
- # 03[18:41] * Joins: dguttman (~dguttman@adsl-75-51-71-133.dsl.lsan03.sbcglobal.net)
- # 03[18:42] * tantek_ is now known as tantek
- # 02[18:42] * Quits: andrewjbaker (~ajb@host-78-149-107-233.as13285.net) (Quit: Leaving)
- # 02[18:43] * Quits: tbassetto (~tbassetto@LRouen-151-71-49-64.w80-11.abo.wanadoo.fr) (Quit: Linkinus - http://linkinus.com)
- # 02[18:44] * Quits: taar779 (~taar779@205.211.88.4) (Quit: Leaving)
- # 02[18:46] * Quits: JoshManders (~josh@unaffiliated/killswitch) (Quit: ChatZilla 0.9.86.1-rdmsoft [XULRunner 1.9.2.18/20110615082315])
- # 03[18:47] * Joins: shipit (~shipit@c-67-180-23-104.hsd1.ca.comcast.net)
- # 02[18:49] * Quits: OzDave_mbp (~OzDave_mb@27-33-43-79.static.tpgi.com.au) (Quit: OzDave_mbp)
- # 03[18:50] * Joins: JackLeo (~Domas@78-60-86-33.static.zebra.lt)
- # [18:50] <JackLeo> hey need some help with styling :/ i'm doing something wrong...
- # [18:50] <JackLeo> http://jsfiddle.net/a4mpr/2/
- # 03[18:52] * Parts: tantek (~tantek@72-254-91-192.client.stsn.net)
- # 02[18:52] * Quits: benv (~benv@99-7-171-41.lightspeed.sntcca.sbcglobal.net) (Quit: Leaving...)
- # 02[18:54] * Quits: RaceCondition (~erik@gprs-inet-65-15.elisa.ee) (Quit: RaceCondition)
- # 02[18:59] * Quits: sic1 (~ckihneman@wsip-68-224-173-84.sd.sd.cox.net) (Quit: Computer has gone to sleep)
- # 02[19:01] * Quits: dguttman (~dguttman@adsl-75-51-71-133.dsl.lsan03.sbcglobal.net) (Quit: dguttman)
- # 03[19:05] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
- # 03[19:05] * Joins: shepazu (~schepers@72-254-56-48.client.stsn.net)
- # 02[19:06] * Quits: kollapse (~kollaps@unaffiliated/kollapse) (Remote host closed the connection)
- # 03[19:13] * Joins: cypha (~cypha@unaffiliated/cypha)
- # 03[19:15] * Joins: JonathanNeal (~rztjonath@96.25.192.141)
- # 03[19:15] * Joins: nerdfiles (~Adium@ppp-70-248-186-81.dsl.hstntx.swbell.net)
- # 03[19:16] * Joins: JoshManders (~josh@unaffiliated/killswitch)
- # 02[19:20] * Quits: anthracite (~user@brln-4dbc6db8.pool.mediaWays.net) (Quit: ERC Version 5.3 (IRC client for Emacs))
- # 03[19:21] * Joins: benv (~benv@50-0-80-160.dsl.static.sonic.net)
- # 02[19:23] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Ping timeout: 260 seconds)
- # 03[19:25] * Joins: beeviz (~beevi2@ip-78-94-3-11.unitymediagroup.de)
- # 03[19:28] * Joins: dguttman (~dguttman@cpe-75-85-0-213.socal.res.rr.com)
- # 03[19:29] * CrashTest_ is now known as CrashAFK
- # 03[19:29] * Joins: dgathright (~dgathrigh@nat/yahoo/x-hvwaeqxfkzpgudun)
- # 02[19:30] * Quits: voxpelli (~anonymous@83.176.255.215) (Read error: Connection reset by peer)
- # 02[19:31] * Quits: svenlito (~svnlto@188-223-81-77.dsl.cnl.uk.net) (Quit: svenlito)
- # 03[19:32] * Joins: voxpelli (~anonymous@83.176.255.215)
- # 02[19:34] * Quits: dgathright (~dgathrigh@nat/yahoo/x-hvwaeqxfkzpgudun) (Client Quit)
- # 02[19:35] * Quits: voxpelli (~anonymous@83.176.255.215) (Client Quit)
- # 02[19:35] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Quit: Leaving.)
- # 03[19:36] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
- # 03[19:39] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
- # 02[19:45] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
- # 03[19:45] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # 03[19:49] * Joins: Zeddy (~Zeddy@cable-prv-fe9cdc00-246.dhcp.inet.fi)
- # 03[19:52] * Joins: dgathright (~dgathrigh@nat/yahoo/x-psiyzxngnyxiuzas)
- # 03[19:53] * Joins: obert (~quassel@host131-21-dynamic.10-87-r.retail.telecomitalia.it)
- # 03[19:54] * Joins: jacine (~jacine@drupal.org/user/88931/view)
- # 02[19:54] * Quits: dgathright (~dgathrigh@nat/yahoo/x-psiyzxngnyxiuzas) (Client Quit)
- # [19:55] <Zeddy> http://jsbin.com/acopez/3 anyone care to tell me why the position is only updated once on my android? :\
- # 02[19:55] * Quits: phrearch (~phrearch_@5ED42DE2.cm-7-5a.dynamic.ziggo.nl) (Quit: Leaving)
- # 03[19:55] * Joins: dgathright (~dgathrigh@nat/yahoo/x-buaslnwsilpbpdko)
- # 03[19:59] * Joins: Pensador (~Pensador@78.29.132.70)
- # [20:00] <Pensador> good afternoon
- # 03[20:03] * Joins: prajwalit (~prajwalit@59.95.28.70)
- # 03[20:05] * Joins: oknoway (~oknoway@72.11.82.226)
- # [20:06] <Zeddy> CMON
- # [20:06] <Zeddy> http://jsbin.com/omuzeh/edit#preview
- # [20:07] <Zeddy> even using the example code my android only updates location once
- # [20:07] <Zeddy> buuuulshit
- # 02[20:07] * Quits: dgathright (~dgathrigh@nat/yahoo/x-buaslnwsilpbpdko) (Quit: dgathright)
- # 03[20:08] * Joins: phishy__ (~jeff@pat-1.broadinstitute.org)
- # 02[20:09] * Quits: Aamir (~aamirafri@87.85.238.98) (Quit: Away!)
- # 03[20:15] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
- # 03[20:17] * Joins: rwt (~rwt@unaffiliated/rwt)
- # 02[20:18] * Quits: mokush (~quassel@188.24.97.161) (Remote host closed the connection)
- # 03[20:18] * Joins: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # 03[20:23] * ericduran is now known as ericduran|food
- # 03[20:25] * jensimmons is now known as jensimmons|aftk
- # 03[20:26] * CrashAFK is now known as CrashDiet_
- # 03[20:26] * Joins: jahrome_ (~jahrome@p3E99148C.dip.t-dialin.net)
- # [20:31] <Zeddy> seriously html5
- # [20:31] <Zeddy> why does watchPosition work like getPosition ?
- # 02[20:35] * Quits: necolas (~necolas@5e0425de.bb.sky.com) (Remote host closed the connection)
- # 03[20:36] * Joins: devinrolsen (~chatzilla@206.72.104.162)
- # 02[20:36] * Quits: devinrolsen (~chatzilla@206.72.104.162) (Client Quit)
- # 02[20:41] * Quits: louisremi (~louisremi@mozilla-paris-253-98.cnt.nerim.net) (Ping timeout: 260 seconds)
- # 03[20:42] * Joins: jamund (~jamund@50-73-38-137-utah.hfc.comcastbusiness.net)
- # [20:44] <Zeddy> http://jsbin.com/axuteb
- # [20:44] <Zeddy> this doesn't even work
- # [20:44] <Zeddy> >_>
- # 03[20:45] * Joins: digitalfiz (~digitalfi@unaffiliated/digitalfiz)
- # 02[20:49] * Quits: nerdfiles (~Adium@ppp-70-248-186-81.dsl.hstntx.swbell.net) (Read error: Connection reset by peer)
- # 03[20:49] * Joins: nerdfiles1 (~Adium@ppp-70-248-186-81.dsl.hstntx.swbell.net)
- # 03[20:50] * Joins: svenlito (~svnlto@78-86-0-182.zone2.bethere.co.uk)
- # 02[20:50] * Quits: kyxzme (~kyxzme@2001:b00:4020:1::1d) (Quit: Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety.)
- # 03[20:51] * ericduran|food is now known as ericduran
- # 03[20:58] * Joins: RaceCondition (~erik@82.131.73.234.cable.starman.ee)
- # 02[20:59] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Quit: Leaving.)
- # 03[21:01] * Joins: necolas (~necolas@5e0425de.bb.sky.com)
- # 02[21:02] * Quits: rwt (~rwt@unaffiliated/rwt) (Read error: Connection reset by peer)
- # 03[21:03] * Joins: rwt (~rwt@adsl-76-240-205-15.dsl.ipltin.sbcglobal.net)
- # 02[21:03] * Quits: rwt (~rwt@adsl-76-240-205-15.dsl.ipltin.sbcglobal.net) (Changing host)
- # 03[21:03] * Joins: rwt (~rwt@unaffiliated/rwt)
- # 03[21:03] * Joins: Eightamrock (~eightamro@h-64-236-128-40.nat.aol.com)
- # 03[21:03] * Eightamrock is now known as Guest93867
- # 02[21:03] * Quits: rwt (~rwt@unaffiliated/rwt) (Read error: Connection reset by peer)
- # 03[21:04] * Joins: rwt (~rwt@adsl-76-240-205-15.dsl.ipltin.sbcglobal.net)
- # 02[21:04] * Quits: rwt (~rwt@adsl-76-240-205-15.dsl.ipltin.sbcglobal.net) (Changing host)
- # 03[21:04] * Joins: rwt (~rwt@unaffiliated/rwt)
- # 02[21:05] * Quits: rwt (~rwt@unaffiliated/rwt) (Read error: Connection reset by peer)
- # 03[21:06] * Joins: NetRoY (~NetRoY@122.172.192.2)
- # 03[21:06] * Joins: rwt (~rwt@unaffiliated/rwt)
- # 02[21:07] * Quits: NetRoY (~NetRoY@122.172.192.2) (Read error: Connection reset by peer)
- # 03[21:07] * Joins: NetRoY (~NetRoY@122.172.192.2)
- # 03[21:07] * ericduran is now known as ericduran|mtg
- # 02[21:09] * Quits: rwt (~rwt@unaffiliated/rwt) (Read error: Connection reset by peer)
- # 03[21:09] * Joins: rwt (~rwt@adsl-76-240-205-15.dsl.ipltin.sbcglobal.net)
- # 02[21:09] * Quits: rwt (~rwt@adsl-76-240-205-15.dsl.ipltin.sbcglobal.net) (Changing host)
- # 03[21:09] * Joins: rwt (~rwt@unaffiliated/rwt)
- # 02[21:09] * Quits: Guest93867 (~eightamro@h-64-236-128-40.nat.aol.com)
- # 03[21:09] * CrashDiet_ is now known as CrashTest_
- # 03[21:10] * Joins: gypsion_ (~gypsion@121.1.54.50)
- # 02[21:10] * Quits: NetRoY (~NetRoY@122.172.192.2) (Read error: Connection reset by peer)
- # 03[21:11] * Joins: NetRoY (~NetRoY@122.172.192.2)
- # 02[21:12] * Quits: gypsion_ (~gypsion@121.1.54.50) (Client Quit)
- # 03[21:12] * Joins: ^gypsion^ (~gypsion@121.1.54.50)
- # 02[21:12] * Quits: NetRoY (~NetRoY@122.172.192.2) (Read error: Connection reset by peer)
- # 03[21:13] * Joins: NetRoY (~NetRoY@122.172.192.2)
- # 02[21:14] * Quits: NetRoY (~NetRoY@122.172.192.2) (Read error: Connection reset by peer)
- # 03[21:14] * Joins: NetRoY (~NetRoY@122.172.192.2)
- # 02[21:16] * Quits: NetRoY (~NetRoY@122.172.192.2) (Read error: Connection reset by peer)
- # 03[21:16] * Joins: NetRoY (~NetRoY@122.172.192.2)
- # 02[21:17] * Quits: necolas (~necolas@5e0425de.bb.sky.com) (Remote host closed the connection)
- # 02[21:18] * Quits: NetRoY (~NetRoY@122.172.192.2) (Client Quit)
- # 03[21:19] * Joins: FylGood (~fylgood@pool-96-255-176-18.washdc.fios.verizon.net)
- # 02[21:25] * Quits: ^gypsion^ (~gypsion@121.1.54.50) (Quit: Quit)
- # 02[21:25] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Ping timeout: 250 seconds)
- # 03[21:25] * Joins: Eightamr0ck (~Eightamr0@h-64-236-128-40.nat.aol.com)
- # 02[21:27] * Quits: JackLeo (~Domas@78-60-86-33.static.zebra.lt) (Ping timeout: 260 seconds)
- # 02[21:30] * Quits: David_Bradbury (~chatzilla@75-147-178-254-Washington.hfc.comcastbusiness.net) (Ping timeout: 260 seconds)
- # 02[21:30] * Quits: phishy__ (~jeff@pat-1.broadinstitute.org) (Quit: phishy__)
- # 02[21:30] * Quits: Jackneill (~Jackneill@unaffiliated/jackneill) (Ping timeout: 255 seconds)
- # 03[21:32] * Joins: dgathright (~dgathrigh@nat/yahoo/x-tbtizozzwbzpatho)
- # 03[21:32] * Joins: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk)
- # 02[21:33] * Quits: shipit (~shipit@c-67-180-23-104.hsd1.ca.comcast.net) (Remote host closed the connection)
- # 02[21:38] * Quits: nimbu (~Adium@72-254-63-50.client.stsn.net) (Remote host closed the connection)
- # 03[21:46] * Joins: benv_ (~benv@50-0-80-160.dsl.static.sonic.net)
- # 02[21:46] * Quits: benv (~benv@50-0-80-160.dsl.static.sonic.net) (Read error: Connection reset by peer)
- # 03[21:52] * Parts: CrashTest_ (~CrashTest@c-66-235-13-223.sea.wa.customer.broadstripe.net)
- # 03[21:54] * Joins: Jayflux (~jay_knows@cpc1-dudl6-0-0-cust197.wolv.cable.virginmedia.com)
- # 03[22:00] * Joins: BigKing (~BigKing@p5DD69553.dip0.t-ipconnect.de)
- # 03[22:05] * Joins: Maaksaa (~Maaksaa@217.118.92.17)
- # 03[22:07] * Parts: Maaksaa (~Maaksaa@217.118.92.17)
- # 03[22:08] * Joins: nimbupani (~Adium@72-254-63-50.client.stsn.net)
- # 03[22:08] * nimbupani is now known as nimbu
- # 03[22:08] * Joins: jeffszusz (~jeffszusz@d24-57-194-149.home.cgocable.net)
- # 03[22:08] * Joins: grantg (~chatzilla@69.88.160.3)
- # 03[22:09] * Joins: irae_ (~iraebrasi@186.204.192.70)
- # 03[22:09] * Joins: David_Bradbury (~chatzilla@75-147-178-254-Washington.hfc.comcastbusiness.net)
- # [22:10] <grantg> found a site that uses js gbc - http://www.pwobrasil.com/
- # [22:10] <grantg> lolwhat
- # [22:11] <grantg> wat
- # 06[22:12] * grantg slowly backs away and pours gasoline all over.
- # [22:12] <grantg> xonecas: You might wanna stand back. :P
- # [22:13] <tw2113> ooh puddles!
- # [22:13] <tw2113> *jumps in them*
- # 03[22:14] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
- # [22:14] <tw2113> boo! they use all the worst games too
- # [22:14] <grantg> heh
- # [22:15] <grantg> I think I know where some of the traffic is coming from now. <_<
- # 03[22:15] * Joins: Daljo (~Daljo629@c-174-59-48-35.hsd1.pa.comcast.net)
- # 02[22:16] * Quits: benv_ (~benv@50-0-80-160.dsl.static.sonic.net) (Read error: Connection reset by peer)
- # 03[22:17] * Joins: benv (~benv@50-0-80-160.dsl.static.sonic.net)
- # 02[22:17] * Quits: Badababuba (~Badababub@nodester.com) (Remote host closed the connection)
- # 03[22:18] * Joins: Badababuba (~Badababub@nodester.com)
- # 02[22:18] * Quits: Pensador (~Pensador@78.29.132.70) (Quit: Saindo)
- # 02[22:18] * Quits: Badababuba (~Badababub@nodester.com) (Remote host closed the connection)
- # 03[22:19] * Joins: Badababuba (~Badababub@nodester.com)
- # 03[22:19] * Joins: Bioxyde (~Adium@187.4.244.116)
- # 03[22:20] * jensimmons|aftk is now known as jensimmons
- # 02[22:20] * Quits: Badababuba (~Badababub@nodester.com) (Remote host closed the connection)
- # 02[22:25] * Quits: obert (~quassel@host131-21-dynamic.10-87-r.retail.telecomitalia.it) (Remote host closed the connection)
- # 02[22:26] * Quits: Zeddy (~Zeddy@cable-prv-fe9cdc00-246.dhcp.inet.fi)
- # 02[22:27] * Quits: rwt (~rwt@unaffiliated/rwt) (Quit: Leaving)
- # 02[22:29] * Quits: Amis (~Amis@unaffiliated/amis) (Quit: *pop*)
- # 02[22:31] * Quits: Eightamr0ck (~Eightamr0@h-64-236-128-40.nat.aol.com) (Remote host closed the connection)
- # [22:32] <grantg> not enough overstretched JPEGs with visible artifacts... moar geocities w/ frontpage 2002 plz.
- # 02[22:33] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Read error: Connection reset by peer)
- # 02[22:33] * Quits: jahrome_ (~jahrome@p3E99148C.dip.t-dialin.net) (Quit: ChatZilla 0.9.86.1 [SeaMonkey 2.0.14/20110725021547])
- # 03[22:34] * ericduran|mtg is now known as ericduran
- # 03[22:35] * Joins: patcito (~123@190.42.85.124)
- # 03[22:35] * Joins: kadiks (~kadiks@APuteaux-652-1-127-98.w90-2.abo.wanadoo.fr)
- # 02[22:37] * Quits: mascix (~mascix@83.66.110.192) (Quit: Leaving.)
- # 02[22:40] * Quits: ChrisBuchholz (~cb@li189-30.members.linode.com) (Quit: leaving)
- # 03[22:40] * Joins: trumpetmic (~trumpetmi@159.182.183.6)
- # 03[22:40] * Joins: ChrisBuchholz (~cb@li189-30.members.linode.com)
- # 02[22:41] * Quits: Ms2ger (~Ms2ger@91.181.57.248) (Quit: nn)
- # [22:44] <grantg> OMFG, every image is an image map... weee back to 1999
- # [22:44] <grantg> and <marquee> is being used
- # [22:47] <tw2113> i closed that tab down and still felt the need for a bleech bath
- # [22:47] <tw2113> you've been poking at it for awhile
- # [22:47] <grantg> heh
- # [22:47] <grantg> tw2113: Don't look a the markup
- # [22:47] <grantg> I'll make you raeg
- # [22:47] <grantg> *It'll
- # [22:48] <grantg> *at
- # [22:48] <grantg> "welcome back to 1999"
- # [22:48] <grantg> "but you must use Firefox 5 or Chrome"
- # 02[22:52] * Quits: simplicity- (~simpli@unaffiliated/simplicity-) (Quit: simplicity-)
- # 03[22:53] * Joins: simplicity- (~simpli@unaffiliated/simplicity-)
- # 02[22:55] * Quits: socialhapy (~socialhap@46-38-167-162.static.cloud-ips.co.uk) (Remote host closed the connection)
- # 03[22:55] * Joins: socialhapy (~socialhap@46-38-167-162.static.cloud-ips.co.uk)
- # [22:59] <franksalim> html5.reddit.com passed 1000 subscribers
- # [23:00] <irae_> grantg: this site shames my country. it's so bad that I cleared cache & cookies twice after closing the tab.
- # [23:00] <grantg> heh
- # 02[23:01] * Quits: socialhapy (~socialhap@46-38-167-162.static.cloud-ips.co.uk) (Remote host closed the connection)
- # 03[23:01] * Joins: socialhapy (~socialhap@46-38-167-162.static.cloud-ips.co.uk)
- # 02[23:01] * Quits: BigKing (~BigKing@p5DD69553.dip0.t-ipconnect.de) (Remote host closed the connection)
- # 02[23:03] * Quits: oknoway (~oknoway@72.11.82.226) (Quit: oknoway)
- # 02[23:06] * Quits: shawn_dones (~shawn@98.19.222.132) (Quit: shawn_dones)
- # 02[23:07] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 246 seconds)
- # 02[23:08] * Quits: miketaylr (~miketaylr@206.217.92.186) (Quit: miketaylr)
- # 02[23:10] * Quits: dguttman (~dguttman@cpe-75-85-0-213.socal.res.rr.com) (Quit: ...)
- # 03[23:11] * Joins: Cacheaway (~rich@pool-72-90-77-181.syrcny.fios.verizon.net)
- # [23:11] <grantg> tw2113: and by "found this site" I mean http://pastebin.com/cM33yqN5
- # [23:11] <grantg> yeah
- # [23:12] <grantg> :|
- # 03[23:14] * Joins: materialdesigner (~cah276@68-119-212-179.dhcp.hckr.nc.charter.com)
- # 02[23:14] * Quits: gypsion (~gypsion@121.1.54.50) (Ping timeout: 240 seconds)
- # 03[23:14] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
- # 03[23:17] * Joins: BigKing (~BigKing@p5DD69553.dip0.t-ipconnect.de)
- # 02[23:19] * Quits: prajwalit (~prajwalit@59.95.28.70) (Quit: Ex-Chat)
- # [23:20] <grantg> irae_: You might need to flip some tables too bro - (╯°□°)╯︵ ┻━┻
- # [23:22] <irae_> grantg: lol
- # [23:23] <daleharvey> can anyone point me to where id lookups happen inside v8? :P
- # [23:24] <grantg> good thing pwobrasil.com doesn't know about http://www.grantgalitz.org/get_the_hell_out/PokemonYellow/
- # 02[23:26] * Quits: BigKing (~BigKing@p5DD69553.dip0.t-ipconnect.de) (Remote host closed the connection)
- # [23:26] <irae_> grantg: the idea to have the cable link working over the internet could be a great challenge.
- # [23:26] <grantg> already tried an experimental system
- # [23:26] <grantg> too much lag
- # [23:27] <grantg> would cause the sync. locks between emulators to slow them down to a crawl
- # 02[23:27] * Quits: gseguin (~anonymous@67.136.90.250) (Quit: gseguin)
- # [23:28] <grantg> for one thing, there's comm proxying with the server, since you won't be able to directly connect to the other computer
- # [23:28] <grantg> then there's the mysql server lag
- # [23:28] <grantg> and the routine polling interval timing
- # [23:28] <grantg> yeah
- # [23:29] <franksalim> grantg: why mysql?
- # [23:29] <franksalim> and why polling? use a websocket
- # [23:29] <grantg> websockets don't work for many people
- # [23:29] <grantg> I have to proxy the connection through the server
- # [23:29] <franksalim> use a websocket polyfill
- # [23:30] <irae_> but not many people would want to use cablelink either
- # [23:30] <grantg> mysql is just used to temporarily organize the waitlisted requests
- # [23:30] <grantg> for the target connection to pick up
- # [23:31] <franksalim> you do have to proxy, at least until you can use the p2p stuff
- # [23:31] <irae_> It's not the first project that I've seen that would benefit from browser p2p. is there any draft or spec for that?
- # 02[23:31] * Quits: zatan (~zatan@5ad28990.bb.sky.com) (Ping timeout: 252 seconds)
- # [23:31] <franksalim> but i think mysql is inappropriate to model a cable
- # [23:31] <grantg> franksalim: many people have problems with websockets still
- # 03[23:31] * Joins: slifty (~slifty@18.111.44.132)
- # [23:31] <franksalim> irae_, http://tools.ietf.org/wg/rtcweb/
- # [23:31] <grantg> inbound data is blocked at the router for many people
- # [23:32] <franksalim> grantg, not over ssl. that works 95% of the time or more
- # [23:32] <grantg> not for the people I've seen try to use websocket chat stuff
- # [23:32] <tw2113> thatryan ping
- # [23:32] <franksalim> grantg, where they using ssl?
- # [23:32] <grantg> normal http connections are getting filtered
- # [23:32] <grantg> for inbound crap in long living connections
- # [23:33] <grantg> once you disconnect, the router blocks further inbound
- # [23:33] <franksalim> but were they using a secure connection?
- # [23:33] <franksalim> what do you mean by disconnect
- # [23:33] <grantg> and many routers limit the initial inbound initiated by the first outgoing
- # [23:33] <franksalim> and what do you mean by inbound
- # [23:33] <franksalim> there are no inbound TCP connections with WebSocket
- # [23:34] <grantg> franksalim: routers filter random inbound packets in many cases
- # [23:34] <grantg> not everyone is on a UPnP
- # [23:34] <franksalim> grantg, if they did that, they wouldn't work as routers
- # [23:34] <grantg> see linksys being a bitch
- # 02[23:34] * Quits: ericbarnes (~ericbarne@rrcs-98-101-76-163.midsouth.biz.rr.com) (Remote host closed the connection)
- # [23:35] <grantg> franksalim: many routers with the default firewall set will not allow random inbound
- # [23:35] <irae_> franksalim: thanks for the link! I was under the impression that rtc was for audio/video communication only, not browser p2p
- # [23:35] <grantg> for home-user router
- # [23:36] <franksalim> irae_, there has also been (less) discussion about data. i don't know if that will actually appear in the first round protocol and api
- # [23:36] <franksalim> grantg, there are no inbound TCP connections with websocket
- # [23:36] <franksalim> there are IP packets from the server
- # [23:36] <franksalim> as there are in https
- # [23:37] <franksalim> grantg: do you have any links about this type of failure
- # 02[23:37] * Quits: timmywil (~timmywil@sec1.epb.net) (Ping timeout: 240 seconds)
- # 02[23:38] * Quits: Manuel`AC (~manuel@unaffiliated/acmanuel/x-6275086) (Ping timeout: 240 seconds)
- # 02[23:38] * Quits: boaz (~boaz@li326-230.members.linode.com) (Excess Flood)
- # [23:38] <grantg> franksalim: It's a long lived tcp connection on port 80, no?
- # [23:39] <grantg> I've been on computers where this kind of long lived connection gets cut strangely by the router
- # [23:39] <franksalim> grantg: or 443 (or any other port)
- # [23:39] <franksalim> some NAT boxes close idle connections
- # 03[23:39] * Joins: boaz (~boaz@li326-230.members.linode.com)
- # [23:39] <grantg> the problem is that firewalls at the routers are still meh
- # [23:39] <franksalim> after a period of time in the minutes
- # [23:40] <franksalim> many application protocols have a ping/pong to keep those connections open
- # [23:40] <franksalim> websocket-10 does
- # [23:40] <franksalim> for instance
- # [23:40] <franksalim> IRC does
- # [23:40] <grantg> true
- # [23:40] <franksalim> which is why your connection to freenode is not dropping
- # 02[23:40] * Quits: chipnt (~Chip@paris-18.progdev.fr)
- # [23:40] <franksalim> and your link cable protocol should, too :)
- # [23:40] <grantg> though I'm wondering why websocket connections for chat broke on some instances
- # [23:41] <grantg> franksalim: I also know how to port forward. :)
- # 03[23:41] * Joins: chipnt (~ciprian@paris-18.progdev.fr)
- # 03[23:41] * Joins: HealingDruid (~MorningSt@c-65-34-227-32.hsd1.fl.comcast.net)
- # [23:41] <franksalim> if it was port 80, unencrypted, there are more http proxies that will break connections
- # [23:41] <franksalim> wss on port 443 should work almost all of the time
- # [23:41] <grantg> if you say so
- # [23:41] <grantg> I've seen otherwise
- # [23:42] <franksalim> please let me know if you see it again
- # [23:42] <grantg> older linksys boxes, always a pain
- # [23:43] <irae_> I've not developed anything with websockets yet, but it's sad to see that a new protocol would suffer so much with lame hardware
- # 03[23:43] * Joins: oknoway (~oknoway@c-76-27-233-137.hsd1.or.comcast.net)
- # 02[23:43] * Quits: oknoway (~oknoway@c-76-27-233-137.hsd1.or.comcast.net) (Client Quit)
- # 02[23:44] * Quits: koggdal (~koggdal@user171.77-105-221.netatonce.net) (Quit: koggdal)
- # [23:44] <franksalim> irae_: very true. other protocols with long lived connections manage to work around it, though. xmpp and irc do.
- # [23:44] <irae_> we already have problems enough with XHR long poling, if moving to websockets will require special care, why trouble?
- # 03[23:44] * Joins: shipit (~shipit@204-15-2-155-static.ipnetworksinc.net)
- # [23:44] <grantg> "did you try unplugging it and plugging it back in" is still said today.
- # [23:44] <grantg> with linksys routers
- # 03[23:44] * Joins: tantek (~tantek@72-254-90-199.client.stsn.net)
- # [23:45] <grantg> franksalim: What if it's the firewall in the router realizing it's no longer HTTP after the upgrade message?
- # [23:45] <irae_> franksalim: the protocol itself should provide some kind of workaround internally, so we can develop on top of it without worrying about keep alive and stuff
- # [23:45] <franksalim> irae_: xhr long polling requires a lot of special care, too. you hit invisible limits with http implementations, as well
- # [23:46] <franksalim> grantg: the firewall and router (99% of the time) can't inspect encrypted traffic. that's why i recommended wss
- # [23:46] <franksalim> irae_: that's why the ping/pong frames were added to the websocket protocol spec
- # [23:46] <irae_> franksalim: i know... what I meant was: if I already have trouble with long-poling, why care to change to a new technology that also have the same kind of trouble and less browser support?
- # [23:46] <grantg> franksalim: Also I can't do client to client directly in many cases with the port blocked
- # [23:46] <grantg> server still needed
- # [23:47] <franksalim> grantg: you'll always need a server without p2p
- # [23:47] <grantg> which is why I'm not gonna use websockets
- # [23:47] <grantg> plus shitty websocket support on the server
- # 03[23:47] * Parts: HealingDruid (~MorningSt@c-65-34-227-32.hsd1.fl.comcast.net)
- # [23:47] <franksalim> irae_: if it ain't broke don't fix it. long-polling is really broken for some use cases
- # [23:48] <franksalim> grantg: you need server for http polling, too
- # [23:48] <grantg> I know, but I'd rather do http-polling if I'm stuck with the server as a middleman
- # [23:50] <franksalim> grantg: i won't twist your arm
- # [23:50] <grantg> :P
- # 02[23:51] * Quits: Daljo (~Daljo629@c-174-59-48-35.hsd1.pa.comcast.net) (Remote host closed the connection)
- # 02[23:55] * Quits: luchenbill (~gnome@shellium/member/unfunf) (Ping timeout: 258 seconds)
- # Session Close: Wed Jul 27 00:00:00 2011
The end :)