Kotlin Cheat Sheet

For a project I was involved in at short notice, I had to become familiar with the Kotlin programming language. Before starting to code, I wanted to get familiar with the syntax and the language itself. As writing on a paper is the best way to learn (for me), I created the following Cheat sheet. Enjoy! … read more …

PHPAlgorithms is there

Frankfurt, May 2018 – Today, the first BETA version of PHPAlgorithms is launched! The repository is available via GitHub and Packagist. Originally launched as a research project, PHPAlgorithms provides currently a basic set of data structures. The repository has been designed to provide simple usage of common data structures such as lists, maps and trees. … read more …

PHP HashMap Implementation

A few days ago I have started working on a PHP library for algorithms and data structures. PHPAlgorithms is still in progress and thus has a early beta status. But today, I have pushed the first data structure which is nearly full implemented: HashMaps. A HashMap is characterized among others by its key-value storage property. … read more …