Home / Category

Programming

Python (Part 5): Loops

Programming · Python

Python (Part 5): Loops

Part 5 of the Python series: repeat work without copy-pasting using for and while loops, the range() helper, plus break, continue, and enumerate().

Python (Part 4): Conditional Statements

Programming · Python

Python (Part 4): Conditional Statements

Part 4 of the Python series: make your programs decide with if, elif, and else — plus truthiness, the ternary shortcut, and match (Python 3.10+).

Python (Part 3): Operators

Programming · Python

Python (Part 3): Operators

Part 3 of the Python series: operators — arithmetic (incl. // and **), assignment, comparison, and logic, plus what Python does differently from PHP.

Python (Part 2): Variables and Data Types

Programming · Python

Python (Part 2): Variables and Data Types

Part 2 of the Python series: variables and data types — how Python stores text, numbers, and booleans, plus how its dynamic typing works (and differs from PHP).

Python (Part 1): Basic Syntax

Programming · Python

Python (Part 1): Basic Syntax

Starting a new beginner-to-intermediate series. Part 1 covers Python's basic syntax — running a script, the print() function, indentation, and comments.

PHP (Part 4): Conditional Statements

Programming · PHP

PHP (Part 4): Conditional Statements

Part 4 of the PHP series: conditional statements — make your programs decide with if, else, elseif, switch, and the handy ternary shortcut.

How to Set Up a Static Website: A Quick Overview

Programming · Systems & Networking

How to Set Up a Static Website: A Quick Overview

No server, no database, no monthly bill. Here's the whole path to a static website — build the files, preview locally, and put it online for free with HTTPS.

PHP (Part 3): Operators

Programming · PHP

PHP (Part 3): Operators

Part 3 of the PHP series: operators — arithmetic, assignment, comparison, and logic, the building blocks of every PHP program.

Hosting on the Edge: Why This Site Has No Server

Programming · Systems & Networking

Hosting on the Edge: Why This Site Has No Server

The site you're reading has no web server, no database, nothing to patch. Here's how 'static + edge' hosting works — and why it's faster and safer.

PHP (Part 2): Variables and Constants

Programming · PHP

PHP (Part 2): Variables and Constants

Part 2 of the PHP series: variables and constants — the two ways PHP stores information for you to use later in your programs.

PHP (Part 1): Basic Syntax

Programming · PHP

PHP (Part 1): Basic Syntax

What is PHP? PHP: Hypertext Preprocessor (PHP) is an open source general purpose scripting language that is widely used for web development and can be…