author profile image

Matt Reid

Solo Entrepreneur | Lead Software Architect

I couldn’t find a simple, complete example of a spring social application online so I decided to post my own. The resulting app is available on google code and is an example of authenticating a user with Facebook, although a similar approach is applied to Twitter/Linkedin etc. Configuration The app is...

Amazon’s cloud drive and cloud player is an easy front end to their S3 storage solution that allows the storage and playback of music. Combined with the android app this makes a neat solution to the problem of playing your music on multiple devices. It is also cheaper than other alternatives...

So an ad network has come up with a novel idea to help android developers make money from their apps by forcing the user to upgrade to their paid version. I became aware of this when I was reading the update notes for the app APNdroid and noticed that the app...

I have been searching for a while for the best customised HorizontalScrollView  that has a snapping effect (as seen in Pulsefor example). I have finall come across one that I am happy with by  Yoni Samlan.  horizontalpager (hosted on github) is an extended ViewGroup which makes each View inside it, fill the...

Just a quick post today. I was having problems refreshing a JTree and keeping the expanded paths in-tact. Instead of calling reload() on themodel i needed to be calling nodeChanged even if a node is being removed. Here is the snippet: ((DefaultTreeModel)tree.getModel()).nodeChanged(actualNode);//notify the model that the node has changed Matt