Как автор книг по 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#.

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#.

Intro to Flow: You Can't Do THAT with Collections...

YouTube

C++Online 2026 SESSION SPOTLIGHT: Coroutines and C++ - Async Without the Pain? C++ Coroutines by Tamas Kovacs

https://cpponline.uk/session/2026/coroutines-and-cpp/

Register now at https://cpponline.uk/registration/

#cpp #cplusplus #programming #coding #coroutines

Coroutines and C++ - C++Online

Asynchronous programming in C++ has long been complex—callback chains, thread juggling, and heavyweight abstractions often make it harder than it should be. Modern C++ coroutines change that. They enable clearer control flow, better structure, and more maintainable async code without sacrificing performance. But how does this work in practice? In this talk, I’ll focus on […]

C++Online

Hab heut Zeit versenkt in #Kotlin eine #Collection parallel zu verändern und die resultierenden geschachtelten Listen wieder in ne Liste zu sammeln und flach zu machen.

Erst hab ich einfach parallelStream aufgerufen, und am Ende toList + flatten

Mein Source level ist aber Java11.
Da gibts eins von denen am Ende nicht. 🫠

Dann gesucht und rausgefunden #parallelStream ist #Java Api, Kotlin nativ wäre #Coroutines.

Jetzt hab ich was mit experimentellen OptIn #Flows gemacht. 👀

#programming

Why struggle with complex asynchronous code when coroutines can simplify it all? My self-study course breaks down everything you need to know—in just three hours of video content. Learn now, apply tomorrow!

https://fertig.to/slcoro

#cpp20 #programming #coroutines #cpp

Doing some sunday coding over here... Is there a standardized way to persist the internal state of co-routines?

I have a set of running state machines encoded in python coroutines and want to persist them to disc and continue execution later. Any suggestions? #sunday #python #coroutines