<?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>Flyweb</title>
	<atom:link href="http://www.flyweb.nl/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flyweb.nl/wordpress</link>
	<description>nothing @ all</description>
	<lastBuildDate>Thu, 20 Aug 2015 11:43:04 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.2.10</generator>
	<item>
		<title>Dit is een test blogje</title>
		<link>http://www.flyweb.nl/wordpress/index.php/2013/03/04/dit-is-een-test-blogje/</link>
		<comments>http://www.flyweb.nl/wordpress/index.php/2013/03/04/dit-is-een-test-blogje/#comments</comments>
		<pubDate>Mon, 04 Mar 2013 22:07:38 +0000</pubDate>
		<dc:creator><![CDATA[Martin]]></dc:creator>
				<category><![CDATA[design and graphics]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.flyweb.nl/wordpress/?p=341</guid>
		<description><![CDATA[WordPress 3.5.1 is now available. Version 3.5.1 is the first maintenance release of 3.5, fixing 37 bugs. It is also a security release for all previous WordPress versions. For a full list of changes, consult the list of tickets and the changelog, which inclu]]></description>
				<content:encoded><![CDATA[<p>WordPress 3.5.1 is now available. Version 3.5.1 is the first maintenance release of 3.5, fixing 37 bugs. It is also a security release for all previous WordPress versions. For a full list of changes, consult the list of tickets and the changelog, which inclu</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flyweb.nl/wordpress/index.php/2013/03/04/dit-is-een-test-blogje/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digitally Conned by Dove</title>
		<link>http://www.flyweb.nl/wordpress/index.php/2006/10/19/digitally-conned-by-dove/</link>
		<comments>http://www.flyweb.nl/wordpress/index.php/2006/10/19/digitally-conned-by-dove/#comments</comments>
		<pubDate>Thu, 19 Oct 2006 14:18:35 +0000</pubDate>
		<dc:creator><![CDATA[Martin]]></dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[odd pieces]]></category>

		<guid isPermaLink="false">http://www.flyweb.nl/index.php/2006/10/19/digitally-conned-by-dove/</guid>
		<description><![CDATA[Dove cosmetics shows us what can be done with cutting edge graphics manipulation. I couldn&#8217;t help laughing about it. It&#8217;s fun to watch. Have a look yourself.]]></description>
				<content:encoded><![CDATA[<p>Dove cosmetics shows us what can be done with cutting edge graphics manipulation. I couldn&#8217;t help laughing about it. It&#8217;s fun to watch. Have a look yourself.</p>
<p><a href="http://www.flyweb.nl/wordpress/index.php/2006/10/19/digitally-conned-by-dove/"><em>Click here to view the embedded video.</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flyweb.nl/wordpress/index.php/2006/10/19/digitally-conned-by-dove/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Syntax highlighter activated</title>
		<link>http://www.flyweb.nl/wordpress/index.php/2006/10/11/syntax-hightlighter-activated/</link>
		<comments>http://www.flyweb.nl/wordpress/index.php/2006/10/11/syntax-hightlighter-activated/#comments</comments>
		<pubDate>Wed, 11 Oct 2006 13:18:45 +0000</pubDate>
		<dc:creator><![CDATA[Martin]]></dc:creator>
				<category><![CDATA[design and graphics]]></category>
		<category><![CDATA[tips and tutorials]]></category>

		<guid isPermaLink="false">http://www.flyweb.nl/index.php/2006/10/11/syntax-hightlighter-activated/</guid>
		<description><![CDATA[Well, it goes like so . . . Thanks goes to Vijesh Mehta. Great visual enhancement. I think it&#8217;s cool. function show_photos_main() { $album = $_GET['album']; $photo = $_GET['photo']; $page = $_GET['page']; $tags = $_GET['tags']; $show = $_GET['show']; $output = ''; $continue = true; if (!is_null($show)) { if ($show == 'tags') { $output = $this->show_tags(); [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Well, it goes like so . . . Thanks goes to <a href="http://www.lastengine.com/syntax-highlighter-wordpress-plugin/" rel="External" title="External link" class="liexternal">Vijesh Mehta</a>. Great visual enhancement. I think it&#8217;s cool.<br />
<span id="more-206"></span></p>
<pre class="brush:php">
function show_photos_main() {
	$album = $_GET['album'];
	$photo = $_GET['photo'];
	$page = $_GET['page'];
	$tags = $_GET['tags'];
	$show = $_GET['show'];

	$output = '';
	$continue = true;
	if (!is_null($show)) {
		if ($show == 'tags') {
		$output = $this->show_tags();
		$continue = false;
		}
		elseif ($show == 'recent') {
		$tags = '';
		}
	}

	if ($continue) {
		// Show list of albums/photosets (none have been selected yet)
		if (is_null($album) &amp;&amp; is_null($tags) &amp;&amp; is_null($photo)) {
		$output = $this->show_albums($page);
		}
		// Show list of photos in the selected album/photoset
		elseif (!is_null($album) &amp;&amp; is_null($photo)) {
		$output = $this->show_album_thumbnails($album, $page);
		}
		// Show list of photos of the selected tags
		elseif (!is_null($tags) &amp;&amp; is_null($photo)) {
		$output = $this->show_tags_thumbnails($tags, $page);
		}
		// Show the selected photo in the slected album/photoset
		elseif ((!is_null($album) || !is_null($tags)) &amp;&amp; !is_null($photo)) {
		$output = $this->show_photo($album, $tags, $photo, $page);
		}
	}

	if ($this->has_error) {
		$this->template->reset('error');
		$this->template->set('message', $this->error_detail);
		$output = $this->template->fetch();
	}

	return $output;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.flyweb.nl/wordpress/index.php/2006/10/11/syntax-hightlighter-activated/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Flyweb Pink for October</title>
		<link>http://www.flyweb.nl/wordpress/index.php/2006/10/06/flyweb-pink-for-october/</link>
		<comments>http://www.flyweb.nl/wordpress/index.php/2006/10/06/flyweb-pink-for-october/#comments</comments>
		<pubDate>Fri, 06 Oct 2006 12:29:16 +0000</pubDate>
		<dc:creator><![CDATA[Martin]]></dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[piclens-icon]]></category>

		<guid isPermaLink="false">http://www.flyweb.nl/index.php/2006/10/06/flyweb-pink-for-october/</guid>
		<description><![CDATA[I’m a bit late to the party here, but what the hell. Inspired by Phu, Anton and Matthew, I’ve turned this site ever so subtly Pink for October (you might need to hit refresh), in support of National Breast Cancer Awareness Month.]]></description>
				<content:encoded><![CDATA[<p>I’m a bit late to the party here, but what the hell. </p>
<p><img class="i_left" id="image204" src="http://www.flyweb.nl/wordpress/wp-content/uploading/2006/10/notsurewho.gif" width="250" height="100" alt="pinkforoctober" /></p>
<p>Inspired by <a href="http://ifelse.co.uk/archives/2006/10/01/a-pink-redesign/" rel="External" class="liexternal">Phu</a>, <a href="http://antonpeck.com/journal/pink_for_october/" rel="External" class="liexternal">Anton</a> and <a href="http://www.thewatchmakerproject.com/journal/373/pink-for-october" rel="External" class="liexternal"> Matthew</a>, I’ve turned this site ever so subtly <a href="http://www.pinkforoctober.org/" rel="External" class="liexternal">Pink for October</a> (you might need to hit refresh), in support of <a href="http://www.nbcam.com/" rel="External" class="liexternal">National Breast Cancer Awareness Month</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flyweb.nl/wordpress/index.php/2006/10/06/flyweb-pink-for-october/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AJAX (not) AJAX</title>
		<link>http://www.flyweb.nl/wordpress/index.php/2006/09/24/ajax-not-ajax/</link>
		<comments>http://www.flyweb.nl/wordpress/index.php/2006/09/24/ajax-not-ajax/#comments</comments>
		<pubDate>Sun, 24 Sep 2006 17:29:05 +0000</pubDate>
		<dc:creator><![CDATA[Martin]]></dc:creator>
				<category><![CDATA[design and graphics]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[relaxing]]></category>

		<guid isPermaLink="false">http://www.flyweb.nl/index.php/2006/09/24/ajax-not-ajax/</guid>
		<description><![CDATA[No not Asynchronous Javascript eXtensions. Last friday I went to a trainings-exercise of the proud of Amsterdam. The AJAX soccerteam. The school organised it, it was great. Once an acclaimed soccer club. Today still in the top regions of dutch soccer but not as gr8 as it used tobe.]]></description>
				<content:encoded><![CDATA[<p>No not Asynchronous Javascript eXtensions. Last friday <span class="pullquote">I went to a trainings-exercise of the proud of Amsterdam</span>. <a href="http://www.ajax.nl" rel="External" title="External link" class="liexternal">The AJAX soccerteam</a>. The school organised it, it was great. Once an acclaimed soccer club. Today still in the top regions of dutch soccer but not as gr8 <a href="http://www.ajaxonline.org/" rel="External" title="External link" class="liexternal">as it used</a> tobe.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-9377895566950447";
google_ad_width = 438;
google_ad_height = 15;
google_ad_format = "468x15_0ads_al_s";
google_ad_channel ="";
google_color_border = "EEEEEE";
google_color_bg = "ffffff";
google_color_link = "A9A9A9";
google_color_url = "ecefed";
google_color_text = "666666";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flyweb.nl/wordpress/index.php/2006/09/24/ajax-not-ajax/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Newest Flickrzzz</title>
		<link>http://www.flyweb.nl/wordpress/index.php/2006/09/24/newest-flickrzzz/</link>
		<comments>http://www.flyweb.nl/wordpress/index.php/2006/09/24/newest-flickrzzz/#comments</comments>
		<pubDate>Sun, 24 Sep 2006 17:18:55 +0000</pubDate>
		<dc:creator><![CDATA[Martin]]></dc:creator>
				<category><![CDATA[design and graphics]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[relaxing]]></category>

		<guid isPermaLink="false">http://www.flyweb.nl/index.php/2006/09/24/newest-flickrzzz/</guid>
		<description><![CDATA[I have uploaded my newest Flickr photos. Two new sets actually: Vlissingen Tim Thought you&#8217;d like to know 😉]]></description>
				<content:encoded><![CDATA[<p>I have uploaded my newest Flickr photos.<br />
Two new sets actually:</p>
<ul>
<li><a href="http://www.flickr.com/photos/flyweb/sets/72157594297622623/" rel="External" title="External link" class="liexternal">Vlissingen</a></li>
<li><a href="http://www.flickr.com/photos/flyweb/sets/72057594057435731/" rel="External" title="External link" class="liexternal">Tim</a></li>
</ul>
<p>Thought you&#8217;d like to know <img src="http://s.w.org/images/core/emoji/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flyweb.nl/wordpress/index.php/2006/09/24/newest-flickrzzz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another day another theme</title>
		<link>http://www.flyweb.nl/wordpress/index.php/2006/09/15/another-day-another-theme/</link>
		<comments>http://www.flyweb.nl/wordpress/index.php/2006/09/15/another-day-another-theme/#comments</comments>
		<pubDate>Fri, 15 Sep 2006 21:16:45 +0000</pubDate>
		<dc:creator><![CDATA[Martin]]></dc:creator>
				<category><![CDATA[design and graphics]]></category>
		<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.flyweb.nl/index.php/2006/09/15/another-day-another-theme/</guid>
		<description><![CDATA[Mood changes As you can see I made another change. Again You might say I am a bit restless. True. It is the fun of it. Really. The default Kubrick is just so perfect but. . . lacks some hype and further possiblities I thought. So obvious one should have a look at . . [&#8230;]]]></description>
				<content:encoded><![CDATA[<h3>Mood changes</h3>
<p>As you can see I made another change. Again <img src="http://www.flyweb.nl/wordpress/wp-includes/images/smilies/simple-smile.png" alt=":)" class="wp-smiley" style="height: 1em; max-height: 1em;" /> You might say I am a bit restless. True. It is the fun of it. Really. The default Kubrick is just so perfect but. . . lacks some hype and further possiblities I thought. So obvious one should have a look at . . . right!, <a href="http://getk2.com/" rel="External" title="External link" class="liexternal">K2</a> by again that same <a href="http://binarybonsai.com" rel="External" title="External link" class="liexternal">Michael Heilemann</a>, amongst many others who help out. Further readings and sightings can be observed here:</p>
<ul>
<li><a href="http://k2.stikipad.com/" rel="External" title="External link" class="liexternal">Official K2 docu-site.</a></li>
<li>Flickr has it&#8217;s own <a href="http://www.flickr.com/groups/binarybonsai/pool/" rel="External" title="External link" class="liexternal">K2/Binarybonsai Pool.</a></li>
<li>Colin built himself a <a href="http://k2.infiity.com/" rel="External" title="External link" class="liexternal">true K2 home</a> with lots of useful info about modding K2 and optimizing the theme.</li>
<li><a href="http://www.matthewstinson.net/archives/2005/09/18/k2-how2/" rel="External" title="External link" class="liexternal">Matthew Stinson</a> wrote some interesting tutorials about K2 adaptations.</li>
</ul>
<h3>So why K2?</h3>
<p>It&#8217;s state of the art. What is? Primarily <acronym title="Asynchronous Javascript And XML">AJAX</acronym> functionality. Livecomments, watch your comments been added real-time, no refreshing of the page you were reading. Amazing. Hitting enter after you&#8217;ve typed in a search, no more. As you type in your keyword(s) watch the main content on the left be changed realtime with the results. Cool. Behind the scenes, AJAX aswell. In the admin section of your <a href="http://wordpress.org/" rel="External" title="External link" class="liwp">WordPress</a> blog K2 has made it super simple for everyone. Adding custom header images, on the fly. Changing blocks in your sidebar, on the fly, dragging and dropping, realtime changes. Wow. Options, options galore.</p>
<h3>Rest &#8216;n peace?</h3>
<p>Dunno. It&#8217;s something duallistic within me. One side says &#8220;knock it off&#8221;, get some sleep. The other is already thinking about more and more possibilities. It is a mental illness for sure ;).</p>
<h3>K2 theme</h3>
<p>Credits go to <a href="http://blog.moskis.net/" rel="External" title="External link" class="liexternal">Th3 Prophetman</a>. He made the fine K2-style &#8216;<a href="http://blog.moskis.net/downloads/blue-k2-en/" rel="External" title="External link" class="liexternal">Blue-K2</a>&#8216;. The style from which I modded mine. Actually I only added Blue-K2&#8217;s header, footer and background images. The rest is 100% pure K2 native. Well almost. Many thanks go to the Th3 Prophetman. All in all Flyweb&#8217;s look is a bit like Kubrick-classic don&#8217;t you think? Precisely, that&#8217;s what I wanted in the first place.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flyweb.nl/wordpress/index.php/2006/09/15/another-day-another-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kubrick and WordPress</title>
		<link>http://www.flyweb.nl/wordpress/index.php/2006/09/06/kubrick-and-wordpress/</link>
		<comments>http://www.flyweb.nl/wordpress/index.php/2006/09/06/kubrick-and-wordpress/#comments</comments>
		<pubDate>Wed, 06 Sep 2006 09:48:38 +0000</pubDate>
		<dc:creator><![CDATA[Martin]]></dc:creator>
				<category><![CDATA[design and graphics]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[tips and tutorials]]></category>

		<guid isPermaLink="false">http://www.flyweb.nl/index.php/2006/09/06/kubrick-and-wordpress/</guid>
		<description><![CDATA[Switch Okay I made a decision. Let&#8217;s go back to basics. After spending much time in trying all sorts of themes I switched to the default WordPress theme Kubrick by Michael Heilemann. The themes I have tried out so far: Emire from Phu Ly Glued-Ideas Subtle from Christopher Frazier Hemingway from Kyle Neath Regulus from [&#8230;]]]></description>
				<content:encoded><![CDATA[<h2>Switch</h2>
<p>Okay I made a decision. Let&#8217;s go back to basics. After spending much time in trying all sorts of themes I switched to the default WordPress theme <a href="http://binarybonsai.com/kubrick/" rel="External" title="External link" class="liexternal">Kubrick</a> by Michael Heilemann. The themes I have tried out so far:</p>
<ul>
<li>Emire from <a href="http://ifelse.co.uk/" rel="External" title="External link" class="liexternal">Phu Ly</a></li>
<li>Glued-Ideas Subtle from <a href="http://blog.gluedideas.com/" rel="External" title="External link" class="liexternal">Christopher Frazier</a></li>
<li>Hemingway from <a href="http://warpspire.com/hemingway" rel="External" title="External link" class="liexternal">Kyle Neath</a></li>
<li>Regulus from <a href="http://www.binarymoon.co.uk/regulus/ " rel="External" title="External link" class="liexternal">Ben Gillbanks</a></li>
</ul>
<p>To name just the ones I enjoyed quite a bit. Another theme that caught my attention for it&#8217;s nice layout and use of AJAX snippets is &#8216;Lush&#8217; from <a href="http://www.i-jeriko.de/2006/03/06/introducing-lush-for-wordpress/" rel="External" title="External link" class="liexternal">Marco van Hylckama Vlieg and Christoph Boecken</a>. I haven&#8217;t decided yet for it has some limitations on the way it&#8217;ll render on <a href="http://www.mozilla.com/firefox/central/" rel="External" title="External link" class="liexternal">FireFox</a>.</p>
<h2>So why the change to Kubrick?</h2>
<p>Well I was a bit bored. It clearly seems that the more a theme offers in colors, layout, useability the faster it bored me. Anyway that&#8217;s one explanation. Another might be that I am still charmed by the raw simplicity that Kubrick offers. It&#8217;s almost like this theme is the foundation of all blog-themes. And maybe it is. Offcourse I adjusted one thingy or two. To name a few modifications I have made:</p>
<ul>
<li>Added <a href="http://addictedtonew.com" rel="External" title="External link" class="liexternal">LiveSearch AJAX</a> powered search, instead of the default/conventional search method, by John Nunemaker.</li>
<li>Altered the rather dull &#060;h2&#062; font family by a more stylish one, Century Gothic. I like it&#8217;s <a href="http://www.answers.com/typography" rel="External" title="External link" class="liexternal">typography</a> more.</li>
<li>Added a more efficient way to navigate my blog by use of <a href="http://www.liewcf.com/blog/archives/2005/05/wordpress-navigation-bar/" rel="External" title="External link" class="liexternal">Liew Cheon Fong&#8217;s</a> &#8216;SuperNav-bar&#8217;.</li>
</ul>
<h2>The plugins I use</h2>
<ul>
<li><a href="http://blog.taragana.com/index.php/archive/taraganas-delicious-mp3-player-wordpress-plugin/" rel="External" title="External link" class="liexternal">Taragana&#8217;s</a> Del.icio.us mp3 Player. Which you can see in <a href="http://www.flyweb.nl/index.php/interests/" title="mp3 player" class="liinternal">action here</a>.</li>
<li>WP Lightbox 2 and Falbum mashup by <a href="http://www.huddletogether.com/projects/lightbox2/" rel="External" title="External link" class="liexternal">Lokesh Dhakar</a> and <a href="http://www.randombyte.net/wiki/falbum/falbum " rel="External" title="External link" class="liexternal">Elijah Cornell</a> respectively and <a href="http://www.gringod.com" rel="External" title="External link" class="liexternal">Adrian (a.k.a. GrinGod)</a> responsible for the mashup.
</li>
<li>Ultimate Tag Warrior by <a href="http://www.neato.co.nz" rel="External" title="External link" class="liexternal">Christine Davis</a>.</li>
<li>Viper&#8217;s Video QuickTags by <a href="http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/" rel="External" title="External link" class="liexternal">Viper007bond</a>.</li>
<li>The Excerpt Reloaded by <a href="http://guff.szub.net/the-excerpt-reloaded/ " rel="External" title="External link" class="liexternal">Kaf Oseo</a></li>
<li>WP-PageNavi by <a href="http://www.lesterchan.net/portfolio/programming.php " rel="External" title="External link" class="liexternal">GaMerZ</a></li>
<li>SEM Recent Comments and Recent Posts by <a href="http://www.semiologic.com" rel="External" title="External link" class="liexternal">Denis de Bernardy</a></li>
<li>Anti Spam Image by <a href="http://www.infor96.com/~nio/archives/369" rel="External" title="External link" class="liexternal">Krazy Nio</a></li>
<li>DD Formmailer by <a href="http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/ " rel="External" title="External link" class="liexternal">Aleister</a></li>
<li>FlickrRSS by <a href="http://eightface.com/wordpress/flickrrss/ " rel="External" title="External link" class="liexternal">Dave Kellam</a></li>
<li>Subscribe to Comments by <a href="http://txfx.net/code/wordpress/subscribe-to-comments/" rel="External" title="External link" class="liexternal">Mark Jaquith and Jennifer (ScriptyGoddess)</a></li>
<li>Related Posts by <a href="http://www.w-a-s-a-b-i.com/archives/2006/02/02/wordpress-related-entries-20/" rel="External" title="External link" class="liexternal">Alexander Malov &#038; Mike Lu</a></li>
<li>AdSense DeLuxe by <a href="http://www.acmetech.com/blog/adsense-deluxe/ " rel="External" title="External link" class="liexternal">Acme Technologies</a></li>
<li>Gravatars by <a href="http://www.skippy.net/blog/2005/03/24/gravatars/ " rel="External" title="External link" class="liexternal">Scott Merrill</a> a.k.a. &#8216;Skippy&#8217;.</li>
<li>InlineRSS by <a href="http://www.iconophobia.com/ " rel="External" class="liexternal">Cal Demaine</a>. In action <a href="http://www.flyweb.nl/index.php/news/" rel="External" title="RSS, XML news feed" class="liinternal">here</a>.</li>
<li>Exec-PHP by <a href="http://www.soeren-weber.net/post/2005/08/18/50/ " rel="External" title="External link" class="liexternal">S&ouml;ren Weber</a></li>
</ul>
<p>And a few more I didn&#8217;t mention because it&#8217;s use isn&#8217;t visible on the blog but in the admin section.</p>
<p>Another nice feature I discovered was the Kubrick-Headermaker a.k.a. &#8220;Kubrickr&#8221; by <a href="http://www.redalt.com/Tools/kubrickr.php" rel="External" title="External link" class="liexternal">Owen Winkler at RedAlt</a>. You really should try it out. I realize that this might be old information but I was glad I found it. Result&#8230;look at the header image. Like it?</p>
<h2>Conclusion</h2>
<p>I am defnitely going to change again. I just love the work in getting a theme modded to my likings and making it XHTML Strict 1.0.</p>
<h2>Wishes for Kubrick</h2>
<p>I am still very interested in more AJAX control. This site is powered with the <a href="http://script.aculo.us/" rel="External" title="External link" class="liexternal">Script.aculo.us</a> scripts. But other, maybe lighter/easier script suites are waiting like <a href="http://moofx.mad4milk.net/" rel="External" title="External link" class="liexternal">Moo.FX</a>. And even maybe <a href="http://www.rubyonrails.org/" rel="External" title="External link" class="liexternal">Ruby on Rails</a> stuff. I have a lot todo. But to stick with Script.aculo.us seems difficult because of its bugs. In certain situations IE and FF crash because of Script.aculo.us. That&#8217;s a pitty.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flyweb.nl/wordpress/index.php/2006/09/06/kubrick-and-wordpress/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>ClearerType</title>
		<link>http://www.flyweb.nl/wordpress/index.php/2006/09/01/clearertype/</link>
		<comments>http://www.flyweb.nl/wordpress/index.php/2006/09/01/clearertype/#comments</comments>
		<pubDate>Fri, 01 Sep 2006 21:37:16 +0000</pubDate>
		<dc:creator><![CDATA[Martin]]></dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[tips and tutorials]]></category>

		<guid isPermaLink="false">http://www.flyweb.nl/index.php/2006/09/01/clearertype/</guid>
		<description><![CDATA[Internet Explorer Features A nice new feature of IE7 I noticed last week: ClearType is now a browser-specific feature. When Windows XP was released in 2001, Microsoft launched ClearType as a way of smoothing on-screen fonts. Great, except for some reason, it was off by default. Most users never found the setting to enable it, [&#8230;]]]></description>
				<content:encoded><![CDATA[<h2>Internet Explorer Features</h2>
<p>A nice new feature of IE7 I noticed last week: <a href="http://www.microsoft.com/typography/WhatIsClearType.mspx" class="liexternal">ClearType</a> is now a browser-specific feature.</p>
<p><img class="i_center" width="350" height="123" alt="ClearType in IE7, overlaying pixellated text in IE6" src="http://www.flyweb.nl/wordpress/wp-content/themes/default/images/cleartype.gif" /></p>
<p>When Windows XP was released in 2001, Microsoft launched ClearType as a way of smoothing on-screen fonts. Great, except for some reason, it was <em>off</em> by default. Most users never found the setting to enable it, so for the past 5 years, we’ve still had to assume users are seeing ugly pixellated fonts on the web.<br />
But Vista aside, even in the forthcoming IE7 for XP, ClearType is a browser-specific setting and it’s enabled by default. Combine this with IE7’s presumed quick march onto user’s systems, and we’re going to see a whole lot of ClearType in the near future.</p>
<p><img class="i_center" width="350" height="123" alt="Preferences dialogue window highlighting ClearType switched on" src="http://www.flyweb.nl/wordpress/wp-content/themes/default/images/cleartype2-sm.gif" /></p>
<p>Nicely done, IE team.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flyweb.nl/wordpress/index.php/2006/09/01/clearertype/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ecto for WordPress</title>
		<link>http://www.flyweb.nl/wordpress/index.php/2006/08/31/ecto-for-wordpress/</link>
		<comments>http://www.flyweb.nl/wordpress/index.php/2006/08/31/ecto-for-wordpress/#comments</comments>
		<pubDate>Thu, 31 Aug 2006 06:59:29 +0000</pubDate>
		<dc:creator><![CDATA[Martin]]></dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[tips and tutorials]]></category>

		<guid isPermaLink="false">http://www.flyweb.nl/index.php/2006/08/31/ecto-for-wordpress/</guid>
		<description><![CDATA[The previous post said things about Microsoft&#8217;s Live Writer for Windows. Now I am scribbling something down about Ecto. Yes, I know, this thingy costs money and the other is absolutely free. Since I am a somewhat adventurous type I decided to put some money where my mouth is and spent EURO 17.80. I think [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>The previous post said things about <a href="http://windowslivewriter.spaces.live.com/" title="Live Writer" class="liexternal">Microsoft&#8217;s Live Writer for Windows</a>. Now I am scribbling something down about <a href="http://ecto.kung-foo.tv/" title="Ecto" class="liexternal">Ecto</a>. Yes, I know, this thingy costs money and the other is absolutely free. Since I am a somewhat adventurous type I decided to put some money where my mouth is and spent EURO 17.80. I think that&#8217;s quite reasonable. Thing is that for some absolutely unknown reason, and believe me I have tried every option in the <a href="http://www.wordpress.org" title="WordPress" class="liwp">WordPress</a> book, I can&#8217;t save my posts. It&#8217;s probably a Windows thing. So these came on my path. Live Writer is free intuitive enough but lacks certain features that we WordPress bloggers need. The main thing are the tags. Ecto provides these. Amongst other features. So spent some euros and using Ecto is a relieve. You can always try the 20 day trial if you want, it&#8217;s worth a shot.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-9377895566950447";
google_ad_width = 438;
google_ad_height = 15;
google_ad_format = "468x15_0ads_al_s";
google_ad_channel ="";
google_color_border = "EEEEEE";
google_color_bg = "ffffff";
google_color_link = "A9A9A9";
google_color_url = "ecefed";
google_color_text = "666666";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flyweb.nl/wordpress/index.php/2006/08/31/ecto-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
