

Oh, Simplefin does that. Really solid.


Oh, Simplefin does that. Really solid.


It’ll be down to your bank’s rules. My main bank and brokerage work flawlessly, sync everyday. My secondary bank and Amex need to be reauthenticated every week or two. So I just update those once a month. Just go on simplefin and run the 2FA plus some waiting.
It doesn’t sync non-bank stuff, so there’s some RRSP providers I just enter manually.
For $20 cad a year its fine. I wouldn’t use it to track daily expenses unless you know everything will work. I do all my finances once a month so its fine for me.


I didn’t expect to even need a NAS, but I can no longer live without two now. Having all my data in one place, automated backups on my secondary NAS. I found a cloud storage provider I like. Just the whole stack is wonderful and I’m never going back.


GoCardless or Enable Banking don’t work? I see both on the Actual Budget website. One doesnt take new customers? Weird


I was using Wealthica before they started charging and Actual Budget + Simplefin is so much better. I’m really happy all my financial info is just mine and not exposed to any other company. The expense for Simplefin is worth it and minimal.


deleted by creator
Any plans to support FreeBSD in the future? Or mainly focusing on a docker solution?


So far the only real vulnerabilities that Ai have spun up seem to be really obscure edge case privilege escalation bugs that have been around for ages but nobody discovered. They then get patched in days if not less. I would expect them to run out of low hanging fruit pretty soon.
Most of them can even be mitigated by preventing local access to a system.
There’s tools to audit your network and systems. You can setup a SIEM like Wazuh. It’ll tell you the same kind of stuff that have been good practice for a while and mitigate most of the ai assisted vulnerabilities.


Prevent password logins where ever possible too, especially SSH. Use ed25519 keys. Perform server actions with least privilege users, prevent root logins. Immutable systems and containers are a helpful tool too.
I also just host my public facing stuff on a VPS. DDOS protection and just otherwise isolated. 2FA on the VPS too.


I have a directory in my home folder for all my different docker containers. I back that up like my other critical files on my NAS, Backup NAS, cloud storage and external drive. Its all scripted to happen periodically.
The docker compose files I also upload to my local Git so I can version them. Make the git ignore skip everything that isn’t a .yml
If you would want to spin them up again, yeah you could just copy them in a new place, make sure the docker-compose.yml is at the top and docker-compose pull the image, then docker-compose up. If your yml specifies that your configs are ./ , it’ll know to look for them in the same folder as your yml and begin its file paths there. Anything outside your ./ in theory should be read only or be some kind of data off a NAS that is independent from the service. Its just not best practice in my eyes for your docker application to write outside of the folders beneath its docker-compose.yml location.
Just organize your volumes correctly and you can move the docker container anywhere you want with a copy paste and a docker-compose up. Imo docker-compose is WAY easier and faster than any GUI instance of Docker.
Fuck yeah! This slaps. Brb while I get my headphones to listen to it again.


We should celebrate these kinds of changes. Like its great that they’ve already achieved so much and not just that, but left behind a group of folks just as committed in the future of the project.
I always feel that posterity of your work beyond your own contribution is the real achievement and a sign of humility.
Oh, I’ve been there! lol Yeah, you sometimes don’t expect to have to update an entire stack, not just one thing. Possible the companion app image was just released later and it wasn’t on you either. :P
But yeah, give the cron job a try. I’d be curious to try it out myself! In theory your webinstance shouldn’t cut out unless you click on something the exact moment the container is resetting.
What kind of issues have you had? How did you resolve them?
I haven’t used this tool specifically, but anything involving Youtube is always going to be an uphill battle. In the instance of a video downloader like Channeltube, you frequently need to feed it fresh cookies to make sure Youtube doesn’t flag it as a bot. I assume this is a similar situation.
The requirements also list ‘‘2gb if you restart frequently’’ so there might be a memory leak issue, or the way it’s setup means the RAM usage will increase in perpetuity.
I would just script a task to restart the docker container every hour. Shouldn’t be too much a hassle, you’re unlikely to ever notice since it shouldn’t take more than a few seconds. I would track its RAM usage over a few days too. See if there’s something fishy happening. Something like Beszel will let you track your docker socket, so usage per container. Preferably left on read only imo.
Ubuntu’s “reputation” is nonsense. It’s a great distro for servers. Security updates are really fast and using snaps in a server environment is really great. I recommend running things like Docker or Tailscale off snap. They will revert to a previous image if an update fails. Extra stability for a server as you run automatic updates. If you run everything that is not in the base install off a snap, you have an extra layer of sandboxing against any supply chain attack for dependencies.
Ubuntu will have more recent packages, that doesnt really matter in a server environment. Debian is otherwise fine, I just dislike it’s installer and prefer Ubuntu’s. I found it easier to sync third party drivers on Ubuntu.
Ubuntu Pro gets you livepatches for kernal issues, which may be worthwhile. Also done without rebooting.
Ubuntu also gives you better apparmour default profiles on more things, whereas on debian, its up to you to set them up.
Debian will be exactly the same, its just more conservative and has less of those extras I mentioned. May be marginally lighter on resources for that. Either are fine.