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-02-17

00:08:17 Quit AciD (Read error: 54 (Connection reset by peer))
00:08:17 Quit Bagge0 (Read error: 54 (Connection reset by peer))
00:12:00LinusNmidknight2k3: i found the spindown problem
00:12:06midknight2k3woohoo
00:12:10LinusNlooks like theis bug has been there for ages
00:12:19midknight2k3well it used to work
00:12:39LinusNages == before 2.0
00:12:54midknight2k3"looks like" != for sure
00:12:55midknight2k3:)
00:13:16 Join AciD [0] (~acid@lns-vlq-12-62-147-169-60.adsl.proxad.net)
00:13:27LinusNthe ATA standby is activated by default when the drive powers up, set to 30s
00:13:54LinusNso, the drive will spin down after 30s regardless of the software
00:14:22midknight2k3ha.
00:15:24 Quit c0utta (Read error: 104 (Connection reset by peer))
00:17:16midknight2k3oh wait
00:17:18midknight2k3thats not good
00:17:26midknight2k3why even have the setting >30 then anyhow
00:18:19LinusNthe bug affects the browsing as well, btw
00:18:56midknight2k3can we keep the "disk spinning while browsing" feature?
00:19:58elinenbeLinusN: hi there!
00:20:14elinenbejust reading the conversation −− good job!
00:20:16elinenbemidknight2k3: hello.
00:20:22elinenbeLinusN: how was the move?
00:20:35LinusNpainless, apart from the snow storm :-)
00:20:53***Saving seen data "./dancer.seen"
00:20:54LinusNstill lots of boxes left to unpack...
00:21:12LinusNmidknight2k3: sure
00:21:36LinusNmidknight2k3: it was a mistake of mine to think it was a bug
00:21:36midknight2k3ooh
00:21:38midknight2k3linus moved?
00:21:47midknight2k3woo woo go linus
00:21:48LinusN80 meters
00:21:51midknight2k3hi elinenbe
00:21:54elinenbehi there.
00:21:54midknight2k380 meters
00:21:57midknight2k3hm
00:22:18elinenbeLinusN: I have moved short distances the past few years, and I still have boxes packed up
00:22:40elinenbemy theory is −− if I don't know what is in the box and I have not unpacked it yet, then I will not miss what is in there
00:23:10midknight2k3LOL
00:23:57midknight2k3LinusN: did you check out the vu patch yet?
00:24:51midknight2k3well merge it asap, it's a rather important update
00:24:53midknight2k3ttyl all
00:25:07 Nick midknight2k3 is now known as midk|bbl (ZakkRobert@c-24-18-39-169.client.comcast.net)
00:30:43 Quit uski ("Fermeture du client")
00:36:10 Join track [0] (74d57721@ACBF2DFA.ipt.aol.com)
00:36:14trackhi
00:36:25trackLinusN diddystar wants you to add his new vu meter to rockbox
00:46:32GoatBoyheh
00:46:59GoatBoywell, you could get a really small meter, and hook it up to the headphone output...
01:00
01:02:58 Part track
01:28:34 Join brainlock [0] (~geshtolt@dhcp1663210.indy.rr.com)
01:29:07Doggeranyone here know much about ATA?
01:29:18LinusNa little
01:29:24Doggerok,
01:29:37DoggerI'm issuing command 0x20 - READ SECTORS
01:29:47Doggerit works fine if I just read 1 sector at a time,
01:29:53Doggerbut if I try and read more than 1,
01:30:02Doggerthe start of the 2nd sector gets corrupted
01:30:15Doggerdo I have to do something inbetween sector reads from the data reg?
01:30:26Doggereg waitForReady or waitForStartOfXfer?
01:30:32LinusNdefine "corrupted"
01:30:45Dogger(I'm waiting for start of xfer at the start of transfer
01:31:16Doggerthe 1st 6 words of the 2nd sector are d000 d000 d000 d000 d000 d000
01:31:18DoggerNOT the data
01:31:28Doggerbut after that, it carries on getting the data where it should
01:32:11Doggerthen it happens again at beginning of 3rd sector etc
01:32:41Doggerlooks like I have to wait inbetween reading each sector off the data reg?
01:32:51Doggeror wait for some flag or something
01:33:03LinusNwell, BSY must be 0 and DRQ must be 1
01:33:21Doggerdo I need to check that each time?
01:33:28LinusNfor each sector yes
01:33:28Doggeror just after I send it the COMMAND?
01:33:33Doggerok,
01:33:50Doggerso every 256 words transfered I need to check?
01:34:04LinusNyes, think of it like this:
01:34:19LinusN"don't trust any bits in the status register unless BSY is 0"
01:34:42LinusNmy quite
01:34:47LinusNquote
01:34:52Doggeryeah just tried that though
01:35:10Doggermy waitForXfer waits until BSY=0, and DRQ=1
01:35:13LinusNhow about wait states, pio modes etc?
01:35:20LinusNIORDY
01:35:24Doggerhavent done any wait states
01:35:35DoggerIORDY?
01:35:52LinusNIORDY is used to insert wait states
01:36:06Doggerhow does it work?
01:36:09LinusNthe host should delay the access until IORDY is negated
01:36:42LinusNso if the access needs longer time, the device asserts IORDY until the access is finished
01:37:08LinusNeither that, or the host uses a very long access time by default
01:37:13Doggerwhere is IORDY? in ata reg?
01:37:21LinusNi discovered today that 400ns isn't uncommon
01:37:33LinusNIORDY is a pin in the connector
01:37:42Doggerok,
01:37:53LinusNin the jukebox, it is connected to /WAIT
01:37:59LinusN(via some glue)
01:38:59Doggerah ok,
01:39:26Doggerworks fine if I do it 1 sector at a time
01:39:33Doggermaybe I'll just leave it like that for now...
01:40:14LinusNi think the device needs some time to transfer the next sector from the cache to the FIFO
01:40:27Doggersure it looks that way
01:40:36Doggerthe official firmware uses dma though
01:40:48LinusNnice
01:40:48Doggerso maybe I should just leave it at 1 sector for now until I get dma done
01:40:57Doggerdoes the jukebox have dma?
01:42:50LinusNnot for ata
01:43:37Doggerhow configurable is the line in line out?
01:43:46Doggercan you get/put raw data?
01:44:35LinusNno
01:44:48Doggerits hard wired to the mas?
01:45:03LinusNyes
01:45:09Doggerk
01:47:00Doggerare there any datasheets on the mas?
01:50:17LinusNhttp://rockbox.haxx.se/docs/datasheets.html
01:50:30Doggercool thanks
01:50:54 Part brainlock
01:57:34Doggergot it! cool ATA works
01:57:40Doggerit was my fault
01:57:48Doggerworking for xfer inbetween sectors works now
01:57:51Doggerthanks :)
02:00
02:01:50 Join uski [0] (~uski@gandalf.digital-network.org)
02:03:12 Quit elinenbe (Read error: 60 (Operation timed out))
02:16:52 Quit midk|bbl (Read error: 104 (Connection reset by peer))
02:20:57***Saving seen data "./dancer.seen"
02:34:59Doggerhttp://avos.sourceforge.net/index.php?a=bins
02:35:00 Quit uski (Read error: 104 (Connection reset by peer))
02:35:06Doggercheck out the vids ;)
02:45:22LinusN:-)
02:45:29LinusNtime to sleep
02:45:29LinusNcu around
02:45:31LinusNnite
02:45:44 Part LinusN
03:00
03:35:11 Join brainlock [0] (~geshtolt@dhcp1663210.indy.rr.com)
03:37:38 Quit WeeD0pE ()
04:00
04:01:05 Quit Nibbler (Read error: 54 (Connection reset by peer))
04:21:00***Saving seen data "./dancer.seen"
04:37:09 Quit hardeep ("[BX] Hanson uses BitchX. Mommy, can we dress like boys again?")
04:39:53 Part brainlock
05:00
05:01:31 Quit AciD (Read error: 60 (Operation timed out))
05:27:24 Join midknight2k3 [0] (ZakkRobert@c-24-18-39-169.client.comcast.net)
05:37:46 Join Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de)
05:44:23 Nick midknight2k3 is now known as midk|FlightSim2K (ZakkRobert@c-24-18-39-169.client.comcast.net)
05:44:36 Nick midk|FlightSim2K is now known as m|FlightSim2k4 (ZakkRobert@c-24-18-39-169.client.comcast.net)
05:48:44 Nick m|FlightSim2k4 is now known as mid|flightSim2k4 (ZakkRobert@c-24-18-39-169.client.comcast.net)
06:00
06:11:07 Join elinenbe [0] (~elinenbe@66-108-45-141.nyc.rr.com)
06:11:28mid|flightSim2k4hi elinenbe
06:20:05 Quit mid|flightSim2k4 (Read error: 104 (Connection reset by peer))
06:21:04***Saving seen data "./dancer.seen"
06:26:02 Quit scott666 ("i'll be back...eventually...")
06:36:58 Join moorkonig [0] (~trillian@port-212-202-200-178.reverse.qsc.de)
06:39:47 Join midknight2k3 [0] (ZakkRobert@c-24-18-39-169.client.comcast.net)
06:40:31 Quit elinenbe (" HydraIRC -> http://www.hydrairc.com <- s0 d4Mn l33t |t'z 5c4rY!")
06:41:05 Join elinenbe [0] (~elinenbe@66-108-45-141.nyc.rr.com)
06:54:22 Quit adi|home (Client Quit)
06:56:33 Quit GoatBoy ("[BX] That's Mister BitchX to you")
07:00
07:07:30 Join Bagge [0] (Bagge0@dsl-213-023-176-143.arcor-ip.net)
07:13:19 Quit Dogger ("Client Exiting")
07:14:57midknight2k3tastey
08:00
08:21:08***Saving seen data "./dancer.seen"
08:27:56 Quit Bagge (Read error: 104 (Connection reset by peer))
08:27:56 Quit Nibbler (Read error: 104 (Connection reset by peer))
08:46:23 Quit moorkonig (Read error: 110 (Connection timed out))
08:58:34 Join matsl [0] (~matsl@dhcp91.contactor.se)
09:00
09:37:53 Join Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de)
09:56:21 Quit Nibbler (Read error: 54 (Connection reset by peer))
10:00
10:11:08 Join oxygen77 [0] (~Chris@pauguste-7-82-66-87-78.fbx.proxad.net)
10:21:11***Saving seen data "./dancer.seen"
10:25:21midknight2k3nite all
10:25:23 Quit midknight2k3 ("Going... BYE!")
10:38:14 Join Domin [0] (Domin@50C57FCC.flatrate.dk)
10:39:34 Join pfavr [0] (~pfavr@c83958a.s-oe.bostream.se)
11:00
11:00:50 Join track [0] (~74d57721@ACBA9E17.ipt.aol.com)
11:00:53 Quit track ("leafChat IRC client: http://www.leafdigital.com/Software/leafChat/")
11:10:44Dominpfavr, i like your idea about password for the archos
11:17:24 Join c0utta [0] (HydraIRC@dialup-34.56.221.203.acc06-waym-adl.comindico.com.au)
11:20:04 Quit webmind (Read error: 104 (Connection reset by peer))
11:24:57pfavrDomin: well, it wasn't really my idea
11:24:59 Join webmind [0] (~cme2@217-195-236-172.dsl.esined.net)
11:33:26Dominit wasent ??
11:33:35DominJust looked yesterdays log
11:33:43Dominthought the idea was your
11:33:45Domin+s
11:33:54Dominbut, never mind, its still nice
11:38:05 Join Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de)
11:43:44Dominwee, finaly found out how the queue function works, couldent find it yesterday ;-)
11:44:21DominBtw, this is extremely nice that you have coded this software for the archos, just what it needed
11:45:36pfavrI agree, but so far I didn't do a single line
11:45:47Dominhehe ;-)
11:45:53DominJust found the site yesterday
11:46:12pfavrBut rockbox is the most successful open source project I know of (besides Linux)
11:46:32Dominonly function i need more is a function in winamp that allows the sendto to point to the archos drive
11:46:44Dominits wery nice
11:46:55Dominbut i know others to that is also sucsfull
11:47:18Dominhttp://forum.snitz.com <−− also wery nice
11:47:21pfavrWell, maybe it is because I don't know that many
11:48:42Domin:-)
11:49:10DominBut indeed this is wery nice, espesialy when the manufactors dont support the device
11:52:22dwihnoI haven't figured out all the playlist commands yet.
11:52:49*pfavr is away: breakfast
11:54:31Dominhehe, me nighter, just playing around with it for the moment
11:56:10 Quit oxygen77 ("Leaving")
12:00
12:21:12***Saving seen data "./dancer.seen"
12:22:52 Join oxygen77 [0] (~Chris@pauguste-7-82-66-87-78.fbx.proxad.net)
12:22:53 Quit Nibbler (Read error: 104 (Connection reset by peer))
12:27:02 Join uski [0] (~uski@gandalf.digital-network.org)
12:30:55*pfavr is back
13:00
13:35:01 Join moorkonig [0] (~trillian@port-212-202-175-65.reverse.qsc.de)
13:42:40 Part moorkonig
13:46:07 Join AciD [0] (~acid@lns-th2-15-82-64-225-112.adsl.proxad.net)
14:00
14:07:41 Join Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de)
14:14:41*pfavr is back
14:14:51 Quit pfavr ("using sirc version 2.211+KSIRC/1.2.4")
14:17:21 Join moorkonig [0] (~trillian@port-212-202-175-65.reverse.qsc.de)
14:19:45 Nick moorkonig is now known as moormaster (~trillian@port-212-202-175-65.reverse.qsc.de)
14:20:38 Quit moormaster (Client Quit)
14:21:00 Join elinenbe_ [0] (elinenbe_@207-237-224-72.c3-0.nyr-ubr1.nyr.ny.cable.rcn.com)
14:21:16***Saving seen data "./dancer.seen"
14:23:41 Join elinenbe__ [0] (elinenbe_@207-237-224-72.c3-0.nyr-ubr1.nyr.ny.cable.rcn.com)
14:28:30 Quit AciD (Connection timed out)
14:37:23 Quit elinenbe_ (Read error: 104 (Connection reset by peer))
14:38:31 Quit elinenbe (Read error: 110 (Connection timed out))
14:38:32 Nick elinenbe__ is now known as elinenbe (elinenbe_@207-237-224-72.c3-0.nyr-ubr1.nyr.ny.cable.rcn.com)
14:46:33 Join WeeD0pE [0] (WeeD0pE@lpz9-d9ba72e5.pool.mediaWays.net)
15:00
15:14:19 Join hardeep [0] (1098@208.247.65.237)
15:31:02 Join quesalruk [0] (~dfdsaf@193.136.159.161)
15:31:03quesalrukhi
15:33:24uskihi
16:00
16:02:28 Quit mecraw_ ("Trillian (http://www.ceruleanstudios.com)")
16:16:16 Quit WeeD0pE ()
16:16:32quesalrukcu!
16:16:36 Quit quesalruk ()
16:21:18***Saving seen data "./dancer.seen"
16:32:43 Join methangas [0] (methangas@0x50c61deb.virnxx10.adsl-dhcp.tele.dk)
16:35:36 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net)
16:38:46 Quit oxygen77 (truong.freenode.net irc.freenode.net)
16:38:46NSplittruong.freenode.net irc.freenode.net
16:38:57NHealtruong.freenode.net irc.freenode.net
16:38:57NJoinoxygen77 [0] (~Chris@pauguste-7-82-66-87-78.fbx.proxad.net)
16:39:03 Quit oxygen77 ("Leaving")
16:40:33 Join oxygen77 [0] (~Chris@pauguste-7-82-66-87-78.fbx.proxad.net)
17:00
17:04:23 Quit elinenbe (Read error: 104 (Connection reset by peer))
17:05:09 Join elinenbe [0] (elinenbe_@207-237-224-72.c3-0.nyr-ubr1.nyr.ny.cable.rcn.com)
17:07:31 Quit AciD (Read error: 60 (Operation timed out))
17:14:11 Quit elinenbe (Read error: 104 (Connection reset by peer))
17:14:16 Join elinenbe [0] (elinenbe_@207-237-224-72.c3-0.nyr-ubr1.nyr.ny.cable.rcn.com)
17:20:19 Quit elinenbe (" HydraIRC -> http://www.hydrairc.com <- s0 d4Mn l33t |t'z 5c4rY!")
17:20:23 Join mecraw_ [0] (~mecraw@69.2.235.2)
17:28:27 Join moormaster [0] (~trillian@port-212-202-175-65.reverse.qsc.de)
17:29:45 Part moormaster
17:59:14 Quit Nibbler (Read error: 104 (Connection reset by peer))
17:59:48 Quit matsl (Remote closed the connection)
18:00
18:08:56 Quit oxygen77 ("Leaving")
18:20:27 Join AciD` [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net)
18:21:22***Saving seen data "./dancer.seen"
18:24:28 Join oxygen77 [0] (~Chris@pauguste-7-82-66-87-78.fbx.proxad.net)
18:27:55 Quit AciD` (Read error: 104 (Connection reset by peer))
18:30:15 Join AciD` [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net)
18:31:18 Quit hardeep ("[BX] Its not TV. Its BitchX.")
18:52:11 Join moormaster [0] (~trillian@port-212-202-175-65.reverse.qsc.de)
19:00
19:01:42 Part moormaster
19:04:51 Join midknight2k3 [0] (ZakkRobert@c-24-18-39-169.client.comcast.net)
19:08:28 Join hardeep [0] (1098@208.247.65.237)
19:09:43midknight2k3hi hardeep
19:10:22 Join track [0] (74d57721@ACBE4653.ipt.aol.com)
19:11:15trackhi
19:11:15midknight2k3hi track
19:11:19trackhi mid
19:11:31midknight2k3http://www.timex.com/datalink/
19:11:33midknight2k3my new watch
19:12:21tracklooks nice
19:12:34 Join Nirmit [0] (jirc@61.16.210.146)
19:12:37midknight2k3you can program it
19:12:42trackyea i saw
19:12:43midknight2k3i think i'll try and put rockbox on it :D
19:12:52trackINDIGLO® night-light with NIGHT-MODE® feature
19:12:58trackWorks with MICROSOFT® OUTLOOK® messaging and collaboration client
19:13:04Nirmithi guys
19:13:14DBUGEnqueued KICK Nirmit
19:13:14Nirmitdfghf
19:13:27midknight2k3hi nirmit
19:18:01 Quit Nirmit (truong.freenode.net irc.freenode.net)
19:18:01NSplittruong.freenode.net irc.freenode.net
19:18:01 Quit methangas (truong.freenode.net irc.freenode.net)
19:18:01 Quit webmind (truong.freenode.net irc.freenode.net)
19:18:01 Quit MT (truong.freenode.net irc.freenode.net)
19:18:01 Quit Hadaka (truong.freenode.net irc.freenode.net)
19:18:01 Quit mecraw_ (truong.freenode.net irc.freenode.net)
19:18:01 Quit Domin (truong.freenode.net irc.freenode.net)
19:18:01 Quit dwihno (truong.freenode.net irc.freenode.net)
19:18:01 Quit ze (truong.freenode.net irc.freenode.net)
19:18:01 Quit midknight2k3 (truong.freenode.net irc.freenode.net)
19:18:01 Quit uski (truong.freenode.net irc.freenode.net)
19:18:01 Quit c0utta (truong.freenode.net irc.freenode.net)
19:18:01 Quit mbr (truong.freenode.net irc.freenode.net)
19:18:01 Quit [OFF]BtT (truong.freenode.net irc.freenode.net)
19:18:01 Quit hardeep (truong.freenode.net irc.freenode.net)
19:18:01 Quit AciD` (truong.freenode.net irc.freenode.net)
19:18:01 Quit track (truong.freenode.net irc.freenode.net)
19:18:24NHealtruong.freenode.net irc.freenode.net
19:18:24NJointrack [0] (74d57721@ACBE4653.ipt.aol.com)
19:18:24NJoinhardeep [0] (1098@208.247.65.237)
19:18:24NJoinmidknight2k3 [0] (ZakkRobert@c-24-18-39-169.client.comcast.net)
19:18:24NJoinAciD` [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net)
19:18:24NJoinmecraw_ [0] (~mecraw@69.2.235.2)
19:18:24NJoinmethangas [0] (methangas@0x50c61deb.virnxx10.adsl-dhcp.tele.dk)
19:18:24NJoinuski [0] (~uski@gandalf.digital-network.org)
19:18:24NJoinwebmind [0] (~cme2@217-195-236-172.dsl.esined.net)
19:18:24NJoinc0utta [0] (HydraIRC@dialup-34.56.221.203.acc06-waym-adl.comindico.com.au)
19:18:24NJoinDomin [0] (Domin@50C57FCC.flatrate.dk)
19:18:24NJoindwihno [0] (~Mongo@h81172195115.kund.kommunicera.umea.se)
19:18:24NJoinze [20] (psyco@adsl-63-205-46-102.dsl.lsan03.pacbell.net)
19:18:24NJoinHadaka [0] (naked@aka.pp.htv.fi)
19:18:24NJoinmbr [0] (~mb@stz-softwaretechnik.com)
19:18:24NJoin[OFF]BtT [0] (~quasi@80.238.199.45)
19:18:24NJoinMT [0] (mt@no.beer.for.beating.me.uk)
19:18:54tracklol
19:19:14midknight2k3LOGBOT WOO
19:22:06tracklol
19:25:05midknight2k3who wants to see my 3d imc?
19:27:07trackwhat does the word "generic" mean?
19:27:07midknight2k3(track raises hand)
19:27:10midknight2k3OK track ill show you
19:27:18midknight2k3generic means general
19:27:25trackoh right
19:27:27midknight2k3like
19:27:29midknight2k3ok
19:28:20midknight2k3track
19:28:23midknight2k3still on leafchat?
19:28:48trackyes
19:29:22midknight2k3still got broadband?
19:29:23trackvery nice pic
19:29:25midknight2k3looks like
19:29:25trackyes
19:29:28track1mb
19:29:30midknight2k3it didnt even show it
19:29:35midknight2k3it didnt finish yet
19:29:39midknight2k3how can you say nice pic
19:29:56tracka blue ball of some sort underneath a large grey T shaped object
19:30:27midknight2k3that'd be, a blue glow inside 3 spinning rings, with a gantry crane overneath :D
19:32:03track yes
19:33:17midknight2k3here see
19:33:23midknight2k3http://contact-themovie.warnerbros.com/cmp/machine2.html
19:33:25midknight2k3NO
19:33:28midknight2k3here
19:33:29midknight2k3http://contact-themovie.warnerbros.com/img/machine/20.jpg
19:34:14midknight2k3the reason they're offset is because that's what they look like when in motion
19:34:36 Part track
19:34:58 Join pfavr [0] (~pfavr@c83958a.s-oe.bostream.se)
19:36:50midknight2k3PFAVR
19:39:50 Join Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de)
20:00
20:07:21 Quit Nibbler (Read error: 104 (Connection reset by peer))
20:09:26midknight2k3tasty
20:21:25***Saving seen data "./dancer.seen"
20:35:21 Quit AciD` (Read error: 104 (Connection reset by peer))
20:44:12CtcpIgnored 1 channel CTCP requests in 0 seconds at the last flood
20:44:12*pfavr is away: eating
20:55:29 Quit hardeep ("My damn controlling terminal disappeared!")
20:58:37 Quit pfavr ("using sirc version 2.211+KSIRC/1.2.4")
21:00
21:25:31 Quit uski (Remote closed the connection)
21:26:31 Join uski [0] (~uski@gandalf.digital-network.org)
21:27:48 Join AciD` [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net)
21:37:53 Join track [0] (~74d57721@ACBD5778.ipt.aol.com)
21:37:58 Quit midknight2k3 ("Going... BYE!")
21:40:02 Join Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de)
21:46:03 Join scott666 [0] (scott666@c-24-245-58-245.mn.client2.attbi.com)
22:00
22:04:28 Quit track ("leafChat IRC client: http://www.leafdigital.com/Software/leafChat/")
22:05:14 Join leapfrog [0] (~idavies@host81-129-46-190.in-addr.btopenworld.com)
22:16:21Dominevening
22:16:28Dominanyone still awaker
22:16:31Dominawake
22:21:29***Saving seen data "./dancer.seen"
22:24:11 Quit oxygen77 ("Leaving")
22:25:18 Quit methangas (" The IRC Client of the Gods! -> http://www.hydrairc.com <- HydraIRC")
22:40:29 Join track [0] (~74d57721@ACBD5778.ipt.aol.com)
22:44:06 Quit leapfrog ("leaving")
22:45:11 Join Bagder [0] (~daniel@c25025a.hud.bostream.se)
22:46:25trackhi
22:47:48trackmy hd is nearly full :(
22:48:57uskiif (hard_drive_nearly_full == 1) buy_another_hard_drive();
22:49:30trackcant afford one
22:58:18uskiif (cant_afford_a_new_hd) free_some_space;
22:58:18uski;)
23:00
23:00:26trackyea
23:00:35trackGot 3 Gb left
23:05:40 Quit track ("leafChat IRC client: http://www.leafdigital.com/Software/leafChat/")
23:22:13 Quit uski (Remote closed the connection)
23:22:56 Join uski [0] (~uski@gandalf.digital-network.org)
23:30:42 Quit uski (Remote closed the connection)
23:31:44 Join uski [0] (~moo@gandalf.digital-network.org)
23:40:26 Join hardeep [0] (1098@208.247.65.237)
23:50:45 Join midknight2k3 [0] (zakk@ACC14A94.ipt.aol.com)
23:50:50uskigood nite all
23:50:54uski23:52 here
23:51:03midknight2k3nite
23:51:04midknight2k3uski
23:51:07midknight2k3:)
23:51:20 Part uski ("Fermeture du client")

Previous day | Next day