🚀 kotlinx.coroutines 1.11.0-RC is out!

Kotlin 2.2.20, better docs, Flow fixes, new APIs, and important JS/Wasm changes ⚠️

👇
https://github.com/Kotlin/kotlinx.coroutines/releases/tag/1.11.0-rc01

#Kotlin #Coroutines #AndroidDev #Multiplatform #Android

Release 1.11.0-rc01 · Kotlin/kotlinx.coroutines

Various Kotlin was updated to 2.2.20 (#4545). Improved the published jar files (#3842, #4599). Various documentation improvements, including complete rewrites of structured concurrency and error h...

GitHub

It's not often that I get to just use #UE5Coro as a normal user, without thinking about new features or handling even more corner cases. It's really nice, I feel like "regular" C++ is a lesser language. Last time this happened to me was with #Qt and C++03.

I know that I'm tooting my own horn here, but it's not like I'm doing it for sales; it's free software. I hope it makes your life with #UE5 (or #UE4!) easier if you're into #coroutines (or #i18n 🙃), even if only for editor tooling.

#hashtag

C++Now 2026 SESSION ANNOUNCEMENT: No Compiler Required - Hand-Rolling C++20 Coroutines in C++17 by Johannes Kalmbach

https://schedule.cppnow.org/session/2026/no-compiler-required/

Register now at https://cppnow.org/registration/

#coroutines #reflection #tooling #cpp

#coroutines #cpp #reflection #tooling

No Compiler Required – C++Now Schedule

Writing my first bottom up parser. I want my xml lexer to give the doctype as one token but to do that I need to parse the internal subset -> markup decl -> element decl -> content spec -> children which has

[47] children ::= (choice | seq) ('?' | '*' | '+')?
[48] cp ::= (Name | choice | seq) ('?' | '*' | '+')?
[49] choice ::= '(' S? cp ( S? '|' S? cp )+ S? ')'
[50] seq ::= '(' S? cp ( S? ',' S? cp )* S? ')'

As its grammer. Notice the recursion. I would normally use a recursive decent parser but since I'm using Rust's coroutines I can't have recursive coroutines(as far as I am aware).

I'm using coroutines because this is a streaming parser meant for embedded systems with very little memory. At any point I could run out of input which is when I yield back up to get more. My previous iteration of this was a massive state machine essentially implementing coroutines from scratch.

#rust #embedded #coroutines #xml

Coroutines for Dummies – C++Now Schedule

C++ coroutines are a game-changer for asynchronous programming. But trying to grasp them can be pretty tough. Join my self-study course and finally make asynchronous programming work for you!

https://fertig.to/slcoro

#cpp20 #programming #coroutines #cpp

Как автор книг по Kotlin проверял мой проект: разбор ошибок в Coroutines и архитектуре

Проведя аудит GitHub, я обнаружил, что полноценных реализаций Gemini-клиента с глубокой проработкой архитектуры практически нет. Я решил стать первым, кто выложит в открытый доступ не просто обертку над API, а готовую архитектурную базу с точным повторением UI оригинального Gemini.

https://habr.com/ru/articles/1018040/

#Android #Kotlin #Coroutines #Jetpack_Compose #AI #Gemini_AI #Structured_Concurrency #Проектирование_систем

Как автор книг по Kotlin проверял мой проект: разбор ошибок в Coroutines и архитектуре

Всем привет! Меня зовут Шамиль, и я хочу поделиться историей о том, как обычное желание разобраться в корутинах привело к детальному аудиту проекта Марчином Москалой, по итогам которого архитектурные...

Хабр
🚀 Wow, Lone Lisp now has generators! Because delimited continuations were just *too mainstream* 🙄. The language finally joins the 21st century, boasting its own "specialized coroutines" that sound like they were named by a group of sleep-deprived grad students. Who knew Lisp could be so... cutting-edge? 😂
https://www.matheusmoreira.com/articles/generators-in-lone-lisp #LoneLisp #Generators #Coroutines #21stCentury #CuttingEdge #HackerNews #ngated
Generators in lone lisp

The lone lisp generators implementation journey.

TaskRoutines | Behavior AI | Unity Asset Store

Get the TaskRoutines package from Kupio Ltd and speed up your game development process. Find this & other Behavior AI options on the Unity Asset Store.

Ah, look! Another #developer finally cracked the mythical code of #coroutines after a mere six years! 🤔🎉 Who knew that staring at #Unity would suddenly make these elusive #C++ features as clear as mud? Clearly, no one in the real world uses this "high-level" magic, but hey, at least we have a new convert to the coroutine cult! 🙄💻
https://mropert.github.io/2026/03/20/unity_cpp_coroutines/ #journey #programming #humor #tech #news #HackerNews #ngated
Looking at Unity finally made me understand the point of C++ coroutines · Mathieu Ropert

I had seen many talks about coroutines but it never really clicked where I could use them outisde of async IO. Until I looked at how Unity uses them in C#.