I'm a passionate developer from Kolkata,India. with a love for building innovative and efficient applications. I enjoy tackling challenging problems and am always eager to learn new technologies.
- π Iβm currently working on a cool project involving Web3.
- π± Iβm currently learning Rust.
- π― Iβm looking to collaborate on open-source projects.
- π« How to reach me: tuhin.thakur1233@outlook.com.
- β‘ Fun fact: I know chinese
π Note: How to Enable the Snake Animation
The contribution snake animation above will show as a broken image at first. To fix this, you need to create a simple GitHub Action that runs automatically to generate the animation file.
Don't worry, it's easy! Just follow these 3 steps:
-
In your
Tuhin810repository, create a new folder named.github, and inside that, another folder namedworkflows. The final path should be.github/workflows. -
Inside the
workflowsfolder, create a new file namedmain.yml. -
Copy and paste the code below into the
main.ymlfile:name: Generate Snake Animation on: schedule: - cron: "0 */12 * * *" # Runs every 12 hours workflow_dispatch: jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: Platane/snk@v2 with: github_user_name: ${{ github.repository_owner }} svg_out_path: dist/github-contribution-grid-snake.svg - uses: crazy-max/ghaction-github-pages@v2.5.0 with: target_branch: output build_dir: dist env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
After saving this file, the animation will be generated within a few minutes and will update automatically every 12 hours!




