Concurrency
Introduction to Python's AsyncIO
Asynchronous programming is a way to write concurrent code that can handle many tasks without the overhead of threads or processes. AsyncIO is Python's lib…
Stories Worth Reading
PixelProse is your go-to blog for insightful articles on Technology, Travel, Food, Health, Lifestyle, Business, Fashion and Sports. Fresh perspectives. Real stories. Zero fluff.
Results for "asynchronous"
9 articles found
Concurrency
Asynchronous programming is a way to write concurrent code that can handle many tasks without the overhead of threads or processes. AsyncIO is Python's lib…
JavaScript
JavaScript is single-threaded, which means it can only do one thing at a time. So how does it handle fetching data from an API without freezing the entire…
Technology
Remote work is here to stay, and the technology supporting it is evolving beyond simple video conferencing. The future of work is hybrid, requiring seamles…
Concurrency
As programs grow, performance can become an issue. Python offers threading and multiprocessing to help with concurrent execution. Threading is suitable for…
Reactive Programming
Asynchronous programming used to give me headaches until I started using Project Reactor. It’s the foundation of Spring WebFlux, and it changes how you t…
Modern Java
I’ve been waiting for virtual threads (Project Loom) for years. Traditionally, Java’s concurrency model was based on operating system threads, which ar…
JavaScript
When I first encountered Promises, the .then().catch() syntax felt messy, especially for complex chains. Enter Async/Await, a syntactic sugar that makes as…
JavaScript
Closures are one of those JavaScript concepts that every developer eventually has to wrestle with. At its simplest, a closure is the combination of a funct…
Backend
Creating your own API is a milestone for any web developer, and Node.js with Express makes it surprisingly approachable. Start by initializing a project wi…