<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Steve&#039;s Ramblings</title>
	<atom:link href="http://www.stevenmcmillan.co.uk/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stevenmcmillan.co.uk/blog</link>
	<description>Web Developer &#38; Designer</description>
	<lastBuildDate>Tue, 24 Apr 2012 12:26:47 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>PHP &#8211; Custom MVC Framework with Smarty3 and ActiveRecords</title>
		<link>http://www.stevenmcmillan.co.uk/blog/2012/php-custom-mvc-framework-with-smarty3-and-activerecords/</link>
		<comments>http://www.stevenmcmillan.co.uk/blog/2012/php-custom-mvc-framework-with-smarty3-and-activerecords/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 12:26:47 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP frameworks]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[MVC]]></category>

		<guid isPermaLink="false">http://www.stevenmcmillan.co.uk/blog/?p=818</guid>
		<description><![CDATA[After using a few different PHP MVC&#8217;s I decided to work on my own framework when I had some spare time. Over the past few days I&#8217;ve put together a lightweight and feature rich small PHP MVC Framework. Note that &#8230; <a href="http://www.stevenmcmillan.co.uk/blog/2012/php-custom-mvc-framework-with-smarty3-and-activerecords/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.stevenmcmillan.co.uk/blog/2012/php-custom-mvc-framework-with-smarty3-and-activerecords/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; Using the Steam XML API</title>
		<link>http://www.stevenmcmillan.co.uk/blog/2012/php-using-the-steam-xml-api/</link>
		<comments>http://www.stevenmcmillan.co.uk/blog/2012/php-using-the-steam-xml-api/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 11:42:31 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Steam]]></category>
		<category><![CDATA[Steam XML]]></category>

		<guid isPermaLink="false">http://www.stevenmcmillan.co.uk/blog/?p=812</guid>
		<description><![CDATA[Steam has had XML output on profiles, games and groups for a while so I thought I would post up one of my old classes for retrieving Steam user data. The class below will download the XML for games and &#8230; <a href="http://www.stevenmcmillan.co.uk/blog/2012/php-using-the-steam-xml-api/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.stevenmcmillan.co.uk/blog/2012/php-using-the-steam-xml-api/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; Easy AES Encryption Class</title>
		<link>http://www.stevenmcmillan.co.uk/blog/2012/php-easy-aes-encryption-class/</link>
		<comments>http://www.stevenmcmillan.co.uk/blog/2012/php-easy-aes-encryption-class/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 11:28:27 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[AES]]></category>
		<category><![CDATA[Encryption]]></category>
		<category><![CDATA[MCrypt]]></category>

		<guid isPermaLink="false">http://www.stevenmcmillan.co.uk/blog/?p=807</guid>
		<description><![CDATA[AES Encryption is now an easy way of securing your data with a secret key thanks to the MCrypt PHP extension. You can read documentation and basic examples on using MCrypt on the PHP.net page. Below is a small class &#8230; <a href="http://www.stevenmcmillan.co.uk/blog/2012/php-easy-aes-encryption-class/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.stevenmcmillan.co.uk/blog/2012/php-easy-aes-encryption-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; TinyMVC Session Plugin</title>
		<link>http://www.stevenmcmillan.co.uk/blog/2012/php-tinymvc-session-plugin/</link>
		<comments>http://www.stevenmcmillan.co.uk/blog/2012/php-tinymvc-session-plugin/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 14:14:56 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP frameworks]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[TinyMVC]]></category>

		<guid isPermaLink="false">http://www.stevenmcmillan.co.uk/blog/?p=802</guid>
		<description><![CDATA[Another TinyMVC plugin; this time to get and set session variables from within your controllers. Utilising PHP5&#8242;s magic functions to add and remove entries from the $_SESSION global, quickly and easily. Drop the following code into your plug-ins directory and &#8230; <a href="http://www.stevenmcmillan.co.uk/blog/2012/php-tinymvc-session-plugin/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.stevenmcmillan.co.uk/blog/2012/php-tinymvc-session-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; Useful TinyMVC View Helpers</title>
		<link>http://www.stevenmcmillan.co.uk/blog/2012/php-useful-tinymvc-view-helpers/</link>
		<comments>http://www.stevenmcmillan.co.uk/blog/2012/php-useful-tinymvc-view-helpers/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 12:17:35 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP frameworks]]></category>
		<category><![CDATA[Helpers]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[TinyMVC]]></category>

		<guid isPermaLink="false">http://www.stevenmcmillan.co.uk/blog/?p=793</guid>
		<description><![CDATA[Back again with more TinyMVC code. As I get more into this framework the more code I&#8217;ll be posting up, the functions in the code below are to be used directly from TinyMVC views and not controllers or models. One &#8230; <a href="http://www.stevenmcmillan.co.uk/blog/2012/php-useful-tinymvc-view-helpers/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.stevenmcmillan.co.uk/blog/2012/php-useful-tinymvc-view-helpers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; TinyMVC Template Wrapper Plugin</title>
		<link>http://www.stevenmcmillan.co.uk/blog/2012/php-tinymvc-template-wrapper-plugin/</link>
		<comments>http://www.stevenmcmillan.co.uk/blog/2012/php-tinymvc-template-wrapper-plugin/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 21:46:18 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP frameworks]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[Templating]]></category>
		<category><![CDATA[TinyMVC]]></category>

		<guid isPermaLink="false">http://www.stevenmcmillan.co.uk/blog/?p=786</guid>
		<description><![CDATA[TinyMVC provides a great structure for developing new projects, it&#8217;s small base allows the developer to write new plug-ins and extend on the existing framework. Below you&#8217;ll find a template wrapper I have made to manage the views and assigning &#8230; <a href="http://www.stevenmcmillan.co.uk/blog/2012/php-tinymvc-template-wrapper-plugin/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.stevenmcmillan.co.uk/blog/2012/php-tinymvc-template-wrapper-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Java &#8211; Creating and Switching to a new Activity in Android</title>
		<link>http://www.stevenmcmillan.co.uk/blog/2012/java-creating-and-switching-to-a-new-activity-in-android/</link>
		<comments>http://www.stevenmcmillan.co.uk/blog/2012/java-creating-and-switching-to-a-new-activity-in-android/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 18:22:33 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Activity]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.stevenmcmillan.co.uk/blog/?p=776</guid>
		<description><![CDATA[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 &#8230; <a href="http://www.stevenmcmillan.co.uk/blog/2012/java-creating-and-switching-to-a-new-activity-in-android/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.stevenmcmillan.co.uk/blog/2012/java-creating-and-switching-to-a-new-activity-in-android/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Java &#8211; SQLite Database Helper Class for Android</title>
		<link>http://www.stevenmcmillan.co.uk/blog/2012/java-sqlite-database-helper-class-for-android/</link>
		<comments>http://www.stevenmcmillan.co.uk/blog/2012/java-sqlite-database-helper-class-for-android/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 16:41:47 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[DBHelper]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://www.stevenmcmillan.co.uk/blog/?p=763</guid>
		<description><![CDATA[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 &#8230; <a href="http://www.stevenmcmillan.co.uk/blog/2012/java-sqlite-database-helper-class-for-android/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.stevenmcmillan.co.uk/blog/2012/java-sqlite-database-helper-class-for-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java &#8211; Using Android&#8217;s System Notifications</title>
		<link>http://www.stevenmcmillan.co.uk/blog/2011/java-using-androids-system-notifications/</link>
		<comments>http://www.stevenmcmillan.co.uk/blog/2011/java-using-androids-system-notifications/#comments</comments>
		<pubDate>Sat, 31 Dec 2011 15:52:25 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Notification Manager]]></category>

		<guid isPermaLink="false">http://www.stevenmcmillan.co.uk/blog/?p=750</guid>
		<description><![CDATA[After playing around with Android (and I&#8217;ve spent only around 2 hours so far) I found out that it&#8217;s quite easy to access the System Notifications and send messages from your own Activity along with the custom titles, content and &#8230; <a href="http://www.stevenmcmillan.co.uk/blog/2011/java-using-androids-system-notifications/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.stevenmcmillan.co.uk/blog/2011/java-using-androids-system-notifications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Page basic page caching</title>
		<link>http://www.stevenmcmillan.co.uk/blog/2011/php-page-basic-page-caching/</link>
		<comments>http://www.stevenmcmillan.co.uk/blog/2011/php-page-basic-page-caching/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 19:31:26 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Caching]]></category>
		<category><![CDATA[Templating]]></category>

		<guid isPermaLink="false">http://www.stevenmcmillan.co.uk/blog/?p=740</guid>
		<description><![CDATA[One of the most useful things you can do in terms of performance is to cache the page you&#8217;re currently serving so that no code gets executed again and again when it isn&#8217;t needed. I&#8217;ve provided a sample below of &#8230; <a href="http://www.stevenmcmillan.co.uk/blog/2011/php-page-basic-page-caching/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.stevenmcmillan.co.uk/blog/2011/php-page-basic-page-caching/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching using disk: basic
Object Caching 852/984 objects using disk: basic

 Served from: www.stevenmcmillan.co.uk @ 2013-05-22 15:59:05 by W3 Total Cache -->