Zotero is a plugin for Firefox.
[It] is a free, easy-to-use tool to help you collect, organize, cite, and share your research sources.
Or to make an index for your Steemit posts, so that you don't have to wait for the refresh each time you want to browse below the fold.
Firstly, install from here, Zotero's download page, and restart Firefox.
Scroll to the bottom of your Steemit blog page, until you reach your first post. Here's mine. That was eight month's ago, and it took nearly three minutes, of scroll refresh, scroll refresh. Something to avoid.
The URL of my full blog is still only https://steemit.com/@richardjuckes, so simply trying to bookmark this will not save me from having to refresh again, each time I want to look up some old posts.
So, right-click on the page and at the bottom of the menu there is a Zotero option and then
Create web page item from current page
Ctrl-Shift-Z
and look for the Steemit page. On Linux (Debian) mine has an URL
file:///home/$USER/.mozilla/firefox/9w5u1fjt.default/zotero/storage/VRDH9M62/@richardjuckes.html
and I can bookmark this and use it as an index, offline if I wish. All of the links take me to my posts on Steemit.
I can go further if I want, using some Linux tools. I'm sure the devs will tell me many corners I could cut, but ...
Install WWW::Mechanize, for the commandline tool mech-dump
apt install libwww-mechanize-perl
mech-dump -all file:///home/$USER/.mozilla/firefox/9w5u1fjt.default/zotero/storage/VRDH9M62/@richardjuckes.html > my-steemit-posts.txt
uniq -u my-steemit-posts.txt > my-steemit-posts-uniq.txt
grep -v com/@ my-steemit-posts-uniq.txt | grep -v comments | grep richardjuckes > my-steemit-posts-uniq1.txt
Of course, changing richardjuckes to your steemit username.
mkdir steemit-posts
cd steemit-posts
for i incat ../my-steemit-posts-uniq1.txt; do wget $i ; done
for i in * ; do mv $i $i.gz ; done (I'm sure there's a better way of doing this)
for i in *gz ; do gunzip $i ; done
for i in * ; do mv $i $i.html ;
for i in *html ; do lynx -dump $i | grep -v file: > $i.txt ; done
for files that are more easily searchable. And if you've followed me this far, I'm sure you know more than me about the awesomeness of *nix text tools.
I've used the word water in posts 21 times, 9 times in poems, and once three times in one poem.