# Lukas Lechner

I help Software Developers become AI Engineers

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## From Android to AI Engineering

DevFeed: [From Android to AI Engineering](<https://devfeed.tech/articles/from-android-to-ai-engineering-25416.md>)

Original publisher: [Read original article](<https://www.lukaslechner.com/from-android-to-ai-engineering/>)

Author: Lukas Lechner

Published: 2026-07-22T15:14:21Z

Content type: opinion

Language: en

Sources: [Lukas Lechner](<https://devfeed.tech/sources/lukas-lechner.md>)

Topics: [AI Engineering](<https://devfeed.tech/topics/ai-engineering.md>), [Large Language Model](<https://devfeed.tech/topics/llm.md>), [Development](<https://devfeed.tech/topics/development.md>)

Tags: [ai-engineering](<https://devfeed.tech/tags/ai-engineering.md>), [allgemein](<https://devfeed.tech/tags/allgemein.md>), [developer](<https://devfeed.tech/tags/developer.md>), [llm](<https://devfeed.tech/tags/llm.md>)

### AI overview

The author describes transitioning from Android development to backend development and then to AI Engineering after releasing the AI Engineering Fundamentals course. The article explains that AI Engineering involves building applications on top of large language models and addresses production concerns such as model cost, context optimization, and latency.

### Source excerpt

I released a new course "AI Engineering Fundamentals". 👉 https://www.udemy.com/course/ai-engineering-fundamentals-build-real-llm-apps-in-python/?referralCode=D1BA2721D48381A98F83 Below you can find the story about my transition 👇 Many Android Developers know me as the "Coroutines & Flow Guy", since I have the most popular udemy course on that topic. What few people know is that I haven't worked as an Android Developer Read More The post From Android to AI Engineering first appeared on Lukas Lechner.

## Kotlin Coroutines Course Adds Kotlin Flow Modules for Android Development

DevFeed: [Kotlin Coroutines Course Adds Kotlin Flow Modules for Android Development](<https://devfeed.tech/articles/my-coroutines-course-just-got-a-big-update-kotlin-flow-for-android-development-25417.md>)

Original publisher: [Read original article](<https://www.lukaslechner.com/my-coroutines-course-just-got-a-big-update-kotlin-flow-for-android-development/>)

Author: Lukas Lechner

Published: 2022-11-21T14:57:43Z

Content type: release

Language: en

Sources: [Lukas Lechner](<https://devfeed.tech/sources/lukas-lechner.md>)

Topics: [Kotlin](<https://devfeed.tech/topics/kotlin.md>), [kotlin-flow](<https://devfeed.tech/topics/kotlin-flow.md>), [Coroutines](<https://devfeed.tech/topics/coroutines.md>), [kotlin-coroutines](<https://devfeed.tech/topics/kotlin-coroutines.md>), [android-development](<https://devfeed.tech/topics/android-development.md>), [Mobile](<https://devfeed.tech/topics/mobile.md>)

Tags: [allgemein](<https://devfeed.tech/tags/allgemein.md>), [android-development](<https://devfeed.tech/tags/android-development.md>), [coroutines](<https://devfeed.tech/tags/coroutines.md>), [course](<https://devfeed.tech/tags/course.md>), [flow](<https://devfeed.tech/tags/flow.md>), [kotlin](<https://devfeed.tech/tags/kotlin.md>), [kotlin-coroutines](<https://devfeed.tech/tags/kotlin-coroutines.md>), [kotlin-flow](<https://devfeed.tech/tags/kotlin-flow.md>)

### AI overview

The author announces an update to an existing Kotlin Coroutines course for Android, adding modules about Kotlin Flow. The update includes 6 hours of video content, bringing the course to 15 hours in total.

### Source excerpt

Hi Readers 👋 There hasn't been a lot of news from my side lately, but today I can announce something big! I spent the last months extending my already existing Course about Kotlin Coroutines for Android with modules about Kotlin Flow! The result is an additional 6 hours of video content about Kotlin Flow, making Read More The post My Coroutines Course just got a BIG update: Kotlin Flow for Android Development first appeared on Lukas Lechner.

## 7 common mistakes you might be making when using Kotlin Coroutines

DevFeed: [7 common mistakes you might be making when using Kotlin Coroutines](<https://devfeed.tech/articles/7-common-mistakes-you-might-be-making-when-using-kotlin-coroutines-25414.md>)

Original publisher: [Read original article](<https://www.lukaslechner.com/7-common-mistakes-you-might-be-making-when-using-kotlin-coroutines/>)

Author: Lukas Lechner

Published: 2021-01-08T11:12:53Z

Content type: tutorial

Language: en

Sources: [Lukas Lechner](<https://devfeed.tech/sources/lukas-lechner.md>)

Topics: [Coroutines](<https://devfeed.tech/topics/coroutines.md>), [kotlin-coroutines](<https://devfeed.tech/topics/kotlin-coroutines.md>), [Kotlin](<https://devfeed.tech/topics/kotlin.md>), [Concurrency](<https://devfeed.tech/topics/concurrency.md>)

Tags: [allgemein](<https://devfeed.tech/tags/allgemein.md>), [allgemein-kotlin](<https://devfeed.tech/tags/allgemein-kotlin.md>), [asynchronous](<https://devfeed.tech/tags/asynchronous.md>), [concurrency](<https://devfeed.tech/tags/concurrency.md>), [concurrent](<https://devfeed.tech/tags/concurrent.md>), [coroutine](<https://devfeed.tech/tags/coroutine.md>), [coroutines](<https://devfeed.tech/tags/coroutines.md>), [kotlin](<https://devfeed.tech/tags/kotlin.md>), [kotlin-coroutines](<https://devfeed.tech/tags/kotlin-coroutines.md>), [mistakes](<https://devfeed.tech/tags/mistakes.md>), [structured-concurrency](<https://devfeed.tech/tags/structured-concurrency.md>)

### AI overview

A tutorial on common mistakes when using Kotlin Coroutines, including creating a separate Job that breaks structured concurrency and installing SupervisorJob incorrectly. It explains how coroutine scope cancellation and job hierarchies affect cancellation behavior.

### Source excerpt

In my opinion, Kotlin Coroutines really simplify the way we write asynchronous and concurrent code. However, I identified some common mistakes that many developers make when using Coroutines. This way, our Coroutine now is cancelled when the Scope is cancelled: The suspend functions in the Kotlin standard library (like e.g. `delay()`) are all cooperative regarding Read More The post 7 common mistakes you might be making when using Kotlin Coroutines first appeared on Lukas Lechner.

## Kotlin Coroutines Exception Handling Cheat Sheet

DevFeed: [Kotlin Coroutines Exception Handling Cheat Sheet](<https://devfeed.tech/articles/kotlin-coroutines-exception-handling-cheat-sheet-25415.md>)

Original publisher: [Read original article](<https://www.lukaslechner.com/coroutines-exception-handling-cheat-sheet/>)

Author: Lukas Lechner

Published: 2020-10-28T14:12:43Z

Content type: article

Language: en

Sources: [Lukas Lechner](<https://devfeed.tech/sources/lukas-lechner.md>)

Topics: [Coroutines](<https://devfeed.tech/topics/coroutines.md>), [Exception](<https://devfeed.tech/topics/exception.md>), [kotlin-coroutines](<https://devfeed.tech/topics/kotlin-coroutines.md>), [Kotlin](<https://devfeed.tech/topics/kotlin.md>)

Tags: [allgemein](<https://devfeed.tech/tags/allgemein.md>), [allgemein-kotlin](<https://devfeed.tech/tags/allgemein-kotlin.md>), [cheat-sheet](<https://devfeed.tech/tags/cheat-sheet.md>), [coroutines](<https://devfeed.tech/tags/coroutines.md>), [exception](<https://devfeed.tech/tags/exception.md>), [exception-handling](<https://devfeed.tech/tags/exception-handling.md>), [kotlin](<https://devfeed.tech/tags/kotlin.md>), [kotlin-coroutines](<https://devfeed.tech/tags/kotlin-coroutines.md>)

### AI overview

A cheat sheet explains six key points about exception handling in Kotlin coroutines, including try-catch handling, exception propagation through job hierarchies, differences between launch and async, coroutineScope behavior, and cancellation exceptions.

### Source excerpt

Exception Handling with Kotlin Coroutines is hard. I wrote an extensive article about it and gave talks about it at several conferences. Some developers suggested creating some kind of cheat sheet that could be helpful for implementing appropriate exception handling in coroutine-based code. Here it is 😉. It contains the six most important points. You Read More The post Kotlin Coroutines Exception Handling Cheat Sheet first appeared on Lukas Lechner.

## My first online course "Mastering Kotlin Coroutines for Android Development" is now available!

DevFeed: [My first online course "Mastering Kotlin Coroutines for Android Development" is now available!](<https://devfeed.tech/articles/my-first-online-course-mastering-kotlin-coroutines-for-android-development-is-now-available-25418.md>)

Original publisher: [Read original article](<https://www.lukaslechner.com/my-first-online-course-mastering-kotlin-coroutines-for-android-development-is-now-available/>)

Author: Lukas Lechner

Published: 2020-10-16T09:02:55Z

Content type: release

Language: en

Sources: [Lukas Lechner](<https://devfeed.tech/sources/lukas-lechner.md>)

Topics: [kotlin-coroutines](<https://devfeed.tech/topics/kotlin-coroutines.md>), [Kotlin](<https://devfeed.tech/topics/kotlin.md>), [android-development](<https://devfeed.tech/topics/android-development.md>), [Android](<https://devfeed.tech/topics/android.md>), [Development](<https://devfeed.tech/topics/development.md>)

Tags: [allgemein](<https://devfeed.tech/tags/allgemein.md>), [android](<https://devfeed.tech/tags/android.md>), [android-development](<https://devfeed.tech/tags/android-development.md>), [coroutines](<https://devfeed.tech/tags/coroutines.md>), [course](<https://devfeed.tech/tags/course.md>), [development](<https://devfeed.tech/tags/development.md>), [kotlin](<https://devfeed.tech/tags/kotlin.md>), [kotlin-coroutines](<https://devfeed.tech/tags/kotlin-coroutines.md>)

### AI overview

The author announces the release of Mastering Kotlin Coroutines for Android Development, an online course created over more than six months. The course contains more than nine hours of video content, exceeding the author's initial plan of three to four hours. A Kotlin Flow course is planned for future development.

### Source excerpt

Today it's time to celebrate! 🥳 After more than 6 months of really hard work, I finally released my very first online course: Mastering Kotlin Coroutines for Android Development. It was quite a ride and WAY harder than initially expected. I planned on 3-4 hours of video content and ended up with 9+. But now I can Read More The post My first online course "Mastering Kotlin Coroutines for Android Development" is now available! first appeared on Lukas Lechner.