Posts
All the articles I've posted.
- asynchronous
- computerscience
- distributed
- functional_programming
- go
- javascript
- jotai
- microfrontend
- monorepo
- network_programming
- nextjs
- nodejs
- optimization
- react
- redux
- solidity
- ssr
- testing
- tutorial
- typescript
- webpack
Implementing Distributed Counter: Part 1 - Node
Published:Learn how to implement the core Node component of a distributed counter in Go. This part details the Node structure, defines the communication protocol, integrates the CRDT, and implements synchronization tested via in-memory transport.
Implementing Distributed Counter: Part 0 - CRDT
Published:Learn how to build a distributed counter from scratch using Go and CRDT (Conflict-free Replicated Data Types).
Write Your Own JSON Parser with Node and Typescript
Published:Let's write our very own JSON Parser from scratch
Improving Javascript Error Handling using Neverthrow for Rust-like Robustness
Published:Enhance robust JavaScript coding with Neverthrow. Utilize Rust-like error handling for exception resilience and reliable code.
Lessons from The Mythical Man-Month
Published:Learn from Fred Brooks' classic on software project management, productivity, and team dynamics. Boost your skills with key takeaways for maximum efficiency
Sign URLs with Node and Typescript A Step-by-Step Guide with Code Samples
Published:Learn how to sign URLs using Node and Typescript for improved security and reliability of your web apps. Step-by-step guide with code samples.
Async Local Storage with Examples in NextJS/Typescript
Published:There is way to persist some states within NodeJS without passing parameters around. Today we will discover how to use Async Local Storage with Typescript within NextJS.
Recursion made easy with Javascript
Published:We`ll be learning recursion with Javascript, but without Fibonacci. We`ll also explore Haversine formula to calculate distance between coordinates.
Tidying up getServerSideProps(Server-Side Rendering) with Higher Order Functions
Published:Using higher order functions to compose getServerSideProps to achieve cleaner and more organized code.
Build Your Own SSR/SSG From Scratch with Vite and React
Published:Build your own server side rendering with Vite, React and Typescript. SSG Included.