Category: Kotlin
Kotlin Articles
-
Kotlin – Breaking out of the JVM
1. Introduction: Ready to explore the full potential of Kotlin? It’s not just for Java! Kotlin is not limited to the JVM; this article will tell you about many ways Kotlin can talk to other languages. Kotlin has earned a stellar reputation for its concise syntax and seamless interoperability with Java. While it’s often seen… Read more
-
Simplifying Complex Numbers in Kotlin with Python-like Syntax
Complex numbers are essential in many fields. However, working with them in Kotlin can sometimes feel cumbersome due to the lack of built-in support for complex numbers. Since I learned complex numbers in Electronic Engineering, I learned to refer to them as j, as Python does. Inspired by Python’s simplicity, I created a set of… Read more
-
Developing a Robot Keyboard PC Interface with Kotlin and Arduino
In this post, I will walk you through the user interface and related parts of interesting project I developed: a Robot Keyboard PC Controller Interface. This interface uses an Arduino to emulate a virtual keyboard and a Kotlin client for communication. The primary aim is to provide a cross-platform solution that works on Windows, with… Read more