<?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>BartvH.nl &#187; Computer</title>
	<atom:link href="http://bartvh.nl/category/computer/feed/" rel="self" type="application/rss+xml" />
	<link>http://bartvh.nl</link>
	<description>Randomus Stufis</description>
	<lastBuildDate>Tue, 26 Jan 2010 00:29:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Jinn, the PHP framework that works for you!</title>
		<link>http://bartvh.nl/2010/01/jinn-the-php-framework-that-works-for-you/</link>
		<comments>http://bartvh.nl/2010/01/jinn-the-php-framework-that-works-for-you/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 00:29:37 +0000</pubDate>
		<dc:creator>Bart</dc:creator>
				<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://bartvh.nl/?p=393</guid>
		<description><![CDATA[I have my own PHP framework which used to be called FastMVC, a name I never really liked. Now that I have access to PHP 5.3 and its namespaces, I wanted to use those in the framework. Since this meant changing every file and breaking backwards compatibility, this was an excellent opportunity for a name [...]]]></description>
			<content:encoded><![CDATA[<p>I have my own PHP framework which used to be called FastMVC, a name I never really liked. Now that I have access to PHP 5.3 and its namespaces, I wanted to use those in the framework. Since this meant changing every file and breaking backwards compatibility, this was an excellent opportunity for a name change and reboot. Now it&#8217;s here, Jinn, and I&#8217;ve just now put up it&#8217;s first simple site.</p>
<blockquote><p>Jinn is a new <strong>PHP framework</strong>, and different from the others. Sure, there are many frameworks that can help you build a blog in 10 minutes, but what if you want something <strong>more or different</strong>? Jinn is <strong>flexible and modular</strong> and will help you even if you want to do something that nobody else has done. Using the full power of <strong>objects</strong> and PHP 5.3&#8217;s <strong>namespaces</strong>, your code is cleaner than ever. Jinn does not try to reinvent <strong>web standards</strong> like HTTP, but provides full access to these tried and tested technologies.</p></blockquote>
<p><a href="http://jinnframework.org">You can see this site here and learn more about Jinn!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bartvh.nl/2010/01/jinn-the-php-framework-that-works-for-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing suPHP</title>
		<link>http://bartvh.nl/2009/12/installing-suphp/</link>
		<comments>http://bartvh.nl/2009/12/installing-suphp/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 16:14:22 +0000</pubDate>
		<dc:creator>Bart</dc:creator>
				<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://bartvh.nl/?p=386</guid>
		<description><![CDATA[If you&#8217;re a PHP developer, you&#8217;ve probably had to mess with Linux file permissions at one point or another. The user account that you upload/edit your scripts with is, in a normal LAMP configuration, not the same user that will be executing your scripts (that will be the webserver user, www-data on a Ubuntu server). [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re a PHP developer, you&#8217;ve probably had to mess with Linux file permissions at one point or another. The user account that you upload/edit your scripts with is, in a normal LAMP configuration, not the same user that will be executing your scripts (that will be the webserver user, www-data on a Ubuntu server). This prevents many scripts from working out of the box and requires you to change the permissions of files and directories that your script needs to edit, to a probably unsecure value. A good example of this is the auto-upgrade and installation of Wordpress and its plugins.</p>
<p>Fortunately, we have suPHP. SuPHP is an alternative &#8220;link module&#8221; that connects Apache to PHP, and causes PHP scripts to be executed with the user that owns them. On an Ubuntu server, it&#8217;s really easy to install and configure. Here&#8217;s how I did it:</p>
<p>First, we install suPHP:</p>
<pre style="padding-left: 30px;">aptitude install libapache2-mod-suphp</pre>
<p>Then, we disable the default PHP module:</p>
<pre style="padding-left: 30px;">a2dismod php5</pre>
<p>This should be enough to make suPHP work for scripts in your global document root (e.g. <em>/var/www</em>). There&#8217;s a security check though, which causes execution of scripts outside that directory (e.g. in <em>/home/bart/public_html</em>) to not execute. To fix this issue, open<strong> </strong><em>/etc/suphp/suphp.conf </em>and put a semicolon in front of:</p>
<pre style="padding-left: 30px;">docroot=/var/www</pre>
<p>This is all I needed to make automatic upgrades in Wordpress work. <img src='http://bartvh.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://bartvh.nl/2009/12/installing-suphp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Revora has been upgraded</title>
		<link>http://bartvh.nl/2009/12/revora-has-been-upgraded/</link>
		<comments>http://bartvh.nl/2009/12/revora-has-been-upgraded/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 16:07:26 +0000</pubDate>
		<dc:creator>Bart</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Revora]]></category>

		<guid isPermaLink="false">http://bartvh.nl/?p=376</guid>
		<description><![CDATA[Today is a great day in the history of Revora. After months of working on it&#8230;
&#8230;we have a new website on http://revora.net  
What is new?
- It looks better&#8230;loads better
- The frontpage is now more than news. It includes vital information about Revora for new visitors, including a cool division showcase. Also displayed are a [...]]]></description>
			<content:encoded><![CDATA[<p>Today is a great day in the history of Revora. After months of working on it&#8230;</p>
<p><strong>&#8230;we have a new website on <a href="http://revora.net" target="_blank">http://revora.net</a> <img style="vertical-align: middle;" src="http://forums.revora.net/style_emoticons/default/zbuttrockwy7.gif" /> </strong></p>
<p><span style="text-decoration: underline;">What is new?</span><br />
- It looks better&#8230;loads better<br />
- The frontpage is now more than news. It includes vital information about Revora for new visitors, including a cool division showcase. Also displayed are a summary of recent news, the contents of the latest magazine, a quote of the day and other bits of information.<br />
- The about pages describe <a href="http://revora.net/about" target="_blank">our network</a>, <a href="http://revora.net/about/staff" target="_blank">staff</a>, <a href="http://revora.net/about/technology" target="_blank">technology</a> and <a href="http://revora.net/about/history" target="_blank">history</a> in a way that is fun and easy to read.<br />
- The magazine now has <a href="http://revora.net/magazine" target="_blank">it&#8217;s own special section</a>.<br />
- A new forum skin is made (Revora 2009) which better integrates the forum with the site. It really feels like the forum is part of the site now.</p>
<p><span style="text-decoration: underline;">Credits and Thanks</span><br />
This new website was not made possible by one person. We&#8217;d like to really thank:<br />
- WhatFace and ShadySaiyan for the awesome graphics. We couldn&#8217;t have done it without you!<br />
- Jeeves, Litso and others for the important feedback on the design and content.<br />
- Ash and Hostile for their textual contributions.<br />
- Myself, for developing the code and overseeing the project.<br />
- Dark Lord of the Sith, for being my valued co-leader.</p>
<p><span style="text-decoration: underline;">What to do</span><br />
Check out the new site, try the new forum skin and submit quotes for the quote of the day in the our quote topic. <img style="vertical-align: middle;" src="http://forums.revora.net/style_emoticons/default/smile.gif" /><br />
And of course, post your comments, positive and negative!</p>
]]></content:encoded>
			<wfw:commentRss>http://bartvh.nl/2009/12/revora-has-been-upgraded/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lost my photos</title>
		<link>http://bartvh.nl/2009/06/lost-my-photos/</link>
		<comments>http://bartvh.nl/2009/06/lost-my-photos/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 18:47:22 +0000</pubDate>
		<dc:creator>Bart</dc:creator>
				<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://bartvh.nl/?p=306</guid>
		<description><![CDATA[Windows and I are such idiots. I moved some nice pictures from my camera phone to my HDD and deleted the originals, only to find out later that I didn&#8217;t copy the files&#8230;I made shortcuts. My pictures&#8230;gone&#8230;
This happened because I dragged the files from one window to the other while holding Shift, thinking that this [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Windows and I are such idiots. I moved some nice pictures from my camera phone to my HDD and deleted the originals, only to find out later that I didn&#8217;t copy the files&#8230;I made shortcuts. My pictures&#8230;gone&#8230;</strong></p>
<p>This happened because I dragged the files from one window to the other while holding Shift, thinking that this makes Windows move them. It doesn&#8217;t. It makes shortcut. The key you want to hold for moving is Alt. Normally, I should&#8217;ve been able to notice the difference because of the little arrow Windows displays over all shortcuts. I didn&#8217;t&#8230;because I had disabled that arrow earlier.</p>
<p>Fortunately they&#8217;re nearly all pictures I can take again. Oh, and I managed to save thumbnails of about half of them (which Windows caches, so it still had them).</p>
]]></content:encoded>
			<wfw:commentRss>http://bartvh.nl/2009/06/lost-my-photos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Machine is Us/ing us</title>
		<link>http://bartvh.nl/2009/05/the-machine-is-using-us/</link>
		<comments>http://bartvh.nl/2009/05/the-machine-is-using-us/#comments</comments>
		<pubDate>Sat, 23 May 2009 11:31:27 +0000</pubDate>
		<dc:creator>Bart</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Movies/Video]]></category>

		<guid isPermaLink="false">http://bartvh.nl/?p=173</guid>
		<description><![CDATA[The future of the web. A must see if you&#8217;re into that stuff (like me).

]]></description>
			<content:encoded><![CDATA[<p>The future of the web. A must see if you&#8217;re into that stuff (like me).</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/6gmP4nk0EOE&#038;hl=nl&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/6gmP4nk0EOE&#038;hl=nl&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://bartvh.nl/2009/05/the-machine-is-using-us/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Portugal.nl, website of the explorer</title>
		<link>http://bartvh.nl/2008/10/portugal/</link>
		<comments>http://bartvh.nl/2008/10/portugal/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 11:36:10 +0000</pubDate>
		<dc:creator>Bart</dc:creator>
				<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://www.bartvanheukelom.nl/?p=48&amp;langswitch_lang=nl</guid>
		<description><![CDATA[Sinds een tijdje loop ik stage bij BliXem Internet Services in Nijmegen. Samen met mijn collega van school werk ik daar aan de website portugal.nl. Deze website gaat een complete informatiebron worden over het land Portugal. Men kan hier informatie lezen, de kaart bekijken, foto&#8217;s bewonderen, en later ook beoordelingen lezen en plaatsen en discussiëren [...]]]></description>
			<content:encoded><![CDATA[<p><!--:en-->Sinds een tijdje loop ik stage bij <a href="http://blixem.nl">BliXem Internet Services</a> in Nijmegen. Samen met <a href="http://www.carinepayens.nl/">mijn collega van school</a> werk ik daar aan de website portugal.nl. Deze website gaat een complete informatiebron worden over het land Portugal. Men kan hier informatie lezen, de kaart bekijken, foto&#8217;s bewonderen, en later ook beoordelingen lezen en plaatsen en discussiëren over hun ontdekkingsreizen (die ze overigens op de site kunnen vinden).</p>
<p>Ik werk aan de technische realisatie van de site, waarbij ik de backend maak (met PHP en MySQL) en de frontend (XHTML en CSS). De grafische vormgeving en inhoud laat ik over aan mijn collega.</p>
<p>Sinds gisteren staat de eerste versie van de website online. Er wordt dus nog aan gewerkt, maar wij ontvangen graag je commentaar.</p>
<p><strong><a href="http://www.portugal.nl">Ga naar Portugal.nl, de complete website over Portugal</a></strong><!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://bartvh.nl/2008/10/portugal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[lang_uk]Two Languages[/lang_uk]Twee Talen</title>
		<link>http://bartvh.nl/2008/05/lang_uktwo-languageslang_uklang_nltwee-talenlang_nl/</link>
		<comments>http://bartvh.nl/2008/05/lang_uktwo-languageslang_uklang_nltwee-talenlang_nl/#comments</comments>
		<pubDate>Wed, 28 May 2008 21:57:36 +0000</pubDate>
		<dc:creator>Bart</dc:creator>
				<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://www.bartvanheukelom.nl/?p=33&amp;langswitch_lang=nl</guid>
		<description><![CDATA[
[lang_uk]I just installed the great Language Switcher plugin, which allows me to use both the international my national language on this website. It&#8217;s really simple, you just install the plugin then you can write posts like this:[/lang_uk]Zojuist heb ik de handige Language Switcher plugin geinstalleerd. Deze stelt me in staat om de internationale en eigen [...]]]></description>
			<content:encoded><![CDATA[<p><!--:en-->
<p>[lang_uk]I just installed the great <a href="http://www.poplarware.com/languageplugin.html">Language Switcher</a> plugin, which allows me to use both the international my national language on this website. It&#8217;s really simple, you just install the plugin then you can write posts like this:[/lang_uk]<!--:nl-->Zojuist heb ik de handige <a href="http://www.poplarware.com/languageplugin.html">Language Switcher</a> plugin geinstalleerd. Deze stelt me in staat om de internationale en eigen taal beide op deze site te gebruiken. Het werkt erg gemakkelijk, je installeert de plugin, waarna je zulke posts kunt maken:<!--:--></p>
<p><code>&lt;p&gt;[ lang_uk ]I just installed the great &lt;a href="http://www.poplarware.com/languageplugin.html"&gt;Language Switcher&lt;/a&gt; plugin, which allows me to use both the international my national language on this website. It's really simple, you just install the plugin then you can write posts like this:[/ lang_uk ][ lang_nl ]Zojuist heb ik de handige &lt;a href="http://www.poplarware.com/languageplugin.html"&gt;Language Switcher&lt;/a&gt; plugin geinstalleerd. Deze stelt me in staat om de internationale en eigen taal beide op deze site te gebruiken. Het werkt erg gemakkelijk, je installeert de plugin, waarna je zulke posts kunt maken:<!--:-->&lt;/p&gt;</code><!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://bartvh.nl/2008/05/lang_uktwo-languageslang_uklang_nltwee-talenlang_nl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[lang_uk]What is RSS?[/lang_uk]Wat is RSS?</title>
		<link>http://bartvh.nl/2008/05/what-is-rss/</link>
		<comments>http://bartvh.nl/2008/05/what-is-rss/#comments</comments>
		<pubDate>Mon, 19 May 2008 19:08:58 +0000</pubDate>
		<dc:creator>Bart</dc:creator>
				<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://www.bartvanheukelom.nl/?p=32</guid>
		<description><![CDATA[

What is RSS? RSS stands for Really Simple Syndication. It&#8217;s a web standard for publishing news and other content that is updated regularly (blog posts, cartoons, etc.). For you, the consumer, it means you can gather all these RSS channels (called &#8216;feeds&#8217;) in a so-called RSS reader (or aggregator). This is a piece of software, [...]]]></description>
			<content:encoded><![CDATA[<p><!--:en-->
<div style=''>
<p>What is RSS? RSS stands for Really Simple Syndication. It&#8217;s a web standard for publishing news and other content that is updated regularly (blog posts, cartoons, etc.). For you, the consumer, it means you can gather all these RSS channels (called &#8216;feeds&#8217;) in a so-called RSS reader (or aggregator). This is a piece of software, much like an email program, which gathers all the content from the feeds and displays them to you in organised manner. That way, you no longer have to visit many website every day, you just launch your RSS reader once, and you instantly get to see any new stuff. Isn&#8217;t that handy?</p>
<p>There are many different RSS readers. My personal favorite is <a href="http://boreal.rssowl.org">RSSOwl 2</a>. It&#8217;s a stand-alone client which is very user friendly and organised.</p>
<p>There&#8217;s more than just stand-alone clients though. Many email programs (including Thunderbird, Outlook and GMail) have built-in RSS support too. Even handier, new mail and new content all in one place.</p>
<p>What are you waiting for? Try it now, <a href="http://www.bartvanheukelom.nl/?feed=rss2">using the feed of my site</a> (right-click, copy link location, paste in rss reader)</p>
<p><a href="http://en.wikipedia.org/wiki/RSS">Wikipedia on RSS</a></div>
<p><!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://bartvh.nl/2008/05/what-is-rss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Site for the Victory Engine</title>
		<link>http://bartvh.nl/2008/03/new-site-for-the-victory-engine/</link>
		<comments>http://bartvh.nl/2008/03/new-site-for-the-victory-engine/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 22:52:26 +0000</pubDate>
		<dc:creator>Bart</dc:creator>
				<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://www.bartvanheukelom.nl/?p=23</guid>
		<description><![CDATA[I&#8217;ve released a new site for the Victory Engine, a Java 2D Game Engine project I&#8217;m working on. You can find this site here. It&#8217;s a wiki, so you can edit it whenever you like!
]]></description>
			<content:encoded><![CDATA[<p><!--:en-->I&#8217;ve released a new site for the Victory Engine, a Java 2D Game Engine project I&#8217;m working on. You can find this site <a href="http://victory.openwarengine.org">here</a>. It&#8217;s a wiki, so you can edit it whenever you like!<!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://bartvh.nl/2008/03/new-site-for-the-victory-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good Phun</title>
		<link>http://bartvh.nl/2008/02/good-phun/</link>
		<comments>http://bartvh.nl/2008/02/good-phun/#comments</comments>
		<pubDate>Fri, 22 Feb 2008 20:56:08 +0000</pubDate>
		<dc:creator>Bart</dc:creator>
				<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://www.bartvanheukelom.nl/?p=22</guid>
		<description><![CDATA[Today I was told of a little &#8220;game&#8221; called Phun. It&#8217;s a 2D physics sandbox, in which you can draw all kind of shapes, link them together and run the simulation the create some awesome effects or even complex machines.

Download
]]></description>
			<content:encoded><![CDATA[<p><!--:en-->Today I was told of a little &#8220;game&#8221; called Phun. It&#8217;s a 2D physics sandbox, in which you can draw all kind of shapes, link them together and run the simulation the create some awesome effects or even complex machines.</p>
<p><img src="http://www.acc.umu.se/~emilk/screenshots/phun_080212_0002_small.png" alt="Phun Screenshot" height="192" width="256" /></p>
<p><a href="http://www.acc.umu.se/~emilk/">Download</a><!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://bartvh.nl/2008/02/good-phun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
