<?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>SimonOnSoftware &#187; php</title>
	<atom:link href="http://simononsoftware.com/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://simononsoftware.com</link>
	<description>programming, databases and other IT something</description>
	<lastBuildDate>Thu, 29 Jul 2010 18:48:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Naming Convention aka PHP vs Python</title>
		<link>http://simononsoftware.com/naming-convention-aka-php-vs-python/</link>
		<comments>http://simononsoftware.com/naming-convention-aka-php-vs-python/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 21:07:59 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[convention]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[wtf]]></category>

		<guid isPermaLink="false">http://simononsoftware.com/?p=866</guid>
		<description><![CDATA[Is Python really better than PHP? I doubt, and in this post I just write what I think about it and that both languages are very similar, are messed in a similar way.


<strong>Related posts:</strong><ol><li><a href='http://simononsoftware.com/what-i-dont-like-about-python/' rel='bookmark' title='Permanent Link: What I Don&#8217;t Like About Python'>What I Don&#8217;t Like About Python</a> <small>Python &#8211; maybe you know &#8211; is a computer language...</small></li>
<li><a href='http://simononsoftware.com/python-and-unicode-what-a-crap/' rel='bookmark' title='Permanent Link: Python And Unicode&#8230; What a Crap'>Python And Unicode&#8230; What a Crap</a> <small>I was trying to implement something really simple in Python....</small></li>
<li><a href='http://simononsoftware.com/trying-to-use-database-in-python/' rel='bookmark' title='Permanent Link: Trying to Use Database in Python'>Trying to Use Database in Python</a> <small>Why the f**** there is nothing like DBI in Python?...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://simononsoftware.com/naming-convention-aka-php-vs-python/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Why PHP Function Names are Weird</title>
		<link>http://simononsoftware.com/why-php-function-names-are-weird/</link>
		<comments>http://simononsoftware.com/why-php-function-names-are-weird/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 18:43:29 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.simononsoftware.com/?p=660</guid>
		<description><![CDATA[Here is  quite funny list 


Bookmark It






















No related posts.


No related posts.]]></description>
		<wfw:commentRss>http://simononsoftware.com/why-php-function-names-are-weird/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Funny Behaviour</title>
		<link>http://simononsoftware.com/php-funny-behaviour/</link>
		<comments>http://simononsoftware.com/php-funny-behaviour/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 21:15:22 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wtf]]></category>

		<guid isPermaLink="false">http://www.simononsoftware.com/?p=570</guid>
		<description><![CDATA[Today I found a small example of a php code that reminded me the endless battles between ruby/python and php folks stating how bad the php is. Well&#8230; let&#8217;s see the small example:
&#60;?php
$ee = new e();
$ee-&#62;x();

print_r($ee);

class e
{
  function x()
  {
    print "run x()\n";
  }
}
running this returned no error, but [...]


<strong>Related posts:</strong><ol><li><a href='http://simononsoftware.com/naming-convention-aka-php-vs-python/' rel='bookmark' title='Permanent Link: Naming Convention aka PHP vs Python'>Naming Convention aka PHP vs Python</a> <small>Is Python really better than PHP? I doubt, and in...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://simononsoftware.com/php-funny-behaviour/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Namespaces in PHP</title>
		<link>http://simononsoftware.com/namespaces-in-php/</link>
		<comments>http://simononsoftware.com/namespaces-in-php/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 19:14:11 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.simononsoftware.com/?p=324</guid>
		<description><![CDATA[Hooooooray, there are (will be) namespaces in the best language: PHP. Namespaces are for example in C++, the namespace delimiter is ::. Cool. What do they proposed in the greates language of all? Well, I thought it was a silly joke&#8230; but it is not, yea run away:
As such we have decided to go with
\
as [...]


<strong>Related posts:</strong><ol><li><a href='http://simononsoftware.com/oh-those-terrible-units/' rel='bookmark' title='Permanent Link: Oh, Those Terrible Units'>Oh, Those Terrible Units</a> <small>﻿There are some numbers and units. Numbers are numbers. Units...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://simononsoftware.com/namespaces-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
