System design academy
Skill mahmoud20138/Tradecraft/plugins/tradecraft/skills/system-design-academy
102 Claude Code skills across 7 categories -- trading strategies, Azure, VSCode extensions, AI prompts, and custom automation skills
npx -y skills add mahmoud20138/Tradecraft --skill system-design-academyAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 7 stars7 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Real-world system design case studies from 40+ major tech companies + 114 concepts. USE FOR: system design, design Twitter, design YouTube, design Uber, design Netflix, design WhatsApp, design Slack, design Instagram, URL shortener, payment system, distributed systems, scalability, microservices, caching patterns, consistent hashing, rate limiting, system design interview, architecture patterns, database scaling.
SKILL.md
3.1 KB, 567 tokens by cl100k_base, as published. Nobody here has run it
System Design Academy
Case studies from 40+ companies + 114 system design concepts.
Company Case Studies
| Company | Topics |
|---|---|
| Amazon / AWS | S3 architecture, Prime Video microservices, scaling |
| Netflix | Microservices, chaos engineering |
| Uber | ETA computation, nearby drivers, payments |
| Messaging at billions scale | |
| Slack | Messaging architecture |
| Stripe | Rate limiting, idempotent APIs |
| Infrastructure scaling to billions | |
| YouTube | Scalability, Vitess MySQL |
| Search engine, Docs real-time editing | |
| Discord | Performance optimization, messaging |
| Figma | PostgreSQL scaling |
| Shopify | Flash sales handling |
| Zoom | Video conferencing |
| Live video streaming | |
| Tinder | Swipe architecture |
| Scalability patterns | |
| Architecture | |
| Dropbox | File sync and growth |
| Canva | Real-time collaboration |
| Stripe / Razorpay / PayPal | Payment gateways |
| Zapier | Automation platform |
| Bluesky | Decentralized social network |
| Disney+ Hotstar | 25M concurrent users, emoji delivery |
Core Concepts (114 total)
| Concept | Key Points |
|---|---|
| API Gateway | Auth, routing, rate limiting, aggregation |
| Caching | Write-through, write-behind, cache-aside, eviction |
| Consistent Hashing | Virtual nodes, minimal rehashing on scale |
| Load Balancing | Round-robin, least-connections, IP-hash |
| Rate Limiting | Token bucket, sliding window, fixed window |
| Message Queues | Kafka, RabbitMQ, pub/sub patterns |
| DB Scaling | Sharding, replication, SQL vs NoSQL trade-offs |
| CDN | Edge caching, origin pull vs push |
| Bloom Filters | Probabilistic membership, space efficient |
| Gossip Protocol | Distributed state propagation |
| Cell Architecture | Blast radius isolation |
| Chaos Engineering | Netflix Simian Army approach |
| Actor Model | Concurrent, message-passing systems |
| Real-time | WebSocket vs SSE vs long-polling |
Back-of-Envelope Numbers
- 1M req/day = ~12 req/sec
- 1B req/day = ~12,000 req/sec
- MySQL write ~1,000 QPS; Redis read ~100,000 QPS
- Typical read:write ratio = 10:1 to 100:1
7 Interview Failure Patterns
- Not clarifying requirements first
- Skipping scale estimation
- Ignoring failure modes
- Not discussing trade-offs
- Over-engineering for current scale
- Missing data consistency requirements
- Forgetting monitoring and observability