Posts

This is the blog of me, Max Strübing, I will blog about anything I'm interested in, but mostly about technical related stuff | Continue reading


@maex.me | 5 years ago

Search

This is the blog of me, Max Strübing, I will blog about anything I'm interested in, but mostly about technical related stuff | Continue reading


@maex.me | 5 years ago

Rewriting Functions with Fold and Reduce

How to use fold and reduce to rewrite any function that operates on lists | Continue reading


@maex.me | 5 years ago

Projects

Here are my own projects I’ve built or I’m maintaining. They aren’t in a specific order. Some were made to solve a problem, some just for learning purpose and some assignments or homeworks of vocational school.Elmodoro: CodeInActionAn Elm implementation of the popular pomodoro ti … | Continue reading


@maex.me | 5 years ago

About

About Me General Hi, I’m Max from Hamburg/Germany. I’m coding since 2012 and I’m a Software Engineer at farbenmeer GmbH.From July 2017 until January 2019 I was an active Neos core team member where I worked mostly on the React/Redux user interface for editors (the frontend for th … | Continue reading


@maex.me | 5 years ago

Contact

If you have any questions, suggestions or anything else feel free to contact me: Mail: mxstrbng@gmail.com Twitter: mxstrbng Neos-Slack: mstruebing | Continue reading


@maex.me | 5 years ago

Archive

Continue reading


@maex.me | 5 years ago

Go: A Comprehensive Introduction

A comprehensive introduction to the go programming language | Continue reading


@maex.me | 5 years ago

Dont Fear the Makefile

A simple Makefile tutorial describing the basics and todays possible usage | Continue reading


@maex.me | 6 years ago

Raspberry Pi as a Music Server

How I set up my Raspberry Pi as a simple music server | Continue reading


@maex.me | 6 years ago

Why I like wc

Wc is a small handy tool which I use often. I’m calling it word-count in my head.(Today I learned by looking wc up on Wikipedia: it is actually called word count) It is part of the GNU coreutils it should be on nearly any system.What can you do with wc? With wc you can simply cou … | Continue reading


@maex.me | 7 years ago

You might not need scripty

Because no one should be shell-scripting inside a JSON file. That’s cool, but why should I use scripty? I could do this well without.What is the advantage of another dependency in my project?Recently I had to work on a project and the build were broken because of an update of scr … | Continue reading


@maex.me | 7 years ago

Execute multiple commands on files with find

Hello everybody In this post I will show you how you can execute multiple commands on files via find.Firstly how to use find:find -type f -iname "*.extension" This will find all files under the working dir with the given extension. Of course you can use other things like filesize … | Continue reading


@maex.me | 7 years ago

Writing a simple CLI-tool in Haskell

Hello folks,I want to write a small tutorial on how to write a simple CLI-tool in Haskell.For all who did not know, Haskell is a pure functional programming language which was released in 1990. What I personally like the most is list comprehension, this is a really powerful and g … | Continue reading


@maex.me | 8 years ago