The last 10 added quotes...[Browse
older]Added by Anders Lauritsen : < ducklord at gmail dot com > | 12/04/2010 | [-]180[+] | #1281 | 21:27 <@Gathond> du kan jo eventuelt tage opvasken nå nu du kommer:) 21:27 <@filzkugel> DSHOIG
|
|
Added by gathond : < junk at gathond dot dk > | 13/10/2008 | [-]84[+] | #712 | <HH> jeg har dovnet <MobSteer> har du wanket for lidt ? <HH> det tror jeg ikke der er chance for <Gathond> HH: der er slidvabler på den eller hvad <Gathond> on second thought, I don't want to know <HH> altid <HH> haha <Smoelf> lol |
|
Added by Gathond : < gathond at gathond dot dk > | 29/07/2008 | [-]225[+] | #564 | jul 29 17:43:06 <jak2000> mmm easy question how sort the files with ls command: ls and sorting of the SIZE column?
jul 29 17:44:38 --> leaw (~leaw@leaw.users.undernet.org) has joined #linux
jul 29 17:45:56 --- ufhpc_ is now known as ufhpc
jul 29 17:46:07 <-- leaw (~leaw@leaw.users.undernet.org) has left #linux
jul 29 17:47:25 <Gathond> jak2000: if it is so easy why do you need us to think up the answer?
jul 29 17:48:29 <Gathond> hint: it is easy, and man ls tells how
jul 29 17:48:40 <ufhpc> jak2000: You might want to take a look at the manpage for ls
jul 29 17:49:03 --> Fat-Frumos (~Frederico@189.43.241.2) has joined #linux
jul 29 17:49:09 <Gathond> ufhpc: or he could use a combination of ls, sort, awk and perl
jul 29 17:49:13 <jak2000> yes
jul 29 17:49:20 <Gathond> well and lets throw in some python as well just for kicks
jul 29 17:49:30 <Gathond> perhaps do it in lolcode
jul 29 17:49:37 <jak2000> bad typed: ls --sort -S but now work thanks: ls -S :)
jul 29 17:49:59 <ufhpc> Gathond: True. Althought ls -l | sort -k 5 works just fine
jul 29 17:50:22 <Gathond> http://www.dansdata.com/gz084.htm
jul 29 17:50:50 <ufhpc> Gathond: Granted, if you want to reverse the order, it puts the header at the foot of the list, but suck it up. :)
jul 29 17:50:54 <Gathond> I'm pretty sure that is not true, I'm pretty sure the strength meter in most laptops/cellphones IS the SNR and not the signal strength
jul 29 17:52:05 --- Fat-Frumos is now known as SirAngels
jul 29 17:52:08 <Gathond> or perhaps that is only the linux ones
jul 29 17:52:09 <Gathond> shrug
jul 29 17:52:44 <Gathond> ufhpc: works yes, but it is too simple, you will never be taken seriously if your solution is less than one screen:)
jul 29 17:55:13 <ufhpc> Gathond: Well... I suppose you could do it in perl by grabbing each line of the ls output, splitting it into words and lines on an array, then sorting the array, then iterating through the array again and printing out the proper result.
jul 29 17:55:24 * SirAngels is away (voi mai reveni)
jul 29 17:55:29 <Gathond> ufhpc: now you are talking:)
jul 29 17:56:45 <-- UncleTom has quit (Quit: Ex-Chat)
jul 29 17:56:54 <ufhpc> Of course, the real way to do that would be to use perl to grab it by lines, yank out the sizes in an indexed array, shove that indexed array into a temp file which then gets sorted using sort. You then pull the array back out, read in the new order of the indexes, and print out the lines according to that list.
jul 29 17:57:09 <Gathond> hehe
jul 29 17:57:13 --> unabonger (~barry@ip72-195-188-176.mc.at.cox.net) has joined #linux
jul 29 17:57:36 <ufhpc> Of course, you would want to encrypt all of the data that is not associated with the actual file sizes, for which I think I would use rot13.
jul 29 17:58:24 --> evilelf (~fuzzball@fuzzyelf.users.undernet.org) has joined #linux
jul 29 17:59:21 <ufhpc> Oooh! Wait! I know! Use perl to create a temporary table in a MySQL database, populate that database with the information from the ls output, then simply do a mysql query against the table with an order function in it. Should probably send commands to index the table by the filesize field as well to speed up the transaction
<stuff removed here />
jul 29 22:57:37 <ufhpc> Gathond: You around?
jul 29 23:04:18 <evilelf> heh
jul 29 23:04:35 <evilelf> abusing of a ball?
jul 29 23:05:57 <-- MrFlex has quit (Quit)
jul 29 23:06:03 <Nanuq> Mr. Elf
jul 29 23:07:18 <Gathond> ufhpc: shortly
jul 29 23:07:48 <ufhpc> Gathond: http://pastebin.com/d35c07ddd
jul 29 23:08:20 <evilelf> Mr. Nuq
jul 29 23:08:25 <evilelf> Nanuq: how goes? How's work?
jul 29 23:08:59 <Nanuq> evilelf: Over?
jul 29 23:09:28 <Gathond> ufhpc: LOL
jul 29 23:09:35 <Gathond> ufhpc: I like:)
<content of pastebin link>
#!/usr/bin/perl
use Switch;
use DBI();
use Text::ParseWords;
# Database DSN and access credentials
$dsn="DBI:mysql:database=test;host=localhost";
$dbuser='test';
$dbpwd='testpw';
$dbh = DBI->connect($dsn, $dbuser, $dbpwd, {'RaiseError' => 1});
$dbh->do("CREATE TEMPORARY TABLE scls (id INT, perm VARCHAR(10), hlinks " .
"INT, user VARCHAR(16), grp VARCHAR(16), filesize INT, month " .
"VARCHAR(3), day INT, yearortime VARCHAR(5), filename VARCHAR(40))");
@lines = `ls -l @ARGV[0]`;
$first_line = @lines[0];
shift(@lines);
for my $a (@lines) {
@line = &shellwords($a);
$dbh->do("INSERT INTO scls (perm, hlinks, user, grp, filesize, month, " .
"day, yearortime, filename)" .
"VALUES ('@line[0]', '@line[1]', '@line[2]', '@line[3]', " .
"'@line[4]', '@line[5]', '@line[6]', '@line[7]', '@line[8]')");
}
$sth = $dbh->prepare("SELECT * FROM scls ORDER BY filesize");
$sth->execute();
while(@linevals = $sth->fetchrow_array) {
foreach(@linevals) {
print "$_ ";
}
print "\n";
}
</content of pastebin link> |
|
Added by FrankieRK : < fallenrk at live dot com > | 12/07/2008 | [-]-20[+] | #514 | * Ace_DK (ace@as1337.dk) has joined #n42
* HH has quit (Operation not permitted)
* Ace_DK has quit (Operation not permitted)
* Ace_DK (ace@as1337.dk) has joined #n42
* Ace_DK has quit (Ping timeout)
* Ace_DK (ace@as1337.dk) has joined #n42
* Ace_DK has quit (Ping timeout)
* Ace_DK (ace@as1337.dk) has joined #n42
* Ace_DK has quit (Operation not permitted)
* Ace_DK (ace@as1337.dk) has joined #n42
* Ace_DK has quit (Operation not permitted)
* Ace_DK (ace@as1337.dk) has joined #n42
* Ace_DK has quit (Ping timeout)
* Ace_DK (ace@as1337.dk) has joined #n42
* Ace_DK has quit (Ping timeout)
* Ace_DK (ace@as1337.dk) has joined #n42
* Ace_DK has quit (Ping timeout)
* Ace_DK (ace@as1337.dk) has joined #n42
* Ace_DK has quit (Operation not permitted) |
|
Added by Gathond : < gathond at gathond dot dk > | 13/01/2008 | [-]509[+] | #266 | <HH> Lj: my tits hurt
--> MikeDK (~michael@83.73.228.17.ip.tele2adsl.dk) has joined #n42
--- baat gives channel operator status to MikeDK
<Gathond> HH: TMI
<Lj> HH, hehe.. Gør mine nu ikke.. Men bliver godt at bænke i morgen.. ;-) |
|
Added by lart : < go at aw dot ay > | 14/11/2007 | [-]250[+] | #264 | 00:13 < Abobo> ok then, whats better in mssql2000, disregarding the crapity crap like triggers and stored procedures
00:13 < Abobo> er 2005
-- blessed be the MySQL experts.
|
|
Added by gathond : < gathond at gathond dot dk > | 06/09/2007 | [-]167[+] | #263 | <Gathond> tror nu mest jeg sidder her fordi min client joiner selv:)
<Zta> irc er vist ved at uddø
<Gathond> sikkert
<Zta> De fleste folk på irc, synes at være klienter, der joiner selv =)
<Gathond> det er alt hvad jeg bruger:)
<Gathond> døende eller deprecated
<pusling> nåja. og så er der bots. Bare se på for eksempel brother - han er enormt kommunikerende af en bot at være.
<Zta> pusling, ej hvor spændende, vil du ikke uddybe det?
<Zta> ..Elisa-reference.. =)
<pusling> Unknown command: uddybe
<Gathond> pusling: die();
<pusling> Unknown command: die();
<Gathond> pusling: /quit
<pusling> Gathond: you are not on the list of authorized users
<Zta> pusling, jeg kendte også engang en are not on the
<-- pusling (pusling@88.212.70.38) has left #linux.dk (Segmentation fault)
--> pusling (pusling@88.212.70.38) has joined #linux.dk
<Gathond> hjernen blev for stor?
<Zta> ha-ha-ha
<Gathond> eller var Zta's linie større end input bufferen?
<Zta> min parser er måske ikke så godt. |
|
Added by gathond : < gathond at gathond dot dk > | 21/08/2007 | [-]-193[+] | #262 | <Pony> drikker i stadig kaffe http://ekstrabladet.dk/vrangen/article329692.ece ?
<Gathond> ja
<Gathond> men ikke til 500 kr pundet:)
<Pony> Gathond: det er nok bare fordi de ikke gad sortere kaffen fra lorten, men de malede bare det hele
<Gathond> hehe
<Gathond> sikkert
<Gathond> tror ikke historien som sådan ville forhindre mig i at drikke det
<Pony> nej, det er jo kogt
<Gathond> jeg spiser også muslinger, velvidende jeg æder mave og det hele
<Pony> og McD?
<Gathond> helst ikke
<Gathond> burgerkongen en gang i mellem
<Pony> du har alligevel grænser
<Gathond> men det er kun et par gange om året
<Gathond> Pony, hey, hellere kaffe/kattelort end McD
<Gathond> det er vel sundere
<Pony> sikkert
<Gathond> i det mindste er lort vel ikke direkte skadeligt
<Pony> det tror jeg faktisk
<Gathond> hvis man antager det kommer fra et ikke sygt dyr
<Pony> der er stadig bakterier i
<Gathond> Pony, i modsætning til McD?
<Pony> det er kun tis som for raske personer/dyr kun er salte+vand og ikke bakterier
<Pony> Gathond: jeg tror at bakterierne i lort er mere skadelige end bakterierne i McD
<Gathond> Pony, dunno
<Pony> men så er der er jo resten af indholdet
<Gathond> sikkert though
<Kralian> der er da ingen bakterier i McD
<Kralian> der er heller ingen næring, eller kost |
|
Added by lart : < go at aw dot ay > | 15/08/2007 | [-]218[+] | #261 | 22:30 -!- Irssi: Starting query in Diemen with huko
22:30 <huko> hi
22:30 <tommi> why the fuck are you messaging me?
22:31 <huko> u use linux?
22:31 <tommi> no, fuck off and die after sodomizing yourself with a pineapple.
22:31 <huko> thanks
|
|
Added by lart : < hest at er dot bed dot st > | 27/07/2007 | [-]459[+] | #260 | 21:10 < oz0n> how can i remove this cc version 4.1.2 20060928 (prerelease) (Ubuntu 4.1.1-13ubuntu5)
21:10 < oz0n> ?
21:10 < oz0n> i want to use older version
21:11 < oz0n> pls
21:12 < tommi> oz0n: why?
21:12 < oz0n> i have a compile error :(
21:12 < tommi> compiling what?
21:12 < oz0n> who require older version
21:13 < tommi> 21:12 < tommi> compiling what?
21:13 < oz0n> http://pastebin.com/d1a9f694
21:13 < oz0n> this is the error
21:13 -!- nazraTiTnA1 [~Tarzan34@75.54.191.252] has joined #LINUXHELP
21:13 < oz0n> some one tould me to change compiler
21:14 < Jostein> oz0n: setting up a proper apt.conf might help, but Im not guaranteeing that
21:14 < tommi> congrautlations. compiling what?
21:14 < Jostein> oh. compiling lua eh?
21:14 < oz0n> indeed
21:14 < Jostein> didn't people tell you to just apt-get liblua instead?
21:15 < oz0n> yes but i install a LUA Script
21:15 < oz0n> Lua Lib is installed
21:16 < tommi> and the lua packages available to you are not good enough because?
21:16 * Jostein is eagerly awaiting an answer
21:16 -!- reality_ [reality@reality2.users.undernet.org] has joined #LINUXHELP
21:17 < oz0n> not compatible whit my verlyhub
21:17 < oz0n> velihub*
21:17 < Jostein> try installing a different version? Ubuntu lists at least 2 versions. 5.0 and 4.0
21:18 < oz0n> http://packages.ubuntu.com/cgi-bin/search_packages.pl?keywords=lua&searchon=names&subword=1&version=feisty&release=all
21:18 < oz0n> only lualib50 works :(
21:18 -!- nazraT [~Tarzan34@75.54.191.252] has quit [Read error: Operation timed out]
21:18 -!- nazraTiTnA1 is now known as nazraT
21:18 -!- Redragon [redragon@cpe-70-112-253-4.austin.res.rr.com] has quit [Read error: Operation timed out]
21:18 -!- fury_ [fury@ool-44c2ec30.dyn.optonline.net] has quit [Ping timeout]
21:18 < oz0n> liblua
21:19 -!- mode/#LINUXHELP [+l 98] by X
21:19 < Jostein> oz0n: well. whats your issue? liblua50 -IS- there
21:19 < tommi> oh yay. more warez supporting.
21:19 < tommi> oz0n: do tell what legitimiate use you have for this?
21:19 < oz0n> you mean ?
21:20 < tommi> what I just said. what legitimate use do you expect to use this for?
21:20 * Gathond warez's tommi
21:20 * Jostein gets a beer and some popcorn
21:20 -!- SpineShank [~mark@SpineShank.users.undernet.org] has quit [Ping timeout]
21:20 < oz0n> i`am tryng to use some LUA scripts for a program.
21:20 -!- Fiver [~fiver@fiver.users.undernet.org] has quit [Read error: Operation timed out]
21:20 -!- Fiver_ [~fiver@fiver.users.undernet.org] has joined #LINUXHELP
21:20 -!- baud [~baud@222.126.27.238] has quit [Ping timeout]
21:20 < tommi> no, you are trying to run a DC[++] hub.
21:20 < oz0n> but i have some errors on compile.
21:20 < tommi> a thing I've -NEVER- seen legitimate use of.
21:21 -!- mode/#LINUXHELP [+l 96] by X
21:21 < tommi> and good riddance. you're doing things wrong, trying to do wrong things.
21:21 -!- tojoe_ [~tojoe@85.127.238.133] has joined #LINUXHELP
21:21 < oz0n> the Hub is running allready..but i want to enable plugins
21:21 < Jostein> tojoe_: he fails the basic looking up stuff on a list-test, and he expects to be able to compile stuff
21:21 -!- Fiver_ is now known as Fiver
21:21 < Jostein> its fun. admit it :P
21:21 < Jostein> errr. tommi
21:21 < tommi> oz0n: go die in a fire.
21:22 < oz0n> tommi you sux.
21:22 * Gathond sips some more red wine
21:22 < oz0n> danemark` gay`
21:22 -!- madbovine [~vladb@home-025075.b.astral.ro] has joined #LINUXHELP
21:22 -!- madbovine [~vladb@home-025075.b.astral.ro] has quit [Registered]
21:22 -!- madbovine [~vladb@glipy.users.undernet.org] has joined #LINUXHELP
21:22 < Gathond> oz0n, we are very happy year
21:22 < tommi> wah wah. Y U IS NOT SUPPEORTENING MAH WAR3Z
21:22 < oz0n> dont be rude.
21:23 < Gathond> yeah anyway
21:23 -!- mode/#LINUXHELP [+l 98] by X
21:23 -!- _LieS [LieSeiL@89.36.37.246] has joined #LINUXHELP
21:23 < oz0n> is not warez is CHat.
21:23 < oz0n> also IRC is warez..as you can say dude
21:23 < oz0n> better quit IRC Also!~ tommi
21:23 < tommi> irc is used for legitimate things as well. DC is not. piss off.
21:24 -!- baud [~baud@222.126.27.238] has joined #LINUXHELP
21:24 -!- tojoe [tojoe@tojoe.users.undernet.org] has quit [Ping timeout]
21:24 -!- LieS [LieSeiL@LieSeiL.users.undernet.org] has quit [Ping timeout]
21:24 < oz0n> tould you irc can be a good place for warez..but that depends on what people use it!
21:24 -!- SpineShank [~mark@pool-71-245-2-92.scr.east.verizon.net] has joined #LINUXHELP
21:24 < tommi> oz0n: you are talking as if we/I care.
21:24 -!- SpineShank [~mark@pool-71-245-2-92.scr.east.verizon.net] has quit [Registered]
21:24 -!- SpineShank [~mark@SpineShank.users.undernet.org] has joined #LINUXHELP
21:25 < oz0n> then dont be moron to tell me that you are right..because you dont know a thing.
21:25 < tommi> oz0n: as is, I'm happy that things are not working for you. and I have no wish to change that status.
21:25 < oz0n> then shut Up`
21:25 < tommi> no, this is fun.
21:25 < tommi> and, I get to help people from wasting their time on a lowlife.
21:25 < oz0n> tommi this is help channel not a gay channel shut the hek`up
21:25 -!- _LieS is now known as LieS
21:25 -!- tojoe [tojoe@tojoe.users.undernet.org] has joined #LINUXHELP
21:25 < tommi> I have fun, you get no help, others don't waste their time. everyone but the twits win.
21:25 -!- LieS [LieSeiL@89.36.37.246] has quit [Registered]
21:25 -!- LieS [LieSeiL@LieSeiL.users.undernet.org] has joined #LINUXHELP
21:26 -!- mode/#LINUXHELP [+l 100] by X
21:26 < oz0n> you dont care..then shut up`
21:26 < tommi> I care. I just don't care about your problem. I -do- care about your not getting help.
21:27 < oz0n> because your are rude..
21:27 -!- Tarzan [Tarzan34@75.54.191.251] has quit [Ping timeout]
21:27 < oz0n> if you dont like to help users part this channel..
21:27 < tommi> not just because of that. mainly because you're trying to get free assistance to do illegal things.
21:28 -!- tojoe_ [~tojoe@85.127.238.133] has quit [Ping timeout]
21:28 < tommi> if you actually knew what you were talking about, you'd also know that I help plenty of users.
21:28 < oz0n> i wanted to know more about LUA and some compilers. you must ..f`ck me dam you.
21:28 -!- TheGewp [dragon@thegewp.users.undernet.org] has quit [Ping timeout]
21:28 -!- ralfWORK_ [jwalker@flynn.smearcampaign.org] has joined #LINUXHELP
21:28 < tommi> no you don't. if you wanted to know that, you'd be programming right now.
21:28 -!- mode/#LINUXHELP [+l 98] by X
21:28 -!- kuto [~kuto@202.175.233.242] has quit [Ping timeout]
21:28 -!- kuto [~kuto@202.175.233.242] has joined #LINUXHELP
21:28 < oz0n> i hade danemark people and swedish ..mornos. peoples`
21:29 < tommi> wah wah.
21:29 < tommi> LadyByte: fish revisited?
21:29 <@LadyByte> from memory, fish revisited is Give a man a fish, he'll insult you and leave. Try to teach a man to fish, he'll scream at you about not wanting to
learn to fish, just wanting a fish now and you owing it to him.
21:29 < oz0n> i like russia they are more friendly :)
21:29 < tommi> but if it's any comfort, the feeling is mutual, except I'd actually make an effort to write understandable english.
21:30 < mary-kate> um, do you people actually think FIGHTING is gonna SOLVE anything? because from what i see, it's NOT
21:30 -!- Tarzan [Tarzan34@75.54.191.251] has joined #LINUXHELP
21:30 -!- SJr [~email@S01060008029e1eb2.vc.shawcable.net] has quit [Ping timeout]
21:30 < oz0n> mary-kate indeed
21:30 < tommi> no, but atleast I'm making sure it's a status quo.
21:30 < tommi> as long as he doesn't get what he wants, I'm happy :)
21:30 < oz0n> i better JFGI ..
21:30 < mary-kate> i got one thing to say
21:30 < mary-kate> FIGHTING IS FOR LOSERS!
21:31 < mary-kate> and i thought this was a HELP channel!
21:31 < Jostein> mary-kate: oz0n is just bitter since we wont help him setting up his warez site
21:31 < tommi> mary-kate: whining is idiotic. congratulations, you're just as stupid.
21:31 < mary-kate> DON'T YOU DARE CALL ME NAMES!
21:31 < mary-kate> I DON'T APPRECIATE IT AT ALL!
21:32 -!- zea [astrolux@89.152.79.151] has joined #LINUXHELP
21:32 < Jostein> caps is the sign of intelligence indeed
21:32 < mary-kate> YOU DON'T KNOW JACK SHIT ABOUT ME!
21:32 < tommi> mary-kate: DON'T YOU DARE ABUSE THAT CAPSLOCK!
21:32 < mary-kate> i don't care
21:32 -!- grunt [duelzone@give.me.root.on.your.freebsdbox.org] has quit [Ping timeout]
21:32 < tommi> mary-kate: I know that you're obviously the type to meddle in business that is a) none of yours - or b) you know little to nothing about. that's all I
need to know.
21:32 < mary-kate> wrong
21:32 < mary-kate> you know NOTHING about me
21:33 < mary-kate> so STOP ASSUMING
21:33 < tommi> I'll assume as I please.
21:33 < tommi> if you dislike it, ignore me.
21:33 < mary-kate> then GO TO HELL
21:33 < zea> damn. i haven't been in irc for so long I forgot how to switch channels in irssi. anyone?
21:33 < tommi> zea: esc-num, /win number
21:33 < tommi> zea: alt-num as well.
21:34 < zea> thanks tommi:) I remember now
21:34 < tommi> you're welcome.
21:34 < Jostein> zea: or ctrl-n or ctrl-p for next and previous window
21:34 -!- ralfWORK [jwalker@flynn.smearcampaign.org] has quit [Ping timeout]
21:34 -!- uoeh [~email@S01060008029e1eb2.vc.shawcable.net] has quit [Ping timeout]
21:35 -!- mode/#LINUXHELP [+l 96] by X
21:35 < mary-kate> ctrl+p doesn't work for me but ctrl+n does
21:35 < zea> Jostein: nice :)
21:35 < mary-kate> in mirc
21:35 < zea> they both work for me
21:35 < Jostein> mary-kate: he did say "irssi" though
21:35 < zea> alt-num doesn't. but that's probably because I'm in kde
21:35 < Jostein> yeah
21:36 < mary-kate> oh, i missed that part
21:36 < tommi> seems to be a "feature" of yours.
21:36 < Jostein> zea: also alt qwertyuiop is for 11,12,13,14 and so on :P
21:36 < mary-kate> oh, tommi is the one who said it, i have the jerk on IGNORE
21:36 < Jostein> zea: Very handy when you need hotkey for more than 10 windows
21:36 < mary-kate> calling ME fucking stupid
21:36 -!- Tarzan [Tarzan34@75.54.191.251] has quit [Read error: Connection reset by peer]
21:36 < mary-kate> i DON'T listen to that shit
21:36 * tommi wonders how that'd work on a dvorak encoded keyboard
21:36 * Jostein ignores mary-kate
21:37 < tommi> obviously you are.
21:37 < tommi> you're funny.
21:37 < mary-kate> good for you
21:37 < mary-kate> see if i care
21:37 -!- Borice [~Webchat@h132-7.reznet.ucalgary.ca] has quit [Quit: http://www.undernet.de]
21:37 < tommi> seeing as every time I make a slight comment about you, you blaze off about 4-5 lines in all case about how I don't know you, and then finish off with
"I don't care", I'd say you have psycological issues.
21:37 < tommi> talk much to yourself?
21:37 < zea> Jostein: yes, now that you mention that I also recall it :)
21:38 -!- mode/#LINUXHELP [+l 94] by X
21:38 < mary-kate> i was invited here to try and HELP
21:38 < Jostein> mary-kate: I cant hear you. I did a /ignore stupidity
21:38 < mary-kate> is it MY fault i know some about linux?
21:38 < mary-kate> no its not!
21:38 < Jostein> let me know if there is any amusing response :P
21:38 -!- SJr [~email@S01060008029e1eb2.vc.shawcable.net] has joined #LINUXHELP
21:38 < tommi> mary-kate: so do that. stop bitching and commenting on things you obviously do not know anything about then.
21:38 -!- uoeh [~email@S01060008029e1eb2.vc.shawcable.net] has joined #LINUXHELP
21:39 -!- mode/#LINUXHELP [+l 96] by X
21:39 < tommi> Jostein: apparantly she feels special because someone "invited her" to come help because she knows stuff about `teh lynex'
21:39 < mary-kate> stupid NT people anyway
21:39 < Jostein> oh right
21:39 -!- GENOVESE [~gun@gun.users.undernet.org] has joined #LINUXHELP
21:40 * mary-kate rocks back and forth trying to cool off after some stupid asshole called her stupid when he knows NOTHING about her
21:40 -!- GENOVESE [~gun@gun.users.undernet.org] has left #LINUXHELP []
21:40 < Jostein> tommi: too bad she doesn't know how to behave like a normal person
21:40 < Jostein> I mean... who takes abuse or a "diaf" seriously these days? :P
21:40 -!- Tarzan [Tarzan34@75.54.191.251] has joined #LINUXHELP
21:40 -!- fury_ [fury@ool-44c2ec30.dyn.optonline.net] has joined #LINUXHELP
21:40 < tommi> Jostein: DON'T SAY THAT! YOU KNOW _NOTHING_ ABOUT HER!
21:40 < Jostein> hahahahaha
21:40 < tommi> but I don't care!
21:40 < Jostein> good thing Stegul ain't here. we'd be so banned
21:41 -!- mode/#LINUXHELP [+l 98] by X
21:41 < tommi> I doubt it.
21:41 -!- grunt [duelzone@give.me.root.on.your.freebsdbox.org] has joined #LINUXHELP
21:41 < Jostein> well maybe not in this case
21:41 < zea> and now what brought me here... does anyone know of an audio player that has both a fast searcing media library (like winamp 5 or songbird) and cd
playing abilities with cddb support? (ps: I don't like amarock's 'collection')
21:41 < tommi> zea: oerrr, tried xmms?
21:41 < Jostein> does xmms have a library?
21:41 < zea> tommi: xmms has a library?
21:41 < Jostein> I thought it was just a winamp2 clone?
21:41 < tommi> I'm not sure. I don't use mp3 players.
21:42 < zea> indeed it is
21:42 < tommi> or, -very- rarely
21:42 < tommi> I'm fairly certain that it has a very extendable plugin system however.
21:42 < zea> and both have no library :(
21:42 < zea> hm
21:42 < zea> good point
21:42 < zea> gonna check that
21:42 < Gathond> library? big place with a lot of books?
21:42 < tommi> Gathond: get back into hibernation.
21:42 < tommi> Gathond: U R SLEPEING!
21:42 < Gathond> tommi, ok:)
21:42 < zea> Gathond: eheh. more like and id3 database
21:43 < Jostein> Gathond: you will need a 48" Eizo for MY library :P
21:43 < Gathond> Jostein, probably
21:43 < tommi> zea: otherwise quodlibet looks like it could do some. I don't know of it or specifics, but it pops up with the right keywords.
21:45 * Gathond goes back to playing eve-online
21:45 < tommi> Gathond: stop coming here to pull stupid remarks out of your arse ;)
21:46 < tommi> Gathond: that's what #n42 is for :P
21:46 < Jostein> tommi: you'd rather have him pull there from somewhere else?
21:46 < Jostein> s/there/them/
21:46 <@LadyByte> Jostein meant: tommi: you'd rather have him pull them from somewhere else?
21:46 < tommi> Jostein: yes. don't ask me why I say that, but I know :P
21:46 < Gathond> tommi, I refute your reality
21:47 < tommi> Gathond: ofcourse you do. you apparantly refuse being a grumpy old bastard.
21:47 < tommi> -EDENIAL
21:47 -!- OmiKrOn [~x@82.77.226.101] has quit [Registered]
21:47 -!- OmiKrOn [~x@OmiKrOn.users.undernet.org] has joined #LINUXHELP
21:48 < mary-kate> i don't understand...why the hell call me stupid?
21:49 < mary-kate> what the hell did i do wrong?
21:49 < tommi> lots?
21:49 < mary-kate> not
21:49 < tommi> -EDENIAL
21:49 < mary-kate> i did NOTHING to deserve your shitty abuse
21:50 < mary-kate> i only mentioned fighting is for LOSERS
21:50 < tommi> well, for starters, you interfered in a "conversation" you obivously knew little to nothing about, calling me stupid.
21:50 < tommi> by the same reasoning, anyone commenting on things like that are just as stupid.
21:50 < tommi> i.e. hello there, we're in the same boat.
21:50 < mary-kate> shows what you know about me
21:50 < mary-kate> which is NOTHING
21:51 < tommi> hahahaa
21:51 * mary-kate BELCHES
21:51 < tommi> what is that? boilerplate GIGO?
21:51 < mary-kate> shut your trap
21:51 < tommi> wah wah
21:51 < mary-kate> i don't care to see your shit
21:51 < tommi> so ignore me.
21:51 < mary-kate> you pissed me off by calling me stupid, now you can SUFFER
21:51 * Jostein watches tommi speak with himself
21:52 < mary-kate> if i'm so damn stupid then why the hell am i using LINUX?
21:52 < tommi> okay, how about I call you a complete demented moron who spews forth inane drivel like there was no tomorrow then?
21:52 < tommi> does that help?
21:52 < Jostein> hahaha
21:52 < mary-kate> and DON'T say mirc doesn't run through linux because it DOES
21:52 < tommi> we don't care.
21:52 * Jostein unignores mary-kate to see this
21:53 < Jostein> mary-kate: you are delusional. you think people on irc care
21:53 < tommi> Jostein: oh, I can give you a summary afterwards.
21:53 < Jostein> tommi: ah thanks
21:53 < mary-kate> you can shut the hell up
21:53 < Gathond> tommi, qdb.n42.dk:)
21:53 < tommi> Gathond: will do ;)
21:53 < tommi> Gathond: it'll probably span multiple posts, or MySQL will silently ignore input and truncate it to ""
21:54 < mary-kate> oh what's that? i hear nothing, HAHAHAHAHAHAHAHAHAHA!
21:54 < tommi> Gathond: that means more posts to upmod for being amusing though.
21:54 < Jostein> tommi: pastebin it? :P
21:54 < mary-kate> i got 2 trolls on IGNORE! HAHAHAHAHAHAHA!
21:54 < tommi> pffffft...
21:54 < Jostein> Im sure there is a highlight scheme for insane IRC-drivel
21:54 < mary-kate> if you need my help with anything, TOUGH
21:54 < tommi> Gathond: approve it.
21:55 < tommi> HAHAHAHAHAHAHA
21:55 < mary-kate> i don't help trolls
21:55 < mary-kate> i HATE people who call me names
21:55 < Gathond> tommi, 1. its not mysql 2. there are no limits on that field
21:55 < tommi> yes, I most definitely need a fuckwit who runs mIRC in linux's help. what a loss. I'm in tears.
21:55 < Gathond> or there is whatever postgresql has as limits for a text field, but I'm pretty sure that is far more than my HDD capacity
21:56 < tommi> Gathond: or, it could just be qdb that's poorly coded not to handle errors. actually that seems more likely :)
21:56 < tommi> Gathond: I lost a 150+ line post without errors.
21:56 < Gathond> there was a bug until recently since there was a btree index on the content
21:56 < Gathond> so more than 2713 bytes was a nogo
21:56 < tommi> ah, funfun
21:56 < Gathond> this is gone now thogh
21:56 < tommi> now, approve it :P
21:56 < Gathond> done
21:57 < tommi> I'll probably have to do a followup though.
21:57 < tommi> Jostein: http://qdb.n42.dk/?site=latest
21:58 < Jostein> yes there already
21:59 < Jostein> mIRC is always the sign you are looking for when you need a clue about someone being intelligent :P
21:59 < tommi> it's not -complete- rubbish.
21:59 -!- Nickname2 [~Richard@user-544261b7.l6.c2.dsl.pol.co.uk] has quit [Read error: Connection reset by peer]
21:59 < tommi> it's -getting- there, but not -complete-
21:59 < mary-kate> i don't need your shit
21:59 < tommi> I thought you ignored us?
22:00 * tommi pokes mary-kate with the moron-bat
22:00 < Jostein> she got lonely :P
22:00 < tommi> aw. poot. I forgot my stick. it's bat for you.
22:00 * Gathond died in eve ... crap ... that will probably teach me not to play MMORPG's after a bottle of wine
22:00 < tommi> Gathond: -and- pay attention to idiots on irc meanwhile? :P
22:00 < Gathond> tommi, that too
22:01 < Gathond> although it was a chance I was aware of in the game
22:01 < mary-kate> you losers think mIRC doesn't work in linux
22:01 < mary-kate> HAHAHAHA!
22:01 < Gathond> so then again the wine might not matter that much
22:01 < mary-kate> that's where you're WRONG it DOES work in linux
22:01 < Gathond> mary-kate, we are well aware og mirc working in wind
22:01 < Gathond> wine anyway
22:01 < Jostein> mary-kate: we just say mIRC is a POS and people using it in Linux when about every client there is is better.
22:01 < tommi> doesn't make it worthwhile running a shitty client through a shitty "emulator"
22:01 < Gathond> that does not change my opinion that it sucks though
22:01 < Jostein> that they are kinda freaky, and all
22:02 < mary-kate> like i care
22:02 < mary-kate> i never cared
22:02 < tommi> "I don't care!"
22:02 < Gathond> then why do you keep going on about it
22:02 < Jostein> mary-kate: YOU CLEARLY SHOW THAT YOU DONT CARE BY USING CAPS AND FREAKING OUT OVER A SINGLE REMARK
22:02 < tommi> idiot_boilerplate();
22:02 < mary-kate> jee, i'm so damn stupid, yet i'm using linux
22:02 < mary-kate> LOL!
22:03 < Gathond> what does the 2 have to do with each other
22:03 < Jostein> Gathond: romulan logic
22:03 < tommi> I've seen monkeys handle cars. doesn't make the monkey smart.
22:03 < Gathond> I'm don't think there is any correlation betweeen stupid and using linux
22:03 < mary-kate> you bunch of losers think fighting is so damn cool, go for it
22:03 < mary-kate> but i have you on IGNORE
22:04 < Gathond> mary-kate, enjoy
22:04 < mary-kate> i won't be helping those who are on my ignore list
22:04 < mary-kate> they can all SUFFER
22:04 < Jostein> i bet she has small boobs
22:04 < Gathond> mary-kate, I'm pretty sure I'll live
22:04 < tommi> see, this is where it's really interesting. it's apparantly not cool to "fight", yet it -is- cool to either a) pretend to have people on ignore, and
keep spewing moronic remarks at them - or b) -actually- ignore them and spew forth moronic remarks.
22:04 -!- LieS [LieSeiL@LieSeiL.users.undernet.org] has quit [Read error: EOF from client]
22:05 < Jostein> where the hell is d-side when you need him
22:05 < tommi> this is when the cluebyfour ought to kick in.
|
|
[Browse
older] |