Understanding Containers with Docker

Motivation Recently, I had to buy a new laptop because my 6-years-old laptop’s motherboard got burnt, and it was not fixable. But luckily, my hard drive storage was okay, and I use Git and GitHub a lot, so most of my important projects are on GitHub. Though all of my personal projects were running perfectly on my old Linux/Ubuntu laptop, they are not running on my new one because of a Python version mismatch, and some packages are not directly available for Apple Silicon....

March 17, 2024 · 4 min · 822 words · Me

My First Post

Welcome to My Blog This is my first blog post. I’m excited to start sharing my thoughts and experiences with you! (updated) What to Expect I plan to post regularly, sharing insights, tips, and stories. Feel free to leave comments and engage with the content. Here’s a simple code snippet to brighten your day: def is_prime(number: int) -> bool: # Time complexity: O(sqrt(n)) if number == 1: return False i = 2 while i*i <= number: if n % i == 0: return False i += 1 return True Stay tuned for more posts coming soon!...

March 2, 2024 · 1 min · 96 words · Me