I quit writing Docstrings. ChatGPT is my new Documentation Intern.
If there’s one thing Python developers collectively agree on, besides PEP 8 and the fact that "import this" is a fun Easter egg nobody uses, it’s this: writing documentation is…
If there’s one thing Python developers collectively agree on, besides PEP 8 and the fact that "import this" is a fun Easter egg nobody uses, it’s this: writing documentation is…
You were probably supposed to be working on that feature ticket you promised your PM three sprints ago. But here you are, elbow-deep in convolutional layers, trying to make your…
Because nothing says “I’m an adult with responsibilities” like spending four hours cartoonifying your own face. Let’s be honest. At some point between debugging spaghetti code and microwaving yesterday’s coffee,…
Imagine you're trying to follow a Formula 1 car as it races around a track. You don't care where the car started—you just want to keep your eyes glued to…
Welcome back to Pathetic Programming, the only blog series where we celebrate the glorious art of writing Python code that’s equal parts creative, chaotic, and completely unnecessary. This isn’t your…
If you’ve ever wondered how your robotic vacuum cleaner doesn’t slam into walls every time or how a self-driving car hugs curves without spinning out like a confused Beyblade, allow…
Welcome to the Pathetic Programming series where I intend to build programs with some silly and stupid goals. The idea was just to have fun with programming, not think much…
From large language models like ChatGPT to self-driving cars like Waymo, programming has helped us create and build fascinating things, and one can only imagine the upcoming advancements in technology.…
Lately, I have been working on a project that involves sending images, captured by an industrial camera, from one station to another. The task itself is trivial, however, if the…
In Python, a generator function allows us to iterate over particular elements such as a list, and returns the following element every time we call it. Now, one might think…