Anusha Tomardifference-between-cjs-and-esm.hashnode.devΒ·Dec 6, 2024Promises, Async/Await, and Other Ways to Lose Your MindIn the ever-evolving world of JavaScript, one of the fundamental concepts that developers need to understand is asynchronous programming. This is the idea that certain operations may not complete immediately, but rather at some point in the future. T...10 likespromises
Simon SeyerforSoftware Engineering Cornersoftware-engineering-corner.zuehlke.comΒ·Nov 11, 2024The retain cycle of Swift async/awaitIn a recent project, we observed one of those bugs that lets every developer jubilate. It was only happening rarely and seemed to manifest in varying ways. But first, some context: We were running a Swift/Vapor server which controls a generic ZΓΌhlke...1 likeΒ·521 readsApple
Keshav Ajavascriptasync.hashnode.devΒ·Jul 20, 2024Asynchronous ProgramingAsynchronous Programming allows to perform tasks that takes time to execute (such as fetching data from a server or reading files) without blocking the execution of other code. Instead of waiting for a task to complete, the code moves on to other tas...JavaScript
Animesh Kumaranimeshk.hashnode.devΒ·Jul 11, 2024Escaping Callback Hell: A Developer's GuideAs a developer, you might have found yourself tangled in the messy, complicated world of nested callbacks, commonly referred to as "Callback Hell." This issue arises when you have multiple asynchronous operations that depend on each other, leading to...1 likeΒ·304 readscallback hell
John Mainpynerds.hashnode.devΒ·Mar 20, 2024How to use asyncio in PythonOriginal Article asyncio is a module that provides tools for implementing asynchronous programming. It was introduced in Python 3.3 and has since become a popular choice for creating and managing asynchronous tasks. The module is available in the s...python-modules
Ricardo Rocha // π¨βπ»bittonic.hashnode.devΒ·Mar 11, 2024π Chillin' with JavaScript Promises: A Casual Chat on Async Awesomeness!Alright, let's loosen up a bit and chat about promises in JavaScript in a more casual way! π― So, you know how JavaScript has this whole async thing going on, right? Enter promises, the cool cats that make handling asynchronous stuff a breeze. 3οΈβ£ Th...JavaScript
Ricardo Rocha // π¨βπ»bittonic.hashnode.devΒ·Mar 4, 2024β¨ Mastering the Art of Asynchrony: A Joyful Journey with async/await in JavaScriptLet's dive into the world of async/await β the dynamic duo of JavaScript that makes dealing with asynchronous code feel like a walk in the park. It's like JavaScript got a facelift to make async operations downright pleasant. Remember the infamous "C...JavaScript
Aparna Mehtaaparna78.hashnode.devΒ·Mar 21, 2023Asynchronous JavaScript :Almost every software engineer has used async/await before, but only a handful know how it works :) To begin with, it's essential to identify how async/await works with our code. The common assumption is that async/await only uses for doing code asyn...4 likesΒ·160 readsasync/await