π I am a Software Engineer | π Passionate about Building & Solving | π― Lifelong Learner
π Check out my Software Engineer Roadmap
I'm passionate about continuous learning and growth as a Software Engineer. I enjoy working on a variety of technical challenges, from system-level programming to backend development, and I'm constantly exploring innovative technologies.
I'm not aiming to be the best this year, or the next, or even the one after that. Iβve got my whole life to master this craft. Iβm here for the long run, dedicated to becoming one of the best in the field.
β Please donβt ask me βHow do you stay up to date with tech?β
If you canβt already tell from my work, my consistency, and my drive. I genuinely canβt help you answer that.
π‘ "Find a job you enjoy doing, and you will never have to work a day in your life." β Mark Twain
π§ "Once you stop learning, you start dying." β Albert Einstein
π "Commit yourself to lifelong learning. The most valuable asset youβll ever have is your mind and what you put into it." β Albert Einstein
from dataclasses import dataclass
class DebugMixin:
def debug_log(self, message):
print(f"[DEBUG] {message}")
@dataclass
class Education:
bachelors: str
masters: str
specialization: str
class SoftwareEngineer(DebugMixin):
"""
A class representing a software engineer with a focus on
embedded systems, IoT, and intelligent software solutions.
"""
def __init__(self, name: str, passion: str, location: str, education: Education):
self.name = name
self.passion = passion
self.location = location
self.education = education
self.debug_log("SoftwareEngineer object created.")
def generate_introduction(self) -> str:
"""
Generates a formatted introduction string.
"""
self.debug_log("Generating introduction...")
intro = (
f"π¨βπ» Hi there, I'm {self.name}!\n"
f"π‘ Passionate about {self.passion} and solving real-world problems.\n"
f"π Based in {self.location}.\n"
f"π I hold a Bachelor's in {self.education.bachelors}.\n"
f"π Currently pursuing a Master's in {self.education.masters}, "
f"specializing in {self.education.specialization}.\n"
)
return intro
def execute(self):
"""
Displays the formatted introduction.
"""
self.debug_log("Executing introduction routine...")
print(self.generate_introduction())
def main():
husain_edu = Education(
bachelors="Computer Science",
masters="Data Science",
specialization="Machine Learning & Embedded Intelligence"
)
husain = SoftwareEngineer(
name="Husain",
passion="building smart software & embedded systems",
location="Texas",
education=husain_edu
)
husain.execute()
if __name__ == "__main__":
main()
### π¨οΈ Output:
```bash
$ python3 intro.py
[DEBUG] SoftwareEngineer object created.
[DEBUG] Executing introduction routine...
[DEBUG] Compiling thoughts...
π¨βπ» Hi there, I'm Husain!
π‘ Passionate about building smart software & embedded systems and solving real-world problems.
π Based in Texas.
π I hold a Bachelor's in Computer Science.
π Currently pursuing a Master's in Data Science, specializing in Machine Learning & Embedded Intelligence.
π§Ύ Certification | ποΈ Issuer |
---|---|
Linux Essentials Certified | Linux Professional Institute (LPI) |
Microsoft Certified: Azure Data Fundamentals | Microsoft |
Certified Blockchain Expert | Blockchain Council |
Red Hat Certified System Administrator | Red Hat |
Certified Associate Python Programmer | Python Institute |
Next Certification | π Pending... |