Posts

Showing posts from June, 2026

๐Ÿš€ DevOps Journey Completed — What I Learned & What’s Next

Image
I’m happy to share that I have successfully completed my DevOps learning journey . Alongside learning, I also built and shared educational content through blogs and videos on different platforms like Medium, Blogspot, YouTube, LinkedIn, Facebook, and TikTok. ๐Ÿ”— My Profiles & Content Links LinkedIn: https://www.linkedin.com/in/raees-yaqoob-qazi-ryqs/ Medium: https://medium.com/@raeesyaqubqazi Blogspot: https://brillertechnologies.blogspot.com/ Facebook: https://web.facebook.com/profile.php?id=61553548371216 YouTube: https://www.youtube.com/@RaeesQ TikTok: https://www.tiktok.com/@mrryqs?_t=ZS-8y7t0fQfJKu&_r=1 ๐Ÿง  What I Covered in My DevOps Journey During this journey, I worked on and learned the core DevOps stack: ๐Ÿง Linux (System basics & administration) ๐Ÿ”ง Git & GitLab (Version control & collaboration) ๐Ÿณ Docker (Containerization) ☁️ AWS (Cloud fundamentals & services) ⚙️ Jenkins (CI/CD pipelines) ☸️ Kubernetes (Container orchestration) ๐Ÿ“ฆ Terraform (Infrastruc...

Understanding raise Exception in Python – A Beginner-Friendly Guide

Image
 Today, I’m going to discuss a very important concept in Python: How to raise an Exception in code and why we use it. As DevOps engineers, we often write automation scripts, CI/CD pipelines, and cloud management tools. In real-world projects, sometimes we want our program to stop execution when something unexpected happens. This is where raise Exception becomes useful. What is raise Exception ? The raise keyword is used to manually generate an exception. When Python encounters a raised exception that is not handled, it immediately stops the program. Example 1: Raising an Exception Outside a Try Block cloud_envs = [ "aws" , "gcp" , "azure" ] try: print(cloud_envs[4]) except: print("Exception handled") finally: print("I will execute anyways") print("This code should run") raise Exception("This is a new Exception") Output Exception handled I will execute anyways This code should run Exception: This is a...