<?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>dom111.co.uk &#187; Rambles</title>
	<atom:link href="http://www.dom111.co.uk/blog/category/rambles/feed" rel="self" type="application/rss+xml" />
	<link>http://www.dom111.co.uk/blog</link>
	<description>Move along. Nothing to see here.</description>
	<lastBuildDate>Wed, 14 Jul 2010 19:30:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Conway&#8217;s Game of Life</title>
		<link>http://www.dom111.co.uk/blog/rambles/conways-game-of-life/44</link>
		<comments>http://www.dom111.co.uk/blog/rambles/conways-game-of-life/44#comments</comments>
		<pubDate>Mon, 17 Nov 2008 23:49:19 +0000</pubDate>
		<dc:creator>dom111</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Maths]]></category>
		<category><![CDATA[Rambles]]></category>
		<category><![CDATA[game of life]]></category>
		<category><![CDATA[john conway]]></category>

		<guid isPermaLink="false">http://www.dom111.co.uk/blog/?p=44</guid>
		<description><![CDATA[So, thanks to xkcd I learnt about something cool today that&#8217;s been around for ages (wish I&#8217;d studied more maths&#8230;.). All the sites I found for playing with the simulation had Java applets on them, so I wanted to make a javascript one, I know it&#8217;s not a true implementation, because it goes a bit [...]]]></description>
			<content:encoded><![CDATA[<p>So, thanks to <a href="http://xkcd.com/505/">xkcd</a> I learnt about <a href="http://en.wikipedia.org/wiki/Conway's_Game_of_Life">something cool</a> today that&#8217;s been around for ages (wish I&#8217;d studied more maths&#8230;.).</p>
<p>All the sites I found for playing with the simulation had Java applets on them, so I wanted to make a javascript one, I know it&#8217;s not a true implementation, because it goes a bit mental at the edges&#8230; but it was interesting anyway&#8230;</p>
<p>It&#8217;s <a href="http://dom111.co.uk/files/gameOfLife/gameOfLife.html">here</a> anyway if anyone wants to play&#8230; The timings might be a bit of a problem if you create a huge grid with small squares&#8230; so be prepared for Internet Exploder to give you some memory leak issues&#8230;</p>
<p><a href="http://dom111.co.uk/files/gameOfLife/gameOfLife.html">http://dom111.co.uk/files/gameOfLife/gameOfLife.html</a></p>
<p><strong>Edit</strong>: Updated links.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dom111.co.uk/blog/rambles/conways-game-of-life/44/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mod-framework: PHP, light and easy</title>
		<link>http://www.dom111.co.uk/blog/rambles/mod-framework-php-light-and-easy/39</link>
		<comments>http://www.dom111.co.uk/blog/rambles/mod-framework-php-light-and-easy/39#comments</comments>
		<pubDate>Thu, 13 Nov 2008 14:16:45 +0000</pubDate>
		<dc:creator>dom111</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Rambles]]></category>
		<category><![CDATA[activerecord]]></category>
		<category><![CDATA[convention over configuration]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[model view controller]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://www.dom111.co.uk/blog/?p=39</guid>
		<description><![CDATA[I know there&#8217;s already infinite PHP framework out there, trying to be rails; and most of them are doing it really well, I just feel that none of them completely embrace the simplicity of convention over configuration, so I&#8217;m trying to build one that ticks all the boxes. It&#8217;s pretty simple so far, and is [...]]]></description>
			<content:encoded><![CDATA[<p>I know there&#8217;s already infinite PHP framework out there, trying to be rails; and most of them are doing it really well, I just feel that none of them completely embrace the simplicity of convention over configuration, so I&#8217;m trying to build one that ticks all the boxes.</p>
<p>It&#8217;s pretty simple so far, and is only a few hundred KB, but I think it&#8217;s got some cool features, and maybe even potential.</p>
<p>Like the other stuff it&#8217;s under a Creative-Commons SA license and can be found at:</p>
<p><a href="http://mod-framework.googlecode.com/">http://mod-framework.googlecode.com/</a>.</p>
<p>Any opinions, suggestions, contributions would be gratefully received.</p>
<p>Current functionality:</p>
<p>Model-View-Controller system<br />
MySQL support (using a modified version of the DB class from earlier)<br />
script/server implementation in PHP<br />
Helper association, so if you create a PageHelper class for your Pages controller all the functions will automatically be made &#8216;global&#8217; (accessible view functionname() instead of Helper::functionname())<br />
Includes mootools in the htdocs folder</p>
<p>The DB doesn&#8217;t work quite how I would have imagined it to (well, with PHP 5.3 it might&#8230; but I haven&#8217;t got it yet&#8230;) so currently any models are added to $GLOBALS[] so that for a Page model, $GLOBALS['Page']-&gt;find_by_name(&#8216;dom&#8217;), etc would work.</p>
<p>There&#8217;s probably some other stuff in there too&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dom111.co.uk/blog/rambles/mod-framework-php-light-and-easy/39/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First!</title>
		<link>http://www.dom111.co.uk/blog/rambles/first/3</link>
		<comments>http://www.dom111.co.uk/blog/rambles/first/3#comments</comments>
		<pubDate>Fri, 18 Jul 2008 22:20:41 +0000</pubDate>
		<dc:creator>dom111</dc:creator>
				<category><![CDATA[Rambles]]></category>

		<guid isPermaLink="false">http://www.dom111.co.uk/blog/?p=3</guid>
		<description><![CDATA[Will I really ever use this? Who knows&#8230; But maybe I&#8217;ll keep a log of all the cool stuff I find&#8230;]]></description>
			<content:encoded><![CDATA[<p>Will I really ever use this?</p>
<p>Who knows&#8230; But maybe I&#8217;ll keep a log of all the cool stuff I find&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dom111.co.uk/blog/rambles/first/3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
