adityakmr.hashnode.devWhy I Built Flowzy: A Local-First Approach to Deep WorkFirst App in app store: I have uploaded my first app on app store. We’ve all been there. You open a productivity app to “get organized,” but 15 minutes later, you’re stuck in a loop of configuring cloud sync, managing notifications, or—worse—waiting ...Jan 3·2 min read
adityakmr.hashnode.dev#1 Learning swift UIIn this first lesson on the in swift UI first things that we are going to discuss about is how to create the foundation of any screen in your application. VStack HStack ZStack Let's discuss about VStack first. VStack VStack stands for Vertical S...Mar 2, 2024·2 min read
adityakmr.hashnode.devHow to implement routing in reactJs without using react router package ?Well, Today in this article we are going to discuss about one of the famous react interview question "How to implement routing in reactJs application without using router package for a very small application like 2 to 3 pages ? ". So first of all let...Feb 16, 2024·4 min read
adityakmr.hashnode.devPriority Queue in JavascriptToday, in this article we are going to learn about priority queues in javascript. What is a priority queue? In computer programming queue or general queue basically means the same thing. A queue is FIFO(First In First Out) which means if something go...Nov 13, 2023·3 min read
adityakmr.hashnode.devHow to concurrently execute an array of asynchronous functions (promises)?To concurrently execute an array of asynchronous functions, we first create an async function named asyncTask. This function returns a promise and simulates a task that resolves after a random time or rejects it with an error if a certain condition i...Nov 1, 2023·2 min read