Hi there 馃憢

Welcome to my blog. Here I will share my journey on the things I learn.

Understanding Containers with Docker

Motivation Recently, I had to buy a new laptop because my 6-years-old laptop鈥檚 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鈥檓 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鈥檚 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