Does anyone have a copy of the SL4 archives in a format that’s easier to read—e.g. a single file?
If not, I’d be happy to pay someone to put this together; let me know if interested.
Does anyone have a copy of the SL4 archives in a format that’s easier to read—e.g. a single file?
If not, I’d be happy to pay someone to put this together; let me know if interested.
How much are you offering? I downloaded by the by-date archive page and wrote this Python code to download the individual message pages, with the thought of
cat
ting them together to get your “single file.” (Which is an ugly hack and not even technically valid HTML, but it worked when I’ve done it in the past.) But it’s only halfway through downloading and I need to turn the computer and its noisy fan off and go to sleep now; this should be easy to finish tomorrow.Ugh, maybe this wasn’t such a good strategy. After downloading all the message pages and
cat
ting them in a loop, I did “successfully” end up with a 128 MiB HTML file …full_sl4_archive.html
But, first of all, it somehow ended up with a lot of escape characters (
\n
,\'
) displayed literally in the page. (Not sure how that happe—oh. Thestr(message.content)
in my script should have been amessage.content.decode()
.) Second of all, this enormous file is not actually smooth to read on my machine (it just crashes in Firefox, and Chromium is very laggy). On net, this may not actually be an improved experience over just clicking through the messages on sl4.org. (Third, Mediafire’s pop-up ad when you click the “Download” button feels kind of scummy, but it was the first convenient way that came to mind for sharing a large file.)I suggest looking at hypetombox.pl, which should convert the archive into a Unix mbox file. You probably want to use wget first.
I’d specifically suggest using something like
to download everything into a local directory structure. After that you can experiment with how to format the resulting stuff.