We're at war with AI slop.
More than half the internet is AI generated and nobody can tell you which half.
Introducing @DetectArena, the place you go to check if something is AI, and then verify that claim.
comment "spot slop" for 25 extra credits 👇
Haven’t been coding lately, so I focused on how systems run behind the scenes. Converted an old laptop into a local server: Ubuntu, static IP, SSH, Nginx, (PM2), psql.
Static IP setup helped me understand how university/ office networks work.
#Backend#DevOps#Linux
3. Used Netplan/nmcli to set:
IP → 192.168.29.100
Gateway → router IP
DNS → 8.8.8.8 / 8.8.4.4
4. Applied changes and restarted network services.
5. Verified using "ip a" that the IP is no longer dynamic.
Now the server has a stable identity on the local network.
How I assigned a fixed (static) IP:
1. Identified my network interface and current IP using "ip a" and gateway using "ip route".
2. Disabled DHCP and configured a static IP within my router’s subnet.
5. Ran backend services (Node.js with PM2) and connected PostgreSQL.
6. Configured Nginx as a reverse proxy to route traffic internally.
7. Did NOT expose any ports to the internet (no port forwarding).
This effectively creates a “closed network” environment similar to campus or office systems where internal portals work only when you're connected to the organization’s network.