Rishi Bakshirishibakshi.hashnode.dev·Oct 8, 2024How to Prevent the Waterfall Effect in Data FetchingIn this article, we’ll dive into a common issue developers face when fetching data in Next.js or any asynchronous JavaScript environment: the waterfall effect. This happens when data fetching occurs sequentially, leading to slower response times. It’...10 likesYou Don't Know Next.jsdata fetching
Abdullah Bin Altafdevopswithabdullah.hashnode.dev·Feb 21, 2024Project # 1 - API Request to GitLabWe're gonna learn how to use python to talk to external applications. The application in our case will be GitLab. We'll establish a communication between out python application and GitLab application The python application will send a http request to...28 readsDevops
Yuvan ArvindforRequestlyrequestly.hashnode.dev·Jul 13, 2023How to modify the API request body in Chrome, Firefox, Android & iOS apps?In web applications, API requests are commonly used to exchange data with the server and dynamically update parts of the webpage. Web APIs typically use the HTTP protocol for communication, utilizing methods such as GET, POST, PUT, PATCH, and DELETE ...APIs
Rhytham Negirhythamnegi.com·May 4, 2023Volley with Compose KotlinImportant Features of Volley Automatic scheduling of network requests. Multiple concurrent network connections. Transparent disk and memory response caching with standard HTTP cache coherence. Support for request prioritization. Cancellation req...815 readsKotlin