React hooks - useState

React useState mental model ...

December 1, 2021 · 2 min · Yamin

Graphs understanding in JS

Graphs data structure, terminologies, usages and code examples ...

December 3, 2020 · 5 min · Yamin

Kafka protobuf producer

In an event-driven architecture, requirements for a flexible, reliable schema contract between producer and consumer application is required. Using protocol buffers allows for an extensible mechanism for serializing structured data. You are able to define the contract once and use the generated source code to write and read data using the language of your choice. In this article, I’ll discuss the steps to push a serialized protobuf message into kafka and a way to verify that by reading the message from kafka into a console ...

November 12, 2020 · 3 min · Yamin

Advanced JS - Execution context

Important and fundamental concept to understanding Javascript language is understanding Executon Context. By learning this, you are positioned nicely to learn more advanced topics like hoisting, scope chains and closure. ...

November 1, 2020 · 4 min · Yamin