12 May Python How to Fix the u2013 Unicode Error in Openpyxl on Python 2.7 May 12, 2025 By Daniyal Ahmed 0 comments I hit this snag while cleaning up an old Python 2.7 box that still churns out reports. One Excel file refused to convert because of a s... Continue reading
12 May Python Fix WinError 5 Pip Permission Errors on Windows 8.1 with Python May 12, 2025 By Daniyal Ahmed 0 comments I hit this wall on a Windows-8.1 laptop running Python 3.4: every time I tried to upgrade pip (or install anything) the installer froze... Continue reading
10 May Python How Do I Fix the Text/Byte Split Issue in Python 3’s XML Generation? May 10, 2025 By Daniyal Ahmed 0 comments The script builds a tiny XML file with lxml: it creates a <results> root, adds two nodes for “Country” and “City,” then tries to ... Continue reading
10 May Python How to Run a Execute cURL Commands in Python May 10, 2025 By Daniyal Ahmed 0 comments I love quick wins in the terminal. Type a single line, hit Enter, and data flows back. But sooner or later I need that same call inside... Continue reading
06 May Python How I Fix Pulling a Page with Raw Socket a 404 Errors May 6, 2025 By Daniyal Ahmed 0 comments I thought my setup was bullet‑proof: a tiny Apache server inside an Ubuntu VM, a single index.html, and a friendly DNS shortcut into /e... Continue reading
06 May Python How I Fix Flask Global 404 Handler for API and HTML Routes May 6, 2025 By Daniyal Ahmed 0 comments I run a mini‑web server at home. It shows a plain web page at / and serves JSON under /gnodes/api/v1.0/*. At first glance the code look... Continue reading
03 May Python How to Easily Create Box and Whisker Plot in Python May 3, 2025 By Daniyal Ahmed 0 comments Hi, I’m a data‑science hobbyist who loves turning raw numbers into pictures that tell the story in one glance. Today I’m walking you th... Continue reading
03 May Python How To Generate OTP Using Python May 3, 2025 By Daniyal Ahmed 0 comments I’m a big fan of practical mini‑projects the kind you can build, test, and extend in a single sitting. Today I’ll walk you through one ... Continue reading
29 Apr Python How to Build a Tiny Python App That Reminds Me to Take Breaks April 29, 2025 By Daniyal Ahmed 0 comments Spending all day at a screen is brutal on the eyes, the back, and the brain. So I decided to whip up a desktop toast that nudges me eve... Continue reading
29 Apr Python How I Built a Flexible CAPTCHA Generator & Verifier Using Python April 29, 2025 By Daniyal Ahmed 0 comments I’ve always enjoyed adding little “mini-projects” to my tool belt especially ones that combine clean code with a bit of visual flair. R... Continue reading