https://github.com/robertzaufall/nvidia-repos
Static catalog of public NVIDIA GitHub repositories
https://github.com/robertzaufall/nvidia-repos
Last synced: about 1 month ago
JSON representation
Static catalog of public NVIDIA GitHub repositories
- Host: GitHub
- URL: https://github.com/robertzaufall/nvidia-repos
- Owner: robertZaufall
- Created: 2026-05-21T22:34:49.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-05-22T07:08:45.000Z (about 2 months ago)
- Last Synced: 2026-05-22T15:25:58.201Z (about 1 month ago)
- Language: HTML
- Homepage: https://glaubi.net/nvidia
- Size: 49.8 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
# nvidia-repos
`nvidia-repos` is a small static catalog of active NVIDIA GitHub repositories.
It groups public NVIDIA repositories into rough technology clusters and keeps
GitHub metadata fresh with a scheduled update script.
Included repositories match this filter:
- GitHub org: `NVIDIA`
- At least 200 stars
- Non-fork and non-archived
- Last pushed within the previous three calendar months
The page also includes adjacent active Jetson/edge-AI repository sections from
`NVIDIA-AI-IOT`, `jetsonhacks`, and `dusty-nv`; those sections require only a
commit within the previous three calendar months.
## Open locally
Open `index.html` directly in a browser, or run a local preview server:
```bash
python3 -m http.server 8000
```
Then visit `http://localhost:8000`.
## Update repository metadata
```bash
python3 update_stats.py
```
The script fetches stars, forks, total commits, recent commits, last commit
dates, primary language, topics, and descriptions from GitHub. It also rewrites
the first "most traction" table, the cluster tables below it, and the adjacent
Jetson/edge-AI source sections.
For local runs, authenticate with the GitHub CLI or set `GITHUB_TOKEN`:
```bash
gh auth login
python3 update_stats.py
```
## Main files
- `index.html` - generated static catalog page.
- `update_stats.py` - GitHub metadata fetcher and HTML generator.
- `stats_history.json` - stored snapshots used for 30-day star/fork deltas.
- `favicon.svg` - NVIDIA-themed favicon.
- `.github/workflows/static.yml` - deploys the static site to GitHub Pages.
- `.github/workflows/update-stats.yml` - scheduled catalog refresh.