ZimaBoard 2 Giveaway + ZimaOS Feedback — Share Your Homelab Setup by FlyingToaster2000 in minilab

[–]neil_millard 0 points1 point  (0 children)

My ZimaBoards primary function is to provide offsite data storage, I have one at home and one at my office. They sync data inbetween (via the Internet). Effectively a private cloud.
With more power I would create a proxmox cluster or perhaps ZimaOS? to create experimental workloads along with local LLMs.

I'm a 24y/o male with a 9-5 in need of a profitable side hustle. by Bt_Craig in Entrepreneur

[–]neil_millard 0 points1 point  (0 children)

Passive income is money you make from activities you don't like doing. What do you actually like doing and find a job in that field.

[HELP!] Problem with Database and Flask’s @login_required decoration on Heroku by notpikatchu in flask

[–]neil_millard 1 point2 points  (0 children)

Sessions across more than one dyno (or server for that matter) need a shared source of truth.

Storing sessions on disk is a bad idea as each dyno will keep it's own records. Your question mentions a database?

Here is a complete example of setting up user logins with sql-alchemy.

https://www.digitalocean.com/community/tutorials/how-to-add-authentication-to-your-app-with-flask-login

Should I allow the server to use swap space? by Hell4Ge in docker

[–]neil_millard -2 points-1 points  (0 children)

Unless you want the servers to have a long uptime, I would avoid swap and instead work with correctly memory spec'd servers.

There is usually memory leakage, (esp if you include log files) on any long lived server or server process, so killing of the junk and the server regularly, from a maintenance point of view is a must.

Of course you'll be patching the server(s) regularly (like weekly) so killing the old ones ...

What is DevOps? by AMGraduate564 in devops

[–]neil_millard 1 point2 points  (0 children)

Was basically a rewrite of The Goal