peeyush@system:~$ cat developer.json{
"name": "Peeyush Tiwari",
"role": "Pre-Final Year BCA Student @ IGNTU, Amarkantak (MP)",
"cgpa": "8.40 / 10",
"focus": [
"AI/ML",
"Agentic Systems",
"Full-Stack Dev",
"Offline/Air-Gapped Deployments"
],
"current_work": [
"Building 'SecureOps AI' — air-gapped predictive copilot for ISRO Bharatiya Antariksh Hackathon 2026",
"CodeAlpha AI Internship (July–August 2026)",
"Microsoft Learn Student Ambassador"
],
"learning": [
"NIMCET & CUET PG prep",
"Explainable AI (SHAP)"
],
"philosophy": "Building real, deployed projects, not just toy demos"
}|
|
|
|
ISRO Bharatiya Antariksh Hackathon 2026 An air-gapped predictive copilot designed for satellite network and MPLS operations.
|
CS50x Final Project A real-time face recognition attendance system, fully containerized and deployable.
|
|
Law Enforcement Dashboard Bilingual law enforcement analytics platform providing crime intelligence and trends.
|
Security Intelligence Platform A modern security web application backed by an event-driven serverless pipeline.
|
|
Financial Forecasting Tool A web tool that calculates and forecasts SIP mutual fund investment returns.
|
Emergency Utility Android App A native Android application providing instant access to emergency and utility services.
|
|
|
|
How to enable this Snake Animation?
To automatically generate this animated contribution graph daily, follow these setup instructions:
- Create a GitHub Action workflow file in your profile repository at
.github/workflows/snake.yml. - Add the following configuration to the file:
name: Generate Snake Animation
on:
schedule: # Run every 24 hours
- cron: "0 0 * * *"
workflow_dispatch: # Allow manual triggering
push:
branches:
- main
jobs:
generate:
permissions:
contents: write
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Generate github-contribution-grid-snake.svg
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
- name: Push github-contribution-grid-snake.svg to the output branch
uses: crazy-max/ghaction-github-pages@v3.1.0
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}- Enable Action Permissions:
- Go to your repository Settings > Actions > General.
- Scroll down to Workflow permissions, choose Read and write permissions, and click Save.
- Run the workflow manually once by going to Actions > Generate Snake Animation > Run workflow. The snake SVG will be generated and pushed to a new branch named
output.
