Exploring Cats Effect
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...
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...
In the previous article we looked at the basics of ZIO. In this part we’re going to extend on that example and add the following: ZStream integration: we...
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 ...
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...
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...
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...
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...
Puppeteer (https://github.com/puppeteer/puppeteer) is a great way to write scrapers, integration tests, or automate boring tasks and web forms. For a lot of ...
In this short article we’ll have a quick look at how to set up a Kafka cluster locally, which can be easily accessed from outside of the docker container. ...
In the previous article learning haskell part 1 I walked through the steps I took to get a very simple and basic REST endpoint up and running. All that wen...
I’ve been doing scala and FP for a while now, and during that time I’ve tried a couple of times to pickup haskell as well. What I noticed was that I knew to...
I’ve recently made the effort to try and pick up Kotlin (again). The last couple of years I’ve been doing mostly scala work (with some other languages in b...
A couple of months ago the third edtion of my book on learning three.js was released: View on Packt. Just as for the previous examples I’ve put all the examp...
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...
A couple of years ago I wrote a number of articles on how to work with docker. Since that time a lot has changed in the docker and container world. Docker ha...
Hi everyone,
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...
Note that this has become outdated… again. But it has become part of the standard Angular distribution. Please look at the latest angular documentation here:...
In this short article I’d like to explain the process I took to create some simple D3.js visualizations based on the number of swears per minute in movies. I...
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...
In this article in the mini series on Scalaz, we'll look at a couple of additional monads and patterns available in Scalaz. Once again, we'll look at stuff t...
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...
Recently video copilot released a free set of high-definition professional grade 3D models (which you can download for yourself from here). This model pack, ...
So, welcome to the second part of the series on using Consul for service discovey together with docker. In this second article we'll look at how you can use ...
For the second article of the "Scalaz features for everyday usage" we'll look at the subject of Monad transformers and the Reader monad.Let's start with Mona...
During the last year I've become a big fan of using Consul for all things related to service discovery. If you're doing microservices you've probably ran int...
I recently gave a presentation on how you can use Consul (http://consul.io) for all your service discovery needs in a microservice architecture. The present...
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...
For a specific project we needed a quick way to get the content of a specific URL and check whether a word was present in the text there. If all we had to s...
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...
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...
I’ve had the opportunity to setup a complete new docker based microservice architecture at my current job, so since everyone is sharing their docker tips and...
In this article we’ll explore another of Akka-Typed patterns. This time we’ll show you how you can use the receptionist patterns. This is the third and last ...
At work we recently added the option to authenticate machine to machine communication using client certificates (two-way ssl). While this was relatively easy...
In the previous article we looked at some of the basic features provided by Akka Typed. In this article and the next one we’ll look a bit closer at some more...
With the release of Akka 2.4.0 a couple of weeks ago the experimental Akka Typed module was added. With Akka Typed it is possible to create and interact with...
In the past I’ve written a couple of articles (Building a REST service in Scala with Akka HTTP, Akka Streams and reactive mongo and ReactiveMongo with Akka, ...
In this short article I’d like to explain how you can use the typeclass pattern in Scala to implement adhoc polymorphism. We won’t go into too much theoretic...
I’m working on a new book for Packt which shows how you can use various Scala frameworks to create REST services. For this book I’m looking at the following...
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...
So in the previous article I showed how you could create a websocket server using akka-streams. In this follow up article we’ll look a bit closer on how bac...
In the previous article we looked at how backpressure works when working with akka-streams. Akka also uses akka-streams as the base for akka-http, with which...
Currently reactive programming is getting more and more attentions. With reactive programming it is possible to easily create resilient, scalable and fault t...
At my current project we were setting up a new buildserver. One of the things we had to do was move an old sonar implementation running on top of H2 to a new...
In my day job I work a lot with Angular.js. And while this is a great framework, sometimes I do miss the type-safety and advanced features of languages such ...
I’ve been following go (go-lang) for a while now and finally had some time to experiment with it a bit more. In this post we’ll create a simple HTTP server ...
About a month ago my third book on Three.js got released: Three.js Cookbook. This book has 80+ recipes on how to accomplish common tasks in Three.js. On this...
At the end of last year I wrote a couple of articles that showed how you can use Spray.io to create a Scala based REST service () and how to create a websock...
I wanted to write an article on the fun parts of scalaz, but thought it would be best to first look a bit closer at the type classes system provided by scala...
You can’t really talk about scala without going into the details of the Map, flatMap, zip and reduce functions. With these functions it is very easy to proce...
The following snippets are available: Scala snippets 1: Folding Scala snippets 2: List symbol magic Scala snippets 3: Lists together with Map, flatmap,...
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...
I was looking for a simple websocket server for one of my projects to test some stuff with reactive mongo. When looking around, though, I couldn’t really fin...
Just a quick article this time, since I’m still experimenting with this stuff. There is a lot of talk around reactive programming. In Java 8 we’ve got the St...
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...
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...
So it’s been a while since I added something to this blog. I’ve been very busy with work and at the same time finishing up my second book on Three.js. For ou...
I’m currently working on my next book for Three.js and one of the chapters deals with visualizing open data. When looking around for data that I could use, I...
I’ve been playing around with Vert.x for a couple of weeks and I’m really starting to like the simplicity of the framework. With very little configuration yo...
We are pleased to announce that we are organizing a giveaway especially for you. All you need to do is just comment below the post and win a free copy of Lea...
About a month ago I got the request to create a video from one of the WebGL demos on this site (the rotating earth cube, showing population density). So, of ...
A couple of months ago my book on Three.js was published by packt (which you can buy from here: Learning Three.js: The JavaScript 3D Library for WebGL). All ...
A new article after an hiatus of almost half a year. In this article we’ll have quick look at how you can get started with vert.x and more interestingly how ...
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...
It’s been a while since I blogged, but it has been a rather busy time. Lots of big projects at work that need my complete attention, and lots of personal stu...
I’m currently working on a book for Three.js. This book contains lots and lots of examples that show off the various features of this great library. I want r...
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...
Long time since I posted anything. But it’s been a busy time with the holidays a new job and a week of snowboarding :) So after this short hiatus a quick art...
I was playing around with Node.js and Express.js and happened to run across an article on server-sent events. Server-sent events is a W3C specification that ...
In the last couple of weeks I’ve started working with AngularJS. AngularJS is a great simple framework that allows you to create complete web-apps in javascr...
A couple of months ago a wrote a series of tutorials on scalatra. In this article, and a couple of follow ups, I’ll do the same for Node.js together with Exp...
In the last month I’ve been experimenting with the Web Audio API. Currently I’m looking at how you can use this API to create robot sounds and was looking fo...
A couple of days ago I stumbled on the COLOURlovers site from the Android Play Store. This site provides a whole lot of beautiful patterns, colors and palett...
Just a quick article about the Clipboard API and how you can use this to quickly add copy and paste support for your applications. The clipboard API is a bi...
If you’ve read some of my other articles on this blog you probably know I’m a fan of HTML5. With HTML5 we get all this interesting functionality, directly in...
In this article we’ll look a bit closer at one of the new web APIs that recently has landed in Chrome: the pointer lock API (http://www.w3.org/TR/pointerlock...
Welcome to the last part of this series of tutorials on scala and scalatra. In this part we’ll look at how you can use Akka to handle your requests using an ...
There are many different web api standards that are turning the web browser into a complete application platform. With websockets we get nice asynchronous co...
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...
This post is the third on a series of articles I’m writing on scalatra. In “part I” we created the initial environment, and in “part II” we created the first...
If you’ve read some other articles on this blog you might know that I like creating visualizations of various datasets. I’ve just started a small project whe...
One of the (many) advantages of working with the Play framework is that you can start the server and have your changes automatically reloaded. This makes dev...
In the previous part of the tutorial we created a simple application from scratch and setup Eclipse so we could edit the scala files for scalatra. In this se...
In this series of tutorials we’re going to look a bit closer at scalatra. Scalatra is a lightweight scala based micro-web framework, that can be used to crea...
In this article I’ll once again look at data / geo visualization with Three.js. This time I’ll show you how you can plot the urban population growth over the...
With Three.js it’s very easy to create 3D objects and render these using WebGL. In a couple of previous articles I already showed how you can create 3D maps ...
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...
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...
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...
TL;DR: Play the game here (requires current Chrome, Opera of Firefox with webrtc enabled): Motion controlled space invaders A couple of days ago I ran acros...
n a couple of recent articles I’ve been using Three.js and d3.js to create 3D maps and visualize metrics. In the last week I combined a couple of these techn...
Three.js is a great library for creating 3D objects and animations. In a couple of previous articles I explored this library a bit and in one of those exampl...
The last couple of days I’ve been playing around with three.js and geo information. I wanted to be able to render map/geo data (e.g. in geojson format) insid...
A couple of months ago I needed to create a dynamic Word document with a number of tables and paragraphs. In the past I’ve used POI for this, but I’ve found ...
In this article we’ll show you how you can use the W3C geolocation API to measure the speed and the heading of your car while driving. This article further u...
If you’ve read any of my other articles you’re probably aware that I really like this whole “browser as the platform” concept. We can easily communicate with...
Compressing a PDF in Mac is very easy and doesn’t require any of the commercial tools out there. This isn’t an area I normally blog about, but when I needed ...
Update 19-01-2014: Well the adoption rate is very small. Firefox still supports this, but support has still not landed in Chrome (see here: https://code.goog...
In this tutorial we’ll look at how you can use three.js to render a 3D map of an image using webgl on a canvas element. In this example we’ll rasterize an im...
Most modern laptops automatically dim the screen when the light conditions in the room change. If there is a lot of light, the screen normally increases in b...
I recently ran across an article that was talking (again) about the Object-Relational mismatch. And just like in many articles this mismatch is called the O...
In my last couple of blog posts I showed you can use a couple of the new HTML5 related APIs (webrtc, web workers, device orientation) directly from your brow...
I’ve been experimenting with web workers and the various browser implementations. Most of the articles I’ve seen show an example where a single worker thread...
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...
In my previous article I showed how to use box2d-web and deviceorientation to rol around a set of circles using standard HTML5 APIs. My initial goal of that ...
When the first smartphones came out, they all had the traditional labyrinth applications. Application where you had to move a ball around a certain path by t...
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 ...
Most people have already heard about SPDY, the protocol, from google, proposed as a replacement for the aging HTTP protocol. Webservers are browsers are slow...
In a recent article I showed how you can use webrtc, canvas and websockets together to create a face detection application whose frontend runs completely in ...
Through HTML5 and the corresponding standards, modern browsers get more standarized features with every release. Most people have heard of websockets that al...
In this article we’ll look at how you can connect from Scala to RabbitMQ so you can support the AMQP protocol from your applications. In this example I’ll us...
This article shows how you can use knockout.js, Twitter’s Bootstrap and d3.js together to create a javascript application that creates visually pleasing grap...
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...
When you talk about security for REST based APIs, people often point to HTTPS. With HTTPS you can easily protect your services from prying eyes using methods...
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...
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...
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...
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...
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...
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, ...
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...
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 ...
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...
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...
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...
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...
In the previous article we looked at the basics of ZIO. In this part we’re going to extend on that example and add the following: ZStream integration: we...
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 ...
In this article in the mini series on Scalaz, we'll look at a couple of additional monads and patterns available in Scalaz. Once again, we'll look at stuff t...
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...
For the second article of the "Scalaz features for everyday usage" we'll look at the subject of Monad transformers and the Reader monad.Let's start with Mona...
Most of you have probably heard of the great Javascript book: Javascript the good parts. In the same light I'd like to show some stuff from Scalaz which are ...
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...
For a specific project we needed a quick way to get the content of a specific URL and check whether a word was present in the text there. If all we had to s...
In this article we’ll explore another of Akka-Typed patterns. This time we’ll show you how you can use the receptionist patterns. This is the third and last ...
At work we recently added the option to authenticate machine to machine communication using client certificates (two-way ssl). While this was relatively easy...
In the previous article we looked at some of the basic features provided by Akka Typed. In this article and the next one we’ll look a bit closer at some more...
With the release of Akka 2.4.0 a couple of weeks ago the experimental Akka Typed module was added. With Akka Typed it is possible to create and interact with...
In the past I’ve written a couple of articles (Building a REST service in Scala with Akka HTTP, Akka Streams and reactive mongo and ReactiveMongo with Akka, ...
In this short article I’d like to explain how you can use the typeclass pattern in Scala to implement adhoc polymorphism. We won’t go into too much theoretic...
I’m working on a new book for Packt which shows how you can use various Scala frameworks to create REST services. For this book I’m looking at the following...
So in the previous article I showed how you could create a websocket server using akka-streams. In this follow up article we’ll look a bit closer on how bac...
In the previous article we looked at how backpressure works when working with akka-streams. Akka also uses akka-streams as the base for akka-http, with which...
In my day job I work a lot with Angular.js. And while this is a great framework, sometimes I do miss the type-safety and advanced features of languages such ...
At the end of last year I wrote a couple of articles that showed how you can use Spray.io to create a Scala based REST service () and how to create a websock...
I wanted to write an article on the fun parts of scalaz, but thought it would be best to first look a bit closer at the type classes system provided by scala...
You can’t really talk about scala without going into the details of the Map, flatMap, zip and reduce functions. With these functions it is very easy to proce...
The following snippets are available: Scala snippets 1: Folding Scala snippets 2: List symbol magic Scala snippets 3: Lists together with Map, flatmap,...
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...
I was looking for a simple websocket server for one of my projects to test some stuff with reactive mongo. When looking around, though, I couldn’t really fin...
Just a quick article this time, since I’m still experimenting with this stuff. There is a lot of talk around reactive programming. In Java 8 we’ve got the St...
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...
Welcome to the last part of this series of tutorials on scala and scalatra. In this part we’ll look at how you can use Akka to handle your requests using an ...
This post is the third on a series of articles I’m writing on scalatra. In “part I” we created the initial environment, and in “part II” we created the first...
If you’ve read some other articles on this blog you might know that I like creating visualizations of various datasets. I’ve just started a small project whe...
In the previous part of the tutorial we created a simple application from scratch and setup Eclipse so we could edit the scala files for scalatra. In this se...
In this series of tutorials we’re going to look a bit closer at scalatra. Scalatra is a lightweight scala based micro-web framework, that can be used to crea...
In a recent article I showed how you can use webrtc, canvas and websockets together to create a face detection application whose frontend runs completely in ...
In this article we’ll look at how you can connect from Scala to RabbitMQ so you can support the AMQP protocol from your applications. In this example I’ll us...
When you talk about security for REST based APIs, people often point to HTTPS. With HTTPS you can easily protect your services from prying eyes using methods...
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...
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, ...
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...
I’m currently working on my next book for Three.js and one of the chapters deals with visualizing open data. When looking around for data that I could use, I...
I’ve been playing around with Vert.x for a couple of weeks and I’m really starting to like the simplicity of the framework. With very little configuration yo...
About a month ago I got the request to create a video from one of the WebGL demos on this site (the rotating earth cube, showing population density). So, of ...
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...
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...
I was playing around with Node.js and Express.js and happened to run across an article on server-sent events. Server-sent events is a W3C specification that ...
In the last month I’ve been experimenting with the Web Audio API. Currently I’m looking at how you can use this API to create robot sounds and was looking fo...
Just a quick article about the Clipboard API and how you can use this to quickly add copy and paste support for your applications. The clipboard API is a bi...
If you’ve read some of my other articles on this blog you probably know I’m a fan of HTML5. With HTML5 we get all this interesting functionality, directly in...
In this article we’ll look a bit closer at one of the new web APIs that recently has landed in Chrome: the pointer lock API (http://www.w3.org/TR/pointerlock...
In this article I’ll once again look at data / geo visualization with Three.js. This time I’ll show you how you can plot the urban population growth over the...
TL;DR: Play the game here (requires current Chrome, Opera of Firefox with webrtc enabled): Motion controlled space invaders A couple of days ago I ran acros...
n a couple of recent articles I’ve been using Three.js and d3.js to create 3D maps and visualize metrics. In the last week I combined a couple of these techn...
In this article we’ll show you how you can use the W3C geolocation API to measure the speed and the heading of your car while driving. This article further u...
If you’ve read any of my other articles you’re probably aware that I really like this whole “browser as the platform” concept. We can easily communicate with...
Update 19-01-2014: Well the adoption rate is very small. Firefox still supports this, but support has still not landed in Chrome (see here: https://code.goog...
In this tutorial we’ll look at how you can use three.js to render a 3D map of an image using webgl on a canvas element. In this example we’ll rasterize an im...
Most modern laptops automatically dim the screen when the light conditions in the room change. If there is a lot of light, the screen normally increases in b...
In my last couple of blog posts I showed you can use a couple of the new HTML5 related APIs (webrtc, web workers, device orientation) directly from your brow...
I’ve been experimenting with web workers and the various browser implementations. Most of the articles I’ve seen show an example where a single worker thread...
In my previous article I showed how to use box2d-web and deviceorientation to rol around a set of circles using standard HTML5 APIs. My initial goal of that ...
When the first smartphones came out, they all had the traditional labyrinth applications. Application where you had to move a ball around a certain path by t...
In a recent article I showed how you can use webrtc, canvas and websockets together to create a face detection application whose frontend runs completely in ...
Through HTML5 and the corresponding standards, modern browsers get more standarized features with every release. Most people have heard of websockets that al...
A couple of months ago my book on Three.js was published by packt (which you can buy from here: Learning Three.js: The JavaScript 3D Library for WebGL). All ...
Just a quick article about the Clipboard API and how you can use this to quickly add copy and paste support for your applications. The clipboard API is a bi...
In this article we’ll look a bit closer at one of the new web APIs that recently has landed in Chrome: the pointer lock API (http://www.w3.org/TR/pointerlock...
n a couple of recent articles I’ve been using Three.js and d3.js to create 3D maps and visualize metrics. In the last week I combined a couple of these techn...
Three.js is a great library for creating 3D objects and animations. In a couple of previous articles I explored this library a bit and in one of those exampl...
Update 19-01-2014: Well the adoption rate is very small. Firefox still supports this, but support has still not landed in Chrome (see here: https://code.goog...
In my last couple of blog posts I showed you can use a couple of the new HTML5 related APIs (webrtc, web workers, device orientation) directly from your brow...
I’ve been experimenting with web workers and the various browser implementations. Most of the articles I’ve seen show an example where a single worker thread...
In my previous article I showed how to use box2d-web and deviceorientation to rol around a set of circles using standard HTML5 APIs. My initial goal of that ...
When the first smartphones came out, they all had the traditional labyrinth applications. Application where you had to move a ball around a certain path by t...
Through HTML5 and the corresponding standards, modern browsers get more standarized features with every release. Most people have heard of websockets that al...
This article shows how you can use knockout.js, Twitter’s Bootstrap and d3.js together to create a javascript application that creates visually pleasing grap...
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...
A couple of months ago the third edtion of my book on learning three.js was released: View on Packt. Just as for the previous examples I’ve put all the examp...
Recently video copilot released a free set of high-definition professional grade 3D models (which you can download for yourself from here). This model pack, ...
About a month ago my third book on Three.js got released: Three.js Cookbook. This book has 80+ recipes on how to accomplish common tasks in Three.js. On this...
We are pleased to announce that we are organizing a giveaway especially for you. All you need to do is just comment below the post and win a free copy of Lea...
About a month ago I got the request to create a video from one of the WebGL demos on this site (the rotating earth cube, showing population density). So, of ...
A couple of months ago my book on Three.js was published by packt (which you can buy from here: Learning Three.js: The JavaScript 3D Library for WebGL). All ...
I’m currently working on a book for Three.js. This book contains lots and lots of examples that show off the various features of this great library. I want r...
In this article I’ll once again look at data / geo visualization with Three.js. This time I’ll show you how you can plot the urban population growth over the...
With Three.js it’s very easy to create 3D objects and render these using WebGL. In a couple of previous articles I already showed how you can create 3D maps ...
n a couple of recent articles I’ve been using Three.js and d3.js to create 3D maps and visualize metrics. In the last week I combined a couple of these techn...
Three.js is a great library for creating 3D objects and animations. In a couple of previous articles I explored this library a bit and in one of those exampl...
The last couple of days I’ve been playing around with three.js and geo information. I wanted to be able to render map/geo data (e.g. in geojson format) insid...
In this tutorial we’ll look at how you can use three.js to render a 3D map of an image using webgl on a canvas element. In this example we’ll rasterize an im...
I’ve been following go (go-lang) for a while now and finally had some time to experiment with it a bit more. In this post we’ll create a simple HTTP server ...
At the end of last year I wrote a couple of articles that showed how you can use Spray.io to create a Scala based REST service () and how to create a websock...
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...
A new article after an hiatus of almost half a year. In this article we’ll have quick look at how you can get started with vert.x and more interestingly how ...
A couple of months ago a wrote a series of tutorials on scalatra. In this article, and a couple of follow ups, I’ll do the same for Node.js together with Exp...
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...
This article shows how you can use knockout.js, Twitter’s Bootstrap and d3.js together to create a javascript application that creates visually pleasing grap...
When you talk about security for REST based APIs, people often point to HTTPS. With HTTPS you can easily protect your services from prying eyes using methods...
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...
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...
In this short article I’d like to explain the process I took to create some simple D3.js visualizations based on the number of swears per minute in movies. I...
So it’s been a while since I added something to this blog. I’ve been very busy with work and at the same time finishing up my second book on Three.js. For ou...
It’s been a while since I blogged, but it has been a rather busy time. Lots of big projects at work that need my complete attention, and lots of personal stu...
Long time since I posted anything. But it’s been a busy time with the holidays a new job and a week of snowboarding :) So after this short hiatus a quick art...
n a couple of recent articles I’ve been using Three.js and d3.js to create 3D maps and visualize metrics. In the last week I combined a couple of these techn...
The last couple of days I’ve been playing around with three.js and geo information. I wanted to be able to render map/geo data (e.g. in geojson format) insid...
In this article we’ll show you how you can use the W3C geolocation API to measure the speed and the heading of your car while driving. This article further u...
This article shows how you can use knockout.js, Twitter’s Bootstrap and d3.js together to create a javascript application that creates visually pleasing grap...
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...
Just a quick article this time, since I’m still experimenting with this stuff. There is a lot of talk around reactive programming. In Java 8 we’ve got the St...
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...
It’s been a while since I blogged, but it has been a rather busy time. Lots of big projects at work that need my complete attention, and lots of personal stu...
A couple of months ago I needed to create a dynamic Word document with a number of tables and paragraphs. In the past I’ve used POI for this, but I’ve found ...
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 ...
Most people have already heard about SPDY, the protocol, from google, proposed as a replacement for the aging HTTP protocol. Webservers are browsers are slow...
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...
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...
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...
In this article we’ll explore another of Akka-Typed patterns. This time we’ll show you how you can use the receptionist patterns. This is the third and last ...
In the previous article we looked at some of the basic features provided by Akka Typed. In this article and the next one we’ll look a bit closer at some more...
With the release of Akka 2.4.0 a couple of weeks ago the experimental Akka Typed module was added. With Akka Typed it is possible to create and interact with...
In the past I’ve written a couple of articles (Building a REST service in Scala with Akka HTTP, Akka Streams and reactive mongo and ReactiveMongo with Akka, ...
So in the previous article I showed how you could create a websocket server using akka-streams. In this follow up article we’ll look a bit closer on how bac...
In the previous article we looked at how backpressure works when working with akka-streams. Akka also uses akka-streams as the base for akka-http, with which...
Currently reactive programming is getting more and more attentions. With reactive programming it is possible to easily create resilient, scalable and fault t...
At the end of last year I wrote a couple of articles that showed how you can use Spray.io to create a Scala based REST service () and how to create a websock...
I was looking for a simple websocket server for one of my projects to test some stuff with reactive mongo. When looking around, though, I couldn’t really fin...
In this short article we’ll have a quick look at how to set up a Kafka cluster locally, which can be easily accessed from outside of the docker container. ...
A couple of years ago I wrote a number of articles on how to work with docker. Since that time a lot has changed in the docker and container world. Docker ha...
So, welcome to the second part of the series on using Consul for service discovey together with docker. In this second article we'll look at how you can use ...
During the last year I've become a big fan of using Consul for all things related to service discovery. If you're doing microservices you've probably ran int...
For a specific project we needed a quick way to get the content of a specific URL and check whether a word was present in the text there. If all we had to s...
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...
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...
I’ve had the opportunity to setup a complete new docker based microservice architecture at my current job, so since everyone is sharing their docker tips and...
For a specific project we needed a quick way to get the content of a specific URL and check whether a word was present in the text there. If all we had to s...
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...
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...
There are many different web api standards that are turning the web browser into a complete application platform. With websockets we get nice asynchronous co...
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...
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...
If you’ve read any of my other articles you’re probably aware that I really like this whole “browser as the platform” concept. We can easily communicate with...
Recently video copilot released a free set of high-definition professional grade 3D models (which you can download for yourself from here). This model pack, ...
We are pleased to announce that we are organizing a giveaway especially for you. All you need to do is just comment below the post and win a free copy of Lea...
About a month ago I got the request to create a video from one of the WebGL demos on this site (the rotating earth cube, showing population density). So, of ...
A couple of months ago my book on Three.js was published by packt (which you can buy from here: Learning Three.js: The JavaScript 3D Library for WebGL). All ...
n a couple of recent articles I’ve been using Three.js and d3.js to create 3D maps and visualize metrics. In the last week I combined a couple of these techn...
Three.js is a great library for creating 3D objects and animations. In a couple of previous articles I explored this library a bit and in one of those exampl...
In the previous article we looked at how backpressure works when working with akka-streams. Akka also uses akka-streams as the base for akka-http, with which...
I’ve been playing around with Vert.x for a couple of weeks and I’m really starting to like the simplicity of the framework. With very little configuration yo...
About a month ago I got the request to create a video from one of the WebGL demos on this site (the rotating earth cube, showing population density). So, of ...
There are many different web api standards that are turning the web browser into a complete application platform. With websockets we get nice asynchronous co...
In my last couple of blog posts I showed you can use a couple of the new HTML5 related APIs (webrtc, web workers, device orientation) directly from your brow...
So in the previous article I showed how you could create a websocket server using akka-streams. In this follow up article we’ll look a bit closer on how bac...
Currently reactive programming is getting more and more attentions. With reactive programming it is possible to easily create resilient, scalable and fault t...
At the end of last year I wrote a couple of articles that showed how you can use Spray.io to create a Scala based REST service () and how to create a websock...
I was looking for a simple websocket server for one of my projects to test some stuff with reactive mongo. When looking around, though, I couldn’t really fin...
Just a quick article this time, since I’m still experimenting with this stuff. There is a lot of talk around reactive programming. In Java 8 we’ve got the St...
At work we recently added the option to authenticate machine to machine communication using client certificates (two-way ssl). While this was relatively easy...
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...
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...
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...
Most people have already heard about SPDY, the protocol, from google, proposed as a replacement for the aging HTTP protocol. Webservers are browsers are slow...
Through HTML5 and the corresponding standards, modern browsers get more standarized features with every release. Most people have heard of websockets that al...
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...
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...
In a recent article I showed how you can use webrtc, canvas and websockets together to create a face detection application whose frontend runs completely in ...
In this article we’ll look at how you can connect from Scala to RabbitMQ so you can support the AMQP protocol from your applications. In this example I’ll us...
When you talk about security for REST based APIs, people often point to HTTPS. With HTTPS you can easily protect your services from prying eyes using methods...
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...
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...
There are many different web api standards that are turning the web browser into a complete application platform. With websockets we get nice asynchronous co...
TL;DR: Play the game here (requires current Chrome, Opera of Firefox with webrtc enabled): Motion controlled space invaders A couple of days ago I ran acros...
Most modern laptops automatically dim the screen when the light conditions in the room change. If there is a lot of light, the screen normally increases in b...
Welcome to the last part of this series of tutorials on scala and scalatra. In this part we’ll look at how you can use Akka to handle your requests using an ...
This post is the third on a series of articles I’m writing on scalatra. In “part I” we created the initial environment, and in “part II” we created the first...
In the previous part of the tutorial we created a simple application from scratch and setup Eclipse so we could edit the scala files for scalatra. In this se...
In this series of tutorials we’re going to look a bit closer at scalatra. Scalatra is a lightweight scala based micro-web framework, that can be used to crea...
I’ve recently made the effort to try and pick up Kotlin (again). The last couple of years I’ve been doing mostly scala work (with some other languages in b...
In this short article I’d like to explain the process I took to create some simple D3.js visualizations based on the number of swears per minute in movies. I...
It’s been a while since I blogged, but it has been a rather busy time. Lots of big projects at work that need my complete attention, and lots of personal stu...
If you’ve read some of my other articles on this blog you probably know I’m a fan of HTML5. With HTML5 we get all this interesting functionality, directly in...
I wanted to write an article on the fun parts of scalaz, but thought it would be best to first look a bit closer at the type classes system provided by scala...
You can’t really talk about scala without going into the details of the Map, flatMap, zip and reduce functions. With these functions it is very easy to proce...
The following snippets are available: Scala snippets 1: Folding Scala snippets 2: List symbol magic Scala snippets 3: Lists together with Map, flatmap,...
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...
In this article in the mini series on Scalaz, we'll look at a couple of additional monads and patterns available in Scalaz. Once again, we'll look at stuff t...
For the second article of the "Scalaz features for everyday usage" we'll look at the subject of Monad transformers and the Reader monad.Let's start with Mona...
Most of you have probably heard of the great Javascript book: Javascript the good parts. In the same light I'd like to show some stuff from Scalaz which are ...
I’m working on a new book for Packt which shows how you can use various Scala frameworks to create REST services. For this book I’m looking at the following...
This is just a quick article on how to create a simple standalone Apollo client to test Graphql subscriptions. I needed something like this when we ran into...
Puppeteer (https://github.com/puppeteer/puppeteer) is a great way to write scrapers, integration tests, or automate boring tasks and web forms. For a lot of ...
Note that this has become outdated… again. But it has become part of the standard Angular distribution. Please look at the latest angular documentation here:...
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...
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 last couple of days I’ve been playing around with three.js and geo information. I wanted to be able to render map/geo data (e.g. in geojson format) insid...
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...
I’m currently working on my next book for Three.js and one of the chapters deals with visualizing open data. When looking around for data that I could use, I...
In the last month I’ve been experimenting with the Web Audio API. Currently I’m looking at how you can use this API to create robot sounds and was looking fo...
TL;DR: Play the game here (requires current Chrome, Opera of Firefox with webrtc enabled): Motion controlled space invaders A couple of days ago I ran acros...
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...
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...
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...
So it’s been a while since I added something to this blog. I’ve been very busy with work and at the same time finishing up my second book on Three.js. For ou...
I was playing around with Node.js and Express.js and happened to run across an article on server-sent events. Server-sent events is a W3C specification that ...
A couple of months ago a wrote a series of tutorials on scalatra. In this article, and a couple of follow ups, I’ll do the same for Node.js together with Exp...
In my day job I work a lot with Angular.js. And while this is a great framework, sometimes I do miss the type-safety and advanced features of languages such ...
I was playing around with Node.js and Express.js and happened to run across an article on server-sent events. Server-sent events is a W3C specification that ...
In the last couple of weeks I’ve started working with AngularJS. AngularJS is a great simple framework that allows you to create complete web-apps in javascr...
I’ve been following go (go-lang) for a while now and finally had some time to experiment with it a bit more. In this post we’ll create a simple HTTP server ...
I was looking for a simple websocket server for one of my projects to test some stuff with reactive mongo. When looking around, though, I couldn’t really fin...
A new article after an hiatus of almost half a year. In this article we’ll have quick look at how you can get started with vert.x and more interestingly how ...
I’ve been playing around with Vert.x for a couple of weeks and I’m really starting to like the simplicity of the framework. With very little configuration yo...
About a month ago I got the request to create a video from one of the WebGL demos on this site (the rotating earth cube, showing population density). So, of ...
A new article after an hiatus of almost half a year. In this article we’ll have quick look at how you can get started with vert.x and more interestingly how ...
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...
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...
I’ve been following go (go-lang) for a while now and finally had some time to experiment with it a bit more. In this post we’ll create a simple HTTP server ...
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...
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...
I’ve been following go (go-lang) for a while now and finally had some time to experiment with it a bit more. In this post we’ll create a simple HTTP server ...
So in the previous article I showed how you could create a websocket server using akka-streams. In this follow up article we’ll look a bit closer on how bac...
In the previous article we looked at how backpressure works when working with akka-streams. Akka also uses akka-streams as the base for akka-http, with which...
Currently reactive programming is getting more and more attentions. With reactive programming it is possible to easily create resilient, scalable and fault t...
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...
A couple of years ago I wrote a number of articles on how to work with docker. Since that time a lot has changed in the docker and container world. Docker ha...
I’ve had the opportunity to setup a complete new docker based microservice architecture at my current job, so since everyone is sharing their docker tips and...
So, welcome to the second part of the series on using Consul for service discovey together with docker. In this second article we'll look at how you can use ...
During the last year I've become a big fan of using Consul for all things related to service discovery. If you're doing microservices you've probably ran int...
I recently gave a presentation on how you can use Consul (http://consul.io) for all your service discovery needs in a microservice architecture. The present...
A couple of months ago the third edtion of my book on learning three.js was released: View on Packt. Just as for the previous examples I’ve put all the examp...
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...
Hi everyone,
In the previous article we looked at the basics of ZIO. In this part we’re going to extend on that example and add the following: ZStream integration: we...
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 ...
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...
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...
In the previous article we looked at the basics of ZIO. In this part we’re going to extend on that example and add the following: ZStream integration: we...
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 ...
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 ...
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...
In the past I’ve written a couple of articles (Building a REST service in Scala with Akka HTTP, Akka Streams and reactive mongo and ReactiveMongo with Akka, ...
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, ...
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 ...
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...
When you talk about security for REST based APIs, people often point to HTTPS. With HTTPS you can easily protect your services from prying eyes using methods...
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...
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...
When you talk about security for REST based APIs, people often point to HTTPS. With HTTPS you can easily protect your services from prying eyes using methods...
Most people have already heard about SPDY, the protocol, from google, proposed as a replacement for the aging HTTP protocol. Webservers are browsers are slow...
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...
Long time since I posted anything. But it’s been a busy time with the holidays a new job and a week of snowboarding :) So after this short hiatus a quick art...
This article shows how you can use knockout.js, Twitter’s Bootstrap and d3.js together to create a javascript application that creates visually pleasing grap...
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...
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...
In this tutorial we’ll look at how you can use three.js to render a 3D map of an image using webgl on a canvas element. In this example we’ll rasterize an im...
I’ve been experimenting with web workers and the various browser implementations. Most of the articles I’ve seen show an example where a single worker thread...
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...
If you’ve read any of my other articles you’re probably aware that I really like this whole “browser as the platform” concept. We can easily communicate with...
With Three.js it’s very easy to create 3D objects and render these using WebGL. In a couple of previous articles I already showed how you can create 3D maps ...
The last couple of days I’ve been playing around with three.js and geo information. I wanted to be able to render map/geo data (e.g. in geojson format) insid...
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...
If you’ve read some of my other articles on this blog you probably know I’m a fan of HTML5. With HTML5 we get all this interesting functionality, directly in...
I was playing around with Node.js and Express.js and happened to run across an article on server-sent events. Server-sent events is a W3C specification that ...
A couple of months ago a wrote a series of tutorials on scalatra. In this article, and a couple of follow ups, I’ll do the same for Node.js together with Exp...
In my day job I work a lot with Angular.js. And while this is a great framework, sometimes I do miss the type-safety and advanced features of languages such ...
Long time since I posted anything. But it’s been a busy time with the holidays a new job and a week of snowboarding :) So after this short hiatus a quick art...
Just a quick article this time, since I’m still experimenting with this stuff. There is a lot of talk around reactive programming. In Java 8 we’ve got the St...
A new article after an hiatus of almost half a year. In this article we’ll have quick look at how you can get started with vert.x and more interestingly how ...
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...
I’m currently working on my next book for Three.js and one of the chapters deals with visualizing open data. When looking around for data that I could use, I...
For the second article of the "Scalaz features for everyday usage" we'll look at the subject of Monad transformers and the Reader monad.Let's start with Mona...
I’m working on a new book for Packt which shows how you can use various Scala frameworks to create REST services. For this book I’m looking at the following...
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...
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...
During the last year I've become a big fan of using Consul for all things related to service discovery. If you're doing microservices you've probably ran int...
I recently gave a presentation on how you can use Consul (http://consul.io) for all your service discovery needs in a microservice architecture. The present...
Note that this has become outdated… again. But it has become part of the standard Angular distribution. Please look at the latest angular documentation here:...
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...
Note that this has become outdated… again. But it has become part of the standard Angular distribution. Please look at the latest angular documentation here:...
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...
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...
A couple of years ago I wrote a number of articles on how to work with docker. Since that time a lot has changed in the docker and container world. Docker ha...
I’ve recently made the effort to try and pick up Kotlin (again). The last couple of years I’ve been doing mostly scala work (with some other languages in b...
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...
In the previous article learning haskell part 1 I walked through the steps I took to get a very simple and basic REST endpoint up and running. All that wen...
I’ve been doing scala and FP for a while now, and during that time I’ve tried a couple of times to pickup haskell as well. What I noticed was that I knew to...
In the previous article learning haskell part 1 I walked through the steps I took to get a very simple and basic REST endpoint up and running. All that wen...
I’ve been doing scala and FP for a while now, and during that time I’ve tried a couple of times to pickup haskell as well. What I noticed was that I knew to...
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...
In this short article we’ll have a quick look at how to set up a Kafka cluster locally, which can be easily accessed from outside of the docker container. ...
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...
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...
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...
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...
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...
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...
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...
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, ...
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...
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...
When you talk about security for REST based APIs, people often point to HTTPS. With HTTPS you can easily protect your services from prying eyes using methods...
This article shows how you can use knockout.js, Twitter’s Bootstrap and d3.js together to create a javascript application that creates visually pleasing grap...
In this article we’ll look at how you can connect from Scala to RabbitMQ so you can support the AMQP protocol from your applications. In this example I’ll us...
In this article we’ll look at how you can connect from Scala to RabbitMQ so you can support the AMQP protocol from your applications. In this example I’ll us...
When the first smartphones came out, they all had the traditional labyrinth applications. Application where you had to move a ball around a certain path by t...
I recently ran across an article that was talking (again) about the Object-Relational mismatch. And just like in many articles this mismatch is called the O...
Compressing a PDF in Mac is very easy and doesn’t require any of the commercial tools out there. This isn’t an area I normally blog about, but when I needed ...
Compressing a PDF in Mac is very easy and doesn’t require any of the commercial tools out there. This isn’t an area I normally blog about, but when I needed ...
In this article we’ll show you how you can use the W3C geolocation API to measure the speed and the heading of your car while driving. This article further u...
In this article we’ll show you how you can use the W3C geolocation API to measure the speed and the heading of your car while driving. This article further u...
A couple of months ago I needed to create a dynamic Word document with a number of tables and paragraphs. In the past I’ve used POI for this, but I’ve found ...
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...
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...
If you’ve read some other articles on this blog you might know that I like creating visualizations of various datasets. I’ve just started a small project whe...
Welcome to the last part of this series of tutorials on scala and scalatra. In this part we’ll look at how you can use Akka to handle your requests using an ...
In this article we’ll look a bit closer at one of the new web APIs that recently has landed in Chrome: the pointer lock API (http://www.w3.org/TR/pointerlock...
Just a quick article about the Clipboard API and how you can use this to quickly add copy and paste support for your applications. The clipboard API is a bi...
A couple of days ago I stumbled on the COLOURlovers site from the Android Play Store. This site provides a whole lot of beautiful patterns, colors and palett...
A couple of days ago I stumbled on the COLOURlovers site from the Android Play Store. This site provides a whole lot of beautiful patterns, colors and palett...
In the last month I’ve been experimenting with the Web Audio API. Currently I’m looking at how you can use this API to create robot sounds and was looking fo...
A couple of months ago a wrote a series of tutorials on scalatra. In this article, and a couple of follow ups, I’ll do the same for Node.js together with Exp...
In the last couple of weeks I’ve started working with AngularJS. AngularJS is a great simple framework that allows you to create complete web-apps in javascr...
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...
I’m currently working on a book for Three.js. This book contains lots and lots of examples that show off the various features of this great library. I want r...
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...
A couple of months ago my book on Three.js was published by packt (which you can buy from here: Learning Three.js: The JavaScript 3D Library for WebGL). All ...
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...
At the end of last year I wrote a couple of articles that showed how you can use Spray.io to create a Scala based REST service () and how to create a websock...
About a month ago my third book on Three.js got released: Three.js Cookbook. This book has 80+ recipes on how to accomplish common tasks in Three.js. On this...
About a month ago my third book on Three.js got released: Three.js Cookbook. This book has 80+ recipes on how to accomplish common tasks in Three.js. On this...
In my day job I work a lot with Angular.js. And while this is a great framework, sometimes I do miss the type-safety and advanced features of languages such ...
At my current project we were setting up a new buildserver. One of the things we had to do was move an old sonar implementation running on top of H2 to a new...
At my current project we were setting up a new buildserver. One of the things we had to do was move an old sonar implementation running on top of H2 to a new...
Currently reactive programming is getting more and more attentions. With reactive programming it is possible to easily create resilient, scalable and fault t...
Currently reactive programming is getting more and more attentions. With reactive programming it is possible to easily create resilient, scalable and fault t...
Currently reactive programming is getting more and more attentions. With reactive programming it is possible to easily create resilient, scalable and fault t...
In this short article I’d like to explain how you can use the typeclass pattern in Scala to implement adhoc polymorphism. We won’t go into too much theoretic...
In this short article I’d like to explain how you can use the typeclass pattern in Scala to implement adhoc polymorphism. We won’t go into too much theoretic...
In this short article I’d like to explain how you can use the typeclass pattern in Scala to implement adhoc polymorphism. We won’t go into too much theoretic...
In the previous article we looked at some of the basic features provided by Akka Typed. In this article and the next one we’ll look a bit closer at some more...
At work we recently added the option to authenticate machine to machine communication using client certificates (two-way ssl). While this was relatively easy...
For a specific project we needed a quick way to get the content of a specific URL and check whether a word was present in the text there. If all we had to s...
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...
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...
Recently video copilot released a free set of high-definition professional grade 3D models (which you can download for yourself from here). This model pack, ...
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...
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...
Hi everyone,
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...
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...
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...
Puppeteer (https://github.com/puppeteer/puppeteer) is a great way to write scrapers, integration tests, or automate boring tasks and web forms. For a lot of ...
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...
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...
This is just a quick article on how to create a simple standalone Apollo client to test Graphql subscriptions. I needed something like this when we ran into...
This is just a quick article on how to create a simple standalone Apollo client to test Graphql subscriptions. I needed something like this when we ran into...
This is just a quick article on how to create a simple standalone Apollo client to test Graphql subscriptions. I needed something like this when we ran into...
This is just a quick article on how to create a simple standalone Apollo client to test Graphql subscriptions. I needed something like this when we ran into...
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...
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...
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...
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...
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 ...
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 ...
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 ...