--- Log for 17.02.104 Server: truong.freenode.net Channel: #rockbox --- Nick: logbot_ Version: Dancer V4.16p1 Started: 4 days and 19 hours ago 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.00 # midknight2k3: i found the spindown problem 00.12.06 # woohoo 00.12.10 # looks like theis bug has been there for ages 00.12.19 # well it used to work 00.12.39 # ages == before 2.0 00.12.54 # "looks like" != for sure 00.12.55 # :) 00.13.16 Join AciD [0] (~acid@lns-vlq-12-62-147-169-60.adsl.proxad.net) 00.13.27 # the ATA standby is activated by default when the drive powers up, set to 30s 00.13.54 # so, the drive will spin down after 30s regardless of the software 00.14.22 # ha. 00.15.24 Quit c0utta (Read error: 104 (Connection reset by peer)) 00.17.16 # oh wait 00.17.18 # thats not good 00.17.26 # why even have the setting >30 then anyhow 00.18.19 # the bug affects the browsing as well, btw 00.18.56 # can we keep the "disk spinning while browsing" feature? 00.19.58 # LinusN: hi there! 00.20.14 # just reading the conversation -- good job! 00.20.16 # midknight2k3: hello. 00.20.22 # LinusN: how was the move? 00.20.35 # painless, apart from the snow storm :-) 00.20.53 *** Saving seen data "./dancer.seen" 00.20.54 # still lots of boxes left to unpack... 00.21.12 # midknight2k3: sure 00.21.36 # midknight2k3: it was a mistake of mine to think it was a bug 00.21.36 # ooh 00.21.38 # linus moved? 00.21.47 # woo woo go linus 00.21.48 # 80 meters 00.21.51 # hi elinenbe 00.21.54 # hi there. 00.21.54 # 80 meters 00.21.57 # hm 00.22.18 # LinusN: I have moved short distances the past few years, and I still have boxes packed up 00.22.40 # my 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.10 # LOL 00.23.57 # LinusN: did you check out the vu patch yet? 00.24.51 # well merge it asap, it's a rather important update 00.24.53 # ttyl 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.14 # hi 00.36.25 # LinusN diddystar wants you to add his new vu meter to rockbox 00.46.32 # heh 00.46.59 # well, you could get a really small meter, and hook it up to the headphone output... 01.02.58 Part track 01.28.34 Join brainlock [0] (~geshtolt@dhcp1663210.indy.rr.com) 01.29.07 # anyone here know much about ATA? 01.29.18 # a little 01.29.24 # ok, 01.29.37 # I'm issuing command 0x20 - READ SECTORS 01.29.47 # it works fine if I just read 1 sector at a time, 01.29.53 # but if I try and read more than 1, 01.30.02 # the start of the 2nd sector gets corrupted 01.30.15 # do I have to do something inbetween sector reads from the data reg? 01.30.26 # eg waitForReady or waitForStartOfXfer? 01.30.32 # define "corrupted" 01.30.45 # (I'm waiting for start of xfer at the start of transfer 01.31.16 # the 1st 6 words of the 2nd sector are d000 d000 d000 d000 d000 d000 01.31.18 # NOT the data 01.31.28 # but after that, it carries on getting the data where it should 01.32.11 # then it happens again at beginning of 3rd sector etc 01.32.41 # looks like I have to wait inbetween reading each sector off the data reg? 01.32.51 # or wait for some flag or something 01.33.03 # well, BSY must be 0 and DRQ must be 1 01.33.21 # do I need to check that each time? 01.33.28 # for each sector yes 01.33.28 # or just after I send it the COMMAND? 01.33.33 # ok, 01.33.50 # so every 256 words transfered I need to check? 01.34.04 # yes, think of it like this: 01.34.19 # "don't trust any bits in the status register unless BSY is 0" 01.34.42 # my quite 01.34.47 # quote 01.34.52 # yeah just tried that though 01.35.10 # my waitForXfer waits until BSY=0, and DRQ=1 01.35.13 # how about wait states, pio modes etc? 01.35.20 # IORDY 01.35.24 # havent done any wait states 01.35.35 # IORDY? 01.35.52 # IORDY is used to insert wait states 01.36.06 # how does it work? 01.36.09 # the host should delay the access until IORDY is negated 01.36.42 # so if the access needs longer time, the device asserts IORDY until the access is finished 01.37.08 # either that, or the host uses a very long access time by default 01.37.13 # where is IORDY? in ata reg? 01.37.21 # i discovered today that 400ns isn't uncommon 01.37.33 # IORDY is a pin in the connector 01.37.42 # ok, 01.37.53 # in the jukebox, it is connected to /WAIT 01.37.59 # (via some glue) 01.38.59 # ah ok, 01.39.26 # works fine if I do it 1 sector at a time 01.39.33 # maybe I'll just leave it like that for now... 01.40.14 # i think the device needs some time to transfer the next sector from the cache to the FIFO 01.40.27 # sure it looks that way 01.40.36 # the official firmware uses dma though 01.40.48 # nice 01.40.48 # so maybe I should just leave it at 1 sector for now until I get dma done 01.40.57 # does the jukebox have dma? 01.42.50 # not for ata 01.43.37 # how configurable is the line in line out? 01.43.46 # can you get/put raw data? 01.44.35 # no 01.44.48 # its hard wired to the mas? 01.45.03 # yes 01.45.09 # k 01.47.00 # are there any datasheets on the mas? 01.50.17 # http://rockbox.haxx.se/docs/datasheets.html 01.50.30 # cool thanks 01.50.54 Part brainlock 01.57.34 # got it! cool ATA works 01.57.40 # it was my fault 01.57.48 # working for xfer inbetween sectors works now 01.57.51 # thanks :) 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.59 # http://avos.sourceforge.net/index.php?a=bins 02.35.00 Quit uski (Read error: 104 (Connection reset by peer)) 02.35.06 # check out the vids ;) 02.45.22 # :-) 02.45.29 # time to sleep 02.45.29 # cu around 02.45.31 # nite 02.45.44 Part LinusN 03.35.11 Join brainlock [0] (~geshtolt@dhcp1663210.indy.rr.com) 03.37.38 Quit WeeD0pE () 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.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.11.07 Join elinenbe [0] (~elinenbe@66-108-45-141.nyc.rr.com) 06.11.28 # hi 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.07.30 Join Bagge [0] (Bagge0@dsl-213-023-176-143.arcor-ip.net) 07.13.19 Quit Dogger ("Client Exiting") 07.14.57 # tastey 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.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.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.21 # nite 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.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.44 # pfavr, 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.57 # Domin: well, it wasn't really my idea 11.24.59 Join webmind [0] (~cme2@217-195-236-172.dsl.esined.net) 11.33.26 # it wasent ?? 11.33.35 # Just looked yesterdays log 11.33.43 # thought the idea was your 11.33.45 # +s 11.33.54 # but, never mind, its still nice 11.38.05 Join Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de) 11.43.44 # wee, finaly found out how the queue function works, couldent find it yesterday ;-) 11.44.21 # Btw, this is extremely nice that you have coded this software for the archos, just what it needed 11.45.36 # I agree, but so far I didn't do a single line 11.45.47 # hehe ;-) 11.45.53 # Just found the site yesterday 11.46.12 # But rockbox is the most successful open source project I know of (besides Linux) 11.46.32 # only function i need more is a function in winamp that allows the sendto to point to the archos drive 11.46.44 # its wery nice 11.46.55 # but i know others to that is also sucsfull 11.47.18 # http://forum.snitz.com <-- also wery nice 11.47.21 # Well, maybe it is because I don't know that many 11.48.42 # :-) 11.49.10 # But indeed this is wery nice, espesialy when the manufactors dont support the device 11.52.22 # I haven't figured out all the playlist commands yet. 11.52.49 # * pfavr is away: breakfast 11.54.31 # hehe, me nighter, just playing around with it for the moment 11.56.10 Quit oxygen77 ("Leaving") 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.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.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.14.19 Join hardeep [0] (1098@208.247.65.237) 15.31.02 Join quesalruk [0] (~dfdsaf@193.136.159.161) 15.31.03 # hi 15.33.24 # hi 16.02.28 Quit mecraw_ ("Trillian (http://www.ceruleanstudios.com)") 16.16.16 Quit WeeD0pE () 16.16.32 # cu! 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.46 NSplit truong.freenode.net irc.freenode.net 16.38.57 NHeal truong.freenode.net irc.freenode.net 16.38.57 NJoin oxygen77 [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.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.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.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.43 # hi hardeep 19.10.22 Join track [0] (74d57721@ACBE4653.ipt.aol.com) 19.11.15 # hi 19.11.15 # hi track 19.11.19 # hi mid 19.11.31 # http://www.timex.com/datalink/ 19.11.33 # my new watch 19.12.21 # looks nice 19.12.34 Join Nirmit [0] (jirc@61.16.210.146) 19.12.37 # you can program it 19.12.42 # yea i saw 19.12.43 # i think i'll try and put rockbox on it :D 19.12.52 # INDIGLO® night-light with NIGHT-MODE® feature 19.12.58 # Works with MICROSOFT® OUTLOOK® messaging and collaboration client 19.13.04 # hi guys 19.13.14 DBUG Enqueued KICK Nirmit 19.13.14 # 9dfghf 19.13.27 # hi nirmit 19.18.01 Quit Nirmit (truong.freenode.net irc.freenode.net) 19.18.01 NSplit truong.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.24 NHeal truong.freenode.net irc.freenode.net 19.18.24 NJoin track [0] (74d57721@ACBE4653.ipt.aol.com) 19.18.24 NJoin hardeep [0] (1098@208.247.65.237) 19.18.24 NJoin midknight2k3 [0] (ZakkRobert@c-24-18-39-169.client.comcast.net) 19.18.24 NJoin AciD` [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net) 19.18.24 NJoin mecraw_ [0] (~mecraw@69.2.235.2) 19.18.24 NJoin methangas [0] (methangas@0x50c61deb.virnxx10.adsl-dhcp.tele.dk) 19.18.24 NJoin uski [0] (~uski@gandalf.digital-network.org) 19.18.24 NJoin webmind [0] (~cme2@217-195-236-172.dsl.esined.net) 19.18.24 NJoin c0utta [0] (HydraIRC@dialup-34.56.221.203.acc06-waym-adl.comindico.com.au) 19.18.24 NJoin Domin [0] (Domin@50C57FCC.flatrate.dk) 19.18.24 NJoin dwihno [0] (~Mongo@h81172195115.kund.kommunicera.umea.se) 19.18.24 NJoin ze [20] (psyco@adsl-63-205-46-102.dsl.lsan03.pacbell.net) 19.18.24 NJoin Hadaka [0] (naked@aka.pp.htv.fi) 19.18.24 NJoin mbr [0] (~mb@stz-softwaretechnik.com) 19.18.24 NJoin [OFF]BtT [0] (~quasi@80.238.199.45) 19.18.24 NJoin MT [0] (mt@no.beer.for.beating.me.uk) 19.18.54 # lol 19.19.14 # LOGBOT WOO 19.22.06 # lol 19.25.05 # who wants to see my 3d imc? 19.27.07 # what does the word "generic" mean? 19.27.07 # (track raises hand) 19.27.10 # OK track ill show you 19.27.18 # generic means general 19.27.25 # oh right 19.27.27 # like 19.27.29 # ok 19.28.20 # track 19.28.23 # still on leafchat? 19.28.48 # yes 19.29.22 # still got broadband? 19.29.23 # very nice pic 19.29.25 # looks like 19.29.25 # yes 19.29.28 # 1mb 19.29.30 # it didnt even show it 19.29.35 # it didnt finish yet 19.29.39 # how can you say nice pic 19.29.56 # a blue ball of some sort underneath a large grey T shaped object 19.30.27 # that'd be, a blue glow inside 3 spinning rings, with a gantry crane overneath :D 19.32.03 # yes 19.33.17 # here see 19.33.23 # http://contact-themovie.warnerbros.com/cmp/machine2.html 19.33.25 # NO 19.33.28 # here 19.33.29 # http://contact-themovie.warnerbros.com/img/machine/20.jpg 19.34.14 # the 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.50 # PFAVR 19.39.50 Join Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de) 20.07.21 Quit Nibbler (Read error: 104 (Connection reset by peer)) 20.09.26 # tasty 20.21.25 *** Saving seen data "./dancer.seen" 20.35.21 Quit AciD` (Read error: 104 (Connection reset by peer)) 20.44.12 Ctcp Ignored 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.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.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.21 # evening 22.16.28 # anyone still awaker 22.16.31 # awake 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.25 # hi 22.47.48 # my hd is nearly full :( 22.48.57 # if (hard_drive_nearly_full == 1) buy_another_hard_drive(); 22.49.30 # cant afford one 22.58.18 # if (cant_afford_a_new_hd) free_some_space; 22.58.18 # ;) 23.00.26 # yea 23.00.35 # Got 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.50 # good nite all 23.50.54 # 23:52 here 23.51.03 # nite 23.51.04 # uski 23.51.07 # :) 23.51.20 Part uski ("Fermeture du client")