GS1 DataMatrix codes in Java
TLDR; GS1 Datamatrix codes can be tricky. Use OkapiBarcode for easy handling. Anyone who has had to deal with GS1 barcodes has most likely made an acquaintance with this document, or perhaps…
TLDR; GS1 Datamatrix codes can be tricky. Use OkapiBarcode for easy handling. Anyone who has had to deal with GS1 barcodes has most likely made an acquaintance with this document, or perhaps…
If you, like me, prefer to use Ubuntu on any hardware you use, and want it completely encrypted, this is for you. These are instructions on how to install Ubuntu…
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…
Berlin Buzzwords feels more like a festival than a normal conference. You get these wristbands that you should wear for a few days and being held at a brewery there…
Component.js has emerged as a very sensible way to package and share web components. It knows about scripts, css, images and html. That makes it a good fit for AngularJS modules. But there's more! :)
This is how you can detect existing Node.js and npm, or automatically install a temporary Node.js if none is already installed. About the only things needed are make, bash, curl…
Robotium is a UI test framework for Android applications. With Robotium, test case developers can in easy fashion write function and system tests for Android applications. Robotium has until now only…
This post is part of a series about the framework Deja vu. As previously argued bug fixing can be hard when left only with a stack trace. If you feel…
This is a quick write-up on how to get started with graphite as a .Net developer. We're going to start using graphite with a virtual machine in VirtualBox, although you…
The Facebook Test Java API framework has been updated. There are two additions to the API and one bugfix: Bugfix for NPE when calling facebookStore.createTestUser(false,"..."). Added possibility of using a…
I previously wrote a blog post titled Performing any Selector on the Main Thread detailing a convenience category on NSInvoication for easily creating invocation objects that could be invoked on…
There is a vibrant community of open source projects for iOS. You need a calendar UI components or a JSON parser? No problem, the projects are out there. Most code…
Since november 2010 you may create test user accounts on Facebook for your application, so that you may test your application without creating dummy accounts and possibly break the Facebook…
Introduction Testing asynchronous systems is hard. Not only does it require handling threads, timeouts and concurrency issues, but the intent of the test code can be obscured by all these…
Many UI frameworks, including AppKit for Mac OS X and UIKit for iPhone OS, require that all methods to UI components are sent on the main UI thread. Cocoa and…