Everyone Should Code

In the world we live in today, basic computer understanding is a must have. The folks at code.org have made this excellent video which really shows why everyone should learn to code and how easy it really can be. {% youtube dU1xS07N-FA %} The biggest question that I hear is “Where do I start?” and my answer is always the same, just start. You can spend years worrying about which language is best and what your first app is going to be, but none of that is really important in the long run.
Read More →

The case for Fragment Callbacks

Fragment are a great addition to Android. They allow reusability of sections of your views at the controller layer, and they also provide better encapsulation of your app’s logic. This can really help developers speed up code development and also keep their code clean, which makes it easier to maintain. All of these benefits are available if you follow a few guidelines when developing your code. One of the biggest mistakes that I see developers make, particularly those coming from other platforms, is casting the parent activity.
Read More →