Filter
Exclude
Time range
-
Near
💡 .NET 9: ¿Conoces Task.WhenEach en .NET? Es una nueva funcionalidad disponible desde .NET 9 que transforma la forma en que manejas tareas asíncronas ⚙️ 🚀 ¿Qué hace? Imagina que necesitas consultar varios endpoints públicos. Con Task.WhenAll, puedes lanzar todas las peticiones en paralelo… pero tendrás que esperar a que todas terminen antes de procesar los resultados ⏳ 💡 Con Task.WhenEach, el enfoque cambia por completo. Mira el ejemplo en la imagen y te explico el flujo paso a paso 👇 1️⃣ Se lanzan todas las tareas HTTP en paralelo. 2️⃣ En lugar de esperar al conjunto completo, el código procesa cada respuesta apenas llega. 3️⃣ Si el usuario 2 responde antes que el 1, su resultado aparece primero ✅ 4️⃣ Todo ocurre de forma asíncrona, eficiente y sin bloqueos. 🧩 Beneficio real: Tu aplicación responde más rápido, usa mejor los recursos y puede mostrar resultados parciales en tiempo real, sin esperar a que todas las tareas finalicen. ⚙️ ¿Cuándo usarlo? 🌍 Al consumir múltiples APIs o microservicios. ⚡ Para procesar grandes lotes de datos distribuidos. 💬 Para mostrar resultados parciales en dashboards o UIs reactivas. 🧠 En resumen: Task.WhenEach te da reacción inmediata por cada tarea completada, mientras Task.WhenAll te obliga a esperar hasta el final. #dotnet #csharp #TaskWhenEach #asyncawait #dotnet9 #cleanarchitecture #asynchronousprogramming #developers #programacion #dotnetuniversity #vaxidrez
1
4
106
🔥 Day 35 — Effective Python Coding Series Today’s focus: Mastering Asyncio — The Heart of Asynchronous Python ⚙️ asyncio is a powerful library in Python that allows developers to write asynchronous code — perfect for applications that handle many I/O-bound operations like API calls, file reads, or database requests. 🌐 ✨ Why Asyncio Matters: When your program performs I/O tasks, it often spends most of its time waiting for responses. Instead of idling, asyncio lets your code switch to another task, efficiently utilizing resources and improving performance. ⚡️ ✨ How It Works: ✔️ Event Loop — The core engine that manages and schedules async tasks. ✔️ Coroutines (async def) — Functions that can pause and resume during execution. ✔️ await keyword — Used to pause execution until an async task finishes. ✔️ Task Switching — When one task waits, another gets CPU time — no blocking. ⚡️ Key Benefits: ✅ Perfect for I/O-bound applications (networking, APIs, file I/O) ✅ Keeps your application responsive ✅ Enables concurrency in a single-threaded program ⚠️ Remember: asyncio improves concurrency — not parallelism. For CPU-heavy work, you still need multiprocessing. In short — Asyncio = concurrency responsiveness efficiency 🚀 👉 This series is for Python Developers, Data Engineers, Backend Engineers, and ML Practitioners who want to master efficient and modern Python coding patterns. If this post helped you learn something new today, drop a ❤️ or 🔁 and stay tuned for more Effective Python Coding insights! #Python #Asyncio #AsynchronousProgramming #EffectivePython #CodingSeries #BackendDevelopment #DataEngineering #Developers #ML
3
215
Must know optimization for data flows❗ Thanks to shareIn, one observer can be shared among multiple subscribers. This way, we will open only one connection to the server, and all observers will receive the same data. The connection will be closed when the last observer is unsubscribed, and opened again when the first observer subscribes. This is a perfect solution for sharing data between multiple UI components or services. #Kotlin #Coroutines #KotlinFlow #AsynchronousProgramming #DeveloperTips
4
16
1,057
Still debating whether you should introduce coroutines—or where to even begin? Skip the internal tug-of-war and bring your toughest questions to my live Q&A TOMORROW! I’ll be dedicating extra time to answer everything you throw. Last chance to sign up: webinar.kt.academy/why-you-s… #Kotlin #KotlinCoroutines #Concurrency #AsynchronousProgramming #SoftwareEngineering
4
4
546
When you interoperate with other technologies, turning coroutines into callback is one of the most important skills. Learn it now with this new article by Marcin Moskała. kt.academy/article/interop-c… #Kotlin #Coroutines #AsynchronousProgramming #SoftwareDevelopment #KtAcademy
1
3
7
642
📣Deal of the Day📣 Jul 20 SAVE 45% TODAY ONLY! Grokking Concurrency & selected titles: hubs.la/Q03x-q900 This easy-to-read, hands-on guide demystifies #concurrency concepts like #threading, #asynchronousprogramming & #parallelprocessing in any language. #python
1
2
10
881
🧩 Cold vs Hot builders, Collectors, Backpressure? Learn how Kotlin Flow really works and when to use what. 🟢🎥 Watch “Kotlin Coroutines library: How to Use Kotlin Flow Like a Pro” 🔗 youtu.be/kPIC8ytcXFM 👈🏻 and learn how to: • Use Flow builders to handle cold and hot streams • Manage backpressure and exceptions effectively • Structure your collectors and pipelines for production-grade apps 👤Bob Dahlberg, Staff Engineer at PayPal 📺 Don’t forget: talks from Droidcon Italy 2024 are live on our YouTube channel! Catch up here → youtube.com/@DroidconItaly 👈🏻 #KotlinFlow #KotlinCoroutines #AndroidDev #DroidconItaly #MobileDevelopment #ReactiveProgramming #AsynchronousProgramming #JetpackCompose #KotlinTips #AndroidArchitecture @kotlin
5
156
21 Mar 2025
Not bad for just 4-5 hours since publishing! Check out my latest blog on monitoring Celery tasks using Flower: ratrey.in/blog/deploying-and… #Celery #Flower #TaskMonitoring #Python #AsynchronousProgramming #DevOps #BackendDevelopment #DistributedSystems
2
66
1 Oct 2024
I’ve noticed that many frontend developer roadmaps skip a crucial distinction: JavaScript the language vs JavaScript in the browser. 🧐 And then… they jump straight into React. 😳 For beginners, that's a tough leap! 🚀 Here’s the deal: 1. JavaScript the language: After the basics (variables, loops, etc.), get comfortable with at least functional programming, object oriented programming, the module system, and asynchronous programming (promises, async/await). 🧠 2. JavaScript in the browser: Master the essentials like DOM manipulation, event handling, XHR, two-way data binding, and component architectures. 🌐 Finally, learn the role of the ecosystem of tools (Node.js, Babel, Vite, dev servers, browser dev tools). 🔧 Once you’ve covered this, React will be much easier to tackle! 😎 #JavaScript #FrontendDevelopment #WebDevelopment #React #CodingJourney #DevTools #LearnToCode #AsynchronousProgramming #FunctionalProgramming #JavaScriptEcosystem #CodingTips
3
8
21
1,070
26 Sep 2024
Just finished chapter 4 on asynchronous programming in Rust. Learned a ton about mio, epoll, syscalls, and Event queues, more on these here hackmd.io/@Abeeujah/By3cDUXA… . Feeling more confident in my understanding of low-level I/O! #rustlang #asynchronousprogramming #networking
1
2
11
311
Daily bit(e) of C | Coroutines: step by step by Šimon Tóth at #ITNEXT. #cpp #softwaredevelopment #asynchronousprogramming #programming #cplusplus itnext.io/daily-bit-e-of-c-c…)

1
25
6/ Asynchronous Programming Don’t let your app twiddle its thumbs. Use asynchronous programming for I/O-bound tasks. It lets your app keep working while waiting for I/O operations. async/await is your new mantra. #AsynchronousProgramming #Concurrency
3 Jun 2024
🚀 New Blog Alert! 🚀 We just published an article on Asynchronous Programming in JavaScript by Ishita. Don't miss out on this valuable read! #JavaScript #AsynchronousProgramming #Callbacks #Promises #AsyncAwait #EventLoop #Codedash blog.codedash.in/asynchronou…
1
3
18
📣Deal of the Day📣 Aug 2 SAVE 45% TODAY ONLY! Grokking Concurrency & selected titles: mng.bz/WrEx @luminousmen This easy-to-read, hands-on guide demystifies #concurrency concepts like #threading, #asynchronousprogramming & #parallelprocessing in any language.
1
9
814
3 Jun 2024
🚀 New Blog Alert! 🚀 We just published an article on Asynchronous Programming in JavaScript by Ishita. Don't miss out on this valuable read! #JavaScript #AsynchronousProgramming #Callbacks #Promises #AsyncAwait #EventLoop #Codedash blog.codedash.in/asynchronou…

3
34
Replying to @0xedohwarez
That's great, for asynchronous, promises is a most... And NodeJS is huge on AsynchronousProgramming.
1
3
6
20 Apr 2024
🚀 Day 82 of #100DaysOfCode 💻 Focused on revising callbacks in JavaScript today! 🔄🎯 Ready to apply this knowledge in my coding projects! 💡 #JavaScript #Callbacks #AsynchronousProgramming #100DaysOfCode 🌟
2
12