name: "Your Name"
location: "Earth π"
pronouns: "they/them" # edit as needed
currently: "Building something awesome π"
learning: "Rust & WebAssembly π±"
looking_for: "Open-source collaborations π€"
ask_me_about: ["web dev", "APIs", "coffee β"]
fun_fact: "I debug with console.log and I'm not sorry."Enable the snake π β Create
.github/workflows/snake.ymlwith:name: Generate Snake on: schedule: [{cron: "0 0 * * *"}] workflow_dispatch: jobs: build: runs-on: ubuntu-latest steps: - uses: Platane/snk/svg-only@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: crazy-max/ghaction-github-pages@v3 with: target_branch: output build_dir: dist env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}