Ask HN: Tools you have made for yourself?
221–230 of 458 posts
Re: Ask HN: Tools you have made for yourself?
#222ssl is sketchy working on some of these because of gitlab and or cloudflare settings.
The one I use everyday is a html javascript form hosted on gutlab pages and sending data to google sheet via apps script, to record my timesheet data.
Since coding, I have used the gotp app, which is Google TOTP impory export & backup before Google Auth itself implemented. Still, their way is to start from scratch only, whereas mine one can be used to add accounts. https://spa.bydav.in/otp.html
I used a mix of gmail filters, app script & sheets to download every email I received as eml file & save it in drive folder named as year, & eml named as yyyy mm dd hh mm ss ttt nn subject.eml
Re: Ask HN: Tools you have made for yourself?
#223Pretty much everything I build is to solve a problem I have for myself and I just don’t like the existing options (I always looks first and if I find something I like I use that, if not I roll my own)
Re: Ask HN: Tools you have made for yourself?
#224I once wrote a script to record the Tinder profiles I swiped left and right on, then fine tuned a CNN using the data and integrated it into an automatic swiper. It swiped right on my now partner!
Re: Ask HN: Tools you have made for yourself?
#225Whilst learning classical Arabic it was a pain when reading to search through the Hans Wehr dictionary by first extracting the root letters of the word and then looking up the root and then finding the correct form. So I put together a frontend [1] to search a scanned version I found of it. It has now evolved in to an offline PWA, which you can search from Arabic to English and English to Arabic, convert numbers in b…
Great! Adding it to my favorite dictionaries.
Re: Ask HN: Tools you have made for yourself?
#226The delivery slots would run out within 15 minutes of being open. So I hacked together a script that'd poll for delivery slots and notify me on whatsapp whenever there were slots.
This year I had to do the same for vaccine slots. In fact, getting a vaccine slot became a bit of a hackathon in India due to limited slots with multiple GitHub repos and hosted tools coming up to notify you of available slots.
Re: Ask HN: Tools you have made for yourself?
#227Re: Ask HN: Tools you have made for yourself?
#228I once wrote a script to record the Tinder profiles I swiped left and right on, then fine tuned a CNN using the data and integrated it into an automatic swiper. It swiped right on my now partner!
Re: Ask HN: Tools you have made for yourself?
#229 /usr/bin/wget -nc --trust-server-names \
'https://download.mozilla.org/?product=firefox-latest-ssl&os=linux64&lang=en-US'
which retrieves the latest release. After downloading, it's unpacked to a new directory named after the firefox version, under opt: FFFILE=`ls -tr ./firefox-*bz2 | tail -n 1`
NEWFFDIR="/opt/"`echo $FFFILE | perl -pe 's/.*firefox-([0-9\.]+[0-9]).*/ff-$1/'`
and then linked to a standard place (/opt/firefox) /usr/bin/sudo /bin/ln -s $NEWFFDIR/firefox /opt/firefox-new
/usr/bin/sudo /bin/mv -T /opt/firefox-new /opt/firefox
/usr/bin/firefox is already a link to /opt/firefox/firefox.Old /opt/ff-XYZ dirs are culled manually.
This is easier for me than manual update from the browser, or relying on the distro's firefox updates. It also allows me a backout option while I acclimatise to new Firefox "features."
It took me about 30-40 manual updates before I got around to writing the script :)
Re: Ask HN: Tools you have made for yourself?
#230[1]: https://gitlab.com/L0g4n/unrpa_rs [2]: https://blog.l0g4n.me/unrpa-rs/