• 0 Posts
  • 63 Comments
Joined 2 years ago
cake
Cake day: November 26th, 2023

help-circle

  • The quality was always questionable in IT because of how projects are being managed. That’s why you have consulting companies. The only difference you get from AI is companies trying to lower the wages and reduce costs to share profit with AI companies. Those tools bring no more value than hiring more junior / bootcamp level developers. The difference is from junior developer you can in a year or two get full team member but from AI you will get constraint amount of slop because it doesn’t evolve.






  • you can reverse proxy other ports than 443 and ex. upstream ssh, the advantage of having reverse proxy over everything is to have traffic in one place so you can manage it, that’s why for example kubernetes have ingress server, example nginx / openresty upstream ssh, you can restrict traffic to limited amount of IP etc.

    stream {
        upstream ssh {
            server          127.0.0.1:22;
        }
    
        server {
            listen          2222;
            ssl_preread     on;
            proxy_pass      ssh;
        }
    }
    







  • Buy refurbished / used Mini PC with at least 16GB RAM and 1Gbit network card. Don’t bother with M.2, SSD is enough.
    I have right now refurbished hp g4 ryzen 5 mini pc. There is 12 docker containers running there and couple applications in screen, I just add things. Don’t do ARM, as far as I remember running on ARM is compilation hell. Stick with x86. You want it to ease your life and not to make it harder.