[01:18] http://krugman.blogs.nytimes.com/2014/06/16/creative-destruction-yada-yada/ [03:17] Paul Krugman has clearly never used MongoDB [03:17] the disruption made me rethink the importance of 20th century concepts like durability [03:18] and atomicity [03:45] that's, like, a really shitty article on his part [03:46] I see, he's using schumpeter's definition of creative destruction, too [03:46] that sucks, complexity theory's is much better [03:53] when I was four, I know I destroyed the living room a lot [03:53] I should have called that creative destruction and made billions [03:54] http://www.justin.tv/ [03:54] oh nice [03:54] justin.tv creatively destroyed themselves [07:24] yipdw: maybe he installed mongo on 32bit. [07:24] common mistake [07:51] did they have all that shit at the top before? [07:51] "animals" ? really ?! [07:52] dumb things archlinux devs do: make updatedb run right after booting, every fucking day [07:53] o_O [07:54] "hey ken, how can we best annoy users and make the system take a really long time to become usable?" [08:17] schbirid: well what they could do is run a fsck every day before that [08:17] making it a double whammy [09:48] http://perturbator.bandcamp.com/album/dangerous-days [09:48] (easily downloaded with youtube-dl) [11:37] funny how when they talked about napster stealing music they then put the website at the bottom of the screen when showing the napster program [11:47] i found another clip from 2000 [11:48] msnbc had this 100 day tour during the 2000 campaign [11:49] funfact, i stopped smoking 3 days ago, im kinda fried atm [11:49] godane: you probably know this, i need to upload to a collection using the python uploader, any example how to directly do this? [11:50] i don't use the python uploader [11:50] ah [11:50] i use my own curl uploader script [11:51] you probably already told me that. [11:54] joepie91: you use OpenSuSE as a Linux desktop, or just as a server OS? Thinking of using it on my next laptop [12:51] midas: try something like this... http://pastebin.com/Ti3zHsD9 [12:52] the usual disclaimers apply: make sure your keys are exported, make sure you can write to the collection, ymmv, yada yada yada [12:52] SadDM: i think i tried something already, lemme check what i actually uploaded [12:53] awesome, i did it correctly [12:53] do you have a lot of related stuff to upload? [12:54] I ask because if you do, you might look into ias3upload [12:54] It reads in from a csv, sanity checks it and will retry uploads if they fail [13:17] im dumping in tar's for the FTP grab [14:23] midas, you stopped smoking? :D [14:23] im about to start again if my brain doesnt explode :X [14:23] It'll pass [14:23] i actually stopped smoking on sunday, yesterday was manageable [14:23] today is pure horror [14:24] Alternatively, start vaping [14:24] start fapping? silly you :p [14:24] (i used to vaporise weed, so yeah) [14:28] midas, you're so silly. :p [14:28] You don't vape actual cigarettes [14:28] You get this fluid thing that *doesn't* kill you slowly if you inhale it. :p [14:29] midas: http://www.kindgirls.com/ for soothing the mind [14:29] e-cigs are pretty neat [14:29] hahha e-cigs [14:29] I love my bulb tool too [14:29] yeah could try that [14:29] midas, that's what vaping is. >.> [14:30] And yeah, you should [14:30] for uh "essential oils" [14:30] vaping is something different here :P [14:30] Obligatory /r/vaping link [14:30] "link" [14:30] We have a bot for that in #DataHoarder :p [14:30] http://www.cannabissearch.com/imgs//articles-25.jpg [14:31] lol [14:31] What network is #DataHoarder on? [14:31] brb, need to fix some shitty script i wrote 6 months ago [14:31] freenode [14:31] ^ [14:31] dont go there! most of them are here anyway :P [14:31] http://www.deluxecig.com/e-cig-liquid-e-juice/ plus there's so many flavors! [14:32] I thought I was in it on freenode, hm [14:32] But #DataHoarder doesn't need a -bs channel, we talk about each other's personal issues in the main channel! :D [14:34] * underscor honks [14:35] i'm on that channel now [14:35] https://24.media.tumblr.com/dd58fc1e7c263d1890769dc9ce65230a/tumblr_mqz592H4VP1rphtnfo1_500.png [14:35] and underscor beat me [14:35] XD what do you mean? [14:36] Ravenloft: I want to be a sophisticat :( [14:36] your there first [14:36] oh I see [14:40] godane, you're not in #DataHoarder... Did you misspell it like underscor? [14:40] Or did you maybe join #DataHoarder on EFNet instead? :p [14:44] underscor sophism is rampant in felines those days [14:46] sophism? [14:47] Aha [15:10] midas: stopped smoking? :o [15:10] YES [15:10] 2 FUCKING DAYS AGO [15:10] STOP REMINDING ME! [15:10] * joepie91_ claps [15:11] lol sorry :P [15:11] no im sorry, fucking hell coffee isn working, stopped smoking on the wrong day/week/year [15:12] i just tried to rebuild one of my old scripts, cant remember how i made it [15:12] midas: right time of the year actually, early summer-ish time is best time [15:12] because good weather -> better mood [15:12] :P [15:12] summer is the worst, smokes + beer + boat [15:13] and what does said script do [15:14] the part i need to change is the reporting part of a backup directory [15:14] it's fucking easy [15:14] did it a million times [15:14] gets the size of the folder + files in it, adds it in a mail done [15:14] just cant remeber how i did the newlines part [15:15] but it's 1700 hours, done with today [15:15] * joepie91_ confuse [15:15] ? [15:15] du -sh > mail [15:15] brain cant do thinking anymore [15:15] er [15:15] du -sh | mail [15:15] yeah [15:15] !!! [15:15] i know! [15:15] but [15:15] oh fuck it, im done for today :P [15:15] :P [15:17] so let's say you want to filter items in an array [15:17] Ruby: arr.filter { |a| ... } [15:18] Objective-C: [arr filteredArrayUsingPredicate:[NSPredicate predicateWithBlock:^BOOL(id object, NSDictionary *bindings) { ... }]]; [15:18] just saying [15:20] I guess Haskell is even better, e.g. [ x | x <- arr, ... ] [15:21] actually I wonder if there's a website that lists ways to filter a list in various languages [15:25] YES! i remembered! [15:26] and out of here! [15:28] midas: re: smoking... You're two days in. You're almost done the harest part. Keep quitting. You've got it covered. [15:46] fyi: washing cheese graters aggressively makes them bite back [15:46] (just a friendly hint) [15:47] yipdw: items = [x for x in items if x.blah = "herp"] [15:47] (py) [15:47] er, ==* [15:47] items = (x for x in items if x.blah == "herp") [15:47] coffeescript [15:48] PHP: $items = array_filter($items, function (item) { return item.blah == "herp"; }); [15:49] livescript: idk, there's probably a specific syntax for it [15:49] also, yipdw, why exactly does anybody like objective-c [15:50] nobody does [15:51] I've heard otherwise :| [15:51] I've had people tell me it's the best thing since sliced bread [15:53] those people probably haven't figured out what a bread knife is [15:55] hahaha [16:47] ohhdemgir, why aren't you on Freenode? [16:47] another ssd died XD [16:48] got os reinstalled, just setting everything back up slowly, loads to do tonight though, mehhh [16:49] Haha [16:49] Guess I'll just PM you here. :p [16:49] yup yup :# [17:01] how the fuck do you get curl to display a progress bar on upload? [17:01] or is it just debian not doing it? [17:02] sven@linux-rfa7:~/rips/youtube> curl --help | grep progress [17:02] -#, --progress-bar Display transfer progress as a progress bar [17:02] try it [17:07] you have to set the output to /dev/null though [17:08] schbirid: I presume that to get a progress bar or status, you need to make it not output to stdout [17:08] right [17:08] -o /dev/null should work [17:10] i am uploading [17:11] or does that apply there too? [17:11] lol it does [17:11] makes sense actually [17:11] thanks [17:12] and like s3cmd once did, it spams the console as much as it can... [17:12] 1.6 megabytes/s of cursor movement, yay [17:13] lol [17:13] schbirid: could've been worse, could've been piping an under construction GIF through VLCs ncurses output filter [17:13] i would prefer that [17:14] lool [17:14] lol * [18:02] As the resident n00b of this channel, I am happy to say that I am successfully using lftp and wget. I am excited to try my hand at a project very soon. Awesome. [18:05] :D [18:05] JohnnyJac: Neat :) [18:06] I realize that makes me uber n00b, buuuttttt... yeah. [18:09] JohnnyJac, let me know if you need any help, I'm on IRC so much that people don't think I sleep. :p [18:09] JohnnyJac: Meh, don't care about that [18:09] You and joepie, it seems. [18:10] SN4T14: SEE, I TOLD YOU SO [18:10] lol [18:10] (JohnnyJac: I'd been telling SN4T14 how I always got accused of not sleeping :P) [18:12] Ah. Glad I could help prove a point. [18:12] lol [18:22] :) [20:45] looks like someone screwed up making this podcast of cbs evening news: https://archive.org/details/CBS.Evening.News.2007.08.11 [20:45] there is block in here the ads would be [20:45] but also cam is on turn most of the breaks [20:48] godane, your wrong words are in the order. [20:48] *block where the ads would be [20:48] cam=camera [20:49] on turn = turned on [20:49] godane -> yodane -> yoda northeast [20:51] hehe [20:52] i got CBS News Anatomy of a News Story [20:52] from 1970s it looks like [20:53] you can watch it here for now: http://www.cbsnews.com/videos/public-eye-news-story/ [21:01] ... that's interesting [21:01] looks like GMail is parsing Facebook notifications to generate G+ recommendations [21:02] thanks, google! [21:08] right, night people :) [21:08] night midas [21:09] 'night midas [21:09] night midas [21:16] ooh, forgot to mention i finished adding metadata to every issue of cryptolog: https://archive.org/search.php?query=subject%3A%22Cryptolog%22 [23:01] does anyone know how to get a ALL urls using cdx [23:04] all so i want to know what the cookie is to get access to non-public urls: https://github.com/internetarchive/wayback/tree/master/wayback-cdx-server [23:05] its in the access control [23:05] section [23:23] heh [23:24] goal! [23:24] fuck Russia [23:30] joepie91_: have you used OpenSuSE on the desktop or only as a server OS? Thinking of using that for my new(er) laptop [23:30] :( [23:31] dashcloud, stop being silly and use a proper distro. :p