Skip to content
View HusainCode's full-sized avatar
πŸ’»
Busy coding
πŸ’»
Busy coding

Block or report HusainCode

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
HusainCode/README.md

Straw Hat Pirates Logo

Hi there, I'm Husain πŸ‘‹

πŸš€ I am a Software Engineer | πŸ” Passionate about Building & Solving | 🎯 Lifelong Learner
πŸ‘‰ Check out my Software Engineer Roadmap

Software Engineering Badge YouTube Badge


🌟 About Me

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.

⚠️ Warning: If you didn’t hire me, that decision might age poorly. I’m not just here to code. I’m here to lead, innovate, and outgrow expectations. And yes this one's very personal.

πŸ“ Interviewer Note

❌ 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.


πŸ’¬ Quotes That Drive Me

πŸ’‘ "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.

πŸ† GitHub Trophies

Trophies

πŸ… Certifications

Linux Essentials Certified Microsoft Certified: Azure Data Fundamentals Certified Blockchain Expert Red Hat Certified System Administrator Certified Associate Python Programmer Pending Certification Badge

🧾 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...

GitHub Stats

Husain's GitHub Stats Husain's GitHub Streak


Languages and Tools

Top Langs

Languages & Tools:

Python C C++ Java MySQL Linux Go


Connect with Me


Visitors count

Pinned Loading

  1. Threat-Detection-URL-Checker Threat-Detection-URL-Checker Public

    [Completed] Threat Detection URL Checker – A Python tool that retrieves public API URLs, checks their safety using the Google Web Risk API, and categorizes them as safe or threats. Results are logg…

    Python 6

  2. ARM-Assembly-Calculator ARM-Assembly-Calculator Public

    [Completed] A simple calculator written in ARM Assembly that performs addition and subtraction on two integers.

    Assembly 2

  3. simple-calculator simple-calculator Public

    [Completed] This repository contains a very simple calculator

    Go 5

  4. Rock-Paper-Scissors-C Rock-Paper-Scissors-C Public

    [Completed] A classic Rock, Paper, Scissors game

    C 4

  5. localedge-env-monitor localedge-env-monitor Public

    [In progress] Real-time environmental monitoring system for Raspberry Pi

    Python 3

  6. pico-firmware pico-firmware Public

    [In progress] This firmware sends data to the [env-monitor-server](https://github.com/husaincode/env-monitor-server) over HTTPs

    Python 2