MYWNcWR9Rgc31zkhTOsA [they/them, she/her]
I’ve been mostly sticking to my usual daily cardio and bodyweight routine at home, and my bum and thighs are definitely getting bigger. I split my favourite pair of jeans, my second favourite have been far too tight for several months, and I can’t afford to replace either of them. But it’s progress I guess.
We had a lot of rain here a couple of weeks ago which temporarily broke the boiler (landleech knows it keeps happening and doesn’t gaf) so I had some cold showers too. For me, they’re fine right after a workout but almost like a form of torture when you’re already freezing cold.
If you have a homelab or vps you could try rolling your own with https://hub.docker.com/r/onerahmet/openai-whisper-asr-webservice for the transcription and a foss Tasker alternative for retreiving the voicemail when your dialler app posts a voicemail notification. If you don’t have the capability to selfhost whisper, you’d probably have to sacrifice the illusion of privacy (your mobile carrier will always have access to any calls made over their network) and use a transcription service from google/microsoft/openai.
Asterisk https://www.asterisk.org/ might be worth a look too (i.e. selfhost your voicemails)
Oh no, not our precious neolib governments :((
If you’re asking for an android file manager app with a gui that will connect to sshfs, solid explorer does what you need but it isn’t foss.
I made this last week to use up some leftover mango: https://holycowvegan.net/vegan-jamaican-mango-stew/\ Substituted tempeh for extra firm tofu, boiled potato for finely diced sweet potato, scotch bonnet for jalapenos, and skipped the mango puree
And this one’s pretty good too: https://www.onegreenplanet.org/vegan-recipe/sweet-potato-lentil-stew-vegan/
Assuming Linux with SystemD,
sudo systemctl edit docker
[Unit]
RequiresMountsFor=/path/to/external/volume
You can use a SATA caddy with its own power supply if your basic USB adaptor isn’t able to draw enough.
Something like this should work on linux or mac. On windows you’ll probably need to use wsl or convert it to powershell if you can’t install the dependencies natively. The script requires bash, unrar, and find.
#!/usr/bin/env bash
while read -r rarfile; do
while read -r password; do
if unrar t -p"$password" "$rarfile" >/dev/null 2>&1; then
echo "$rarfile $password"
break
fi
echo "$rarfile password not found"
done < /path/to/passwords.list
done < <(find /path/to/rars -type f -iname '*.rar')