Pathetic Programming 1: Creating a Random Excuse Generator with Python
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…
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…
Remembering the math we studied in college, there was a term called "Fourier transformation". A few nerds might recall completely what the term means, while a few of us, like…
A couple of weeks ago, I published a blog on creating a GUI in Python using Tkinter. I thought of kicking it up a notch and integration the function of…
Picture this: a cluttered virtual space with random files scattered all over your PC. Now you can manually sort them out but programmers always want to get creative for doing…
Machine learning seems cool and interesting when you see the model in action. What many people don't reveal is that training and optimizing one is tiresome, especially when you have…
As a Python beginner, you see videos and tutorials on YouTube or maybe read a blog, just like now. In such tutorial videos/blogs, you come across many Python libraries that…
While developing Python applications, it is frequently the case that you need some input parameters from the user to customize the behavior of the program dynamically. This is where Python…