Tutorials for Developers & Sysadmins

Step-by-step guides for the work we actually do — Laravel, PHP, WordPress, MySQL, Linux servers, and the occasional rabbit hole. Every command has been run on a real machine; nothing is theoretical.

How to Install Node.js on Ubuntu (22.04 & 24.04): Step-by-Step

Install Node.js LTS on Ubuntu 22.04 or 24.04 via NodeSource or nvm. Verify npm, avoid stale setup_18.x, and fix the…

how7o

How to Configure WordPress Multisite with Subdirectories on Nginx

Configure WordPress multisite with subdirectories on Nginx: enable the flag, run Network Setup, add the rewrite rules, and verify a…

how7o

How to Install Laravel on Ubuntu: Step-by-Step Guide

Install Laravel 10 or 11 on Ubuntu: verify PHP and Composer, run composer create-project, configure .env, generate APP_KEY, and boot…

how7o

How to Install PHP on Ubuntu (22.04 & 24.04): Step-by-Step Guide

Install PHP on Ubuntu 22.04 or 24.04: default apt install, Ondřej PPA for specific versions, common extensions, and a hello.php…

how7o

How to Install Composer on Ubuntu: Step-by-Step Guide

Install Composer on Ubuntu 22.04/24.04: install PHP extensions, download the official installer, verify the live SHA-384 hash, and install system-wide.

how7o

How to Install MySQL on Ubuntu 22.04: Step-by-Step Guide

Install MySQL 8.0 on Ubuntu 22.04: apt steps, mysql_secure_installation, auth_socket vs native password, verification, and common install errors.

how7o

How to Find Prime Numbers in JavaScript (1 to 100) — Fast & Simple Methods

I recently needed to find prime numbers in JavaScript from 1 to 100 for a quick script, and I learned…

how7o

How to Dynamically Set Site Title and Tagline in WordPress (By Country)

I recently faced a problem where I needed to dynamically set site title and tagline in WordPress based on the…

how7o

Capitalize All Words in JavaScript (ucwords Equivalent) + First Letter Uppercase

I ran into a small but annoying problem while working on a UI: I needed to capitalize all words in…

how7o

CSS Page Break for Printing: How to Split a Web Page Into Multiple Printed Pages

I ran into this exact problem when I tried to print a web page for a client: everything came out…

how7o