For further actions, you may consider blocking this person and/or reporting abuse
The Next Generation Developer Platform
Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.
Read next

The Fall of a Community
MilesWK -

8 Type of Load Balancing
Ravin Rau -

Build a Smart Chatbot with AWS Lambda, Lex, and Enhanced Sentiment Analysis - (Let's Build 🏗️ Series)
awedis -

How to do Review Sentiment Analysis using Python
oladejo abdullahi -
Top comments (7)
The true power of interfaces
That's my case! I (probably) know how to write and to use, but now sure how to maximize the benefits of it. =/
The basic concept of interfaces. I don't see a reason I would ever use them, yet I'm sure I should be using them. I've read multiple articles (dozens) and still don't understand how/when I should implement them.
Pointers took me some time to wrap my head around.
Also, coming from Ruby where interfaces are more of an implicit concept, having to define them explicitly in Go was frustrating at first.
Interesting, implicit concept like how you pass in a Ruby value and it runs methods that are expected to be there?
Yeah, the idea of duck typing, where as long as an object responds to certain methods and had certain values it can be replaced with any other object, no matter the type, that implements the same methods and properties, without that interface having to be explicitly defined anywhere.
When I was doing Ruby I used to love the flexibility that me, now I can't imagine how anyone can maintain that lol.
Interfaces and channels. I still have to stop and think every time I go to use them.