Cryto! 24 September 2013

00:12:05 Amnesthesia has quit (Input/output error)
00:53:37 skill3r (skill3r@developers.developers.developers) has joined #crytocc
01:41:25 lysobit has quit (nexus.cryto.net sputnik.cryto.net)
01:42:13 SpaghettiCode has quit (haless.cryto.net nexus.cryto.net)
01:53:25 wh1t3r4bb1t (antarctica@cryto-497FB66D.direcpc.com) has joined #crytocc
01:54:08 <wh1t3r4bb1t> sup
01:54:18 <Zoned> trolling on anonops
01:54:19 <Zoned> :)
01:54:21 <Zoned> hbu
01:54:51 <wh1t3r4bb1t> what are the pros and cons of globalizing my error handler class?
01:55:05 <Zoned> pros: nothing, cons: everything
01:55:05 <Zoned> ;)
01:55:06 <wh1t3r4bb1t> lol funny
01:55:15 <wh1t3r4bb1t> Im pluggin at this code
01:55:49 <Zoned> horrible fucking idea of me
01:56:00 <Zoned> to put this in a bufferedreader before coverting into array
01:56:01 <Zoned> -,-
01:56:52 <wh1t3r4bb1t> So I need to stop being lazy and instantiate my classes every time need them
01:57:19 <Zoned> yes
01:57:33 <Zoned> just make an autoloader
01:57:33 <Zoned> when you need it, call it
01:57:43 <wh1t3r4bb1t> It just sucks to have to write $blah = new blah() before I use it haha
01:58:17 <Zoned> Lmfao I got it even easier for my programming
01:58:46 <wh1t3r4bb1t> I wish I could always just be like $homie->kill->idiots and omit the creation of $homie >.<
01:58:58 <Zoned> $c->gm('modulename'); $c->moduleiwant->{method};
01:59:08 <wh1t3r4bb1t> Hmmm
01:59:20 <Zoned> do you not know how to do that...?
01:59:37 <wh1t3r4bb1t> Been reading about that today
01:59:54 <Zoned> sec ill write poc
02:00:45 <Zoned> class C { private static $inst; public function __construct(){ self::$inst =& $this; $this->get = new GetModule; } public static function &get_inst() {  return self::$inst; }  }
02:00:46 <wh1t3r4bb1t> I'm a kid from the school of shit tier programming who is migrating directly to god tier and it's the most awesome challenge ever.
02:01:13 <Zoned> now in the autoloader, create the controller
02:01:24 <Zoned> in your file you simply do $this->get('modulename');
02:01:33 <Zoned> you'd have to write a class for get though. gimmie  sec
02:02:41 <Zoned> class GetModule() { function __construct(){  } public function loadModule($name) { if(file_exists([..].$name) { require[...]; parent::$this->name = new $name;  } } }
02:02:48 <Zoned> instead of parent you can do $this->name = new $name;
02:02:57 <Zoned> however you'd have to do $this->get->$name->{method}
02:03:42 <Zoned> then if it pisses off like a little bitch, function __get($key) { $fw =& Controller::get_inst(); return $fw->$key; }
02:06:56 LastOneStanding has quit (Connection reset by peer)
02:07:17 <Zoned> Do you understand?
02:08:41 LastOneStanding (lalalala@5C0B2CEF.B458528D.147E7205.IP) has joined #crytocc
02:10:26 <wh1t3r4bb1t> Uhm... Kinda
02:10:41 <Zoned> what don't u understand?
02:11:58 LastOneStanding has quit (Connection reset by peer)
02:12:23 LastOneStanding (lalalala@5C0B2CEF.B458528D.147E7205.IP) has joined #crytocc
02:12:38 <wh1t3r4bb1t> Seems like $this = new this(); not so bad now haha
02:12:50 <Zoned> lmfao
02:13:03 <wh1t3r4bb1t> Unless wait.... I think I'm already doing that with my db class
02:13:13 <wh1t3r4bb1t> let me go look
02:13:56 <Zoned> Basically that example above
02:13:58 SpaghettiCode (pasta@code.bonanza) has joined #crytocc
02:13:58 lysobit (musalbas@localhost) has joined #crytocc
02:14:01 <Zoned> to load a module you'd do
02:14:14 <Zoned> $this->get->loadModule('test.mod');
02:14:36 <Zoned> $this->get->test.mod (no . but for this proof-of-concept its ok)->{method}
02:14:49 <Zoned> or $this->$modName(test.mod)->{method}
02:14:53 <Zoned> depends which route you want
02:16:25 <wh1t3r4bb1t> Ok but isn't it easier to just add a function to my class file that returns the class object and then do $this = this();
02:16:39 <Zoned> Not really.
02:16:54 <wh1t3r4bb1t> it works form anywhere in the script as long as that class has been loaded already
02:17:03 <Zoned> Personally I prefer the model-view-controller method for framework development
02:17:07 <Zoned> which is where that comes from
02:17:15 <Zoned> the controller is the base, then a submethod called get is called
02:17:25 <Zoned> then a sub-sub method is called which is loadModule
02:17:28 <wh1t3r4bb1t> THen I do $this->method(args)
02:17:49 <Zoned> Personally I prefer it with a MVC-style, it's easier for another programmer to understand
02:18:00 <Zoned> Instead of a bunch of random half-assed coding includes
02:18:14 <wh1t3r4bb1t> Hmm but scalability is the most important thing to me right now because I will have 10m people on this soon
02:18:29 van (van@cryto-1BC7DEDA.sw.res.rr.com) has joined #crytocc
02:18:44 <Zoned> personally, if a guy came up to me, asked me to review some shit and it was like function blablabla() { include 'database.php'; $database = new Database(); }
02:18:50 <Zoned> I'd already have issues with the code layout
02:19:16 <Zoned> wh1t3r4bb1t just take my suggest mate
02:20:05 <wh1t3r4bb1t> I'm just getting to the point of realizing how what I am writing is directly effecting scalability.
02:20:42 <Zoned> Hence why a MVC is better.
02:20:42 <Zoned> It's easy to scale from.
02:21:04 <Zoned> Controller = brain, Model = handles all the PHP/logic, view = plain html/text
02:21:09 <wh1t3r4bb1t> I am actually using MVC but I'm also converting a bunch of code I wrote while still in shit tier mode to this better MVC style
02:21:23 <Zoned> well, check out the PM I sent you
02:21:31 <Zoned> It's one of the best MVC's you could use at this time
02:21:36 <Zoned> Light-weight, easy to understand
02:22:23 <Zoned> For example, if you navigate to the Bootstrap, you'll see how the page is being worked.
02:22:53 <wh1t3r4bb1t> I need to take a class on MVC so I can get the whole gist from beginning to end.
02:23:08 <Zoned> a class? lol
02:23:19 <Zoned> I've never taken one programming class in my entire life.
02:23:33 <wh1t3r4bb1t> I've been learning it as I go which is fucked because I miss parts and am confuse till I readmoar
02:23:38 <Zoned> Self-teaching is the best way. No class will teach you anything better.
02:23:58 <wh1t3r4bb1t> I don't get the handles part
02:23:59 <Zoned> The only way to succeed is with many failures.
02:24:30 <Zoned> Learn from your mistakes, improve on them.
02:25:25 <wh1t3r4bb1t> So I get the controller and views part but not the model
02:25:33 <Zoned> SO, in this mate.
02:25:39 <Zoned> The view is just for the plain html/text.
02:25:48 <Zoned> No PHP (rather logic) should be done inside of it
02:26:09 <wh1t3r4bb1t> I am almost convinced that the model is rubbish but that's my shit tier mentality not overcoming the hurdle
02:26:25 <Zoned> Dispite what you believe, it's not.
02:26:32 <wh1t3r4bb1t> Is that the abstraction or wtf?
02:26:47 <Zoned> For example my view can have Hello <?=$data['name']?>
02:26:53 <Zoned> and how do we deterime data? from the model
02:27:10 <Zoned> in the model I'd do $data = array('name' => 'bob');
02:27:23 <Zoned> since the view is being rendered last, it picks up on that $data array object and can use it.
02:27:30 van has quit (User quit:  Leaving)
02:30:04 <Zoned> brb
02:30:37 <cayce> nice, dukgo is down for maintenance so I don't have xmpp
02:30:39 <cayce> derptastic
02:32:16 <Zoned> lol
02:33:50 <cayce> and god damnit why is joepie gone
02:33:53 <cayce> so much rage
02:34:00 <cayce> he's like the only fucker I want to talk to
02:34:04 <Zoned> lol cuz he has a life... i think?
02:34:18 <cayce> I guess I'll just tweet at him or something
02:35:27 <Zoned> lol
02:35:37 <Zoned> or you could troll bluevm support staff?
02:36:00 <cayce> do I have to?
02:36:04 <Zoned> no
02:36:06 <Zoned> but its a good idea
02:36:09 <cayce> I really want to implement a stupid idea
02:36:17 <cayce> it's a great idea
02:36:19 <cayce> but stupid
02:36:21 <Zoned> lol
02:36:33 <cayce> hint: machine parseable citations
02:36:39 <Zoned> i wrote a irc bot last night that all it does is join irc servers and channels with tons of people
02:36:40 <Zoned> and trolls them
02:36:41 <Zoned> :)
02:36:50 <Zoned> thats worth the 30 minutes it toook
02:37:17 <cayce> my teachers don't care which citation system I use, as long as I use the same one every time
02:37:27 <cayce> so I figured I'd make one that is easily machine parseable
02:37:34 <Zoned> cool.
02:37:44 <cayce> json citations anybody? no? damn!
02:38:11 <Zoned> I remember getting stupid questions in school like "Use the equation T = a + 2 * b + 3 * c + 4 * d / e
02:38:17 <Zoned> "
02:38:20 <Zoned> its like, lmfao, urhighright?
02:38:50 skill3r has quit (Ping timeout)
02:38:59 <cayce> well color me impressed
02:39:05 <cayce> dublincore has citation directives
02:39:21 <cayce> I'm gonna need coffee to read that bitch though, damn
02:40:08 <cayce> I'd say you're high, yeah, because there isn't even any calc in that. and you only have two types of operations to consider
02:40:09 <cayce> it's a joke
02:40:30 <wh1t3r4bb1t> Ok I see how you're doing it. I'm using a slightly different MVC style, or, am attempting to. There is absolutely no php allowed in my views as they are html files. The html file is read as a template for the display and the data is injected into it by replacing KEY_WORDS found in the view file.
02:41:20 <cayce> ugh do I have to write this entire system
02:41:33 <cayce> bibliographic markup system and example parser
02:41:35 <wh1t3r4bb1t> So, should I be using the model to swap the KEY_WORDS for the data and the controler to etermine what is being displayed?
02:41:36 <cayce> MORE WORK
02:41:37 <cayce> UGH
03:36:14 <cayce> have some music http://www.youtube.com/watch?v=9tg6fWgICD0
03:44:55 cayce has quit (Ping timeout)
04:00:33 cayce (cayce@cayce.users.cryto) has joined #crytocc
04:05:31 <tommykaine> http://starcasm.net/archives/215351
04:05:32 <tommykaine> lol
04:08:34 <cayce> I thought that was starscream
04:08:35 <cayce> hahahaha
04:08:39 <cayce> >can't read
04:08:42 <tommykaine> lol
04:08:48 <tommykaine> heres music for ya
04:08:48 <tommykaine> http://www.youtube.com/watch?v=uXYB5AzmUFk
04:08:57 LastOneStanding has quit (User quit:  <censored> you guys, I'm going home.)
04:09:27 <cayce> I was thinking
04:09:28 <cayce> NP: [Mashur - Star Scream] [Star Scream] [244kbps] DeaDBeeF 0.5.6-3jane
04:09:31 <cayce> :P
04:09:53 <cayce> sounds like hardstyle!
04:10:34 <cayce> man, thanks for dropping me back into electronic music
04:11:31 <cayce> http://www.youtube.com/watch?v=nGhBOhCnx1I
04:11:32 <tommykaine> coding music 80 gigs...
04:11:34 <cayce> ^ that's my shit
04:11:42 skill3r (skill3r@developers.developers.developers) has joined #crytocc
04:11:48 <cayce> THAT is my electronic music
04:11:50 <cayce> :3
04:12:06 <cayce> haha what
04:12:10 <cayce> why is there a hole in my hand
04:12:15 * cayce fixes
04:14:21 <cayce> MMM
04:14:22 <cayce> FUCK
04:14:28 <tommykaine> M&Ms
04:14:41 <cayce> http://www.youtube.com/watch?v=1KESaPHYzQo
04:14:46 <x> no
04:14:47 <cayce> THIS SHIT
04:14:49 <cayce> aaaaaaah
04:14:51 <cayce> so sexy
04:14:53 <tommykaine> you already linked that
04:14:56 <cayce> nope
04:15:06 <cayce> mescaline is not hashish
04:15:07 <tommykaine> ooo
04:15:12 <cayce> guitars!
04:15:34 <tommykaine> http://www.youtube.com/watch?v=2i8NUfl7tW4&feature=share&list=FLpt58itFlT_TAIRw7IDtBww
04:15:34 <cayce> so much sex in flac
04:15:36 <cayce> NP: [1200 Micrograms - Mescaline] [1200 Micrograms] [904kbps] DeaDBeeF 0.5.6-3jane
04:15:53 <cayce> and then... zang!
04:16:04 <tommykaine> OOOOY WANKER!
04:16:24 <cayce> this kind of music is also dangerous when I'm riding my bike
04:16:38 <cayce> because I try to match the music... and injure myself
04:16:50 <cayce> did it once, though
04:16:53 <tommykaine> http://www.youtube.com/watch?v=AdyHXj6h_PE
04:16:57 <tommykaine> watch that ^
04:17:04 <cayce> 5.6 miles in 16 minutes
04:17:13 <cayce> I do not recommend that pace
04:17:15 <cayce> just sayin'
04:17:43 <tommykaine> mescaline is dangerous when you ride your bike like cycle or moter? :P
04:18:48 <tommykaine> you catch that cayce?
04:18:58 <cayce> catch?
04:19:07 <cayce> I'm watching your weird rap music
04:19:31 <tommykaine> lol I don't understand it i like the beat
04:19:43 <cayce> ahhhh :D
04:20:02 aLLamoox has quit (Ping timeout)
04:20:29 <tommykaine> i normally tune off tone turn of bass
04:22:19 <cayce> mmm http://www.youtube.com/watch?v=5LN7W3EtRMg
04:22:27 <cayce> hate the rest of that cd, but that song is good
04:29:23 <tommykaine> saintanic music? :P
04:29:38 <tommykaine> satanic music*
04:30:09 <tommykaine> http://www.youtube.com/watch?v=j_recmJrY5Y
04:31:03 <cayce> why did you type the same thing twice
04:31:19 <tommykaine> fixed my spelling
04:31:20 <cayce> one of them had an asterisk, though, so I guess it wasn't exactly the same
04:33:11 <cayce> ahhhhhh here we fucking go
04:33:11 <cayce> http://www.youtube.com/watch?v=3Ui0TiehuxU
04:34:59 <tommykaine> nice i like that one gotta save that :D
04:35:04 <tommykaine> you like dub?
04:36:48 <cayce> dunno
04:36:50 <cayce> wassat
04:36:54 <tommykaine> http://www.youtube.com/watch?v=bioYs6oAD8g
04:37:05 <tommykaine> kinda like that just he explains what hes doin
04:37:30 <tommykaine> if you like that ill send you another guy who is really good big in us
04:40:07 <cayce> I like it yeah
04:40:41 <cayce> awh wait is he gonna start speaking
04:40:42 <cayce> ugh
04:41:05 <tommykaine> yeah i hate that hes really good but he talks alot lol
04:41:33 <cayce> he's tolerable
04:41:47 <cayce> some of the other music I've heard like this the singers are intolerable
04:42:07 <cayce> his voice is okay, they usually just rage and scream and can't hold a tune if I had a gun to their head
04:42:17 <tommykaine> lol
04:42:37 <tommykaine> http://www.youtube.com/watch?v=344OpaQCAQI&list=RD028g1vEXz5BvA
04:42:58 <tommykaine> this guy you might want to skip a few second ahead his music is pretty good
04:45:19 <cayce> it's fun :D
04:47:31 <wh1t3r4bb1t> You know how I show dominance?
04:48:03 <cayce> http://www.youtube.com/watch?v=NHd40RuWPKI
04:48:29 <wh1t3r4bb1t> I em right in the face.
04:48:37 <cayce> by ripping off your vagina and beating people with it?
04:48:38 <tommykaine> like this whiterabbit? http://www.youtube.com/watch?v=QSKBoO5hBHk
04:48:39 <wh1t3r4bb1t> *fuck em
04:48:57 <wh1t3r4bb1t> With my vagoo yes
04:49:03 * cayce dances
04:49:04 <tommykaine> Cayce lol what is this?!
04:49:05 <wh1t3r4bb1t> Vagoo face fuck
04:49:18 <cayce> tommykaine:) amazing, that's what it is
04:49:36 <tommykaine> 1940s music!
04:49:41 <cayce> I like to think of it as old spirited new music
04:49:52 <cayce> the beat pattern is, yes
04:49:55 <cayce> and some of the samples
04:50:48 <cayce> oh that reminds me
04:51:02 <tommykaine> turn of your music
04:51:02 <tommykaine> http://www.youtube.com/watch?v=RyfCTZB6Nrk
04:51:04 <tommykaine> sound
04:51:09 <tommykaine> up lol
04:52:23 <cayce> It's good too!
04:52:35 <cayce> do you think these two songs exclude one another?
04:52:48 <tommykaine> what you mean?
04:53:11 <cayce> Usually people link me old slow music like this as "shut up newbie, this is what real music is"
04:53:25 <cayce> it sounded like that's what you meant ><
04:54:22 <tommykaine> ooo no shareing you more music. I think you live in a diffrent country so im showing you my feel of oldie music
04:54:47 <cayce> if I gather correctly, we live in the same country
04:55:01 <tommykaine> where do you live?
04:55:14 <wh1t3r4bb1t> jane lives in hell
04:55:17 skill3r has quit (Ping timeout)
04:55:25 <tommykaine> lol
04:55:38 <wh1t3r4bb1t> I mean Australia
04:56:39 <cayce> not particularly hellish, nor astray-lya
04:56:39 <wh1t3r4bb1t> or as we here in antarctica refer to as Asstrailya
04:56:57 <tommykaine> I'm in merica!
04:57:27 <wh1t3r4bb1t> muricans are so potato
04:57:45 <tommykaine> potato po tato
04:57:46 <cayce> tommykaine:) no shit, I'd have never guessed :P
04:57:53 <tommykaine> lol
04:58:14 <tommykaine> you as well than?
04:58:19 <cayce> yep
04:58:26 <tommykaine> ahh you never know on here!
04:58:51 <wh1t3r4bb1t> their last president could barely count to g. only because his first name started with that number
04:59:16 <cayce> meh, he had a very good vice president
04:59:35 <wh1t3r4bb1t> lmfao
04:59:42 <tommykaine> vice are always good not the prime member of the house
05:00:41 <cayce> YES
05:01:02 <wh1t3r4bb1t> doesn't matter where you are from in about 48 months the whole world will be governed by the same party.
05:01:22 <cayce> http://www.youtube.com/watch?v=p0KWyWwVp0E
05:01:24 <cayce> bam!
05:01:28 <wh1t3r4bb1t> Well it mostlt is now but they are just going to announce the merger to the public ;)
05:01:30 <cayce> or, boum!
05:01:52 <tommykaine> yeah obama going to take over
05:04:59 <cayce> NP: [Imagine Dragons - Radioactive] [Night Visions] [986kbps] DeaDBeeF 0.5.6-3jane
05:05:15 <cayce> I really wish someone would remaster this song
05:05:21 <cayce> it has so much potential just squandered
05:08:22 <tommykaine> ill have to look that one up, anyhow i gotta head off nap time :P
05:08:27 <tommykaine> take it easy guys
05:11:28 <cayce> night
05:14:32 foolex has quit (Ping timeout)
05:18:12 foolex (foolex@5D6B0912.EC145393.9A74EEF1.IP) has joined #crytocc
05:23:22 <cayce> oh god why
05:23:28 <cayce> brazilians are coming out to me
05:23:29 <cayce> why
05:23:35 <wh1t3r4bb1t> http://www.youtube.com/watch?v=U7r3EL-bzs8
05:23:57 <cayce> "Unless the next words are 'Can I stick my dick in your ass?' I don't give a fuck
05:24:09 <x> free anal
05:24:25 <cayce> not overly interested
05:24:31 <wh1t3r4bb1t> Can I stick my dick in your ass?
05:24:32 <cayce> the free part concerns me
05:24:41 <cayce> nothing costs nothing :P
05:25:01 * x slips my dick in both ur asses n e way
05:25:09 <x> <3
05:25:20 <wh1t3r4bb1t> The faggotry
05:25:25 <x> lol
05:25:28 <wh1t3r4bb1t> omw >.<
05:25:30 <cayce> faggot tree? where?
05:25:37 <cayce> I want a faggot tree
05:25:51 <x> they grow fruits
05:26:04 <wh1t3r4bb1t> and nuts
05:26:21 <x> which fall when wet
05:26:49 <x> :p
05:27:11 <wh1t3r4bb1t> Balls Deep III - The Search For Colon
05:27:38 <x> Colon went deep sea diving
05:28:17 <x> got the benz from surfacing too fast
05:28:40 <x> now Colon shrivled up inside itself
05:28:48 <x> k im done
05:30:13 <wh1t3r4bb1t> i hope so
05:30:29 <wh1t3r4bb1t> I find no reason for 4 levels in MVC
05:30:30 <cayce> hot
05:30:39 <cayce> making 5?
05:30:44 <wh1t3r4bb1t> If I have a controler why the fuck tdo I need a router?
05:31:13 <cayce> $reasons
05:31:13 <wh1t3r4bb1t> if I have a router why the fuck to I need a controller?
05:31:24 <cayce> middle men!
05:31:32 <wh1t3r4bb1t> Fuck that
05:31:46 <wh1t3r4bb1t> it's ignorant
05:32:24 <wh1t3r4bb1t> I'm officially inventing RMV
05:32:27 <cayce> You're just fessin' man, just fessin'
05:32:31 <wh1t3r4bb1t> Routed Model Views
05:32:43 <cayce> so an app server
05:32:45 <x> :p
05:32:47 <cayce> got it
05:33:58 <wh1t3r4bb1t> So much better because you only need one router file BUT if you would like to be a complete assnugget you could break your router file up in to several files to further complicate shit
05:34:06 <wh1t3r4bb1t> There now everyone can be happy
05:35:08 <wh1t3r4bb1t> I win. Game over Call it a day and where's my fucking slippers?
05:35:14 <wh1t3r4bb1t> ;)
06:08:53 <MK_FG> cayce, Within Temptation has "Radioactive" on their late cover album (re:remaster)
06:34:53 x has quit (Input/output error)
07:26:56 joepie92 (joepie91@cryto-3E6002EF.direct-adsl.nl) has joined #crytocc
07:32:10 landrone has quit (Ping timeout)
07:33:03 <wh1t3r4bb1t> Hello joepie92
07:33:15 <wh1t3r4bb1t> If that's your real name. haha
07:50:15 <joepie92> ohai
07:50:18 *** joepie92 is now known as joepie91
08:05:04 pjtyler (pjtyler@cryto-877F24CC.us-west-1.compute.amazonaws.com) has joined #crytocc
08:06:26 pjtyler has quit (User quit:  Connection closed)
08:22:05 aLLamox (aLLamox@398B0A86.F9399D25.E1DAE158.IP) has joined #crytocc
08:57:19 X (root@4E6EB0A4.6EAD44EB.EE7F2A74.IP) has joined #crytocc
09:27:49 foolex has quit (Client exited)
09:32:23 foolex (foolex@5D6B0912.EC145393.9A74EEF1.IP) has joined #crytocc
10:20:51 aLLamox has quit (User quit:  )
10:47:30 cayce has quit (Ping timeout)
11:06:53 cayce (cayce@cayce.users.cryto) has joined #crytocc
11:22:10 landrone (Adrian@cryto-812F49C0.carolina.res.rr.com) has joined #crytocc
11:48:51 <norbert79> joepie92 has been demoted
11:55:54 <joepie91> lol
11:55:55 <botpie91> joepie91: 23 Sep 15:44Z <Macbeth> tell joepie91 that I have something to ask him when he comes online
12:01:16 *** X is now known as piebot91
12:03:01 <norbert79> Hmm, wonder what that could have been
12:03:04 <norbert79> I know
12:03:08 <norbert79> you are the father!
12:11:06 *** piebot91 is now known as joepie93
12:19:16 <joepie93> I AM THE ONE WHO KNOCKS.
12:19:35 <joepie91> joepie93: you are the one that should accept an XMPP friend request
12:19:36 <joepie91> :P
12:20:32 <joepie93> I DID
12:20:40 <joepie91> not seeing you come online yet
12:20:42 <joepie93> Oh wow
12:20:44 <joepie93> You sent another one
12:20:56 <joepie93> sorry
12:27:31 Cryto541 (Cryto541@cryto-E2423847.static.tpgi.com.au) has joined #crytocc
12:29:30 <Zoned> loggy, pointer?
12:29:30 <loggy> http://wire.cryto.net/logs/crytocc/2013-09-24#T12-29-30
12:29:58 <Zoned> joepie93 lelelele hai x
12:30:04 <Zoned> joepie91, got a second?
12:30:38 Cryto541 has quit (Ping timeout)
12:35:05 <joepie93> I am the real pai pai
12:40:16 <Zoned> * X is now known as piebot91
12:40:21 <Zoned> * piebot91 is now known as joepie93
12:40:47 tommykaineM (tommykaine@cryto-54263292.tmodns.net) has joined #crytocc
12:40:48 <joepie93> ;________;
12:40:56 <Zoned> ;)
12:40:56 <joepie93> All other pais are less real than I
12:41:10 <tommykaineM> omg hes alive!
12:41:31 *** Zoned is now known as xpie1337
12:41:32 <xpie1337> <3
12:41:47 *** xpie1337 is now known as Zoned
12:41:57 <joepie93> <3
12:42:12 <Zoned> fucking stupid java
12:42:38 <Zoned> file contents to 2d array.
12:42:38 <Zoned> -,-
12:42:47 <joepie93> Make sure to use more binary in your code. Always helps me.
12:42:54 <Zoned> lol :)
12:43:20 <Zoned> its not that, its the fact I have to start at like line 8 in the file then proceed down and then convert to array
12:43:25 <Zoned> then I have to split the array
12:43:31 <Zoned> to run a math equation
12:45:30 <tommykaineM> binary extension
12:46:01 <Zoned> It's a stupid fucking math equation in this
12:46:27 <Zoned> L = a ( b / c ) + d * e / g - h * 2
12:47:45 <joepie93> >plz use brackets
12:48:21 <Zoned> lelelel <3
13:07:46 crytocc662 (crytocc662@cryto-1F485798.index.hu) has joined #crytocc
13:08:39 crytocc662 has quit (User quit:  Page closed)
13:40:26 <joepie91> I just literally spent 5 minutes chopping off chunks of ice, with a knife, on the inside of our freezer
13:40:34 <joepie91> the door wouldn't close because of all the ice that had formed
13:40:35 <joepie91> wtf.
13:56:11 <cayce> hahaha
13:56:55 <cayce> freezer:1 joepie91: 0
14:06:17 <joepie91> cayce: yeah, pretty much
14:06:18 <joepie91> lol
14:09:11 <cayce> NP: [Charles Trenet (w/Wal-Berg & His Orchestra) - Boum!] [The Electro Swing Revolution CD 2] [383kbps] DeaDBeeF 0.5.6-3jane
14:22:16 mama has quit (Ping timeout)
14:25:19 mama (me@cryto-399FF2DF.ro1.torservers.net) has joined #crytocc
14:25:52 tommykaineM has quit (Ping timeout)
14:26:43 <joepie93> joepie91 sup? still online?
14:27:15 tommykaineM (tommykaine@cryto-54263292.tmodns.net) has joined #crytocc
14:59:57 joepie91 has quit (Ping timeout)
15:00:22 joepie91 (joepie91@cryto-3E6002EF.direct-adsl.nl) has joined #crytocc
15:11:12 <zxcvbnm> o herr0
15:13:45 <joepie91> ohai
15:13:52 <joepie91> zxcvbnm, read about my fridge adventures?
15:17:01 <zxcvbnm> you have a fridge now?
15:17:02 <zxcvbnm> :P
15:17:26 <zxcvbnm> your blog always disappears from my address bar.
15:18:37 <zxcvbnm> o its not on your blog
15:26:02 <joepie91> zxcvbnm: lol
15:26:02 <joepie91> no
15:26:02 <joepie91> <joepie91>I just literally spent 5 minutes chopping off chunks of ice, with a knife, on the inside of our freezer
15:26:02 <joepie91> <joepie91>the door wouldn't close because of all the ice that had formed
15:26:02 <joepie91> <joepie91>wtf.
15:27:45 <joepie91> oh wow
15:27:55 <joepie91> a petition that's actually going to kinda sorta have some kind of effect: http://www.orlandosentinel.com/entertainment/blogs/tv-guy/os-disney-bob-iger-talks-to-fbn-on-tuesday-20130923,0,6916222.post
15:31:27 <zxcvbnm> joepie91: i'd like to see video of you hacking away at ice w/ a knife :P
15:32:07 <tommykaineM> a petitio  that does nothing?  
15:34:53 ebola (ebola@ebola.users.cryto) has joined #crytocc
15:35:50 <joepie91> zxcvbnm: I'd imagine I would've looked quite stupid
15:35:50 <joepie91> but hey
15:35:55 <joepie91> I have to close that freezer *somehow*
15:37:50 <zxcvbnm> lol
15:37:58 <zxcvbnm> thats why I would've liked to have seen a video of it
15:40:09 <joepie91> zxcvbnm: oh well
15:40:16 <joepie91> there's always a video of me eating frikandellen!
15:41:41 <joepie91> http://www.tannr.com/herp-derp-youtube-comments/
15:59:41 <zxcvbnm> lol
16:12:54 mama has quit (Client exited)
16:17:31 <tommykaineM> i need that for my lady friend lol
16:17:42 mama (me@76FB8616.647B0DE2.6976A0E0.IP) has joined #crytocc
16:49:17 <joepie91> it's time for me to sleep
16:51:24 <lysobit> at like 5pm?
16:56:26 LastOneStanding (lalalala@5C0B2CEF.B458528D.147E7205.IP) has joined #crytocc
16:56:59 LastOneStanding has parted #crytocc (Leaving)
16:57:47 <joepie91> lysobit: 19:00
16:58:00 <lysobit> I concur
16:58:01 <joepie91> I go to sleep around 18:00 normally and wake up around 02:00 - 03:00
16:58:11 <joepie91> joepie sleep schedule is best sleep schedule
16:58:23 <joepie91> see also: http://ngokevin.com/blog/5pm/
16:58:24 <joepie91> :P
16:59:29 <lysobit> it's perhaps the implications of living indoors
17:48:55 ebola has quit (Ping timeout)
17:57:23 mama has quit (Ping timeout)
18:01:46 ebola (ebola@ebola.users.cryto) has joined #crytocc
18:24:24 norbert79 has quit (Input/output error)
18:30:33 mama (me@6640B9B0.68A2B7CE.949D01E9.IP) has joined #crytocc
18:35:28 aLLamox (aLLamox@AC91846A.9E47557B.E1DAE158.IP) has joined #crytocc
18:39:11 ebola has quit (Connection reset by peer)
19:13:12 Gooch has quit (Connection reset by peer)
19:16:46 <wh1t3r4bb1t> good moarning!
19:19:58 <aLLamox> Good Morn~ wh1t3r4bb1t
19:20:11 <zxcvbnm> gud merning
19:30:59 <Zoned> morning
19:54:51 <tommykaineM> henrey?
19:55:26 GHOSTnew has quit (Input/output error)
19:56:49 GHOSTnew (GHOSTnew@GHOSTnew.users.cryto) has joined #crytocc
19:56:59 <tommykaineM> anyone know good site toge
19:57:09 <tommykaineM> get public records of pekple
19:57:24 <Zoned> yes
19:57:30 <Zoned> but why would you need one?
20:15:49 <tintin> pipl.com
20:17:41 GHOSTnew has quit (User quit:  Quitte)
20:17:48 GHOSTnew (GHOSTnew@GHOSTnew.users.cryto) has joined #crytocc
20:18:01 <Zoned> Lmfao, PIPL
20:18:02 <Zoned> lel
20:18:23 <Zoned> reminds me those hf kids who ar e like "d0x us1ng p1pl l1k3 us l33t h4x0rz"
20:19:34 <tommykaineM> sorry tLling on phone hehe  trying to pull my record  think my idenity has been stolen...
20:19:46 <Zoned> lelel
20:19:51 <Zoned> whats your full legal name ;) ill check
20:21:59 <tommykaineM> (). ()
20:22:05 <tommykaineM> im goid!
20:22:07 <tommykaineM> ood
20:22:55 <tommykaineM> someone opened up 4 ccs in my name kinda crazy
20:24:26 <Zoned> lol
20:24:43 <Zoned> if you can gimmie your name I can make it 5 ;)
20:25:12 <tommykaineM> well i guess that  be cool
20:38:21 <Zoned> lol
20:47:36 zxcvbnm has quit (User quit:  leaving)
20:51:24 crafy_d (crafy_d@crafyd-08896.users.cryto) has joined #crytocc
20:57:04 crafy_d has quit (User quit:  Viva la revolución ☭ o/)
20:58:41 aLLamox has quit (Ping timeout)
20:58:45 aLLamox (aLLamox@BF0A72AB.44B095EC.E1DAE158.IP) has joined #crytocc
21:03:31 tommykaine has quit (Ping timeout)
21:03:32 tommykaine (tommykaine@cryto-FDFCDFCD.dsl.emhril.sbcglobal.net) has joined #crytocc
21:16:42 ebola (ebola@ebola.users.cryto) has joined #crytocc
21:21:36 <tommykaineM> ok zoned
21:39:48 aLLamox has quit (User quit:  )
21:53:00 <Zoned> lol
22:11:31 <Zoned> stupid IGMP -,-
22:13:43 tommykaineM has quit (Ping timeout)
22:17:44 tommykaineM (tommykaine@cryto-54263292.tmodns.net) has joined #crytocc
22:23:21 tommykaineM has quit (Client exited)
22:25:05 <tommykaine> igmp?
22:25:28 <tommykaine> what they do to you
22:27:41 joepie91 has quit (Ping timeout)
22:28:28 joepie91 (joepie91@cryto-3E6002EF.direct-adsl.nl) has joined #crytocc
22:31:54 <tommykaine> http://www.youtube.com/watch?v=okhfDsKmAoY
22:35:43 <Zoned> hehehe
22:35:49 <Zoned> Hostname: bn1msgr1011808.gateway.edge.messenger.live.com
22:35:55 <Zoned> skype getting sloppy
23:13:36 joepie93 has quit (Ping timeout)
23:15:38 joepie91 has quit (Ping timeout)
23:16:11 joepie91 (joepie91@cryto-3E6002EF.direct-adsl.nl) has joined #crytocc
23:19:51 <Zoned> hai joepie91, got a second?
23:24:18 <joepie91> Zoned: depends on what it's about
23:24:28 <Zoned> it's just a quick question
23:25:45 <Zoned> joepie91: sent it over xmpp, as it's not suitable for IRC
23:50:17 mama has quit (Ping timeout)