Tags

posts

Exploring Cats Effect

15 minute read

In two previous articles we explored how you can use ZIO to easily create programs in a type-safe manner: Exploring ZIO - Part I Exploring ZIO - Part I...

Exploring ZIO - Part I

15 minute read

I’ve done a lot of Kotlin for the last two years, and have mainly followed Scala and done some pet projects. Since a lot of interesting stuff has been going ...

Running a minimal Kafka instance on K8S

2 minute read

A couple of days ago I ran into an issue with our hosted Kafka environment, and we had to give a demo. So I was looking for a quick way to run a simple ephem...

My 10 goto terminal commands

4 minute read

There are a lot of useful terminal/shell commands which can make your live a lot easier. I do a lot of backend development, and there is a set of commands wh...

Getting started with Rust - part 2

11 minute read

In the previous article I started experimenting with Rust and build a very simple extension to git, which helps me remember the most recent branches I’ve bee...

Getting started with Rust - part 1

9 minute read

I decided to look a bit into Rust. I’ve been hearing great things about it, the community seems to be (mostly) very inviting and open, and the language in it...

D3.js: Devoxx presentation 2017

less than 1 minute read

I just noticed that I never published the D3.js presentation I gave last year on Devoxx. So a bit late, but you can find the video for that presentation belo...

Voronoi Fractal with D3.js

less than 1 minute read

I’ve been very busy the last couple of months. Started a new project at Philips, started writing on D3.js for Packt, and besides that participating in two st...

First steps with Angular 2: 8 cool features

10 minute read

I’ve been doing some work the last couple of weeks with Angular2. I really like it. Not just because it uses typescript, but also because it feels really nat...

Getting started with scala-native

7 minute read

This is just a quick recollection of the steps I've taken to get my own helloworld running using scala-native. I haven't really started looking at scala-nati...

Developing Scala in Atom with Ensime

6 minute read

When I began Java software development way back in the time of Java 1.3 I remember using JDeveloper for a time, before switching to the early versions of Ecl...

Create a Slack Docker proxy in Go - Part 2

4 minute read

In the previous article we had a look at how you could easily create a slack-docker-proxy using go and a couple of small libraries. In this second article we...

Create a Slack Docker proxy in Go - Part 1

5 minute read

Last year I had the opportunity to work with lots of cool tools and technologies. A couple of those were go, slack and docker. We pretty much use slack for a...

Exploring the HTML5 Web Audio API: Filters

5 minute read

03-07-2015 Update: Updated the example, it now works with the latest versions of Chrome and Firefox With the Web Audio API you can have advanced audio pro...

Scala snippets 2: List symbol magic

4 minute read

The following snippets are available: Scala snippets 1: Folding Scala snippets 2: List symbol magic Scala snippets 3: Lists together with Map, flatmap,...

Scala snippets 1: Folding

2 minute read

Coming from a Java background, Scala provides lots of nice features and libraries that allow you to create nice and concise code. Wrapping your head around t...

First steps with REST, Spray and Scala

6 minute read

On this site you can already find a couple of articles on how to do REST with a multiple of different frameworks. You can find an old one on Play, some on Sc...

Access information from GeoTIFF using Java

4 minute read

I’m always very interested in combining information from various open data sources together. The last couple of weeks I’ve been working with GIS related info...

The Truth About HTML5

less than 1 minute read

I work for Malmberg, which is a publisher of educational content. Within our company we have a lot of very interactive content that is currently made availab...

Chrome and Firefox: Desktop Notifications

2 minute read

Just a short article this time, since I’m kind of swamped with work and the start of a new book on Three.js I’m writing for Packt. In this article we’ll very...

Deep dive into chrome web intents

3 minute read

In a previous article I already wrote about the web intents API. At that time the web intents feature was very experimental, but already usuable. In this art...

Remote opera debugging on android

1 minute read

The final article on remote debugging web applications on mobile devices shows how you can do this using Opera Mobile. With Opera Mobile you can easily debug...

Remote firefox debugging on android

2 minute read

In the previous article I wrote about remote debugging web applications using chrome on Android. If you don’t want to use chrome or you want to test and debu...

Remote chrome debugging on android

2 minute read

With the latest versions of chrome debugging web apps running on smartphones and tablets has become a lot easier. This article shows you how to setup the req...

Presentation: From REST to HATEOAS

less than 1 minute read

Yesterday I gave a presentation at JPoint’s meetingpoint on how to get your API or service from using the basic REST principles such as verbs and resources t...

Access WSO2 Registry programatically

11 minute read

When you have many services it is a good thing to register them somewhere so your consumers can easily find them, see what they are about, determine whether ...

How to use SPDY with Jetty

9 minute read

SPDY is a new protocol proposed by Google as a new protocol for the web. SPDY is compatible with HTTP but tries to reduce web page loading by using compressi...

How to analyze Java SSL errors

18 minute read

In my recent projects I’ve had to do a lot with certificates, java and HTTPS with client-side authentication. In most of these projects, either during testin...

Play 2.0: Akka, Rest, Json and dependencies

12 minute read

I’ve been diving more and more into scala the last couple of months. Scala together with the “Play Framework” provides you with a very effective and quick de...

Embedded Jetty with client certificates

1 minute read

Every time I start with an embedded Jetty server, I can’t find any up to date documentation and have to mess around with old, obsolete and deprecated documen...

Client certificates with HTTPClient 4

1 minute read

I just wrote a small post on how to setup Jetty to support client-side certificates (http://www.smartjava.org/content/embedded-jetty-client-certificates). To...

How should REST services be documented?

5 minute read

REST has become the standard way of creating APIs and exposing resources on the internet. Traditional web services (using SOAP and various sets of WS-* stand...

Using Querulous with Scala on postgresql

6 minute read

I’ve started diving deeper into scala and as a language I’m starting to like it. Combine it with the Play framework and you’ve got a nice, statically typed, ...

Maven and wildcard exclusions

3 minute read

Once in a while I run into the problem where I don’t want to exclude a single dependency from a maven dependency, but all dependencies. For instance I recent...

Embedded Jetty, Vaadin and Weld

4 minute read

When I develop web applications I like to be able to quickly start them from Eclipse without having to rely on all kinds of heavy-weight tomcat or glassfish ...

Using d3.js to visualize GIS

3 minute read

I've been playing around with d3.js a bit the last couple of days and it's a great little javascript library to visualize information. I needed a simple li...

Mule and WSO2 Registry integration

12 minute read

In this two part article we’ll look at how we can use the WSO2 registry (http://wso2.com/products/governance-registry/) as the service repository for service...

First steps with Mule 3.0

7 minute read

Been a while since I looked at the new versions of Mule, so took some time this weekend to look at the new version of Mule. After a rather unexpected small d...

Back to top ↑

scala

Exploring Cats Effect

15 minute read

In two previous articles we explored how you can use ZIO to easily create programs in a type-safe manner: Exploring ZIO - Part I Exploring ZIO - Part I...

Exploring ZIO - Part I

15 minute read

I’ve done a lot of Kotlin for the last two years, and have mainly followed Scala and done some pet projects. Since a lot of interesting stuff has been going ...

Getting started with scala-native

7 minute read

This is just a quick recollection of the steps I've taken to get my own helloworld running using scala-native. I haven't really started looking at scala-nati...

Developing Scala in Atom with Ensime

6 minute read

When I began Java software development way back in the time of Java 1.3 I remember using JDeveloper for a time, before switching to the early versions of Ecl...

Scala snippets 2: List symbol magic

4 minute read

The following snippets are available: Scala snippets 1: Folding Scala snippets 2: List symbol magic Scala snippets 3: Lists together with Map, flatmap,...

Scala snippets 1: Folding

2 minute read

Coming from a Java background, Scala provides lots of nice features and libraries that allow you to create nice and concise code. Wrapping your head around t...

First steps with REST, Spray and Scala

6 minute read

On this site you can already find a couple of articles on how to do REST with a multiple of different frameworks. You can find an old one on Play, some on Sc...

Play 2.0: Akka, Rest, Json and dependencies

12 minute read

I’ve been diving more and more into scala the last couple of months. Scala together with the “Play Framework” provides you with a very effective and quick de...

Using Querulous with Scala on postgresql

6 minute read

I’ve started diving deeper into scala and as a language I’m starting to like it. Combine it with the Play framework and you’ve got a nice, statically typed, ...

Back to top ↑

html5

Exploring the HTML5 Web Audio API: Filters

5 minute read

03-07-2015 Update: Updated the example, it now works with the latest versions of Chrome and Firefox With the Web Audio API you can have advanced audio pro...

The Truth About HTML5

less than 1 minute read

I work for Malmberg, which is a publisher of educational content. Within our company we have a lot of very interactive content that is currently made availab...

Chrome and Firefox: Desktop Notifications

2 minute read

Just a short article this time, since I’m kind of swamped with work and the start of a new book on Three.js I’m writing for Packt. In this article we’ll very...

Back to top ↑

javascript

Using d3.js to visualize GIS

3 minute read

I've been playing around with d3.js a bit the last couple of days and it's a great little javascript library to visualize information. I needed a simple li...

Back to top ↑

three.js

Back to top ↑

rest

First steps with REST, Spray and Scala

6 minute read

On this site you can already find a couple of articles on how to do REST with a multiple of different frameworks. You can find an old one on Play, some on Sc...

Presentation: From REST to HATEOAS

less than 1 minute read

Yesterday I gave a presentation at JPoint’s meetingpoint on how to get your API or service from using the basic REST principles such as verbs and resources t...

Play 2.0: Akka, Rest, Json and dependencies

12 minute read

I’ve been diving more and more into scala the last couple of months. Scala together with the “Play Framework” provides you with a very effective and quick de...

How should REST services be documented?

5 minute read

REST has become the standard way of creating APIs and exposing resources on the internet. Traditional web services (using SOAP and various sets of WS-* stand...

Back to top ↑

d3.js

Using d3.js to visualize GIS

3 minute read

I've been playing around with d3.js a bit the last couple of days and it's a great little javascript library to visualize information. I needed a simple li...

Back to top ↑

java

Access information from GeoTIFF using Java

4 minute read

I’m always very interested in combining information from various open data sources together. The last couple of weeks I’ve been working with GIS related info...

Access WSO2 Registry programatically

11 minute read

When you have many services it is a good thing to register them somewhere so your consumers can easily find them, see what they are about, determine whether ...

How to analyze Java SSL errors

18 minute read

In my recent projects I’ve had to do a lot with certificates, java and HTTPS with client-side authentication. In most of these projects, either during testin...

Embedded Jetty with client certificates

1 minute read

Every time I start with an embedded Jetty server, I can’t find any up to date documentation and have to mess around with old, obsolete and deprecated documen...

Maven and wildcard exclusions

3 minute read

Once in a while I run into the problem where I don’t want to exclude a single dependency from a maven dependency, but all dependencies. For instance I recent...

Back to top ↑

akka

Back to top ↑

docker

Create a Slack Docker proxy in Go - Part 2

4 minute read

In the previous article we had a look at how you could easily create a slack-docker-proxy using go and a couple of small libraries. In this second article we...

Create a Slack Docker proxy in Go - Part 1

5 minute read

Last year I had the opportunity to work with lots of cool tools and technologies. A couple of those were go, slack and docker. We pretty much use slack for a...

Back to top ↑

chrome

Exploring the HTML5 Web Audio API: Filters

5 minute read

03-07-2015 Update: Updated the example, it now works with the latest versions of Chrome and Firefox With the Web Audio API you can have advanced audio pro...

Chrome and Firefox: Desktop Notifications

2 minute read

Just a short article this time, since I’m kind of swamped with work and the start of a new book on Three.js I’m writing for Packt. In this article we’ll very...

Deep dive into chrome web intents

3 minute read

In a previous article I already wrote about the web intents API. At that time the web intents feature was very experimental, but already usuable. In this art...

Remote chrome debugging on android

2 minute read

With the latest versions of chrome debugging web apps running on smartphones and tablets has become a lot easier. This article shows you how to setup the req...

Back to top ↑

webgl

Back to top ↑

websockets

Back to top ↑

reactive

Back to top ↑

ssl

How to use SPDY with Jetty

9 minute read

SPDY is a new protocol proposed by Google as a new protocol for the web. SPDY is compatible with HTTP but tries to reduce web page loading by using compressi...

How to analyze Java SSL errors

18 minute read

In my recent projects I’ve had to do a lot with certificates, java and HTTPS with client-side authentication. In most of these projects, either during testin...

Embedded Jetty with client certificates

1 minute read

Every time I start with an embedded Jetty server, I can’t find any up to date documentation and have to mess around with old, obsolete and deprecated documen...

Back to top ↑

jetty

How to use SPDY with Jetty

9 minute read

SPDY is a new protocol proposed by Google as a new protocol for the web. SPDY is compatible with HTTP but tries to reduce web page loading by using compressi...

Embedded Jetty with client certificates

1 minute read

Every time I start with an embedded Jetty server, I can’t find any up to date documentation and have to mess around with old, obsolete and deprecated documen...

Back to top ↑

play

Play 2.0: Akka, Rest, Json and dependencies

12 minute read

I’ve been diving more and more into scala the last couple of months. Scala together with the “Play Framework” provides you with a very effective and quick de...

Back to top ↑

webrtc

Exploring the HTML5 Web Audio API: Filters

5 minute read

03-07-2015 Update: Updated the example, it now works with the latest versions of Chrome and Firefox With the Web Audio API you can have advanced audio pro...

Back to top ↑

scalatra

Back to top ↑

visualization

Back to top ↑

snippets

Scala snippets 2: List symbol magic

4 minute read

The following snippets are available: Scala snippets 1: Folding Scala snippets 2: List symbol magic Scala snippets 3: Lists together with Map, flatmap,...

Scala snippets 1: Folding

2 minute read

Coming from a Java background, Scala provides lots of nice features and libraries that allow you to create nice and concise code. Wrapping your head around t...

Back to top ↑

scalaz

Back to top ↑

typescript

First steps with Angular 2: 8 cool features

10 minute read

I’ve been doing some work the last couple of weeks with Angular2. I really like it. Not just because it uses typescript, but also because it feels really nat...

Back to top ↑

gis

Access information from GeoTIFF using Java

4 minute read

I’m always very interested in combining information from various open data sources together. The last couple of weeks I’ve been working with GIS related info...

Using d3.js to visualize GIS

3 minute read

I've been playing around with d3.js a bit the last couple of days and it's a great little javascript library to visualize information. I needed a simple li...

Back to top ↑

canvas

Back to top ↑

debugging

Remote opera debugging on android

1 minute read

The final article on remote debugging web applications on mobile devices shows how you can do this using Opera Mobile. With Opera Mobile you can easily debug...

Remote firefox debugging on android

2 minute read

In the previous article I wrote about remote debugging web applications using chrome on Android. If you don’t want to use chrome or you want to test and debu...

Remote chrome debugging on android

2 minute read

With the latest versions of chrome debugging web apps running on smartphones and tablets has become a lot easier. This article shows you how to setup the req...

Back to top ↑

node.js

Back to top ↑

angularjs

Back to top ↑

mongodb

Back to top ↑

vert.x

Back to top ↑

go-lang

Create a Slack Docker proxy in Go - Part 2

4 minute read

In the previous article we had a look at how you could easily create a slack-docker-proxy using go and a couple of small libraries. In this second article we...

Create a Slack Docker proxy in Go - Part 1

5 minute read

Last year I had the opportunity to work with lots of cool tools and technologies. A couple of those were go, slack and docker. We pretty much use slack for a...

Back to top ↑

go

Create a Slack Docker proxy in Go - Part 2

4 minute read

In the previous article we had a look at how you could easily create a slack-docker-proxy using go and a couple of small libraries. In this second article we...

Create a Slack Docker proxy in Go - Part 1

5 minute read

Last year I had the opportunity to work with lots of cool tools and technologies. A couple of those were go, slack and docker. We pretty much use slack for a...

Back to top ↑

akka-streams

Back to top ↑

top

My 10 goto terminal commands

4 minute read

There are a lot of useful terminal/shell commands which can make your live a lot easier. I do a lot of backend development, and there is a set of commands wh...

Back to top ↑

consul

Back to top ↑

devoxx

D3.js: Devoxx presentation 2017

less than 1 minute read

I just noticed that I never published the D3.js presentation I gave last year on Devoxx. So a bit late, but you can find the video for that presentation belo...

Back to top ↑

k8s

Exploring ZIO - Part I

15 minute read

I’ve done a lot of Kotlin for the last two years, and have mainly followed Scala and done some pet projects. Since a lot of interesting stuff has been going ...

Running a minimal Kafka instance on K8S

2 minute read

A couple of days ago I ran into an issue with our hosted Kafka environment, and we had to give a demo. So I was looking for a quick way to run a simple ephem...

Back to top ↑

zio

Exploring Cats Effect

15 minute read

In two previous articles we explored how you can use ZIO to easily create programs in a type-safe manner: Exploring ZIO - Part I Exploring ZIO - Part I...

Exploring ZIO - Part I

15 minute read

I’ve done a lot of Kotlin for the last two years, and have mainly followed Scala and done some pet projects. Since a lot of interesting stuff has been going ...

Back to top ↑

wso2

Access WSO2 Registry programatically

11 minute read

When you have many services it is a good thing to register them somewhere so your consumers can easily find them, see what they are about, determine whether ...

Mule and WSO2 Registry integration

12 minute read

In this two part article we’ll look at how we can use the WSO2 registry (http://wso2.com/products/governance-registry/) as the service repository for service...

Back to top ↑

postgresql

Using Querulous with Scala on postgresql

6 minute read

I’ve started diving deeper into scala and as a language I’m starting to like it. Combine it with the Play framework and you’ve got a nice, statically typed, ...

Back to top ↑

governance

Access WSO2 Registry programatically

11 minute read

When you have many services it is a good thing to register them somewhere so your consumers can easily find them, see what they are about, determine whether ...

How should REST services be documented?

5 minute read

REST has become the standard way of creating APIs and exposing resources on the internet. Traditional web services (using SOAP and various sets of WS-* stand...

Back to top ↑

json

Play 2.0: Akka, Rest, Json and dependencies

12 minute read

I’ve been diving more and more into scala the last couple of months. Scala together with the “Play Framework” provides you with a very effective and quick de...

Back to top ↑

hmac

Presentation: From REST to HATEOAS

less than 1 minute read

Yesterday I gave a presentation at JPoint’s meetingpoint on how to get your API or service from using the basic REST principles such as verbs and resources t...

Back to top ↑

spdy

How to use SPDY with Jetty

9 minute read

SPDY is a new protocol proposed by Google as a new protocol for the web. SPDY is compatible with HTTP but tries to reduce web page loading by using compressi...

Back to top ↑

bootstrap

Back to top ↑

hateoas

First steps with REST, Spray and Scala

6 minute read

On this site you can already find a couple of articles on how to do REST with a multiple of different frameworks. You can find an old one on Play, some on Sc...

Presentation: From REST to HATEOAS

less than 1 minute read

Yesterday I gave a presentation at JPoint’s meetingpoint on how to get your API or service from using the basic REST principles such as verbs and resources t...

Back to top ↑

web workers

Back to top ↑

web intents

Deep dive into chrome web intents

3 minute read

In a previous article I already wrote about the web intents API. At that time the web intents feature was very experimental, but already usuable. In this art...

Back to top ↑

geo

Back to top ↑

webaudio

Exploring the HTML5 Web Audio API: Filters

5 minute read

03-07-2015 Update: Updated the example, it now works with the latest versions of Chrome and Firefox With the Web Audio API you can have advanced audio pro...

Back to top ↑

express.js

Back to top ↑

angular.js

Back to top ↑

rxjava

Back to top ↑

open data

Access information from GeoTIFF using Java

4 minute read

I’m always very interested in combining information from various open data sources together. The last couple of weeks I’ve been working with GIS related info...

Back to top ↑

monad

Back to top ↑

slack

Create a Slack Docker proxy in Go - Part 2

4 minute read

In the previous article we had a look at how you could easily create a slack-docker-proxy using go and a couple of small libraries. In this second article we...

Create a Slack Docker proxy in Go - Part 1

5 minute read

Last year I had the opportunity to work with lots of cool tools and technologies. A couple of those were go, slack and docker. We pretty much use slack for a...

Back to top ↑

microservices

Back to top ↑

angular2

First steps with Angular 2: 8 cool features

10 minute read

I’ve been doing some work the last couple of weeks with Angular2. I really like it. Not just because it uses typescript, but also because it feels really nat...

Back to top ↑

angular

First steps with Angular 2: 8 cool features

10 minute read

I’ve been doing some work the last couple of weeks with Angular2. I really like it. Not just because it uses typescript, but also because it feels really nat...

Back to top ↑

kubernetes

Running a minimal Kafka instance on K8S

2 minute read

A couple of days ago I ran into an issue with our hosted Kafka environment, and we had to give a demo. So I was looking for a quick way to run a simple ephem...

Back to top ↑

d3

D3.js: Devoxx presentation 2017

less than 1 minute read

I just noticed that I never published the D3.js presentation I gave last year on Devoxx. So a bit late, but you can find the video for that presentation belo...

Back to top ↑

haskell

Back to top ↑

fp

Back to top ↑

kafka

Running a minimal Kafka instance on K8S

2 minute read

A couple of days ago I ran into an issue with our hosted Kafka environment, and we had to give a demo. So I was looking for a quick way to run a simple ephem...

Back to top ↑

rust

Getting started with Rust - part 2

11 minute read

In the previous article I started experimenting with Rust and build a very simple extension to git, which helps me remember the most recent branches I’ve bee...

Getting started with Rust - part 1

9 minute read

I decided to look a bit into Rust. I’ve been hearing great things about it, the community seems to be (mostly) very inviting and open, and the language in it...

Back to top ↑

mule

Mule and WSO2 Registry integration

12 minute read

In this two part article we’ll look at how we can use the WSO2 registry (http://wso2.com/products/governance-registry/) as the service repository for service...

Back to top ↑

postgis

Using d3.js to visualize GIS

3 minute read

I've been playing around with d3.js a bit the last couple of days and it's a great little javascript library to visualize information. I needed a simple li...

Back to top ↑

exclusion

Maven and wildcard exclusions

3 minute read

Once in a while I run into the problem where I don’t want to exclude a single dependency from a maven dependency, but all dependencies. For instance I recent...

Back to top ↑

wildcard

Maven and wildcard exclusions

3 minute read

Once in a while I run into the problem where I don’t want to exclude a single dependency from a maven dependency, but all dependencies. For instance I recent...

Back to top ↑

maven

Maven and wildcard exclusions

3 minute read

Once in a while I run into the problem where I don’t want to exclude a single dependency from a maven dependency, but all dependencies. For instance I recent...

Back to top ↑

querulous

Using Querulous with Scala on postgresql

6 minute read

I’ve started diving deeper into scala and as a language I’m starting to like it. Combine it with the Play framework and you’ve got a nice, statically typed, ...

Back to top ↑

documentation

How should REST services be documented?

5 minute read

REST has become the standard way of creating APIs and exposing resources on the internet. Traditional web services (using SOAP and various sets of WS-* stand...

Back to top ↑

client-certificates

Embedded Jetty with client certificates

1 minute read

Every time I start with an embedded Jetty server, I can’t find any up to date documentation and have to mess around with old, obsolete and deprecated documen...

Back to top ↑

security

Back to top ↑

knockout.js

Back to top ↑

amqp

Back to top ↑

rabbitmq

Back to top ↑

box2d

Back to top ↑

impedance mismatch

Back to top ↑

open source

Back to top ↑

mac

Back to top ↑

svg

Back to top ↑

geolocation

Back to top ↑

word

Back to top ↑

firefox

Remote firefox debugging on android

2 minute read

In the previous article I wrote about remote debugging web applications using chrome on Android. If you don’t want to use chrome or you want to test and debu...

Back to top ↑

android

Remote opera debugging on android

1 minute read

The final article on remote debugging web applications on mobile devices shows how you can do this using Opera Mobile. With Opera Mobile you can easily debug...

Back to top ↑

twitter

Back to top ↑

cloud

Back to top ↑

pointer lock

Back to top ↑

webapi

Back to top ↑

css

Back to top ↑

jquery

Back to top ↑

audio

Back to top ↑

tutorial

Back to top ↑

jqueryui

Back to top ↑

desktop notifications

Chrome and Firefox: Desktop Notifications

2 minute read

Just a short article this time, since I’m kind of swamped with work and the start of a new book on Three.js I’m writing for Packt. In this article we’ll very...

Back to top ↑

dat.gui

Back to top ↑

overview

The Truth About HTML5

less than 1 minute read

I work for Malmberg, which is a publisher of educational content. Within our company we have a lot of very interactive content that is currently made availab...

Back to top ↑

three

Back to top ↑

spray

First steps with REST, Spray and Scala

6 minute read

On this site you can already find a couple of articles on how to do REST with a multiple of different frameworks. You can find an old one on Play, some on Sc...

Back to top ↑

streams

Back to top ↑

examples

Back to top ↑

books

Back to top ↑

scala.js

Back to top ↑

devops

Back to top ↑

sonar

Back to top ↑

statsd

Back to top ↑

granafa

Back to top ↑

influxdb

Back to top ↑

type class

Back to top ↑

example

Back to top ↑

typeclass

Back to top ↑

actors akka-typed

Back to top ↑

scalatest

Back to top ↑

selenium

Back to top ↑

ensime

Developing Scala in Atom with Ensime

6 minute read

When I began Java software development way back in the time of Java 1.3 I remember using JDeveloper for a time, before switching to the early versions of Ecl...

Back to top ↑

atom

Developing Scala in Atom with Ensime

6 minute read

When I began Java software development way back in the time of Java 1.3 I remember using JDeveloper for a time, before switching to the early versions of Ecl...

Back to top ↑

blender

Back to top ↑

scala-native

Getting started with scala-native

7 minute read

This is just a quick recollection of the steps I've taken to get my own helloworld running using scala-native. I haven't really started looking at scala-nati...

Back to top ↑

voronoi d3.js

Voronoi Fractal with D3.js

less than 1 minute read

I’ve been very busy the last couple of months. Started a new project at Philips, started writing on D3.js for Packt, and besides that participating in two st...

Back to top ↑

threejs

Back to top ↑

arrow

Webflux with Kotlin and Arrow

11 minute read

A month into the new year and I’m already lagging behind my two articles per month goal. So for Februari I’m going to try and do three articles. To kick of t...

Back to top ↑

webflux

Webflux with Kotlin and Arrow

11 minute read

A month into the new year and I’m already lagging behind my two articles per month goal. So for Februari I’m going to try and do three articles. To kick of t...

Back to top ↑

kotlin

Webflux with Kotlin and Arrow

11 minute read

A month into the new year and I’m already lagging behind my two articles per month goal. So for Februari I’m going to try and do three articles. To kick of t...

Back to top ↑

puppeteer

Back to top ↑

git

Getting started with Rust - part 1

9 minute read

I decided to look a bit into Rust. I’ve been hearing great things about it, the community seems to be (mostly) very inviting and open, and the language in it...

Back to top ↑

dns

Getting started with Rust - part 2

11 minute read

In the previous article I started experimenting with Rust and build a very simple extension to git, which helps me remember the most recent branches I’ve bee...

Back to top ↑

apollo

Back to top ↑

websocket

Back to top ↑

graphql

Back to top ↑

node

Back to top ↑

command line

My 10 goto terminal commands

4 minute read

There are a lot of useful terminal/shell commands which can make your live a lot easier. I do a lot of backend development, and there is a set of commands wh...

Back to top ↑

bash

My 10 goto terminal commands

4 minute read

There are a lot of useful terminal/shell commands which can make your live a lot easier. I do a lot of backend development, and there is a set of commands wh...

Back to top ↑

zsh

My 10 goto terminal commands

4 minute read

There are a lot of useful terminal/shell commands which can make your live a lot easier. I do a lot of backend development, and there is a set of commands wh...

Back to top ↑

cats

Exploring Cats Effect

15 minute read

In two previous articles we explored how you can use ZIO to easily create programs in a type-safe manner: Exploring ZIO - Part I Exploring ZIO - Part I...

Back to top ↑

dev

Working with nix-shell

11 minute read

Managing runtime dependencies using Nix We’re setting up a new project at work, and wanted to apply some lessons learned from previous projects. One of the ...

Back to top ↑

nix

Working with nix-shell

11 minute read

Managing runtime dependencies using Nix We’re setting up a new project at work, and wanted to apply some lessons learned from previous projects. One of the ...

Back to top ↑

nix-shell

Working with nix-shell

11 minute read

Managing runtime dependencies using Nix We’re setting up a new project at work, and wanted to apply some lessons learned from previous projects. One of the ...

Back to top ↑