Skip to content

Commit 5ea3ee8

Browse files
Niraj Bajpaiclaude
andcommitted
Add Product Management & University Conferences with 38+ repositories
Successfully starred 38 out of 40 repositories across: ## Product Management Resources - 10 repos - Awesome lists: dend, ProductHired, Pediomo, prakashsellathurai - Regional resources (Chinese PM resources) - Curated learning resources, tools, podcasts ## CMU ML/AI Conferences & Courses - 10 repos - ML in Production (SE4AI): ckaestne/seai - CMU MLSP Group: courses, tutorials, research - Deep Learning course (11785) - Awesome ML products list ## Top ML/AI Conference Papers - 10 repos - MLNLP-World: NeurIPS, ICLR, ICML, ACL papers with code - RL papers from top conferences - Conference datasets (2006-2024) - Deep learning paper implementations - GAN zoo, reading roadmaps ## Stanford AI/ML Systems - 4 repos - FrugalGPT, HELM benchmark - WikiChat, DSPy ## MIT CSAIL & Research - 4 repos - StreamingLLM, EfficientViT - TorchSparse, MIT Media Lab Total: 2,780+ → 2,818+ repos 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent d4761cb commit 5ea3ee8

20 files changed

+3519
-0
lines changed

SETUP.md

Lines changed: 182 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,182 @@
1+
# 🚀 Setup Instructions
2+
3+
## Publishing to GitHub
4+
5+
### 1. Create a New Repository on GitHub
6+
7+
1. Go to [github.com/new](https://github.com/new)
8+
2. Repository name: `my-starred-repos` (or your preferred name)
9+
3. Description: "Curated collection of 1000+ starred repositories across AI, Security, Cloud, and Networking"
10+
4. Make it **Public** (so it shows on your profile)
11+
5. **DO NOT** initialize with README, .gitignore, or license (we already have these)
12+
6. Click "Create repository"
13+
14+
### 2. Push Your Local Repository
15+
16+
```bash
17+
cd ~/my-starred-repos
18+
19+
# Add the remote repository (replace YOUR_USERNAME with nbajpai-code)
20+
git remote add origin https://github.com/nbajpai-code/my-starred-repos.git
21+
22+
# Rename branch to main (GitHub's default)
23+
git branch -M main
24+
25+
# Push to GitHub
26+
git push -u origin main
27+
```
28+
29+
### 3. Verify
30+
31+
Visit: `https://github.com/nbajpai-code/my-starred-repos`
32+
33+
Your beautiful README should now be displayed!
34+
35+
---
36+
37+
## 📌 Pin to Your Profile
38+
39+
1. Go to your GitHub profile: https://github.com/nbajpai-code
40+
2. Click "Customize your pins"
41+
3. Select `my-starred-repos`
42+
4. Click "Save pins"
43+
44+
This will showcase your curated collection prominently on your profile!
45+
46+
---
47+
48+
## 🔄 Keeping It Updated
49+
50+
### Update the README
51+
52+
```bash
53+
cd ~/my-starred-repos
54+
55+
# Edit the README
56+
nano README.md # or use your favorite editor
57+
58+
# Commit and push
59+
git add README.md
60+
git commit -m "Update repository collection"
61+
git push
62+
```
63+
64+
### Add New Categories
65+
66+
1. Star new repositories on GitHub
67+
2. Run the appropriate script (e.g., `~/star_ai_repos.sh`)
68+
3. Update `README.md` with new repos
69+
4. Commit and push changes
70+
71+
---
72+
73+
## 🎨 Customize Further
74+
75+
### Add GitHub Actions
76+
77+
Create `.github/workflows/update-stats.yml` to automatically update statistics.
78+
79+
### Add Shields.io Badges
80+
81+
Already included! You can customize colors and styles at [shields.io](https://shields.io)
82+
83+
### Add More Sections
84+
85+
Consider adding:
86+
- **Blog Posts** - Links to your technical writing
87+
- **Projects** - Your own repositories
88+
- **Certifications** - Visual badges for your certs
89+
- **Speaking Engagements** - Conference talks
90+
91+
---
92+
93+
## 📱 Share on LinkedIn
94+
95+
### Post Template:
96+
97+
```
98+
🎉 Just published my curated collection of 1000+ top GitHub repositories!
99+
100+
Organized across:
101+
🤖 AI & ML (238 repos) - LLMs, Infrastructure, NVIDIA, OpenAI, Anthropic
102+
🔐 Cybersecurity (132 repos) - DevSecOps, SAST/DAST, K8s Security
103+
☁️ Cloud (23 repos) - AWS, Azure, Terraform, Pulumi
104+
🌐 Networking (131 repos) - Observability, Cisco DxNetOps, eBPF
105+
🐍 Python (136 repos) - Best practices, frameworks, clean code
106+
🏢 Enterprise (361 repos) - Broadcom/CA Technologies
107+
108+
Perfect resource for:
109+
✅ Security professionals
110+
✅ Cloud architects
111+
✅ Network engineers
112+
✅ Python developers
113+
✅ AI/ML practitioners
114+
115+
Check it out: https://github.com/nbajpai-code/my-starred-repos
116+
117+
#Cybersecurity #CloudComputing #AI #MachineLearning #DevSecOps #Python #Networking
118+
```
119+
120+
---
121+
122+
## 🔗 Integration Ideas
123+
124+
### Add to LinkedIn Profile
125+
126+
1. Edit your LinkedIn profile
127+
2. Under "Featured" section, click "Add featured"
128+
3. Select "Link"
129+
4. Add: `https://github.com/nbajpai-code/my-starred-repos`
130+
5. Title: "Curated Tech Repository Collection (1000+ repos)"
131+
132+
### Add to Resume/CV
133+
134+
```
135+
GitHub Portfolio: github.com/nbajpai-code/my-starred-repos
136+
Curated collection of 1000+ industry-leading open source projects
137+
```
138+
139+
---
140+
141+
## 💡 Pro Tips
142+
143+
1. **Update Monthly** - Review and add new trending repos
144+
2. **Add Comments** - Include your notes on why repos are valuable
145+
3. **Create Guides** - Add setup guides for common tech stacks
146+
4. **Link Blog Posts** - Reference your technical writing
147+
5. **Engage Community** - Encourage others to suggest additions
148+
149+
---
150+
151+
## 🆘 Troubleshooting
152+
153+
### Push Failed?
154+
155+
```bash
156+
# First time pushing? Authenticate with GitHub
157+
gh auth login
158+
159+
# Or use SSH (recommended)
160+
ssh-keygen -t ed25519 -C "[email protected]"
161+
# Add the SSH key to GitHub: Settings > SSH and GPG keys
162+
```
163+
164+
### Want to Rename Branch?
165+
166+
```bash
167+
git branch -M main # Rename current branch to 'main'
168+
```
169+
170+
### Made a Mistake?
171+
172+
```bash
173+
# Undo last commit (keeps changes)
174+
git reset --soft HEAD~1
175+
176+
# Discard all uncommitted changes
177+
git reset --hard HEAD
178+
```
179+
180+
---
181+
182+
**Questions?** Open an issue in the repository or reach out on [LinkedIn](https://linkedin.com/in/nirajbajpai)!

star_ai_companies_repos.sh

Lines changed: 194 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,194 @@
1+
#!/bin/bash
2+
3+
# Top AI Companies GitHub Repositories Star Script
4+
# NVIDIA, Anthropic, OpenAI, and Perplexity
5+
6+
star_repo() {
7+
local repo=$1
8+
echo -n "⭐ Starring $repo... "
9+
if gh api --method PUT "/user/starred/$repo" --silent 2>/dev/null; then
10+
echo ""
11+
else
12+
echo "✗ (may already be starred or doesn't exist)"
13+
fi
14+
sleep 0.3 # Be nice to GitHub API
15+
}
16+
17+
echo "🚀 Starting to star AI Companies repositories..."
18+
echo "============================================================"
19+
echo ""
20+
21+
# NVIDIA - Main Organization
22+
echo "💚 NVIDIA - Main Organization..."
23+
star_repo "NVIDIA/open-gpu-kernel-modules"
24+
star_repo "NVIDIA/nvidia-container-toolkit"
25+
star_repo "NVIDIA/k8s-device-plugin"
26+
star_repo "NVIDIA/gpu-operator"
27+
star_repo "NVIDIA/nvidia-docker"
28+
star_repo "NVIDIA/cuda-samples"
29+
star_repo "NVIDIA/cudnn-frontend"
30+
star_repo "NVIDIA/cutlass"
31+
star_repo "NVIDIA/TensorRT"
32+
star_repo "NVIDIA/TensorRT-LLM"
33+
star_repo "NVIDIA/Megatron-LM"
34+
star_repo "NVIDIA/NeMo"
35+
star_repo "NVIDIA/NeMo-Guardrails"
36+
star_repo "NVIDIA/GenerativeAIExamples"
37+
star_repo "NVIDIA/cuda-quantum"
38+
star_repo "NVIDIA/cuDF"
39+
star_repo "NVIDIA/cuML"
40+
star_repo "NVIDIA/cuGraph"
41+
star_repo "NVIDIA/DALI"
42+
star_repo "NVIDIA/apex"
43+
star_repo "NVIDIA/TransformerEngine"
44+
star_repo "NVIDIA/DeepLearningExamples"
45+
star_repo "NVIDIA/Fuser"
46+
47+
# NVIDIA Research (NVlabs)
48+
echo ""
49+
echo "🔬 NVIDIA Research (NVlabs)..."
50+
star_repo "NVlabs/stylegan"
51+
star_repo "NVlabs/stylegan2"
52+
star_repo "NVlabs/stylegan3"
53+
star_repo "NVlabs/eg3d"
54+
star_repo "NVlabs/instant-ngp"
55+
star_repo "NVlabs/neuralangelo"
56+
star_repo "NVlabs/tiny-cuda-nn"
57+
star_repo "NVlabs/sana"
58+
star_repo "NVlabs/sionna"
59+
star_repo "NVlabs/kaolin"
60+
star_repo "NVlabs/nvdiffrast"
61+
star_repo "NVlabs/imaginaire"
62+
star_repo "NVlabs/VILA"
63+
64+
# NVIDIA AI-IOT
65+
echo ""
66+
echo "🤖 NVIDIA AI-IOT..."
67+
star_repo "NVIDIA-AI-IOT/jetson-inference"
68+
star_repo "NVIDIA-AI-IOT/torch2trt"
69+
star_repo "NVIDIA-AI-IOT/deepstream_python_apps"
70+
71+
# NVIDIA RAPIDS
72+
echo ""
73+
echo "🚀 NVIDIA RAPIDS..."
74+
star_repo "rapidsai/cudf"
75+
star_repo "rapidsai/cuml"
76+
star_repo "rapidsai/cugraph"
77+
star_repo "rapidsai/cusignal"
78+
79+
# Anthropic - Official Repositories
80+
echo ""
81+
echo "🟣 Anthropic - Official Repositories..."
82+
star_repo "anthropics/anthropic-sdk-python"
83+
star_repo "anthropics/anthropic-sdk-typescript"
84+
star_repo "anthropics/anthropic-sdk-java"
85+
star_repo "anthropics/anthropic-sdk-go"
86+
star_repo "anthropics/anthropic-sdk-php"
87+
star_repo "anthropics/anthropic-quickstarts"
88+
star_repo "anthropics/anthropic-tools"
89+
star_repo "anthropics/courses"
90+
star_repo "anthropics/prompt-eng-interactive-tutorial"
91+
star_repo "anthropics/anthropic-cookbook"
92+
star_repo "anthropics/claude-code"
93+
star_repo "anthropics/skills"
94+
95+
# OpenAI - Official Repositories
96+
echo ""
97+
echo "🔵 OpenAI - Official Repositories..."
98+
star_repo "openai/openai-python"
99+
star_repo "openai/openai-node"
100+
star_repo "openai/openai-go"
101+
star_repo "openai/openai-java"
102+
star_repo "openai/openai-dotnet"
103+
star_repo "openai/openai-cookbook"
104+
star_repo "openai/openai-quickstart-python"
105+
star_repo "openai/openai-quickstart-node"
106+
star_repo "openai/gpt-2"
107+
star_repo "openai/whisper"
108+
star_repo "openai/CLIP"
109+
star_repo "openai/DALL-E"
110+
star_repo "openai/point-e"
111+
star_repo "openai/shap-e"
112+
star_repo "openai/jukebox"
113+
star_repo "openai/tiktoken"
114+
star_repo "openai/evals"
115+
star_repo "openai/openai-realtime-api-beta"
116+
star_repo "openai/simple-evals"
117+
star_repo "openai/swarm"
118+
star_repo "openai/codex"
119+
star_repo "openai/openai-agents-js"
120+
star_repo "openai/gpt-oss-120b"
121+
star_repo "openai/gpt-oss-20b"
122+
star_repo "openai/harmony"
123+
star_repo "openai/grade-school-math"
124+
star_repo "openai/baselines"
125+
star_repo "openai/gym"
126+
star_repo "openai/multiagent-particle-envs"
127+
star_repo "openai/mujoco-py"
128+
129+
# Perplexity AI - Official Repositories
130+
echo ""
131+
echo "🟦 Perplexity AI - Official Repositories..."
132+
star_repo "perplexityai/modelcontextprotocol"
133+
star_repo "perplexityai/api-cookbook"
134+
star_repo "perplexityai/perplexity-py"
135+
star_repo "perplexityai/pplx-garden"
136+
137+
# Community Projects - Perplexica (Open Source Alternative)
138+
echo ""
139+
echo "🌟 Perplexity Community Projects..."
140+
star_repo "ItzCrazyKns/Perplexica"
141+
142+
# Related AI Research Organizations
143+
echo ""
144+
echo "🎓 Related AI Research..."
145+
star_repo "openai/triton"
146+
star_repo "openai/guided-diffusion"
147+
star_repo "openai/improved-diffusion"
148+
star_repo "openai/consistency_models"
149+
star_repo "openai/glide-text2im"
150+
151+
# Multi-Modal & Vision
152+
echo ""
153+
echo "👁️ Multi-Modal & Vision Projects..."
154+
star_repo "openai/CLIP"
155+
star_repo "openai/openai-vision-api"
156+
157+
# Tools & Utilities
158+
echo ""
159+
echo "🛠️ Tools & Utilities..."
160+
star_repo "NVIDIA/AIStore"
161+
star_repo "NVIDIA/NVTabular"
162+
star_repo "NVIDIA/MinkowskiEngine"
163+
164+
# Awesome Lists Related
165+
echo ""
166+
echo "⭐ Awesome Lists..."
167+
star_repo "taishi-i/awesome-ChatGPT-repositories"
168+
169+
echo ""
170+
echo "============================================================"
171+
echo "✅ Done! All AI Companies repositories have been starred."
172+
echo "🔗 View your stars at: https://github.com/nbajpai-code?tab=stars"
173+
echo ""
174+
echo "📊 Summary:"
175+
echo " 💚 NVIDIA Main: 23 repos"
176+
echo " 🔬 NVIDIA Research (NVlabs): 13 repos"
177+
echo " 🤖 NVIDIA AI-IOT: 3 repos"
178+
echo " 🚀 NVIDIA RAPIDS: 4 repos"
179+
echo " 🟣 Anthropic: 12 repos"
180+
echo " 🔵 OpenAI: 30 repos"
181+
echo " 🟦 Perplexity AI: 4 repos"
182+
echo " 🌟 Community Projects: 1 repo"
183+
echo " 🎓 Related Research: 4 repos"
184+
echo " 👁️ Multi-Modal: 2 repos"
185+
echo " 🛠️ Tools & Utilities: 3 repos"
186+
echo " ⭐ Awesome Lists: 1 repo"
187+
echo ""
188+
echo "🎉 Total: ~100 AI Companies repositories starred!"
189+
echo ""
190+
echo "🏢 Companies Covered:"
191+
echo " ✓ NVIDIA (Main, Research, RAPIDS, AI-IOT)"
192+
echo " ✓ Anthropic (Claude AI, SDKs, Tools)"
193+
echo " ✓ OpenAI (GPT, Whisper, CLIP, DALL-E, Codex)"
194+
echo " ✓ Perplexity AI (API, MCP, Tools)"

0 commit comments

Comments
 (0)