I blow hot air.

  • 1 Post
  • 18 Comments
Joined 1 year ago
cake
Cake day: July 6th, 2023

help-circle

  • Ideally, you set aside 3 to 6 months worth of your typical monthly spending to cover (some) emergencies and job loss, then invest everything else. 401(k) is still tax advantaged in the same way as an IRA, and you can typically do roth contributions to a 401(k) too. So there are benefits to going above your employer match.

    But, you’re right that you don’t want to trap all of your money into a retirement account either. You’ll probably want to make large purchases like a car or house. In that case, you plan out a timeline and invest in less risky things depending on how far out you plan to purchase said thing.

    The overall idea of “invest in index funds as much as possible” can be applied generally, but the amount that you contribute and in which types of accounts heavily depends on the individual.

    I just wanted to point out that 401(k)s without employer matching are basically just IRAs with high yearly caps because it took me a few years to realize that, and I fancied myself financially literate. It can be a good idea to contribute more, so long as you don’t need the money elsewhere.








  • Groceries cost the same with or without a credit card. The store is paying the card every transaction, not the user. Annual fee cards need more scrutiny and are often not worth it unless you’re playing the travel points game (and what a game it is). No card in existence is worth it unless you pay it off in full every month.

    They even have non-cashback/points perks that are worthwhile, like rental car/travel/phone insurance. My family has saved hundreds with free phone insurance from a card. My screen stopped working, and I got a new one for $30 from an authorized repair joint, which otherwise would have cost like $300.

    So, yes, cards do give you free money so long as you don’t hold a balance.




  • If you’re worried about unauthorized access to the physical machine, you could always just do disk-level encryption instead or store the app’s data in something like a Veracrypt virtual disk. They’d still be able to access the data if they go through your OS/user, but wouldn’t pick anything up by accessing the drive directly.

    Nothing short of E2EE can truly stop someone from accessing your data if they have physical access to the server, but disk encryption would require a targeted attack to break, and no host is wasting their time targeting your meme server. I seriously doubt they’d access it even if you had no encryption at all, since if they get caught doing that they’d get in a heap of legal trouble and lose a ton of business.




  • Podman is purposefully built to rely on systemd for running containers at startup. It ties in with the daemonless and rootless conventions. It’s also nice because systemd is already highly integrated with the rest of the OS, so doing things like making a container start up after a drive is mounted is trivial.

    Podman has a command to generate systemd files for your containers, which you can then use immediately or make some minor tweaks to your liking.

    I use podman for my homelab and enjoy it. I like the extra security and that it relies on standard linux systems like systemd and user permissions. It forces me to learn more about linux and things that apply to more than just podman. You can avoid a lot of trouble by running the containers as root and using network=host, but that takes away security and the fun of learning.