Ugh, maybe this wasn’t such a good strategy. After downloading all the message pages and catting them in a loop, I did “successfully” end up with a 128 MiB HTML file …
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. The str(message.content) in my script should have been a message.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.)
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.)