How I Leveled Up During My Publishing Break
I took a publishing break but not a coding one. Since my last blog post, I鈥檝e been deep in the trenches, building tools, breaking assumptions, refactoring logic, and learning how to code like a professional from the ground up. This isn鈥檛 just a return to blogging, it鈥檚 a recommitment to doing things right, from the beginning. Most importantly, I鈥檓 doing all of this to instill good habits now, while the stakes are low. Even if I鈥檓 building solo, I don鈥檛 want to cut corners. Habits are hard to form later. So I鈥檓 treating my small projects like real ones with tests, structure, documentation, and consistency. ...
Mastering Functions and Classes in Python: Your Beginner's Guide
Weekly Learning Theme: Functions and Classes in Python This week was a major milestone in my Python journey: I finally wrapped my head around functions and classes! At first, I thought they were just fancier blocks of code, but after practicing, I realized they are the foundation of clean, powerful programs. Here鈥檚 what I learned, with real examples to make it stick. Functions: The First Big Step Functions are like small machines inside your program. You give them input (if needed), they do a job, and optionally give back a result. ...
Learning Reflection Pig Latin Translator
Introduction Today, I decided to apply my Python knowledge to tackle the first project in Impractical Python Projects: building a Pig Latin translator. This challenge was a fun way to practice string manipulation, loops, and conditional logic. Below, I鈥檝e shared my solution and compared it to the book鈥檚 solution, reflecting on the differences and lessons learned. My Solution Here鈥檚 the code I wrote for the Pig Latin translator: vowels = ["a", "e", "i", "o", "u"] while True: word = input( "Please type a word to translate to pig latin (or type 'q' to exit): \n" ).lower() if word == "q": print("Goodbye") break char_list = list(word) if char_list[0] in vowels: print(f"{word}yay") else: f_letter = char_list.pop(0) char_list.append(f_letter) print(f"{''.join(char_list)}ay") How It Works: ...
Python Progress: Lists, Logic, and Building Interactive Tools
Introduction Learning Python is like peeling an onion鈥攅very layer reveals something new, exciting, and occasionally tear-inducing (hello, off-by-one errors). Over the past week, I鈥檝e delved deeper into lists, slicing, the range() function, conditional logic with if statements, and the powerful zip() function. Alongside learning PEP 8 and using Ruff as a linter, I also started building interactive tools and tackling challenges from Impractical Python Projects. These experiences have deepened my understanding of Python and emphasized the importance of writing clear, maintainable code. ...
My Python Journey: From Zen to Lists
Welcome to my very first post on CodingTides! I鈥檓 excited to begin documenting my journey of learning to code, sharing projects, and growing along the way. Why I Started This Journey Hi, I鈥檓 a husband, father of three, and a full-time professional working with data. My day-to-day involves a lot of qualitative and quantitative analysis, and I鈥檝e decided to reignite my passion for coding to expand my skill set. Learning Python has been an exciting step forward in blending my professional expertise with new problem-solving techniques. ...