[00:05] http://imgur.com/gallery/qleuW [00:05] Schbirid: How did you set up your server to help AT? And how much are you paying a month? [00:06] Schbirid: the server you mentioned earlier with 100Mb connection. I'm interested in getting one...if the price is right. [04:59] arkhive: btw, Schbirid had been gone for 2.30 hours prior to you attempting to ask the question [05:00] er, 3.30 hours [07:10] oh [07:10] do you know about using servers for AT andthe costs [07:11] and i'm going to bed. it's 1:11am here [07:11] but let me know.. i'm leaving irc on. night [07:24] arkhive: afaik schbirid has a free server from a OVH campaign [07:34] Multiple free servers, I think. [13:57] i think ovh has servers available again right now ovh.com/bhs [14:02] oops, i had one laying around for 3 weeks unused [14:03] check the sofa cushions! [14:05] time to slap tor on it just to make it useful [14:14] Schbirid: by the way, what format are those archives you wanted to serve from a compressed/deduped setup? [14:15] html files in many directories [14:15] oh [14:15] i would use anything [14:15] tar.gz seems alright [14:15] what are they currently? [14:15] dunno if i put them into 7z yet [14:15] i have them as many seperated 7z files though [14:15] 7z would be terrible for CPU usage when serving them out [14:16] yeah [14:16] you have to decide on the tradeoff between compression ratio and CPU usage to access a file from within [14:17] I suppose 7z wouldn't be too bad if it weren't solid, but then you aren't much better off than a zip file for compression ratio [14:18] the targz is 15G which is alright with me [14:18] havent tried zip iirc [14:18] care to see what tar.bz2 does? [14:19] well, serving the tar.gz with avfs and google bot accessing pages every few minutes already used all cpu (load of ~5) [14:19] or would bz2 be better to uncompress? [14:19] loadavg is not indicitive of cpu usage [14:20] bz2 is split into discrete blocks, which would make random access easier (if you had the code in place to do random access) [14:21] whereas, while gz can have multiple blocks, it isn't required, and backreferences can be made across a block boundary [14:24] (so you would have to index the location of the start of each block in the compressed file, the location in the uncompressed stream, and the state of the window, or as much as is needed based on scanning the data) [14:24] (bz2 could do random access with a minimum of compressed block start offset and uncompressed stream offset) [14:30] nice, i will try it [14:32] unfortunately, I am not aware of any existing software that really allows such random access [15:11] hmmm winr4r :O [15:15] oh [15:21] oh nice, my robots.txt files 7z finished. 300MB :) [15:36] avfs says it does [15:36] access to the uncompressed files without caching to whole file. [15:36] o Indexing of gzip and bzip2 files. This achieves fast random [15:38] uploading episode 30 of GBTV [15:38] :-D [15:38] i almost have you guys up to november 2011 with this [15:39] just know the earlyer copys was re-encoded to be at 800mb [15:54] SmileyG: hmm? [15:56] oh, the £414 battery pack? that is hilarious [15:57] yah [15:57] is that serious price? [15:59] SmileyG: well, the same seller has lots of nikon batteries, listed at not-totally-insane prices [16:00] but then they have D1 batteries listed at *fucking insane* prices [16:00] i just ordered one from another seller, for £14 [16:01] D: [16:01] Weird. [16:02] maybe they're cashing in on the ebaying-so-drunk-they-read-£414-as-£14 market [16:09] AAAAArugh [16:09] * SmileyG just crashed vbox twice in a row freezing his system [16:09] p.s. don't drink and ebay, there's people willing to take advantage of you [16:09] SmileyG: :< [16:09] what happens if you crash it twice in a row, rather than once? [16:10] world ends.; [16:12] oh, you meant you crashed your system twice [16:12] never mind [16:39] more on the passwords that were leaked the other day: http://boingboing.net/2012/07/12/crummy-passwords-from-yahoo-us.html [16:40] direct link http://pastebin.com/2D6bHGTa [16:41] loweralpha: 146486 (33.08%) [16:41] damn [16:42] ncie tool http://www.digininja.org/projects/pipal.php [16:59] ~200 of the alexa top 10000 domains disallow / for ia_archiver [17:04] how do i make an easy bash for loop over a-z? [17:06] bash rules so much [17:06] {a..z} [17:07] yes it does [17:07] except where its syntax is shit [17:07] i thought it was [a-z] though [17:09] [ evaluates tests, so it can't be [ [17:09] (case in point, heh) [17:10] that said, if you write e.g. for i in [a-z]; do echo $i; done [17:10] depending on your version and environment you WILL get something that starts out like a loop [17:10] but it will not behave the way you expect: [17:10] well, just try it if you're on bash 3.2.48 [17:10] I don't know what the fuck it does on 3.2.minorrevisionup [17:10] much less 4 [17:11] [ with a space after it evaluates tests [17:11] then I don't know what [a-z] is actually doing [17:11] [ is an alias/link to the "test" command [17:12] go to your home directory, do "ls [a-c]*" [17:12] oh, it's a range [17:12] then go tell me how wrong i am about it [17:12] in pathname expansion [17:12] but not in for loops [17:12] ok [17:12] so it's a range in a different context [17:12] QED :P [17:12] bash sucks so much [17:13] yipdw: yes it does [17:13] yipdw: it made us argue about stupid shit [17:13] it's like that asshole who goes to a party and starts fights between people who would otherwise be friends, "hey did you hear what he just said?" [17:14] i mean that guy SUCKS [17:14] bash is fantastic for quick hacky [17:15] I guess [17:39] bash is fantastic as a command interpreter [17:46] I'd say it's about as good as Marcus Brutus [17:46] it's pretty good until it stabs you in the back [17:47] and it has a bunch of hidden state [17:47] (if someone can clarify /etc/bashrc vs. ~/.bashrc vs. /etc/profile.d vs. ~/.bash_profile for me that'd be pretty cool -- I keep forgetting what does which and when) [17:48] also, I don't hate bash [17:48] well, the ~ ones are user specific [17:49] I keep forgetting which apply to interactive vs. non-interactive shells [17:49] and it doesn't seem to be consistent across systems anyway [17:49] Ubuntu uses bash_profile for interactive shells, I think [17:49] I'm not sure if CentOS does [17:50] maybe it does [17:50] I know one recommendation is that you just source one from the other [17:50] which seems to be an admittance of "hey guys we may have done fucked this up a bit" [17:51] * yipdw shrugs [17:51] I've been fixing bash-related crap for a couple weeks, so I'm probably just venting [17:51] i did that minutes ago :P [18:49] yipdw: if you find yourself doing that, it's probably best to write in python or perl [19:00] by "python or perl" i mean "something that isn't bash" [19:05] i wish the software world would move to python3 alltogether already [19:06] yipdw: http://www.joshstaiger.org/archives/2005/07/bash_profile_vs.html - best short explanation I've seen [19:07] Schbirid: meh [19:07] not really all that much reason to do so [19:09] i love this story so much http://www.untoldentertainment.com/blog/2011/03/05/holding-the-bag-how-i-gamed-gdcs-top-social-game-developers/ [19:42] hey everyone [19:42] uploading more GBTV [19:43] this is guy is BIG data [19:43] with 4 to 5gb of week of shows it takes alot of time to upload [19:48] awesome [23:08] and the vuln is supposedly fixed: http://www.theregister.co.uk/2012/07/13/yahoo_fixes_password_hole/