`getArticles()`

Writing about software engineering, React Native, and the tools I use.

Jul 30, 2024

Caching Layer with Mongoose Using Prototype

A Clean and Generic Approach for Caching MongoDB Data Using Mongoose Prototype on Node Service/Application Continue reading on The Startup »...

programmingnodejsjavascript
Mar 1, 2024

Build Variants on Expo React Native App

Customizing Builds for Every Use Case (e.g., dev, staging, production) Continue reading on The Startup »...

exporeact-nativemobile-app-development
Feb 10, 2024

Custom Plugins for Expo Application

Extend your expo applications beyond any limitations! Continue reading on The Startup »...

expojavascriptintercom
Nov 9, 2023

Simplifying State Management: Exploring Zustand as an Alternative to Context and Redux(maybe?)

One of the main benefits of using a state management library is it gives us more control over state management and allows us to rerender… Continue reading on The Startup »...

reactjavascriptweb-development
Nov 19, 2021

Clean API Call With React Hooks

Make API calls more consistent throughout the whole application with concise, clean, and reusable code Continue reading on Better Programming »...

programmingreactweb-development
Nov 29, 2020

The Mindset to Deal With Rejection From the Company You Admire

“Fall down seven times, get up eight.” — Japanese Proverb Continue reading on Better Programming »...

startupprogramminginterview
Sep 2, 2020

Prototypical Inheritance in Javascript

In Javascript we don’t have classes, rather we only have objects. So if we want to implement inheritance with objects we can get the help… Continue reading on The Startup »...

software-developmentjavascripttechnology
Jul 26, 2020

Property Descriptor in Javascript

Have you ever heard the term Property Descriptor during the time you have been working with javascript? To be a better javascript… Continue reading on The Startup »...

web-developmentsoftware-developmentjavascript
Jul 22, 2020

Middleware in Express Applications

It’s not nearly as complicated as it sounds Continue reading on Better Programming »...

expressjsjavascriptnodejs
Jul 7, 2020

Composition or Inheritance, Which One Do You Prefer?

Inheritance is a great principle in object oriented programming where we can reuse code. But we have to be careful when using it because… Continue reading on The Startup »...

programmingsoftware-developmentdesign-patterns