The hottest Servers Substack posts right now

And their main takeaways
Category
Top Technology Topics
Blog System/5 661 implied HN points 07 Dec 25
  1. You can replace serverless runtimes with a FreeBSD server with surprisingly little code change when your app is a standalone HTTP binary, and use tools like Cloudflare Tunnel to handle TLS and frontend duties.
  2. FreeBSD's built-in utilities (daemon(8), rc.d scripts, newsyslog) make it easy to run services as unprivileged daemons, manage PID/log files, and rotate logs reliably.
  3. Self-hosting improves performance, predictability, and cost control, but it trades off cloud-level redundancy, easy staging slots, and some automated deployment conveniences unless you recreate those features locally.
The Product Channel By Sid Saladi 3 implied HN points 24 Feb 26
  1. You can run OpenClaw on AWS free tier by launching an EC2 Ubuntu instance, creating a key pair, opening SSH to your IP, and using ~30 GB storage, but you still pay for any LLM API usage.
  2. The t3.micro free tier (1 GB RAM) often crashes during OpenClaw’s onboarding, so upgrading to t3.small (2 GB) is the practical fix to avoid JavaScript heap out of memory errors.
  3. If you change instance type be sure to stop the instance first, apply the new type, restart it, and note your public IP will change; pick a nearby region and restrict SSH to your IP for security.
Counting Stuff 54 implied HN points 11 Jul 23
  1. It is beneficial to have familiarity with running a small server to learn skills and appreciate the work of Ops and SRE professionals.
  2. Consider the value of running a small server for hosting personal projects like a homepage or resume.
  3. Exploring web-based RSS apps can help manage information overload and stay updated with blogs and newsletters.
Anders’s Substack 1 HN point 17 Mar 24
  1. Virtualization technology reshapes IT infrastructure by creating virtual instances of computing resources, leading to increased agility and efficiency for businesses.
  2. Virtualization enables server, desktop, network, and storage optimization, allowing for workload consolidation, centralized management, and resource scalability across various IT aspects.
  3. Implementing virtualization technology promotes cost savings, energy efficiency, workload mobility, and enhanced security within IT environments, positioning organizations to be competitive and resilient in the digital realm.
rtnF 0 implied HN points 20 Apr 23
  1. The post discusses setting up a custom tile server with OpenStreetMap data using own server.
  2. It provides step-by-step instructions to prepare the OS, database, and download, standardize OSM data.
  3. It also guides on configuring the stylesheet, renderer, and miscellaneous tasks for server monitoring.
Get a weekly roundup of the best Substack posts, by hacker news affinity:
Thái | Hacker | Kỹ sư tin tặc 0 implied HN points 17 Jul 07
  1. The way browsers handle HTML forms with enctype="multipart/form-data" and enctype="application/x-www-form-urlencoded" is different. This difference is key to detecting POST requests from Flash, which cannot send requests in the "multipart/form-data" format.
  2. By automatically setting all HTML forms to enctype="multipart/form-data" through a reverse proxy with an Apache output filter module, one can detect and protect against DDoS attacks from Flash.
  3. While this method can limit the impact of existing xFlash attacks, it may not be a permanent solution. Avoiding Flash altogether or focusing on overall DDoS defense strategies like infrastructure investment and system optimization is crucial.