Lasse Schultebraucks IT Consultant

Recursive Angular components

Recursion is a well known concept in Software Development and is a useful tool when it comes to algorithms which use e.g. divide an conquer to solve a problem recursively. But beside standard algorithms you can also use them in Angular components to build recursive components. It’s actually really simple and useful. Why you should build recursi... Read more

Data Visualization with Python

This blog post is part of a series, where I talk about concepts and algorithms in Machine Learning. In this blog post I do not want to talk about any concept or algorithm, but about data visualization with Python. Data Visualization with Python is very important, especially for Machine Learning, because you want to explore your data and gain kn... Read more

Preparation of training data

This blog post is part of a series, where I talk about concepts and algorithms in Machine Learning. In this part I want to talk a little about the preparation of data before you start training the data to your Machine Learning algorithm. Basic feature engineering: Selecting the right features In the feature engineering you typically care about... Read more

Gaussian Naive Bayes

So I currently learning some machine learning stuff and therefore I also exploring some interesting algorithms I want to share here. This time I want to talk about the Gaussian Naive Bayes algorithm, which is a simple classification algorithm which is based on the Bayes’ theorem. Bayes’ theorem Bayes Theorem is named after Thomas Bayes (1701-1... Read more

Angular: Common Http Client

With the last major release of Angular to Angular 4.3 there came a new feature to the Angular framework: The new Angular HttpClient. In the following blog post I want to show you how to use the new Angular HttpClient. Core features of the Angular HttpClient So in case you do not know what a HttpClient is, it is simply a way to communicate with ... Read more