There is no excerpt because this is a protected post.
We worry so much
“We worry so much. Sometimes it feels like that’s all we do, but in the end it just gets washed away. All of it just… just gets washed away.” – The Sopranos, S06E11: Cold Stones, 34:00
A great wind carries me across the sky
“Sometimes I go about in pity for myself, and all the while, a great wind carries me across the sky.” – Ojibwe saying Comment The saying speaks to the idea that while one may be absorbed in their own troubles and self-pity, there are larger forces at play that are moving them through life and […]
Being an immigrant
“You know, in some ways, the whole prison thing is not that different than being an immigrant.” – Tony Blundetto, The Sopranos, S05E06
The Pitfalls of Using Mutable Default Arguments in Python
In Python, it can be convenient to define functions with default values. These are used when a value is not explicitly provided when the function is called: However, unexpected behavior can arise when using mutable objects, such as lists, as default values: You might expect that the players list would be empty each time this […]
How to Find and Access Windows 10 Lock Screen Images
Discover how to access Windows 10’s vibrant lock screen images stored in hidden system folders and use them as your custom wallpapers.
How to install Python to Debian/Ubuntu
Installing the Python version supported by your Debian or Ubuntu operating system is fairly straightforward. Use the following commands: Note: The above commands will install the default Python3 version that comes with your specific Debian or Ubuntu version. To install a more recent Python version on your Debian or Ubuntu system, you can use the […]
Discover a Resourceful Collection: Debian Server Tools on GitHub
debian-server-tools offers an interesting resource for Debian-based servers and web applications, presenting a collection of Bash and PHP scripts that are regularly updated on GitHub.
Protected: In The Fall
There is no excerpt because this is a protected post.
Exception Handling in Python
Exception handling is an integral part of coding in any language, and Python is no exception. However, one common mistake that developers often make is to catch all exceptions to avoid crashes. While this might seem like a good strategy to keep your program running, it can actually mask real issues and lead to hard-to-diagnose […]