Dima Chebanovdima-chebanov.hashnode.dev·Sep 25, 2023Unity: 8 Common Async MistakesIntroduction This is the second article in a series about using async/await in Unity. In the first, we looked at eight reasons to choose Async over Coroutine. If you are not familiar yet, I recommend starting with it. In this one, we will look at the...Discuss·76 readsunity
Ashutoshashuraturiblogs.hashnode.dev·Sep 23, 2023JavaScript's Amazing Duo: async/awaitIntroduction In this article, we will learn about the async/await in JavaScript from scratch. First, we will learn about each keyword in detail and then we will move on to how we can use the combination async/await to handle asynchronous operations. ...Discuss·1 like·41 readsJavaScript
Aryaman Guptaaryamangupta.hashnode.dev·Sep 21, 2023Asynchronous Programming in PythonSync vs Async What is a synchronous programming? Synchronous programming is a programming paradigm in which operations are executed sequentially, one after the other. In this model, each operation waits for the previous one to complete before moving ...Discuss·3 likes·53 readsasynchronous
Sarthak Jainsarthakjdev.hashnode.dev·Sep 21, 2023Promises in JavaScript: A Guide to Asynchronous ProgrammingIntroduction Welcome to the exciting world of JavaScript promises! As a seasoned software developer, I understand the significance of mastering asynchronous programming to build robust and responsive applications. In this comprehensive guide, we will...Discuss·1 likepromises
Rwitesh Berarwitesh.hashnode.dev·Sep 19, 2023Asynchronous Operations in JavaScript: Callbacks, Promises, and Async/AwaitIntroduction In JavaScript, asynchronous operation is a crucial concept that we often come across while fetching data from a server, reading files, or responding to user interactions. Tasks don't execute synchronously in such cases. To manage asynchr...Discuss·26 readsasynchronous
Subham Singhsubham-cc99.hashnode.dev·Sep 19, 2023Asynchronous Programming Patterns in JavaScriptIntroduction As we know in synchronous programming, tasks are executed one after the other sequentially, asynchronous programming allows a program to continue executing other tasks while waiting for asynchronous operations to complete. It is really i...DiscussJavaScript - Basics to Advancedasynchronous
Quraishquraishcodes.hashnode.dev·Sep 18, 2023How to use the response from Axios on Client sideWhile I was trying to use Axios today to POST some data to a HubSpot API, I encountered an undefined error. Let me explain. While using Axios & receiving its response in .then() I am able to see my API response successfully when viewed in the console...Discussaxios
raju ghoraicoderj001.hashnode.dev·Sep 17, 2023Unlocking the Power of Django's Asynchronous SupportIn the ever-evolving landscape of web development, responsiveness and scalability are paramount. In the realm of Django, these qualities have been given a significant boost with the introduction of asynchronous (async) support, starting from Django 3...Discuss·30 readsDjango
Hemant Singhmemorycrypt.hashnode.dev·Sep 15, 2023Async/Await and Cancellation Tokens in C#Asynchronous programming has become an essential part of modern software development, allowing applications to perform tasks concurrently without blocking the main thread. In C#, the async and await keywords simplify asynchronous code, making it more...Discuss·136 readsC# and .NETasync/await
Nazmul Hossainnh47.hashnode.dev·Sep 6, 2023JavaScript Async/Await: Unleashing the Magic of Synchronous-Looking CodeUnlocking the Power of JavaScript Async/Await: A Whimsical Journey through Asynchronous Programming Introduction JavaScript, the language of the web, is renowned for its asynchronous capabilities. While callbacks and Promises have been staples of asy...DiscussJavaScript JavaScript