[00:21] Let's get googlecode running again [00:21] it will go to FOS [00:21] I'm sorting and requeueing some items [00:45] We have restarted Google Code!! [00:46] I thought the contents of Google Code are staying where they are, just read-only [00:46] or is Google probably going to delete them? [00:47] We're grabbing the original content and URLs [00:47] not the Google Code archive by Google [00:47] oh [00:47] The Google Code Archive is a great thing, but it does miss some information [01:04] *** dashcloud has quit IRC (Read error: Operation timed out) [01:07] *** dashcloud has joined #archiveteam [01:22] *** Start has joined #archiveteam [01:26] is this the right place to talk about emularity? [01:27] *** RedType has left [01:47] i don't know if this is the correct place to talk about this or not but we should probably save the Google Drive-hosted homepages before they're deleted [01:47] What are you referring to? [01:48] arkiver: also, I have the URL list we were talking about the other day, but the details are a little different to the information I was initially given [01:48] great! [01:49] It's quite late here and I'm almost going to bed though [01:49] Would you have some time in around 10 hours? [01:49] @Frogging http://googleappsdeveloper.blogspot.com/2015/08/deprecating-web-hosting-support-in.html [01:49] arkiver: sure [01:50] Oh. Yeah. That should probably be saved Guest45 [01:50] davidar: thanks! have a good day! [01:51] :) [01:55] *** JesseW has joined #archiveteam [02:06] *** philpem has quit IRC (Ping timeout: 260 seconds) [02:07] we should also probably save the windstream cable ISP domains too [02:07] err, homepages [02:07] path: home.windstream.net/USERNAME [02:11] can I throw *.customer.netspace.net.au into the list too? [02:13] *** tomwsmf-a has quit IRC (Read error: Operation timed out) [02:15] *** ndiddy has joined #archiveteam [02:15] Haha.. anything acquired by TPG/iiNet needs saving ASAP :) [02:28] *** xXx_ndidd has quit IRC (Read error: Operation timed out) [02:32] *** kcaj has quit IRC (Quit: ZNC - 1.6.0 - http://znc.in) [02:45] *** nwf has quit IRC (Read error: Operation timed out) [02:45] *** closure has quit IRC (Read error: Operation timed out) [02:46] *** kcaj has joined #archiveteam [02:46] *** aMunster has quit IRC (Read error: Operation timed out) [02:46] *** pgoetz has quit IRC (Read error: Operation timed out) [02:46] *** MMovie has quit IRC (Read error: Operation timed out) [02:46] *** pgoetz has joined #archiveteam [02:47] *** vegbrasil has quit IRC (Read error: Operation timed out) [02:48] *** beardicus has quit IRC (Read error: Operation timed out) [02:49] *** kcaj has quit IRC (Client Quit) [02:53] *** kcaj has joined #archiveteam [03:06] dxrt: so, basically almost all of the au ISPs? :p [03:06] yeah sadly.. [03:07] *** closure has joined #archiveteam [03:07] dxrt: is there anyone left that isn't part of the big 3 by now? [03:08] I'm honestly struggling to think of any. iiNet slowly but surely swallowed most of the little guys over ten years or so.. and then TPG came along and it was all over. [03:09] :( [03:09] But lots and lots of valuable stuff that needs saving! [03:13] *** vegbrasil has joined #archiveteam [03:25] *** acridAxid has quit IRC (marauder) [03:26] *** acridAxid has joined #archiveteam [03:34] *** nwf has joined #archiveteam [03:37] *** JesseW has quit IRC (Quit: Leaving.) [03:42] *** closure has quit IRC (Read error: Operation timed out) [03:42] *** nwf has quit IRC (Read error: Operation timed out) [03:45] *** vegbrasil has quit IRC (Read error: Operation timed out) [03:47] *** rossdylan has quit IRC (Read error: Operation timed out) [03:48] *** mhazinsk has quit IRC (Ping timeout: 633 seconds) [03:52] *** wyatt8740 has joined #archiveteam [03:53] *** Jonimus has quit IRC (Ping timeout: 633 seconds) [03:56] *** wyatt8740 has quit IRC (Ping timeout: 246 seconds) [04:14] *** aMunster has joined #archiveteam [04:14] *** vegbrasil has joined #archiveteam [04:17] *** MMovie has joined #archiveteam [04:17] *** closure has joined #archiveteam [04:23] *** beardicus has joined #archiveteam [04:24] *** mhazinsk has joined #archiveteam [04:26] *** bwn has quit IRC (Ping timeout: 492 seconds) [04:27] *** wyatt8750 has joined #archiveteam [04:31] *** wyatt8750 has quit IRC (Client Quit) [04:32] *** nwf has joined #archiveteam [04:34] *** wyatt8750 has joined #archiveteam [04:45] Hey, does anybody know if it's possible to get a specific file from a warc archive with warcat without extracting the whole thing? [04:53] or some other way to pull a specific cile out? [04:53] file* [04:57] https://pypi.python.org/pypi/Warcat/ [04:57] extract ought to do it [04:57] oh wait, without extracting the whole thing [04:57] sorry [04:57] yeah XD [04:58] you could iterate through the records, look for the appropriate request/response pairs, and extract that [05:00] *** Jonimus has joined #archiveteam [05:00] hmmmm [05:00] *** vitzli has joined #archiveteam [05:01] how exactly would i go about that? [05:02] *** wvdp has quit IRC (http://www.kiwiirc.com/ - A hand crafted IRC client) [05:05] the only way that's immediately clear to me is warcat's library interface, so you'll be using Python if you choose that route [05:05] i'll check out the API [05:06] you'd be checking out each record in warc.records and matching the headers in the WARC header or content header blocks for what you want [05:07] another possibility is using indexes on WARCs to speed things up [05:07] well i actually have the exact offset and stuff i want [05:07] {"target":{"container":"warc","offset":48081856711,"size":654183},"src_offsets":{"entry":48808889856,"data":48808890368,"next_entry":48809544704} [05:07] in that case you might not need warcat [05:07] *** atlogbot has joined #archiveteam [05:07] yeah? [05:08] if you have the offset and size of the record, you can extract it directly [05:08] how would i go about that? [05:08] *** Sk1d has quit IRC (Ping timeout: 250 seconds) [05:08] typically gzipped WARCs are zipped per-record, so if that offset refers to an offset in the file you can just seek there and copy size bytes out [05:09] er, refers to an offset where a gzipped record starts [05:09] I don't know what WARC this is [05:09] it's a megawarc [05:09] that's the offset/etc for the warc within that that i'm after [05:09] if that's how warc's work [05:10] I forget if the offset refers to a byte offset in the compressed WARC [05:10] but you might as well assume it does and try [05:10] sure [05:11] in fact [05:11] no need to assume [05:11] https://github.com/ArchiveTeam/megawarc [05:11] the JSON spec is there, with annotations [05:11] awesomesauce [05:11] okay cool so i can probs pull it out with dd then yeah? [05:12] I guess [05:13] guess i'll try it [05:15] *** Sk1d has joined #archiveteam [05:17] *** wyatt8750 has quit IRC (Ping timeout: 246 seconds) [05:27] ayy it worked [05:30] *** JesseW has joined #archiveteam [05:39] *** wyatt8750 has joined #archiveteam [05:58] *** roninski has joined #archiveteam [06:00] *** roninski1 has quit IRC (Ping timeout: 258 seconds) [06:33] *** Stiletto is now known as Stilett0 [06:43] *** dxrt- has quit IRC (Remote host closed the connection) [06:45] *** dxrt- has joined #archiveteam [06:46] *** dxrt sets mode: +o dxrt- [06:47] *** JesseW has quit IRC (Quit: Leaving.) [06:49] *** JesseW has joined #archiveteam [06:54] *** JesseW has quit IRC (Client Quit) [06:58] *** JesseW has joined #archiveteam [07:51] OK, I'm going to do a URLteam search for all the ISP webspace URLs listed on http://archiveteam.org/index.php?title=ISP_Hosting [08:39] *** Tomcat_ has joined #archiveteam [08:41] There are **117** URL patterns on that page (excluding offline ones) [08:43] In 5 old files, it's already found over 22,000 URLs. [08:45] *** JesseW has quit IRC (Quit: Leaving.) [09:15] *** philpem has joined #archiveteam [09:19] *** bwn has joined #archiveteam [09:23] *** ersi has quit IRC (Ping timeout: 260 seconds) [09:34] *** schbirid has joined #archiveteam [09:36] *** wvdp has joined #archiveteam [09:39] *** bzc6p has joined #archiveteam [09:39] *** bzc6p has left [09:43] *** ersi has joined #archiveteam [09:51] And recursively archive each found subsite? [09:51] Do we have an idea of the percentage of URL shorteners targets which are already archived by wayback? [10:19] *** paul has joined #archiveteam [10:19] hello [10:20] Hi. [10:20] So I was looking at the wiki page [10:21] and the loveisover archive seems to be down [10:21] but the wiki doesn't reflect that [10:22] Go ahead and edit it. [10:23] Cool, was just wondering if anyone had some info on what happened. [10:23] *** wvdp has quit IRC (http://www.kiwiirc.com/ - A hand crafted IRC client) [10:25] WHAT FORSOOTH, PRITHEE TELL ME THE SECRET WORD [10:27] yahoosucks [10:27] ^ [10:30] Just read the article, that's pretty poor business practices. [11:05] *** RichardG_ has joined #archiveteam [11:06] *** RichardG has quit IRC (Ping timeout: 272 seconds) [11:23] *** vitzli has quit IRC (Leaving) [11:35] added a new archiver I found to the 4chan page, if anyone wants to check it out. I'm off to sleep [11:42] *** paul has quit IRC (Ping timeout: 268 seconds) [13:06] *** Stilett0 is now known as Stiletto [13:41] *** dashcloud has quit IRC (Read error: Operation timed out) [13:44] *** dashcloud has joined #archiveteam [13:59] *** Tomcat_ has quit IRC (Remote host closed the connection) [14:07] *** roninski has left [14:16] davidar: do you have some time now? [14:16] *** vitzli has joined #archiveteam [15:01] *** Guest45 has quit IRC (Quit: Textual IRC Client: www.textualapp.com) [15:08] *** RichardG_ has quit IRC (Ping timeout: 272 seconds) [15:14] *** RichardG has joined #archiveteam [15:34] *** atomotic has joined #archiveteam [15:45] *** wvdp has joined #archiveteam [16:00] *** schbirid has quit IRC (Remote host closed the connection) [16:07] *** Tomcat_ has joined #archiveteam [16:11] *** nwf has quit IRC (Read error: Operation timed out) [16:12] *** MMovie1 has joined #archiveteam [16:12] *** mhazinsk has quit IRC (Read error: Operation timed out) [16:13] *** MMovie has quit IRC (Read error: Operation timed out) [16:13] *** aMunster has quit IRC (Read error: Operation timed out) [16:14] *** vegbrasil has quit IRC (Read error: Operation timed out) [16:14] *** closure has quit IRC (Read error: Operation timed out) [16:15] *** bwn_ has joined #archiveteam [16:16] *** Jonimus has quit IRC (Read error: Operation timed out) [16:16] *** MMovie1 has quit IRC (Read error: Operation timed out) [16:19] *** bwn has quit IRC (Read error: Operation timed out) [16:21] *** beardicus has quit IRC (Read error: Operation timed out) [16:31] *** RichardG has quit IRC (Ping timeout: 633 seconds) [16:33] *** Zei-Pii has quit IRC (Read error: Operation timed out) [16:39] *** RichardG has joined #archiveteam [16:48] *** beardicus has joined #archiveteam [16:49] *** atomotic has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…) [16:50] *** trs81 is now known as trs80 [16:52] *** Emcy_ has quit IRC (Quit: Leaving) [16:53] *** vegbrasil has joined #archiveteam [16:53] *** Emcy has joined #archiveteam [17:05] *** rossdylan has joined #archiveteam [17:14] *** aMunster has joined #archiveteam [17:22] *** beardicus has quit IRC (Read error: Operation timed out) [17:24] *** signius has quit IRC (Read error: Operation timed out) [17:28] *** JesseW has joined #archiveteam [17:29] 2,556,335 distinct URLs found in the URLteam data for the ISP hosting sites. [17:30] That's a lot, nice! [17:35] It's a 230M file. I'm dumping it on FOS, under /0/CDROMS/urlteam_isp_hosting_search_results_20160312.txt -- it should be there in fifteen minutes or so. [17:37] *** signius has joined #archiveteam [17:38] isp hosting is the mini version of geocities [17:39] in their own unique block, anyone semi in the know 10-15+ years ago, slapped a site up and helped a lot of people eventually go forward with websites [17:39] *** closure has joined #archiveteam [17:39] yep [17:42] *** beardicus has joined #archiveteam [17:45] *** Jonimus has joined #archiveteam [17:48] arkiver: OK, it's up on FOS. Let me know if further processing would be helpful. [17:50] *** MMovie has joined #archiveteam [17:51] *** mhazinsk has joined #archiveteam [17:54] *** wvdp has quit IRC (http://www.kiwiirc.com/ - A hand crafted IRC client) [17:55] *** JesseW has quit IRC (Quit: Leaving.) [18:01] *** SN4T14 has quit IRC (Remote host closed the connection) [18:03] *** nwf has joined #archiveteam [18:29] *** db48x has joined #archiveteam [18:39] *** bzc6p has joined #archiveteam [18:43] so is this web archiving project going to be a warrior project, or scripts only? [18:45] warrior probably [18:46] We need a bit of rsync space for the profiles discovery of LiveJournal! [18:46] Not more then 1 GB I think [18:46] If you have some space available, please let me know [18:48] *** atomotic has joined #archiveteam [18:48] *** vitzli has quit IRC (Leaving) [18:52] LiveJournal discovery project is ready. When we have a target I'll start the grab [18:55] give me a couple of mins [18:55] awesome! [18:59] *** wvdp has joined #archiveteam [19:02] sent [19:04] arkiver: we don't have channel yet, do we? [19:04] I don't think so [19:10] *** paul has joined #archiveteam [19:12] arkiver: I have nothing useful to add to the LiveJournal project, but just wanted to say thank you for working on that. [19:12] :D [19:19] *** bzc6p has left [19:31] ----------------------------------------------------------------- [19:31] We have started the LiveJournal discovery! [19:31] ----------------------------------------------------------------- [19:31] I'm not sure how they are with banning [19:31] So be careful [19:32] *** remsen has quit IRC (ZNC 1.6.2 - http://znc.in) [19:33] *** remsen has joined #archiveteam [19:35] *** bwn_ has quit IRC (Ping timeout: 250 seconds) [19:35] *** JesseW has joined #archiveteam [19:38] arkiver: let me know when a channel is setup [19:39] Anyone has any idea for a channel for livejournal? [19:39] deadjournal, but that's already a website that exists [19:39] also it's not dead [19:49] deardiary [20:04] *** bwn has joined #archiveteam [20:09] spinning up some small discovery nodes to get some ip's [20:24] *** atomotic has quit IRC (Quit: Textual IRC Client: www.textualapp.com) [20:32] ZombieJournal? [20:35] wont be surprised that lj will eventually go down within a few years, better get a copy before it happens [20:54] Alexa rank for LiveJournal is better than I expected https://en.wikipedia.org/w/index.php?title=LiveJournal&type=revision&diff=709745870&oldid=707364858 [20:54] *** paul has quit IRC (Ping timeout: 268 seconds) [20:56] it's kind of a big thing in russia [20:56] Yeah, 24th there [20:56] russian owner [20:58] SUP YALL [21:00] *** Tomcat_ has quit IRC (Read error: Operation timed out) [21:00] A lot of dying web pages [21:01] no I mean that's the owner of LiveJournal [21:02] ^ [21:02] SUP (Russian: СУП, which means 'soup') [21:02] *** SN4T14 has joined #archiveteam [21:02] https://en.wikipedia.org/wiki/SUP_Media [21:03] I have been waiting seven years to make that joke [21:03] I KNEW THIS DAY WOULD COME [21:05] lol [21:07] Clever. [21:07] I approve. [21:08] yipdw is like a humour heron. Waiting to strike. [21:14] it's the only reason I use a bouncer [21:22] *** zino__ has quit IRC (Remote host closed the connection) [21:36] Now do the one about updog [21:38] * ersi stares [21:40] *** zino has joined #archiveteam [21:41] ...i'll show myself out. [21:47] *** tephra has quit IRC (Ping timeout: 260 seconds) [21:48] *** tephra has joined #archiveteam [21:56] *** RichardG has quit IRC (Ping timeout: 272 seconds) [22:20] *** RichardG has joined #archiveteam [22:27] *** JesseW has quit IRC (Read error: Operation timed out) [22:33] *** Ravenloft has joined #archiveteam [22:33] hello there [22:33] Howdy. [22:34] asking the pros for help, how to get the video from this site http://globoplay.globo.com/v/4869652/ [22:35] Try a program called youtube-dl -- https://rg3.github.io/youtube-dl/ [22:36] No guarantees, but it works on a lot of stuff. [22:36] I just tried youtube-dl and it seems to handle it fine ^^ [22:36] \o/ [22:39] *** bzc6p has joined #archiveteam [22:42] dxrt which arguments did you use? [22:43] tried with only the URL and it didnt work [22:43] hmm, I just tried with the URL.. do you get any error? I'l try again. [22:47] *** bzc6p has left [22:48] yes, but I cant copy it, getting an alternative to cmd.exe right now [22:51] *** LastNinja has quit IRC (Ping timeout: 260 seconds) [22:57] *** zino has quit IRC (Remote host closed the connection) [23:20] *** zino has joined #archiveteam