Pythonium

Python, What else ?

The Pythonium Blog

Welcome to my "new" blog! I plan to publish articles related to Python, as you’ve probably guessed 🙂 I will cover topics like data science, programming, data, and other things (perhaps a bit less related to Python, but still within the Tech realm).
My posting schedule may be a bit slow, but please be patient!

Floating-point number pitfalls in programming

Image
Floating-point numbers are one of the concepts that every developer encounters early on. They allow decimal numbers to be represented in almost every programming language. However, their behavior can ...

AI Agents for Automation

Image
Automation still relies on deterministic systems (rules, workflows, etc.) that are effective but not very adaptive. AI agents introduce a goal-oriented approach, combining LLMs, memory, tools, and pla...

Modernizing a legacy application

Image
Legacy applications are still extremely common in enterprises. Whether it’s an ERP system built fifteen years ago, a monolithic Java EE application, or an older .NET project, these systems often con...

YouTube proxy: What it is and how to set it up

Image
A YouTube proxy is a specialized tool that works as a bridge between the user and YouTube. It redirects user traffic through its own servers, enabling access to videos that might otherwise be blocked ...

Create your python module and publish it on pypi

Image
When you've created a module you've put some effort into, and it feels useful for other developers, you probably want to share it. (Ahhh, developers really are altruistic creatures.) Fortunately, for ...

How to do web scraping with Python

Image
Web scraping is a method to extract data from websites, whether for collecting prices, market analysis, and much more. Python is the preferred language thanks to libraries like requests and BeautifulS...