Skip to content

Latest commit

 

History

History
76 lines (56 loc) · 3.01 KB

File metadata and controls

76 lines (56 loc) · 3.01 KB
███████╗██████╗ ██╗    ██╗   ██╗██╗██╗     ██╗     ██╗ █████╗ ███╗   ███╗    ███████╗ █████╗ ██╗
██╔════╝██╔══██╗██║    ██║   ██║██║██║     ██║     ██║██╔══██╗████╗ ████║    ██╔════╝██╔══██╗██║
███████╗██████╔╝██║    ██║   ██║██║██║     ██║     ██║███████║██╔████╔██║    ███████╗███████║██║
╚════██║██╔══██╗██║    ╚██╗ ██╔╝██║██║     ██║     ██║██╔══██║██║╚██╔╝██║    ╚════██║██╔══██║██║
███████║██║  ██║██║     ╚████╔╝ ██║███████╗███████╗██║██║  ██║██║ ╚═╝ ██║    ███████║██║  ██║██║
╚══════╝╚═╝  ╚═╝╚═╝      ╚═══╝  ╚═╝╚══════╝╚══════╝╚═╝╚═╝  ╚═╝╚═╝     ╚═╝    ╚══════╝╚═╝  ╚═╝╚═╝

Software Developer | Full-Stack Engineer

Architecting distributed systems • Building scalable microservices

LinkedIn GitHub Twitter


whoami

class Developer {
    String[] expertise = {
        "Microservices Architecture", "Distributed Systems",
        "Event-Driven Design", "Cloud-Native Applications"
    };

    Stack backend = new Stack("Java", "Spring Boot", "Node.js", "Kafka");
    Stack frontend = new Stack("React", "Flutter", "TypeScript");
    Cloud[] platforms = {AWS, Azure, GCP};

    void build() {
        design("scalable systems");
        implement("clean architecture");
        deploy("production-grade solutions");
    }
}

./current-focus.sh

#!/bin/bash

pursuing_certifications() {
    echo "Oracle Cloud Infrastructure:"
    echo "  ✓ Multicloud Architect"
    echo "  ✓ AI Foundations"
    echo "  ⧗ Data Science | Developer"
}

working_on() {
    topics=("microservices" "distributed-systems" "event-driven-architecture")
    for topic in "${topics[@]}"; do
        echo "[*] Deep diving into $topic"
    done
}

$ git commit -m "Building the future, one commit at a time"