the_OldSchool_coderthe-os-coder.hashnode.dev·Dec 11, 2024Mastering Async JavaScript: A Comprehensive Guide to Promises, Callbacks, and Async/AwaitDescription:→Unlock the power of asynchronous JavaScript with this guide. Learn how to use callbacks, promises, and async/await to build efficient, responsive web applications. Perfect for developers of all levels 1>Asynchronous JavaScript with Even...asynchronous
Yong Sheanyshean.com·Dec 10, 2024A quick look at async Dart featuresRecently I gave a talk at Google DevFest Kuala Lumpur 2024, about asynchronous Dart features. Here are the slides:51 readsFlutter
Daniel Madarpystack.hashnode.dev·Dec 6, 2024Concurrency in PythonWhen high-performance is required There are several ways to achieve concurrency in Python and each of them has its own trade-off: A-sync, Multi-Thread and Multi-Process. First of all, let’s break the myth — Python is NOT a single threaded language! Y...Python
Ritesh Benjwalblog.riteshbenjwal.in·Dec 2, 2024Supercharging Asynchronous Performance: A Deep Dive into Python FastAPI and OpenAI API OptimizationIntroduction In the world of modern web applications, performance is king. Recently, while working on an AI-powered story generation project, I uncovered some critical insights into improving asynchronous programming techniques that dramatically redu...Python
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
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...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...JavaScript
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...1 like·1.3K 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...38 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...1 like·51 readsRust