Skip to content
View obay6692's full-sized avatar

Highlights

  • Pro

Block or report obay6692

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 is supported. This note will only be visible to you.
Report abuse

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

Report abuse
obay6692/README.md

☁️ Greetings From Production ☁️

from enum import Enum
from dataclasses import dataclass


class University(Enum):
    UNIVERSITY_OF_AGDER = "UiA — Grimstad, Norway"


@dataclass
class Engineer:
    name:        str
    location:    str
    university:  University
    field:       str
    role:        str
    stack:       dict
    currently:   str
    looking_for: str


def main():
    me = Engineer(
        name        = "Obay bin Khadra",
        location    = "Norway 🇳🇴",
        university  = University.UNIVERSITY_OF_AGDER,
        field       = "Data Engineering & Software Development — graduated 2025",
        role        = "Software Architect & DevOps Engineer",

        stack = {
            "cloud":      ["Kubernetes", "ArgoCD", "Sealed Secrets", "OpenStack"],
            "iac":        ["Terraform", "Ansible", "Vagrant", "Docker", "cloud-init"],
            "backend":    ["FastAPI", "ASP.NET Core", "Flask", "Go", "SQLAlchemy", "EF Core"],
            "frontend":   ["React", "React Router", "Axios", "Recharts"],
            "ai_vision":  ["OpenCV", "Ollama", "feature matching", "face recognition"],
            "data":       ["Streamlit", "Plotly", "Monte Carlo", "Pandas", "NumPy"],
            "embedded":   ["Mbed OS", "STM32", "I²C", "WiFi", "RTOS", "Thingsboard"],
            "security":   ["OAuth 2.0", "TOTP 2FA", "bcrypt", "JWT", "OWASP basics"],
            "languages":  ["Python", "C", "C++", "C#", "Go", "JavaScript", "Bash"],
        },

        currently   = "Maintaining Virtual CFO — a production-grade fintech SaaS for Norwegian SMBs",
        looking_for = "DevOps · Software Architecture · Cloud Engineering · IoT roles",
    )

    print(f"Hello, I'm {me.name} 👋")


if __name__ == "__main__":
    main()

🎓 Bachelor's Graduation Project

A full-stack financial management platform for Norwegian SMBs.

FastAPI  +  React  +  Ollama  +  Docker  +  Nginx (HTTPS)
   │         │         │          │         │
   └─ JWT, TOTP 2FA, bcrypt, rate limiting, account lockout
             │
             └─ Dashboard · Invoices · Cash-flow forecast · Payment prioritization · AI advisor · GDPR export

🚀 Featured Projects

Project Stack
☸️ k8s-mastodon-monitoring-stack Mastodon + ArgoCD + Sealed Secrets + Prometheus/Grafana/Loki
🔧 mbed-stm32-embedded-projects STM32 · Mbed OS · I²C · WiFi · RTOS · IoT telemetry
🛠️ ikt114-it-orchestration-devops Bash · Docker · Vagrant · Ansible · Terraform · OpenStack
🔐 flask-2fa-oauth-app Flask · GitHub OAuth · TOTP 2FA · bcrypt · lockout
📊 us_election_simulation_project Streamlit · Monte Carlo · Plotly · Pandas
👁️ ikt213-computer-vision-assignments OpenCV · ORB · feature matching · face recognition

📫 Get in Touch

LinkedIn GitHub Location

Open to DevOps, Software Architecture, Cloud Engineering, and IoT roles.

Pinned Loading

  1. us_election_simulation_project us_election_simulation_project Public

    Monte Carlo simulation of US presidential elections with a multi-page Streamlit dashboard — statistics final project

    Python

  2. flask-2fa-oauth-app flask-2fa-oauth-app Public

    Flask web app with TOTP two-factor authentication, GitHub OAuth, bcrypt password hashing, and account lockout

    Python

  3. ikt114-it-orchestration-devops ikt114-it-orchestration-devops Public

    DevOps coursework: bash, Docker, Vagrant, Ansible, and Terraform IaC deploying CTFd on OpenStack

    HCL

  4. k8s-mastodon-monitoring-stack k8s-mastodon-monitoring-stack Public

    End-to-end Kubernetes platform: Mastodon + ArgoCD + sealed-secrets + Prometheus/Grafana/Loki monitoring

  5. mbed-stm32-embedded-projects mbed-stm32-embedded-projects Public

    Embedded IoT projects on STM32 DISCO-L475VG-IOT01A with Mbed OS — GPIO, I2C sensors, WiFi, RTOS, telemetry

    C++

  6. virtual-cfo virtual-cfo Public

    Bachelor's graduation project: full-stack financial management platform for Norwegian SMBs — FastAPI + React + 2FA + AI advisor + Dockerized with HTTPS

    Python 1 1