Have fun reading for yourself

Flooding starts at aprox 315 EDT [15:13:50]
You might consider a grep or other search for the word figlet

Also, Can click here: [[[ Raw Version of Log ]]]


Start: Fri Apr 30 00:00:00 2010
Session Ident: #sdf
[00:02:39] <robthew00t> eh
[00:02:41] <robthew00t> kinda not really
[00:02:54] <robthew00t> i also have to add a score.txt to maintain user scores :/
[00:02:57] <robthew00t> hrm
[00:02:58] <robthew00t> but whatevs
[00:03:03] <robthew00t> i might just hand it in without that
[00:05:01] <nullogic> robthew00t: PROTIP: call your .txt files w/ data in them .dat files, it makes it look like you're awesome
[00:05:24] <robthew00t> lol
[00:05:25] <robthew00t> i would
[00:05:27] <nullogic> wait...
[00:05:35] <robthew00t> if they were going to be used for anything at all other then homosexualness
[00:05:36] <nullogic> is you're teacher telling you not to?
[00:05:40] <robthew00t> nope
[00:05:42] <nullogic> phew
[00:05:44] <nullogic> hehehe
[00:05:52] <robthew00t> teacher is a french/arabic man
[00:05:56] <robthew00t> i can't understand him at all
[00:05:57] <ion> i prefer
[00:05:59] <ion> .FUCKOFF
[00:06:09] <robthew00t> he also told me if i wasn't going to pay attention to not go to class
[00:06:13] <ion> .VAGINA
[00:06:14] <robthew00t> i've skipped most of his classes
[00:06:16] <ion> scores.PENIS
[00:06:31] <robthew00t> mostly cause i didn't feel like waking up to go to class at 8am
[00:06:35] <robthew00t> and he said i didn't have to
[00:06:39] <nullogic> hehehe
[00:06:43] <nullogic> 8am is tooo early for perl
[00:06:48] <nullogic> thats inhumane
[00:06:53] <nullogic> they should put the perl prof to sleep
[00:07:04] <robthew00t> yeah i definately don't like him
[00:07:23] <robthew00t> hrm
[00:07:45] <robthew00t> i think i'm going to through a || $win ne "true" in my while loop
[00:07:57] <robthew00t> and just set it to true if theres no '-' left in @hiddenWord
[00:08:55] <nullogic> hmmm
[00:09:38] <robthew00t> i usually say stuff like that
[00:09:45] <robthew00t> stare at my screen for about 20 minutes
[00:09:55] <robthew00t> then realize it won't work so then i spend another 10 minutes thinking of a better idea
[00:10:03] <robthew00t> given the times are a lil over exaggerated
[00:10:06] <robthew00t> but yeah
[00:13:53] <robthew00t> well
[00:13:58] <robthew00t> that was horribley flaw'd
[00:14:33] <robthew00t> lol if($hiddenword[$i] ne '-')
[00:14:34] <robthew00t> $win = "true";
[00:14:48] <robthew00t> i guess the first letter and it stopped after the second try
[00:15:58] <nullogic> hehehe
[00:16:15] <nullogic> robthew00t: cant youi set boolean values in perl?
[00:16:29] <nullogic> isntead of useing the strings "true" and "false" use the values?
[00:26:34] <robthew00t> i don't feel like looking it up :P
[00:26:49] <robthew00t> h/o
[00:26:54] <nullogic> robthew00t: i figured it out
[00:27:00] <nullogic> cause i have some scripts i wrote that need it
[00:27:08] <robthew00t> i don't think you can
[00:27:09] <nullogic> robthew00t: jsut my $var = true;
[00:27:12] <nullogic> ya you can
[00:27:13] <robthew00t> youc an say undef
[00:27:14] <robthew00t> which is false
[00:27:16] <robthew00t> undefiened
[00:27:16] <nullogic> you have ot use constant
[00:27:21] <nullogic> us constant false => 0
[00:27:24] <nullogic> *use
[00:27:29] <nullogic> use constant true => 1;
[00:27:37] <robthew00t> hrm
[00:27:38] <nullogic> add thoes 2 things to the top of the program
[00:27:42] <nullogic> and you can use ture & false
[00:27:55] <nullogic> then, you can just be all like if($val)
[00:28:22] <nullogic> or if($val && $num == $num1);
[00:28:29] <nullogic> or soemthing gangser like that
[00:28:39] <nullogic> or
[00:28:43] <nullogic> you could just use 0 for false
[00:28:44] <nullogic> and 1 for true
[00:28:47] <robthew00t> so in my case
[00:28:50] <nullogic> you dont really need to define a constant
[00:28:59] <robthew00t> while($tracker <12 || $win
[00:29:00] <robthew00t> )
[00:29:17] <nullogic> hmm why $tracker <12?
[00:30:02] <nullogic> shouldnt it be $tracker < length($VAR_FOR_THE_WORD) || $win
[00:30:13] <nullogic> oh
[00:30:15] <nullogic> nvm
[00:30:16] <nullogic> im on crack
[00:30:17] <robthew00t> 12 tries
[00:30:19] <nullogic> yes, that is correct
[00:30:30] <nullogic> where is the ASCII hangman?
[00:30:34] <robthew00t> i don't give a shit about making it programmer friendly :P
[00:31:03] <robthew00t> shit
[00:31:07] <robthew00t> i need to use REGULAR EXPRESSIONS
[00:31:15] <nullogic> for what?
[00:31:33] <robthew00t> i think i'm going to do it like this
[00:31:56] <robthew00t> $hword = @hiddenWord;
[00:32:16] <robthew00t> if($hword ~= /(-)/)
[00:32:23] <robthew00t> $win = false
[00:32:29] <robthew00t> else $win = true
[00:32:41] <nullogic> why bother copying it to $hword?
[00:32:53] <robthew00t> hrm
[00:32:58] <nullogic> you should be able to just do if(@hiddenWord ~=
[00:33:04] <robthew00t> well if i use @hiddenWord wouldn't that essentially be all of it
[00:33:06] <robthew00t> yeah
[00:33:12] <robthew00t> i shall see
[00:33:17] <nullogic> aye
[00:33:21] <nullogic> dont waste memory
[00:33:27] <nullogic> all you punk kid prgrammers waste memory
[00:33:30] * nullogic glares
[00:33:36] <robthew00t> I HAVE 6GB I'LL WASTE AS MUCH AS I WANT WOMEN! :P
[00:34:45] <robthew00t> nah that didn't work
[00:35:08] <robthew00t> could be because i totally put that inside a nother for loop i made to go through and check for -
[00:35:32] <nullogic> what?
[00:35:38] <nullogic> email me your source
[00:35:41] <nullogic> give me your source
[00:35:44] <nullogic> naw1
[00:35:47] <nullogic> NOA!
[00:35:48] <robthew00t> why :(
[00:35:53] <nullogic> i wanna peek
[00:35:55] <robthew00t> h/o
[00:36:01] <robthew00t> it honestly hasn't changed much
[00:36:25] <robthew00t> k here it comes in a sec
[00:36:44] <nullogic> faster
[00:36:47] * nullogic cracks whip
[00:36:48] <robthew00t> I JUST SENT IT
[00:36:59] <nullogic> your internet tubes are slow
[00:37:04] <nullogic> you need more lube
[00:37:08] <nullogic> in the tube
[00:38:10] <robthew00t> lol
[00:38:22] <robthew00t> don't mind the if(@hiddenWord != /(-)/)
[00:38:24] <robthew00t> i just noticed that
[00:38:40] <robthew00t> although fixing that FUCKED SHIT UP
[00:38:41] <robthew00t> lol;
[00:38:41] <nullogic> finaly got it
[00:38:50] <nullogic> ya you cant use !=
[00:38:57] <robthew00t> i mean ~=
[00:39:00] <robthew00t> and hit the '1' key instead
[00:39:18] <nullogic> aye
[00:41:01] <nullogic> hahah ok
[00:41:05] <nullogic> ya some syntax errors
[00:41:11] <nullogic> god, perl syntax looks like crap
[00:41:14] <nullogic> how can it be in error?
[00:41:19] <robthew00t> yeah i'm not getting it :/
[00:42:15] <robthew00t> yeah putting it into its own var didn't help
[00:44:07] <nullogic> robthew00t: why is - in ()?
[00:44:17] <robthew00t> good question i'll try it without
[00:44:23] <nullogic> it wont fix it
[00:44:26] <robthew00t> probably cause if you do any alpha numeric it needs to be
[00:44:26] <nullogic> but they are not needed
[00:44:41] <nullogic> aye
[00:44:48] <nullogic> thats right perlregex is fucktarted
[00:45:08] <robthew00t> yeah trust me any shit like that is becuase the last lab i did was more fucking retarded
[00:45:32] <nullogic> ahhh i see it
[00:46:29] <robthew00t> you see it?
[00:46:32] <nullogic> http://www.anaesthetist.com/mnm/perl/Findex.htm#regex.htm
[00:46:57] <nullogic> i think you'll have to smush them together with join, im thinking?
[00:47:05] <nullogic> (no delmiter)
[00:47:09] <nullogic> and compare like that
[00:47:17] <nullogic> im not the best perl person in the world im no monk
[00:47:43] <robthew00t> trust me thats fine
[00:48:01] <robthew00t> according to kyeho ion is pretty damn good wiht it
[00:48:19] <nullogic> ya, he is
[00:48:28] <nullogic> i use bash/ksh/sh instead of perl
[00:48:33] <nullogic> because... well because perl is for sukkas
[00:48:45] <robthew00t> perl is required course for me -_-
[00:49:03] <robthew00t> if they offerd anything other then it i would more then gladly take that
[00:49:05] <nullogic> check this out
[00:49:06] <nullogic> http://www.regular-expressions.info/perl.html
[00:49:13] <nullogic> read the bit on Regex-Related Special Variables
[00:49:21] <nullogic> it talks about arrays + regex
[00:49:46] <nullogic> aye the m// thing
[00:49:48] <nullogic> thats right
[00:49:55] <nullogic> ahhh its all comming back
[00:50:08] <nullogic> haha
[00:50:09] <nullogic> also
[00:50:14] <nullogic> robthew00t: its =~ not ~=
[00:50:19] <robthew00t> well
[00:50:22] <robthew00t> fuckme
[00:50:22] <robthew00t> whatever
[00:50:27] <nullogic> and you need m/-/
[00:50:41] <nullogic> altough it defaults to m// if nothing given me thinks
[00:50:43] <robthew00t> you don't... need m// -_-
[00:50:52] <nullogic> I WON THE GAME
[00:50:54] <robthew00t> lol yeah pretty much
[00:50:56] <robthew00t> FUCK YOU
[00:50:59] <nullogic> robthew00t: you'll get a perl warning
[00:51:00] <robthew00t> GOD DAMN I FUCKING LOST
[00:51:01] <robthew00t> HARDCORE
[00:51:04] <nullogic> AND WARNINGS ARE BAD
[00:51:05] <nullogic> AND WARNINGS ARE BAD
[00:51:05] <nullogic> AND WARNINGS ARE BAD
[00:51:05] <nullogic> AND WARNINGS ARE BAD
[00:51:06] <nullogic> AND WARNINGS ARE BAD
[00:51:08] <nullogic> AND WARNINGS ARE BAD
[00:51:11] <nullogic> AND WARNINGS ARE BAD
[00:51:44] <robthew00t> it says its goign to be scalar :/
[00:51:48] <nullogic> ya
[00:51:51] <nullogic> its not going to work
[00:52:03] <nullogic> i've added some `print' statements for debugging
[00:52:13] <nullogic> do you do that? use `print' to dump vars to the screen?
[00:52:22] <robthew00t> yes
[00:52:25] <robthew00t> in my test file
[00:52:25] <nullogic> just checking
[00:52:41] <nullogic> not sure what skill level you are
[00:52:45] <robthew00t> i usually keep 2 one for debugging and one for saying i don't give a fuck i'm going to do it anyway
[00:52:52] <robthew00t> i am nube
[00:52:54] <nullogic> im just assuming your the basic CompSci... 2nd year?
[00:53:06] <robthew00t> i'm the basic soft eng 1st year
[00:53:25] <robthew00t> who's slightly elevated then every other student cause of past experiences
[00:54:30] <nullogic> ah a souultion
[00:54:42] <nullogic> we are applying the match to the array
[00:54:43] <nullogic> this is wrong
[00:54:54] <robthew00t> yeah you ahve to apply it to the $var
[00:54:55] <robthew00t> or whatever
[00:54:56] <robthew00t> right
[00:55:06] <nullogic> well
[00:55:09] <nullogic> you can do the array
[00:55:37] <nullogic> wow
[00:55:50] <robthew00t> what?
[00:56:07] <robthew00t> i did $var = @hiddenWord;
[00:56:08] <robthew00t> if($var =~ m/-/)
[00:56:18] <robthew00t> it doesn't give me any errors
[00:56:18] <nullogic> i wonder if: map { /-/; ($1, $2) } @hiddenWord;
[00:56:19] <nullogic> works
[00:56:21] <robthew00t> but it doesn't work either
[00:56:24] <nullogic> ima going to have to try that
[00:56:26] <nullogic> thats insane
[00:57:06] <robthew00t> is it now?
[00:57:27] <nullogic> ouch
[00:57:31] <robthew00t> hrm?
[00:57:36] <nullogic> thats a strange way of doing it
[00:57:39] <nullogic> it hurts may head
[00:57:49] <robthew00t> i wanna see
[00:58:14] <nullogic> http://www.perlmonks.org/?node_id=413760
[00:58:23] <nullogic> not good for this soultion btw
[00:58:36] <robthew00t> yeah
[00:58:57] <robthew00t> hrm
[00:59:01] <robthew00t> thats weird looking
[00:59:03] <nullogic> aye
[00:59:07] <nullogic> ugly: like perl
[00:59:11] <nullogic> ?ud perl
[00:59:17] <KuSHy> definition: pur'-el (n) 1. Computer programming language used mostly by male virgins, between the ages of 17 and 35, who are also well versed in the Lord Of The Rings stories.
[00:59:18] <KuSHy> example: Whew, that perl coding guy is due for his monthly shower today!
[00:59:19] <robthew00t> it splits the ' ' with the default value and i have no fucking clue what 2 is doing
[00:59:39] <robthew00t> i don't know the lord of the rings story....
[00:59:43] <nullogic> ?ud 2 perl
[00:59:44] <KuSHy> definition: Pratical Extraction and Reporting Language. Perl is a script programming language that is similar in syntax to the C language and that includes a number of popular Unix facilities such as SED, awk, and tr. Perl is an interpreted language that can optionally be compiled just before execution into either C code or cross-platform bytecode. When compiled, a Perl program is almost (but not quite) as fast as a fully precompiled C language pro
[00:59:45] <KuSHy> example: When I used to code in C I used to get headaches. Now I use perl and my headaches are gone.
[00:59:52] <nullogic> ?ud 3 perl
[00:59:53] <KuSHy> definition: perl is a language you will either love or hate. If you hate it, you're probably just confused because nobody told you about perldoc yet.
[00:59:53] <KuSHy> example: copy and paste this into a shell: perl -e "print unless s aa
[01:00:08] <nullogic> ?ud 4 perl
[01:00:10] <KuSHy> definition: A programming language popular on *nix systems. For some reason, Perl programmers find the need to write programs as small as possible. Many have attributed this to a similar phenonenom for unintelligent men to compensate for the size of their manhood by purchasing large, powerful cars. Instead of compensating by showing how immense their purchasing power (and in many cases, debt) is, Perl programmers compensate by showing how large t
[01:00:10] <KuSHy> example: Somebody with way too much time on his hands wrote MoleSter, a functional P2P app in just 6 lines of perl.
[01:00:21] <nullogic> robthew00t: thats the one
[01:00:24] <nullogic> its a sickness
[01:01:03] <nullogic> robthew00t: your solution will not work
[01:01:08] <robthew00t> :(
[01:01:14] <robthew00t> this is sucks
[01:01:15] <nullogic> if you use `print' to print the @hiddenWord
[01:01:21] <robthew00t> i do
[01:01:22] <nullogic> you'll notice that it gets the number of elemetnts in the array
[01:01:26] <nullogic> not the full word
[01:01:37] <robthew00t> hrm :/
[01:01:40] <nullogic> use join
[01:01:43] <nullogic> to join them into 1 var
[01:01:54] <nullogic> (2nd to last link i sent)
[01:02:14] <nullogic> also you dont need $win == true
[01:02:16] <nullogic> just $win
[01:02:22] <nullogic> as its going to check the state
[01:02:34] <robthew00t> http://www.regular-expressions.info/perl.html this one?
[01:02:58] <robthew00t> nvm
[01:02:59] <robthew00t> this onehttp://www.anaesthetist.com/mnm/perl/Findex.htm#regex.htm
[01:04:14] <nullogic> robthew00t: like this: my $hword = join '', @hiddenWord;
[01:04:46] <robthew00t> yeah :P
[01:04:48] <robthew00t> perldoc
[01:05:49] <robthew00t> hmmm still doesn't actually set $win though lets see her
[01:06:11] <nullogic> robthew00t: i can get it to set $win
[01:06:14] <nullogic> but the loop wont die
[01:06:28] <robthew00t> eyah
[01:06:43] <robthew00t> thats the issue i'm at
[01:07:18] <nullogic> you know
[01:07:29] <robthew00t> yes?
[01:07:33] <nullogic> its doing $tacker++ even if i guess the CORRECT answer
[01:07:44] <robthew00t> true that i need to change that
[01:07:51] <nullogic> ya, i caught it w/ a print
[01:08:03] <robthew00t> i knew it was
[01:08:04] <nullogic> ok $win works
[01:08:08] <robthew00t> i just haven't bother changing it
[01:08:17] <nullogic> what what is wrong w/ the while loop
[01:08:20] <nullogic> looks good if it was c/c++
[01:08:22] <nullogic> but this is perl
[01:08:29] <nullogic> and the laws of logic get tossed in the shitter
[01:08:37] <nullogic> (thats how perl coders code, w/ shit)
[01:08:52] * ajgraves (~ajgraves@sdf-CF922DFD.ph.ph.cox.net) has joined #sdf
[01:08:53] <robthew00t> i like compiled languages so much more
[01:08:53] * KuSHy sets mode: +v ajgraves
[01:09:14] <robthew00t> well
[01:09:21] <robthew00t> i totally fucked that up somehow
[01:09:22] <ajgraves> bzflag?
[01:09:23] <robthew00t> i see what i did
[01:09:32] <robthew00t> i move tracker++ inside my for loop
[01:09:37] <robthew00t> so it looped through the thing 500 times
[01:09:40] <robthew00t> and kicked me
[01:09:47] <nullogic> hehehehe
[01:09:54] <nullogic> ajgraves: playing w/ teh codez now
[01:09:57] <nullogic> ajgraves: who is online?
[01:09:59] <nullogic> (bzflag)
[01:10:07] <robthew00t> NO ONE~~! MUWAHAHHA
[01:10:54] <robthew00t> nope still don't kick me even taking out trackerk :(
[01:11:30] <nullogic> wait...
[01:11:39] <nullogic> you mean loop while $win==false
[01:11:42] <nullogic> not $win==true
[01:11:43] <nullogic> righ?
[01:11:49] <robthew00t> yeah
[01:11:52] <robthew00t> ooooooh
[01:11:55] <robthew00t> FUCKING SHIT
[01:12:22] <robthew00t> nope
[01:12:22] <robthew00t> nvm
[01:12:48] <nullogic> an dyou want
[01:12:53] <nullogic> && NOT ||
[01:12:58] <nullogic> its and and condtion, not an or
[01:13:10] <nullogic> testing
[01:13:10] <nullogic> ::>
[01:13:10] <nullogic> you rule
[01:13:19] <nullogic> now you just need to change the logic a bit
[01:13:21] <nullogic> nice
[01:13:32] <robthew00t> hrm
[01:13:33] <robthew00t> awesome
[01:13:43] <nullogic> robthew00t: while($tracker < 12 && !$win ) {
[01:13:56] <nullogic> no need to use == false when you can just NOT the boolean
[01:14:05] <nullogic> (+ it makes it look sexy)
[01:14:07] <nullogic> roar
[01:14:32] <robthew00t> it does :P and thats what i did
[01:16:52] <nullogic> nice
[01:16:58] <nullogic> ya now you just need to change the logic a bit
[01:17:04] <nullogic> so that it doesnt give you the prompt even if you win
[01:17:22] <nullogic> i'd just move the if($hword =~ m/-/) {
[01:17:27] <nullogic> block, down to the END of the loop
[01:17:29] <nullogic> that should do it
[01:17:32] <robthew00t> did that already
[01:17:33] * nullogic licks robthew00t
[01:17:47] <robthew00t> i'm just trying to see how i want to do the tracker
[01:17:47] <nullogic> ah nice, you're going to be a good code monkey one day
[01:18:08] <nullogic> if($guess eq $chars[$i])
[01:18:15] <nullogic> maybe put an else on that to tracker++?
[01:18:23] * codejone (~webcam@sdf-559C34C6.tampabay.res.rr.com) Quit (Ping timeout#)
[01:18:38] <robthew00t> i'm kinda worn out i wass doing webdev for the last five daysbefore this
[01:18:40] <robthew00t> ALL DAY
[01:18:49] <robthew00t> like not 8hrs or anything like that ALL DAY
[01:19:01] <robthew00t> eh
[01:19:04] <robthew00t> it would have to be an elsif
[01:19:11] <robthew00t> and if i do it inside the for loop
[01:19:17] * nullogic giggles
[01:19:20] <nullogic> good code monkey
[01:19:23] <nullogic> why an elif?
[01:19:27] <nullogic> why not an else?
[01:19:53] <robthew00t> everytime it goes through it would +1 for when its wrong
[01:20:07] <robthew00t> which would be every time its not the guess letter for ever length of the word
[01:20:09] <robthew00t> or something
[01:20:12] <robthew00t> fuck i'm tired
[01:20:29] <robthew00t> and hell if i know the reason i just feel that way
[01:20:29] <nullogic> oops
[01:20:30] <nullogic> sorry
[01:20:36] <robthew00t> i could do something like
[01:20:49] <robthew00t> while $tracker < 12*wordlength
[01:20:55] <nullogic> no
[01:20:58] <nullogic> thats just silly
[01:21:00] <robthew00t> yeah :P
[01:21:02] <nullogic> ok
[01:21:07] <nullogic> when it finds a match
[01:21:13] <nullogic> you can set ANOTHER boolean var
[01:21:16] <robthew00t> i'm working on a $varguess join
[01:21:17] <nullogic> like $foundmatch
[01:21:33] <robthew00t> hrm
[01:21:37] <robthew00t> ?
[01:21:38] <nullogic> and then at the end if(!$foundmatch) { $tracker++ }
[01:22:00] <nullogic> and at the top of the loop do $foundmatch = false;
[01:22:13] <nullogic> and set $foundmatch = true in that if statement i was talking about
[01:22:20] <nullogic> this one: if($guess eq $chars[$i])
[01:22:20] <oniRyan> booleans and flow control and stuff eh?
[01:22:41] <nullogic> yes
[01:22:47] <nullogic> thats how the PROTIP pepole do it
[01:22:50] <robthew00t> ooh
[01:22:51] <nullogic> ^.^
[01:22:55] <robthew00t> thats sexy i like that
[01:23:04] <nullogic> roar it is inded h4wt
[01:24:03] * codejone (~webcam@sdf-559C34C6.tampabay.res.rr.com) has joined #sdf
[01:24:04] * KuSHy sets mode: +v codejone
[01:24:14] <ajgraves> I"m so lazy I wrote a perl script to do my job for me today :(
[01:25:29] <robthew00t> oh noes
[01:25:33] <robthew00t> if i was to do r
[01:25:35] <robthew00t> then r again
[01:25:37] <robthew00t> it doesnt' count it
[01:25:39] <robthew00t> curses
[01:25:50] <robthew00t> i just r 800 times thorugh lol
[01:26:01] <robthew00t> oih no
[01:26:02] <nullogic> robthew00t: say waht?
[01:26:02] <robthew00t> thats a good thing
[01:26:04] <robthew00t> nvm
[01:26:06] <nullogic> are you doing it wrong?
[01:26:07] <robthew00t> i'm being a dumbass
[01:26:08] <nullogic> hahahaha
[01:26:22] <robthew00t> lol no it ensure that the user can't reguess a letter :P
[01:26:26] <robthew00t> its a lil nice
[01:26:30] <nullogic> aye
[01:28:20] <acidapex> 1aye
[01:29:28] <nullogic> 2eyes
[01:36:41] <acidapex> :)
[01:36:49] <acidapex> nite gorgeous
[01:43:17] <nullogic> nini
[01:45:08] <hmir> bai
[01:49:35] <robthew00t> alright i think its about time i go to bed
[01:49:40] <robthew00t> gotta get up in 6 hours for class
[01:49:46] <robthew00t> atleast its C :3
[01:50:06] <hmir> C is awesome!
[01:50:14] <robthew00t> C >Perl
[01:50:22] <hmir> C > my penis!
[01:50:32] <robthew00t> yeah but thats not saying much
[01:50:38] <hmir> My Penis > *
[01:50:49] <ajgraves> perl ownz j00
[02:04:42] * ajgraves (~ajgraves@sdf-CF922DFD.ph.ph.cox.net) Quit (Quit: Leaving#)
[02:38:30] * KuSHy (nullogic@sdf-D9439E41.freeshell.org) Quit (Ping timeout#)
[02:45:23] * hmir (hmir@sdf-6CEBA074.freeshell.org) Quit (Quit: Lost terminal#)
[02:53:40] * vilka (vilka@sdf-771D91C.freeshell.org) Quit (Client exited#)
[03:05:26] * Steve_Dave (~Gordangum@sdf-BFE3882B.hsd1.md.comcast.net) has joined #sdf
[03:21:59] * Steve_Dave (~Gordangum@sdf-BFE3882B.hsd1.md.comcast.net) Quit (Ping timeout#)
[03:47:18] <TIBS01> ........
[03:50:43] * TIBS01 (~tibs01@2E98FD39.F80AE8B8.3191D0C5.IP) Quit (Ping timeout#)
[03:50:43] * shell (~root@2E98FD39.F80AE8B8.3191D0C5.IP) Quit (Ping timeout#)
[03:51:11] * shell1 (~root@2E98FD39.F80AE8B8.3191D0C5.IP) Quit (Ping timeout#)
[03:54:45] * TIBS01 (~tibs01@616EBD92.D5B99B7A.1BB4EC24.IP) has joined #sdf
[03:55:22] * shell1 (~root@616EBD92.D5B99B7A.1BB4EC24.IP) has joined #sdf
[04:06:42] * vn (root@sdf-7876BD5B.freeshell.org) has joined #sdf
[04:49:12] <codejone> perl > all
[04:55:33] * vn_ (vn@sdf-7876BD5B.freeshell.org) has joined #sdf
[04:56:02] * vn_ (vn@sdf-7876BD5B.freeshell.org) Quit (Quit: Jesus Saves! (And Esposito scores on the rebound!)#)
[05:04:23] * vn (root@sdf-7876BD5B.freeshell.org) Quit (Quit: Leaving.#)
[06:00:55] * shell (~root@616EBD92.D5B99B7A.1BB4EC24.IP) has joined #sdf
[06:49:34] <osirix> my dick is a regular expression
[07:12:36] * graffz (~graffz@A2114D5E.469E38B.9BFA2A16.IP) has joined #sdf
[07:36:02] * viince (~viince@sdf-5CBD0CDC.kansas-04rh16rt.mo.dial-access.att.net) has joined #sdf
[08:06:08] * graffz (~graffz@A2114D5E.469E38B.9BFA2A16.IP) Quit (Client exited#)
[08:57:44] <carbine> WHAT
[08:57:49] * v (~zxcvb@EB17E1E5.4157AB1C.C9253BC7.IP) Quit (Ping timeout#)
[08:59:45] <osirix> WHAT?
[09:12:16] * Steve_Dave (~Gordangum@sdf-BFE3882B.hsd1.md.comcast.net) has joined #sdf
[09:30:06] <robthew00t> i just wanted to tell you all
[09:30:27] <robthew00t> that i love you all so much ;__; and you are the closest things i've made to friends evar
[09:30:32] <robthew00t> i'mma go shower now
[09:37:11] <carbine> Rob.
[09:37:22] <carbine> I check _MY_ facebook before I go to work,
[09:37:33] <carbine> Not _YOUR_ facebook while at work.
[09:43:19] <osirix> <3
[09:43:52] <carbine> http://www.newegg.com/Special/ShellShocker.aspx?cm_sp=ShellShocker-_-14-127-483-_-04302010
[09:45:04] <osirix> that's you bro
[09:45:09] <carbine> Lol NO MONEY
[09:45:16] <carbine> Hence the second job I applied for.
[09:47:32] <osirix> i'll buy it for you if you pay me back someday :p
[09:50:31] <robthew00t> fb whore
[09:50:38] <robthew00t> although i can't say much
[09:50:48] <robthew00t> i kinda roll over grab my phone and go online to check when i first wake up
[09:51:01] <osirix> :D
[09:51:35] <osirix> man, they finally fixed my office location on google latitude
[09:53:22] <robthew00t> WHO THE FUCK IS TROLLING MY FORMSPRING
[09:53:32] <robthew00t> i know its one of you guys -_-
[09:53:33] <robthew00t> well
[09:53:39] <robthew00t> not necessarily on at the moment
[09:54:00] <osirix> not i
[09:54:14] <robthew00t> http://www.formspring.me/robthew00t
[09:54:21] <robthew00t> i had like 20 of each of the computer ones
[09:54:28] <osirix> aw c'mon, you're like, asking me to troll it :p
[09:54:35] <robthew00t> is ubuntu good do you still work at best buy are gateways good
[09:54:39] <robthew00t> i knwo i am :P
[09:54:42] <osirix> lol
[09:55:01] <robthew00t> its not hard to figure out if i have an account with something though :P
[09:55:11] <robthew00t> if its something social or stupid its probably robthew00t
[09:55:17] <robthew00t> if its a game its Regnor
[09:55:40] <robthew00t> or some sort of variaton of Fat Snake
[09:55:53] <osirix> hehe, fat snake
[09:56:08] <robthew00t> ie : fatsnake fat_snake Fat_Snake whatever
[09:56:09] <robthew00t> yaeh
[09:56:14] <robthew00t> i'm a big METAL GEAR! fan
[09:56:15] <osirix> i'm usually some variation on osirix or wtfpgh
[09:56:33] <osirix> except WoW, i just pick random shit on there. :p
[09:56:49] <robthew00t> lets see i have a couple of Regnors on different servers
[09:56:53] <robthew00t> and Arbiton
[09:57:03] <osirix> hence i have characters like 'pookins', 'jazzle', and 'cozby'
[09:57:07] <robthew00t> and my latest guy when i was playing i made a bloodelf priest and named him Prayrz
[09:57:22] * bachar (bachar@sdf-771D91C.freeshell.org) has joined #sdf
[09:57:34] <robthew00t> but i hate WoW
[09:57:36] <robthew00t> pretty hard actually
[09:57:45] <robthew00t> most cause thats is litterally all my best friend does
[09:57:46] <robthew00t> like
[09:57:48] <robthew00t> wakes up
[09:57:53] <robthew00t> plays wow
[09:58:00] <robthew00t> goes to bed at 4 inthe morning and does it again
[09:58:00] <robthew00t> like
[09:58:05] <robthew00t> how can you do that!?
[09:58:12] <robthew00t> thats so friggin long of a time and all the time
[09:58:15] <robthew00t> it makes no sence
[09:58:46] * bachar (bachar@sdf-771D91C.freeshell.org) Quit (Quit: bachar#)
[09:58:47] <osirix> heh yeah
[09:58:50] <osirix> i never got that hardcore into it...
[09:59:01] * bachar (bachar@sdf-771D91C.freeshell.org) has joined #sdf
[09:59:08] <osirix> which explains why i've been playing for years and just have a 60-something to show for it :p
[09:59:26] <robthew00t> i pushed
[09:59:28] <robthew00t> really
[09:59:31] <robthew00t> really fucking hard
[09:59:35] <robthew00t> to get a hunter to 50
[09:59:45] <robthew00t> i cant get into it
[10:00:12] * bachar (bachar@sdf-771D91C.freeshell.org) Quit (Quit: bachar#)
[10:03:25] * codejone overworks
[10:03:39] <robthew00t> you sit in a porn studio and smoke weed
[10:03:42] <robthew00t> hows that over working?
[10:04:04] <codejone> I do other stuff
[10:04:17] <osirix> like jack off
[10:06:36] <carbine> ROB
[10:06:41] <robthew00t> CARB
[10:06:41] <codejone> I do coding for some toher companys too
[10:06:51] <carbine> Facebook works like this: If we're friends, your updates show up in my feed.
[10:06:57] <robthew00t> i know :P
[10:07:06] <carbine> Then I'm not stalking you.
[10:07:08] <robthew00t> i'm aware how fb works
[10:07:15] <robthew00t> i never said you were stalking me
[10:07:50] <carbine> And Matt. I don't play any modern games... So I'll just wait for your graphics card to be obsolete and I'll take it from you when you replace it.
[10:13:58] <osirix> http://gawker.com/5527720/indiana-grandmother-is-having-a-new-baby-with-her-grandson
[10:14:22] <robthew00t> here is the heart warming?
[10:14:36] <robthew00t> lol
[10:16:27] <robthew00t> i want to hurl;
[10:17:09] <osirix> word
[10:17:28] <robthew00t> i fucking hate you so much right now carbine
[10:17:29] <robthew00t> so much
[10:18:02] <carbine> Good.
[10:19:57] <osirix> <3
[10:21:07] <carbine> Wtf are you talking about rob?
[10:21:17] <robthew00t> that was disgusting
[10:21:23] <robthew00t> i want to hurl after reading their commentary
[10:21:40] <carbine> Why do you hate me?
[10:21:43] <osirix> lol
[10:21:48] * osirix let carbine take the blame
[10:21:54] <robthew00t> (10:21:40 AM) robthew00t: that was disgusting
[10:21:55] <robthew00t> (10:21:46 AM) robthew00t: i want to hurl after reading their commentary
[10:22:13] <robthew00t> i hatez you for posting the article
[10:22:21] <robthew00t> i'tll only last for like another 2 minutes
[10:22:34] <robthew00t> before i drown it out with good wholesome straight not incest porn
[10:23:20] <carbine> Um.
[10:23:27] <carbine> 10:14 <@osirix> http://gawker.com/5527720/indiana-grandmother-is-having-a-new-baby-with-her-grandson
[10:23:30] <carbine> So...
[10:23:31] <carbine> Yeah.
[10:23:32] <osirix> lol, he will be the child's father and nephew
[10:23:37] <robthew00t> oh
[10:23:39] <robthew00t> well i hate osirix
[10:23:41] <robthew00t> i'm sorry
[10:24:01] <robthew00t> \i thought it was you
[10:24:18] * osirix feels the hate
[10:24:40] * carbine is in an exceptional mood.
[10:25:05] * robthew00t is making a score board for his perl hangman game
[10:25:23] * robthew00t ass naked at his computer desk mind you
[10:26:03] <osirix> exceptionally EXCEPTIONAL
[10:26:37] <robthew00t> i threw on socks just now so my feet wouldn't be cold on thte tiel
[10:28:38] <robthew00t> i kinda just don't want to do this score board part
[10:31:18] <osirix> carbine do you want to go to some random local band show when you come visit pgh
[10:31:37] <carbine> Maybe we can go to a bridal show.
[10:31:44] <carbine> Oh wait. Nevermind. No need.
[10:31:53] <osirix> lol
[10:31:56] <osirix> BRIDAL EXPO!
[10:32:02] <osirix> we can get married :>
[10:32:07] <osirix> you can get on my health insurance
[10:32:10] <osirix> it'll be sweet.
[10:32:30] <carbine> Well, I guess that solves problems for me.
[10:32:59] <osirix> and... we can go to art shows
[10:33:06] <osirix> and wear matching cardigans
[10:33:18] <carbine> We'll probably be getting to your house around 2-4PM
[10:33:41] <osirix> k!
[10:33:45] <osirix> i'll ALREADY be DRUNK
[10:33:55] <osirix> you'll walk in the door and i'll make out with mark.
[10:48:36] * vilka (vilka@sdf-8C2616F0.lonestar.org) has joined #sdf
[10:49:20] <acidapex> good morning
[10:49:37] <robthew00t> morning dood
[10:50:21] <acidapex> guys what post?
[10:50:29] <acidapex> incest?
[10:50:49] <acidapex> i've always wondered if i had a really hot cousin and i was drunk if i'd hit it
[10:50:55] * vilka (vilka@sdf-8C2616F0.lonestar.org) Quit (Client exited#)
[10:51:25] <osirix> i would
[10:51:26] <osirix> shit
[10:51:32] <osirix> cousins are fair game
[10:53:27] <robthew00t> i have a really fucking hawt cousin
[10:53:31] <robthew00t> and if i was drunk i would hit it
[10:53:36] <robthew00t> i'm sure you guys would agree
[10:54:58] <robthew00t> i think she got rid of her fb i dont' have her anymore
[10:55:07] <robthew00t> but heres a small glimpse of her with her dad
[10:55:08] <robthew00t> http://sphotos.ak.fbcdn.net/hphotos-ak-sjc1/hs421.snc3/24361_108885385811202_100000692232666_101666_4077410_n.jpg
[10:57:53] <acidapex> yummy
[10:59:25] * TIBS01 (~tibs01@616EBD92.D5B99B7A.1BB4EC24.IP) Quit (Ping timeout#)
[11:01:51] * TIBS01 (~tibs01@616EBD92.D5B99B7A.1BB4EC24.IP) has joined #sdf
[11:05:36] * viince (~viince@sdf-5CBD0CDC.kansas-04rh16rt.mo.dial-access.att.net) Quit (Ping timeout#)
[11:12:20] <robthew00t> i know right
[11:12:23] <codejone> that grandma sotry is creepy
[11:12:25] <robthew00t> i wish you could see her fully
[11:12:32] <robthew00t> she has huuuuuuuuuuuuuuge tits
[11:12:45] <robthew00t> going through puberty sucked when i was around her
[11:12:54] <codejone> damn rednecks always chasing there cousin
[11:13:01] <robthew00t> :P
[11:13:04] <robthew00t> lol
[11:13:04] <robthew00t> nah
[11:13:28] <codejone> actually Im from the south and I alsmost had sex with a cousin once
[11:13:48] <codejone> she wasent like blood though
[11:14:39] <robthew00t> http://www.microsoft.com/education/competencies/humor.mspx lol whut?
[11:15:39] <codejone> where did you find that?
[11:17:56] * viince (~viince@sdf-5CBD0CDC.kansas-04rh16rt.mo.dial-access.att.net) has joined #sdf
[11:18:18] <robthew00t> the internets
[11:22:06] <robthew00t> wll fuck this
[11:22:10] <robthew00t> i'm done with this perl bullshit
[11:26:52] <osirix> perl sucks nuts.
[11:27:15] <robthew00t> yeah i'm done
[11:27:24] <robthew00t> i had a score.txt file
[11:27:41] <robthew00t> and depending if you won or lost it would write $name won \n or $name lost
[11:27:53] <robthew00t> and i was supposed to make the top 3 appear based on who lost the least
[11:27:55] <robthew00t> bugt fuck it i don't care
[11:28:14] <osirix> use sh for that
[11:28:17] <osirix> perl is retarded
[11:28:21] <osirix> :D
[11:28:22] <robthew00t> its a perl class
[11:29:30] <osirix> turn in your assignment with only "Perl was the wrong choice for this application. I have written it in bash instead."
[11:29:47] <robthew00t> lol nah i have the main game down
[11:29:51] <robthew00t> just not the score board
[11:29:55] <osirix> ah
[11:29:59] <robthew00t> and i'm in ai windows eviroment at the moment
[11:30:20] <robthew00t> i sure as hell don't feel like getting on my shell in kyeho's computer at the moment either
[11:30:59] <osirix> do you have a shell on my box
[11:31:01] * osirix forgets
[11:31:17] <robthew00t> no
[11:31:18] <robthew00t> i don't
[11:31:23] <robthew00t> only kyeho's
[11:31:25] <codejone> lemme see the code
[11:31:26] <osirix> want one? :p
[11:31:28] <codejone> NOW
[11:31:37] <robthew00t> whats your email codejone
[11:31:49] <robthew00t> and i deleted the score code i was working on cause i was just going to hand it in like this
[11:31:55] <robthew00t> but i'll sned it to you first
[11:31:59] <robthew00t> sure i'll take shell
[11:32:09] <robthew00t> juist throw it on my list of shells
[11:32:10] <codejone> upload it to osrix shell
[11:32:23] <robthew00t> starting winscp
[11:32:33] <codejone> hey what happened to my ~bin osrix?
[11:32:45] <codejone> I lost the one on my server
[11:32:50] <codejone> which had a bunch of other cool ones on it too
[11:33:26] <osirix> did you copy if off when i told you to :p
[11:33:30] <osirix> like 4 months ago lol
[11:33:34] <codejone> yeah I did but I lost it
[11:33:37] <osirix> huh
[11:33:45] <osirix> i didn't delete it..
[11:33:46] <codejone> the drive in my server like died
[11:33:49] <robthew00t> so wher do i connect...
[11:34:33] <codejone> well damn
[11:34:49] <codejone> at least I can rewrite it all
[11:35:09] <codejone> it was mostly just porn crawlers
[11:35:33] <codejone> rob connect to pgh.wtfpgh.com
[11:35:35] <osirix> i can still get files off that old server
[11:35:58] <codejone> hey they changed the miller high life can
[11:36:19] <codejone> can you get my ~bin?
[11:36:34] <robthew00t> k its in mine on his codejone
[11:36:37] <robthew00t> in perl
[11:36:39] <robthew00t> well
[11:36:44] <robthew00t> /perl
[11:36:47] <osirix> i'll have to get it this weekend
[11:36:54] <osirix> at work right now :p
[11:37:20] <codejone> yeah its ok, I dont need it, but I thought there was a copy on this sevrer for somereason
[11:38:07] <codejone> oh man theres no cool ascii hangman?
[11:38:16] <codejone> how can you have a hangman game without that
[11:38:17] <robthew00t> yes
[11:38:18] <robthew00t> ascii
[11:38:27] <robthew00t> wait
[11:38:28] <robthew00t> whatever
[11:38:28] <robthew00t> idk
[11:38:29] <robthew00t> idc
[11:38:38] <robthew00t> i jsut hate it :P
[11:38:41] <robthew00t> i hate perl
[11:39:52] <codejone> this isnt a game without graphics its just a program
[11:39:55] <codejone> your dead to me
[11:40:08] <osirix> lol
[11:40:16] <robthew00t> i'm sorry
[11:40:19] <robthew00t> i don't fucking want graphics
[11:40:23] <robthew00t> i just want a working game
[11:40:27] <osirix> i heard it got 28% on metacritic
[11:40:51] <carbine> That was the longest fucking bank visit ever.
[11:41:00] <carbine> Putting all that money in there just so I can spend it all.
[11:41:08] <osirix> EASY COME
[11:41:09] <osirix> EASIER GO
[11:42:03] <codejone> easier come on your face
[11:42:31] <robthew00t> i lol'd
[11:42:32] <robthew00t> http://www.sadanduseless.com/image.php?n=490
[11:44:32] <codejone> you lost the chance to speak robthew00t, you had a legitimate reason to use figlet and you missed it
[11:44:36] * codejone makes patch
[11:44:41] <robthew00t> figlet?
[11:44:54] <robthew00t> whut?
[11:45:26] <codejone> its a program that makes ascii graphics with a qoute, it would be easy to copy and paste
[11:45:39] <codejone> only osirix sever is fail because he dosent have it
[11:45:54] <robthew00t> i'm in windows -_-
[11:46:00] <robthew00t> and i don't feel like making it graphical
[11:46:01] <robthew00t> its due today
[11:46:06] <robthew00t> i just want to hand it in
[11:46:11] <robthew00t> but its suppposed to have a score thing
[11:46:13] <codejone> oh wait Im thinking cowsow
[11:46:16] <codejone> *coway
[11:46:17] <codejone> not figlet
[11:46:24] <carbine> _ _ _
[11:46:25] <carbine> | |__ __ _| | |___
[11:46:25] <carbine> | '_ \ / _` | | / __|
[11:46:25] <carbine> | |_) | (_| | | \__ \
[11:46:25] <carbine> |_.__/ \__,_|_|_|___/
[11:46:27] <carbine> Like that.
[11:46:36] <codejone> wtf cowsay isnt there either
[11:46:48] <carbine> ____ _ _
[11:46:49] <carbine> ___| _ _ ___| | __ _ __ ___ _ _ ___ ___ ___| | __
[11:46:49] <carbine> \___ \| | | |/ __| |/ / | '_ ` _ \| | | | / __/ _ \ / __| |/ /
[11:46:49] <carbine> ___) | |_| | (__| < | | | | | | |_| | | (_| (_) | (__| < _
[11:46:50] <carbine> |____/ \__,_|\___|_|\_\ |_| |_| |_|\__, | \___\___/ \___|_|\_( )
[11:46:51] <carbine> |___/ |/
[11:46:53] <carbine> ____ _
[11:46:56] <carbine> | _ \ ___ | |__
[11:46:58] <carbine> | |_) / _ \| '_ \
[11:47:01] <carbine> | _ < (_) | |_) |
[11:47:03] <carbine> |_| \_\___/|_.__(_)
[11:47:06] <carbine> That one got kinda fucked up.
[11:47:12] <carbine> _ _
[11:47:12] <carbine> | | ___ | |
[11:47:13] <carbine> | |/ _ \| |
[11:47:13] <carbine> | | (_) | |
[11:47:15] <carbine> |_|\___/|_|
[11:47:17] <carbine>
[11:47:30] <carbine> _ _ _ _ _
[11:47:30] <carbine> | | | |___ ___ (_)_ __ ___ ___(_) _ __ ___ | |__
[11:47:30] <carbine> | | | / __|/ _ \ | | '__/ __/ __| | | '__/ _ \| '_ \
[11:47:30] <carbine> | |_| \__ \ __/ | | | \__ \__ \ |_ | | | (_) | |_) |
[11:47:30] <carbine> \___/|___/\___| |_|_| |___/___/_( ) |_| \___/|_.__/
[11:47:32] <carbine> |/
[11:47:33] <robthew00t> i can barely fucking read that
[11:47:45] <codejone> yeah you need a monospaced font
[11:47:49] <carbine> ____ _ _ __ ___ _
[11:47:50] <carbine> | _ \ ___ | |__ __ _| |_ / _|__ \ |
[11:47:50] <carbine> | |_) / _ \| '_ \ \ \ /\ / / __| |_ / / |
[11:47:50] <carbine> | _ < (_) | |_) | \ V V /| |_| _||_||_|
[11:47:50] <carbine> |_| \_\___/|_.__( ) \_/\_/ \__|_| (_)(_)
[11:47:51] <codejone> osrix wtf
[11:47:51] <carbine> |/
[11:47:54] <robthew00t> ?
[11:47:57] <robthew00t> fuck this shit
[11:48:00] <codejone> osirix !!!
[11:48:10] <robthew00t> thats way to fucking painful to read
[11:48:12] <carbine> Monospace font? All monospace for me. irssi in putty
[11:48:21] <codejone> carbine install cowsay on wtfpgh
[11:48:24] <robthew00t> i'm in pidgin
[11:48:27] <codejone> when is this due rob?
[11:48:33] <robthew00t> today
[11:48:34] <carbine> Real men use irssi, rob.
[11:48:34] <robthew00t> well
[11:48:37] <codejone> what time?
[11:48:40] <robthew00t> 11:55pm
[11:48:52] <robthew00t> Due April 30 by 11:55 PM
[11:49:00] <robthew00t> its 11:49am
[11:49:03] <carbine> You're fucked.
[11:49:08] <robthew00t> and they are usually due in in the morning
[11:49:20] <robthew00t> so i prt screen and saved a pic so i could be like it said 11:55 :P
[11:49:22] <robthew00t> i'm not fucked
[11:49:24] <robthew00t> the game is done
[11:49:34] <robthew00t> i just need to get teh score board to work
[11:49:37] <codejone> damn I would have had it done if cowsay was installed
[11:49:38] <robthew00t> but i don't give a fuck about it
[11:50:02] <robthew00t> i don't give a fuck about graphics though i just want it done :(
[11:50:07] <robthew00t> with the score board
[11:50:20] <robthew00t> and i've been programming for 6 days straight non-stop'
[11:50:22] <robthew00t> my brain is fried
[11:50:27] <carbine> I just installed cowsay on OOJ.
[11:50:35] <carbine> ______
[11:50:35] <carbine> < See? >
[11:50:36] <carbine> ------
[11:50:36] <carbine> \ ^__^
[11:50:36] <carbine> \ (oo)\_______
[11:50:37] <carbine> (__)\ )\/\
[11:50:40] <carbine> ||----w |
[11:50:42] <carbine> || ||
[11:51:00] <codejone> u fucker
[11:51:19] <carbine> So who is able to see what my figlet is saying
[11:51:20] <codejone> whats wrong with this score board rob?
[11:51:21] <robthew00t> i was thinking something liek for(i = 0; i < scalar(userarray); i++) then like $name = $userarray[$i] =~ /\w./
[11:51:27] <carbine> ____ _ _ _ ___
[11:51:27] <carbine> | _ \ ___ __ _ __| | __ _| |__ | | __|__ \
[11:51:27] <carbine> | |_) / _ \/ _` |/ _` |/ _` | '_ \| |/ _ \/ /
[11:51:27] <carbine> | _ < __/ (_| | (_| | (_| | |_) | | __/_|
[11:51:27] <carbine> |_| \_\___|\__,_|\__,_|\__,_|_.__/|_|\___(_)
[11:51:29] <carbine>
[11:51:34] <robthew00t> its supposed to display the top 3 players
[11:51:38] <robthew00t> not everyone
[11:51:48] <carbine> You use pidgin. STFU. :P
[11:51:55] <codejone> sort the array the file is in and pop the top 3 off
[11:51:57] <robthew00t> I LIKE PIDGIN
[11:52:03] <codejone> you read the file into an array of lines
[11:52:06] <carbine> irssi is the only IRC client worth using.
[11:52:06] <carbine> irssi is the only IRC client worth using.
[11:52:07] <carbine> irssi is the only IRC client worth using.
[11:52:16] <carbine> ___ ____ ____ ____ ___
[11:52:16] <carbine> |_ _| _ \/ ___/ ___|_ _|
[11:52:16] <carbine> | || |_) \___ \___ \| |
[11:52:16] <carbine> | || _ < ___) |__) | |
[11:52:16] <carbine> |___|_| \_\____/____/___|
[11:52:17] <robthew00t> fuck yeah i did
[11:52:18] <carbine>
[11:52:46] <robthew00t> hrm is irssi free for life arper on sdf
[11:52:46] <codejone> what score makes them the top? theres only win ad lose
[11:52:53] <robthew00t> exactly
[11:52:53] <codejone> yo need to log how many tries too
[11:52:56] <codejone> to sory them
[11:53:00] <robthew00t> so i would have to use regex to see the name
[11:53:04] <robthew00t> then how many times they won
[11:53:05] <robthew00t> or lose
[11:53:13] <robthew00t> and display who has the least lose
[11:53:15] <codejone> yeah, whats wrong with that?
[11:53:35] * codejone will make an example
[11:53:39] <robthew00t> i'm too lazy to make the regex code that and i don't know how i want to do it
[11:53:56] <robthew00t> alright here goes
[11:54:04] <carbine> figlet: monocode.flf: Unable to open font file
[11:54:07] <carbine> Hmm.
[11:54:27] <carbine> That didn't work.
[11:54:28] <robthew00t> could i do
[11:54:38] <carbine> _ , __ _
[11:54:38] <carbine> | |/|/ \ () () | |
[11:54:38] <carbine> | | |___/ /\ /\ | |
[11:54:38] <carbine> _ |/ | \ / \ / \_ |/
[11:54:38] <carbine> \_/\/ | \_//(__//(__/\_/\/
[11:54:40] <carbine>
[11:54:43] <carbine>
[11:54:45] <carbine> LOL
[11:54:51] <carbine> Baller.
[11:55:01] <carbine> ___ ____ ____ ____ ___
[11:55:01] <carbine> |_ _| _ \/ ___/ ___|_ _|
[11:55:01] <carbine> | || |_) \___ \___ \| |
[11:55:01] <carbine> | || _ < ___) |__) | |
[11:55:01] <carbine> |___|_| \_\____/____/___|
[11:55:03] <carbine>
[11:55:16] <robthew00t> $name = $score[$i] =~ /\W./; in a for loop :/
[11:55:36] <carbine> __ _
[11:55:37] <carbine> _____ / _| __ _ __ _ __ _ ___ | |_
[11:55:37] <carbine> |_____| | |_ / _` |/ _` |/ _` |/ _ \| __|
[11:55:37] <carbine> |_____| | _| (_| | (_| | (_| | (_) | |_
[11:55:37] <carbine> |_| \__,_|\__, |\__, |\___/ \__|
[11:55:39] <carbine> |___/ |___/
[11:55:45] <robthew00t> copy and paste time
[11:55:47] <carbine> :D
[11:55:51] <robthew00t> homo
[11:56:04] <carbine> _
[11:56:04] <carbine> | |__ ___ _ __ ___ ___
[11:56:04] <carbine> | '_ \ / _ \| '_ ` _ \ / _ \
[11:56:04] <carbine> | | | | (_) | | | | | | (_) |
[11:56:04] <carbine> |_| |_|\___/|_| |_| |_|\___/
[11:56:06] <carbine>
[11:56:11] <carbine> New favorite toy.
[11:56:26] <carbine> ___ ____
[11:56:26] <carbine> ( _ ) _____ _____ _____ _____ _____ _____| _ \
[11:56:26] <carbine> / _ \|_____|_____|_____|_____|_____|_____| | | |
[11:56:26] <carbine> | (_) |_____|_____|_____|_____|_____|_____| |_| |
[11:56:26] <carbine> \___/ |____/
[11:56:28] <carbine>
[11:56:30] <carbine> LOL
[11:56:34] <carbine> It's a cock
[11:56:37] <robthew00t> yeah that just gives me a bunch of 1's
[11:56:45] <carbine> ___ ____ /\//\//\//\//\//\/|
[11:56:45] <carbine> ( _ ) _____ _____ _____ _____| _ \/\//\//\//\//\//\/
[11:56:45] <carbine> / _ \|_____|_____|_____|_____| | | |
[11:56:45] <carbine> | (_) |_____|_____|_____|_____| |_| |
[11:56:45] <carbine> \___/ |____/
[11:56:47] <carbine>
[11:56:50] <carbine> Wtf
[11:56:52] <carbine> NOT WORK
[11:57:02] <carbine> ____ ____
[11:57:02] <carbine> | __ ) _____ _____ _____ _____| _ \
[11:57:02] <carbine> | _ \|_____|_____|_____|_____| | | |
[11:57:02] <carbine> | |_) |_____|_____|_____|_____| |_| |
[11:57:02] <carbine> |____/ |____/
[11:57:04] <carbine>
[11:58:08] <robthew00t> ___
[11:58:09] <robthew00t> / \
[11:58:09] <robthew00t> | |
[11:58:09] <robthew00t> \ /
[11:58:09] <robthew00t> / \
[11:58:09] <robthew00t> | |
[11:58:09] <robthew00t> \
[11:58:10] <robthew00t> fuck
[11:58:11] <robthew00t> whatever
[11:58:13] <robthew00t> idc
[11:58:14] <carbine> Wtf is that?
[11:58:18] <robthew00t> idk
[11:58:43] <carbine> _ _ _
[11:58:44] <carbine> (_) __| | | __
[11:58:45] <carbine> | |/ _` | |/ /
[11:58:45] <carbine> | | (_| | <
[11:58:45] <carbine> |_|\__,_|_|\_\
[11:58:46] <carbine>
[11:58:52] <carbine> /bin/sh: 3: No such file or directory
[11:58:56] <carbine> _______
[11:58:56] <carbine> / /___ /
[11:58:57] <carbine> / / |_ \
[11:58:57] <carbine> \ \ ___) |
[11:58:57] <carbine> \_\____/
[11:58:58] <carbine>
[11:59:00] <robthew00t> cock
[11:59:14] * viince (~viince@sdf-5CBD0CDC.kansas-04rh16rt.mo.dial-access.att.net) Quit (Ping timeout#)
[11:59:16] <carbine> _ _ _ _ _
[11:59:16] <carbine> _____( ) |__ __ _| | |___( )
[11:59:16] <carbine> |_____|/| '_ \ / _` | | / __|/
[11:59:16] <carbine> |_____| | |_) | (_| | | \__ \
[11:59:16] <carbine> |_.__/ \__,_|_|_|___/
[11:59:18] <carbine>
[11:59:21] <carbine> SHIT
[11:59:23] <carbine> SHIT
[12:01:28] <carbine> /bin/sh: -c: line 0: unexpected EOF while looking for matching `''
[12:01:28] <carbine> /bin/sh: -c: line 1: syntax error: unexpected end of file
[12:01:31] <carbine> WTF
[12:01:38] <carbine> ____________
[12:01:39] <carbine> < I'm a cow. >
[12:01:39] <carbine> ------------
[12:01:39] <carbine> \ ^__^
[12:01:39] <carbine> \ (oo)\_______
[12:01:41] <carbine> (__)\ )\/\
[12:01:43] <carbine> ||----w |
[12:01:46] <carbine> || ||
[12:03:33] <robthew00t> this is fucking retarded
[12:03:37] <codejone> hey Im not adding any user filtering in this so no being all "lol this wil brake if this happens"
[12:04:47] <robthew00t> regex sucks
[12:04:51] <robthew00t> perl regex anyways
[12:05:37] <robthew00t> WTF!?
[12:05:47] <robthew00t> for($i = 0; $i < scalar(@score); $i++)
[12:05:47] <robthew00t> {
[12:05:47] <robthew00t> $name = $score[$i];
[12:05:47] <robthew00t> $name =~ /(won)/;
[12:05:47] <robthew00t> print $name;
[12:05:47] <robthew00t> }
[12:05:50] <robthew00t> STILL RETURNS EVERYTHING
[12:05:56] <robthew00t> even names that lost
[12:06:01] <robthew00t> /won/ does the same thing
[12:06:02] <robthew00t> fuck me
[12:06:54] * TIBS01 (~tibs01@616EBD92.D5B99B7A.1BB4EC24.IP) Quit (Ping timeout#)
[12:08:39] <osirix> mmmmmmmmmmmmmmmmmmmmmmm
[12:11:32] <robthew00t> fuck it i don't care i'm just going to hand it in like this
[12:11:52] <codejone> I have to reboot but I used a switch statment
[12:12:00] <codejone> and /won/
[12:12:04] <codejone> look in my perl dir
[12:12:07] <codejone> brb
[12:12:23] * codejone (~webcam@sdf-559C34C6.tampabay.res.rr.com) Quit (Broken pipe#)
[12:12:39] <carbine> Lol I'm gonnahave like NO time if I get this second job.
[12:12:51] <osirix> :D
[12:13:02] <robthew00t> why?
[12:13:07] <osirix> you'd better not cancel next weekend. asshole.
[12:13:12] <osirix> :)
[12:14:25] <robthew00t> mmmm his code doesn't work
[12:14:47] <robthew00t> because i'm almost
[12:14:49] <robthew00t> certain
[12:14:55] <robthew00t> perl doesn't have case statements
[12:14:56] <robthew00t> lol
[12:16:00] <carbine> Well, I'll wake up at 7:30, work 9-5, drive to next job, work 6-close, probably get off around 1, go home, sleep, wake up at 7:30 and repeat.
[12:16:27] <carbine> Woo.
[12:16:45] <osirix> GOOD LIFE!
[12:16:48] <carbine> :)
[12:17:15] <robthew00t> you'll be dead
[12:17:49] <carbine> Lol I'll be bringing in like $1400 every 2 weeks.
[12:17:58] <carbine> $2970/mo
[12:18:04] <robthew00t> thats like
[12:18:09] <robthew00t> 3*12
[12:18:18] <carbine> Wait
[12:18:20] * codejone (~webcam@sdf-559C34C6.tampabay.res.rr.com) has joined #sdf
[12:18:22] <carbine> Windows calculator is retarded
[12:18:23] <robthew00t> almost 36000 a year
[12:18:27] <carbine> Yeah.
[12:18:35] <codejone> rob did you see?
[12:18:48] <osirix> SWEET GOOD SALARY
[12:18:52] <carbine> Wait, I don't know what minimum wage is.
[12:19:03] <acidapex> hi cow
[12:19:07] <carbine> They asked for what I wanted to make on the application. I put $7.50/h
[12:19:08] <carbine> Lol
[12:19:15] <osirix> lol
[12:19:26] <osirix> dude, work at a hotel
[12:19:30] <carbine> I think that's below minimum wage
[12:19:44] <osirix> i was making as much working at a hotel as you are at your job now
[12:19:51] <osirix> and didnt have to do jack shit
[12:19:58] <robthew00t> you clean
[12:19:59] <robthew00t> and thats it
[12:20:06] <osirix> i did everything
[12:20:16] <osirix> well, whenever they wanted me to
[12:20:27] <osirix> desk, housekeeping, maintenance
[12:20:35] <osirix> *shrug*
[12:20:39] <carbine> The Ohio Minimum Wage is $7.25 per hour for Those employees whose employers gross $267,000 or less
[12:20:42] <carbine> Well.
[12:20:52] <carbine> I absolutely don't make over $267k/year
[12:21:00] <carbine> That's for damn sure.
[12:21:11] * carbine is gonna have to quit WoW. :D
[12:21:20] * carbine is gonna have to quit social life.
[12:21:32] <carbine> This is gonna kick ass.
[12:21:42] <osirix> i'll come visit you :3
[12:21:48] <carbine> Heh
[12:21:52] <osirix> and buy alcohol
[12:21:53] <carbine> I also put that I could work weekends.
[12:22:14] <carbine> I basically put a wildcard for weekend work hours.
[12:24:00] <carbine> _____ _ _ _ __
[12:24:01] <carbine> | ___| _ ___| | __ _ __ ___ _ _ | (_)/ _| ___
[12:24:02] <carbine> | |_ | | | |/ __| |/ / | '_ ` _ \| | | | | | | |_ / _ \
[12:24:02] <carbine> | _|| |_| | (__| < | | | | | | |_| | | | | _| __/
[12:24:02] <carbine> |_| \__,_|\___|_|\_\ |_| |_| |_|\__, | |_|_|_| \___|
[12:24:03] <carbine> |___/
[12:25:08] <robthew00t> fml
[12:25:19] <robthew00t> i want to play gta4 >:( but my graphics makie itpixelly
[12:25:25] <robthew00t> fucking artifccts
[12:28:04] <jihad> I make $6/hr at my current job plus tips
[12:28:15] <jihad> works out to about $15/hr on average
[12:28:40] <carbine> What do you do?
[12:28:49] <jihad> pizza delivery
[12:29:03] <carbine> See.
[12:29:06] <carbine> _____ _ _ _ __
[12:29:07] <carbine> | ___| _ ___| | __ _ __ ___ _ _ | (_)/ _| ___
[12:29:07] <carbine> | |_ | | | |/ __| |/ / | '_ ` _ \| | | | | | | |_ / _ \
[12:29:07] <carbine> | _|| |_| | (__| < | | | | | | |_| | | | | _| __/
[12:29:08] <carbine> |_| \__,_|\___|_|\_\ |_| |_| |_|\__, | |_|_|_| \___|
[12:29:10] <carbine> |___/
[12:29:14] <carbine> Because I make less as a "Web Developer"
[12:29:28] <jihad> i keep my internet jobs and real life jobs seperate
[12:29:33] <jihad> easier and turns out more $
[12:29:59] <osirix> carbine: get new web dev job.
[12:30:39] <carbine> Brb
[12:31:15] <codejone> robthew00t yeah I had to get a new machine for that
[12:32:53] <robthew00t> yeah
[12:32:54] <robthew00t> it doesn't work
[12:33:00] <robthew00t> because perl doesn't support case
[12:33:33] <robthew00t> i need a new gfx card fuck this shit
[12:33:37] <robthew00t> this is retarded
[12:37:14] * Steve_Dave (~Gordangum@sdf-BFE3882B.hsd1.md.comcast.net) Quit (Ping timeout#)
[12:39:17] <codejone> rob the w00t do you need to log the losers?
[12:39:21] <codejone> in this?
[12:42:22] * viince (~viince@sdf-5CBD0CDC.kansas-04rh16rt.mo.dial-access.att.net) has joined #sdf
[12:43:49] <codejone> robthew00t
[12:43:56] * viince (~viince@sdf-5CBD0CDC.kansas-04rh16rt.mo.dial-access.att.net) Quit (Ping timeout#)
[12:44:40] * Steve_Dave (~Gordangum@sdf-6FB61AAF.hsd1.md.comcast.net) has joined #sdf
[12:46:25] * viince (~viince@sdf-5CBD0CDC.kansas-04rh16rt.mo.dial-access.att.net) has joined #sdf
[12:47:43] <carbine> Back.
[12:48:27] <Ging> just went to a sushi bar
[12:58:22] <robthew00t> i'mm a down the reshrm?
[12:58:30] <robthew00t> hrm what?
[12:59:44] <carbine> I just realized that a girl named Jenna posted on my wall that she hates me.
[12:59:54] <robthew00t> lol
[13:00:00] <carbine> I never notice this shit.
[13:00:03] <carbine> Oh well.
[13:00:27] <carbine> She's either joking or being serious. I don't care either way.
[13:01:09] <carbine> I'm not gonna have a social life anyways, so whats it matter if I have friends or not.
[13:01:25] <carbine> Friends are for when you're retired.
[13:02:49] <osirix> :D
[13:03:01] <osirix> friends are for BIG DICK
[13:04:19] <carbine> Besides, as long as I make time to go to Pittsburgh who cares?
[13:04:27] <osirix> :D
[13:04:35] <osirix> and as long as you make time for me to visit <3
[13:04:46] <osirix> i'll pay you to be my personal bitch.
[13:05:04] * osirix considers the feasibility of paying someone $10/hr full-time
[13:07:59] <xexyz> thats not that much.. i pay helf's little sister that much
[13:10:29] <osirix> hehe
[13:12:55] <codejone> robthew00t robthew00t robthew00t robthew00t
[13:14:04] * kyo313 (~kyo@sdf-FCDCEEBA.zone5.bethere.co.uk) Quit (Ping timeout#)
[13:18:06] <osirix> god what the fuck
[13:18:12] <osirix> who the fuck schedules a meeting for 4pm on a friday afternoon
[13:18:17] * nocipher (nocipher@sdf-771D91C.freeshell.org) has joined #sdf
[13:19:03] * nocipher (nocipher@sdf-771D91C.freeshell.org) Quit (Quit: nocipher#)
[13:19:16] * nocipher (nocipher@sdf-771D91C.freeshell.org) has joined #sdf
[13:21:00] * nocipher (nocipher@sdf-771D91C.freeshell.org) Quit (Quit: nocipher#)
[13:21:55] <xexyz> a giant cock
[13:21:57] <xexyz> thats who
[13:22:12] <osirix> i know, right?
[13:22:18] * nocipher (nocipher@sdf-771D91C.freeshell.org) has joined #sdf
[13:22:20] <osirix> its these assholes from purdue pharmaceuticals
[13:23:22] <nocipher> Is emacs available only to validated users?
[13:24:27] <osirix> not sure, i know psh is pretty useless though. :p
[13:25:38] <nocipher> I'm looking for a shell that will basically let me code pet projects remotely... and while these seems to have most things I need, they seem to place so many restrictions that I don't think I could actually be productive here.
[13:25:59] <nocipher> s/while these/while this/
[13:26:18] <robthew00t> i don't think so
[13:26:25] <robthew00t> and i hate emacs
[13:26:27] <robthew00t> i use vim
[13:26:33] <robthew00t> and i hate sdf editors
[13:27:07] <nocipher> I love emacs... but that's religion. So is my assessment not far off the mark then?
[13:27:31] <osirix> after validation you might be in business
[13:27:39] <osirix> but before that, yeah.. pretty useless. :p
[13:27:54] <nocipher> Is there anyone here who has validated who can verify that?
[13:27:54] * TIBS01 (~tibs01@616EBD92.D5B99B7A.1BB4EC24.IP) has joined #sdf
[13:28:03] <osirix> i have the ARPA level which is $36
[13:28:18] <osirix> and emacs/vi/etc is definitely available
[13:28:26] <osirix> according to the docs, emacs is available after validation
[13:28:29] <osirix> (you can get out of psh then)
[13:28:34] <osirix> http://sdf.lonestar.org/?join
[13:30:10] <osirix> if you're doing devel stuff, you might need that arpa level
[13:32:19] * Steve_Dave (~Gordangum@sdf-6FB61AAF.hsd1.md.comcast.net) Quit (Ping timeout#)
[13:32:33] <robthew00t> i can use it
[13:32:44] <robthew00t> i'm the one time 36 arper
[13:34:54] <osirix> same
[13:35:04] <osirix> since '03 %)
[13:35:04] * graffz (~graffz@A2114D5E.469E38B.9BFA2A16.IP) has joined #sdf
[13:38:43] * robthew00t is packing up his 40" bravia tv to take home :(
[13:43:48] <carbine> Sweet.
[13:44:03] <osirix> :D
[13:44:08] <osirix> to take to MY home
[13:44:12] <carbine> So... For exceeding sales goals for the past 2 months we all got to pick out clothes from catalogs at work and have them embroidered with the Cole logo.
[13:44:21] <osirix> lol
[13:44:23] <carbine> My manager Sean comes out and says, "I wanna get shoes instead."
[13:44:35] <carbine> And I was like, "There's a supplier that has stuff I'd rather get."
[13:44:41] <osirix> "LETZ GET SOME SHOES!"
[13:44:46] <carbine> So now I'm getting a hoodie I saw in the clothes...
[13:44:58] <carbine> And a new Buck folding knife and a Streamlight Stylus Pro
[13:45:11] <carbine> Knife + Flashlight + Hoodie = win
[13:45:21] <osirix> dude that's like $30 worth of this right there, score
[13:45:33] * nocipher (nocipher@sdf-771D91C.freeshell.org) Quit (Ping timeout#)
[13:45:43] <carbine> The hoodie at our cost is like $20, the flashlight is $22 and the knife is $17
[13:45:49] <osirix> oh shit
[13:45:57] <carbine> Not bad for free.
[13:46:11] <carbine> Especially since I'm not in sales and didn't cause any of the goal to be met.
[13:47:00] <osirix> i'm getting a $300 bonus for the launch of a website that i had absolutely nothing to do with.
[13:47:12] <carbine> Well fuck you.
[13:47:13] <carbine> :(
[13:47:16] <osirix> :D
[13:47:28] * osirix gets carbine's weekly paycheck as a bonus
[13:47:49] * carbine will stab you with his free knife and search your house with his new flashlight, using his new hoodie to conceal his identity.
[13:47:51] <osirix> did you apply for any of those web dev jobs yet? :p
[13:48:27] <carbine> No
[13:48:56] <carbine> Maybe I can use this new knife of mine to end my life.
[13:48:57] <carbine> :P
[13:49:02] <osirix> http://akroncanton.craigslist.org/web/1716371904.html
[13:49:03] <carbine> It's got a pocket clip.
[13:49:10] <osirix> $15-17/hr if you meet some credentials.
[13:49:25] <carbine> Experience with test driven development and MVC design patterns.
[13:49:28] <carbine> Wtf is that?
[13:49:37] <carbine> - Schematic development (UML, ERD)
[13:49:38] <carbine> ??
[13:49:44] <carbine> - Bachelors degree in Computer Science or related area of concentration
[13:50:13] <osirix> UML is easy
[13:50:23] <robthew00t> whats UML?
[13:50:24] <osirix> like process description
[13:50:43] <carbine> Also, what company is this?
[13:50:45] <robthew00t> so something like lexical tokens or whatgever
[13:50:47] <osirix> describing how pieces of software work
[13:51:06] <carbine> Also, what company is this?
[13:51:07] <carbine> Also, what company is this?
[13:51:07] <carbine> Also, what company is this?
[13:51:08] <carbine> Also, what company is this?
[13:51:12] <carbine> No one knows.
[13:51:14] <osirix> no idea, you should email them. :P
[13:51:18] <carbine> Apply for mystery company!
[13:51:25] <carbine> Send Resume To: SubmitApplication@RadonMail.com
[13:51:30] <carbine> RadonMail.com..?
[13:51:48] <carbine> http://www.radon-air-quality.com/RadonMonth.html
[13:51:53] <carbine> That's where it redirects to.
[13:51:55] <carbine> LEGIT
[13:52:13] <carbine> Air Quality Control Agency
[13:52:18] <robthew00t> alright i have to go to math and see how bad i did on my exam :(
[13:52:19] <robthew00t> later guys
[13:52:23] <osirix> delton tools?
[13:52:32] <osirix> is that anything?
[13:52:54] <carbine> And they're asking ALL over the place
[13:52:57] * viince (~viince@sdf-5CBD0CDC.kansas-04rh16rt.mo.dial-access.att.net) Quit (Quit: #)
[13:53:02] <carbine> Boston, Kentucky...
[13:53:06] <carbine> http://www.google.com/search?q=1-800-207-5685+&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a
[13:53:25] <osirix> http://akroncanton.craigslist.org/web/1685818848.html
[13:54:07] <carbine> This is a part-time, hourly position with the potential for full-time for the right candidate. Hourly rate is based on experience and skill level.
[13:54:14] <carbine> I can't work part time.
[13:54:20] <osirix> yeah, like i said before though
[13:54:29] <osirix> if they offer you $20 an hour...
[13:54:30] <osirix> part time..
[13:54:40] <osirix> and you're making $12/hour full-time right now
[13:54:43] <carbine> Part time doesn't guarantee I'll be working enough hours for it to even out
[13:54:55] <osirix> you'd only have to work 12/20 * 40 hours to make the same
[13:54:59] <osirix> which is like... 24
[13:55:19] * robthew00t (~Rob@sdf-C8FA0CEF.hsd1.vt.comcast.net) Quit (Quit: Leaving.#)
[13:55:28] <carbine> I can't risk it.
[13:55:44] <carbine> If I leave where I'm at is has to be stable.
[13:55:48] <osirix> http://akroncanton.craigslist.org/web/1710066204.html
[13:56:09] <carbine> Applicant must also have reliable transportation, a professional image, and excellent customer service skills.
[13:56:16] <carbine> I drive an Escort.
[13:56:20] <osirix> it's reliable, no?
[13:56:37] <carbine> # This is a part-time job.
[13:56:45] <carbine> No wages on their either.
[13:56:47] <osirix> lame
[13:56:47] <osirix> :p
[13:57:19] <carbine> All the web dev jobs in this area are either flakey, part-time and unstable, or a scam.
[13:57:38] <carbine> The last place I put a resume in didn't hire me, then went under 2 months later.
[13:57:51] <carbine> If I would have left my job I'd be broke and fucked.
[13:58:46] <osirix> http://akroncanton.craigslist.org/tch/1704576407.html
[14:00:08] <carbine> High level of technical knowledge with several operating systems, programs, and equipment (MS Windows Server and Workstation Platforms, MS IIS, MS Exchange, Active Directory, DFS, MS SQL, MS Office, etc.).
[14:00:28] <carbine> Never worked with Active Directory or Exchange
[14:00:29] <osirix> dude.. it's windows..
[14:00:33] <osirix> it's easy as fuck.
[14:00:43] <osirix> i can show you that in like, a day.
[14:02:18] <osirix> do you do any reports at your job right now, like with crystal
[14:02:23] <osirix> http://akroncanton.craigslist.org/tch/1677142916.html
[14:02:24] <osirix> if so
[14:02:42] <osirix> that's pretty easy, it sounds.. just taking data from some sql backend and making it xml
[14:04:59] <carbine> Nope.
[14:05:52] <osirix> http://akroncanton.craigslist.org/sof/1704567865.html
[14:05:54] <osirix> that job is EASY
[14:05:56] <osirix> you should do that one
[14:05:58] <osirix> QA is cake
[14:06:02] <osirix> pays decent, too
[14:07:34] <carbine> .Bachelor.s degree in computer science or related field
[14:07:44] <osirix> that doesn't matter.
[14:07:49] <osirix> you have an associates, right?
[14:08:28] <osirix> and a few years of working in "IT"
[14:09:09] * redleg (root@sdf-8C2616F0.lonestar.org) Quit (Ping timeout#)
[14:09:17] <osirix> i'm just saying, it's not going to get better if you don't even try.
[14:10:16] <carbine> True.
[14:10:22] <carbine> I'll take a look around
[14:10:30] <carbine> Brb, gotta finish a website.
[14:11:08] * wagner (wagner@sdf-771D91C.freeshell.org) has joined #sdf
[14:13:15] * redleg (root@sdf-8C2616F0.lonestar.org) has joined #sdf
[14:13:31] * wagner (wagner@sdf-771D91C.freeshell.org) Quit (Quit: wagner#)
[14:14:15] * wagner (wagner@sdf-771D91C.freeshell.org) has joined #sdf
[14:18:09] * wagner (wagner@sdf-771D91C.freeshell.org) Quit (Quit: wagner#)
[14:19:16] * wagner (wagner@sdf-771D91C.freeshell.org) has joined #sdf
[14:20:01] * Steve_Dave (~Gordangum@sdf-6FB61AAF.hsd1.md.comcast.net) has joined #sdf
[14:23:15] * Steve_Dave (~Gordangum@sdf-6FB61AAF.hsd1.md.comcast.net) Quit (Ping timeout#)
[14:24:26] * Steve_Dave (~Gordangum@sdf-6FB61AAF.hsd1.md.comcast.net) has joined #sdf
[14:27:42] * Steve_Dave (~Gordangum@sdf-6FB61AAF.hsd1.md.comcast.net) Quit (Ping timeout#)
[14:29:17] * robthew00t (~Rob@sdf-C8FA0CEF.hsd1.vt.comcast.net) has joined #sdf
[14:30:01] <robthew00t> i totally donh't need to take my math final <3 :D
[14:35:28] * Steve_Dave (~Gordangum@sdf-BFE3882B.hsd1.md.comcast.net) has joined #sdf
[14:46:25] * robthew00t (~Rob@sdf-C8FA0CEF.hsd1.vt.comcast.net) Quit (Broken pipe#)
[14:49:08] <codejone> what is the php var with err messages in it?
[14:55:42] <codejone> carbine
[14:59:31] <osirix> i just dump everything with phpinfo(32) when i forget something like that
[14:59:41] <osirix> TRY EET
[14:59:55] <osirix> or wait for carbine to come back %)
[15:00:28] <carbine> Huh?
[15:00:37] <carbine> My dad just got his call about his conceal carry license.
[15:00:42] <carbine> I might be getting a call about mine soon.
[15:03:42] <osirix> nice.
[15:04:21] <carbine> Why wait for me?
[15:04:33] <carbine> Oh.
[15:04:34] <carbine> php.ini?
[15:04:55] <osirix> because i don't know the variable in php with errors in it
[15:04:58] <osirix> i just know how to find out :p
[15:05:23] <carbine> Mine is this: error_reporting = E_ALL & ~E_NOTICE
[15:05:53] <carbine> All you have to do is search for "error" in php.ini lol
[15:06:30] <carbine> Is that what you needed?
[15:09:56] * Steve_Dave (~Gordangum@sdf-BFE3882B.hsd1.md.comcast.net) Quit (Ping timeout#)
[15:13:50] <osirix> :D
[15:14:25] <carbine> Is that what you needed?
[15:14:26] <carbine> Is that what you needed?
[15:14:26] <carbine> Is that what you needed?
[15:14:26] <carbine> Is that what you needed?
[15:14:26] <carbine> Is that what you needed?
[15:14:28] <carbine> Is that what you needed?
[15:14:31] <carbine> Is that what you needed?
[15:14:37] <carbine> ___ _ _ _ _ _
[15:14:37] <carbine> |_ _|___ | |_| |__ __ _| |_ __ _| |__ __ _| |_ _ _ ___ _ _
[15:14:37] <carbine> | |/ __| | __| '_ \ / _` | __| \ \ /\ / / '_ \ / _` | __| | | | |/ _ \| | | |
[15:14:37] <carbine> | |\__ \ | |_| | | | (_| | |_ \ V V /| | | | (_| | |_ | |_| | (_) | |_| |
[15:14:39] <carbine> |___|___/ \__|_| |_|\__,_|\__| \_/\_/ |_| |_|\__,_|\__| \__, |\___/ \__,_|
[15:14:42] <carbine> |___/
[15:14:44] <carbine> _ _ ___
[15:14:47] <carbine> _ __ ___ ___ __| | ___ __| |__ \
[15:14:49] <carbine> | '_ \ / _ \/ _ \/ _` |/ _ \/ _` | / /
[15:14:52] <carbine> | | | | __/ __/ (_| | __/ (_| ||_|
[15:14:54] <carbine> |_| |_|\___|\___|\__,_|\___|\__,_|(_)
[15:14:57] <carbine>
[15:15:20] <carbine> :D
[15:15:37] <carbine> ____ _ _ _
[15:15:38] <carbine> | __ ) __ _| | |___ __ _ ___| | __
[15:15:38] <carbine> | _ \ / _` | | / __|/ _` |/ __| |/ /
[15:15:38] <carbine> | |_) | (_| | | \__ \ (_| | (__| <
[15:15:40] <carbine> |____/ \__,_|_|_|___/\__,_|\___|_|\_\
[15:15:43] <carbine>
[15:17:50] * jwarren (jwarren@sdf-771D91C.freeshell.org) has joined #sdf
[15:22:04] <osirix> :D
[15:22:04] <osirix> :D
[15:22:05] <osirix> :D
[15:22:05] <osirix> :D
[15:22:06] <osirix> :D
[15:22:12] <osirix> # ######
[15:22:12] <osirix> ### # #
[15:22:12] <osirix> # # #
[15:22:12] <osirix> # #
[15:22:14] <osirix> # # #
[15:22:16] <osirix> ### # #
[15:22:19] <osirix> # ######
[15:22:25] <carbine> ____
[15:22:26] <carbine> _| _ \
[15:22:26] <carbine> (_) | | |
[15:22:26] <carbine> _| |_| |
[15:22:26] <carbine> (_)____/
[15:22:28] <carbine>
[15:22:37] <carbine> ___ ____
[15:22:37] <carbine> ( _ ) _____ _____ _____| _ \
[15:22:37] <carbine> / _ \|_____|_____|_____| | | |
[15:22:37] <carbine> | (_) |_____|_____|_____| |_| |
[15:22:37] <carbine> \___/ |____/
[15:22:39] <carbine>
[15:22:46] <carbine> /bin/sh: -c: line 0: syntax error near unexpected token `('
[15:22:46] <carbine> /bin/sh: -c: line 0: `figlet >:('
[15:22:50] <carbine> __ __
[15:22:51] <carbine> \ \ _ / /
[15:22:51] <carbine> \ (_) |
[15:22:51] <carbine> / /_| |
[15:22:53] <carbine> /_/(_) |
[15:22:55] <carbine> \_\
[15:22:58] <carbine> __ ____
[15:23:01] <carbine> \ \ _| _ \
[15:23:03] <carbine> \ (_) | | |
[15:23:05] * Austin (jwarren@sdf-6CEBA074.freeshell.org) has joined #sdf
[15:23:06] <carbine> / /_| |_| |
[15:23:08] <carbine> /_/(_)____/
[15:23:11] <carbine>
[15:23:13] <carbine> _ _ ___ _ _ _ ____ _____ ___ _ _
[15:23:16] <carbine> | | | |_ _| / \ | | | / ___|_ _|_ _| \ | |
[15:23:18] <carbine> | |_| || | / _ \| | | \___ \ | | | || \| |
[15:23:21] <carbine> | _ || | / ___ \ |_| |___) || | | || |\ |
[15:23:23] <carbine> |_| |_|___| /_/ \_\___/|____/ |_| |___|_| \_|
[15:23:25] * jwarren (jwarren@sdf-771D91C.freeshell.org) Quit (Ping timeout#)
[15:23:26] <carbine>
[15:23:57] * Austin (jwarren@sdf-6CEBA074.freeshell.org) Quit (Quit: Austin#)
[15:24:12] <carbine> _ _ _
[15:24:13] <carbine> / \ ___ ___| |__ ___ | | ___
[15:24:13] <carbine> / _ \ / __/ __| '_ \ / _ \| |/ _ \
[15:24:13] <carbine> / ___ \\__ \__ \ | | | (_) | | __/_ _ _
[15:24:13] <carbine> /_/ \_\___/___/_| |_|\___/|_|\___(_|_|_)
[15:24:15] <carbine>
[15:25:38] <carbine> __ _______
[15:25:39] <carbine> / / / /___ /
[15:25:40] <carbine> / / / / |_ \
[15:25:40] <carbine> \ \ / / ___) |
[15:25:40] <carbine> \_\/_/ |____/
[15:25:41] <carbine>
[15:25:52] <carbine> __ __ _ _ __ _
[15:25:52] <carbine> | \/ | ___ | |_| |__ ___ _ __ / _|_ _ ___| | _____ _ __
[15:25:52] <carbine> | |\/| |/ _ \| __| '_ \ / _ \ '__| |_| | | |/ __| |/ / _ \ '__|
[15:25:52] <carbine> | | | | (_) | |_| | | | __/ | | _| |_| | (__| < __/ |
[15:25:52] <carbine> |_| |_|\___/ \__|_| |_|\___|_| |_| \__,_|\___|_|\_\___|_|
[15:25:54] <carbine>
[15:26:11] <carbine> __ __ __ __
[15:26:11] <carbine> / / ___ \ \ / / ___ \ \
[15:26:11] <carbine> | | / _ \ \ V / / _ \ | |
[15:26:11] <carbine> | | | (_) | | | | (_) | | |
[15:26:11] <carbine> | | \___/ |_| \___/ | |
[15:26:14] <carbine> \_\ /_/
[15:26:16] <carbine> YES
[15:26:20] <carbine> ASCII TITS
[15:26:31] <carbine> __ ___ ____ ___ _ _ _
[15:26:32] <carbine> \ \ / / \ / ___|_ _| \ | | / \
[15:26:32] <carbine> \ \ / / _ \| | _ | || \| | / _ \
[15:26:32] <carbine> \ V / ___ \ |_| || || |\ |/ ___ \
[15:26:32] <carbine> \_/_/ \_\____|___|_| \_/_/ \_\
[15:26:34] <carbine>
[15:26:45] <carbine> ____ _ ___ _____ ___ ____ ___ ____
[15:26:45] <carbine> / ___| | |_ _|_ _/ _ \| _ \|_ _/ ___|
[15:26:45] <carbine> | | | | | | | || | | | |_) || |\___ \
[15:26:45] <carbine> | |___| |___ | | | || |_| | _ < | | ___) |
[15:26:45] <carbine> \____|_____|___| |_| \___/|_| \_\___|____/
[15:26:47] <carbine>
[15:26:50] <carbine> __ ___ ____ ___ _ _ _
[15:26:52] <carbine> \ \ / / \ / ___|_ _| \ | | / \
[15:26:55] <carbine> \ \ / / _ \| | _ | || \| | / _ \
[15:26:57] <carbine> \ V / ___ \ |_| || || |\ |/ ___ \
[15:27:00] <carbine> \_/_/ \_\____|___|_| \_/_/ \_\
[15:27:02] <carbine>
[15:27:05] <carbine> ____ _ ___ _____ ___ ____ ___ ____
[15:27:07] <carbine> / ___| | |_ _|_ _/ _ \| _ \|_ _/ ___|
[15:27:10] <carbine> | | | | | | | || | | | |_) || |\___ \
[15:27:13] <carbine> | |___| |___ | | | || |_| | _ < | | ___) |
[15:27:15] <carbine> \____|_____|___| |_| \___/|_| \_\___|____/
[15:27:18] <carbine>
[15:27:21] * oniRyan sets mode: +m-v carbine
[15:27:26] <oniRyan> there, that's better
[15:28:04] * oniRyan sets mode: -m
[15:28:16] <carbine> _____ _ _ ____ _ __ __ _____ _ _ ______ __ _ _ _
[15:28:17] <carbine> | ___| | | |/ ___| |/ / \ \ / / _ \| | | | | _ \ \ / // \ | \ | |
[15:28:17] <carbine> | |_ | | | | | | ' / \ V / | | | | | | | |_) \ V // _ \ | \| |
[15:28:17] <carbine> | _| | |_| | |___| . \ | || |_| | |_| | | _ < | |/ ___ \| |\ |
[15:28:17] <carbine> |_| \___/ \____|_|\_\ |_| \___/ \___/ |_| \_\|_/_/ \_\_| \_|
[15:28:18] <carbine>
[15:29:00] <carbine> ____ _ ____ _____ _ ____ ____
[15:29:00] <carbine> | __ ) / \ / ___|_ _|/ \ | _ \| _ \
[15:29:00] <carbine> | _ \ / _ \ \___ \ | | / _ \ | |_) | | | |
[15:29:00] <carbine> | |_) / ___ \ ___) || |/ ___ \| _ <| |_| |
[15:29:00] <carbine> |____/_/ \_\____/ |_/_/ \_\_| \_\____/
[15:29:01] <carbine>
[15:29:10] <oniRyan> <3
[15:29:13] * oniRyan licks carbine
[15:29:16] <oniRyan> it's ok
[15:29:18] <oniRyan> was just kidding
[15:29:35] <carbine> _ _ ___ ____ ___ _ _ _ _____
[15:29:36] <carbine> | \ | |/ _ \ | _ \ / _ \| \ | ( )_ _|
[15:29:36] <carbine> | \| | | | | | | | | | | | \| |/ | |
[15:29:36] <carbine> | |\ | |_| | | |_| | |_| | |\ | | |
[15:29:36] <carbine> |_| \_|\___( ) |____/ \___/|_| \_| |_|
[15:29:38] <carbine> |/
[15:30:02] <carbine> _ _ ___ ___ _____ _____ ____ ____
[15:30:02] <carbine> | | | |/ _ \ / _ \_ _| ____| _ \/ ___|
[15:30:03] <carbine> | |_| | | | | | | || | | _| | |_) \___ \
[15:30:03] <carbine> | _ | |_| | |_| || | | |___| _ < ___) |
[15:30:03] <carbine> |_| |_|\___/ \___/ |_| |_____|_| \_\____/
[15:30:04] <carbine>
[15:30:09] <carbine> __ __ __ __
[15:30:09] <carbine> / / ___ \ \ / / ___ \ \
[15:30:10] <carbine> | | / _ \ \ V / / _ \ | |
[15:30:10] <carbine> | | | (_) | | | | (_) | | |
[15:30:10] <carbine> | | \___/ |_| \___/ | |
[15:30:11] <carbine> \_\ /_/
[15:30:17] <oniRyan> ya know ... it's easier for me to read stuff if it's not all gone through figlet
[15:30:49] <carbine> ________
[15:30:49] <carbine> < FIGLET >
[15:30:49] <carbine> --------
[15:30:49] <carbine> \ ^__^
[15:30:49] <carbine> \ (oo)\_______
[15:30:51] <carbine> (__)\ )\/\
[15:30:54] <carbine> ||----w |
[15:30:56] <carbine> || ||
[15:31:06] <carbine> __________
[15:31:07] <carbine> < #4FIGLET >
[15:31:07] <carbine> ----------
[15:31:07] <carbine> \ ^__^
[15:31:07] <carbine> \ (oo)\_______
[15:31:09] <carbine> (__)\ )\/\
[15:31:11] <carbine> ||----w |
[15:31:14] <carbine> || ||
[15:31:51] <carbine> ____ _ _ _ ____
[15:31:52] <carbine> | __ ) / \ | | | | / ___|
[15:31:52] <carbine> | _ \ / _ \ | | | | \___ \
[15:31:52] <carbine> | |_) / ___ \| |___| |___ ___) |
[15:31:52] <carbine> |____/_/ \_\_____|_____|____/
[15:31:54] <carbine>
[15:32:02] <carbine> _ _ _ __ __ _ _
[15:32:02] <carbine> _| || |_ ___ __| |/ _| / _| |_| |
[15:32:02] <carbine> |_ .. _/ __|/ _` | |_ | |_| __| |
[15:32:02] <carbine> |_ _\__ \ (_| | _| | _| |_| |
[15:32:02] <carbine> |_||_| |___/\__,_|_| |_| \__|_|
[15:32:03] * vn (root@sdf-7876BD5B.freeshell.org) has joined #sdf
[15:32:04] <carbine>
[15:32:07] <carbine> _ _ _ __ __ _ _
[15:32:09] <carbine> _| || |_ ___ __| |/ _| / _| |_| |
[15:32:12] <carbine> |_ .. _/ __|/ _` | |_ | |_| __| |
[15:32:14] <carbine> |_ _\__ \ (_| | _| | _| |_| |
[15:32:17] <carbine> |_||_| |___/\__,_|_| |_| \__|_|
[15:32:19] <carbine>
[15:32:22] <carbine> _ _ _ _
[15:32:24] <carbine> | | | | ___| | | ___ __ ___ __
[15:32:27] <carbine> | |_| |/ _ \ | |/ _ \ \ \ / / '_ \
[15:32:30] <carbine> | _ | __/ | | (_) | \ V /| | | |
[15:32:32] <carbine> |_| |_|\___|_|_|\___( ) \_/ |_| |_|
[15:32:35] <carbine> |/
[15:32:39] <vn> I can't read that shit.
[15:32:47] <carbine> ____ _ _ ___ _____ ___ _ ___
[15:32:47] <carbine> / ___|| | | |_ _|_ _|__ \ |__ \
[15:32:48] <carbine> \___ \| |_| || | | | / / | / /
[15:32:48] <carbine> ___) | _ || | | | |_||_||_|
[15:32:48] <carbine> |____/|_| |_|___| |_| (_)(_)(_)
[15:32:50] <carbine>
[15:33:11] <carbine> ____________
[15:33:12] <carbine> < WHAT SHIT? >
[15:33:12] <carbine> ------------
[15:33:12] <carbine> \ ^__^
[15:33:12] <carbine> \ (oo)\_______
[15:33:14] <carbine> (__)\ )\/\
[15:33:16] <carbine> ||----w |
[15:33:19] <carbine> || ||
[15:33:51] * oniRyan sets mode: +f [12t]:9
[15:33:54] <oniRyan> hehe
[15:33:58] <oniRyan> that'll fix ya
[15:34:13] <carbine> __________
[15:34:13] <carbine> < FIX PORN >
[15:34:13] <carbine> ----------
[15:34:13] <carbine> \ ^__^
[15:34:13] <carbine> \ (oo)\_______
[15:34:16] <carbine> (__)\ )\/\
[15:34:18] <carbine> ||----w |
[15:34:20] <carbine> || ||
[15:35:05] * osirix sets mode: +G
[15:35:31] <codejone> DAMN COW YOU SOUND LIKE MY BOSS
[15:35:37] <oniRyan> nah we don't have to G-rated
[15:35:47] <oniRyan> the badwords list probably isn't set anyway
[15:36:15] <oniRyan> 'sup matt
[15:37:22] * oniRyan sets mode: -G+v carbine
[15:37:38] <carbine> __________
[15:37:39] <carbine> < FIX PORN >
[15:37:39] <carbine> ----------
[15:37:39] <carbine> \ ^__^
[15:37:39] <carbine> \ (oo)\_______
[15:37:41] <carbine> (__)\ )\/\
[15:37:43] <carbine> ||----w |
[15:37:46] <carbine> || ||
[15:37:54] <carbine> _________________________
[15:37:54] <carbine> < CODEJONE SUCK MY UDDERS >
[15:37:54] <carbine> -------------------------
[15:37:55] <carbine> \ ^__^
[15:37:55] <carbine> \ (oo)\_______
[15:37:57] <carbine> (__)\ )\/\
[15:37:59] <carbine> ||----w |
[15:38:02] <carbine> || ||
[15:39:56] * oniRyan sets mode: -f [12t]:9
[15:40:06] * oniRyan sets mode: +ntf [14t]:20
[15:40:14] <oniRyan> thar
[15:40:58] <oniRyan> 'tis all the further I'm willing to push the rate limiter
[15:41:12] <oniRyan> just ... srsly... it's annoying.
[15:41:43] <carbine> WTF
[15:42:02] <carbine> ___________
[15:42:02] <carbine> < ANNOYING? >
[15:42:03] <carbine> -----------
[15:42:03] <carbine> \ ^__^
[15:42:03] <carbine> \ (oo)\_______
[15:42:05] <carbine> (__)\ )\/\
[15:42:07] <carbine> ||----w |
[15:42:10] <carbine> || ||
[15:43:08] * oniRyan sets mode: +f [8t]:14
[15:43:10] <oniRyan> there
[15:43:15] <oniRyan> now there will be no more
[15:44:25] <carbine> LESS QQ
[15:44:26] <carbine> LESS QQ
[15:44:27] <carbine> LESS QQ
[15:44:27] <carbine> LESS QQ
[15:44:27] <carbine> LESS QQ
[15:44:44] <carbine> ___ ___
[15:44:44] <carbine> / _ \ / _ \
[15:44:44] <carbine> | | | | | | |
[15:44:44] <carbine> | |_| | |_| |
[15:44:44] <carbine> \__\_\\__\_\
[15:44:46] <carbine>
[15:44:59] <oniRyan> haha wow
[15:45:05] <oniRyan> fine, you win
[15:45:21] <oniRyan> I'm still leaving the 8lines in 14 seconds = kick though
[15:45:24] * carbine ALWAYS wins.
[15:45:31] <oniRyan> that's a little extreme if you really flood that fast
[15:45:38] <carbine> ___ ___
[15:45:38] <carbine> / _ \ / _ \
[15:45:38] <carbine> | | | | | | |
[15:45:38] <carbine> | |_| | |_| |
[15:45:38] <carbine> \__\_\\__\_\
[15:45:39] <carbine>
[15:45:42] <carbine> ___ ___
[15:45:44] <carbine> / _ \ / _ \
[15:45:47] * carbine was kicked by irc.sdf.org (Flooding (Limit is 8 lines per 14 seconds)#)
[15:45:55] * carbine (~carbine@sdf-27B5182E.com) has joined #sdf
[15:45:59] <carbine> YOU DON'T RULE ME
[15:46:07] <carbine> ___ ___
[15:46:08] <carbine> / _ \ / _ \
[15:46:08] <carbine> | | | | | | |
[15:46:08] <carbine> | |_| | |_| |
[15:46:08] <carbine> \__\_\\__\_\
[15:46:10] <carbine>
[15:46:12] <carbine> ___ ___
[15:46:15] <carbine> / _ \ / _ \
[15:46:17] <carbine> | | | | | | |
[15:46:20] <carbine> | |_| | |_| |
[15:46:22] <carbine> \__\_\\__\_\
[15:46:25] <carbine>
[15:46:39] <oniRyan> haha funny
[15:46:48] <oniRyan> thanks for at least slowing down your floods :)
[15:46:58] * oniRyan blows carbine a kiss
[15:47:14] <carbine> I DO WHATEVER THE FUCK I WANT
[15:47:18] <carbine> _____ _ _ ____ _ _____ _ _ ____ _ _ _ _ _____ ____
[15:47:18] <carbine> | ___| | | |/ ___| |/ /_ _| \ | | / ___| | | | \ | |_ _/ ___|
[15:47:19] <carbine> | |_ | | | | | | ' / | || \| | | | | | | | \| | | | \___ \
[15:47:19] <carbine> | _| | |_| | |___| . \ | || |\ | | |___| |_| | |\ | | | ___) |
[15:47:19] <carbine> |_| \___/ \____|_|\_\___|_| \_| \____|\___/|_| \_| |_| |____/
[15:47:21] <carbine>
[15:47:23] <carbine> _____ _ _ ____ _ _____ _ _ ____ _ _ _ _ _____ ____
[15:47:26] * carbine was kicked by irc.sdf.org (Flooding (Limit is 8 lines per 14 seconds)#)
[15:47:29] * carbine (~carbine@sdf-27B5182E.com) has joined #sdf
[15:47:34] <carbine> SEE
[15:47:39] <carbine> ____ _ _ _ _____ ____
[15:47:40] <oniRyan> uh huh
[15:47:42] <carbine> | __ ) / \ | | | | | ____| _ \
[15:47:43] <oniRyan> I'm not gonna ban
[15:47:44] <carbine> | _ \ / _ \ | | | | | _| | |_) |
[15:47:47] <carbine> | |_) / ___ \| |___| |___| |___| _ <
[15:47:49] <carbine> |____/_/ \_\_____|_____|_____|_| \_\
[15:47:52] <carbine>
[15:47:54] <carbine> ____ _ ___ _ _ ____ ____ _ ___ _ _ ____
[15:47:57] <carbine> | __ )| | |_ _| \ | |/ ___| | __ )| | |_ _| \ | |/ ___|
[15:47:59] <carbine> | _ \| | | || \| | | _ | _ \| | | || \| | | _
[15:48:02] <carbine> | |_) | |___ | || |\ | |_| | | |_) | |___ | || |\ | |_| |
[15:48:05] <carbine> |____/|_____|___|_| \_|\____| |____/|_____|___|_| \_|\____|
[15:48:07] <carbine>
[15:48:10] <carbine> ____ ___ ___ ____
[15:48:12] <carbine> / ___|/ _ \ / _ \| _ \
[15:48:15] <carbine> | | _| | | | | | | | | |
[15:48:17] <carbine> | |_| | |_| | |_| | |_| |
[15:48:20] <carbine> \____|\___/ \___/|____/
[15:48:22] <carbine>
[15:48:25] <carbine> 'Cause you don't run dis shiz
[15:48:45] <carbine> _ _ _ ____ _____ _ _ _ _ _ _ _
[15:48:46] <carbine> _| || |_/ | / ___|_ _| | | | \ | | \ | | / \
[15:48:46] <carbine> |_ .. _| | \___ \ | | | | | | \| | \| | / _ \
[15:48:46] <carbine> |_ _| | ___) || | | |_| | |\ | |\ |/ ___ \
[15:48:46] <carbine> |_||_| |_| |____/ |_| \___/|_| \_|_| \_/_/ \_\
[15:48:48] <carbine>
[15:48:50] <oniRyan> meh fine
[15:48:57] * oniRyan sets mode: -f [8t]:14
[15:49:02] * oniRyan sets mode: -o oniRyan
[15:49:07] <carbine> _ _ ____ ____ _____ _ _ _ _ _ _ _
[15:49:08] <carbine> _| || ||___ \ / ___|_ _| | | | \ | | \ | | / \
[15:49:08] <carbine> |_ .. _|__) | \___ \ | | | | | | \| | \| | / _ \
[15:49:08] <carbine> |_ _/ __/ ___) || | | |_| | |\ | |\ |/ ___ \
[15:49:08] <carbine> |_||_||_____| |____/ |_| \___/|_| \_|_| \_/_/ \_\
[15:49:08] <oniRyan> screw around all you want then
[15:49:10] <carbine>
[15:49:11] <oniRyan> cya later
[15:49:12] <carbine> _ _ _____ ____ _____ _ _ _ _ _ _ _
[15:49:15] <carbine> _| || ||___ / / ___|_ _| | | | \ | | \ | | / \
[15:49:17] <carbine> |_ .. _||_ \ \___ \ | | | | | | \| | \| | / _ \
[15:49:20] <carbine> |_ _|__) | ___) || | | |_| | |\ | |\ |/ ___ \
[15:49:22] <carbine> |_||_||____/ |____/ |_| \___/|_| \_|_| \_/_/ \_\
[15:49:25] <carbine>
[15:49:27] <carbine> _ _ _ _ ____ _____ _ _ _ _ _ _ _
[15:49:30] <carbine> _| || |_| || | / ___|_ _| | | | \ | | \ | | / \
[15:49:32] <carbine> |_ .. _| || |_ \___ \ | | | | | | \| | \| | / _ \
[15:49:35] <carbine> |_ _|__ _| ___) || | | |_| | |\ | |\ |/ ___ \
[15:49:37] <carbine> |_||_| |_| |____/ |_| \___/|_| \_|_| \_/_/ \_\
[15:49:40] <carbine>
[15:49:50] <oniRyan> I'll just leave because this is too annoying for me to hang out. "please stop" doesn't work... and all that.
[15:50:03] <carbine> _ _ ____ ____ _____ _ _ _ _ _ _ _
[15:50:04] <carbine> _| || |_| ___| / ___|_ _| | | | \ | | \ | | / \
[15:50:04] <carbine> |_ .. _|___ \ \___ \ | | | | | | \| | \| | / _ \
[15:50:04] <carbine> |_ _|___) | ___) || | | |_| | |\ | |\ |/ ___ \
[15:50:04] <carbine> |_||_| |____/ |____/ |_| \___/|_| \_|_| \_/_/ \_\
[15:50:06] <carbine>
[15:52:23] <carbine> ____ ___ _ _ _ _____ ____ _____ ___ ____
[15:52:24] <carbine> | _ \ / _ \| \ | ( )_ _| / ___|_ _/ _ \| _ \
[15:52:24] <carbine> | | | | | | | \| |/ | | \___ \ | || | | | |_) |
[15:52:24] <carbine> | |_| | |_| | |\ | | | ___) || || |_| | __/
[15:52:24] <carbine> |____/ \___/|_| \_| |_| |____/ |_| \___/|_|
[15:52:25] <carbine>
[15:52:28] <carbine> ____ _____ _ ___ _______ _____ _ _ ____
[15:52:31] <carbine> | __ )| ____| | |_ _| ____\ \ / /_ _| \ | |/ ___|
[15:52:33] <carbine> | _ \| _| | | | || _| \ \ / / | || \| | | _
[15:52:36] <carbine> | |_) | |___| |___ | || |___ \ V / | || |\ | |_| |
[15:52:38] <carbine> |____/|_____|_____|___|_____| \_/ |___|_| \_|\____|
[15:52:41] <carbine>
[15:54:37] <osirix> OMG ITS JOURNEY THATS THE BEST
[15:55:48] * osirix sets mode: +o carbine
[15:56:18] * carbine changes topic to 'Welcome to #sdf | Baller Status Required.#'
[15:56:51] * osirix changes topic to '| Baller Status Required. | -!- mode/#sdf [+baller] by osirix#'
[15:56:59] <carbine> :D
[15:57:01] <osirix> :D
[15:57:55] <carbine> I AM A WARRIOR!
[15:57:57] <carbine> I AM REAL HARD!
[15:58:06] <carbine> #REAL HARD
[15:58:14] <carbine> #4SUER HARD
[15:58:17] <carbine> SUPER TOO
[15:58:26] <carbine> ____ _____ _ _ _ _ _ ____ ____
[15:58:26] <carbine> | _ \| ____| / \ | | | | | | / \ | _ \| _ \
[15:58:26] <carbine> | |_) | _| / _ \ | | | |_| | / _ \ | |_) | | | |
[15:58:26] <carbine> | _ <| |___ / ___ \| |___ | _ |/ ___ \| _ <| |_| |
[15:58:26] <carbine> |_| \_\_____/_/ \_\_____| |_| |_/_/ \_\_| \_\____/
[15:58:28] <carbine>
[15:58:32] <osirix> SUPER HARD
[15:58:35] <osirix> SUPER HARD ... GAY
[15:58:36] <osirix> WOOOOOOOOOOOOOOOOOOOOOOOOOO
[15:58:40] <osirix> # # ####### ####### ####### ####### ####### ####### ####### ####### #######
[15:58:40] <osirix> # # # # # # # # # # # # # # # # # # # # #
[15:58:40] <osirix> # # # # # # # # # # # # # # # # # # # # #
[15:58:41] <osirix> # # # # # # # # # # # # # # # # # # # # #
[15:58:41] <osirix> # # # # # # # # # # # # # # # # # # # # #
[15:58:42] <osirix> # # # # # # # # # # # # # # # # # # # # #
[15:58:44] <carbine> :D
[15:58:45] <osirix> ## ## ####### ####### ####### ####### ####### ####### ####### ####### #######
[15:58:53] <carbine> WHOOPS
[15:58:58] <osirix> ASSMUNCH
[15:59:02] <osirix> >:[
[15:59:04] <osirix> :D
[15:59:07] <carbine> , __ ___, _ _
[15:59:07] <carbine> /|/ \ / | \_|_) \_|_) ()
[15:59:07] <carbine> | __/| | | | /\
[15:59:07] <carbine> | \| | _| _| / \
[15:59:07] <carbine> |(__/ \__/\_/(/\___/(/\___//(__/
[15:59:09] <carbine>
[15:59:12] <carbine>
[15:59:25] <carbine> ______ _ _ _
[15:59:25] <carbine> (_) | | | | | | |
[15:59:25] <carbine> _|_ __, _ _ __ | | __, | | | | ,
[15:59:25] <carbine> / | |/ | / |/ | / | | |/ \_/ | |/ |/ / \_
[15:59:25] <carbine> (_/ \_/|_/ | |_/\___/ \_/|/ \_/ \_/|_/|__/|__/ \/
[15:59:27] <carbine> /|
[15:59:30] <carbine> \|
[15:59:44] <carbine> figlet: bold.flf: Unable to open font file
[15:59:46] <carbine> SHIT
[16:00:50] <osirix> FANCY
[16:00:51] <osirix> PANTS
[16:01:00] <carbine> ______
[16:01:01] <carbine> (_) | o
[16:01:01] <carbine> _|_ __, _ _ __ _ __, _ _ _|_ , _|_
[16:01:01] <carbine> / | |/ | / |/ | / | | |/ \_/ | / |/ | | / \_| | | |
[16:01:02] <carbine> (_/ \_/|_/ | |_/\___/ \_/|/ |__/ \_/|_/ | |_/|_/ \/ \_/|_/|_/|_/
[16:01:05] <carbine> /| /|
[16:01:07] <carbine> \| \|
[16:01:08] <osirix> LOL i am on JERRY's email list now
[16:01:10] <carbine> :D
[16:01:12] <osirix> he sent me some YOUTUBE video
[16:01:14] <carbine> Same here.
[16:01:15] <carbine> :D
[16:01:17] <osirix> :D
[16:01:30] <osirix> i'm gonna SHIT on this guy
[16:01:31] <osirix> seriosuly
[16:01:38] <osirix> he scheduled a fucking call for an hour at 4pm on a FRIDAY
[16:01:43] <osirix> bunch of COCK
[16:01:50] <carbine> RUB YOUR DICK ON HIS PHONE
[16:01:51] <carbine> :D
[16:02:08] <carbine> ring ring ring: "YOUR MOUTH IS NEAR WHERE MY COCK WAS"
[16:02:12] <carbine> LOLOL
[16:02:19] * Steve_Dave (~Gordangum@sdf-BFE3882B.hsd1.md.comcast.net) has joined #sdf
[16:02:29] <carbine> ____ _____ _______ _______ ____ ___ _______
[16:02:29] <carbine> / ___|_ _| ____\ \ / / ____| | _ \ / \ \ / / ____|
[16:02:30] <carbine> \___ \ | | | _| \ \ / /| _| | | | |/ _ \ \ / /| _|
[16:02:30] <carbine> ___) || | | |___ \ V / | |___ | |_| / ___ \ V / | |___
[16:02:30] <carbine> |____/ |_| |_____| \_/ |_____|___|____/_/ \_\_/ |_____|
[16:02:32] <carbine> |_____|
[16:02:40] <Steve_Dave> hi
[16:04:38] <acidapex> your kung fu no good
[16:06:02] <acidapex>
[16:06:03] <acidapex> #[0;1;32;92m_|#[0;1;36;96m_|#[0m #[0;1;36;96m_|#[0m
[16:06:06] <acidapex> #[0;1;32;92m_|#[0m #[0;1;31;91m_|#[0m #[0;1;36;96m_|#[0m #[0;1;31;91m_|#[0;1;33;93m_|#[0;1;32;92m_|#[0m #[0;1;34;94m_|#[0m #[0;1;31;91m_|#[0m #[0;1;35;95m_|#[0m #[0;1;32;92m_|#[0m #[0;1;35;95m_|#[0;1;31;91m_|#[0m #[0;1;36;96m_|#[0m #[0;1;31;91m_|#[0m
[16:06:10] <acidapex> #[0;1;32;92m_|#[0;1;36;96m_|#[0;1;34;94m_|#[0;1;35;95m_|#[0m #[0;1;33;93m_|#[0m #[0;1;34;94m_|#[0m #[0;1;31;91m_|#[0m #[0;1;35;95m_|#[0;1;31;91m_|#[0m #[0;1;31;91m_|#[0m #[0;1;36;96m_|#[0m #[0;1;35;95m_|#[0m #[0;1;32;92m_|#[0m #[0;1;34;94m_|#[0m #[0;1;33;93m_|#[0m
[16:06:16] <acidapex> #[0;1;34;94m_|#[0m #[0;1;32;92m_|#[0m #[0;1;35;95m_|#[0m #[0;1;33;93m_|#[0m #[0;1;31;91m_|#[0m #[0;1;32;92m_|#[0m #[0;1;33;93m_|#[0m #[0;1;34;94m_|#[0m #[0;1;31;91m_|#[0m #[0;1;36;96m_|#[0m #[0;1;35;95m_|#[0m #[0;1;32;92m_|#[0m
[16:06:20] <acidapex> #[0;1;35;95m_|#[0m #[0;1;34;94m_|#[0;1;35;95m_|#[0;1;31;91m_|#[0m #[0;1;36;96m_|#[0;1;34;94m_|#[0;1;35;95m_|#[0m #[0;1;33;93m_|#[0m #[0;1;34;94m_|#[0m #[0;1;36;96m_|#[0;1;34;94m_|#[0;1;35;95m_|#[0m #[0;1;32;92m_|#[0;1;36;96m_|#[0m #[0;1;33;93m_|#[0;1;32;92m_|#[0;1;36;96m_|#[0m
[16:06:23] <Steve_Dave> your english no good
[16:06:25] <acidapex> #[0;1;31;91m_|#[0m
[16:06:29] <acidapex> #[0;1;35;95m_|#[0;1;31;91m_|#[0m
[16:06:36] <carbine> That was beautiful.
[16:06:47] <carbine> I want colors.
[16:07:27] <carbine> HOW 2 MAEK COLORZ
[16:10:49] <osirix> :D
[16:10:52] <osirix> with FAGGOTRY
[16:10:52] <osirix> COLORS
[16:11:00] <osirix> THE RAINBOWWWWWWWWWWWWW :D
[16:11:43] <Ging> i can garnetee my car wont be stolen tonight
[16:14:06] <carbine> #5_# #4_#
[16:14:07] <carbine> #5|# #11|##13_# #6_##12_##6_# #4_##11_##3_##4|# #7|##11_#
[16:14:07] <carbine> #15|# #13_##8_##6/# #6_# #11\##4/# #3_##4_##11|# #11_##14_##13|#
[16:14:07] <carbine> #11|# #8|##6|# #7_##11_##4/##11\##3_##4_# #7\# #14|##13_#
[16:14:07] <carbine> #8\##6_##12_##6\##7_##11_##4_##11|##3|##4_##11_##7_##11/##14\##13_##5_##6|#
[16:14:08] <carbine>
[16:14:11] <carbine> :O
[16:14:14] <carbine> OMG
[16:14:16] <carbine> #11_##0_##6_##4_# #4_# #15_# #7_# #4_##7_##12_##12_##12_# #8_##14_##9_##13_#
[16:14:19] <carbine> #11|# #6_##4_# #12)# #4/# #14\# #15|# #5|# #7|# #11|# #4|# #12_##12_##12_##4_##8|# #13_# #5\#
[16:14:22] <carbine> #0|# #7_# #12\# #4/# #14_# #13\# #5|# #6|# #2|# #11|# #7|# #12_##4|# #14|# #13|##15_##5)# #6|#
[16:14:25] <carbine> #6|# #7|##12_##12)# #4/# #14_##9_##13_# #5\##5|# #11|##5_##7_##2_##11|# #0|##6_##4_##7_##12|# #12|##4_##8_##14_##9|# #5_# #6<#
[16:14:28] <carbine> #4|##7_##12_##12_##12_##4/##8_##14/# #5\##5_##6\##11_##5_##7_##2_##11_##11|##0_##6_##4_##7_##12_##12|##12_##4_##8_##14_##9_##13|##15_##5|# #6\##11_##5\#
[16:14:31] <carbine>
[16:14:35] <carbine> #4_##7_##7_##5_# #9_# #11_# #6_# #5_##5_##8_##8_##9_# #3_##3_##10_##10_#
[16:14:38] <carbine> #4|# #7_##5_# #8)# #9/# #3\# #11|# #12|# #6|# #4|# #5|# #8_##8_##9_##9_##3|# #10_# #11\#
[16:14:41] <carbine> #7|# #5_# #8\# #9/# #3_# #10\# #11|# #12|# #6|# #4|# #5|# #9_##9|# #3|# #10|##11_##11)# #12|#
[16:14:44] <carbine> #7|# #5|##8_##8)# #9/# #3_##10_##10_# #11\##12|# #2|##2_##6_##6_##4|# #7|##7_##5_##5_##8|# #9|##9_##3_##3_##10|# #11_# #12<#
[16:14:47] <carbine> #5|##5_##8_##8_##9_##9/##3_##3/# #11\##12_##12\##2_##2_##6_##6_##4_##4|##7_##7_##5_##5_##8_##8|##9_##9_##3_##3_##10_##10|##11_##11|# #12\##2_##2\#
[16:14:50] <carbine>
[16:14:53] <carbine> #4_##7_##7_# #5_# #9_# #3_##10_##10_##11_# #12_# #6_# #4_##7_##7_##5_# #9_##3_##3_##10_##10_# #11_##12_##12_##2_##2_##6_##6_# #9_##9_#
[16:14:56] <carbine> #4|##7_# #5_##5|# #8\# #9|# #3/# #10_##11_##11_##12|##12|# #2|# #6|# #4|# #7_##5_# #8)# #9|# #10_##10_##11_##11|##12_# #6_##6\# #4\# #9/# #3/#
[16:14:59] <carbine> #7|# #5|##8|# #9\##3|# #10\##10_##11_##11_# #12\##2|# #6|# #4|# #7|# #5_# #8\# #3|# #10|##10_# #2|# #6|# #4\# #7\# #5/##8\# #9/# #3/#
[16:15:02] <carbine> #5|# #8|##8|# #9|##3\# #10|##11_##11_##12_##12)# #2|# #6|##4_##4|# #7|# #5|##8_##8)# #9|# #3|# #11_##11|# #2|# #6|# #7\# #5V# #9V# #3/#
[16:15:05] <carbine> #5|##5_##8_##8_##9|##9_##3|# #10\##10_##11|##11_##12_##12_##2_##2/# #6\##4_##4_##7_##7/##5|##5_##8_##8_##9_##9/# #10|##10_##11|# #6|##6_##4|# #5\##8_##8/##9\##9_##3/#
[16:15:08] <carbine>
[16:15:10] <carbine> #4_##7_##7_##5_##5_# #8_# #10_##10_##11_##11_# #2_##6_##6_##4_##4_# #7_# #10_# #12_##2_##2_##6_#
[16:15:13] <carbine> #4|# #5_##5_##8_##8/# #9\# #10/# #11_##11_##12_##12|# #2|# #4_##4_##7_##7|# #5|# #10/# #11\# #12/# #2_##6_##6_##4|#
[16:15:16] <carbine> #7|# #5|##5_# #8/# #9_# #3\##10|# #11|# #12_# #6|# #4|##4_# #5|# #8|# #10/# #11_# #12\##12|# #2|# #4_#
[16:15:19] <carbine> #7|# #8_##8/# #9_##3_##3_# #10\# #11|##12_##12|# #2|# #6|# #7_##7|# #5|# #8|##9_##9_##3_# #10/# #11_##11_##12_# #2\# #6|##6_##4|# #7|#
[16:15:23] <carbine> #5|##5_##8|##8/##9_##9/# #10\##11_##11\##12_##12_##2_##2_##6|# #4|##4_##7|# #8|##8_##9_##9_##3_##3_##10/##10_##11/# #2\##2_##6\##6_##4_##4_##7_##7|#
[16:15:26] <carbine>
[16:15:28] <carbine> #0_##0_##4_# #0_# #4_# #4_##4_##0_##0_# #0_# #0_# #4_# #4_# #4_##4_##4_##0_# #0_# #4_##4_##0_#
[16:15:31] <carbine> #0/# #4_# #4\##0|# #4|# #4|# #0|# #4/# #0_##0_##4_##4|# #0/# #4\# #0|# #4\# #4|# #0|# #4/# #0\# #4|# #0_# #4\# #0/# #4\# #4|##4_##0_# #4\#
[16:15:34] <carbine> #0|# #4|# #4|# #0|# #4|##4_##4|# #0|# #4|# #0|# #0/# #4_# #4\# #0|# #4\##4|# #0|# #4/# #0_# #4\# #4|# #0|# #4|# #4|##0/# #4_# #4\# #0/# #4/#
[16:15:37] <carbine> #0|# #4|##4_##0|# #4|# #4_# #4|# #4|# #0|##4_##4_##4_# #0/# #4_##4_##4_# #0\##4|# #4|##4\# #4|##4/# #0_##0_##4_# #4\##4|# #0|##4_##4|# #0/# #4_##4_##4_# #0\##0|##4_##4|#
[16:15:39] <acidapex> ok so ur kung fu is ... ok
[16:15:40] <carbine> #4\##4_##0_##0_##4/##4|##4_##4|# #0|##4_##4|# #0\##4_##4_##4_##4_##0/##0_##4/# #0\##4_##4\##4_##4|# #0\##4_##4/##4_##0/# #4\##4_##0\##0_##4_##4_##4_##0/##0_##4/# #0\##0_##4(##4_##4)#
[16:15:43] <acidapex> but do it in blocks bitch
[16:15:44] <carbine>
[16:15:52] <carbine>
[16:15:52] <carbine> #0_##4|##4_##4|# #4_##4|# #4_##0|#
[16:15:52] <carbine> #0_##0|# #0_##4|# #4_##0|# #0_##0|#
[16:15:52] <carbine> #0_##4|# #4_##4|# #0_##0|##4_##4|##4_##0|##0_##4|#
[16:15:52] <carbine> #4_##4|# #4_##4|# #0_##4|# #4_##4|#
[16:15:54] <carbine> #0_##0|##4_##4|# #4_##4|# #4_##4|#
[16:15:57] <carbine>
[16:15:59] <carbine>
[16:16:02] <carbine>
[16:16:03] <acidapex> cowsay "bitch" | toilet -f term --gay
[16:16:04] <carbine> #4_##4|##0_##0|##4_##4|# #4_##4|##4_##0|# #0_##0|# #4_##4|# #4_##4|##4_##0|# #0_##0|##4_##4|##4_##4|# #0_##4|##4_##4|# #4_##4|##0_##0|#
[16:16:07] <carbine> #4_##4|# #4_##4|# #4_##4|# #0_##4|##4_##4|# #4_##4|# #4_##4|# #4_##4|# #0_##4|# #0_##4|# #0_##0|# #0_##0|# #4_##4|#
[16:16:08] <acidapex> #[0;1;35;95m_#[0;1;31;91m__#[0;1;33;93m__#[0;1;32;92m__#[0m
[16:16:08] <acidapex> #[0;1;31;91m<#[0m #[0;1;33;93mbi#[0;1;32;92mtc#[0;1;36;96mh#[0m #[0;1;34;94m>#[0m
[16:16:08] <acidapex> #[0;1;33;93m-#[0;1;32;92m--#[0;1;36;96m--#[0;1;34;94m--#[0m
[16:16:08] <acidapex> #[0;1;31;91m\#[0m #[0;1;32;92m^_#[0;1;36;96m_^#[0m
[16:16:08] <acidapex> #[0;1;33;93m\#[0m #[0;1;36;96m(o#[0;1;34;94mo)#[0;1;35;95m\_#[0;1;31;91m__#[0;1;33;93m__#[0;1;32;92m__#[0m
[16:16:10] <carbine> #4_##4|# #4_##4|##4_##0|##0_##4|##4_##4|# #4_##4|# #0_##0|# #4_##0|# #4_##4|##4_##0|##0_##4|##4_##4|# #4_##4|# #4_##4|# #0_##4|##4_##4|##4_##0|##0_##4|# #0_##0|##4_##4|#
[16:16:11] <acidapex> #[0;1;34;94m(_#[0;1;35;95m_)#[0;1;31;91m\#[0m #[0;1;34;94m)\#[0;1;35;95m/\#[0m
[16:16:14] <acidapex> #[0;1;33;93m||#[0;1;32;92m--#[0;1;36;96m--#[0;1;34;94mw#[0m #[0;1;35;95m|#[0m
[16:16:14] <carbine> #4_##0|# #4_##4|# #4_##0|# #4_##4|# #4_##4|##0_##0|# #4_##4|# #4_##0|# #4_##4|# #4_##4|# #4_##4|# #4_##4|#
[16:16:17] <carbine> #4_##4|##4_##0|##0_##4|# #4_##0|# #0_##0|# #4_##4|# #0_##4|# #4_##0|# #0_##0|# #4_##4|##0_##0|##4_##4|# #4_##4|# #4_##4|# #4_##4|#
[16:16:18] <acidapex> #[0;1;32;92m||#[0m #[0;1;35;95m|#[0;1;31;91m|#[0m
[16:16:20] <acidapex> ca ca ca combo breaker
[16:16:20] <carbine>
[16:16:23] <carbine>
[16:16:26] <carbine>
[16:16:28] <carbine> #4_##7|##7_##5|##5_##8|##8_##9|# #10_##11|##11_##12|# #4_##7|##7_##5|##5_##8|#
[16:16:31] <carbine> #7_##7|# #10_##10|# #2_##2|# #4_##4|#
[16:16:34] <carbine> #7_##5|##5_##8|##8_##9|# #10_##11|##11_##12|##12_##2|##2_##6|# #4_##7|# #5_##8|##8_##9|#
[16:16:37] <carbine> #5_##5|# #11_##11|# #6_##6|# #7_##7|# #9_##9|#
[16:16:39] <carbine> #5_##8|# #11_##12|# #6_##4|# #5_##8|##8_##9|##9_##3|#
[16:16:41] <acidapex> lol
[16:16:42] <carbine>
[16:16:44] <carbine>
[16:16:45] <acidapex> what's our guilds website
[16:16:47] <carbine> #4_##7_##7_##5_##5_##8_##8_##9_##9_##3_##3_##10_#
[16:16:49] <carbine> #4<# #7S##5T##5F##8U# #9H##9O##3M##3O##10!# #11>#
[16:16:50] <acidapex> are you going to the raid tonight?
[16:16:52] <carbine> #7-##5-##5-##8-##8-##9-##9-##3-##3-##10-##10-##11-#
[16:16:54] <carbine> #3\# #11^##12_##12_##2^#
[16:16:57] <carbine> #10\# #12(##12o##2o##2)##6\##6_##4_##4_##7_##7_##5_##5_#
[16:16:59] <carbine> #12(##2_##2_##6)##6\# #8)##9\##9/##3\#
[16:17:02] <carbine> #4|##4|##7-##7-##5-##5-##8w# #9|#
[16:17:04] <carbine> #4|##7|# #9|##9|#
[16:17:07] <carbine> #4_##7_##7_##5_##5_##8_##8_##9_##9_##3_##3_##10_##10_##11_##11_##12_##12_##2_##2_##6_##6_##4_#
[16:17:10] <carbine> #4<# #7w##5o##5w##8p##8h##9o##9e##3n##3i##10x##10r##11i##11s##12i##12n##2g##2.##6o##6r##4g# #7>#
[16:17:13] <carbine> #7-##5-##5-##8-##8-##9-##9-##3-##3-##10-##10-##11-##11-##12-##12-##2-##2-##6-##6-##4-##4-##7-#
[16:17:16] <carbine> #3\# #11^##12_##12_##2^#
[16:17:18] <carbine> #10\# #12(##12o##2o##2)##6\##6_##4_##4_##7_##7_##5_##5_#
[16:17:21] <carbine> #12(##2_##2_##6)##6\# #8)##9\##9/##3\#
[16:17:23] <carbine> #4|##4|##7-##7-##5-##5-##8w# #9|#
[16:17:26] <carbine> #4|##7|# #9|##9|#
[16:17:29] <carbine> Dunno.
[16:17:47] <carbine> #4_##7_##7_##5_##5_##8_# #10_##11_##11_##12_##12_##2_#
[16:17:50] <carbine> #4(##7_##7)# #5|# #10(##11_##11)# #12|#
[16:17:53] <carbine> #5_##8|##8_# #3_##3_##10##,# #12_# #2_# #7_##7_# #12_##2|##2_# #4_##4_##7##,# #8_##8_##9##,# #3_##10_##10##,# #12_##12_# #2_##6|##6_#
[16:17:56] <carbine> #5/# #8|# #9|##3/# #10|# #12/# #2|##2/# #6|# #7/# #8|# #3|# #12/# #2|# #6|##4/# #7|# #8/# #9|# #3/# #11|# #12/# #2\##6_##6|#
[16:17:59] <carbine> #5(##8_##8/# #3\##10_##10/##11|##11_##12/# #2|# #4|##4_##7/##7\##5_##5_##8_##8/# #9\##3_##3/##10|##10/# #12(##2_##2/# #4\##7_##7/##5|##5_##8/##8\##9_##9/##3|##3/##10\##10_##11/##11|##12/##12\##2_##2_##6/# #4|##4_##7/#
[16:18:03] <carbine> #10/##10|# #3/##3|# #11/##12|#
[16:18:06] <carbine> #10\##11|# #3\##10|# #12\##12|#
[16:18:09] <carbine>
[16:18:11] <carbine> #4_##0|# #4_##0|# #4_##0|##0_##12|##12_##4|# #4_##0|##0_##12|# #0_##12|#
[16:18:14] <carbine> #0_##0|# #0_##0|# #4_##4|# #4_##4|# #4_##4|# #12_##12|#
[16:18:17] <carbine> #0_##12|# #0_##12|# #0_##12|##12_##4|# #4_##0|##0_##12|##12_##4|##4_##0|# #12_##4|#
[16:18:20] <carbine> #12_##12|# #12_##12|# #0_##0|# #0_##0|# #0_##0|#
[16:18:22] <carbine> #4_##0|##0_##12|# #0_##12|##12_##4|##4_##0|# #0_##12|# #0_##12|# #4_##0|#
[16:18:25] <carbine>
[16:18:28] <carbine>
[16:18:31] <carbine> #4_# #12_# #4_##0_##0_##12_# #0_# #0_#
[16:18:33] <carbine> #4|# #0|# #12|# #4/# #0_##12_##12_##4|# #0/# #12\# #0|# #4|#
[16:18:36] <carbine> #0|# #12|# #4|# #0\##0_##12_##12_# #4\# #0/# #12_# #4\# #0|# #4|#
[16:18:38] <carbine> #0|# #12|##4_##4|# #0|##12_##12_##4_##4)# #0/# #12_##4_##4_# #0\##4|##4_##0|#
[16:18:41] <carbine> #12\##4_##4_##0_##0/##12|##12_##4_##4_##0_##0/##12_##12/# #0\##4_##4(##0_##0)#
[16:18:43] <carbine>
[16:18:46] <carbine> :o
[16:24:59] <vn> this place is even worse than commode..
[16:26:32] <oniRyan> obviously.
[16:26:45] <oniRyan> commode is where people hide from the IRC craziness
[16:26:52] <oniRyan> or just ... yeah, com is mostly cool
[16:27:01] <oniRyan> or so I've heard
[16:27:16] <carbine> #4_##7_##7_##5_# #9_# #11_# #6_# #5_##5_##8_##8_#
[16:27:17] <carbine> #4|# #7_##5_# #8)# #9/# #3\# #11|# #12|# #6|# #4|# #5/# #8_##8_##9_##9|#
[16:27:17] <carbine> #7|# #5_# #8\# #9/# #3_# #10\# #11|# #12|# #6|# #4|# #5\##8_##8_##9_# #3\#
[16:27:17] <carbine> #7|# #5|##8_##8)# #9/# #3_##10_##10_# #11\##12|# #2|##2_##6_##6_##4|# #7|##7_##5_##5_# #8_##9_##9_##3)# #10|#
[16:27:19] <carbine> #5|##5_##8_##8_##9_##9/##3_##3/# #11\##12_##12\##2_##2_##6_##6_##4_##4|##7_##7_##5_##5_##8_##8|##9_##9_##3_##3_##10/#
[16:27:22] <carbine>
[16:27:23] <vn> or so you've "read" :)
[16:27:31] <oniRyan> not really
[16:27:36] <oniRyan> I talk to nullogic on the phone alot
[16:27:46] <oniRyan> my vision is suck
[16:27:58] <vn> nice
[16:29:02] <carbine> #4_#
[16:29:02] <carbine> #4(##7_##7|# #8|##9_##9/##3o# #12o#
[16:29:02] <carbine> #5|# #9|# #11##,# #4_##4_# #5_# #9_#
[16:29:02] <carbine> #5|# #9|# #10|# #11/# #12\##2_##2|# #4/# #7\##5_##5/# #8|##9/# #3|#
[16:29:03] <carbine> #8\##9_##9/# #10|##11_##11/# #12\##2/# #6|##6_##4/##4\##7_##7_##5/# #9|# #3|##10_##10/#
[16:29:06] <carbine>
[16:29:09] <carbine>
[16:29:28] <carbine> #4V##4i##0s##0i##12o##12n#
[16:29:36] <carbine> #4U##4S##0A# #12-##12n##4-# #0w##0h##12a##12t##4n##4o##0t#
[16:30:04] <carbine> #4W##4e##0'##0r##12e# #4a##4l##0l# #12P##12A##4T##4R##0I##0O##12T##12S# #4h##0e##0r##4e#
[16:33:51] <graffz> lol
[16:33:55] * kyo313 (~kyo@sdf-FCDCEEBA.zone5.bethere.co.uk) has joined #sdf
[16:34:02] <graffz> enjoying your ascii art?
[16:34:25] <osirix> BEARBACK
[16:34:26] * aric (~aric@sdf-9161C819.sub-75-226-228.myvzw.com) has joined #sdf
[16:34:28] <osirix> INVOICES
[16:34:51] * ajgraves (~ajgraves@sdf-CF922DFD.ph.ph.cox.net) has joined #sdf
[16:34:57] <osirix> TASTE
[16:34:59] <osirix> THE RAINBOWWWWWWWWWWWWW
[16:35:44] * vn (root@sdf-7876BD5B.freeshell.org) Quit (Quit: Leaving.#)
[16:35:51] * vn (vn@sdf-7876BD5B.freeshell.org) has joined #sdf
[16:36:19] * ajgraves (~ajgraves@sdf-CF922DFD.ph.ph.cox.net) Quit (Quit: leaving#)
[16:37:03] <Ging> you people are fucking idiots!
[16:37:33] <Ging> why do you call a bank note a bill and a bill a cheque
[16:37:38] <osirix> UCKING FUDIOTS
[16:37:58] <carbine> #4f##4i##7g##7l##5e##5t# #8U##9S##9A# #3G##10I##10N##11G#
[16:38:01] <carbine> SHIT
[16:38:07] <carbine> #4_# #12_# #4_##0_##0_##12_# #0_# #4_##0_##0_##12_# #4_##4_##0_# #12_# #0_# #12_##4_##4_##0_#
[16:38:09] <carbine> #4|# #0|# #12|# #4/# #0_##12_##12_##4|# #0/# #12\# #4/# #0_##12_##12_##4|##4_# #0_##12|# #4\# #0|# #12|##12/# #4_##0_##0_##4|#
[16:38:12] <carbine> #0|# #12|# #4|# #0\##0_##12_##12_# #4\# #0/# #12_# #4\# #4|# #0|# #4_# #0|# #12|##12|# #0\##0|# #12|# #4|# #4_#
[16:38:15] <carbine> #0|# #12|##4_##4|# #0|##12_##12_##4_##4)# #0/# #12_##4_##4_# #0\# #0|# #12|##12_##4|# #0|##0|# #12|##4|# #0|##0\# #4|# #0|##0_##4|# #0|#
[16:38:18] <carbine> #12\##4_##4_##0_##0/##12|##12_##4_##4_##0_##0/##12_##12/# #0\##4_##4\# #12\##12_##4_##4_##0_##0|##12_##12_##4_##4|##0_##0|# #12\##4_##4|##0\##0_##4_##4_##0_##0|#
[16:38:22] <carbine>
[16:38:24] <carbine> THERE
[16:38:27] <carbine> #4_# #12_# #4_##0_##0_##12_# #0_# #4_##0_##0_##12_# #4_##4_##0_# #12_# #0_# #12_##4_##4_##0_#
[16:38:30] <carbine> #4|# #0|# #12|# #4/# #0_##12_##12_##4|# #0/# #12\# #4/# #0_##12_##12_##4|##4_# #0_##12|# #4\# #0|# #12|##12/# #4_##0_##0_##4|#
[16:38:33] <carbine> #0|# #12|# #4|# #0\##0_##12_##12_# #4\# #0/# #12_# #4\# #4|# #0|# #4_# #0|# #12|##12|# #0\##0|# #12|# #4|# #4_#
[16:38:36] <carbine> #0|# #12|##4_##4|# #0|##12_##12_##4_##4)# #0/# #12_##4_##4_# #0\# #0|# #12|##12_##4|# #0|##0|# #12|##4|# #0|##0\# #4|# #0|##0_##4|# #0|#
[16:38:37] <Ging> anyone wanna try and steel my car tonight?
[16:38:39] <carbine> #12\##4_##4_##0_##0/##12|##12_##4_##4_##0_##0/##12_##12/# #0\##4_##4\# #12\##12_##4_##4_##0_##0|##12_##12_##4_##4|##0_##0|# #12\##4_##4|##0\##0_##4_##4_##0_##0|#
[16:38:42] <carbine>
[16:38:44] <carbine> #4_# #12_# #4_##0_##0_##12_# #0_# #4_##0_##0_##12_# #4_##4_##0_# #12_# #0_# #12_##4_##4_##0_#
[16:38:47] <aric> ccccombo breaker
[16:38:47] <carbine> #4|# #0|# #12|# #4/# #0_##12_##12_##4|# #0/# #12\# #4/# #0_##12_##12_##4|##4_# #0_##12|# #4\# #0|# #12|##12/# #4_##0_##0_##4|#
[16:38:50] <carbine> #0|# #12|# #4|# #0\##0_##12_##12_# #4\# #0/# #12_# #4\# #4|# #0|# #4_# #0|# #12|##12|# #0\##0|# #12|# #4|# #4_#
[16:38:53] <carbine> #0|# #12|##4_##4|# #0|##12_##12_##4_##4)# #0/# #12_##4_##4_# #0\# #0|# #12|##12_##4|# #0|##0|# #12|##4|# #0|##0\# #4|# #0|##0_##4|# #0|#
[16:38:56] <carbine> #12\##4_##4_##0_##0/##12|##12_##4_##4_##0_##0/##12_##12/# #0\##4_##4\# #12\##12_##4_##4_##0_##0|##12_##12_##4_##4|##0_##0|# #12\##4_##4|##0\##0_##4_##4_##0_##0|#
[16:38:59] <carbine>
[16:39:02] <carbine> #0_##0_##12_##12_# #4_# #12_# #4_##0_##0_##12_##12_# #4_##0_##0_##4_# #0_# #12_##4_# #4_##0_##0_##12_# #4_##4_##0_# #12_# #0_# #0_# #0_##12_##12_##4_#
[16:39:06] <carbine> #0/# #12_##12_##4_##4|# #0|# #12|# #4|# #0_##12_##12_##4_##4/# #0_##4_##4_##0|# #12|##12/# #4/# #4|# #12_# #4\# #0/# #4_# #0\##0|# #12|# #0|# #12|# #0/# #4\# #4|# #0_#
[16:39:10] <carbine> #0\#
[16:39:12] <carbine> #0|# #12|# #0|# #12|##4_##4|# #0|# #4_##4|##0|# #4|# #12|# #4'# #0/# #0|# #12|# #4|# #0|# #4|# #0|# #12|# #4|# #12|# #4|# #0/# #4_# #0\# #12|# #4|##4_##0)#
[16:39:13] <Ging> i have removed the steering column and ecu
[16:39:15] <carbine> #12|#
[16:39:17] <osirix> GING <3 USAwhat car is it ging
[16:39:18] <carbine> #12|# #4|##0_##0_##12_##12|# #0_# #12|# #4|##0_##0_##4|# #0|##0_##12_##12_##4|# #0.# #12\# #4_# #4|# #0|##0_##4|# #0|# #12|##12_##4|# #0|# #12|##12_##4_##4_##0|# #12|##12_##4_##4_# #0/# #4_##0_##0_# #12\##4|# #0_#
[16:39:21] * nevezen (root@sdf-7876BD5B.freeshell.org) has joined #sdf
[16:39:22] <carbine> #4<#
[16:39:25] <carbine> #0\##0_##12_##12_##4_##4|##0_##0|# #12|##4_##4|##0_##0_##4_##4_##0_##0\##12_##12_##4_##4_##0|##0_##12|##12\##4_##4(# #0)# #12|##4_##4_##0_##0_##4/# #0\##0_##12_##12_##4/##4|##0_##0_##12_##12_##4_##4|##0_##0_##12_##12_##4_##4/##0_##0/# #0\##12_##12\##4_##4|#
[16:39:28] <osirix> is it an AMERICAN car?
[16:39:29] <carbine> #0\##0_##12\#
[16:39:31] <carbine> #4|##4/#
[16:39:34] <carbine> #12_##4_##4_##0_# #12_##12_##4_# #0_# #12_#
[16:39:35] <Ging> yeah
[16:39:36] <carbine> #12|# #4_##0_# #12)##12_# #4_##0|# #4|# #12|# #4|#
[16:39:37] <aric> Saleen S7
[16:39:38] <Ging> fiat punto
[16:39:39] <carbine> #4|# #0_# #12\##4|# #0|##0|# #4|# #12|# #4|#
[16:39:41] <carbine> #4|# #0|##12_##12)# #4|# #0|##4|# #0|##0_##12_##12_##4|# #0|##0_##12_##12_#
[16:39:42] <osirix> SALEEN?
[16:39:44] <carbine> #0|##0_##12_##12_##4_##4/##0_##0_##4_##4|##0_##0_##12_##12_##4_##4|##0_##0_##12_##12_##4_##4|#
[16:39:47] <carbine>
[16:39:49] <carbine> ARIC
[16:39:49] <Ging> can't get much more american than a fiat punto
[16:39:52] <carbine> WTF
[16:39:54] <carbine> #14W##15T##14F#
[16:39:55] <aric> lol
[16:39:57] <carbine> HONDA CIVIC
[16:39:59] <carbine> HONDA CIVIC
[16:40:02] <carbine> HONDA CIVIC
[16:40:04] <carbine> HONDA CIVIC
[16:40:07] * carbine saw an NSX yesterday by his house
[16:40:17] <carbine> And I was like, "JIZZED IN MY PANTS"
[16:40:18] <osirix> i saw what i'm pretty sure was an R8 the other day
[16:40:21] <osirix> oh, and a ferrari
[16:40:35] <carbine> I see ferraris all the time
[16:40:39] <Ging> arton sena invented the nsx
[16:40:48] * nevezen (root@sdf-7876BD5B.freeshell.org) Quit (Quit: Leaving.#)
[16:40:53] * nevezen (root@sdf-7876BD5B.freeshell.org) has joined #sdf
[16:40:53] <carbine> The NSX is rare around here. That's only the second I've ever seen on the street.
[16:41:16] <Ging> i like nsxs
[16:42:02] <Ging> they are not so good though
[16:42:22] <osirix> i'd rather have an M3 :)
[16:42:33] <Ging> nah nsx is better than m3
[16:42:46] <Ging> but they are like a shit ferrari
[16:43:51] <osirix> pshaw
[16:43:56] <osirix> we agree to disagree. :>
[16:44:03] * graffz (~graffz@A2114D5E.469E38B.9BFA2A16.IP) Quit (Ping timeout#)
[16:47:38] * davmonk-win64 (~dave.monk@98BF3E2A.8DCBB4F4.F0EA3360.IP) has joined #sdf
[16:48:10] <vn> I think I screwed up unrealircd.conf..
[16:48:48] <aric> start again from scratch
[16:48:53] <aric> =P
[16:48:58] <carbine> I want an M3 SO bad.
[16:49:00] <carbine> So.
[16:49:08] <osirix> i'm gonna get one.
[16:49:09] <osirix> next car
[16:49:10] <carbine> There was a fucking hornet in here.
[16:49:10] <osirix> that, or a leaf
[16:49:15] <carbine> And I hit it with a hammer.
[16:49:24] <carbine> And felt bad because it was still moving its little stinger.
[16:49:29] <osirix> so hit it again
[16:49:34] <carbine> So I cut its head off with a screwdriver.
[16:49:37] <carbine> It's still moving.
[16:50:08] <davmonk-win64> such violence.
[16:51:00] <osirix> KILL BILL VOLUME 8: HORNET
[16:52:09] <carbine> How the fuck is this thing still moving without a gead?
[16:52:11] <carbine> head**
[16:52:17] <carbine> It's legs and stinger are still moving.
[16:53:02] <aric> went into emergency chicken mode?
[16:53:27] <carbine> I mean... It can't walk...
[16:53:32] <carbine> It just kinda kicks.
[16:55:49] <osirix> crush
[16:55:54] <osirix> end misery
[16:56:49] <codejone> TIME TO KILL DA COMMIES
[16:56:55] * vn (vn@sdf-7876BD5B.freeshell.org) Quit (Quit: Jesus Saves! (And Esposito scores on the rebound!)#)
[16:56:58] * vn (vn@sdf-7876BD5B.freeshell.org) has joined #sdf
[16:57:03] <codejone> Ive steped on enough hooker faces today
[16:57:20] <codejone> lolvn
[16:58:45] <carbine> LOLCODEJONE
[16:58:51] <carbine> Get your goddamn plane ticket for PITTSBURGH
[16:59:58] <codejone> psh Ive got like 3 months to do that
[17:00:09] <carbine> The longer you wait the more the tickets cost
[17:00:19] <carbine> Time to go
[17:00:38] <osirix> YEAH
[17:00:40] <osirix> TIME
[17:00:40] <osirix> TO
[17:00:40] <osirix> GO
[17:01:56] <codejone> to bad because I already came
[17:07:50] <acidapex> me too
[17:07:56] <acidapex> work bathroom masturbation ftw
[17:11:20] <kyeho> ew
[17:11:39] <osirix> HELL YEAH
[17:11:39] <oniRyan> my DESK at work masturbation -- FTW
[17:11:42] <kyeho> sour diesel ftw
[17:12:28] <acidapex> what's the root password on wtfpgh?
[17:14:23] <osirix> Pty#13
[17:14:30] <osirix> you're not wheel though. :>
[17:15:03] <osirix> password is useless.
[17:15:11] <osirix> that's actually the root password on most of my boxes.
[17:15:20] * kyeho (~Owner@sdf-C97AE023.hsd1.nh.comcast.net) Quit (Ping timeout#)
[17:15:49] <osirix> PLZ2NOTHACK
[17:16:13] * kyeho (~Owner@sdf-C97AE023.hsd1.nh.comcast.net) has joined #sdf
[17:16:25] <osirix> k i'm leaving buy guise
[17:17:24] <ion> kby\
[17:22:10] * Steve_Dave (~Gordangum@sdf-BFE3882B.hsd1.md.comcast.net) Quit (Ping timeout#)
[17:28:24] * aric (~aric@sdf-9161C819.sub-75-226-228.myvzw.com) Quit (Quit: bbl#)
[17:52:08] <codejone> does anyone have antwpa and the wga fix?
[18:15:11] * robthew00t_1 (~Rob@sdf-80D163F7.hsd1.nh.comcast.net) has joined #sdf
[18:26:29] * kyeho (~Owner@sdf-C97AE023.hsd1.nh.comcast.net) Quit (Quit: Leaving.#)
[18:31:24] <codejone> roobthew00t_1
[18:36:50] <robthew00t_1> yes?
[18:42:53] <acidapex> give me your cunt
[18:43:12] <acidapex> how does wheel work
[18:47:00] <codejone> well it has no corners so it just kind of rolls
[18:47:59] <robthew00t_1> ???
[18:48:20] <codejone> did you turn that thing in?
[18:50:49] * nevezen (root@sdf-7876BD5B.freeshell.org) Quit (Ping timeout#)
[18:51:43] * nevezen (root@sdf-7876BD5B.freeshell.org) has joined #sdf
[18:52:00] <acidapex> no i mean this
[18:52:08] <acidapex> 21:14 <@osirix> Pty#13
[18:52:09] <acidapex> 21:15 <@osirix> you're not wheel though. :>
[18:52:09] <acidapex> 21:15 <@osirix> password is useless.
[18:52:09] <acidapex> 21:15 <@osirix> that's actually the root password on most of my boxes.
[18:52:53] * nevezen (root@sdf-7876BD5B.freeshell.org) Quit (Ping timeout#)
[18:52:53] * nevezen (root@sdf-7876BD5B.freeshell.org) has joined #sdf
[19:19:52] <robthew00t_1> i love sanford and son
[19:20:06] <robthew00t_1> and yes i did turn it in
[19:24:03] * dawiele (dawiele@sdf-E161DB16.team.at.shellium.org) has joined #sdf
[19:24:55] <codejone> but still no grade?
[19:26:22] <codejone> hi dawiele
[19:27:06] <dawiele> hi ;)
[19:27:16] <dawiele> alone in dark
[19:27:30] <dawiele> Fri Apr 30 19:27:55 EDT 2010
[19:27:45] <codejone> why not just turn a light on?
[19:29:13] <codejone> how is shellium dawiele?
[19:29:32] <dawiele> just signed yesterday
[19:30:35] <robthew00t_1> i haven't gotten a grade since lab 4
[19:30:37] <robthew00t_1> 4
[19:30:38] <robthew00t_1> 3
[19:31:38] <dawiele> studing cs?
[19:33:56] * davmonk-win64 (~dave.monk@98BF3E2A.8DCBB4F4.F0EA3360.IP) Quit (Quit: #)
[19:44:31] * dawiele (dawiele@sdf-E161DB16.team.at.shellium.org) Quit (Quit: leaving#)
[19:44:54] * vn_ (vn@sdf-7876BD5B.freeshell.org) has joined #sdf
[19:45:01] * vn_ (vn@sdf-7876BD5B.freeshell.org) Quit (Quit: vn_#)