|
|
|
|
|
|
|
|
|
|
|
|
|
gantt
title Developer Architectural Evolution Journey
dateFormat YYYY-MM
section Level 1: Foundations
CS Fundamentals & Core Algorithms :done, lvl1, 2022-09, 2023-06
Django & SQL Full-Stack Mastery :done, lvl1b, 2023-05, 2023-11
section Level 2: Scaled Systems
Next.js & Microservices Architectures :done, lvl2, 2023-10, 2024-05
Docker, Cloud Deployments & CI/CD :done, lvl2b, 2024-02, 2024-09
section Level 3: AI & RAG Engineering
LLM Pipelines & LangChain Frameworks :active, lvl3, 2024-06, 2025-04
Vector DBs, Qdrant & GraphRAG :active, lvl3b, 2024-10, 2025-10
section Level 4: Boss Stage (Autonomous Agents)
Autonomous Multi-Agent Orchestration :crit, lvl4, 2025-05, 2026-12
<style>
.joy-base { fill: #161b22; stroke: #00e5ff; stroke-width: 2; }
.joy-stick-head { fill: #ff0055; stroke: #ffffff; stroke-width: 1.5; }
.joy-stick-shaft { stroke: #475569; stroke-width: 8; stroke-linecap: round; }
.joy-btn-red { fill: #ef4444; stroke: #ffffff; stroke-width: 1; }
.joy-btn-blue { fill: #3b82f6; stroke: #ffffff; stroke-width: 1; }
.joy-btn-green { fill: #22c55e; stroke: #ffffff; stroke-width: 1; }
.joy-btn-yellow { fill: #eab308; stroke: #ffffff; stroke-width: 1; }
.joy-label { font-family: monospace; font-size: 10px; font-weight: bold; fill: #00e5ff; }
.joy-sub { font-family: monospace; font-size: 9px; fill: #8b949e; }
</style>
|
|
"Measuring programming progress by lines of code is like measuring aircraft building progress by weight." โ Bill Gates |
Crafted with โก & Retro Arcade Tech by ANU5565 | Building Next-Gen Agentic Systems.
๐ ๏ธ Customization & Automation Workflows (Expand for GitHub Actions Workflows & Setup)
Create .github/workflows/generate-snake.yml:
name: Generate Contribution Snake & Rocket Redraw
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
push:
branches:
- main
jobs:
generate:
runs-on: ubuntu-latest
steps:
- name: generate snake.svg
uses: Platane/snk/svg-only@v3
with:
github_user_name: ${ github.repository_owner }
outputs: |
dist/snake.svg?palette=github-dark&color_snake=#00e5ff&color_dots=#0d1117,#161b22,#00ff7f,#00e5ff,#a855f7
- name: push snake.svg to output branch
uses: crazy-max/ghaction-github-pages@v3.1.0
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${ secrets.GITHUB_TOKEN }- Ensure your repository is named strictly after your username:
ANU5565. - Navigate to Settings -> Actions -> General -> Workflow permissions and set Read and write permissions.
- Push
README.mdtomainbranch.



