- How to upgrade your app’s design from Holo to Material Design — A case study #android – I basically wanted to keep the main aesthetics of my Holo app, but upgrade it to Material Design in a meaningful way. This is a short documentation of how I managed to do this.
- Functor and Monad in Swift #functional #swiftlang – I have been trying to teach myself Functional Programming since late 2013. Many of the concepts are very daunting because of their somewhat academic nature. It wasn’t until recently that I finally could say that I got what Monad means. Let’s explore why this concept even exists, and how it can help you when writing Swift c
- Mockito – @Mock, @Spy, @Captor and @InjectMocks – In this tutorial, we’ll cover all the annotations in the Mockito library – @Mock, @Spy, @Captor and @InjectMocks
- Learn JavaScript Essentials (for all skill levels) – There are many possible paths, several good paths, but few great paths.
Here is one clear path to JavaScript mastery:
- The Blockchain Application Stack #architecture #bitcoin #blockchain – This is what I think the architecture of internet applications is going to look like in 10 years.
- Swift Standard Library: Generators, Sequences and Collections – In this post I have examined the three main protocols that Swift uses to underpin many of its functions that operate on sequences and collections and presented example code for each one.
- A simple use-case comparison of JVM libraries for MongoDB – MongoDB is one of my favorite data stores when it comes to storing document-based JSON data. Communicating with MongoDB with JVM languages can be done in a lot of ways. I thought it would be a nice exercise to take 4 of the most popular solutions and implement a simple use case in each of those solutions. The use case: create a REST service that can get a list of cities and get the nearest city for a given city with the distance to that city.
- Nomad – World-Class Command Line Utilities For iOS Development – World-Class Command Line Utilities For iOS Development
- Marco Behler’s 2014 Ultimate Java Developer Library, Tool & People List – Java developers are flooded with a plethora of libraries and tools for their day-to-day work. We compiled a little list of stuff that we use everyday in primarily business line development (CRM, banking, web dev etc.) and that we can wholeheartedly recomme
- Easy Storyboard segues in Swift #swiftlang – When working with a storyboard and segues, the usual method of performing a segue can be a bit cumbersome. To deal with this, we’ve created a tiny helper called SegueManager that allows you to pass a closure to a performSegue call.