
Martin Hellspong
Consultant
Get in touch
Personal Blog Feed
Visit Martin's blogScala 3: Returning implicit function literals
When I recently looked at implicit functions in Scala 3 (still only available as a pre-release compiler codenamed ‘Dotty’) I had some questions.
Implicit Functions in Scala 3
One of the many new things in Scala 3 (still only available as a pre-release compiler codenamed ‘Dotty’) is the ability to define implicit functions.
Docker Multistage Builds
In one of my current projects, we used Create React App to set up a React project.
Get sublime help with git commit messages
A guide for success!
Accessing the Aurelia viewModel from the browser
If you want to accessing the Aurelia viewModel from the browser console have a look at this!
Empty if null – Preventing null infections
In one of our C# codebases, which is predominantly OO, using FP-style list processing often runs into the null problem. Let's have a look.
Copy commits from one git repo to another
If you have done some work in one (or more) repos, that you want to transfer into a different target repo. Could you also copy the commit history?
Fork and Switch – Pointing a git workspace to a fork
We’d like all developers to move over to using a pull-request based workflow to encourage code reviews.
Multimethods and default arguments
I had a situation the other day on my Clojure project, where I wanted to refactor a (parsing-related) function that was becoming too complex.