Recent Posts

Further Learning Into SQL

1 minute read

Learning through .sql files instead of tutorials helped me understand how SQL behaves in actual scenarios — including filtering, grouping, and debugging comp...

Building a Vending Machine in Python Using OOP

1 minute read

This post explains how I built a basic vending machine system in Python using object-oriented programming, and what challenges I faced while applying class-b...

Building a Rock-Paper-Scissors Game in Python

2 minute read

I built a rock-paper-scissors game using Python. It runs for 10 rounds, stores each result, and calculates win rates. I also learned to simplify my logic aft...

Creating a Number Baseball Game in Python

1 minute read

I built a number baseball game where the player guesses a 3-digit number. The game tells you how many strikes, balls, and outs you got each round.

Practicing Lambda Functions in Python

1 minute read

I practiced lambda functions in Python, learning how to use them for short anonymous functions, pass them as arguments, and filter lists.

Using While and Nested For Loops in Python

1 minute read

In this post, I practiced using while loops and nested for loops to print number patterns, multiplication tables, and shapes like triangles and diamonds.

Practicing Python String Basics

1 minute read

In this post, I practiced how to work with strings in Python, including indexing, slicing, escape characters, and string functions.