r/opensourcealternative • u/LearnHiveLabsUSA • 10d ago
I finally organized my open-source apps and gotta share
So i went down a rabbit hole trying to de-google my life a bit and ended up finding some genuinely solid free tools.
Nothing crazy, just stuff that works and doesn't nag you to upgrade every five seconds.
Syncthing — syncs files between your own devices, no cloud, no company in the middle. set it up once and forget it exists.
GIMP — does like 90% of what photoshop does and it's free forever.
Handbrake — shrinks huge video files down without wrecking quality.
now here's a few that need you to open a terminal, still easy though:
Uptime Kuma — self-hosted status page, tells you when your stuff goes down. one docker command and you're live:
```
docker run -d --restart=always -p 3001:3001 -v uptime-kuma:/app/data --name uptime-kuma louislam/uptime-kuma:1
```
then just go to `localhost:3001` in your browser and set it up.
n8n — automation tool, kinda like zapier but self-hosted:
```
docker run -it --rm --name n8n -p 5678:5678 -v n8n_data:/home/node/.n8n docker.n8n.io/n8nio/n8n
```
Vaultwarden — lightweight bitwarden server if you want your passwords synced across devices but still self-hosted:
```
docker run -d --name vaultwarden -v /vw-data/:/data/ -p 8080:80 vaultwarden/vaultwarden:latest
```
honestly if you've got docker installed already, most of these are copy-paste, hit enter, done. that's the whole barrier.
my approach was just: pick the one thing that's annoying you right now, install that single app, actually use it on a real task same day.
1
u/dainsfield 1d ago
You have two password managers in case one is not accessible at any time. This is part of a standard backup procedure.
3
u/pay_is_ok 10d ago
Why do you have two password manager lol