Previous day | Jump to hour: 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | Next day

Seconds: Show Hide | Joins: Show Hide | View raw
Font: Serif Sans-Serif Monospace | Size: Small Medium Large

Click in the nick column to highlight everything a person has said.
The Logo icon identifies that the person is a core developer (has commit access).

#rockbox log for 2004-06-05

00:30:45 Join silencer_ [0] (~silencer@nino.via.ecp.fr)
00:30:46 Quit NibbIer (Read error: 54 (Connection reset by peer))
00:30:52 Quit silencer_ (Client Quit)
00:40:21 Quit scott666 (Read error: 104 (Connection reset by peer))
00:40:30 Join scott666 [0] (~scott666@c-24-245-59-203.mn.client2.attbi.com)
00:40:44 Quit scott666 (Read error: 54 (Connection reset by peer))
00:40:49 Join scott666 [0] (~scott666@c-24-245-59-203.mn.client2.attbi.com)
00:49:24 Quit jorbond (Read error: 110 (Connection timed out))
01:00
01:03:05Strathbbiab
01:03:07 Quit Strath ("Client closed")
01:09:25 Quit scott666 ("i'll be back...eventually...")
01:20:57 Join hardeep [0] (1098@208.247.65.237)
01:23:16 Quit marmoset ("[BX] Tony the Tiger uses BitchX. Its Grrrrrrrrreat!")
01:30:06 Part amiconn
01:31:00 Join BluuChip [0] (~bluechip@cpc3-colc1-3-0-cust61.colc.cable.ntl.com)
01:46:46 Join jorbond [0] (~fake@dhcp024-209-003-214.cinci.rr.com)
01:49:49 Join amiconn [0] (~jens@pD9E7EC0D.dip.t-dialin.net)
01:50:38amiconnBluuChip: u there?
01:50:51BluuChipindeed I am, how's u this fine night? :)
01:51:15BluuChipbtw. can I have two voice files installed and flip between them? yes/no/don't know is fine :)
01:52:00amiconnIf they are different languages: yes, since it is switched when you switch languages
01:52:24BluuChiphmmmm, think I will rename all my uk voices to different names - LOL
01:52:31BluuChipthank you :)
01:52:44BluuChipAnyway, may I be of service this fine night?
01:53:14amiconnIf they should be the same language: not easily - either you have to rename them every time, or make several copies of englsih.lng with different names.
01:53:43amiconnThen you can switch between them as if they were different languages
01:53:52BluuChipit's just for testing the speech on the new audio stuff - there seems to be a bunch of words missing on the first one I tried
01:54:35amiconnYesterday you wanted to know if it is possible to do the lcd_update() synchronously while running grayscale
01:54:56amiconnI found a place where this feature would fit perfectly imo
01:55:18BluuChipoh yes?
01:55:50amiconnI ask you if you want to test if this would be of use.
01:56:04BluuChiptwo points of consideration
01:56:17BluuChipfirst off, a detailed description of my problem
01:56:26***Saving seen data "./dancer.seen"
01:56:32BluuChipdraw b/g ... draw f/g .... update
01:56:51BluuChip"half" the time the update ocurred between the two draw events
01:57:36BluuChipsecondly - sadly I had to dump my greyscale stuff - the new audio plugin is brushing so close to 32K, I have to keep code optimising chunks of it
01:58:05amiconnYes, I understand this problem (only that I don't get why you want to do b&w graphics while running grayscale at the same time)
01:58:10BluuChipwell, I have not "dumped" it. but it is commented out
01:58:34BluuChip(to show off the greyscale plugin)
01:59:50amiconnI would simply add a parameter: gray_deferred_update(bool synchronous)
02:00
02:00:34BluuChipyep, that works too, or better still ...and for two reasons.... grey_update(bool deferred)
02:00:42BluuChip1. seems to make more sense
02:00:43amiconnIf synchronous == false, the function immediately returns (as it is now), but if synchronous == true, it will return only after the update is done
02:00:53BluuChip2. will obviously, and not subtly break old code
02:01:22 Join NibbIer [0] (nibbler@port-212-202-78-119.dynamic.qsc.de)
02:02:06BluuChipi think your shades suggestion is a good idea
02:02:35amiconnBluuChip: The thing is - the update is _always_ deferred if grayscale is running, only that the function will wait for it before returning
02:02:42BluuChipnext is self-modifying code :)
02:03:11BluuChipI don't mind either way is good by me - just offering my thoughts :)
02:03:12amiconnshades suggestion? Erm, I don't remember..
02:03:19BluuChip8/16/32 = 60% speed
02:03:27 Quit mecraw (Read error: 54 (Connection reset by peer))
02:03:36 Join mecraw [0] (~mecraw@c-24-9-226-58.client.comcast.net)
02:03:38amiconnAh ok.
02:04:25BluuChipwhy is rb->lcd_update not optimised assembler?
02:05:39amiconnBecause most of the work is done by lcd_write_data(), which _is_ asm optimized (by me :) )
02:05:46 Quit webmind (Read error: 104 (Connection reset by peer))
02:06:20BluuChiphmm, shouldn't we be shaving as much off lcd refresh as possible (yes, i am aware I have slightly changed topics)
02:06:32BluuChipI am, for the record, mighty impressed by your work dude
02:08:02 Join webmind [0] (~cme2@217-195-236-172.dsl.esined.net)
02:08:11amiconnI think writing high level functions that only call low level functions to do the dirty work in asm isn't worth it
02:08:45BluuChipI genuinely bow to your superior knowledge of what happens during compile, and take your word :)
02:09:12amiconnC is much more readable - and portable (see the discussion on the ml about porting rb to other mp3 players)
02:09:19BluuChipyour line draw can be tweaked by the way
02:09:27BluuChipporting: yes, very fair comment :)
02:09:45BluuChipI get the feeling that lots of words don't exist in any of these files
02:10:43amiconnIf you have a look at the grayscale source - although there is a lot of asm in it, I only used asm for the time critical parts (at least imho)
02:11:05BluuChipindeed
02:11:28BluuChipbut there the rockbox line draw is not even optimised for C afict
02:11:32BluuChipafaict
02:12:49BluuChipmaybe compile sorts it out, but the code does not look optimised, couple of unrequired vars and such like
02:13:54amiconnHmm, the grayscale line algorithm is almost identical to the rockbox core algorithm
02:13:59BluuChipi know
02:14:09BluuChipI used it as my basis also ;)
02:14:19BluuChipwould you like to see my gfx lib for thoughts?
02:14:38 Join BoD[] [0] (~BoD@JRAF.org)
02:14:52BoD[]Hello rockboxers!
02:15:08*BluuChip whistles bod theme tune (again)
02:15:30BoD[]:)
02:15:57amiconnBluuChip: I once had a look at it, as well as http://www.cs.unc.edu/~hoff/projects/comp235/bresline/perform0.html , but I didn't look further into it
02:15:58BoD[]i don't have a theme tune... what a pity
02:17:12BluuChipThat's the chap - calculate the gradient as a fraction ... x/y
02:17:54BluuChipstart counting at 0, move along add x, until x>y, then x=x-y and carry on until you have finished the x journey
02:18:06BluuChipflip the axes for lines with a gradient >1
02:18:22BluuChipuse special cases for 0, 1 (and often .5)
02:19:02BluuChipx & y are iirc, 2deltaX and 2deltaY
02:19:23BluuChipdeltaX being x2-x1
02:19:25BluuChipetc
02:22:15amiconnIf you want to test synchronization, would dcc be okay for you?
02:26:18c0uttabc - amiconn found the reason why calculator.c won't compile
02:26:56c0uttamath.h is not in /usr/include/mingw
02:28:59BluuChipis that my devkit's fault?
02:29:18c0uttai think so
02:29:51BluuChipi guess calc is the only thing to use it, so it was not traced on the original dev-kit monitor
02:30:30c0uttau want math.h ?
02:30:51BluuChipyes please
02:32:31*c0utta <−− afk
02:38:50 Quit jorbond ()
02:47:51amiconnNite all
02:48:02 Part amiconn
02:50:17 Quit tank ("Leaving")
03:00
03:03:52 Quit AciD ("Connection reset by beer")
03:22:34 Join Guest2 [0] (jirc@ool-43544fe0.dyn.optonline.net)
03:23:45 Quit Guest2 (Client Quit)
03:32:41 Join adi|home [0] (~adi|home@as5300-9.216-194-23-51.nyc.ny.metconnect.net)
03:33:02BluuChipHAY ADI
03:33:20BluuChip(sorry keyboard in "#define" mode)
03:35:17 Join goyschak [0] (~goyschak@p213.54.16.144.tisdip.tiscali.de)
03:35:38goyschakHi to all
03:35:40BluuChipgoyschack - what an unusual handle
03:35:54BluuChipGerman?
03:36:04goyschakit was one of my fav RGP characters
03:36:14BluuChipcoool - Been there :)
03:36:42goyschakgerman yes. but its a combination of foreign surnames from a phonebook
03:36:54goyschak:-)
03:37:03BluuChiplol
03:37:14BluuChipnot scrabble letters and an anagram program then :)
03:37:21goyschaknope
03:37:48goyschakr u from IBM?
03:37:54BluuChipLOL
03:37:54goyschakBlueChip
03:38:15BluuChipOriginally a CB handle given to me by my flat mates brother
03:38:31goyschakhehe
03:38:39goyschakwhat's a CB
03:38:43BluuChipLOL
03:38:46BluuChipyou serious?
03:38:50goyschakreally
03:38:58BluuChipCitizens Band Radio
03:39:10 Quit hardeep ("[BX] If idiots could fly, IRC would be an airport")
03:39:16BluuChipBreaker Breaker 10-4 good buddy rubber duck what's yer 20 etc.
03:39:30goyschaksorry
03:39:41BluuChipver seen the film Convoy?
03:39:51goyschaka couple of times
03:40:02BluuChipthe all communicate with little radios in the cab?
03:40:14goyschakyes
03:40:16BluuChipCB
03:40:23pfavroscar zulu five echo delta romeo stroke juliet
03:40:35BluuChippervert!
03:40:37BluuChipLOL
03:40:44goyschakalpha bravo charlie delta echo foxtrott...
03:40:45BluuChipevenin' pfavr
03:40:48pfavrthat was not cb - but it was the callsign
03:41:06BluuChipooohhh, I cower in the precense of a HAM
03:41:12BluuChip;)
03:41:23BluuChipcould just never be bothered to learn morse
03:41:31goyschaklol
03:41:34pfavrof a 2-meter station I had the pleasure to use at the age of - well I think 13 or so
03:41:47BluuChiponly to dicover that when you have one pin left on your chip and an LED, high speed morse is SOOOOOO helpful
03:41:54BluuChipcool
03:42:32pfavrjamboree on the air - the scouts hook up with the radio amateurs one weekend every year (all over the world)
03:42:45goyschaki think i got the wrong channel - it's CB not ROCKBOX ;-)
03:42:49BluuChipyes, I have a friend here who is involved also
03:42:52BluuChiplol
03:43:08pfavrthat's when I saw my first computer also - and got my interest for that
03:43:27BluuChipsaved my pocket money for months to buy my zx81
03:43:30pfavrgoyschak, sorry - got carried away with old memories
03:43:41goyschakmine was a C64
03:43:53BluuChipSID :)
03:43:54pfavrbought a lambda 8300 (zx81 clone) from a friend
03:43:59goyschakwith datasette
03:44:14BluuChipI still have my zx81 + 64K, yes 64K RAM pack
03:44:20goyschakcheap streamer
03:44:35BluuChipgoyschak, did you see the C64/Rockbox project?
03:44:38pfavrI bought mine for something like 12 euros - to play games on it (!)
03:44:45goyschaknope
03:45:01BluuChiptrying to get RB playing PGM files
03:45:07BluuChip(it is PGM isn't it/)
03:45:15BluuChip.PRG maybe?
03:45:25goyschaki taught myself basic on the summer holidays at the age of twelve
03:45:28goyschakRPG
03:45:36goyschakRole Playing Game
03:45:37BluuChiplol
03:45:42BluuChipno, c64 image file
03:46:04goyschakthats when my programming stopped
03:46:32goyschakstill have the backup of my "hello world"
03:46:33pfavrgoyschak, I remember entering all the examples from the manual - and finally seeing that a shortcut for typing "PRINT" was just an exclamation mark - boy I was angry (this was before I learned to type at more than 1 key per minute)
03:46:39BluuChipremember it all and do some cool rockbox stuff
03:47:02goyschaklol that was really stinking
03:47:23BluuChipbloody c64, amazing sound chip, and an acceptable display ...no sound() command, no print_at - D'OH
03:47:51goyschaknext contact with programming was COBOL in '92
03:47:56pfavrheh, I remember I programmed forth on it
03:48:44BluuChipCOBOL - OMG! I am sooooo glad I skipped that language ...hat's off :)
03:48:57goyschakawful - no jumping in the code allowed, no "GOTO"s - horrible, just too structured for me brain
03:49:33pfavrgoyschak, one of my friends did an object oriented toolbox in cobol for cobol
03:49:33goyschakso what was it about the C64 and rockbox
03:49:52BluuChipgetting it to play PRG files natively and sych with the datasette port
03:50:04goyschaklol
03:50:06pfavrthink BluuChip is talking about an emulator for the C64 that runs on the archos
03:50:15goyschakcool
03:50:17pfavrmiss pacman would be fun
03:50:30BluuChipMs surely?
03:50:45goyschakMrs, because of the ghosts
03:50:51pfavrBluuChip, eh, probably right
03:50:51BluuChipwoof
03:50:55goyschakmothers little helper
03:51:09BluuChipnew audio interface is coming along very nicely
03:51:23BluuChipkeep hitting PLUGIN RAM FULL - lol
03:52:06pfavrwell I should eat something and go to bed (the sun is already up)
03:52:15pfavrcu
03:52:19BluuChipl8rz dude
03:52:23goyschakups, i forgot that you are logging the file , cause of the technical relevance
03:52:30goyschakcu
03:52:42 Quit pfavr ("ChatZilla 0.9.52B [Mozilla rv:1.6/1]")
03:52:53BluuChipno problems - there's a lot of "friend making" chat in here
03:53:08goyschakmay i ask a silly question about rockbox - especially the .voice file
03:53:08BluuChipI think it's essential to working together
03:53:14BluuChipyou can try me
03:53:17goyschakcaus it is
03:53:56goyschakwhat do i do with it, what does it make?
03:54:29goyschakalready 2 people left since i came here - ikt might be a record
03:55:01BluuChipyou do smell a bit :P
03:55:02goyschakstill there?
03:55:07goyschaklol
03:55:07BluuChipsorry coding at the same time
03:55:21goyschakkeeping u from work? eh?
03:55:35BluuChipvoice - is for blind or in-car talkie menu system through speakers thing
03:55:40BluuChipjust rockbox coding
03:55:58goyschakhow do i use it?
03:56:07BluuChiptrying to get speech going on my new audio interface
03:56:12goyschakcouldn't find it on the web pages
03:56:24BluuChipget a voice file - put it in the lang dir - turn it on in the menu system
03:56:30***Saving seen data "./dancer.seen"
03:56:32goyschakok
03:56:34BluuChipthere are no offical voice files
03:56:51BluuChipThe one I'm testing atm is not bad
03:56:54goyschaka german, a french and an english one
03:57:16BluuChipI think there was another as well
03:57:43goyschakcan't remember
03:58:28goyschaki'll try this instantly - afk
03:58:43BluuChipthere's english, american and german fast & slow versions
03:58:57goyschaklol
03:59:22goyschaku mean austrian?
03:59:29goyschakthe slow one
04:00
04:00:04BluuChipit's called deutsch, so I guess it's german
04:00:30goyschakyes
04:00:32goyschakit is
04:00:37BluuChipno austrian
04:00:39BluuChipafaik
04:01:02goyschakslow - austrian like in slow - canadian
04:01:54BluuChipphew, one screen down, two to go
04:12:49goyschakcan't find the menu where to turn it on - in the langs dir the voice file is invisible
04:13:35BluuChipgeneral->voice
04:13:51BluuChipgeneral->file view->show files
04:15:16BluuChipthe latter is also F2
04:24:48BluuChipdid u die?
04:25:31 Join goyschak2 [0] (~goyschak@p213.54.42.75.tisdip.tiscali.de)
04:26:08goyschak2sorry, i ignored the batterie status of my laptop
04:26:51BluuChiplol
04:27:15goyschak2hi bluuchip, there is no menu voice, do i need a daily built or is 2.2 sufficient
04:27:42BluuChipahhhaaaaaa
04:27:51BluuChip2.2 is NOT sufficient
04:28:11BluuChipeveryone here runs daily or at least recent builds
04:28:28goyschak2ok, stupid user chooses the wrong version, comes here in the middle of the night, pisses two people off...
04:28:51goyschak2sorry 'bout that
04:28:53BluuChipget some new dice
04:29:00goyschak2haha
04:29:22goyschak2i will, thanks for the help
04:29:35BluuChipI can send you a firmware with the latest audio stuff if you like
04:29:49BluuChipcould do with some beta testing
04:30:00goyschak2splendid
04:30:09BluuChipgimme a mo to compile it up
04:30:22goyschak2yeap
04:31:11goyschak24:30 am, so i can't give you intant feedback, but i will test while you sleep
04:31:26 Quit goyschak (Read error: 110 (Connection timed out))
04:31:43BluuChiphe might have said goodnight!
04:32:19goyschak2oh, my alter alter ego is gone
04:32:27goyschak2sorry, which file type?
04:32:36BluuChiper?
04:32:56goyschak2i blocked a lot of file types
04:33:05BluuChipajz
04:33:07BluuChiprock
04:33:16goyschak2so i need the filetype to accept
04:33:23goyschak2just a min
04:33:57goyschak2done
04:35:03goyschak2connection failed on audio*
04:35:26BluuChipthe audio file MUST live in ./rockbox/rocks
04:35:43goyschak2ok
04:36:08BluuChipthere are other new plugins on my website
04:36:46goyschak2address?
04:37:09goyschak2don't say www.rockbox.sou...
04:37:10BluuChiphomepage.ntlworld.com/cyborgsystems
04:37:25goyschak2resistance is futile
04:37:40BluuChipprizes for spotting all the subliminals ;)
04:37:52goyschak2lol
04:38:05BluuChipmy hobby is social and applied psychology and hypnosis
04:38:21goyschak2my head id dizzy
04:38:29goyschak2id=is
04:38:43BluuChipid often is
04:38:51goyschak2lol
04:39:31goyschak2will get to your website next thing todays morning
04:40:00BluuChipyeah, that's cool - any time you are in a trance as you go there to click on the logo that took me DAYS - lol
04:40:26goyschak2lol
04:40:59BluuChipAt some time I lan to expose all the subliminal messagig techniques used on the site
04:41:03BluuChip*plan
04:41:10BluuChip*messaging
04:43:22goyschak2i have to ask another stupid question. what are the * for?
04:43:41goyschak2yes i plan to give u feedback
04:43:47BluuChipwildcards for the rest of my sentence around which I corrected my smelling pistakes
04:44:12BluuChip*spelling mistakes
04:45:55goyschak2sorry, had a quick look at your page
04:46:47BluuChip;)
04:47:56goyschak2audio* looks cool
04:48:27goyschak2does it take a lot of ram, cause mainly i use the ajr in the car on crappy streets
04:48:58goyschak2is the ram used both for buffering and software?
04:49:11BluuChipit uses the plugin ram ONLY during setup and that ram is reserved anyway
04:49:21goyschak2or isn't there any ram at all?
04:49:22BluuChip32K reserved for plugins
04:49:28goyschak2i see
04:49:34BluuChip200K for the Shadow ROM
04:49:44BluuChipthe rest is mp3 buffer
04:49:49BluuChip2MB in total
04:49:53BluuChipupgradable to 8
04:50:03goyschak22 mins of music
04:50:12goyschak2at 128kbits
04:50:17BluuChipbitrate pending - i do a lot of audio books
04:50:29BluuChiploads of psyche lectures
04:50:33goyschak2lol
04:50:57goyschak2inluencing card players
04:51:15goyschak2at last i lost my flu
04:52:28BluuChipthe cards tricks are cool
04:52:41BluuChiplearn the charlier cut - very simple, very impressive one handed cut
04:53:12BluuChipand with a little work you can cut to the same card every time
04:53:19goyschak2my fingers are made for dice
04:53:35BluuChipno magic?
04:53:42 Join scott666 [0] (~scott666@c-24-245-59-203.mn.client2.attbi.com)
04:53:43BluuChip..the gathering
04:53:53goyschak2no not at all
04:53:56BluuChipscatan666 is back
04:53:57scott666gathering, eh?
04:53:58goyschak2too limited
04:54:06goyschak2compared to real rpgs
04:54:21scott666'real' RPGs?
04:54:24BluuChipbut you don't need a decent GM to play it ;)
04:54:37goyschak2wrong channel, it's about CB
04:54:42BluuChipLARP - Never get bored with a rubber sword
04:54:44goyschak2;-)
04:54:46BluuChiplol
04:54:50goyschak2lol
04:54:51BluuChip10-4 good buddy
04:55:04goyschak2CQ CQ
04:55:11BluuChipon the side, slide
04:56:07BluuChipCQ you're radio 5 with no mod
04:56:34goyschak2rubber duck
04:57:49goyschak2oops my girlfriend woke up, afk couple of mins
04:57:56scott666lol
04:58:00BluuChipLMAO
04:58:16BluuChipbeats "off to browse porn"
04:58:31BluuChiphows life scott
04:58:56scott666not bad
04:59:35scott666hows MBD going?
04:59:39BluuChipcool
04:59:42BluuChipMDB is done
04:59:49BluuChipjust adding speech at the moment
05:00
05:00:19BluuChipgot a weird problem with mono modes though - mono left just seems to mute the right ear >(
05:00:50scott666what should mono left do?
05:01:01BluuChipcetral sound, left channel only
05:01:04BluuChipcentral
05:01:23scott666but it just plays left sound left channel?
05:01:28BluuChipyes
05:01:32scott666gotcha
05:01:43BluuChipand as far as I can tell, I'mdoing exactly the same as rockbox
05:02:01BluuChipgot all the weird new modes working though :)
05:03:35BluuChipdid you see the final result for the MDB screen?
05:04:07 Quit adi|home (Client Quit)
05:06:08scott666no, i didnt
05:06:14scott666but i have no sound
05:06:23BluuChipstill looks cool
05:09:03goyschak2tempus fugit
05:09:34BluuChipdated a chick who looked like that once
05:09:47goyschak2BluuChip i'll get in touch with you as soon as i've done some testing
05:09:56BluuChipcool dude - cheers
05:10:08goyschak2i should've switched off the webcam
05:10:22BluuChipshave your ar53 dude!
05:11:26goyschak2you too. thanks a lot, might take time till monday. Nite. That's all folks!
05:11:46BluuChipbyeeeeeeee
05:12:25BoD[]:))
05:12:58goyschak2bye
05:13:01 Part goyschak2
05:56:31***Saving seen data "./dancer.seen"
06:00
06:00:52 Join mecraw_ [0] (~mecraw@c-24-9-226-58.client.comcast.net)
06:01:30BluuChipbyeee
06:01:49 Part BluuChip
06:02:47 Quit BoD[] ("fooman!")
06:19:21 Quit mecraw (Read error: 110 (Connection timed out))
06:19:22 Quit NibbIer (Read error: 54 (Connection reset by peer))
06:25:53 Quit scott666 ("i'll be back...eventually...")
06:27:43 Nick mecraw_ is now known as mecraw (~mecraw@c-24-9-226-58.client.comcast.net)
07:00
07:22:41 Join adi|home [0] (~adi|home@as5300-9.216-194-23-76.nyc.ny.metconnect.net)
07:56:34***Saving seen data "./dancer.seen"
08:00
08:02:55 Join NibbIer [0] (nibbler@port-212-202-78-119.dynamic.qsc.de)
08:32:25 Quit NibbIer (Read error: 54 (Connection reset by peer))
09:00
09:38:23 Quit adi|home (Connection timed out)
09:56:35***Saving seen data "./dancer.seen"
10:00
10:03:10 Join NibbIer [0] (nibbler@port-212-202-78-119.dynamic.qsc.de)
11:00
11:34:27 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net)
11:54:19 Quit NibbIer (Read error: 54 (Connection reset by peer))
11:56:39***Saving seen data "./dancer.seen"
13:00
13:34:35 Join NibbIer [0] (nibbler@port-212-202-78-119.dynamic.qsc.de)
13:48:52 Join Ceka [0] (~instalaci@69-167-90-28.atlsfl.adelphia.net)
13:50:20 Part Ceka
13:56:43***Saving seen data "./dancer.seen"
14:00
14:14:08 Quit NibbIer (Read error: 54 (Connection reset by peer))
14:57:10 Join pfavr [0] (~Peter_Fav@c076102a.s-oe.bostream.se)
15:00
15:12:35 Join goyschak [0] (~goyschak@p213.54.42.75.tisdip.tiscali.de)
15:13:33 Part goyschak
15:50:28 Join NibbIer [0] (nibbler@port-212-202-78-119.dynamic.qsc.de)
15:55:00 Quit AciD (Read error: 54 (Connection reset by peer))
15:56:47***Saving seen data "./dancer.seen"
16:00
16:15:34 Quit NHI (Read error: 54 (Connection reset by peer))
16:32:55 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net)
16:34:52 Join adi|home [0] (~adi|home@as5300-11.216-194-24-231.nyc.ny.metconnect.net)
16:47:33 Join scott666 [0] (~scott666@c-24-245-59-203.mn.client2.attbi.com)
16:47:33 Quit pfavr (Read error: 104 (Connection reset by peer))
16:56:23 Join pfavr [0] (~Peter_Fav@c076102a.s-oe.bostream.se)
17:00
17:32:38 Quit NibbIer (Read error: 54 (Connection reset by peer))
17:56:48***Saving seen data "./dancer.seen"
18:00
18:03:54 Quit pfavr ("ChatZilla 0.9.52B [Mozilla rv:1.6/1]")
18:32:46 Join julia [0] (~julia@207-36-180-196.ptr.primarydns.com)
18:32:57juliahi
18:35:08julianevermind, found the faq that answers my question
19:00
19:02:53 Quit scott666 (Read error: 54 (Connection reset by peer))
19:10:03 Join scott666 [0] (~scott666@c-24-245-59-203.mn.client2.attbi.com)
19:10:14 Quit scott666 (Read error: 54 (Connection reset by peer))
19:10:35 Join scott666 [0] (~scott666@c-24-245-59-203.mn.client2.attbi.com)
19:10:44 Join NibbIer [0] (nibbler@port-212-202-78-119.dynamic.qsc.de)
19:24:51 Part scott666
19:56:51***Saving seen data "./dancer.seen"
20:00
20:01:11 Quit NibbIer (Read error: 54 (Connection reset by peer))
20:29:52 Join top_bloke [0] (~ekolb_pot@0-1pool36-16.nas12.oakbrook1.il.us.da.qwest.net)
21:00
21:02:33 Join BluuChip [0] (~bluechip@cpc3-colc1-3-0-cust61.colc.cable.ntl.com)
21:03:13BluuChipc0utta, you here?
21:03:45 Nick BluuChip is now known as BlueChip (~bluechip@cpc3-colc1-3-0-cust61.colc.cable.ntl.com)
21:22:57 Join scott666_ [0] (~scott666@c-24-245-59-203.mn.client2.attbi.com)
21:36:28 Join NibbIer [0] (nibbler@port-212-202-78-119.dynamic.qsc.de)
21:45:01 Quit scott666_ (Read error: 60 (Operation timed out))
21:46:15 Join scott666_ [0] (~scott666@c-24-245-59-203.mn.client2.attbi.com)
21:56:52***Saving seen data "./dancer.seen"
22:00
22:47:44 Quit scott666_ ("i'll be back...eventually...")
23:00
23:10:25 Join scott666_ [0] (~scott666@c-24-245-59-203.mn.client2.attbi.com)
23:21:49 Quit scott666_ (Read error: 104 (Connection reset by peer))
23:39:09 Join scott666_ [0] (~scott666@c-24-245-59-203.mn.client2.attbi.com)
23:56:55***Saving seen data "./dancer.seen"

Previous day | Next day