Tag: Kotlin
-
Revolutionizing Java with GraalVM Native Image
Posted on April 23, 2022, Level intermediate Resource Length long
GraalVM has caused a revolution in Java development since it launched three years ago. One of the most discussed features of GraalVM is Native Image, which is based on an ahead-of-time (AOT) compilation. By Alina Yurenko and Karsten Silz.
Tags java programming kotlin jvm scala performance
-
2022 Android developer roadmap
Posted on March 3, 2022, Level beginner Resource Length medium
Our 2022 Android Developer Roadmap teaches you everything you need to know to get started in Android development. We've broken down the Android developer roadmap into few modules, each covering different aspects of the Android development ecosystem. By Jaewoong E.
Tags app-development android programming learning kotlin
-
Create your own Kotlin playground (and get a data science head start) with Jupyter Notebook
Posted on December 30, 2021, Level intermediate Resource Length long
Learn the basics of Jupyter Notebook and how to turn it into an interactive interpreter for Kotlin. You'll also learn about Data Frames, an important data structure for data science applications. By Joey deVilla.
Tags kotlin java app-development jvm data-science
-
Tools of the build trade: The making of a tiny Kotlin app
Posted on September 16, 2021, Level intermediate Resource Length medium
Tony Robalik published the story of how to build thinhs with Gradle, how to use the application and distribution plugins to build the app and bundle a distribution; how to use the shadow plugin to turn it into a fat jar.
Tags kotlin programming web-development app-development software-architecture java
-
Recording audio on Android with examples
Posted on May 5, 2021, Level beginner Resource Length medium
Knowing how to effectively record audio from a phone is valuable for mobile developers, but is especially essential for apps that process media. The wide range of hardware in Android devices can make it difficult to develop applications that need to capture and play back audio. By Megan Ren.
Tags android app-development kotlin ux
-
Server-Side development with Kotlin: Frameworks and libraries
Posted on November 23, 2020, Level beginner Resource Length medium
It is quite common to use existing frameworks and libraries for backend application development. If we look at most of the popular frameworks in the Java ecosystem, many of them actually support Kotlin out of the box. There are a lot of Java libraries too. You can use these frameworks and libraries in your Kotlin programs thanks to Kotlin's flawless Java interoperability. By Anton Arhipov.
Tags kotlin programming jvm performance
-
Architecturing an App with functional reactive programming
Posted on June 24, 2020, Level intermediate Resource Length long
Whenever a team is about to start a new project, there's one question that always comes up: "Which architecture are we going to follow?" And every developer tends to have their own opinion on the matter, which makes perfect sense, because it's such an important topic. By Vincent Pradeilles.
Tags agile web-development functional-programming software-architecture kotlin
-
MVVM Architecture -- Android tutorial for beginners, step by step guide
Posted on May 25, 2020, Level beginner Resource Length long
Amit Shekhar put together this interesting tutorial in which you are going to learn about the MVVM architecture in Android and then you will build a project with MVVM architecture.
Tags android kotlin app-development software-architecture java
-
Kotlin: An illustrated guide to conditionals When and If
Posted on May 12, 2020, Level beginner Resource Length medium
In real life, we do different things depending on the circumstances. For example, if it's raining outside, I'll probably grab an umbrella. If it's sunny outside, I'll grab my sunglasses. I do different things depending on the weather. By Dave Leeds.
Tags kotlin android app-development programming career
-
Railway oriented programming in Kotlin
Posted on April 30, 2020, Level intermediate Resource Length medium
Railway Oriented Programming (ROP) is a functional programming technique that allows sequential execution of functions, not necessarily synchronous. The key concept is that each function can only accept and return Container of either Success or Failure. Failure wraps Throwable type and Success can be of any type. Published by Tonje Krosby.
Tags java functional-programming programming kotlin
-
Best practices for microservices on kubernetes
Posted on April 4, 2020, Level intermediate Resource Length long
There are several best practices for building microservices architecture properly. In this article author mentions the best practices with some new rules dedicated especially for microservices deployed on Kubernetes platform. By Piotr Minkowski.
Tags microservices devops web-development open-source kubernetes kotlin
-
Kotlin -- The suspend modifier under the hood
Posted on March 24, 2020, Level intermediate Resource Length long
Kotlin coroutines introduced the suspend modifier in our daily life as Android developers. By Manuel Vivo.
Tags java kotlin programming app-development