// blog

Articles

// Basics
Your Fourth Mini Project — Lock It Down

The problem...
You already built a username generator in your first mini project. You have an identity.
Now you need to protect it.
A weak password is an open door. And open do…

29 Apr 2026 2 min read files [1] comments [0] 36 views
// Basics
Common Bool Mistakes

The problem...
Bool is the simplest type in Python. Two values. That's it.
And yet, it's one of the most misused.
These are the mistakes almost every beginner makes with bool. …

29 Apr 2026 2 min read files [1] comments [0] 37 views
// Basics
Bools — The Full Picture

The idea!
Bool is small. But it's everywhere.
This is your reference. Everything in one place.
Come back here whenever you need a reminder.
What is Bool
is_valid = True
is_b…

29 Apr 2026 1 min read files [1] comments [0] 36 views
// Basics
This One's Yours — Bool

Three chapters done.
Strings. Numbers. Bool.
Each one built on the last. Each one making the next one possible.
Bool is the smallest chapter. Two values. That's it.
But don't …

29 Apr 2026 1 min read files [1] comments [0] 39 views
// Basics
Switch Between Types

The problem...
You have a number. But you need text.
You have text. But you need a number.
You have a float. But you need an int.
Types don't always match what you need. And P…

29 Apr 2026 1 min read files [1] comments [0] 41 views
// Basics
Talk to Your Future Self

The problem...
You write code. It works. You close the file.
Two weeks later you open it again. And you have no idea what it does or why.
This happens to everyone. Even experie…

29 Apr 2026 1 min read files [0] comments [0] 39 views