Problem I am mapping a complex JSON response to two JPA Entity model classes using Jackson. The classes are CxExport […]
Tag: kotlin
UDP image livestream from Android device to C# desktop application
Problem After searching a lot, on how to do it and not finding any good solutions, I implemented my own […]
Design that avoids undesired dependencies in Kotlin for a chess engine
Problem I’m trying to come up with a design for a chess engine in Kotlin that hides implementation details, and […]
Notify observers when object attributes update
Problem I have a Singleton manager class for managing request model and its attributes. My main aim is update object […]
WebService to calculate transaction statistics
Problem Recently got rejected in a code challenge that was a very simple WebService with 3 endpoins: POST /transactions to […]
Chess in Kotlin
Problem This is an updated version of my first question: Chess game in Kotlin I wrote the following Chess logic […]
Adapter pattern apply with JsonObject
Problem The purpose of the code is to apply adapter pattern to put an extra feature for searching through json […]
Change layout in Gridlayout runtime
Problem I’m trying to change the GridLayout of my application in runtime, the user can select 1, 2 or 3 […]
Multi-dimensional arrays exercise: Introduce married couples to each other
Problem Following idea: There are three married couples and they have to be introduced another. I have implemented this solution: […]
Android Tic-Tac-Toe
Problem I have made an Android Tic-Tac-Toe adaptation as a weekend-project. Here’s the Kotlin-code. MainActivity: package com.mizech.tictactoe import android.content.DialogInterface import […]