#coroutines نتائج البحث
Nice workshop by @EricWathome about #Coroutines #dcke25 @droidconke 👏
Concurrency done right. At #dcke25, @EricWathome is teaching Advanced Kotlin Coroutines: From Fundamentals to Reactive Streams. This workshop breaks down coroutine design, structured concurrency, and real-world flow integration in production apps.
🎯 Quests. Rewards. Celebration. Built with Jetpack Compose & Kotlin #Coroutines 💻 from @SharpEconomy $SHARP Earn real rewards #LearnEarnGrow 🌱 #SharpRewards Here’s a sneak peek of what’s coming 👇
Not mini-threads—lightweight abstractions on top of threads. When suspended, only the continuation remains. #Kotlin #Coroutines
This is a code that many experienced #Kotlin #Coroutines users get wrong! "After" will be printed after both coroutines from longTask are finished because coroutineScope awaits its children's completion.
What often looks like “power” ends up as boilerplate and complexity. In this article, Marcin Moskala breaks down real-world code samples to show why #Kotlin #Coroutines and Flow give you cleaner, more intuitive solutions. 👇 kt.academy/article/corout…
One of the advantages of using explicit coroutine dispatchers: - Easily replace the dispatcher for testing For example: Delays in the main thread can be skipped during testing #Coroutines #kotlin
Master #Kotlin #Coroutines by understanding Dispatchers. By @akshay81844 droidcon.com/2025/10/13/the…
runBlocking is not always bad practice! Learn where it should be used, where it shouldn't, and where it has better alternatives in our new article by Marcin Moskała. kt.academy/article/run_bl… #Kotlin #Coroutines #Concurrency #SoftwareDevelopment #KtAcademy
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/intero… #Kotlin #Coroutines #AsynchronousProgramming #SoftwareDevelopment #KtAcademy
Brace yourself for an extraordinary journey into programming bliss! 🚀 Join us with @MamboBryan as he unravels the enchanting secrets of "The Subtle Bliss of Coroutines." 📷 Ignite your passion for #AndroidDev and #Kotlin while exploring the transformative power of #Coroutines.
使い分けが簡潔に記載されててよい Kotlin Mutex: Thread-Safe Concurrency for Coroutines carrion.dev/en/posts/kotli… #kotlin #coroutines #concurrency #mutex #thread-safety @Ignacio Carriónより
Whether you’re just starting with #coroutines or already using them in production, this course is built to take you further. ✅ Coroutine newcomers – learn from scratch with real-life examples ✅ #AndroidDev & backend engineers – apply coroutines to everyday app challenges ✅…
This year at /the/ European C++ conference - @meetingcpp, I'll be giving an unusual talk about the strange things you can use the C++ #coroutines for. I'll be #punkrock and not add a slide about what chat GPT thinks coroutines are. :) meetingcpp.com/mcpp/schedule/…
Session en français 🚨 Rejoignez-nous pour une session incontournable avec @Louis_CAD à #AMxDC25 Les #coroutines simplifient l'asynchrone, mais sont souvent mal comprises. Découvrez les bases et comment éviter les erreurs en prod. androidmakers.droidcon.com/louis-cad/
Would you use Distributed Async Await in TypeScript using Generators if you got: ➡️ Deterministic Simulation Testing ➡️ Automatic Batching ➡️ Automatic Tracing ➡️ ... #AsyncAwait #Coroutines
#Coroutines don’t have to be scary. Too many developers quietly struggle: ⚡ Race conditions and crashes that appear only in production. ⚡ Code reviews turning into arguments over patterns. ⚡ The imposter feeling: “Do I really get this?” This course is designed to change that.…
It’s not just coroutines — every Marcin Moskala workshop is a great deep dive. See the upcoming sessions and reserve your seat today: kt.academy/#public-worksh… #Kotlin #Coroutines #SoftwareEngineering #DeveloperTraining #KtAcademy
It's always difficult to wake up early to study because of timezone, but always worth it at the end, mainly when it is to study a subject that I love. One more!! Thank you @marcinmoskala and @ktdotacademy . #kotlin #coroutines
¿Usas coroutines en Kotlin para manejo asíncrono? Simplifican la concurrencia: suspend fun fetchData(): String { /* código asíncrono */ } #Kotlin #Coroutines #OneDevTipADay
Salam All, I just published Episode 2 of Jetpack Compose Side Effects: A Developer’s Journey please write your thoughts on medium, and whether you prefer written or video content. #AndroidDev #Kotlin #Coroutines #rememberCoroutineScope medium.com/p/jetpack-comp…
🎯 Coroutine Cancellations en Kotlin es cooperativa, utiliza CancellationException y se integra perfectamente con la concurrencia estructurada. Mañana continuaremos con los Coroutines Timeouts 🚀 #Kotlin #KotlinTips #Coroutines #AsyncProgramming #StructuredConcurrency…
Mañana continuaremos con Cancelaciones en las Coroutines 🚀 #Kotlin #KotlinTips #Coroutines #AsyncProgramming #StructuredConcurrency #100DiasKotlin #buildinpublic
🚀 Built payment workflow using Kotlin's structured concurrency. Three checks in parallel: validation, fraud, inventory. ✅ All succeed → charge on Dispatchers.IO 💳 Any fail → cancel safely 🛡️ Clean, fast Kotlin coroutines FTW ⚡️ #Kotlin #Coroutines #AndroidDev
Coroutine Trick Use CoroutineStart.UNDISPATCHED to run a coroutine immediately on the current thread — no dispatcher hop — until the first suspension. Great for startup boosts ⚡ #Kotlin #Coroutines #AndroidDev
withContext, Kotlin Coroutines’un oldukça kullanışlı bir API’sidir. Ancak, birçok geliştiricinin farkında olmadığı gizli bir sorun barındırır. Bu gizli soruna dikkat çekmek ve geliştiriciler arasında farkındalık yaratmak için aşağıdaki makaleyi yazdım. #Kotlin #Coroutines
Nice workshop by @EricWathome about #Coroutines #dcke25 @droidconke 👏
Concurrency done right. At #dcke25, @EricWathome is teaching Advanced Kotlin Coroutines: From Fundamentals to Reactive Streams. This workshop breaks down coroutine design, structured concurrency, and real-world flow integration in production apps.
Kotlin Mutex: Thread-Safe Concurrency for Coroutines carrion.dev/en/posts/kotli… #kotlin #coroutines #concurrency #mutex #thread-safety
The Four Pillars of Lifecycle-Aware Coroutines in Kotlin 🧑💻🤖🤔👀💪 #AndroidDev #Kotlin #Coroutines #Lifecycle medium.com/@sivavishnu070…
medium.com
The Four Pillars of Lifecycle-Aware Coroutines in Kotlin: launchWhenCreated, launchWhenStarted…
Demystifying launchWhenCreated, launchWhenStarted, launchWhenResumed, and Why the Modern repeatOnLifecycle is the Clear Winner.
Master #Kotlin #Coroutines by understanding Dispatchers. By @akshay81844 droidcon.com/2025/10/13/the…
Not mini-threads—lightweight abstractions on top of threads. When suspended, only the continuation remains. #Kotlin #Coroutines
This year at /the/ European C++ conference - @meetingcpp, I'll be giving an unusual talk about the strange things you can use the C++ #coroutines for. I'll be #punkrock and not add a slide about what chat GPT thinks coroutines are. :) meetingcpp.com/mcpp/schedule/…
¿Usas coroutines en Kotlin para manejo asíncrono? Simplifican la concurrencia: suspend fun fetchData(): String { /* código asíncrono */ } #Kotlin #Coroutines #OneDevTipADay
Kotlin Coroutines are ready for the future 🚀 Discover their superpowers in the latest Talking Kotlin podcast by @JetBrains 👇 🎧 youtube.com/watch?v=1zY4_i… #Kotlin #Coroutines #Programming #TechPodcast
youtube.com
YouTube
Discussing Kotlin Coroutines with Marcin Moskała | Talking Kotlin 141
Kotlin Coroutines are ready for the future 🚀 Discover their superpowers in the latest Talking Kotlin podcast by @JetBrains 👇 🎧 youtube.com/watch?v=1zY4_i… #Kotlin #Coroutines #Programming #TechPodcast
youtube.com
YouTube
Discussing Kotlin Coroutines with Marcin Moskała | Talking Kotlin 141
良記事 Kotlin Mutex: Thread-Safe Concurrency for Coroutines carrion.dev/en/posts/kotli… #kotlin #coroutines #concurrency #mutex #thread-safety @Ignacio Carriónから
使い分けが簡潔に記載されててよい Kotlin Mutex: Thread-Safe Concurrency for Coroutines carrion.dev/en/posts/kotli… #kotlin #coroutines #concurrency #mutex #thread-safety @Ignacio Carriónより
What often looks like “power” ends up as boilerplate and complexity. In this article, Marcin Moskala breaks down real-world code samples to show why #Kotlin #Coroutines and Flow give you cleaner, more intuitive solutions. 👇 kt.academy/article/corout…
Nice workshop by @EricWathome about #Coroutines #dcke25 @droidconke 👏
Concurrency done right. At #dcke25, @EricWathome is teaching Advanced Kotlin Coroutines: From Fundamentals to Reactive Streams. This workshop breaks down coroutine design, structured concurrency, and real-world flow integration in production apps.
Coroutine Trick Use CoroutineStart.UNDISPATCHED to run a coroutine immediately on the current thread — no dispatcher hop — until the first suspension. Great for startup boosts ⚡ #Kotlin #Coroutines #AndroidDev
Kotlin Coroutines (Kotlin for Developers), 3/e by @marcinmoskala (Author) @shroffpub & Kt. Academy (Publisher) Buy from Computer Bookshop using this link: tinyurl.com/ym2w8nsz #kotlin #coroutines #ktacademy #shroffpublishers
Calling all @kotlin & @springboot developer to join me at Java Summit 23 by Geekle.us where I'll talk about async services with Kotlin #Coroutines and Spring. 🗓️ 22.02.2023 🔗 lnkd.in/dBvxpRbS #kotlin #kotlindeveloper #springboot #kotlincoroutines
A FB memory reminded me that 6 years ago today @KotlinKolkata had talks on Kotlin/JS. I was repeatedly giving intro to #kotlin and #Coroutines back then. We've come a long way since then.
While learning about #coroutines, i came across this interesting case where one may think a proper concurrency is happening, but in reality, it isn't. check these 2 images:
This is a code that many experienced #Kotlin #Coroutines users get wrong! "After" will be printed after both coroutines from longTask are finished because coroutineScope awaits its children's completion.
Kotlin Coroutines Flow is a much simpler concept than most of us think. In this article, @marcinmoskala will show you how to Implement the Flow interface and flow builder by transforming a lambda expression. All in simple steps 📖 tiny.pl/chvll #Kotlin #Coroutines
So... se que esto no es gran cosa ni nada tan importante, pero simplifica mucho las #coroutines en #GodotEngine , yo la agregue a un singleton "Global" y la uso en cualquier parte del juego solo llamandola "await Global._WaitForSeconds(N)" y funciona perfecto :D
Brace yourself for an extraordinary journey into programming bliss! 🚀 Join us with @MamboBryan as he unravels the enchanting secrets of "The Subtle Bliss of Coroutines." 📷 Ignite your passion for #AndroidDev and #Kotlin while exploring the transformative power of #Coroutines.
🎨Jetpack Compose in #Android is a hot topic now on X because of how easy it is to make mistakes that can lead to bad performance of the app But one of the very obvious mistake i observe while doing code reviews in #coroutines ↛ world is writing code something like this 🧵
Gros plan sur l'exécution concurrente avec les #coroutines, notre article de la semaine à découvrir sur connect.ed-diamond.com/gnu-linux-maga… @gnulinuxmag
Would you like to take a break from using features that you don’t understand? Would you like to know how to use #coroutines effectively? Make your work easier and sign up for the #Kotlin Coroutines OPEN workshop. You’ll learn all of that and more! 🪄 kt.academy/workshop/corou…
Something went wrong.
Something went wrong.
United States Trends
- 1. #ForTT_Telegram_sam11adel N/A
- 2. Happy New Month 253K posts
- 3. Broncos 48.3K posts
- 4. Mariota 13.4K posts
- 5. Good Monday 21.7K posts
- 6. #MondayMotivation 4,540 posts
- 7. Riley Moss 2,311 posts
- 8. #BaddiesUSA 28K posts
- 9. Commanders 33.7K posts
- 10. Ertz 3,141 posts
- 11. Bo Nix 10.2K posts
- 12. Root 39.7K posts
- 13. #WorldAIDSDay 23.8K posts
- 14. #ITWelcomeToDerry 21.6K posts
- 15. Washington 119K posts
- 16. Cyber Monday 22.1K posts
- 17. Chrisean 10.3K posts
- 18. BURKS 16K posts
- 19. Deebo 3,159 posts
- 20. Dolly 14.9K posts