DeveloperBreeze

Server Administration Programming Tutorials, Guides & Best Practices

Explore 48+ expertly crafted server administration tutorials, components, and code examples. Stay productive and build faster with proven implementation strategies and design patterns from DeveloperBreeze.

How to Stop SSH From Timing Out

Tutorial August 21, 2025

Edit the SSH daemon config:

sudo nano /etc/ssh/sshd_config

🛡️ Protect Your Forms Like a Pro: Anti-Spam Techniques That Actually Work

Tutorial April 04, 2025

Spam submissions are one of the most common annoyances for web developers. Whether you're dealing with contact forms, login pages, or comment sections—bots will find and abuse them.

In this tutorial, you'll learn real-world, effective anti-spam techniques beyond just slapping on a CAPTCHA. These strategies are easy to implement, and when combined, they make your forms extremely hard to abuse.

How To view tables and the number of records in each table in a PostgreSQL database,

Tutorial November 06, 2024

Run the following SQL query to see the list of tables along with their row counts:

   SELECT relname AS table_name,
          n_live_tup AS row_count
   FROM pg_stat_user_tables
   ORDER BY table_name;

How to install PostgreSQL

Tutorial November 06, 2024

  • Create a Database:
  CREATE DATABASE mydatabase;

How to view tables on a PostgreSQL database hosted on Heroku

Tutorial November 06, 2024

Once connected to the database, you can list all tables with:

   \dt