December 22, 2004  
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31

[14:51:24] *** [Beta] has joined #haiku
[14:56:45] *** CIA-6 has quit IRC
[14:56:45] *** ShackaN has quit IRC
[15:00:18] *** xeD has quit IRC
[15:05:30] *** [Potn] has joined #haiku
[15:05:36] *** Potn_ has quit IRC
[15:08:16] *** CIA-6 has joined #haiku
[15:09:57] <Dr3w-x86> anyone here?
[15:10:46] *** ShackaN has joined #haiku
[15:21:45] *** nPHYN1T3 has joined #haiku
[15:36:05] <Teknomancer> :-)
[15:36:10] <Dr3w-x86> :-)
[15:36:26] <Teknomancer> whats up .. .?
[15:36:37] <Teknomancer> any piping experts here ??
[15:36:47] <Teknomancer> as in C/C++ pipes...
[15:37:20] <Teknomancer> I want to know how to read output from an app that does some funny trick by rewriting in the same line (TermCap i think) ....
[15:38:54] <Teknomancer> fgets is buggy :(
[15:40:40] *** voidster has joined #haiku
[15:40:41] *** voidref has quit IRC
[15:41:21] *** [Potn] has quit IRC
[15:41:48] <@mahlzeit> how is fgets buggy?
[15:43:41] <Teknomancer> because it gives me nonsense
[15:44:00] <Teknomancer> only when stdout is rewritten tho
[15:45:57] *** thaflo has quit IRC
[15:46:24] <@mahlzeit> ahlzeit>	a better assumption is that you are using fgets incorrectly :-)
[15:46:45] <Teknomancer> it works with all other command-line apps
[15:47:10] <Teknomancer> but gives me nonsense when the command-line app rewrites on the same line ...        LAME example (keeps updating % )
[15:47:44] <Teknomancer> rather than nonsense, it gives me 2 lines as one with a junk character in place of '\n'
[15:48:00] <@mahlzeit> it>	i want to bet that this junk character is \r
[15:48:16] <@mahlzeit> i.e. ascii 13
[15:49:07] <Teknomancer> hmm
[15:49:16] <Teknomancer> how can i read till '\r' in fgets ?
[15:49:47] <@mahlzeit> it>	i don't think you can
[15:49:48] *** thaflo has joined #haiku
[15:49:57] <Teknomancer> Bajan.aiff	- Testing  :  .................................................Bajan.aiff	- Testing  :  oooooooooooooooooooooooooooooooooooooooooooooooooBajan.aiff	- Tested
[15:49:58] <Teknomancer> Bajan2.aiff	- Testing  :  ................................................Bajan2.aiff	- Testing  :  ooooooooooooooooooooooooooooooooooooooooooooooooBajan2.aiff	- Tested
[15:50:08] <Teknomancer> hey
[15:50:13] <Teknomancer> pasting it removed '\r' :(
[15:50:23] <Teknomancer> the junk character that is..
[15:50:25] <@mahlzeit> yeah you can't just paste anything into irc :-)
[15:50:39] <Teknomancer> in  beshare i can :-)
[15:50:50] <@mahlzeit> use fgetc to read one char at a time
[15:50:57] <Teknomancer> beshare is more friendly to coders than irc ;-P
[15:51:01] <Teknomancer> mahlzeit till '\r' ?
[15:51:09] <Teknomancer> hmm ... ok will try
[15:51:32] <Teknomancer> and when do i stop reading the entire output ?? like fgets would return NULL when its over  ..
[15:51:46] <Teknomancer> i would have to check for feof() is suppose
[15:51:48] <@mahlzeit> fgetx returns EOF
[15:53:04] <Teknomancer> fgetx ? hmm
[15:53:10] <@mahlzeit> fgetc, sorry
[15:53:22] <Teknomancer> EOF ? is that a constant i can check against ?
[15:53:28] <@mahlzeit> yes
[15:53:36] <ShackaN> #define EOF (-1)
[15:53:38] <@mahlzeit> fgetc returns ann int
[15:53:40] <ShackaN> it is
[15:53:53] <Teknomancer> ah ok
[15:54:27] <Teknomancer> do
[15:54:28] <Teknomancer> {
[15:54:28] <Teknomancer> c 22 14:54:28 <Teknomancer>	 			c = fgetc (fp);
[15:54:29] <Teknomancer> if (c == EOF || c == '\r')
[15:54:29] <Teknomancer> break;
[15:54:30] <Teknomancer> buf << c;
[15:54:31] <Teknomancer> }
[15:54:34] <Teknomancer> looks right ?
[15:54:42] <Teknomancer> oops forgot the while part
[15:54:44] <ShackaN> wait, what are you trying to do?
[15:55:18] <Teknomancer> ShackaN read output of LHA while its testing an archive ..
[15:55:46] <@mahlzeit> what is c, an int or a char
[15:56:14] <ShackaN> uhm, you're mixing C and C++ stuff
[15:56:47] <Teknomancer> mahlzeit a char
[15:56:55] <@mahlzeit> it>	it should be int
[15:56:56] <ShackaN> it has to be a int
[15:57:06] <Teknomancer> hmm
[15:57:17] <Teknomancer> buf is BString
[15:57:20] <ShackaN> and, why don't you use a c++ `fstream` to read the file?
[15:57:45] <Teknomancer> ShackaN dunno if fstream can read till what character i want ..
[15:57:58] <ShackaN> it does
[15:58:05] <ShackaN> (AFAIK)
[15:58:18] <ShackaN> streamname.getline(buffer, size, terminator);
[15:58:49] <Teknomancer> ok let me see if fgetc works .. then i'll change to fstream
[15:58:54] <ShackaN> ok ok
[15:59:16] <@mahlzeit> you probably need to do buf << (char) cl
[15:59:18] <@mahlzeit> c;
[15:59:49] <Teknomancer> now i'm getting 3 lines in place of one ;-P hehe
[15:59:54] <Teknomancer> mahlzeit will try that
[16:00:56] <Teknomancer> let me try "continue;" if c == '\r' OUTSIDE the loop 'cause i'm not interested in lines that are still being rewritten
[16:02:08] <Teknomancer> ugh ..
[16:02:10] <Teknomancer> nomancer>	no luck :-(
[16:02:16] *** bs0 has joined #haiku
[16:02:23] <Teknomancer> why do terminal apps HAVE to rewrite to the same line !! ;-P
[16:03:24] <Teknomancer> hey now one 2 lines i get .. like i wanted ...
[16:03:27] <Teknomancer> let me hack a bit more ;)
[16:03:38] <Teknomancer> is it wrong to mix c/c++ ??
[16:03:55] <@mahlzeit> no
[16:04:13] <@mahlzeit> just use whatever makes you happy :-)
[16:04:20] <Teknomancer> because strlen() is C and i use it a lot ;P
[16:04:30] <@mahlzeit> strlen() is also C++ ;-)
[16:04:36] *** bs0 has quit IRC
[16:04:43] <Teknomancer> hehe
[16:05:23] <Teknomancer> it works to some extent now ...
[16:05:28] <Teknomancer> gotta refine it more
[16:07:58] <Teknomancer> hmm
[16:17:08] <Teknomancer> knomancer>	k thanks mahlzeit and ShackaN
[16:17:11] <Teknomancer> bye all
[16:17:12] *** Teknomancer has quit IRC
[16:18:53] *** brennanOS has joined #haiku
[16:22:26] *** Methe has joined #haiku
[16:22:38] <Methe> re
[16:22:45] <@mahlzeit> yo
[16:23:47] <Methe> teelo
[16:23:59] <Methe> *thello
[16:25:29] * Methe 's computer is already getting mad. 3min56 after clean installation finishes. I love windows
[16:26:06] <@mahlzeit> which windows?
[16:26:10] <Methe> 98se
[16:26:27] <@mahlzeit> fun fun fun :-)
[16:26:49] <Methe> u shouldn't laugh of others's tourments
[16:27:05] <@mahlzeit> it>	i have a win98 box too :-)
[16:27:15] <Methe> ah
[16:27:18] <Methe> poor us then
[16:27:45] * Methe dreams of Haiku
[16:43:17] *** voidster has quit IRC
[16:44:21] <Dr3w-x86> Methe, your so wack!
[16:47:30] *** Methe has quit IRC
[16:52:41] *** brennanOS has quit IRC
[16:54:03] *** jonaskirilla has joined #haiku
[16:55:32] <@mahlzeit> heh heh http://www.tarunz.org/~vassilii/srom/
[16:57:43] *** jonaskirilla has quit IRC
[17:06:01] *** xeD has joined #haiku
[17:09:05] *** xeD has quit IRC
[17:15:34] *** thaflo has quit IRC
[17:18:01] *** thaflo has joined #haiku
[17:21:36] *** neutrino has joined #haiku
[17:23:04] *** neutrino has left #haiku
[17:25:50] *** jonaskirilla has joined #haiku
[17:26:44] <jonaskirilla> anyone here? ;)
[17:27:36] <jonaskirilla> I've got a problem.. there's a lib I need to build as part of a recursive make
[17:27:55] *** Koki has joined #haiku
[17:28:12] <jonaskirilla> the library relies on configure having been run first
[17:28:25] <jonaskirilla> so.. I guess I run configure first and then make
[17:28:47] <jonaskirilla> hmm
[17:30:18] <@mahlzeit> recursive make is evil
[17:30:26] <jonaskirilla> mahlzeit: yeah, so I've read
[17:30:34] *** Begasus has joined #haiku
[17:30:43] <jonaskirilla> mahlzeit: I don't recall why though
[17:30:49] <@mahlzeit> me neither :-)
[17:30:59] <jonaskirilla> in any case it's not my code to begin with :)
[17:31:07] <@mahlzeit> anyway, can you put both things in the same autoconf file?
[17:31:13] <@mahlzeit> that would simplify things
[17:31:37] <jonaskirilla> I'd rather just keep the libary neatly on its own in a subfolder
[17:31:55] <@mahlzeit> yeah but you can use autoconf/automake recursively
[17:31:55] <jonaskirilla> I think it's going to work out, I just needed to sort my thoughts.
[17:32:10] <jonaskirilla> the "top" level is just a pure make
[17:33:31] <jonaskirilla> I'm taking a stab at the Flipside apps.
[17:37:07] *** M199 has quit IRC
[17:38:45] <Dr3w-x86> cool!
[17:39:02] <Dr3w-x86> got a HP Kayak MV600 from work for Haiku stuff
[17:47:44] <@mahlzeit> what will you work on, Dr3w-x86?
[17:48:04] <Dr3w-x86> apps.
[17:48:07] <Dr3w-x86> perferences.
[17:48:12] <Dr3w-x86> cli apps.
[17:48:51] <@mahlzeit> that should keep you busy for a while :-)
[17:52:07] *** mmadia has joined #haiku
[17:55:37] *** Methe has joined #haiku
[17:57:31] * Begasus is idle: BRB
[18:00:40] *** Methe has quit IRC
[18:03:17] *** TLF has joined #haiku
[18:08:55] <@Korli> Dr3w-x86 there shouldn't be much endian issues in pref apps :)
[18:09:03] <@Korli> bye
[18:09:09] *** Korli has quit IRC
[18:15:36] *** thies has joined #haiku
[18:26:50] *** TLF has quit IRC
[18:29:54] *** thaflo has quit IRC
[18:30:25] *** LupusMichaelis has joined #haiku
[18:30:28] *** Begasus has quit IRC
[18:36:00] <@mmu_man> Lights, models, guest list... Just do your best darling !
[18:36:17] <@mmu_man> SoundPlay is currently playing "Pet Shop Boys - Absolutely Fabulous (AbFab Mix).mp3", 0:29/3:46 (3:16 remaining)
[18:37:09] <jonaskirilla> mmu_man: heh
[18:41:30] <tic> yo guys
[18:41:40] <tic> jonaskirilla, http://mikael.jansson.be/post/2004/12/22/ett-litet-bevis :)
[18:42:10] <jonaskirilla> Grattis tic!
[18:42:20] <tic> tack tack. :)
[18:42:21] 
[18:43:42] <tic> japp :P
[18:44:23] 
[18:45:53] *** TLF has joined #haiku
[18:46:18] 
[18:47:02] *** mmadia is now known as mmadia_
[18:47:09] <jonaskirilla> <cast away>Ordo(head|tail)[lambda::powerup::insert coin]
[18:47:48] <tic> huh?
[18:48:19] <jonaskirilla> :-]
[18:49:13] *** BGA has joined #haiku
[18:49:14] *** ChanServ sets mode: +o BGA
[18:51:31] *** brennanOS has joined #haiku
[19:16:51] *** frankps has joined #haiku
[19:19:31] *** shackan_ has joined #haiku
[19:23:34] <Dr3w-x86> mmu_man, Pet Shop Boys are like the biggest Gay Icon's in the world - your wearing leather there are you? :)
[19:25:23] *** ShackaN has quit IRC
[19:26:24] <@mmu_man> lol
[19:26:32] <@mahlzeit> they are?
[19:26:32] <@mmu_man> not at the moment :p
[19:26:57] <@mmu_man> mahlzeit just discovered he was gay
[19:27:20] <@mahlzeit> if i *was* gay, then nothing really changes
[19:27:26] *** Potn has joined #haiku
[19:27:30] <@mahlzeit> </deep>
[19:29:11] <@mmu_man> it's just a private boolean variable anyway :)
[19:29:26] *** frankps has quit IRC
[19:29:36] <@mahlzeit> it's more like a float that goes from -1.0 to +1.0
[19:29:40] <@mmu_man> just like gender
[19:29:45] <@mmu_man> lol
[19:39:02] *** Kernel86 has quit IRC
[19:40:48] *** Dr3w-x86 has quit IRC
[19:51:55] *** ShackaN has joined #haiku
[19:52:06] *** Loppan has joined #haiku
[19:53:53] *** oco has joined #haiku
[19:55:18] *** Korli has joined #haiku
[19:55:19] *** ChanServ sets mode: +o Korli
[19:56:12] *** shackan_ has quit IRC
[19:58:30] *** m_eiman has joined #haiku
[20:09:29] *** zortness has joined #haiku
[20:09:29] *** ChanServ sets mode: +o zortness
[20:10:27] *** dr_evil has quit IRC
[20:15:56] *** mahlzeit has quit IRC
[20:23:57] *** mumu25 has quit IRC
[20:34:03] *** mahlzeit has joined #haiku
[20:34:03] *** ChanServ sets mode: +o mahlzeit
[20:39:47] *** mumu25 has joined #haiku
[20:41:08] *** MikeW has joined #haiku
[20:46:16] *** Korli has quit IRC
[20:50:19] *** AlternativEnde has joined #haiku
[20:53:04] *** jonaskirilla has quit IRC
[20:53:45] *** Korli has joined #haiku
[20:53:45] *** ChanServ sets mode: +o Korli
[20:58:04] *** jonaskirilla has joined #haiku
[21:03:04] <Dr3w-PPC> Hey folks.
[21:03:16] * Dr3w-PPC is building his BeOS-x86 machine right now.
[21:03:21] <tic> whee
[21:03:32] <Dr3w-PPC> work have supplied me with a computer to do BeOS development with :)
[21:04:01] <ShackaN> your job is somehow related to beos ?
[21:04:46] <Dr3w-PPC> no, nothing at all!
[21:05:07] *** Korli has quit IRC
[21:10:11] <ShackaN> so why do they give you a computer to do something different from what you should be get paid for ? :)
[21:12:32] <@mahlzeit> maybe "supplied" was a euphemism ;-)
[21:15:14] <ShackaN> hahaha
[21:18:38] <frozenet> then why did they give you a computer to BeOS dev?
[21:21:29] <Fanskapet> to keep the working morale up? :)
[21:21:46] *** TLF has quit IRC
[21:26:01] <frozenet> i didn't know BeOS was a morale booster....
[21:26:43] <@mahlzeit> it>	i think he meant they give him a box to take home for the holidays, or just loaned him some old thing that was lying around
[21:26:50] <frozenet> hehe
[21:26:56] <frozenet> but he made it sound so official... :P
[21:28:14] *** AlternativEnde has quit IRC
[21:29:53] <MikeW> or he stole one from the server room
[21:30:19] <MikeW> hmm, which one to borrow, hmm, this one labeled file server, no-one will ever miss that one :P
[21:30:39] <sys2> haha :>
[21:30:43] <MikeW> isn't it not annoying to have to build a machine with an old chip and little ram?
[21:32:09] <@mahlzeit> better than no machine
[21:32:16] <Dr3w-PPC> mahlzeit yeah thats right.
[21:32:22] <@mahlzeit> and unless you're building something huge, it shouldn't really matter
[21:33:08] <MikeW> I really should get my hands on some 1ghz or so machine for as cheap as I possibly can
[21:33:59] <frozenet> isn't it not?
[21:34:06] <frozenet> does that mean is it annoying?
[21:34:37] <@mahlzeit> if "it doesn't matter", it doesn't matter whether it's annoying or not :-)
[21:35:57] <frozenet> hm...
[21:35:59] <frozenet> very true...
[21:36:08] <frozenet> my friend...
[21:36:13] <frozenet> get's 1 Ghz computers for free
[21:36:32] <frozenet> they throw them out at these companies he works for
[21:36:33] <tic> aww.
[21:36:35] <tic> that's fast.
[21:36:35] <frozenet> and he just grabs a few....
[21:36:38] <frozenet> haha
[21:36:44] <tic> the fastest system around is a dual celeron 533
[21:36:46] <frozenet> they're upgrading to 2Ghz and faster...
[21:37:19] *** MikeW has quit IRC
[21:39:01] <Dr3w-PPC> heh, I can't see what I am typing as I have the monitor plugged into the other computer now!
[21:39:27] <frozenet> aww... don't type anything foolish!
[21:39:39] <frozenet> Dr3w-PPC is a smelly guy :P
[21:44:10] <Dr3w-PPC> Cool, its installing! I still can't see though!
[21:44:22] <Dr3w-PPC> I am going to havbe to boot my laptop up to IRC from....
[21:46:00] *** Dr3w has joined #haiku
[21:46:35] <Dr3w-PPC> ttg
[21:46:38] <Dr3w> ah
[21:46:48] <Dr3w> so you probably could see what I was typing :)
[21:47:08] <@mahlzeit> almost no typos!
[21:47:19] <Dr3w> lol
[21:50:21] *** jonaskirilla has left #haiku
[21:50:55] *** nighmi has joined #haiku
[21:55:21] *** Korli has joined #haiku
[21:55:21] *** ChanServ sets mode: +o Korli
[21:55:52] *** khorben has quit IRC
[21:56:05] <@Korli> freesbie's working nicely
[21:56:36] <frozenet> yeah
[21:56:39] <frozenet> we did see what you were typing
[21:56:48] *** khorben has joined #haiku
[21:56:59] <@Korli> frozenet: you mean ?
[21:57:07] <frozenet> hehe
[21:57:25] <@Korli> kidding me :)
[21:58:00] *** TLF has joined #haiku
[21:58:03] <@mahlzeit> not you, Korli :-)
[21:58:24] *** nighmi has left #haiku
[21:58:39] *** dr_evil has joined #haiku
[22:03:17] <Dr3w> hey booted.
[22:03:42] <tic> hey Dr3w
[22:03:44] <tic> err
[22:03:50] <tic> nice, Dr3w
[22:03:52] <tic> and, hey dr_evil
[22:03:53] <tic> :)
[22:05:40] <@Korli> can't find how to mount a cd ... hmmm
[22:06:53] <Dr3w> Hmmm... intel 810, is that an integrated chipset?
[22:07:34] *** frozenet has quit IRC
[22:08:06] <Dr3w> The 810 on-board sound works, but I have set it to use my SoundBlaster Live! The graphics looks supported, but will only let me use 1024x768x8bpp@85Hz
[22:08:10] <Dr3w> I want more colours....
[22:09:30] <Dr3w> lol - I forgot so much about BeOS!
[22:09:42] <Dr3w> How do I find out what graphics card its using?
[22:10:37] <@Korli> Devices pref
[22:11:56] *** tic has quit IRC
[22:12:01] <Dr3w> It says its an Intel - thats it, but has a card ID of 1725
[22:12:04] <Dr3w> 7125
[22:13:30] <Dr3w> ok yeah it is an i81x
[22:13:34] <Dr3w> found the hack/fix
[22:13:49] *** Loppan has quit IRC
[22:14:29] <@Korli> i810E
[22:15:24] *** emwe has quit IRC
[22:16:04] *** tic has joined #haiku
[22:20:51] *** Methe has joined #haiku
[22:21:02] * Methe is back from theater
[22:21:15] <@mahlzeit> phantom of the opera?
[22:22:22] *** frozenet has joined #haiku
[22:24:04] <Methe> havent seen that one
[22:24:40] <@mahlzeit> me neither
[22:27:38] <frozenet> hi
[22:29:51] <Methe> lo frozenet
[22:34:33] *** brennanOS has quit IRC
[22:37:07] *** TLF has quit IRC
[22:39:00] *** m_eiman has quit IRC
[22:39:20] <frozenet> lo
[22:39:21] <frozenet> ?
[22:39:36] <Methe> yes ?
[22:40:46] <frozenet> i dunno
[22:40:51] <frozenet> my server keeps crashing
[22:40:58] <frozenet> overheating problems it seems
[22:41:26] 
[22:41:58] <frozenet> well...
[22:42:05] <frozenet> the smart person who put this server together
[22:42:09] <frozenet> complains it's too noisy
[22:42:15] <frozenet> and stuffs it in a stuffed closet
[22:42:26] <frozenet> everytime i try to compile something
[22:42:31] <frozenet> is overheats and shuts itself off
[22:43:03] * Methe doesnt see where he comes in
[22:43:48] <frozenet> the server is in a hot closet
[22:43:51] <mumu25> re
[22:46:02] 
[22:46:11] <Methe> shame u lose the beginning was gr8 !
[22:46:29] <@mahlzeit> i'm watching webcam of dutch radio right now
[22:47:34] <@mahlzeit> they are doing a fundraiser this week
[22:47:59] <Methe> ah
[22:48:01] <Methe> telethon ?
[22:48:22] <@mahlzeit> yeah something like that
[22:49:00] <Methe> u also have telethon in netherlands ?
[22:49:20] <@mahlzeit> sometimes -- unless you mean something else than i do ;-)
[22:50:47] <Methe> http://www.telethon.fr/010-Home/10-10_Home.asp
[22:51:00] <Methe> it's a fundraising in france
[22:51:01] <Methe> every year
[22:51:08] <Methe> that takes one full day
[22:51:18] <Methe> it's the bigggest foundraising in France
[22:51:24] <Methe> lot people involved
[22:51:26] <@mahlzeit> we don't have a yearly thing
[22:51:37] <@mahlzeit> only when something nasty happens ;-)
[22:51:53] <Methe> it's something against disease where peeps have muscular problems
[22:52:32] <@mahlzeit> actually, we do have things like that, but usually related to the lottery
[22:52:50] <Methe> according to the site they got 98 millions euros this year
[22:52:57] <@mahlzeit> nice :-)
[22:53:01] <Methe> yup
[22:53:04] <@mahlzeit> how many people live in france?
[22:53:10] <Methe> 60 Millions
[22:53:17] <@mahlzeit> ahlzeit>	ah
[22:53:20] <Methe> more 65 now I'd say
[22:53:26] <@mahlzeit> only 16 million here
[22:53:43] <Methe> but this thing is huge
[22:53:49] <Methe> all school do something up for it
[22:53:53] <Methe> lots of associations
[22:53:58] <Methe> and companies also give money
[22:54:05] <Methe> and u got everything on TV
[22:54:09] *** frozenet has quit IRC
[22:54:13] <Methe> 1:54:13 <Methe>	1 channel gets it all day long
[22:54:20] <Methe> without anything else during that day
[22:55:32] <@mahlzeit> all lotteries here have to give a certain percentage to charity -- is that true in france as well?
[22:55:59] <Methe> I don't think so
[22:56:03] <Methe> even though some do
[22:56:13] <Methe> but they don't have to
[22:56:21] *** fyysik has joined #haiku
[22:56:39] <Methe> hola segnor fyysik
[22:57:19] * mmu_man starts up a Methethon
[22:57:36] <@mahlzeit> we do have methadon :-)
[22:58:37] <Methe> mmu_man: is that a joke that I have a mental disease or sthing ? :DD
[22:58:59] <fyysik> hi ppl
[22:59:36] * fyysik bought 30 GB HDD for wife's old Dell 300 and let there 5GB unpartitioned space. Guess - why?
[23:00:26] <Methe> Windows ME ?
[23:00:32] * Methe runsto not get slapped :DDDd
[23:00:42] <fyysik> for BeOS experiments, hehe
[23:00:56] <Methe> I have myself a haiku partition
[23:01:01] <Methe> since now sthijng like a year
[23:01:17] <Methe> haven't updated it yet though :/
[23:01:34] <Methe> last time I tried DL the tree I couldnt.
[23:01:41] <Methe> blame my CVS skills
[23:01:56] <@Korli> Methe: did you watch this tv ad for "transilien" with a warning about alarm ?
[23:02:12] <Methe> Korli I don't watch TV
[23:02:20] <Methe> I watched it 2 days ago for news
[23:02:27] *** mmadia_ has quit IRC
[23:02:32] <@Korli> Methe: good you :)
[23:02:38] <Methe> then my last relation with that thing was 4 months ago
[23:02:43] <Methe> :/
[23:03:36] <@Korli> i>	i didn't have one for two years just three months ago :)
[23:04:04] <Methe> I dont want any
[23:04:10] <Methe> u want info
[23:04:20] <Methe> subscribe to online version of "le Monde"
[23:04:24] <Methe> 6Euros per months
[23:04:27] <Methe> very cheap
[23:04:43] <Methe> u get all news, all archive, special stuffs, mails for events when they happen
[23:05:03] <Methe> 10000000000000000x better than any channel on da square flashing box
[23:05:18] *** dam0 has joined #haiku
[23:05:26] *** nils_t has joined #haiku
[23:05:40] <@Korli> Methe: i want it to watch movies or series
[23:05:43] <dam0> hey folks
[23:05:53] <fyysik> hmm. TV. there is no TV-setup here for last two years. inspite there are 80 channels here over cable (getting internet and phone from same TV-provider)
[23:05:56] <Methe> Korli: it's better :D
[23:06:04] <Methe> series. I dont like
[23:06:09] <Methe> movies I watch on PC
[23:06:34] <Methe> fyysik: I dont get it. /me slaps his english skillz)
[23:06:54] <@mahlzeit> hey dam0
[23:07:05] <Methe> kles
[23:07:12] <Methe> sword
[23:07:17] <dam0> hmm, you guys good with *bsd ?
[23:07:37] <@mahlzeit> no, but we write kick-ass poems :-)
[23:07:39] <fyysik> Methe - no TV receiver here. Inspte the fact that i'm paying montly about 5 EUR for 80 tv-channels
[23:08:45] <@Korli> dam0: you mean freesbie ?
[23:09:38] <Methe> fyysik: so I understood correctly but just wasnt sure :D
[23:09:45] <dam0> no, i mean freebsd
[23:10:01] <dam0> freesbie is just a live cd
[23:10:19] <dam0> im used to linux, should learn freebsd pretty quick tho
[23:11:29] <fyysik> Methe - yeah. That's provider policy - they sell (Internet+landline phone over IP) only together with TV-service.  So i'm getting what i don't need
[23:11:41] * Methe tries to think how to get the word BSD from the "haiku" one
[23:11:55] <Methe> fyysik: lol ?
[23:12:06] <dam0> Methe: think harder!
[23:12:09] <Methe> I guessthey are the only one selling it
[23:12:19] <Methe> dam0: that must be it :D
[23:12:36] *** Koki has quit IRC
[23:12:48] <dam0> when im not on beshare i try to be in the beos irc chans
[23:13:02] *** emuflame has joined #haiku
[23:13:54] <Methe> k
[23:14:33] <emuflame> hello
[23:14:49] <@Korli> dam0: i tried a netbsd live cd and it was less complete
[23:14:58] <fyysik> lol? sad...it seems they are trying to put those commericals into my head directly, without tv-screen. I don't see any other reason
[23:15:37] <Methe> hello emuflame
[23:17:36] <dam0> wow it seems most bsd peeps seem to dislike linux
[23:17:49] <emuflame> i dislike linux
[23:17:56] <emuflame> heh
[23:17:59] <dam0> why?
[23:18:02] * emuflame points to his bsd box
[23:18:20] <emuflame> lol i dont much care for bsd either really, everything is too hodge podge slapped together
[23:18:38] <dam0> im in the process of learning bsd atm
[23:18:57] <dam0> im going straight for freebsd
[23:19:03] <emuflame> yeah
[23:19:15] <emuflame> as long as you have ports
[23:19:18] <dam0> this ports system seems alright
[23:19:21] <emuflame> its not toooo tough
[23:20:06] <dam0> if its anything like portage ill be pr0
[23:21:15] <emuflame> heh
[23:21:20] <emuflame> it kinda is
[23:21:22] <emuflame> but not exactly
[23:23:30] <@Korli> emuflame: i inserted a cd and i don't know how to see it mounted
[23:23:38] <dam0> only thing i think i need to know is what hardware is reconized as i think
[23:24:05] <dam0> eg, linux hardrives: hda, hdc, etc etc
[23:26:10] *** Korli has quit IRC
[23:27:58] <dam0> meh, ill figure it out
[23:28:03] <dam0> this is a haiku chann after all
[23:28:17] <dam0> think i could obtain a copy of hakiu?
[23:28:24] <dam0> wouldnt mind playing with it
[23:28:26] <tic> get BeOS Release 5.
[23:28:32] <tic> Haiku isn't something you can boot yet.
[23:28:40] <dam0> i got it on my other compy
[23:28:45] <dam0> beos r5 i mean
[23:28:51] <tic> although you can replace a lot of bits of BeOS with Haiku modules. Like the Mail Daemon Replacement.
[23:29:02] <@mahlzeit> http://home.tiscali.nl/mahlzeit/gettingstarted.html <--- read this
[23:29:51] *** ShackaN has quit IRC
[23:31:12] <dam0> cool thx
[23:31:26] <dam0> anything i should look out for?
[23:32:24] <Methe> a girl maybe
[23:33:24] *** kr1stof has joined #haiku
[23:35:36] *** nils_t has quit IRC
[23:38:47] *** fyysik has quit IRC
[23:41:15] *** Korli has joined #haiku
[23:41:15] *** ChanServ sets mode: +o Korli
[23:42:21] *** Korli has quit IRC
[23:44:18] <@mmu_man> http://clapcrest.free.fr/revol/beos/shot_pearpc_beos_in_background.png
[23:45:35] <Methe> lol @ jammy rokwai
[23:46:51] *** TLF has joined #haiku
[23:47:42] 
[23:48:00] <@mahlzeit> nite
[23:48:01] *** mahlzeit has quit IRC
[23:48:08] <Methe> I was just surprised by the spelling :D
[23:48:20] <Methe> got nothing against themusic itself
[23:49:02] <tic> mmu_man, how slow is PearPC?
[23:49:32] <@mmu_man> oh, well I didn't name it :p
[23:49:40] <@mmu_man> tic a bit ;))
[23:50:04] <@mmu_man> on this athlonXP 1.5GHz it's usable
[23:50:06] <@mmu_man> but still slow
[23:50:08] <tic> cool.
[23:50:14] <tic> not on a dual cel 533, though? :)
[23:50:52] <@mmu_man> well, pearpc has threading support, but the core of the emulator runs in the main thread, so it doesn't help much
[23:52:07] <tic> :|
[23:52:13] <tic> so it'd essentially be a single celeron 533 :)
[23:52:52] <Methe> BeOS on multi proc 0wnz
[23:53:17] <tic> indeed.
[23:55:16] *** frozenet has joined #haiku
[23:56:50] <@mmu_man> well I did my best to decouple the window thread so it refreshes teh screen onthe 2nd cou
[23:56:51] <@mmu_man> cpu
[23:57:30] <@mmu_man> (that is not use theview->LockLooper() just to put message on a queue, but use a lock on the queue itself
[23:58:44] *** Kernel86 has joined #haiku
[23:59:13] *** dam0 is now known as dam0|away

top