Navigation
Tag Cloud
ajax Android backup chrome chromium cloud Code css3 Database Design dev Directory Iterator dns dropbox Essential Tools Facebook Time google google-chrome google-gears Image Rollover Java javascript jquery linux memcached MVC mysql new website OS Photoshop Brushes PHP Preloader Recursion Relative Time teamspeak Templating TinyMVC tutorial Twitter Twitter Time Validation Wordpress Wordpress 2011 Wordpress Plugins xhtmlRecent Posts
Developer Links
Search
Author Archives: Steve
PHP – Useful TinyMVC View Helpers
Back again with more TinyMVC code. As I get more into this framework the more code I’ll be posting up, the functions in the code below are to be used directly from TinyMVC views and not controllers or models. One … Continue reading
PHP – TinyMVC Template Wrapper Plugin
TinyMVC provides a great structure for developing new projects, it’s small base allows the developer to write new plug-ins and extend on the existing framework. Below you’ll find a template wrapper I have made to manage the views and assigning … Continue reading
Java – Creating and Switching to a new Activity in Android
Below is a small tutorial showing you how to create a new Android Activity and Switch to it whenever needed as well as passing information between them, basically, this will allow you to switch to a new interface such as … Continue reading
Java – SQLite Database Helper Class for Android
One of the most used features on the Android platform is being able to save and fetch your data from some sort of database, Android comes packaged with libraries to manage SQLite Databases. I have written a helper class to … Continue reading
Java – Using Android’s System Notifications
After playing around with Android (and I’ve spent only around 2 hours so far) I found out that it’s quite easy to access the System Notifications and send messages from your own Activity along with the custom titles, content and … Continue reading
PHP Page basic page caching
One of the most useful things you can do in terms of performance is to cache the page you’re currently serving so that no code gets executed again and again when it isn’t needed. I’ve provided a sample below of … Continue reading
PHP Object to Multidimensional Array
Below is a piece of code showing how to transform an Object into a Multidimensional Array, there are quite a few functions in PHP that return stdClass objects such as some MySQL, JSON or XML functions. If it is a … Continue reading
