A picture on the wall
When I decided to leave jayway I wanted to leave something behind, I opted for a picture on the wall of some of my colleagues. Unfortunately I didn't manage to…
When I decided to leave jayway I wanted to leave something behind, I opted for a picture on the wall of some of my colleagues. Unfortunately I didn't manage to…
A primitive data type can be defined as the most basic building block of a programming language. Typical primitive data types are integers, floats and booleans. Whether you differentiate between…
I've always wanted to have a tool to easily setup my own distributed application without caring too much about what infrastructure to use and how to configure it. With the…
tl;dr; Gather all your signing entities in one Keychain if possible, it might resolve some weird signing issues you're having. Problem When you have multiple signing entities in your Keychain,…
This is a post for those that attended my seminar in November and now in April. It's more as mental notes for you to refresh your memory but at the end…
I have written a couple of posts on my experiences building applications with API Gateway and AWS Lambda. I have also complained a bit about the lack of support for automation of…
The dream of a server-less deploy where everything scales dynamically is becoming true. No more servers, no more configuration, no more updates. Just deploy your application and watch it grow…
While attending Build I got the opportunity to try out developing a few simple things for the HoloLens. In this post I will let you know my takeaways from the…
The .NET Compiler Platform (a.k.a. Roslyn) version 1.0-rc2 was recently released and got go-live license which means the API's are to be considered fairly stable. In this post I'll demonstrate how…
A little tip if you, like me, are experience the chrome browser as sluggish and close to non working. I first started to notice that when you type in text…
Now when 2014 is closing we took the time and gather a few Jaywayers to look at UX trends found in ongoing projects. This is our very personal thoughts and…
A couple of times in the recent past I've been exposed to the "Could not determine Java version" error message when opening a new Gradle project from IntelliJ. This happens…
Neo4j.rb is a Ruby driver for the Neo4j graph database which I together with many contributors have been developing since 2008. It now consists of two Ruby gems, neo4j-core and…
Suppose we have two extremes when it comes to code editors. In one corner are the old school trusted veterans like Emacs and Vim, and in one corner are the…
Launching a Java Virtual Machine can be as easy as running java -classpath myapp.jar Main or even shorter java -jar myapp.jar if your using the Main-Class attribute in META-INF/MANIFEST.MF. This…