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-14

00:06:37 Quit methangas (" HydraIRC -> http://www.hydrairc.com <- IRC has never been so cool")
00:14:43PsYCoTiCanyone have problems with the fm recorder locking up during radio channel scan?
00:14:49PsYCoTiCor radio playing?
00:15:15moormasterno everything works fine with my radio funtion
00:15:36PsYCoTiChrm okie
00:15:48moormasterhave you tried to reset the unit?
00:15:58PsYCoTiCoyu mean turn it off then back on?
00:16:17moormasteryes but turning of by pressing OFF for 10 seconds
00:16:24PsYCoTiCyeah did
00:16:26PsYCoTiCits off now
00:16:32PsYCoTiCgot to eat dinner
00:16:32PsYCoTiCheh
00:16:41PsYCoTiCwife is in a tyrade bout some thing or other
00:16:57moormasterk
00:17:00PsYCoTiCthanx
00:19:18***Saving seen data "./dancer.seen"
00:20:06 Nick edx{code} is now known as edx (edx@pD9EABF72.dip.t-dialin.net)
00:20:10 Quit edx ()
00:55:20 Quit Nibbler (Read error: 104 (Connection reset by peer))
00:58:04 Quit oxygen77 ("Leaving")
01:00
01:09:19 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net)
01:16:37GoatBoytirade?
01:20:29 Join brainlock [0] (~geshtolt@65.112.131.6)
01:22:55 Quit _aLF ("bye")
01:31:20 Quit AciD (Connection timed out)
01:38:03 Quit moormaster ("Trillian (http://www.ceruleanstudios.com)")
01:41:58 Join moormaster [0] (moormaster@port-212-202-173-242.reverse.qsc.de)
01:49:40 Join scott666 [0] (scott666@c-24-245-58-245.mn.client2.attbi.com)
01:59:15 Quit mecraw_ ("Trillian (http://www.ceruleanstudios.com)")
02:00
02:04:20 Part brainlock
02:19:20***Saving seen data "./dancer.seen"
02:24:19 Join Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de)
03:00
03:12:44 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net)
03:23:51 Quit scott666 ("i'll be back...eventually...")
03:24:02 Join scott666 [0] (scott666@c-24-245-58-245.mn.client2.attbi.com)
03:40:02 Quit AciD (Connection timed out)
03:47:13 Quit forceflow ()
04:00
04:10:46 Quit Nibbler (Read error: 54 (Connection reset by peer))
04:19:23***Saving seen data "./dancer.seen"
05:00
05:15:07 Join Dogger [0] (~jimmy@adsl-63-199-30-83.dsl.snfc21.pacbell.net)
05:35:16 Join midknight2k3 [0] (zakk@AC9037EE.ipt.aol.com)
05:47:43 Quit hardeep ("[BX] Eat, drink and be merry...for tomorrow we die")
05:54:45 Join Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de)
06:00
06:15:27 Quit scott666 (Read error: 110 (Connection timed out))
06:19:27***Saving seen data "./dancer.seen"
06:34:36Doggeranyone here?
06:34:43midknight2k3I AM
06:34:44midknight2k3WOO HOO
06:34:47midknight2k3i mean
06:34:47midknight2k3hi
06:36:14Doggerlol
06:36:18Doggerdo you know much c?
06:36:28midknight2k3i think i know a small bit
06:36:38Doggeri have a char array
06:36:48midknight2k3at least enough to understand that when bluechip yells at me to add some odd code i just do it and it works
06:36:52midknight2k3ok
06:36:53Doggerchar myvar[10] = {0,0,0,0,0,0,0,0,0,0}
06:37:05Doggerif they are all 0's it doesnt get included in my binary!
06:37:15Doggerbut if any one of them isnt 0, it does
06:37:23midknight2k3well, why would you need all 0s?
06:37:23DoggerI want it to be included all the time whatever
06:37:29Dogger!
06:37:33Doggerbecause I do?
06:37:44midknight2k3just do char myvar[1] = 0
06:37:50midknight2k3then call that instead
06:38:01Doggerhuh?
06:38:10midknight2k3well i don't see a situation that'd need a different 0 at one time
06:38:33Doggerok here's it in more details
06:38:35Doggersay I have
06:38:41Doggerint a = 0x12345678
06:38:55Doggerchar var[4] = {0,0,0,1};
06:39:02Doggerint b = 0x11111111
06:39:18Doggerthat builds correctly to 0x12345678,0,0,0,1,0x11111111
06:39:29Doggerbut if I change it to {0,0,0,0}, it doesnt!
06:39:38Doggerit build to 0x12345678,0x11111111
06:39:41midknight2k3yes, the point is that there is no point
06:39:58Doggerwhat do you mean no point?
06:40:11Doggerbear in mind I havent got any routines such as memset etc
06:40:18Doggerthis is raw, no libc
06:40:34midknight2k3well, wouldnt you pass an int to that to call one of the numbers from the table?
06:40:41Doggerso how do I tell the compiler to allocate the space anyway
06:41:24midknight2k3like here
06:41:33midknight2k3if you have
06:41:35Doggerah maybe I need const
06:42:39midknight2k3char mychar[] = {0,2,4,6,8,10}; and int blah; and then later in the code mychar[4] = blah; it'd fill "blah" with
06:42:40midknight2k38
06:42:41midknight2k3right?
06:42:45midknight2k3or would that be 6
06:42:49midknight2k3i think 8
06:43:32midknight2k3the point is that if you call char var[4] = {0,0,0,0} if you do blah = var[0]; or blah = var[2]; its always 0
06:43:36Doggeryeah const works
06:43:41midknight2k3so just char var[1] = 0 works
06:43:55Doggeryeah but the issue is its not allocating space in the bin
06:43:56midknight2k3woo was i right
06:44:04midknight2k3it has no reason to
06:44:12Doggerbut I *want* it to :)
06:44:14midknight2k3you only need one zero, not a table of them
06:44:20midknight2k3i don't get why
06:44:24midknight2k3to take up space?
06:44:25Doggerbut I *want* a table of them
06:44:28Doggeryes
06:44:31midknight2k3what *for*?
06:44:35midknight2k3just a space waster?
06:44:41Doggeryes lol
06:44:44midknight2k3char a[1] = 0
06:44:47midknight2k3char b[1] = 0
06:44:49midknight2k3char c[1] = 0
06:44:50midknight2k3etc
06:44:52midknight2k3may do it
06:44:56midknight2k3but i dont get why
06:45:01Doggerits ok const char[] works
06:45:09DoggerI just need some filler etc
06:45:12midknight2k3so ppl can see "ooh avos is 6MB it must be good" and its all 0s
06:45:14midknight2k3lmao
07:00
07:00:57Doggerlol yeah thats it :)
07:01:11midknight2k3YAY
07:01:19midknight2k3HA
07:01:38midknight2k3haha
07:42:27 Quit Nibbler (Read error: 104 (Connection reset by peer))
07:55:41 Quit Dogger ("Client Exiting")
08:00
08:03:33 Join Strath [0] (~firewalle@dgvlwinas01pool0-a236.wi.tds.net)
08:19:31***Saving seen data "./dancer.seen"
09:00
09:08:53 Join _aLF [0] (alexandre@mutualite-3-82-67-66-128.fbx.proxad.net)
09:11:09midknight2k3hi _aLF
09:11:18_aLFhi
09:11:28midknight2k3[OFF]BtT has been [OFF] for 231hrs 3mins 52secs
09:11:37midknight2k3thats a long time
09:14:34_aLFmore than a week
09:15:32midknight2k3definitely more than a week
09:15:49midknight2k3thats over nine and a half days
09:16:32midknight2k3thats about 842,400 seconds
09:17:24_aLFdid you read 32kbit/s mp3 with a recent daily ?
09:17:36midknight2k3not i
09:17:41midknight2k3sounds like fuzz i'm sure
09:18:13 Join Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de)
09:18:13_aLFI don't know if this my mp3, but that was as there was some buffer underrun
09:18:30_aLF(Yes, not good quality ...)
09:18:38midknight2k3lol
09:18:45midknight2k332KB/s!!!
09:18:46midknight2k3HA
09:22:53 Join [IDC]Dragon [0] (~idc-drago@pD9FF8BF6.dip.t-dialin.net)
09:23:12 Part [IDC]Dragon
09:24:35midknight2k3aww
09:24:37midknight2k3hi idc
09:29:43 Quit adi|home (Read error: 60 (Operation timed out))
09:44:26 Join adi|home [0] (~adi|home@as5300-11.216-194-24-215.nyc.ny.metconnect.net)
09:45:10midknight2k3hi adi
09:46:54 Join oxygen77 [0] (~Chris@pauguste-7-82-66-87-78.fbx.proxad.net)
09:51:34 Part moormaster
09:51:41 Join moormaster [0] (moormaster@port-212-202-173-242.reverse.qsc.de)
10:00
10:19:33***Saving seen data "./dancer.seen"
10:20:22 Quit Nibbler (Read error: 104 (Connection reset by peer))
10:33:03midknight2k3WHO WANTS A COPY OF MY PRESET-LOADING ROCKBOX
10:33:24moormasterpreset loading?
10:33:31midknight2k3sound presets
10:33:45moormasterwhy dont you submit this as patch?
10:33:51midknight2k3i will
10:33:54midknight2k3almost done
10:34:03midknight2k3tomorrow i will
10:34:10midknight2k3but does anyone want a "beta"?
10:34:14midknight2k3it works fine
10:35:07midknight2k3ok, maybe not :D
10:35:10midknight2k3bye all
10:35:11moormaster;)
10:35:17moormasterbye
10:35:18midknight2k3lol itll be out tomorrow
10:35:42 Quit midknight2k3 ()
10:41:35 Join methangas [0] (methangas@0x50a461ba.virnxx10.adsl-dhcp.tele.dk)
10:43:51 Quit Strath ("Application closed")
11:00
11:39:30 Join edx{code} [0] (edx@pD9EABF72.dip.t-dialin.net)
11:43:56 Join pfavr [0] (~pfavr@c83958a.s-oe.bostream.se)
11:51:47 Join Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de)
12:00
12:19:37***Saving seen data "./dancer.seen"
12:28:32 Nick edx{code} is now known as edx{off} (edx@pD9EABF72.dip.t-dialin.net)
13:00
13:09:54 Join AciD--- [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net)
13:09:54 Quit Nibbler (Read error: 104 (Connection reset by peer))
13:10:38 Nick pfavr is now known as pfavr-away (~pfavr@c83958a.s-oe.bostream.se)
13:42:37 Quit PsYCoTiC ("IRC.Sandnet.NET for great chat and a pleasant time.")
13:54:10 Quit AciD--- (Read error: 110 (Connection timed out))
14:00
14:12:42 Nick edx{off} is now known as edx (edx@pD9EABF72.dip.t-dialin.net)
14:14:56 Quit moormaster (Read error: 54 (Connection reset by peer))
14:17:35 Join moormaster [0] (moormaster@port-212-202-173-242.reverse.qsc.de)
14:19:40***Saving seen data "./dancer.seen"
14:25:40 Nick pfavr-away is now known as pfavr (~pfavr@c83958a.s-oe.bostream.se)
14:47:28 Join Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de)
15:00
15:10:27 Nick edx is now known as edx{jogging} (edx@pD9EABF72.dip.t-dialin.net)
15:11:01 Join brainlock [0] (geshtolt@dhcp1663210.indy.rr.com)
15:21:52 Quit oxygen77 (Read error: 110 (Connection timed out))
15:24:16 Join oxygen77 [0] (~Chris@pauguste-7-82-66-87-78.fbx.proxad.net)
15:28:41 Part brainlock
15:36:00 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net)
15:37:01 Join brainlock [0] (geshtolt@dhcp1663210.indy.rr.com)
16:00
16:09:33 Nick oxygen77 is now known as oxygen77_out (~Chris@pauguste-7-82-66-87-78.fbx.proxad.net)
16:09:41 Quit AciD (Read error: 60 (Operation timed out))
16:16:38 Part brainlock
16:19:41***Saving seen data "./dancer.seen"
16:28:26 Join Frank_org [0] (~Frank_org@dialin-145-254-187-102.arcor-ip.net)
16:28:51Frank_orghi guys
16:29:40 Quit edx{jogging} (Read error: 60 (Operation timed out))
16:34:51 Join edx{off} [0] (edx@pD9EABC1A.dip.t-dialin.net)
16:35:15 Nick edx{off} is now known as edx{shower} (edx@pD9EABC1A.dip.t-dialin.net)
16:36:30Frank_orghmm... anyone who could help me with me archos Mulitmedia?
16:45:33 Nick edx{shower} is now known as edx{tea} (edx@pD9EABC1A.dip.t-dialin.net)
16:46:17Frank_orgoh I see... you do not port your software to the Multimedia one.. it is a pitty :(
16:46:54pfavrFrank_org: I only have a JukeBox Recorder. And I'm not a developer on RockBox (just hanging out here)
16:48:15Frank_orgoh I see.. it is okay... but I only wondered that the developer not port their sotware to the Multimedia
16:54:15pfavrFrank_org: I think they might do if it is possible. But maybe the hardware is just too different. Or there is some information which is not known.
16:54:38Frank_orgIt's a pitty :(
16:54:42pfavrWell, or maybe no developer has got a multimedia one to try it on?
16:55:39Frank_orgmaybe :-/
16:56:29pfavrDo you like it - the multimedia?
16:57:34Frank_orgI have no other... and yes - I like the multimedia one
16:58:07pfavrok
16:59:31Frank_orgdou you like your recorder?
17:00
17:16:37*pfavr is away: eating (again!-)
17:30:34 Nick edx{tea} is now known as edx{code} (edx@pD9EABC1A.dip.t-dialin.net)
17:36:27 Join PaC_1250 [0] (~e61696@d80-170-201-171.cust.tele2.fr)
17:37:33PaC_1250hi
17:37:45Frank_orghi PaC_1250
17:38:03PaC_1250are there some french ?
17:38:25PaC_1250no ?
17:38:45PaC_1250so i'll talk english.. :(
17:38:58Frank_orghehe :)
17:39:21PaC_1250i tried recents version of rockbox specialy for the video
17:40:03PaC_1250it works and i want to make my owns rvf
17:40:43PaC_1250i found a file: Archos Converter Util.zip
17:41:18*pfavr is back
17:41:20PaC_1250i modified it to have the sound with lame but it isnt sync
17:41:44PaC_1250the video is faster than the sound
17:41:52PaC_1250: (
17:41:58Frank_org*lol*
17:42:04PaC_1250what can i doe
17:42:12pfavrFrank_org: yes I'm very happy with it
17:42:23Frank_org:)
17:44:01PaC_1250...
17:44:47Frank_orgPaC, if you see an developer, please tell me so ;)
17:46:42uskiPaC_1250: wait for [IDC]Dragon
17:46:49uskihe is the author of the tool as far as i remember
17:47:03uskialso, there ARE french people, but in the channel please speak english so everyone can understand
17:47:53 Quit pfavr ("using sirc version 2.211+KSIRC/1.2.4")
17:48:09PaC_1250ok
17:48:15PaC_1250thank you
17:48:59uski:)
17:49:26PaC_1250a part of a file was written in italian
17:49:49PaC_1250is [IDC]Dragon italian ?
17:49:52uskiare you sure it was italian ? not german ? :)
17:49:54uskihe is german
17:49:55uskihmm
17:50:01uskithere must be a mention somewhere of the author
17:50:02PaC_1250sure not german
17:50:37PaC_1250i didn't found
17:50:40uskiyou should read the mailling list archives
17:51:00uskisome days ago, [IDC]Dragon sent a link where you will find some tools
17:51:14PaC_1250ok
18:00
18:00:41 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net)
18:01:46 Quit _aLF (Read error: 110 (Connection timed out))
18:03:12PaC_1250did you speek of this: http://rockbox.haxx.se/mail/archive/rockbox-archive-2004-02/0085.shtml
18:05:59PaC_1250uski ???
18:10:01uskihttp://joerg.hohensohn.bei.t-online.de/archos/video/
18:10:04uskigo here
18:11:33PaC_1250yes i already use this tools
18:11:47 Nick oxygen77_out is now known as oxygen77 (~Chris@pauguste-7-82-66-87-78.fbx.proxad.net)
18:12:15PaC_1250but i food a script to do the convertion automaticly
18:12:29PaC_1250but it didn t do the sound
18:12:59Frank_orgI'm sorry but I had to go... greets to the developer, who would not port to the Multimedia one..;) Bye @ll
18:13:12PaC_1250i think i ve found the problem
18:13:15PaC_1250@+
18:13:17 Quit Frank_org ("xchat 2.0.2 exits - http://kickino.org/")
18:13:30PaC_1250i go
18:13:36PaC_1250bye
18:14:04 Part PaC_1250
18:17:28 Part moormaster
18:19:42***Saving seen data "./dancer.seen"
18:20:49 Join bobjones [0] (~jirc@dsl092-146-253.wdc2.dsl.speakeasy.net)
18:21:13bobjoneshello?
18:21:24 Join _aLF [0] (~alexandre@mutualite-3-82-67-66-128.fbx.proxad.net)
18:22:01bobjonesDoes anybody have the Jukebox Recorder 2?
18:25:19 Quit bobjones (Client Quit)
18:31:31 Nick edx{code} is now known as edx{afk} (edx@pD9EABC1A.dip.t-dialin.net)
18:37:36 Join diddystar5 [0] (Lee@ACC46DC8.ipt.aol.com)
18:52:01 Join Bagge0 [0] (Bagge0@dsl-213-023-185-096.arcor-ip.net)
18:54:54 Join alexandre [0] (alexandre@mutualite-3-82-67-66-128.fbx.proxad.net)
18:54:54 Quit _aLF (Read error: 104 (Connection reset by peer))
18:59:53 Part diddystar5 ("Leaving")
19:00
19:03:48 Quit edx{afk} ()
19:05:48 Join edx{afk} [0] (edx@pD9EA972D.dip.t-dialin.net)
19:06:30 Quit AciD (Read error: 60 (Operation timed out))
19:07:07 Part Bagge0
19:15:50 Nick edx{afk} is now known as edx{code} (edx@pD9EA972D.dip.t-dialin.net)
19:26:24 Nick edx{code} is now known as edx{off} (edx@pD9EA972D.dip.t-dialin.net)
19:46:44 Nick oxygen77 is now known as oxygen77_away (~Chris@pauguste-7-82-66-87-78.fbx.proxad.net)
20:00
20:19:41 Join midknight2k3 [0] (zakk@ACC5ED49.ipt.aol.com)
20:19:44***Saving seen data "./dancer.seen"
20:46:04 Join moormaster [0] (moormaster@port-212-202-173-242.reverse.qsc.de)
20:46:26midknight2k3hi moormaster
20:46:32moormasterhi
20:46:37midknight2k311:42:17 | <midknight2k3> does "c" stand for "computer"?
20:46:38midknight2k3haaaa
20:47:06moormasterc?
20:47:27midknight2k3like c programming
20:47:40moormasterlol
20:47:48midknight2k3they said its b+1 so i said whats b and they said a+1 and i said whats a and someone else said "dont feed the troll now"
20:47:50moormasterrockbox is written in computer lol
20:47:59midknight2k3yeah yay
20:51:57midknight2k3PRESET LOADING YAY
20:52:02moormaster;)
20:52:27midknight2k3that was FAST
20:53:05moormasterwhen does someone make it possible to choose weather mute should be possible while keylock or not
20:53:25midknight2k3well MUTE is pointless
20:53:32midknight2k3i mean really, why not just pause it you large turds?
20:54:10moormasterbut it mutes when it shouldnt because mute is still possible even if keylock is on
20:54:44midknight2k3well keylock is software
20:54:50midknight2k3we decide what's locked or not
20:54:51moormastermute too
20:54:53midknight2k3HA
20:55:08midknight2k3ee
20:55:41moormasterwhy not add a menu point in the options where every user can decide for himself weather he wants mute to work with keylock on or not?
20:56:12midknight2k3why mute?
20:56:15midknight2k3HA
20:56:21midknight2k3ive got issues i know
20:56:44midknight2k3PRESET LOADING WOO
20:56:50moormaster...
20:57:07midknight2k3yeah
20:57:41 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net)
20:58:05midknight2k3hi acid
20:58:54midknight2k3dont join #c its dangerous for your health HA
20:59:24moormasterfor my physical or psychical health? ;)
20:59:40midknight2k3both actually
21:00
21:00:06moormasterwhat can a IRC channel do with me physically?
21:00:16midknight2k3they make you feel bad
21:00:20midknight2k3then you kill yourself
21:00:28midknight2k3tell them they suck and bother them and they get funny
21:01:17moormasterthere are 209 people in the #c channel. Are they all idle, too? (like the most here)
21:01:31midknight2k3not really
21:01:39midknight2k3tell them they're idiots and nerds and they stir up :D
21:01:45moormasterlol
21:01:47Nibblerstop colling me nerd!
21:01:51Nibblercalling even!
21:01:59midknight2k3nerd
21:02:18Nibblernah!
21:02:29Nibblerstop it!
21:02:30midknight2k3NERD
21:02:40*Nibbler runs in circles crying
21:03:07midknight2k3HA
21:03:10midknight2k3HA HA HA
21:03:13midknight2k3HAHAHA
21:04:38moormasterreplace drive c with a disk and click <OK> to proceed...
21:05:18 Join pfavr [0] (~pfavr@c83958a.s-oe.bostream.se)
21:05:42midknight2k3yes ma'am
21:06:34moormasterif you still have problems with our product (Windows) then this is the right solution for you:
21:06:34moormasterhttp://www.inicia.es/de/Turbo_J/metele.html
21:06:54midknight2k3yessir
21:07:00moormaster;)
21:08:35 Join Richy [0] (~poop@bgp928042bgs.brghtn01.mi.comcast.net)
21:08:46Richyhey
21:09:00midknight2k3hi Richy
21:09:04moormasterhi
21:09:31RichyIm looking into getting an archos, and i saw the neat program
21:09:57 Join top_bloke [0] (~ekolb_pot@209.109.245.89)
21:09:58RichyAmazon is having some sale for an Archos Recorder 20GB for $130+rebate
21:10:00MTbetter than neat
21:10:07Richy;)
21:10:09midknight2k3hi tops
21:10:12MTreally, thats a great price
21:10:13top_blokehey
21:10:17midknight2k3thats GOOD
21:10:17top_blokedamn thats cheap
21:10:20Richyhowever, I'm on a pretty tight budget, is this really worth it?
21:10:24MTyes
21:10:24midknight2k3yes
21:10:27Richyhehe
21:10:28top_blokeyeah
21:10:28moormasteryes
21:10:30Richyalright then
21:10:30moormastersure
21:10:42Richyhttp://www.amazon.com/exec/obidos/ASIN/B0000T1R4O/niftynews-20/104-8513343-1035169
21:10:47midknight2k3LET ME SEE
21:10:48MTthe recorder 20gb costs ~ $390 here
21:10:53midknight2k3HA HAHAHA
21:10:55midknight2k3OMG
21:11:11MTspecial edition :)
21:11:13midknight2k3130 bucks wowo
21:11:18Richyso, thats good right?
21:11:28MTthats amazingly good
21:11:58Richyok cool then
21:12:11Richythis will be fully compatible with rockbox?
21:12:22MTyes
21:12:26top_blokei wish i hadnt bought mine when i did now
21:12:35Richyalright then
21:12:35MTand theres a good chance it will have a hidden fm radio in it
21:12:40Richybah
21:12:44Richyi really dont need radio
21:12:54midknight2k3doesnt matter
21:12:56Richy20 gigs is good enough for me :)
21:12:57moormasterwhy is it hidden?
21:13:01top_blokethis is V2?
21:13:03midknight2k3yes
21:13:06Richyyeah, so I should definately go for this?
21:13:09midknight2k3yes
21:13:12MT"special edition"
21:13:18top_blokeooooh
21:13:23MTthe V1 is better build quality
21:13:26 Join hardeep [0] (1098@208.247.65.237)
21:13:30Richyyeah, the SE part bugs me, this is a GOOD "special" right?
21:13:32MTbut the V2, at that price .. crazy
21:13:56Richyala Radeon 9800 SE = crap
21:13:56MTno its great, just dont expect to pass it on to your grandchildren
21:14:04midknight2k3LMAO
21:14:06moormasterso they just removed the radio funtion from the firmware to sell it cheeper??
21:14:10MTSE there stands for Shit Edition
21:14:13Richyyeah
21:14:14midknight2k3basically
21:14:16Richyi figured
21:14:21MTmoormaster: for the first few at least
21:14:51Richyalright, so are there any major differences between this and the iPod/iRiver etc?
21:14:58midknight2k3its better
21:15:00midknight2k3woo
21:15:06Richywell, like bad differences
21:15:13moormasterthat sounds pretty much like Microsoft... delete some security-config-files from the xp pro version and sell it as home edition
21:15:16midknight2k3it's marginally larger...
21:15:26midknight2k3not much really
21:15:27top_blokemarginally?
21:15:29top_blokeits huge
21:15:36top_blokeand heavy too
21:15:38Richywhat are the dimensions again?
21:15:40midknight2k3stop lying tops
21:15:45midknight2k3Richy: i have one here
21:15:47midknight2k3in front of me
21:15:49Richyive seen pics, but they dont do justice
21:15:52midknight2k3its about the size of...
21:15:52midknight2k3hm
21:15:56midknight2k3its like
21:16:08midknight2k3what can i compare it to lol
21:16:10Richylol
21:16:11Richyweiner?
21:16:14Richyi dunno
21:16:20Richylike a jewel case or something
21:16:23top_blokewalkman
21:16:23moormastera quadratic pc mouse?
21:16:34moormasteror nearly quadratic
21:16:36midknight2k3ok jewel case
21:16:44Richyok, so its about the size of a regular cd player then
21:16:49midknight2k3no
21:16:53midknight2k3ill compare it
21:16:54moormastersmaller
21:17:05midknight2k3its about 7/10 the height of a jewel case
21:17:10midknight2k3and about 6/10 the width
21:17:13Richythats small enough
21:17:21pfavrI own an JBR20 already. I'm just sitting thinking that maybe I should buy one more!
21:17:25Richyheh
21:17:30midknight2k3probably about 5 inches high, 3" wide
21:17:35midknight2k31" deep
21:17:39Richyare there any battery/construction problems that i should know about?
21:17:54midknight2k3your Fx buttons may be in danger
21:18:03midknight2k3mine's worked fine since ive had it (about a year now)
21:18:37Richyok cool then
21:18:44Richyi think ill get my shit together and order one
21:19:00midknight2k3lmao
21:19:01Richyits just that $130 is a pretty big ticket for a lazy ass like me
21:19:09midknight2k3its very good mp3 player
21:19:14moormasterand video ;)
21:19:23Richythis plays video?!
21:19:28moormasteronly with rockbox
21:19:29midknight2k3yes
21:19:31moormasterand only fvr
21:19:33moormasterrvf
21:19:35midknight2k3fvr?
21:19:39midknight2k3yes rvf
21:19:42Richyrvf?
21:19:50moormasterits a special format
21:19:51Richybut isnt the screen monochrome?
21:19:54moormasteryes
21:19:57midknight2k3we can blit
21:20:04midknight2k3flash super fast to make gray
21:20:09top_blokeis there any 1 click way to make an rvf out of an avi?
21:20:10Richyyeah
21:20:15midknight2k3top: no
21:20:18Richywell, im not worried about video
21:20:21top_blokeboo
21:20:30pfavrI think If I should buy an MP3 player today I would probably not buy the Archos JBR (at least not without first looking at everything else). But now I have one and I really like it. I would hate it so much if it suddenly stopped working. That's my reason for maybe buying an extra
21:20:36top_blokesomeone ought to make 1
21:20:37Richyalthough playing some pr0n durinng class would be pretty hilarious
21:21:00midknight2k3top_bloke: i probably will
21:21:15top_blokeyay
21:21:17top_blokedo it
21:21:45Richyok
21:21:49Richythanks a bunch guys
21:21:53Richyi think ill snag one then
21:21:53midknight2k3bye Richy
21:21:54midknight2k3good luck
21:22:06Richythnx
21:22:11 Quit Richy ("-=SysReset 2.53=-")
21:22:14midknight2k3SYSRESET
21:22:16midknight2k3i used to use that
21:22:38midknight2k3hey tops
21:22:48midknight2k3i'm implementing preset loading into rockbox
21:22:49top_bloke?
21:22:52pfavrI thought it was a JBR20 - I mean: the old one. The link points to a new model. Is it any good?
21:22:54top_blokeehh
21:23:02top_blokeit already has cfgs dont it
21:24:22moormastermmh looks good
21:24:22moormasterhttp://www.sysreset.com/img/P5030007.jpg
21:24:22moormaster;)
21:24:34midknight2k3top: eat me
21:24:56midknight2k3its broken
21:25:02midknight2k3ha
21:38:59AciDhi
21:39:01 Quit alexandre (Read error: 104 (Connection reset by peer))
22:00
22:11:33midknight2k3grrrr
22:19:48***Saving seen data "./dancer.seen"
22:31:16 Quit moormaster (Read error: 104 (Connection reset by peer))
22:32:18 Quit uski ("Fermeture du client")
22:36:37 Join moormaster [0] (moormaster@port-212-202-173-242.reverse.qsc.de)
22:40:51 Join diddystar5 [0] (Lee@ACC21CA2.ipt.aol.com)
22:47:16 Join uski [0] (~moo@gandalf.digital-network.org)
22:48:20midknight2k3hi uski
22:59:50 Join taxilian [0] (~trillian@c-24-2-89-56.client.comcast.net)
23:00
23:02:59 Quit diddystar5 (Read error: 104 (Connection reset by peer))
23:03:10 Join diddystar5 [0] (Lee@ACC21CA2.ipt.aol.com)
23:03:43 Quit midknight2k3 ()
23:06:39 Quit pfavr ("goodnight")
23:16:58 Quit methangas (" The IRC Client of the Gods! -> http://www.hydrairc.com <- HydraIRC")
23:31:55 Quit uski ("Fermeture du client")
23:37:13 Join uski [0] (~moo@gandalf.digital-network.org)
23:45:41 Quit diddystar5 ("Leaving")

Previous day | Next day