Profile picture
Written by Angus Morton.
I builds things.
  1. September 15, 2016

    Dagger is a JSR-330 dependency injection library that allows you to split up the behaviour of your app from the creation of your…

  2. January 15, 2016

    AutoValue is a tool that lets you remove a lot of the boilerplate associated with writing value types in Java. It does this by using an…

  3. September 25, 2015

    I’ve been burned by the operator. I was implementing a login form validation using RxJava and I had to share an Observable to multiple…

  4. September 25, 2015

    I’ve been playing around with Facebook’s Flux architecture and RxJava lately and I wanted an event bus to use as the Dispatcher. Here is…

  5. September 18, 2015

    You can use to catch mistakes earlier on in the development cycle. It’s especially useful for catching accidental disk or network I/O on…

  6. September 16, 2015

    Android has a relatively unpredictable habit of killing any that is not immediately visible to the user to reclaim memory. Because of this…

  7. September 16, 2015

    is a beta feature in RxJava that represents a single value, rather than a stream of values that an represents. This is useful in…