jayeshadwani.hashnode.devCSS Showdown: Grid vs Flexbox for Perfect LayoutsFlexbox and Grid are both powerful CSS layout systems, but they serve different purposes and have distinct characteristics. Flexbox: - One-dimensional layout: Flexbox is designed for laying out items in a single dimension—either a row or a column. - ...Jul 17, 2024·2 min read
jayeshadwani.hashnode.devUnderstanding JIRA: A Beginner's Guide to Key TerminologyAgile methodology Agile methodology is an iterative approach to project management and software development that emphasizes delivering small, consumable increments of work. It focuses on customer satisfaction, welcomes changes, promotes frequent deli...Jul 16, 2024·3 min read
jayeshadwani.hashnode.devUnderstanding REST API Calls: A Beginner's TutorialIn today's digital age, understanding how to make REST API calls is an essential skill for developers. This beginner's tutorial will guide you through the three key elements of making an API call: the request endpoint, request headers, and request...Jul 16, 2024·3 min read
jayeshadwani.hashnode.dev2 ways to implement infinite scroll in javascriptFetching a list from database is always a requirement in almost every app. To cater this, the concept of pagination was introduced. Which helps to fetch data in small chunks to load into UI. P.S: Fetch data in chunks (via pagenumber) To achieve this ...Jul 14, 2024·3 min read
jayeshadwani.hashnode.devStep-by-Step Guide to Uploading and Downloading Big Files to S3Here, I am going to talk about the process to upload large objects to Amazon S3 using the multipart approach. The multipart approach consists of 3 steps: 1. Initiate Multipart Upload 2. Parts Upload 3. Complete Upload Let's discuss these steps in det...Jul 1, 2024·2 min read