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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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

Typing SVG

πŸš€ Software Engineer | πŸ” Passionate about Building & Solving | 🎯 Lifelong Learner

Roadmap

Software Engineering YouTube Profile Views

🌟 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

πŸ‘¨β€πŸ’» Who Am I?

Click to view my over-engineered self-introduction
from __future__ import annotations
from abc import ABC, abstractmethod
from dataclasses import dataclass
from typing import Protocol


# --- Core Interfaces & Abstractions (Interface Segregation) --- #

class Logger(Protocol):
    def log(self, message: str) -> None:
        ...


class Debuggable(ABC):
    @abstractmethod
    def logger(self) -> Logger:
        pass

    def debug(self, message: str) -> None:
        self.logger().log(f"[DEBUG] {message}")


# --- Concrete Implementation (Dependency Inversion) --- #

class ConsoleLogger:
    def log(self, message: str) -> None:
        print(message)


# --- Domain Layer (Single Responsibility Principle) --- #

@dataclass(frozen=True)
class Education:
    bachelors: str
    masters: str
    specialization: str


# --- Application Layer (Abstraction, Encapsulation) --- #

class Engineer(ABC):
    @abstractmethod
    def introduce(self) -> str:
        pass


# --- High-Level Module (Open/Closed Principle + DI) --- #

class SoftwareEngineer(Engineer, Debuggable):

    def __init__(
        self,
        name: str,
        passion: str,
        location: str,
        education: Education,
        logger: Logger,
    ):
        self._name = name
        self._passion = passion
        self._location = location
        self._education = education
        self._logger = logger

        self.debug("SoftwareEngineer instance initialized.")

    def logger(self) -> Logger:
        return self._logger

    def introduce(self) -> str:
        self.debug("Generating introduction...")
        return (
            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}."
        )


# --- Composition Root (Dependency Injection) --- #

def main() -> None:
    logger = ConsoleLogger()

    education = 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=education,
        logger=logger,
    )

    print(husain.introduce())


if __name__ == "__main__":
    main()

πŸ–¨οΈ Output:

[DEBUG] SoftwareEngineer instance initialized.
[DEBUG] Generating introduction...
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

GitHub Trophies

πŸ… Certifications

Linux Essentials
Linux Essentials
Azure Data
Azure Data
Blockchain
Blockchain Expert
RHCSA
RHCSA
Python
Python PCAP
Next Cert
Coming Soon
πŸ“œ View Certification Details
🧾 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

πŸ“ˆ Contribution Activity

Contribution Graph

πŸ› οΈ Languages & Tools

Java
Java
Spring
Spring
Python
Python
C++
C++
C
C
TypeScript
TypeScript
Docker
Docker
Kubernetes
Kubernetes
AWS
AWS
MySQL
MySQL
Linux
Linux

🀝 Connect with Me

LinkedIn GitHub Roadmap



⭐️ From HusainCode

Building the future, one commit at a time.

Wave

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. AirspaceLiveSim AirspaceLiveSim Public

    Java

  3. localedge-env-monitor localedge-env-monitor Public

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

    Python 3

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

  5. Rock-Paper-Scissors-C Rock-Paper-Scissors-C Public

    [Completed] A classic Rock, Paper, Scissors game

    C 5

  6. core core Public

    Forked from home-assistant/core

    🏑 Open source home automation that puts local control and privacy first.

    Python