[-] MYWNcWR9Rgc31zkhTOsA@hexbear.net 0 points 8 months ago

✅ prefer not to say

[-] MYWNcWR9Rgc31zkhTOsA@hexbear.net 3 points 8 months ago

Oh no, not our precious neolib governments :((

[-] MYWNcWR9Rgc31zkhTOsA@hexbear.net 3 points 9 months ago

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.

[-] MYWNcWR9Rgc31zkhTOsA@hexbear.net 5 points 9 months ago

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')
[-] MYWNcWR9Rgc31zkhTOsA@hexbear.net 2 points 10 months ago

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)

[-] MYWNcWR9Rgc31zkhTOsA@hexbear.net 2 points 10 months ago

This is going to blow your mind, but some people are women and some people are gay. Wild.

[-] MYWNcWR9Rgc31zkhTOsA@hexbear.net 8 points 10 months ago

LibreTube is probably what you want. There's no g**gle sign-in in third party yt clients though (vanced only has it bc it patches the official client) so you'll need to export and import your subscriptions https://github.com/libre-tube/LibreTube

[-] MYWNcWR9Rgc31zkhTOsA@hexbear.net 4 points 10 months ago* (last edited 10 months ago)

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.

MYWNcWR9Rgc31zkhTOsA

joined 10 months ago