Just wondering if anybody has any efficient backup tips, I know storing them within InfinityFree isn’t that great of an idea (especially if the account gets deleted), and keeping them on one PC wouldn’t be ideal as I work from 2 separate PCs, my main one at home, and my Laptop which I carry with me outside of home (work, library, friends house, etc.).
Anyone have any tips on how they keep backups that they would like to share? Thanks!
* I don’t know this brand or product, don’t buy it lol. I linked it since it’s huge and has a handle (And is therefore portable, even though that is neither safe nor practical)
Actual recommendation is NAS, GDrive (Or similar), or GitHub (Static public only, don’t leak keys!)
What are you backing up? If you are talking code/assets, maybe be better to use a DevOps pipeline to store the code/assets and deploy to different environments depending upon which branch you check into (for example, if you commit to development, it gets deployed to development, then you can trigger builds to test and production when required). I like Azure DevOps. I was working on a simple project, as an example:
I don’t. I personally always keep a local backup on my home NAS. But I can’t deny the convenience of google drive to get data between multiple locations. so if google really want to steal my CV, well, enjoy lol
My NAS and my router are both singular boxes in a singular place. If I misconfigure them, I don’t have access to my data. If they break, I need to order new parts and install them at home to get restore data access. And if my house burns down, the data is toast (quite literally).
I trust Google a lot more when it comes to designing and maintaining durable, distributed storage solutions. You don’t need to worry about hardware failure with Google.
On the other side, there is the issue of them spying on your data (but that can be mitigated by encrypting the data before uploading it), or them taking down your account when they feel like it.
I usually compress the files into an archive, encrypt it with AES-256 encryption and a password with high entropy that has been randomly generated, and upload it on any cloud storage provider. As long as you encrypt the data correctly, it will be safe (for now).
Object storage is also very well suited for backup storage. But they just expose an API, so you generally need tooling around it to actually use it for backups.
Technically, they are as durable as something like Google Drive, but there are a lot of options for additional data protection, as well as it being generally more business focused so less need to worry about the company offering it spying on you.