<?xml version="1.0" encoding="UTF-8"?>		<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
		<channel>
			<atom:link href="http://shortphp/blog/rss/" rel="self" type="application/rss+xml" />
			<title>ShortPHP info</title>
			<link>http://shortphp.com/blog/</link>
			<description>The shortest PHP web framework</description>
			<language>en-us</language>
			<lastBuildDate>Mon, 06 Feb 2012 23:12:22</lastBuildDate>
			<pubDate>Mon, 06 Feb 2012 23:12:22</pubDate>
			<generator>http://shortphp.com/</generator>
			<generator>http://shortphp.com/docs/</generator>
			<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />		
							<item>
					<title>Blog has moved to http://arnorhs.com/category/shortphp/</title>
					<dc:creator>Arnór Heiðar</dc:creator>
					<link>http://shortphp.com/blog/viewentry/9/</link>
					<description><![CDATA[The ShortPHP blog has moved to Arnor's personal blog: <a href="http://arnorhs.com/category/shortphp/">http://arnorhs.com/category/shortphp/</a>.

It will probably become more active there.]]></description>         
					<guid>http://shortphp.com/blog/viewentry/9/</guid>
					<pubDate>Sun, 19 Dec 2010 21:04:31</pubDate>
				</item>
							<item>
					<title>Removed spam, improved spam protection</title>
					<dc:creator>Arnór Heiðar</dc:creator>
					<link>http://shortphp.com/blog/viewentry/8/</link>
					<description><![CDATA[<p>I had a <strike>small</strike> huge problem with spam in the comments. So I emptied the comments table. I don't think there were any comments except me and maybe a friend or two posting something useless. So, no harm done.</p>]]></description>         
					<guid>http://shortphp.com/blog/viewentry/8/</guid>
					<pubDate>Sat, 24 Apr 2010 03:29:16</pubDate>
				</item>
							<item>
					<title>Version 1.1.1 released</title>
					<dc:creator>Arnór Heiðar</dc:creator>
					<link>http://shortphp.com/blog/viewentry/7/</link>
					<description><![CDATA[<p>I've made small improvements to the code. The changes are:</p>
<ul>
<li>Objects are instantiated from the sitefiles' classes - and therefore the methods are called on the object. This has some benefits, mainly that now you can have a constructor named as the object is, which would do stuff you need to do every time and this also solves the issue of E_STRICT warnings being generated if you don't use the <em>static</em> keyword before a function declaration</li>
<li>You can specify a start up sitefile in the shared.php file, using:
<code>define('S_DEFAULT_SITEFILE','yourownsitefileorclassname');</code>This was needed</li>
</ul>
<p>Check out the download section.</p>]]></description>         
					<guid>http://shortphp.com/blog/viewentry/7/</guid>
					<pubDate>Sat, 25 Apr 2009 18:19:02</pubDate>
				</item>
							<item>
					<title>Version 1.1.0 released</title>
					<dc:creator>Arnór Heiðar</dc:creator>
					<link>http://shortphp.com/blog/viewentry/6/</link>
					<description><![CDATA[<p>I've put together version 1.1.0 and it is available immediately. Head over to the <a href="/download/">download section</a> or view the change log here:</p>

<pre><code>
*** Version 1.1.0 ***
[ADD] Added whitespace + comments to all the code
[MOD] Rewrote some of the URI parsing functions and more....
[ADD] Added f() - get the full file path to the website - document root
[ADD] Added p() - get the full HTTP file path to the current website.
[ADD] Added uri() - to retrieve a part of the URI easily.
</code></pre>

<p>I'm still looking for the right license for the project so if you have any comments or ideas on that, please let me know.</p>
]]></description>         
					<guid>http://shortphp.com/blog/viewentry/6/</guid>
					<pubDate>Tue, 10 Mar 2009 03:03:52</pubDate>
				</item>
							<item>
					<title>Rethinking the code</title>
					<dc:creator>Arnór Heiðar</dc:creator>
					<link>http://shortphp.com/blog/viewentry/5/</link>
					<description><![CDATA[<p>I got some really helpful feedback from <a href="http://twitter.com/matzie">@matzie</a> on twitter about the shortness of the code. I had set my heart so much into trying to make the code as few bytes as possible - even though that's arbitrary - so started thinking I should rewrite some of the variable names etc so the codes becomes more readable, maybe put in some comments as well.</p>

<p>It's never going to <a href="http://twitto.org/">fit in a tweet</a> anyways, so why bother having such arcane code? I've never written code like this before, why start now?</p>

<p>But <strong>keeping the code small</strong> and with as few statements as possible, as few variables etc, is still very vital... or else I'll just be making another CakePHP, CodeIgniter etc..</p>

<p>So my next step is probably to take the notes from the <a href="/docs/roadmap/">roadmap</a> and build on that and make the code more readable.</p>]]></description>         
					<guid>http://shortphp.com/blog/viewentry/5/</guid>
					<pubDate>Tue, 10 Mar 2009 00:59:00</pubDate>
				</item>
							<item>
					<title>Version 1.0.1 released - testers needed</title>
					<dc:creator>Arnór Heiðar</dc:creator>
					<link>http://shortphp.com/blog/viewentry/3/</link>
					<description><![CDATA[<p>Ok, so now version 1.0.1 is out, so I'm in a deep need of people to test out the framework and do some domo projects using ShortPHP.</p>

<p>If you have any questions, please e-mail me.</p>]]></description>         
					<guid>http://shortphp.com/blog/viewentry/3/</guid>
					<pubDate>Sun, 08 Mar 2009 19:02:39</pubDate>
				</item>
							<item>
					<title>The making of a framework</title>
					<dc:creator>Arnór Heiðar</dc:creator>
					<link>http://shortphp.com/blog/viewentry/2/</link>
					<description><![CDATA[<p>The framework is pretty much ready for use. It started out as a 10-min experiment and (as usually) ends up as a little bit bigger project. At least now I have some codebase to build upon.</p>

<p><strong>Day one</strong> went into creating the base code and trying out a few things.<br />
<strong>Day two</strong> went into making this website based on the code. That includes making the blog platform w/comment forms, writing the poor documentation, etc.</p>

<p>There are still a lot of loose ends, will fix soon.</p>]]></description>         
					<guid>http://shortphp.com/blog/viewentry/2/</guid>
					<pubDate>Sat, 07 Mar 2009 23:33:03</pubDate>
				</item>
							<item>
					<title>First entry</title>
					<dc:creator>Arnór Heiðar</dc:creator>
					<link>http://shortphp.com/blog/viewentry/1/</link>
					<description><![CDATA[<p>Just testing... does this work?</p>]]></description>         
					<guid>http://shortphp.com/blog/viewentry/1/</guid>
					<pubDate>Sat, 07 Mar 2009 23:27:59</pubDate>
				</item>
						</channel>
		</rss>
		
