├── .github └── workflows │ └── snake.yml └── README.md /.github/workflows/snake.yml: -------------------------------------------------------------------------------- 1 | name: Generate snake animation 2 | 3 | on: 4 | schedule: # execute every 12 hours 5 | - cron: "* */12 * * *" 6 | workflow_dispatch: 7 | push: 8 | branches: 9 | - master 10 | 11 | jobs: 12 | generate: 13 | permissions: 14 | contents: write 15 | runs-on: ubuntu-latest 16 | timeout-minutes: 5 17 | 18 | steps: 19 | 20 | - name: generate snake.svg 21 | uses: Platane/snk/svg-only@v3 22 | with: 23 | github_user_name: ${{ github.repository_owner }} 24 | outputs: | 25 | dist/snake.svg 26 | dist/snake-dark.svg?palette=github-dark 27 | 28 | - name: push snake.svg to the output branch 29 | uses: crazy-max/ghaction-github-pages@v3.1.0 30 | with: 31 | target_branch: output 32 | build_dir: dist 33 | env: 34 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 35 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |

👋 Hi there! I'm Phan Van Linh

3 |

Full Stack Developer & AI Engineer from Vietnam 🇻🇳

4 |
5 | 6 | ### 📊 GitHub Analytics 7 | 8 |
9 | stats graph 10 | languages graph 11 |
12 | 13 | ### 🐍 My Contribution Graph 14 | 15 | ![github contribution grid snake animation](https://raw.githubusercontent.com/StarDev913/StarDev913/output/snake-dark.svg#gh-dark-mode-only) 16 | ![github contribution grid snake animation](https://raw.githubusercontent.com/StarDev913/StarDev913/output/snake.svg#gh-light-mode-only) 17 | 18 | 19 | ### 📈 Profile Views 20 | 21 |
22 | Visitor Counter 23 |
24 | 25 | ### 💡 Development Philosophy 26 | 27 |
28 |

🎯 Clean Architecture - Writing maintainable and scalable code is an art

29 |

🔁 Quality First - Thorough testing ensures reliable deployments

30 |

📚 Portfolio-Driven - Let the work speak for itself

31 |

🌱 Continuous Learning - Embracing new technologies and methodologies

32 |

💬 Clear Communication - The bridge between great ideas and successful execution

33 |

🕊️ Professional Freedom - Discipline drives successful remote work

34 |
35 | 36 | ### 🛠️ Technical Expertise 37 | 38 | #### 🌐 Frontend Development 39 |
40 | Frontend Stack 41 |
42 | 43 | #### ⚙️ Backend Development 44 |
45 | Backend Stack 46 |
47 | 48 | #### 🤖 AI & Machine Learning 49 |
50 | AI/ML Stack 51 |
52 | 53 | #### 🚀 DevOps & Tools 54 |
55 | DevOps Stack 56 |
57 | 58 | --- 59 | --------------------------------------------------------------------------------