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...Discuss·1 like·463 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...DiscussJavaScript
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...Discuss·1 like·225 readscallback hell
Syed Aquib Alihadetan.hashnode.dev·Jun 10, 2024Callback Functions, Promises, Async/Await and Fetching API'sCallback Functions A callback function is a function that is passed as an argument to another function and is executed after some operation has been completed. Callbacks are commonly used for asynchronous operations in JavaScript, such as fetching da...Discuss·32 readscallback functions
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...Discusspython-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...DiscussJavaScript
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...DiscussJavaScript
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...Saqib and 4 others are discussing this5 people are discussing thisDiscuss·4 likes·160 readsasync/await