Access Import Anywhere in Python

That One Silly Python Feature Hackers Love (and Devs Hate) 🐍💻 Python is an amazing language. It’s clean, elegant, and super beginner-friendly. …until you stumble across one of its cursed features and realize “oh no, this is how hackers get RCE.” Today’s silly Python feature: 👉 You can import literally anything, from anywhere. Wait… I Can Do That? Normally in Python, you import modules at the top like a responsible developer: ...

August 19, 2025 · 3 min · Deni Andrian Prayoga

Understanding Python’s Method Resolution Order (MRO) Without Losing Your Sanity

Python loves inheritance. You can make classes inherit from other classes, those classes inherit from others, and suddenly you’ve got a full-blown family tree that looks like someone spilled spaghetti on your UML diagram. And then you run into the question: when I call a method, which ancestor actually answers the call? That’s where MRO (Method Resolution Order) comes in. Think of it like ls for Python’s class hierarchy—it shows you the exact path Python will take when looking for a method. No more guessing which def speak() gets invoked when you’ve got five grandparents fighting for attention. ...

August 19, 2025 · 3 min · Deni Andrian Prayoga