#Coroutines
New blog post!
About simple coroutines in AVR... Enjoy! :3
drkrab.ovh/a-coroutine-...
A coroutine system for AVR
Because I would not dare do that in x86
drkrab.ovh
November 11, 2025 at 8:09 PM
If you find Coroutines really annoying to manage (like I do), I highly recommend UniTask, which allows you to have asynchronous functions that get treated like regular functions and allow you to avoid the StartCoroutine() boilerplate. github.com/Cysharp/UniT...
GitHub - Cysharp/UniTask: Provides an efficient allocation free async/await integration for Unity.
Provides an efficient allocation free async/await integration for Unity. - Cysharp/UniTask
github.com
November 10, 2025 at 7:06 PM
aiothrottles 0.2.0

Throttles for Python coroutines.

Author: Konstantin Togoi
📖Documentation

📦Download

🏠Homepage
November 10, 2025 at 2:00 AM
📰 JVM exceptions are weird: a decompiler perspective

💬 Comments highlight minor clarifications on coroutines and monitors but revel in coding humor. 🤓

https://news.ycombinator.com/item?id=45808899
November 9, 2025 at 11:15 PM
So my crazy idea is, why not make a game engine where all scripted things are coroutines?

They can be paused and unpaused (making them great for actual videogame scripting, like you'd script a scene in a movie), they work a lot like preemptive multitasking (which is a cool model imo), and they […]
Original post on wetdry.world
wetdry.world
November 9, 2025 at 3:02 AM
My tutorial and take on C++20 coroutines

🚀 Discover this insightful post from Hacker News 📖 📂 Category: 📌 Key idea: My tutorial and take on C++20 coroutines Over the last 25 years, I’ve written a lot of event-driven code in C++. A typical example of event-driven code is registering a callback that…
My tutorial and take on C++20 coroutines
🚀 Discover this insightful post from Hacker News 📖 📂 Category: 📌 Key idea: My tutorial and take on C++20 coroutines Over the last 25 years, I’ve written a lot of event-driven code in C++. A typical example of event-driven code is registering a callback that gets invoked every time a socket has data to be read. Once you have…
viralpique.com
November 7, 2025 at 10:04 AM
Wow Rust coroutines are cool!
My little `f(x) { prefetch(x); yield; compute(x); }` benchmark is ~8ns per call with explicit prefetching in a loop, and ~9ns per call when using coroutine abstractions :)

(I first spent a full day struggling with async, which I only got down to 14ns with much pain.)
November 7, 2025 at 9:58 AM
“Further obfuscating coroutines is the fact that the C++ standard library doesn’t actually supply the heap of garbage you need to access coroutines, so you have to roll your own garbage and then wade through it.” www.scs.stanford.edu/~dm/blog/c++...
My tutorial and take on C++20 coroutines
www.scs.stanford.edu
November 7, 2025 at 7:28 AM
“In the true spirit of C++, C++ 20 coroutines are implemented as a nice little nugget buried underneath heaps of garbage that you have to wade through to access the nice part.
November 7, 2025 at 7:28 AM
My tutorial and take on C++20 coroutines (2021)

https://www.scs.stanford.edu/~dm/blog/c++-coroutines.html
November 7, 2025 at 5:30 AM
My tutorial and take on C++20 coroutines (2021)
L: https://www.scs.stanford.edu/~dm/blog/c++-coroutines.html
C: https://news.ycombinator.com/item?id=45842815
posted on 2025.11.06 at 21:03:57 (c=0, p=4)
November 7, 2025 at 5:21 AM
My tutorial and take on C++20 coroutines (2021) https://lobste.rs/s/917ytr ##c++
My tutorial and take on C++20 coroutines (2021)
www.scs.stanford.edu
November 6, 2025 at 11:10 PM
🍻 qcoro6 🍻

C++ Coroutines for Qt

🔗 https://qcoro.dev

#homebrew #newpkg #macos #linux #formula
November 5, 2025 at 12:48 PM
Coding with LLMs is exciting and fast in some ways, and profoundly demoralizing in other ways.

I've worked for years to write better coroutines tests (see here! www.youtube.com/watch?v=uk8k...), and it is just so much less work to write tests that I think suck.
Bill Phillips Few Tools: How To Write And Understand! Coroutines Tests
YouTube video by John Wilker (360Conferences)
www.youtube.com
November 5, 2025 at 12:17 AM
I’ve spent a second day working through c++ coroutines. Once you hide away all the fluff you can actually wrap them up in to a nice little api that’s easy to use. I’m a bit stumped on use cases tho.

Question: Anyone have any experience using them in their games?

#gamedev #indiedev #solodev
November 4, 2025 at 4:12 PM
Thinking about reworking my entire networking stack in coroutines but it would take so much time and effort when really there wouldn't be a lot of gains
The ticking system of minecraft really makes it suitable to what i already have now
November 4, 2025 at 6:29 AM
lowkey in love with coroutines
November 3, 2025 at 11:38 PM
trying to pave over libuv to work with coroutines is such a pain but it is my current burden :blobfoxnotlikethis:​
November 3, 2025 at 7:25 PM
Took the day off engine coding to have a look at c++ coroutines…holy moly that was an experience.
#gamedev | #indiedev | #solodev
November 3, 2025 at 5:11 PM
🚀 Kotlin Tips ✨

**Null Safety**
• Use sealed over nullable
• Prevents crashes & when

**Structured Concurrency**
• viewModelScope > GlobalScope
• Prevents memory leaks

**Extension Functions**
• Add functionality without inherit
• Idiomatic code

#Kotlin #AndroidDev #NullSafety #Coroutines #DevTips
November 3, 2025 at 6:33 AM
The discussion highlights tradeoffs in async I/O across languages like Rust, Java, and JS. Key points include stackful vs. stackless coroutines, the impact of "function coloring," and overall developer experience. Each approach has its own challenges. #Programming 4/6
October 31, 2025 at 4:00 PM
🚀 xemantic-neo4j-kotlin-driver 0.2.2 has been released!

Kotlin coroutines adapter for the Neo4j Java driver (async)

https://github.com/xemantic/xemantic-neo4j-kotlin-driver/releases/tag/v0.2.2
October 29, 2025 at 5:57 PM