<?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>bybjorn.com &#124; Bjørn Børresen - freelance web developer &#187; PHP</title>
	<atom:link href="http://www.bybjorn.com/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bybjorn.com</link>
	<description>bybjorn.com &#62;&#62; Bjørn Børresen - freelance web developer</description>
	<lastBuildDate>Mon, 03 Oct 2011 13:39:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>PEAR DataObjects vs. Propel vs. EzPDO vs .. Java!</title>
		<link>http://www.bybjorn.com/31/</link>
		<comments>http://www.bybjorn.com/31/#comments</comments>
		<pubDate>Wed, 05 Apr 2006 20:36:48 +0000</pubDate>
		<dc:creator>Bjørn Børresen</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[orm]]></category>
		<category><![CDATA[pdo]]></category>

		<guid isPermaLink="false">http://bie.no/blog/computers/software-engineering/php/2006/04/pear-dataobjects-vs-propel-vs-ezpdo-vs-java/</guid>
		<description><![CDATA[Using an object perstistence layer can be greatly benefitial for any medium to large size project. Or, any project at all some would say. If you don&#8217;t know what I&#8217;m talking about, I&#8217;ll give you a quick example. Usually, in PHP we would do something ugly-bugly like this to retrieve info about a certain item [...]]]></description>
			<content:encoded><![CDATA[<p>Using an object perstistence layer can be greatly benefitial for any medium to large size project. Or, <em>any</em> project at all some would say. If you don&#8217;t know what I&#8217;m talking about, I&#8217;ll give you a quick example. Usually, in PHP we would do something ugly-bugly like this to retrieve info about a certain item in the database:</p>

<blockquote>$res = mysql_query(&#8220;SELECT * FROM article WHERE ID=5&#8243;);
if($row == mysql_fetch_assoc($res)) {
echo $row["title"];
// do something here
}</blockquote>

<p>Compare it to this:</p>

<blockquote>$article = new Article(5);
echo $article->getTitle();
// do something here</blockquote>

<p>Ah, the beauty of OO.</p>

<p>My first experience with this was the <a href="http://pear.php.net/package/DB_DataObject/">PEAR DataObject</a> package. I was amazed &#8211; it could generate classes based on the tables found in my database automatically, and I could start using them instantly! Yummy!</p>

<p>Lately I&#8217;ve been having a look at <a href="http://propel.phpdb.org">Propel</a>. You see, I know the <a href="http://www.symfony-project.com">Symfony</a> guys chose Propel, and after <a href="http://podcast.phparch.com/main/index.php/episodes:20060210">listening to a podcast with an interview</a> with one of the project leads there, I&#8217;m convinced that the guys behind symfony are smart. Smart people choose the best frameworks, so my logic tells me to look at Propel <img src='http://www.bybjorn.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<p>I haven&#8217;t tried it yet &#8211; but at first glance it looks better than PEAR DO. Why? Well, Propel will generate 4 classes for each table in your database. Overkill you say? Well, read this from the Symfony Model documentation:</p>

<blockquote>Why keep two versions of the data object model, one in <code>model/om/</code> and another in <code>model/</code>?</blockquote>

<blockquote>You will probably need to add custom methods and attributes to the model objects (think about the <code>->getName()</code> method that outputs the <code>FirstName</code> and <code>LastName</code> together). But as your project develops, you will also add tables or columns. Whenever you change the <code>schema.xml</code>, you have to make a new call to <code>symfony propel-build-model</code> to generate the object model classes.

The <code>Base</code> architecture allows you to keep using the <code>symfony propel-build-model</code> command even after you added custom code to your classes. Here is how it works: the <code>Base</code> classes kept in the <code>model/om/</code> directory are the ones generated by Propel. You should <strong>never</strong> modify them since every new build of the model will completely erase these files. But if you need to add custom methods, use the regular object classes of the <code>model/</code> directory that actually inherit from the previous ones.

<a href="/content/book/page/model.html"></a></blockquote>

<p>Of course, you could just extend the PEAR DataObjects created but it just &#8230; well, it just doesn&#8217;t seem to be encouraged. I like when a framework encourage me to do stuff The Right Way(TM).</p>

<p>So, Propel it is, I thought &#8211; but that was before a co-worker of mine suggested <a href="http://www.ezpdo.net">EzPDO</a> which supposedly had a bit of a different approach. They brand themselves as &#8220;A simple solution for PHP Object Relational Mapping and Data Persistence&#8221; and they seem to be worth a look.</p>

<p>The final solution I&#8217;m looking at for solving this issue is using Java combined with PHP. Using the new Zend Platform it&#8217;s possible to use Java objects, in PHP code &#8211; is that great or what. A little illustration for you, which I found <a href="http://www.zend.com/store/products/zend-platform/java.php">here</a>.</p>

<div style="text-align: center"><img title="java in php" alt="java in php" src="http://www.zend.com/images/store/zend-platform/javabridge_img.gif" /></div>

<p>That way the db stuff can be handled in EJB&#8217;s maybe, everything is transferred via SOAP and I can use objects in PHP like I would with Propel etc. It&#8217;s all a bit sketchy, but it&#8217;s something I&#8217;m looking at.</p>

<p>Comments anyone? I&#8217;d love to hear some feedback from people who have actually done this ..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bybjorn.com/31/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP is the Devil!</title>
		<link>http://www.bybjorn.com/28/</link>
		<comments>http://www.bybjorn.com/28/#comments</comments>
		<pubDate>Fri, 17 Mar 2006 20:27:39 +0000</pubDate>
		<dc:creator>Bjørn Børresen</dc:creator>
				<category><![CDATA[Podcasting]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://bie.no/blog/metabjorn/2006/03/php-is-the-devil/</guid>
		<description><![CDATA[I&#8217;m a big fan of podcasts, and recently I stumbled upon this jewel. It&#8217;s not a podcast per se, but eight audio files containing presentations from Carson Workshops entitled &#8216;The Future Of Web Apps&#8217;. I&#8217;ve listened to three of them by now, and here&#8217;s what I&#8217;ve learnt so far: Joshua Schachter, Delicious [mp3]; Don&#8217;t write [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a big fan of podcasts, and recently I stumbled upon <a href="http://www.carsonworkshops.com/summit/">this jewel</a>. It&#8217;s not a podcast per se, but eight audio files containing presentations from <a href="http://www.carsonworkshops.com/">Carson Workshops</a> entitled &#8216;The Future Of Web Apps&#8217;. I&#8217;ve listened to three of them by now, and here&#8217;s what I&#8217;ve learnt so far:</p>

<ul>
    <li><a href="http://burri.to/~joshua/">Joshua Schachter</a>, <a href="http://del.icio.us">Delicious</a> [<a href="http://www.webuser.co.uk/carsonworkshops/JoshuaSchachter.mp3">mp3</a>]; <em>Don&#8217;t write for scalability, you won&#8217;t know what breaks before it breaks. People will molest your server.</em></li>
    <li>Cal Henderson, <a href="http://www.flickr.com">Flickr</a> [<a href="http://www.webuser.co.uk/carsonworkshops/CalHenderson.mp3">mp3</a>]; <em>Write an API, use an open system; let users know that they can export their data if they don&#8217;t want to use your service anymore (it will get you more users!)</em></li>
    <li><a href="http://www.loudthinking.com/">David Heinemeier Hansson</a>, <a href="http://www.37signals.com">37 signals</a> and one of the developers behind <a href="http://rubyonrails.org/">Ruby On Rails</a> [<a href="http://www.webuser.co.uk/carsonworkshops/DavidHeinemeierHansson.mp3">mp3</a>]; <em>Flexibility is overrated, and PHP is the Devil!</em></li>
</ul>

<p>Great stuff! <img src='http://www.bybjorn.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Can&#8217;t wait to listen to the next five. And since I&#8217;m going to <a href="http://www.visitmanchester">Manchester</a> this weekend (or, <a href="http://www.visitstoke.co.uk/">stoke-on-trent</a> to be precise, but that&#8217;s almost Manchester isn&#8217;t it) there should be some travel time to listen to some of this <img src='http://www.bybjorn.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> r</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bybjorn.com/28/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Java community retaliates &#8211; &quot;PHP is &#8230;&quot;</title>
		<link>http://www.bybjorn.com/25/</link>
		<comments>http://www.bybjorn.com/25/#comments</comments>
		<pubDate>Wed, 08 Mar 2006 20:32:30 +0000</pubDate>
		<dc:creator>Bjørn Børresen</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Software Engineering]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://bie.no/blog/metabjorn/2006/03/the-java-community-retaliates-php-is/</guid>
		<description><![CDATA[Ok, it&#8217;s time to let the people of #java on Ef-net let us know what they thought of PHP in the period from July to December 2005 (read: yes, I&#8217;ve done a grep -iH &#8220;php is&#8221; on my #java irclogs). Of course, we all know the PHP developers had strong opinions on Java, so this [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, it&#8217;s time to let the people of #java on Ef-net let us know what they thought of PHP in the period from July to December 2005 (read: yes, I&#8217;ve done a grep -iH &#8220;php is&#8221; on my #java irclogs). Of course, we all know the <a href="http://bie.no/blog/computers/software-engineering/java/2006/02/the-irc-community-speaks-out-java-vs-php/">PHP developers had strong opinions on Java</a>, so this will be interesting.</p>

<blockquote>< @Tenchi> php is terd
< @aut> straight php is faster than using php to transform xml
< waz><strong> don&#8217;t forget &#8220;PHP is slow!&#8221;</strong>
< pr3d4t0r> <strong>waz: &#8220;PHP is slow! Use Perl.&#8221;</strong>
< AstroIvan> and php is slow
< jjava> and php is slow
< tomh> so php is faster when you dont use clusters?
< @joeblowgt> and php is fine for many types of websites
< @jwzrd> BoZo, no you are not. Php is not something you program.
< @jwzrd> deigo, php isn&#8217;t coding
< @top^> a bunch of if statements? now that&#8217;s why php is not java
< SouljaGoD> PHP is fairly easy for this kind of thing
< mele> php is nice <img src='http://www.bybjorn.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> 
< pr3d4t0r> kinabalu: PHP is like a gun.
< mele> Tenchi:  php is fun <img src='http://www.bybjorn.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> 
< @GnarlyBob> php is more scalable
< eth-> you think PHP is understandable? hahaa
<strong>< @boxed> you know, php is pretty much like java except with a chaotic standard library and a billion $&#8217;s thrown randomly in the code</strong>
< jjava> but php is able to defy gravity
< @jwzrd> hahaha php is such a configuration shithole
< @jwzrd> PHP isn&#8217;t allowed
< Jippi> i know &#8211; php5 got oop as a &#8216;bonus&#8217; hehe.. php isnt orignally a oop language
< @jwzrd> PHP is annoying though <img src='http://www.bybjorn.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> 
< CnfsdKid> php is forever horrible.
< CnfsdKid> DeanC: php is retarded.
< Number-6> php is quite retarded.
< tonicxt> Php is nice as it has build in user-input sanitization automatically enabled on all user-input -=-
< CnfsdKid> geerd: maybe php is more your style.
< gripe> geerd: php is for semi-literate high school kids to write blogs with
< porc> php is simply not an enterprise class language
< geerd> and PHP is for the web, you dont listen for any keys</blockquote>

<p>Well, we see they have humor; &#8220;PHP is slow, use Perl&#8221; is of course a reference to the idiotic &#8220;Java is slow, C is better&#8221; which these developers hear too often. So, they throw it over to the PHP community, where it, of course, is just is stupid.</p>

<p>Also, notice how few opinions about PHP in #java there are compared to the number of opinions on Java in #PHP in the same time period; <em>Java coders are too cool to care about PHP.</em> I mean; they&#8217;re coding Java, enterprise applications. They don&#8217;t kid around. It&#8217;s real OO, not &#8220;We kind of .. uhh, well, got some OO in the latest PHP5 release guys, uuh..&#8221; (Zend).</p>

<p>In case you&#8217;re wondering I consider myself a Java developer foremost, and a PHP developer second <img src='http://www.bybjorn.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  .. but &#8220;times, they are a-changin&#8217;&#8221; as Bob Dylan sings.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bybjorn.com/25/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The IRC community speaks out &#8211; Java vs. PHP</title>
		<link>http://www.bybjorn.com/16/</link>
		<comments>http://www.bybjorn.com/16/#comments</comments>
		<pubDate>Wed, 15 Feb 2006 21:00:57 +0000</pubDate>
		<dc:creator>Bjørn Børresen</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://bie.no/blog/metabjorn/2006/01/the-irc-community-speaks-out-java-vs-php/</guid>
		<description><![CDATA[Welcome to my new column. It&#8217;s basically a grep of all mentions of java in #php from July to December 2005. The nicks have not been hidden to protect the guilty. This is what the people in #php on ef-net think about Java as a programming language: < Johnboyo> java is awful, im a symbian [...]]]></description>
			<content:encoded><![CDATA[<p>Welcome to my new column. It&#8217;s basically a <a href="http://www.gnu.org/software/grep/">grep</a> of all mentions of java in #php from July to December 2005.</p>

<p>The nicks have not been hidden to protect the guilty.</p>

<h3>This is what the people in #php on ef-net think about Java as a programming language:</h3>

<ul>
    <li>< Johnboyo> java is awful, im a symbian programmer by trade and i avoid it at all costs</li>
    <li>< @feti> better than a low-level language. and java is high-level</li>
    <li>< nforbes> LOL JAVA IS SLOW</li>
    <li>< tWiZtEr> java is slow and gay</li>
    <li>< dreamache> java is so unbelievably slow, i mean.. have you ever visited sites with java menus?  my gawd</li>
    <li>< vvortex3> C# vs Java is such a bitter debate</li>
    <li>< SouLShocK> java is medium?</li>
    <li>< @Dragnslcr> Java is one of the best languages for GUI apps. Not to say that it&#8217;s all that good</li>
    <li>< paladin`> what phek is trying to get at is, php &#8220;executes&#8221; code serverside, whereas java is handled and interpreted by the client. what you are likely looking to do is to add a tag such as onload=&#8221;function();&#8221; to your html.</li>
    <li>< m0O> da_ &#8211; programming java is nice thou <img src='http://www.bybjorn.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> - the funnest to program especially using hte eclipse interface, makes it even more fun</li>
    <li>< Inkvenom> java is a resource whore&#8230;</li>
    <li>< +ronny_fro> java istn drag and drop necessarily</li>
    <li>< pulse__> if you&#8217;re looking for retards, #java is the place to go</li>
    <li>< leterip> i hate how java is a programming lanugage becasue they use the guise of compiling</li>
    <li>< Idle`> Java is&#8230; C# is MS&#8217;s java killer, although theyll never admit it</li>
    <li>< planetxm> we all know java is a beautiful language for OOP.. and the fact they took c# syntax is no suprise coming from M$.. c# is like &#8216;the perfect language&#8217;</li>
    <li>< badz> java is popular &#8230; you couldnt build a os out of it&#8230; c is just the real thing.</li>
    <li>< Chr|s> but to say that Java is useless is a bit of a stretch</li>
    <li>< kainam> java is ass</li>
    <li>< @feti> hindog: because Java isn&#8217;t extensible, C/C++ are</li>
    <li>< +dreamache> java is like so horribly slow</li>
    <li>< slacker_> i know java is</li>
    <li>< +SunTzu> god java is a resouce hog</li>
    <li>< aonic> but java is a resource whore</li>
    <li>< Chr|s> Java isnt that bad, depends on what you&#8217;re intended use is</li>
    <li>< stutter-> Chr|s: i guess if your intended use is fat slow application &#8211; java is good</li>
    <li>< @feti> i bet you guys couldn&#8217;t name one reason why objective C is better than Java. and if you can you&#8217;re an idiot, cause you use the tool for the job. and you probably don&#8217;t even know WHY java is used so much, let alone have room to talk why it sucks.</li>
    <li>< @Dragnslcr> Java is a good language for a lot of stuff, but some of the things it does are really annoying</li>
    <li>< fietronic> Dragnslcr: the thing with java is that it runs on most everything new</li>
    <li>< phek> java is good as a non web based programming language</li>
    <li>< el_taco> java is so portable.</li>
    <li>< fietronic> m-00kie: java is a web application&#8230;</li>
    <li>< Yaeyama> crayola: that&#8217;s because java is teh suck and the community would be up the creek without those kinds of submissions <img src='http://www.bybjorn.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
    <li>< +YorT> Rhasta, java isnt truly cross platform either <img src='http://www.bybjorn.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </li>
    <li>< Colloid> ok i don&#8217;t mean to spam, but i&#8217;m a java hater and this one is too good: &#8220;Saying that Java is nice because it works on all OS&#8217;s is like saying that anal sex is nice because it works on all genders&#8221;</li>
    <li>< MovieTrai> Colloid, just because java is to hard for you doesn&#8217;t mean it sucks</li>
    <li>< +dreamache> java is unbelievably slow</li>
    <li>< sp0n9e> java is nothing but OO and some things are such a pain</li>
    <li>< Two9A> And it&#8217;s probably more efficient because every array access in Java is automatically bound-checked</li>
    <li>< +Shadda> and java is nothing but overflowing with documentation on OO design</li>
    <li>< zenogais> Java isn&#8217;t helly-slow</li>
    <li>< hindog> pretty fuckin sweet.. I use PHP + Java for my latest project, where java is the actual engine.. and php is the &#8220;front&#8221; to the engine</li>
    <li>< hindog> h4x012, java is good.. .NET is good</li>
    <li>< +SunTzu_> java is a hog</li>
    <li>< Woxxy> SpydaByte: speed is relative. whereas c++ has better performance, java is faster to code</li>
    <li>< Asmodeo|p> dunno your opinnion but i think java is gay</li>
    <li>< @Shai-Tan> java is a mess</li>
    <li>< _crayola> the only real java is java because its platform independent.</li>
    <li>< @w0lfy> < ?php echo 'java is gay kthx'; ?></li>
    <li>< codepoet> java is so damn annoying</li>
    <li>< @horros> Java isn&#8217;t slow.</li>
    <li>< +YorT> lod, you do realise java is fucken fast right?</li>
    <li>< hindog> java is not interpreted at the source-code level</li>
    <li>< segosa> java is not js</li>
    <li>< Inkvenom> Shadda: do you think java is or isn&#8217;t a resource whore?</li>
    <li>< Inkvenom> ron_frownZendar: do you disagree that java is a resource whore, it has it&#8217;s benefits, but you have to admit that</li>
    <li>< +SunTzu_> im sick at thinking java is the way</li>
    <li>< @Dragnslcr> Java is mostly OO, but it still has non-object basic data types (integers, reals, etc.)</li>
    <li>< +feti> anybody that tries to relate PHP to Java is a complete idiot to begin with</li>
    <li>< InkLaptop> java is a resource whore&#8230;.</li>
    <li>< putopaul> java is the best right now</li>
    <li>< ftzdomino> writing servers in java is fun.  hopefully they fixed all of the connect() timeout stupidity</li>
    <li>< Meritt> because java is the devil.</li>
    <li>< Meritt> PHP is an efficient scripting language modeled after C.  Java is a cannabilistic ogre woman.</li>
    <li>< nomopofom> java is like uber pro style?</li>
    <li>< m0rales> java is huge but comparing java to php would get us nowhere</li>
    <li>< m0O_> java is elite</li>
    <li>< m0O_> java is elite!</li>
    <li>< m0O_> .NEt/JAVA is slower I assume</li>
    <li>< baloo_> java is meant for you, php is meant for us</li>
    <li>< m0O_> so powerfull, java is in ur hands when programming</li>
    <li>< Arrakis> java is just plain suckage</li>
    <li>< Flixi> cdg: First it was <script language="java"> ... java code .. </script> in the html head. Not I copyed the java code to a other file and instead of the script tag I got < ? include menujava.php ?> and it&#8217;s the same java code both places.. I thought it would just copy the java code in to the html file because php is server side and the java is client side</li>
    <li>< m0O_> Im in 4th  year university, and java is sick <img src='http://www.bybjorn.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  We just handed in a EJB application yesterday, group of 5, 10 gorups in class, and only my groups finished it. And I was the only person in the group who did it , the rest did the report since they new shit</li>
    <li>< @ronny_poo> I think in general java is a glimpse at where things are going, but theres just too much shit thats half assed in java frameworks</li>
    <li>< _piker_> #java is worthless anyways&#8217;</li>
    <li>< sp0n9e> java is ass <img src='http://www.bybjorn.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </li>
    <li>< @Shadda> java is great&#8230;when coded right</li>
    <li>< +noc`> Java is good</li>
    <li>< zid`> java is insecure shit on windows</li>
    <li>< rza> java is actually good</li>
    <li>< syc> java is nicer to work with. in my opinion.</li>
    <li>< sp0n9e> java is more than a language</li>
    <li>< syc> java is an addiction to platform independant code!</li>
    <li>< SunTzu> java is cool just wish they would get the garbage collection sorted out <img src='http://www.bybjorn.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </li>
    <li>< Chr|s> Java is so much nicer in that regard&#8230; ;-P</li>
    <li>< virax> digitok: All java is bullshit.</li>
    <li>< syc> java is good.</li>
    <li>< _m0O> still java is the ruler <img src='http://www.bybjorn.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
    <li>< +noc`> and java is the OO king dammit</li>
    <li>< _m0O> java is the king of OO</li>
    <li>< _m0O> all I said is java is king</li>
    <li>< sp0n9e> java is getting better at memory management</li>
</ul>

<p>That&#8217;s it! Tomorrow we&#8217;ll have a look at what the #java people think of PHP. Fun, huh? <img src='http://www.bybjorn.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.bybjorn.com/16/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

