00:05:04 *** fanat1ck (fanat1ck@cryto-CFD15E84.us-west-1.compute.amazonaws.com) has joined #crytocc 00:06:26 *** fanat1ck has quit (User quit: Connection closed) 00:31:32 *** Zekka has quit (Ping timeout) 00:55:49 04FichteFoll made 15 commit(s) to 03InsertNums on branch 10rewrite: '02Added contributors to README', '02Fixed Oleg Geiers Twitter name', '02Updated Package name in README', '02access to Default Hotkey', '02Added InsertNums to tools menu', '02Added @anthillape to contributors list', '02Code cleanup (and adjust name)', '02Add expression evaluation capabilitySyntax is "[:][~][::][!]"(e.g. `0~#010x::1< 00:56:50 04FichteFoll made 1 commit(s) to 03InsertNums on branch 10master: '02Add preview for the input panelAutomatically updates and cleans up undo stack (works on cancel too).Also fixes a regression with alpha mode.' (https://github.com/FichteFoll/InsertNums/compare/abd92e64c2...cee78aabf5) 01:48:03 *** Zekka (zekka@cryto-51547254.ph.ph.cox.net) has joined #crytocc 02:10:29 *** Goochy has quit (Ping timeout) 02:17:26 *** lblissett has quit (Ping timeout) 02:20:22 *** lblissett (lblissett@cryto-105D9F5B.torservers.net) has joined #crytocc 03:59:03 *** Ari (Ari@Ari.users.cryto) has joined #crytocc 04:39:00 *** pzuraq (pzuraq@cryto-D2623541.hsd1.ca.comcast.net) has joined #crytocc 04:46:39 *** pzuraq has quit (Input/output error) 04:48:32 *** Ari has quit (User quit: Leaving) 04:54:15 *** prism has quit (Ping timeout) 05:04:53 *** joepie91 (joepie91@cryto-3E6002EF.direct-adsl.nl) has joined #crytocc 05:57:00 *** pzuraq (pzuraq@cryto-D2623541.hsd1.ca.comcast.net) has joined #crytocc 06:00:07 *** pzuraq has quit (Ping timeout) 06:29:30 *** mama has quit (Ping timeout) 06:43:49 .tw https://twitter.com/myley__/status/406311036342382592 06:43:50 is there a black friday deal for college tuition or is that not a thing (@myley__) 06:58:20 *** iceTwy (iceTwy@cryto-610769D0.fbx.proxad.net) has joined #crytocc 07:13:27 *** iceTwy has quit (Ping timeout) 08:05:03 *** T0R_till (T0R_till@cryto-1D5E9F66.us-west-1.compute.amazonaws.com) has joined #crytocc 08:06:24 *** T0R_till has quit (User quit: Connection closed) 08:58:26 *** escape (root@AA590F93.362B7402.283603DB.IP) has joined #crytocc 08:58:32 ohai 09:14:06 http://i.imgur.com/7OQBDnO.png 09:14:09 hai 09:16:01 Meh, it's missing '; 09:17:28 I was surprised recently when I've seen new commit (py) importing re for just re.escape... 09:17:52 Then checked where that re.escape was used, and sure enough - to escape value into sql query 09:18:09 And that was inside django orm code (in models.py) 09:18:34 Can't imagine what went through that comitter's head at the moment :P 09:18:50 .) 09:19:15 Your nickname is very apt, sir ;) 09:23:52 :> 09:32:36 maybe even that was the intention when i choose it (. 09:49:00 Meh, it's missing '; 09:49:06 perhaps their SQLi protection stripped those out ;) 09:49:27 Can't imagine what went through that comitter's head at the moment :P 09:49:36 you'll have a field day looking at the code behind MySQLdb 09:50:29 As in pypi module or the db itself? 09:50:56 pypi module 09:51:07 you know how DB-API mandates passing on parameters separately? 09:51:20 well, they -are- passed on separately... until it hits the actual database code 09:51:27 then it's escaped and string-concatenated 09:51:39 MySQLdb doesn't actually do parameterized queries, it just pretends to 09:51:46 and escapes/concats in the background 09:51:46 lol 09:53:29 Heh, just like that PDO crap, apparently 09:53:51 MK_FG: no, PDO does actual parameterization 09:53:57 as does mysqli_ when you use it, apparently 09:54:00 Amazing to which lengths people can go to avoid doing parametrization 09:54:15 Not by default iirc - it was actually raised here 09:54:32 hm? 09:54:38 pretty sure that was a different thing 09:54:43 re: PDO 09:54:54 I vaguely recall a discussion about default PDO behaviour but it wasn't about parameterization 09:55:01 And sure enough - you have to pass some param for pdo to not hack around that parametrization, even though it's freaking obvious from the docs that it should... 09:56:05 http://stackoverflow.com/a/60496/1646435 09:56:17 "Note that when using PDO to access a MySQL database real prepared statements are not used by default. To fix this you have to disable the emulation of prepared statements. An example of creating a connection using PDO is:" 09:56:40 "$dbConnection->setAttribute(PDO::ATTR_EMULATE_PREPARES, false);" 09:57:52 eh 09:58:04 MK_FG: pretty sure that relates to prepared statements 09:58:05 not parameterization 09:58:13 they're not the same thing 09:58:30 Why not? 09:58:45 prepared statements == pre-analyzed query optimization by the SQL server 09:58:54 especially useful if you run the same query a lot with different args 09:59:04 parameterized statements == query and parameters passed on separately 09:59:32 it's just that prepared statements require the abstraction behind parameterized statements because you can't optimize the query if it's string-concatted because you don't know what the query is and what the parameters are 09:59:41 I think they are same from PDO standpoint - either it uses both or none 09:59:47 MK_FG: see above 09:59:49 it's a dependency thing 09:59:50 http://php.net/manual/en/pdo.prepare.php - " PDO will emulate prepared statements/bound parameters for drivers that do not natively support them, and can also rewrite named or question mark style parameter markers to something more appropriate, if the driver supports one style but not the other. " 10:00:02 afaik with MySQL it doesn't do prepared statements by default, but it DOES do parameterized statements by default 10:00:18 (if the driver supports it) 10:00:21 Should be easy to check with e.g. wireshark, actually 10:00:38 But don't have php or mysql anywhere :P 10:00:44 will look at it later 10:00:46 busy with $dayjob stuff now 10:12:11 *** escape has quit (User quit: Lost terminal) 11:16:30 *** monod (none@cryto-352FEE60.retail.telecomitalia.it) has joined #crytocc 11:16:35 hi there 11:16:44 loggy, pointer? 11:16:44 http://wire.cryto.net/logs/crytocc/2013-11-29#T11-16-44 11:16:50 thanks loggy 11:18:24 oh my, loggy has "ate" the %C in yesterday's logs, when I wrote colored characters 11:56:38 *** iceTwy (iceTwy@cryto-610769D0.fbx.proxad.net) has joined #crytocc 12:04:55 *** monod has quit (User quit: ) 12:23:45 *** iceTwy has quit (Ping timeout) 12:28:25 .title http://www.reddit.com/r/Bitcoin/comments/1roulj/china_telecom_accepts_bitcoin/ 12:28:26 joepie91: China Telecom Accepts Bitcoin. : Bitcoin 12:54:13 .title http://www.telegraph.co.uk/technology/news/10482816/Black-Friday-Bitcoin-users-get-hundreds-of-discounts.html 12:54:14 lysobit: Black Friday: Bitcoin users get hundreds of discounts - Telegraph 13:18:54 *** cayce has quit (Ping timeout) 13:36:26 *** monod (none@cryto-352FEE60.retail.telecomitalia.it) has joined #crytocc 13:36:35 quite afk 13:37:54 *** cayce (cayce@cayce.users.cryto) has joined #crytocc 13:40:25 actually 13:40:35 I think I will unplug internet 13:40:43 *** monod has quit (User quit: ) 13:48:31 *** zeniage (zeniage@cryto-9904015.dfri.se) has joined #crytocc 13:50:05 *** zeniage has parted #crytocc () 14:16:31 04FichteFoll made 2 commit(s) to 03package_control_channel on branch 10master: '02ImageMagick now supports ST3 as well.', '02Merge pull request #2432 from Kentzo/masterImageMagick now supports ST3 as well.' (https://github.com/wbond/package_control_channel/compare/7ac8782e7d...ed0a732393) 14:23:00 .tw https://twitter.com/joepie91/status/406427793853919232 14:23:01 Super-awesome #BlackFriday offer! Previously $0.00, now FREE! https://github.com/joepie91?tab=repositories #BuyBuyBuy #Consumerism (@joepie91) 14:35:59 *** mama (me@762F1F52.7D9BB031.9E9746ED.IP) has joined #crytocc 15:09:43 .bitcoin 15:09:44 1 BTC = $1087.50, 1 BTC = €848.00 15:09:46 omg 15:09:52 I want it to come down 15:09:52 ffs 15:53:36 *** Cryto466 (Cryto466@cryto-2A1F3B09.business.telecomitalia.it) has joined #crytocc 15:54:08 *** Cryto466 has quit (User quit: Page closed) 16:04:13 04FichteFoll made 1 commit(s) to 03InsertNums on branch 10master: '02Add stop mode (for numbers only currently)This allows to generate only to a specific number. If less numbers aregenerated than there are selections, the remaining regions are replacedwith an empty string (""). If more numbers are generated, all remainingnumbers are joined as multiline strings in the last region.A great example is `@i>100` which generates numbers from 1 to 16:45:37 *** iceTwy (iceTwy@cryto-610769D0.fbx.proxad.net) has joined #crytocc 16:52:38 *** iceTwy has quit (Ping timeout) 16:55:16 *** iceTwy (iceTwy@cryto-610769D0.fbx.proxad.net) has joined #crytocc 16:59:19 *** Zekka_ (zekka@cryto-51547254.ph.ph.cox.net) has joined #crytocc 17:02:10 *** Zekka has quit (Ping timeout) 17:05:04 *** tmbucky (tmbucky@cryto-763FD839.us-west-1.compute.amazonaws.com) has joined #crytocc 17:05:35 *** orbit (orbit@orbit.users.cryto) has joined #crytocc 17:05:38 Hey 17:06:25 *** tmbucky has quit (User quit: Connection closed) 17:14:26 *** mama has quit (Ping timeout) 17:17:11 *** mama (me@cryto-70E29873.torservers.net) has joined #crytocc 17:18:09 Hey 17:32:23 .bitcoin 17:32:24 1 BTC = $1094.16, 1 BTC = €847.00 17:32:32 hey ho 17:34:29 .title http://www.youtube.com/watch?v=wf8wURH4xJ4 17:34:30 lysobit: Stop Looking at the Price of Bitcoin - YouTube 17:35:21 Hey, how is everyone? 17:41:12 hai orbit 17:41:17 .welcome orbit 17:41:18 orbit: welcome to #crytocc! Please be aware that this channel is publicly logged, and make sure to read the rules in the channel topic. You may hide messages from the public logs by prefixing them with [off]. 17:41:19 etc etc 17:41:21 :P 17:41:55 lysobit: haha 17:42:02 Hey joepie 17:42:14 I've always wanted to join this IRC finally decided to. 17:42:27 .buffer 4 17:51:36 *** MrPinky (MrPinky@cryto-B3488B81.dfri.se) has joined #crytocc 17:51:39 hi 17:52:31 Hai 17:53:22 whats goin on? 17:53:35 Not much, you? 17:53:54 just doing some bugfixing for work 17:54:01 Ahh nice 17:54:04 ohai 17:54:08 other then that nothin much 17:54:34 joepie may Iask what langyage is botpie coded in? 17:54:43 *language 17:54:48 Python; it's a modified phenny 17:54:54 http://github.com/joepie91/phenny 17:54:57 has a bunch of custom modules 17:55:11 also, orbit, out of curiosity; do I know you from elsewhere? :P 17:55:15 Ahh nice, I've always wanted to write my own irc bot and I kno wa little python but a friend suggested I use perl. 17:55:16 Nope :) 17:55:31 I randomly googled your username one day out of boredom and found cryto.net 17:55:37 Sounded like a place I'd like to visit. 17:55:44 I'm not a great coder but meh I'm learning :P 17:56:25 ahhh 17:56:36 what languages do you use? 17:56:40 language(s) * 17:57:08 Yeah. :) Nice to meet you by the way, PHP, Perl and Python, I started learning C but I didn't really get past the basics, had a lot going on not much time to learn to code 17:57:15 hi joepie91 17:57:22 I see 17:57:42 orbit, you may find this a useful reference; https://github.com/ziadoz/awesome-php 17:57:59 hecking it now. 17:58:06 and for Python, I'd recommend looking at "Learn Python the Hard Way", depending on how far along in learning it you are 17:58:25 I don't really speak Perl, but the currently-absent daemon does :P 17:58:32 Fuck that's an awesome library 17:58:46 Ahh fair enough , do you prefer ptyhon over perl? 17:59:05 yes :) 17:59:10 the Perl syntax and I are not friends 17:59:10 heh 17:59:19 Sorry for my mis-spellings by the way, I'm on a svps and it's lagging like a bitch with my scottish internet. 17:59:23 Ah fair enough. 17:59:56 its lagging cause scottish drin to much 17:59:59 drink 18:00:02 :) 18:00:04 lol true. 18:00:07 :P 18:02:03 I think you might be the first scottish person we've had here 18:02:07 not entirely sure though 18:02:28 lool I'm so proud :') 18:02:31 lel 18:03:51 now I will read everything you type in a Scottish accent 18:04:06 *** iceTwy has parted #crytocc (Leaving channel) 18:04:54 eBay Inc. (Nasdaq: EBAY) is considering accepting virtual currency Bitcion. Speaking on CNBC, Head of eBay Marketplaces, Chris Payne, said eBay was looking into it.7 18:04:54 lel 18:09:39 lysobit: heh, really? 18:10:02 joepie91 18:10:12 you got an jabber server within cryto.net? 18:10:30 or just irc? 18:10:36 apparantly [citation needed] 18:10:49 lysobit: apparently * 18:10:50 http://www.streetinsider.com/Management+Comments/eBay+Inc.+%28EBAY%29+Considering+Accepting+Bitcion/8934241.html 18:10:57 MrPinky: just IRC 18:11:03 k 18:11:03 there's plenty of nice and stable XMPP servers 18:11:07 neko.im, dukgo.com... 18:11:19 neko.im ftw 18:11:23 exploit.im, is-a-furry.org (no really) 18:11:39 i know those but i believe in trusted connections 18:11:42 I used to have an is-a-furry.org xmpp they also have a public chatroom 18:11:51 MrPinky: don't trust a provider, use OTR :) 18:12:05 :) 18:12:16 never trust anyone .. 18:15:51 cryto should make a shell account system some time 18:16:38 we are just talkin about that lol 18:16:58 ahh nice 18:21:27 joepie91: just checking, I saw in the wiki you allow bots,is this still the case? 18:21:40 as long asthey are not anoying 18:22:48 orbit: depends 18:22:53 network-wide, sure 18:23:07 in this channel, only if there's no collision with existing bot commands (in particular botpie) 18:23:07 In this chan? 18:23:13 Ahh okay 18:23:14 botpie already does a lot 18:23:15 :p 18:23:15 Got you. 18:23:34 What exactly does it do ? :) 18:24:02 http://xeny.net/Phenny%20commands 18:24:16 plus .bitcoin, .whois, .lookup, and a few others I probably forgot 18:24:34 eg 18:24:37 .whois cryto.net 18:24:38 Domain 04cryto.net, registered on 042010-02-14T00:00:00 by 04Sven Slootweg via 04Internet.bs Corp., expires on 042014-02-14T00:00:00, nameservers are 04ns1.he.net, ns2.he.net, ns3.he.net, ns4.he.net, ns5.he.net, contact e-mails are 04jamsoftgamedev@gmail.com 18:24:41 Shit. 18:24:46 Wow 18:25:11 (that uses pythonwhois, a WHOIS parsing library I wrote) 18:25:32 I figured as much, I follow you on github xD 18:25:53 brb 18:25:55 ahh :P 18:26:02 ye :) 18:26:11 Sure MrPinky 18:26:28 is cryto quite active? 18:33:58 orbit: it depends 18:34:08 there are periods with a lot of conversation here 18:34:20 Fair enough. 18:34:21 but so far actual development [of code] has sadly been limited 18:34:29 in part that's my fault for not fixing infra soon enough :P 18:34:37 I much prefer quiet chans than messages ever 2 seconds lol 18:34:45 infra? 18:35:15 infrastructure 18:35:24 things like the tahoe-lafs grid are still not fully operational 18:35:32 Ah fair enough, once I get good at python I'll code some stuff under the cryto nam eif you want 18:35:34 ahh I see 18:35:38 or rather... 18:35:44 the API for it isn't operational yet 18:35:46 the grid itself is running 18:35:50 and, great :) 18:35:51 Ah I see 18:36:19 Sorry to ask I saw a mention of it on the wiki but what is tahoe-lafs 18:36:27 all I know is that it's an application you can install on debian lol 18:36:49 https://tahoe-lafs.org/trac/tahoe-lafs 18:36:54 http://tahoe-lafs.org'/ gives a good introduction 18:37:00 err, minus the ' 18:37:06 it's one of those few projects that actually explain their project well :P 18:37:06 ty guys :) 18:37:18 Ahh nice that's always hlpful 18:37:25 see also https://tahoe-lafs.org/trac/tahoe-lafs/browser/trunk/docs/about.rst 18:37:33 Oki 18:37:45 Aww shit 18:37:47 that's cool 18:42:51 *** pzuraq (pzuraq@cryto-D2623541.hsd1.ca.comcast.net) has joined #crytocc 18:45:48 joepie91 do you know a lot about servers? 18:47:17 orbit: very little about hardware, but enough about server management to not have stuff crash and burn 18:47:17 :P 18:47:29 (which is a decent amount, but definitely not an expert) 18:47:32 That's actually what my question was about 18:47:37 I just got my first VPS 18:47:50 and could I ask, what steps should I take to secure it? 18:48:09 https://projak.sx/secure/ 18:48:10 :) 18:48:15 I was going to disable ssh password access and use it with keys only and run a rotkit checker and keep shit up to date 18:48:17 Ahh! Thank you! 18:48:52 also switch the default ssh port to something more higher like 2022 18:48:56 Yeah iptables as well 18:49:03 yeah I was thinking about that 18:49:05 but 18:49:07 I thought 18:49:15 that since I was using jey auth I wouldn't need to change it 18:49:22 but your probably right :) 18:51:18 Thanks for the help guys :) I'm loving this server already 18:53:43 SSH port changing is kinda pointless 18:53:47 for securityt 18:53:50 security * 18:54:11 and it will break stuff that relies on SSH being on 22 18:54:13 Ahh okay noted, is it still worth changing though? 18:54:17 Ahh 18:54:17 (or make its use much more complicated) 18:54:18 Got you. 18:54:23 not really unless you're on a REALLY low-spec box 18:54:26 and the CPU usage is a problem 18:54:37 I got a 128MB and 1 GB one 18:54:46 RAM isn't important, CPU is :) 18:54:53 Ahh 18:54:57 anyway, justt disable password auth system-wide and use SSH keypairs and you'll be fine with that 18:54:58 Let me check 18:55:02 Okay :) 18:55:04 Thanks 18:55:15 depending on your paranoia you may also want to run an IDS 18:55:37 My paranoia level is very high so yeah good idea 18:57:14 Is there any IDS's you recomend? 18:59:56 04FichteFoll made 2 commit(s) to 03InsertNums on branch 10master: '02Add stop expr to alpha mode (and reduce dupe code)Example: `a@p=='u'` or `d@_==10`', '02Change i in env to the actual i (there's still _)' (https://github.com/FichteFoll/InsertNums/compare/016fb4dbf1...a4eb9b2a1f) 19:00:36 orbit: no idea 19:00:36 :) 19:00:46 Fair enough xD Thanks for all your help though 19:00:50 I would also not recommend running an IDS on the 128MB VPS 19:00:54 they tend to use quite a fair bit of resources 19:01:04 it'd likely make your 128MB commit suicide :P 19:01:06 Noyted 19:01:10 *Noted 19:01:17 by the way I got the 1GB one for 20$ a year 19:01:17 IDS isn't very useful if it takes down your VPS 19:01:23 if you want the offer I can send you it 19:01:25 I mean, sure, it technically protects it from compromise 19:01:25 but yeah 19:01:30 Fair enough 19:01:38 orbit: I'm guessing it is in Buffalo? 19:01:39 I only really use that for irc anywas 19:01:45 London :) 19:01:48 wha 19:01:53 where'd you get that from 19:11:14 *** pzuraq has quit (Input/output error) 19:29:54 * joepie91 is back 19:40:16 pathetic: http://yoyogames.com/tech_blog/33 19:44:37 *** iceTwy (iceTwy@cryto-610769D0.fbx.proxad.net) has joined #crytocc 19:59:44 hai iceTwy! 20:03:00 hai joepie91 20:03:07 joepie91: any good VPS offer to recommend? 20:03:11 it's Black Friday after all 20:03:17 * joepie91 sighs 20:03:21 iceTwy: fuck black friday :C 20:03:42 why? I love consumerism 20:03:52 * joepie91 raises eyebrow 20:03:54 especially when consumerism includes humans fighting like cows over something in a mall 20:04:06 i.e. #walmartfights 20:05:38 bleh 20:05:41 ice 20:05:42 also, iceTwy, we downloaded Hyves 20:05:51 that 20:05:51 you can get a 1GB VPS for 20$ a month 20:05:52 http://imgur.com/gallery/sF3OZgB 20:05:52 Dutch social network that's shutting down 20:05:55 we downloaded it :D 20:06:00 orbit: that's way too fucking much for a VPS 20:06:03 joepie91: congrats :D 20:06:06 NOO 20:06:08 wait 20:06:10 sorry 20:06:12 20$ a year 20:06:14 I got confused 20:06:23 iceTwy: we actually have like two days left 20:06:27 and we've run out of shit to archive 20:06:32 lol 20:06:38 joepie91: hahaha 20:06:48 orbit: atm I have no need for another VPS 20:06:49 but I WANT A VPS 20:06:50 well not entirely true 20:06:51 lol 20:06:53 there's a few other things 20:06:58 but no grabbing code for that yet 20:07:02 awaiting response from chfoo for that 20:07:18 hmkay. so you've got a couple of days left right? 20:08:14 two 20:08:33 l0l icetwy I could prolly give you a shell account 20:08:35 on one of mine 20:08:43 Not 100% sure but I think I could 20:08:50 I don't use my smaller one tbh 20:10:25 eh 20:11:34 Best I can do :c sorry 20:12:16 iceTwy; XMPP? 20:13:33 joepie91: yeah 20:21:35 *** pzuraq (pzuraq@cryto-D2623541.hsd1.ca.comcast.net) has joined #crytocc 20:24:41 *** pzuraq has quit (Ping timeout) 20:49:12 *** EmptyRedData (EmptyRED@cryto-DD45F604.dhcp.embarqhsd.net) has joined #crytocc 21:00:53 *** cayce has quit (Ping timeout) 21:11:01 *** monod (none@cryto-352FEE60.retail.telecomitalia.it) has joined #crytocc 21:15:27 right 21:15:37 backup job running time for me to sleep and see tomorrow how it went 21:15:37 :p 21:15:44 comma after 'running' 21:16:44 oh, good night joepie! 21:16:55 so unusual for you to go to bed at this time 21:17:01 of* you 21:17:21 I'm going to afk now 21:17:37 *** mikaa has quit (Input/output error) 21:17:48 :P 21:17:49 goodnight! 21:17:54 *** mikaa (mikaa@mikaa.cryto.net) has joined #crytocc 21:20:12 *** cayce (cayce@cayce.users.cryto) has joined #crytocc 21:23:29 *** cayce has quit (Ping timeout) 21:25:33 *** joepie91 has quit (Ping timeout) 21:28:31 *** zeniage (zeniage@cryto-E4DC62D1.spacedump.net) has joined #crytocc 21:28:46 hey 21:40:41 *** cayce (cayce@cayce.users.cryto) has joined #crytocc 21:45:36 *** GHOSTnew has quit (Ping timeout) 21:47:32 *** GHOSTnew (GHOSTnew@GHOSTnew.users.cryto) has joined #crytocc 21:50:01 *** tintin (tintin@F0AE85E0.5145288.A27E456C.IP) has joined #crytocc 21:52:36 hey there zeniage 21:52:45 I sort of like this quote; "All great truths begin as blasphemies. - George Bernard Shaw" 21:53:00 but to be honest, all great bullshit begins as blasphemy too 22:02:29 *** zeniage has parted #crytocc () 22:16:50 Heading off now guys 22:16:51 NIght 22:26:57 *** mama_ (me@60F0BC49.9144D476.78C94033.IP) has joined #crytocc 22:28:27 *** mama has quit (Ping timeout) 22:28:37 *** mama_ is now known as mama 22:40:03 lol iceTwy 22:40:06 just read that 22:40:16 monod: read wot 22:40:31 "All great truths begin as blasphemies. - George Bernard Shaw" 22:40:36 but to be honest, all great bullshit begins as blasphemy too 22:41:11 mwhahaha 22:45:28 g'night all! 22:46:03 *** pzuraq (pzuraq@cryto-D2623541.hsd1.ca.comcast.net) has joined #crytocc 22:46:09 *** monod has quit (User quit: parsing error: The copmuter is gonig to suthdwno eraly nwo) 23:03:10 *** cayce has quit (Ping timeout) 23:04:04 *** orbit has quit (User quit: WeeChat 0.4.1) 23:11:27 *** spun (spun@25550D75.AAE5986.BD857F75.IP) has joined #crytocc 23:11:47 ciao rega 23:12:18 *** spun has quit (User quit: Page closed) 23:23:25 *** cayce (cayce@cayce.users.cryto) has joined #crytocc 23:25:23 *** pzuraq has quit (Connection reset by peer) 23:25:28 *** Sabit (sabit@Sabit.users.cryto) has joined #crytocc 23:25:43 *** pzuraq (pzuraq@cryto-D2623541.hsd1.ca.comcast.net) has joined #crytocc 23:37:47 *** pzuraq has quit (Connection reset by peer) 23:38:09 *** pzuraq (pzuraq@cryto-D2623541.hsd1.ca.comcast.net) has joined #crytocc 23:40:48 *** Sabit has quit (Connection reset by peer) 23:51:26 *** orbit (orbit@orbit.users.cryto) has joined #crytocc