Autor: Leonardo Colman Lopes
-
Expand your digital picture frame use cases with Pi3D integrated USB media stick support using UDiskie
I built and customized three instances of The Digital Picture Frame. It’s so simple yet such a great system setup that I fell in love. Today I want to share a method to use USB Media Sticks to view our photos. This method uses Udiskie, while the traditional method (explained by Wolfgang Männel in Expand…
-
Converting an old TV Box into an epic Picture Frame
I built and customized 3 instances of The Digital Picture Frame. It’s so simple yet such a great system setup that I fell in love. People have built such awesome setups for this small utility, and passion drove me to my calling: It’s my time to hack a device and turn it into a Picture…
-
Automated Screenshot Taking in Android using Kotest and Ktor
1. Introduction Automated screenshot testing is essential in Android development for ensuring UI consistency across updates and devices. Manually verifying UI changes is time-consuming and error-prone, making automation a vital practice. In this guide, we’ll show how to use Kotest for capturing screenshots and Ktor for uploading them to a local server. This setup streamlines…
-
Check if Mono is Empty with Kotlin
Learn to check if a Mono is empty in Kotlin and define static and dynamic fallback values to create robust reactive flows. Check if Mono is Empty with Kotlin – Original at https://www.baeldung.com/kotlin/mono-empty-check by @baeldung
-
Excluding a Library from All Dependencies in Kotlin DSL in Gradle
Learn how to exclude a library or a transitive dependency using the Kotlin DSL syntax in a Gradle. Excluding a Library from All Dependencies in Kotlin DSL in Gradle – Original at https://www.baeldung.com/kotlin/gradle-exclude-library-all-dependencies by @baeldung
-
Building a Kotlin Library Using Gradle
A quick tutorial on building a library in Kotlin with Gradle. Building a Kotlin Library Using Gradle – Original at https://www.baeldung.com/kotlin/gradle-library by @baeldung
-
Dagger 2 Constructor Injection with Named Arguments in Kotlin
A quick tutorial on using named injection with Dagger 2 in Kotlin. Dagger 2 Constructor Injection with Named Arguments in Kotlin – Original at https://www.baeldung.com/kotlin/dagger-named-constructor-injection by @baeldung
-
Migration from Dagger to Koin
A quick tutorial on migrating a Kotlin application from Dagger to Koin for dependency injection. Migration from Dagger to Koin – Original at https://www.baeldung.com/kotlin/dagger-to-koin-migrate by @baeldung
-
Implement Scheduler/Timer with Kotlin Coroutine
A quick tutorial on creating timers and schedulers with Kotlin coroutines. Implement Scheduler/Timer with Kotlin Coroutine – Original at https://www.baeldung.com/kotlin/coroutine-timer-scheduler by @baeldung