╔══════════════════════════════════════════════════════════════════════╗
║ VAULT-TEC PERSONNEL FILE — CLASS A ║
╠══════════════════════════════════════════════════════════════════════╣
║ DESIGNATION : vaulttec-dev ║
║ OCCUPATION : Full-Stack Software Engineer ║
║ FACTION : Independent Developer — Wasteland Division ║
║ COORDINATES : Ukraine Wasteland, Eastern Sector ║
║ CLEARANCE : [████████████████████████████] MAX ║
║ THREAT LEVEL : NON-HOSTILE / COFFEE-DEPENDENT ║
╚══════════════════════════════════════════════════════════════════════╝
ATTR |
DESCRIPTION |
LVL |
PROGRESS |
|---|---|---|---|
| 💪 S | Strength — Backend Architecture | 9 | [█████████░] 90% |
| 👁️ P | Perception — Bug Detection & Code Review | 8 | [████████░░] 80% |
| ⚡ E | Endurance — Debugging Sessions at 3AM | 10 | [██████████] 100% |
| 🎯 C | Charisma — Technical Communication | 7 | [███████░░░] 70% |
| 🧠 I | Intelligence — System & API Design | 9 | [█████████░] 90% |
| 🏃 A | Agility — Feature Delivery Speed | 8 | [████████░░] 80% |
| 🍀 L | Luck — Zero-Downtime Production Deploys | 6 | [██████░░░░] 60% |
┌──────────────────────────────────────────────────────────────────┐
│ │
│ ★ [PERK] TypeScript Adept Lv.MAX │
│ Zero runtime type errors — blessed by the Compiler God │
│ │
│ ★ [PERK] Docker Whisperer Lv.5 │
│ Containers obey unconditionally; Compose fears nothing │
│ │
│ ★ [PERK] API Architect Lv.9 │
│ REST and GraphQL APIs designed at nuclear precision │
│ │
│ ★ [PERK] Night Owl Lv.MAX │
│ Productivity output peaks between 22:00 and 03:00 │
│ │
│ ★ [PERK] Lone Wanderer Lv.7 │
│ +15% delivery speed when operating without a team │
│ │
│ ★ [PERK] Extension Author Lv.8 │
│ VS Code Extension published on the Marketplace │
│ │
└──────────────────────────────────────────────────────────────────┘
┌──────────────────────────────────────────────────────────────────┐
│ ARMORY MANIFEST — LOADOUT ALPHA │
├──────────────────────────────────────────────────────────────────┤
│ PRIMARY WEAPON : TypeScript + Node.js [████████████] MASTERED│
│ SECONDARY WEAPON : React / Next.js [██████████░░] EXPERT │
│ EXPLOSIVES : Docker + Compose [█████████░░░] EXPERT │
│ ENERGY WEAPON : PostgreSQL + Redis [████████░░░░] SKILLED │
│ SNIPER RIFLE : Python / Go [███████░░░░░] SKILLED │
│ UNARMED BONUS : AI-assisted dev [██████████░░] ACTIVE │
└──────────────────────────────────────────────────────────────────┘
> [SETUP] Snake GitHub Action
Create .github/workflows/snake.yml in your profile repo:
name: Generate Snake
on:
schedule:
- cron: "0 */12 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
generate:
runs-on: ubuntu-latest
steps:
- uses: Platane/snk@v3
with:
github_user_name: ${{ github.repository_owner }}
outputs: |
dist/github-contribution-grid-snake.svg
dist/github-contribution-grid-snake-dark.svg?palette=github-dark
- uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: output
publish_dir: ./dist
force_orphan: true


