
Zikeji
@Zikeji@programming.dev
Nice. Software developer, gamer, occasionally 3d printing, coffee lover.
- Comment on Framework responds to complaints that BIOS update bricks Ryzen 7040 laptops 19 hours ago:
That’s crazy. I stopped considering framework after the one thing but not having A/B slot or hardware flashback at their price point is insane!
- Comment on Stay away from GShop.ca their payment processor still work, but no one is home 4 weeks ago:
Unfortunate. Based on what I can find it’s a solo outfit, so the owner / operator (who I did find but won’t name, just check the blog though) might be indisposed for whatever reason. Couldn’t find anything online though.
- Comment on How do you manage you DB in a docker environment? 2 months ago:
Yes that’s good enough! Sorry to clarify I leave mine running since a dump can recover if it gets corrupt.
Basically my backup contains the database and the SQL dump (or equivalent) - that way I don’t need to shutdown the service.
- Comment on How do you manage you DB in a docker environment? 2 months ago:
Most of the time that’s perfectly fine, but if the database were in the middle of an operation you risk corruption.
- Comment on How do you manage you DB in a docker environment? 2 months ago:
Individually. If the app requires a DB, I put it in the compose file. This simplifies both backups and migrations. My tooling for backups has a pre and post script I can customize on a per app basis so I just have the pre do whatever *dump for that DB and the post clean it up (backup takes a tar of the folder).