All Posts
A Smart Way To Store Weekdays In Database
Optimization techniques for fast query When we work on a specific problem, We first think of the solution for the worst-case scenario which leads to a brute force approach to solving the problem....
Kick Start Your JavaScript Career
JavaScript is one of the most popular and widely used programming languages in the world right now. It's growing faster than any other programming language, big companies like Netflix, Walmart,...
জাভাস্ক্রিপ্টে ক্লোজার কি?
জাভাস্ক্রিপ্ট ডেভদের জন্যে একটা আতঙ্কের নাম হচ্ছে closure। এই closure সম্পর্কে পরিষ্কার ধারণা না থাকার কারণে অনেক সময় জব ইন্টার্ভিউতেও পর্যন্ত বেশ ভাল...
DocuSign Connect/Webhook Setup
DocuSign is an online platform where people can send a document to others for signature electronically. Sometimes our application needs to know the status of a document (Envelope Status) and based...
Adding Health Checks And SSL Certificate in Kong Db-Less Mode
Recently I was working on an open-source project on my current company where all requests come to the API gateway service then the gateway redirects the request to the appropriate service based on...
Data Analysis for finding the best venues in Dhaka, Bangladesh
1. Introduction: Business Problem 1.1. Exploring the best venues in Dhaka, the Capital of Bangladesh. Dhaka, the capital of Bangladesh. More than 19.5 million people live in Dhaka. It is the most...
Trade-offs for Monoliths and Microservices
When developing an application, we as software engineers face different types of architecture for building an application. Among them, Monoliths and Microservices are considered to be the latest...
Convert Flask Application into a Cross-Platform Desktop App Executable
Python, powerful and versatile as it is, lacks a few key capabilities out of the box. For one, Python provides no native mechanism for compiling a Python program into a standalone executable...
React: Form Validation (having nested schema) with Formik, Yup, and Material-UI
Nowadays forms are crucial in any application. Building forms are pretty simple but adding validation to them may become a bit of a challenge. It gets even trickier when..