<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Bokko.nl</title>
	<link>http://www.bokko.nl</link>
	<description>Things stuff and more</description>
	<lastBuildDate>Thu, 12 Jan 2012 08:24:41 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.2.1" -->

	<item>
		<title>Increase fastCgi / PHP activityTimeout in IIS7</title>
		<description><![CDATA[When your have installed PHP with the Microsoft web platform installer PHP is installed in C:\Program Files (x86)\PHP\v5.2.
When your PHP script runs longer than 10 minutes (600 seconds) you will get an 500 Internal server error.
To fix this issue you will need to increase the fastCgi activityTimeout in IIS7.
After Googling around i found a solutions, [...]]]></description>
		<link>http://www.bokko.nl/increase-fastcgi-php-activitytimeout-in-iis7/</link>
			</item>
	<item>
		<title>Connect to Windows Samba share on Mac OSX with SSH</title>
		<description><![CDATA[After some googling around i found this post. It's a very clear howto on connecting to a Windows Samba share on your Mac OSX with SSH. For example your NAS at home from any other location.
I copied it to my own site to be sure it stays on the web.
All credits go to the author.

Chances [...]]]></description>
		<link>http://www.bokko.nl/connect-to-windows-samba-share-on-mac-osx-with-ssh/</link>
			</item>
	<item>
		<title>Must have Mac OSX Apps: RCDefaultApp</title>
		<description><![CDATA[RCDefaultApp allows to set the default applications used for various URL schemes, file extensions, file types, MIME types, and Uniform Type Identifiers from within a very easy interface. You can manage all your default settings from a single point. A handy feature is the ability to be able to override the default application for new [...]]]></description>
		<link>http://www.bokko.nl/must-have-mac-osx-apps-rcdefaultapp/</link>
			</item>
	<item>
		<title>Must have Mac OSX Apps: Xee</title>
		<description><![CDATA[Xee is the ultimate replacement for the zero-feature image viewer that comes with your mac.
The features of xee are:

Display a large number of image formats - any format QuickTime or Preview
can open, plus several more, including PCX, Maya IFF and Amiga IFF-ILBM.
Easy browse through folders of images - open any file in a
folder and use [...]]]></description>
		<link>http://www.bokko.nl/must-have-mac-osx-apps-xee/</link>
			</item>
	<item>
		<title>Generate CSR for apache with mod_ssl</title>
		<description><![CDATA[This post is just as a reminder so i can look this up when i need to.. But if it helps you that's great.
To generate a 2048 bits certificate request do this:
openssl genrsa -out www.whatever.nl.key 2048
openssl req -new -key www.whatever.nl.key -out www.whatever.nl.csr
In the vhost add this:
SSLCertificateFile /where/ever/www.whatever.nl.crt
SSLCertificateKeyFile /where/ever/www.whatever.nl.key
When a intermediate CA is needed, download it, [...]]]></description>
		<link>http://www.bokko.nl/generate-csr-for-apache-with-mod_ssl/</link>
			</item>
	<item>
		<title>Must have Mac OSX App: TotalFinder</title>
		<description><![CDATA[The Finder is the worst thing on the mac if you ask me, there are several missing features for example the abilty tho show folders before files, show hidden files, no creation of those irritating .DS_Store files etc.
TotalFinder, from BinaryAge, does everything i miss in the default mac finder. A few features i like the [...]]]></description>
		<link>http://www.bokko.nl/must-have-mac-osx-app-totalfinder/</link>
			</item>
	<item>
		<title>Textmate command: url-safe</title>
		<description><![CDATA[Transforms each line in you text file to an url-safe line. I use this for example to transform product names to url-safe names which i can use in a webshop.

#!/usr/bin/env php
&#60;?php
	$stdin = file_get_contents("php://stdin");
	$lines = split("\n", $stdin);
	$newlines = array();
	foreach($lines as $line) {
		$line = strtolower($line);
		$line = preg_replace("/\s+/","-",$line);
		$line = preg_replace("/[^a-z0-9_\-]/","",$line);
		$newlines[] = $line;
	}
	echo join("\n", $newlines);
?&#62;

]]></description>
		<link>http://www.bokko.nl/textmate-command-url-safe/</link>
			</item>
	<item>
		<title>Textmate command: sort</title>
		<description><![CDATA[
#!/usr/bin/env php
&#60;?php
	$stdin = file_get_contents("php://stdin");
	$lines = split("\n", $stdin);
	sort($lines);
	echo implode("\n", $lines);
?&#62;

]]></description>
		<link>http://www.bokko.nl/textmate-command-sort/</link>
			</item>
	<item>
		<title>Textmate command: lowercase</title>
		<description><![CDATA[#!/usr/bin/env php
&#60;?php
	$stdin = file_get_contents("php://stdin");
	echo strtolower($stdin);
?&#62;
]]></description>
		<link>http://www.bokko.nl/textmate-command-lowercase/</link>
			</item>
	<item>
		<title>The best editor on mac osx #textmate create your own commands using PHP</title>
		<description><![CDATA[With the bundle editor it's possible to create your own commands. And the best thing ever is you can use PHP in your commands.
Now i can do virtually anything, advanced text conversions, even with database lookups!

]]></description>
		<link>http://www.bokko.nl/the-best-editor-on-mac-osx-textmate-create-your-own-commands-using-php/</link>
			</item>
</channel>
</rss>

