Razz

Razz

About

I'm Razz! I'm a programmer first, and hope to share some of that knowledge in posts here! I am to break down and post about cool functions and methods that I think are useful, and demystifying the magic of languages from C# to JavaScript!

Razz's Latest Posts

Unlocking the Power of *args and **kwargs in Python

Coding | March 22, 2025

Python's *args and **kwargs are powerful tools for writing flexible and reusable code. This post explores how they work, when to use them, and how they can simplify function definitions in dynamic situations.

2 0

What Game Developers Can Learn from Pokémon's Enduring Success

Gamedev | March 23, 2025

The Pokémon franchise has captured hearts and imaginations for decades, and its success is no accident. From intelligent design choices to a mastery of player engagement, Pokémon offers valuable lessons for game developers seeking to craft memorable experiences.

2 0

Exploring "Hello World" Across C#, JavaScript, Python, and TypeScript

Coding | March 24, 2025

A "Hello World" function is the quintessential starting point for learning a programming language. This article briefly compares how functions are defined, variables are named, and console output is handled in C#, JavaScript, Python, and TypeScript. Through simple code snippets, we'll showcase the similarities and differences, helping you understand the foundational syntax of each language.

2 0

Understanding super() in Python

Coding | March 22, 2025

The super() function in Python is a critical tool for working with inheritance. This post dives into what super() does, how it works, and why it’s essential for writing extensible, maintainable code in object-oriented programming.

2 0