📰 Dev.to · Silver_dev
10 articles · Updated every 3 hours · View all reads
All
Articles 72,177Blog Posts 101,125Tech Tutorials 17,546Research Papers 15,348News 12,920
⚡ AI Lessons

Dev.to · Silver_dev
🔐 Cybersecurity
⚡ AI Lesson
3d ago
Trust Boundary Violation in gRPC gateways
Encountered an interesting case about Trust Boundary Violation. Microservices are written in Golang....

Dev.to · Silver_dev
🔐 Cybersecurity
⚡ AI Lesson
3d ago
Trust Boundary Violation in gRPC gateways
Encountered an interesting case about Trust Boundary Violation. Microservices are written in Golang....

Dev.to · Silver_dev
📐 ML Fundamentals
⚡ AI Lesson
1mo ago
Bayes' theorem in machine learning
Bayes' Theorem describes how to update the probability of a hypothesis when new data is obtained. It...

Dev.to · Silver_dev
2mo ago
Golang. M:P:G Model
The M:P:G model is the core of Go's concurrency model, and it is one of the most efficient among...

Dev.to · Silver_dev
3mo ago
Concurrency patterns on Golang: Singleflight
Problems this pattern can solve: The "Thundering Herd" problem. Imagine: a cache with...

Dev.to · Silver_dev
3mo ago
Concurrency patterns on Golang: ErrGroup
Problems this pattern can solve: You've launched 5 goroutines. You need to wait for all...

Dev.to · Silver_dev
3mo ago
Concurrency patterns on Golang: Fan-out / Fan-in
Problems this pattern can solve: You have 8 cores, but your data processing stage runs...

Dev.to · Silver_dev
3mo ago
Concurrency patterns on Golang: Pipeline
Problems this pattern can solve: When you need to process millions of records (e.g., log...

Dev.to · Silver_dev
3mo ago
Concurrency patterns on Golang: Semaphore
Problems this pattern can solve: The external API only allows 5 concurrent requests. Any...

Dev.to · Silver_dev
3mo ago
Concurrency patterns on Golang: Worker Pool
Problems this pattern can solve: If your service makes 1,000 queries per second to a...
DeepCamp AI