I’m Lars

Writes about emerging technologies, machine learning, programming, other things, and πŸ–€ programming languages.

"There's life on mars" -- Scooter

Latest Posts

Recursive calls between Lua and Swift

A common method of simplification is to divide a problem into subproblems of the same type. – Wikipedia: recursive In this third blog post (see also blog post 1, blog post 2) we...

Factorial calculation with Lua and Swift

The result of multiplying a given number of consecutive integers from 1 to the given number. In equations, it is symbolized by an exclamation mark (!). For example, 5! = 1 Γ— 2 Γ— 3...

Lua and Swift in iOS

I looked at Lua which it’s pretty easy to integrate and is highly optimized, but I really hate the syntax. There is just too much that is goofy about Lua. I like my { braces }. – ...

H2O AutoML with Python and Jupyter

The H2O Python Module provides access to the H2O JVM, as well as its extensions, objects, machine-learning algorithms, and modeling support capabilities, such as basic munging and...

H2O.ai AutoML Model in Java

H2O’s AutoML can be used for automating the machine learning workflow, which includes automatic training and tuning of many models within a user-specified time limit. Stacked Ense...

AoC - Advent of Code 2019

Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like. – Advent of...