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·394 readsApple
gayatri kumargeekee.hashnode.dev·Nov 8, 2024Mastering the Art of Async: Let’s Get Moving!Why Go Async? Imagine you’re racing a car, but every time your car needs a pit stop, the entire race pauses until it’s finished. This wouldn’t make sense! In a race, every car runs independently, so one car’s pit stop doesn’t stop others. Asynchronou...Saanvi Kumar and 2 others are discussing this3 people are discussing thisDiscuss·50 likesWeb Developmentjs
Okoye Ndidiamakaamikdigital.hashnode.dev·Nov 8, 2024Advanced Event Handling in JavaScript: Custom Events, Event Delegation, and Event LoopWorking on sophisticated web applications requires event handling with JavaScript to be absolutely indispensable when trying to create user interactions that are dynamic and responsive. This is where advanced techniques, such as dealing with custom e...DiscussJavaScript
BestWeb VenturesforBestWeb Ventures's Blogblog.bestwebventures.in·Nov 4, 2024Ruby on Rails 8 Concurrency Guide: Modern Parallel ProcessingIn today's digital landscape, web applications face unprecedented demands for performance, scalability, and responsiveness. Modern Ruby on Rails applications must handle multiple concurrent users, process large amounts of data, and maintain real-time...Discuss·1 like·1.2K readsRuby
Zech Zimmermanblog.zech.codes·Nov 4, 2024Understanding Async/Await in PythonAsync/await is a powerful tool in Python that can significantly enhance your programming skills. In this post, we'll delve into the high-level workings of async/await and then venture into its fundamental implementation. We'll also compare and contra...Discuss·32 readsasync
Felipe Ramos da Silvafelipemeriga.hashnode.dev·Oct 18, 2024What I Learned Building a Custom Async WebSocket Library in RustIntroduction Software developers often ask themselves if they should engage in side projects, usually with the goal of enhancing their professional profile or personal branding. The real question, though, is: What project should I create? Many develo...Discuss·1 like·45 readsRust
Timon JuckerforSoftware Engineering Cornersoftware-engineering-corner.zuehlke.com·Oct 14, 2024All we need is StructureDo you remember when Dr. Carter, in the previous article "Demystifying Concurrency: Essential Clarifications," explained the difference between Async and Parallel? I think this story ended before touching on a crucial point. Even if you understand th...Discuss·85 readsasync
Saruf Ratulsaruf.hashnode.dev·Oct 7, 2024ASP.NET 8 - Authentication and Authorization in 7 stepsIntroduction In this tutorial, you will learn how to develop an API for user permission-based authentication and authorization. In addition, the Clean Architecture, Unit of Work, and Mediator patterns will be used. Tools C# .NET8 Visual Studio 20...Discuss·87 readsasp.net core
Anish Agrawalanish29801.hashnode.dev·Oct 5, 2024Why Async/Await is Better Than Using Axios or Fetch DirectlyWhen working with APIs in JavaScript, dealing with asynchronous requests is crucial. There are different ways to handle these requests, the most popular being Axios, Fetch, and Async/Await. While Axios and Fetch are powerful tools for making HTTP req...DiscussNode.js
Timon JuckerforSoftware Engineering Cornersoftware-engineering-corner.zuehlke.com·Sep 30, 2024Demystifying ConcurrencyI often encounter situations where Software Engineers have differing mental models of concurrency. To make matters worse, there are terms that are used (almost) synonymously, like async and parallel. But also definitions for Data parallelism and Task...Discuss·2 likes·174 readsasync