<?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>ThumNet &#187; ThumNet</title>
	<atom:link href="http://blog.thumnet.com/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.thumnet.com</link>
	<description>- Jeffrey Tummers</description>
	<lastBuildDate>Fri, 23 Sep 2011 21:33:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Updated to Graphene theme</title>
		<link>http://blog.thumnet.com/updated-to-graphene-theme/226/</link>
		<comments>http://blog.thumnet.com/updated-to-graphene-theme/226/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 21:33:48 +0000</pubDate>
		<dc:creator>ThumNet</dc:creator>
				<category><![CDATA[Theme]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[graphene]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.thumnet.com/?p=226</guid>
		<description><![CDATA[I&#8217;ve been a co-developer for the WordPress Graphene Theme since February 2011, and it&#8217;s about time a starting using this great theme on my own blog You can follow our development at Google Code &#8211; http://code.google.com/p/graphene/, here you can also report bugs and request new features. The original developer and designer of the theme is &#8230; </p><p><a class="more-link block-button" href="http://blog.thumnet.com/updated-to-graphene-theme/226/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been a co-developer for the <a href="http://wordpress.org/extend/themes/graphene">WordPress Graphene Theme</a> since February 2011, and it&#8217;s about time a starting using this great theme on my own blog <img src='http://blog.thumnet.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a href="http://blog.thumnet.com/wp-content/uploads/2011/09/screenshot.png" rel="lightbox[226]"><img src="http://blog.thumnet.com/wp-content/uploads/2011/09/screenshot.png" alt="" title="Graphene Screenshot" width="300" height="225" class="aligncenter size-full wp-image-227" /></a></p>
<p>You can follow our development at Google Code &#8211; <a href="http://code.google.com/p/graphene/">http://code.google.com/p/graphene/</a>, here you can also report bugs and request new features.</p>
<p>The original developer and designer of the theme is Syahir Hakim, on his <a href="http://www.khairul-syahir.com/wordpress-dev/graphene-theme">blog</a> you can read a bit more about the theme.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thumnet.com/updated-to-graphene-theme/226/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress pages into nested tree array</title>
		<link>http://blog.thumnet.com/wordpress-pages-into-nested-tree-array/220/</link>
		<comments>http://blog.thumnet.com/wordpress-pages-into-nested-tree-array/220/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 21:18:38 +0000</pubDate>
		<dc:creator>ThumNet</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.thumnet.com/?p=220</guid>
		<description><![CDATA[I was looking for a way to get a nested array (or tree array) from the pages or posts in WordPress, for a theme I&#8217;m currently working on. If you just want to display the links you could use the wp_list_pages() function. But this wont get you a nested array, then there are the functions &#8230; </p><p><a class="more-link block-button" href="http://blog.thumnet.com/wordpress-pages-into-nested-tree-array/220/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>I was looking for a way to get a nested array (or tree array) from the pages or posts in WordPress, for a theme I&#8217;m currently working on.</p>
<p>If you just want to display the links you could use the <a href="http://codex.wordpress.org/Template_Tags/wp_list_pages">wp_list_pages()</a> function.</p>
<p>But this wont get you a nested array, then there are the functions <a href="http://codex.wordpress.org/Function_Reference/get_pages">get_pages()</a> and <a href="http://codex.wordpress.org/Function_Reference/get_posts">get_posts()</a>. These return a one-dimensional array of pages or posts.</p>
<p>Using this array I&#8217;ve written a simple recursive function which creates a nested array.</p>
<pre class="brush: php; title: ; notranslate">
/**
 * Build a nested tree from an array of posts/pages.
 * @see WordPress::get_pages()
 * @see WordPress::get_posts()
 *
 * @param array $items The array of posts/pages
 * @param int $parentid The parent id to start with
 * @param array $tree
 * @return array The nested pages tree
 */
function thumnet_build_nested_tree($items, $parentid = 0, &amp;$tree = array()) {
    foreach ($items as $key =&gt; $item) {
        // we are only interested in the pages that have the current parent
        if ($item-&gt;post_parent == $parentid){
            // add the item to the parent node
            $tree[$item-&gt;ID] = array('self' =&gt; $item, 'children' =&gt; array());
            // remove the page from the pages array, so it's not iterated in the recursive call
            unset($items[$key]);
            // call the function recursively, but with the children node as the tree
            thumnet_build_nested_tree($items, $item-&gt;ID, $tree[$item-&gt;ID]['children']);
        }
        // if the parent page has no children remove the node
        if (count($tree[$item-&gt;ID]['children']) == 0){
            unset($tree[$item-&gt;ID]['children']);
        }
    }   

    return $tree;
}
</pre>
<p>And not to forget a quick sample on how to use this</p>
<pre class="brush: php; title: ; notranslate">
$pages = get_pages('sort_column=menu_order');
$tree = thumnet_build_nested_tree($pages);
thumnet_display_nested_tree($tree);

function thumnet_display_nested_tree($items, $indent = 0){
    foreach ($items as $item){
        echo str_repeat('&amp;nbsp;', $indent*3) . (count($item['children']) ? '+' : '-') . ' ' . $item['self']-&gt;post_title . '&lt;br /&gt;';
        if (count($item['children'])) { thumnet_display_nested_tree($item['children'], $indent+1); }
    }
}
</pre>
<p>Sample output:</p>
<pre class="brush: plain; title: ; notranslate">
+ Welcome
   + Subpage with children
      - Child 1
      - Child two
   - Subpage without children
- Top level page without children
+ About
   - Who am I
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.thumnet.com/wordpress-pages-into-nested-tree-array/220/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install SABnzbd as a service on Windows 2008</title>
		<link>http://blog.thumnet.com/install-sabnzbd-as-a-service-windows-2008/209/</link>
		<comments>http://blog.thumnet.com/install-sabnzbd-as-a-service-windows-2008/209/#comments</comments>
		<pubDate>Mon, 13 Dec 2010 18:47:01 +0000</pubDate>
		<dc:creator>ThumNet</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[sabnzdb]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[windows2008]]></category>

		<guid isPermaLink="false">http://blog.thumnet.com/?p=209</guid>
		<description><![CDATA[Until version 0.6.0 is released of SABnzbd it is needed to take manual steps to install SABnzbd as a service. For Windows 2003 this could be achieved using this tutorial. But for Windows 2008 this is not as easy anymore, therefore I had a look around and came with the following solution: Download the NSSM &#8230; </p><p><a class="more-link block-button" href="http://blog.thumnet.com/install-sabnzbd-as-a-service-windows-2008/209/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>Until version 0.6.0 is released of <a href="http://www.sabnzbd.org">SABnzbd</a> it is needed to take manual steps to install SABnzbd as a service. For Windows 2003 this could be achieved using <a href="http://wiki.sabnzbd.org/windows-service">this tutorial</a>.</p>
<p>But for Windows 2008 this is not as easy anymore, therefore I had a look around and came with the following solution:</p>
<ol>
<li>Download the NSSM (the None Sucking Service Manager) <a href="http://iain.cx/src/nssm/">here</a></li>
<li>Put this file in a Windows PATH location (for example <code>%windir%\system32</code>, or extend the path)</li>
<li>Run the commandline: <code>nssm install sabnzbd</code> (&#8220;sabnzbd&#8221; is the name for the service)</li>
<li>A UI will popup asking for the location of the sabnzbd.exen file and optional startup parameters (I supplied <code>-b0</code> for background mode)</li>
<li>For me it was also necessary to setup the service (services.msc) to use the same account I once configured it with, otherwise you&#8217;ll end up with the wizard</li>
</ol>
<p>Afterwards you are able to use <code>net start sabnzbd</code> to start the service and <code>net stop sabnzbd</code> to stop it. To uninstall use <code>nssm remove sabnzbd confirm</code></p>
<p>That&#8217;s it for installing sabnzbd as a service under Windows 2008 (should also work on Windows 7!)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thumnet.com/install-sabnzbd-as-a-service-windows-2008/209/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IMDB REST Webservice update</title>
		<link>http://blog.thumnet.com/imdb-rest-webservice-update/129/</link>
		<comments>http://blog.thumnet.com/imdb-rest-webservice-update/129/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 20:45:15 +0000</pubDate>
		<dc:creator>ThumNet</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[imdb]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[rest]]></category>
		<category><![CDATA[webservice]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://blog.thumnet.com/?p=129</guid>
		<description><![CDATA[Update 2009-12-16 Looking for help in hosting If you have a server that hosts PHP and you want to support the Scraper service please contact me (info at thumnet dot com). Update 2009-12-12 Service currently down, due to too many request to IMDb, working on a fix! Update 2009-12-09 Added Picture in imdb-name request Added result &#8230; </p><p><a class="more-link block-button" href="http://blog.thumnet.com/imdb-rest-webservice-update/129/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p><span style="color: #ff0000;"><strong>Update 2009-12-16</strong></span></p>
<h5>Looking for help in hosting</h5>
<p>If you have a server that hosts PHP and you want to support the Scraper service please contact me (info at thumnet dot com).</p>
<hr/>
<span style="color: #ff0000;"><strong>Update 2009-12-12</strong></span></p>
<h5>Service currently down, due to too many request to IMDb, working on a fix!</h5>
<hr />
<span style="color: #ff0000;"><strong>Update 2009-12-09</strong></span></p>
<ul>
<li>Added Picture in <em>imdb-name</em> request</li>
<li>Added result count limitation param (see the <a title="ThumNet.com Scraper" href="http://scraper.thumnet.com">guide</a>)</li>
<li>Some small bugfixes:
<ul>
<li>missing tt and nm prefix in ImdbID property in <em>imdb-name-search</em> request,</li>
<li>missing ImdbID for Writers and Directors in <em>imdb-title</em> request,</li>
<li>changed Season and Episode in <em>imdb-episode</em> request to SeasonNR and EpisodeNR</li>
<li>added result type to the summary element, to identify the result data</li>
</ul>
</li>
</ul>
<p><em><em><span style="color: #ff0000;"><strong>Update 2009-12-02</strong></span></em></em></p>
<p><em><em> </em></em></p>
<ul>
<li>Added Name search functionality, with <em>imdb-name-search</em> url param (imdb-search is now <em>imdb-title-search</em>)</li>
<li>Added Name details, with <em>imdb-name</em> url param</li>
</ul>
<p><em><em> </em></em></p>
<p><span style="color: #ff0000;"><strong>Update 2009-12-01</strong></span></p>
<ul>
<li>Fixed the Plot and Tagline for imdb title&#8217;s, see comments below.</li>
</ul>
<p>It&#8217;s been some time since my post about the <a title="ThumNet.com IMDB webservice" href="http://blog.thumnet.com/rest-like-webserviceapi-for-imdbcom-with-xml-or-json-output/6/">IMDB webservice</a> but I&#8217;m proud to tell you readers there is a new version available.</p>
<p>Some important changes include:</p>
<ul>
<li>Restructured output (sorry to you guys who have to update their software)</li>
<li>Output available in XML, JSON and debug (other output formats can be added on request)</li>
<li>Automatic support for gzipping the output</li>
<li>Summary information, containing:
<ul>
<li> data source</li>
<li>timestamp of the data</li>
<li>time taken in ms</li>
<li>scraper info</li>
<li>error code (0 for no error!) and error description</li>
</ul>
</li>
<li>Easily extendable scrape framework, so in the future more sites can be scraped!</li>
<li>Admin interface to review the data you guys produce</li>
</ul>
<p>Still interested or just curious?</p>
<p>Well the new url is: <a title="ThumNet.com Scraper" href="http://scraper.thumnet.com">http://scraper.thumnet.com</a></p>
<p>The old version (imdb.thumnet.com) will only be available until 1 december 2009.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thumnet.com/imdb-rest-webservice-update/129/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>airTranslate on Google code</title>
		<link>http://blog.thumnet.com/airtranslate-on-google-code/123/</link>
		<comments>http://blog.thumnet.com/airtranslate-on-google-code/123/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 16:39:14 +0000</pubDate>
		<dc:creator>ThumNet</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[translate]]></category>

		<guid isPermaLink="false">http://blog.thumnet.com/?p=123</guid>
		<description><![CDATA[Because I wanted to learn programming in Adobe Flex I build a tool called airTranslate. It uses the Google Ajax Language API to translate the users input text to the chosen output language. airTranslate features: Multi platform Auto detection of input language Drag and drop input text (with auto translation) Dock to tray icon (Windows &#8230; </p><p><a class="more-link block-button" href="http://blog.thumnet.com/airtranslate-on-google-code/123/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>Because I wanted to learn programming in<a href="http://www.adobe.com/products/flex/"> Adobe Flex </a> I build a tool called <strong>airTranslate</strong>. It uses the <a href="http://code.google.com/apis/ajaxlanguage/">Google Ajax Language API</a> to translate the users input text to the chosen output language.</p>
<p><img class="aligncenter size-full wp-image-124" title="airTranslate-screenshot" src="http://blog.thumnet.com/wp-content/uploads/2009/09/airTranslate-screenshot.png" alt="airTranslate-screenshot" width="560" height="383" /></p>
<p>airTranslate features:</p>
<ul>
<li>Multi platform</li>
<li>Auto detection of input language</li>
<li>Drag and drop input text (with auto translation)</li>
<li>Dock to tray icon (Windows only)</li>
<li>Translate from clipboard (with auto translation)</li>
<li>Auto store last chosen translation language</li>
<li>Update notification</li>
</ul>
<p><strong>airTranslate </strong>is available at Google code: <a href="http://code.google.com/p/thumnet/downloads/list">http://code.google.com/p/thumnet/downloads/list</a></p>
<p>The project is open source, and sources are available at <a href="http://code.google.com/p/thumnet/source/browse/#svn/trunk/Air">http://code.google.com/p/thumnet/source/browse/#svn/trunk/Air</a>. <span style="background-color: #ffffff;">It is possible to request new functions and report issues through the Google code website.</span></p>
<p>To run Adobe AIR programs you need to download and install the<a href="http://get.adobe.com/air/"> Adobe AIR runtime</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thumnet.com/airtranslate-on-google-code/123/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Release Pixeled-Multicolor Theme for WordPress</title>
		<link>http://blog.thumnet.com/release-pixeled-multicolor-theme-for-wordpress/90/</link>
		<comments>http://blog.thumnet.com/release-pixeled-multicolor-theme-for-wordpress/90/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 17:04:51 +0000</pubDate>
		<dc:creator>ThumNet</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[pixeled-multicolor]]></category>

		<guid isPermaLink="false">http://blog.thumnet.com/?p=90</guid>
		<description><![CDATA[In my previous post I talked about the modifications I had made to the Pixeled WordPress theme. Well about 2 months ago I send the creator of the Pixeled theme an email requesting him to read my blogpost about the changes I had made to his theme. But since then I haven&#8217;t heard anything from &#8230; </p><p><a class="more-link block-button" href="http://blog.thumnet.com/release-pixeled-multicolor-theme-for-wordpress/90/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>In my <a href="http://blog.thumnet.com/welcome-thumnet-blog/1/">previous post</a> I talked about the modifications I had made to the <a href="http://wordpress.org/extend/themes/pixeled">Pixeled</a> WordPress theme.</p>
<p>Well about 2 months ago I send the creator of the Pixeled theme an email requesting him to read my blogpost about the changes I had made to his theme.<br />
But since then I haven&#8217;t heard anything from him, so I decided to release the pixeled-multicolor theme myself.</p>
<p>Some screenshots:<br />

<a href='http://blog.thumnet.com/release-pixeled-multicolor-theme-for-wordpress/90/pixeled-red-right/' title='pixeled-red-right'><img width="150" height="150" src="http://blog.thumnet.com/wp-content/uploads/2009/07/pixeled-red-right-150x150.jpg" class="attachment-thumbnail" alt="Pixeled-Multicolor Red" title="pixeled-red-right" /></a>
<a href='http://blog.thumnet.com/release-pixeled-multicolor-theme-for-wordpress/90/pixeled-red-left/' title='pixeled-red-left'><img width="150" height="150" src="http://blog.thumnet.com/wp-content/uploads/2009/07/pixeled-red-left-150x150.jpg" class="attachment-thumbnail" alt="Pixeled-Multicolor Red (with menu on the Left)" title="pixeled-red-left" /></a>
<a href='http://blog.thumnet.com/release-pixeled-multicolor-theme-for-wordpress/90/pixeled-green/' title='pixeled-green'><img width="150" height="150" src="http://blog.thumnet.com/wp-content/uploads/2009/07/pixeled-green-150x150.jpg" class="attachment-thumbnail" alt="Pixeled-Multicolor Green" title="pixeled-green" /></a>
<a href='http://blog.thumnet.com/release-pixeled-multicolor-theme-for-wordpress/90/pixeled-blue/' title='pixeled-blue'><img width="150" height="150" src="http://blog.thumnet.com/wp-content/uploads/2009/07/pixeled-blue-150x150.jpg" class="attachment-thumbnail" alt="Pixeled-Multicolor Blue" title="pixeled-blue" /></a>
</p>
<p>Download <a href="http://blog.thumnet.com/wp-content/uploads/2009/07/pixeled-multicolor_20090701.zip">Pixeled-Multicolor</a> (release 20090701)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thumnet.com/release-pixeled-multicolor-theme-for-wordpress/90/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>REST-like webservice/api for imdb.com with XML or JSON output</title>
		<link>http://blog.thumnet.com/rest-like-webserviceapi-for-imdbcom-with-xml-or-json-output/6/</link>
		<comments>http://blog.thumnet.com/rest-like-webserviceapi-for-imdbcom-with-xml-or-json-output/6/#comments</comments>
		<pubDate>Wed, 20 May 2009 15:18:56 +0000</pubDate>
		<dc:creator>ThumNet</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[imdb]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[rest]]></category>
		<category><![CDATA[webservice]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://blog.thumnet.com/?p=6</guid>
		<description><![CDATA[New version available! Read my update post. The site imdb.thumnet.com is a personal project that I recently released on the web. This webservice/api supplies an interface for the Internet Movie DataBase (in short IMDB). It gives you the abbillity to search for, or view details of,  a movie with a REST like request. Some examples are: Searching for &#8230; </p><p><a class="more-link block-button" href="http://blog.thumnet.com/rest-like-webserviceapi-for-imdbcom-with-xml-or-json-output/6/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p><strong><span style="color: #ff0000;">New version available!</span></strong><br />
Read my <a href="http://blog.thumnet.com/imdb-rest-webservice-update/129/">update post</a>.</p>
<p>The site <a href="http://imdb.thumnet.com">imdb.thumnet.com</a> is a personal project that I recently released on the web.</p>
<p>This webservice/api supplies an interface for the Internet Movie DataBase (in short <a href="http://www.imdb.com">IMDB</a>). It gives you the abbillity to search for, or view details of,  a movie with a REST like request.</p>
<p>Some examples are:</p>
<ul>
<li>Searching for the matrix<br />
<a href="http://imdb.thumnet.com/xml/search/the+matrix/">http://imdb.thumnet.com/xml/search/the+matrix/ </a></li>
<li>Getting details for the matrix (id tt0133093)<br />
<a href="http://imdb.thumnet.com/xml/title/tt0133093/">http://imdb.thumnet.com/xml/title/tt0133093/</a></li>
</ul>
<p>The output for the result of the request can be as XML or JSON. This makes it fairly easy to integrate movie information on you&#8217;re personal site.</p>
<p>For more information check out the <a href="http://imdb.thumnet.com">site</a> yourself.</p>
<p>If you encounter any problems please report them as a comment below.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thumnet.com/rest-like-webserviceapi-for-imdbcom-with-xml-or-json-output/6/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>Welcome to the ThumNet blog!</title>
		<link>http://blog.thumnet.com/welcome-thumnet-blog/1/</link>
		<comments>http://blog.thumnet.com/welcome-thumnet-blog/1/#comments</comments>
		<pubDate>Thu, 14 May 2009 18:45:45 +0000</pubDate>
		<dc:creator>ThumNet</dc:creator>
				<category><![CDATA[Theme]]></category>
		<category><![CDATA[pixeled]]></category>
		<category><![CDATA[welcome]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.thumnet.com/?p=1</guid>
		<description><![CDATA[Welcome to the ThumNet blog. This is actually my first blog post ever, and I hope there are many more to follow! As most of you already concluded this blog is build with WordPress After the WordPress installation, which was very easy thanks to InstallaTron, I went looking for a theme. On the WordPress Themes &#8230; </p><p><a class="more-link block-button" href="http://blog.thumnet.com/welcome-thumnet-blog/1/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>Welcome to the ThumNet blog.</p>
<p>This is actually my first blog post ever, and I hope there are many more to follow!</p>
<p>As most of you already concluded this blog is build with <a href="http://www.wordpress.org">WordPress</a></p>
<p>After the WordPress installation, which was very easy thanks to <a href="http://installatron.com/">InstallaTron</a>, I went looking for a theme. On the WordPress Themes page there was the blue <a href="http://wordpress.org/extend/themes/pixeled">Pixeled</a> theme (version 1.9.2) which I really like, but there is one small problem. The developer (<a href="http://samk.ca">Sam</a>) also created an earlier version of the pixeled theme (version 1.0) which was in green, but this wasn&#8217;t really up to date anymore. For this blog I wanted to give visitors the ability to choose between these two colors.</p>
<p>So I took the latest version of Sam&#8217;s theme and changed the following:</p>
<ul>
<li>copied both bgbody.png files into the images directory and renamed them accordingly</li>
<li>created two partial StyleSheets with specific color settings, which will be loading on top of to the default StyleSheet</li>
<li>picked up the styleswitcher.js file from <a href="http://www.alistapart.com/articles/alternate/">A List Apart</a>, which had to be updated because the attachEvent function isn&#8217;t cross browser compatible</li>
<li>finally  added the links to change the theme&#8217;s color in the header.php file</li>
</ul>
<p>The links to change the color are located at the top right of the page, next to the text &#8220;color&#8221;.</p>
<p>Sources for the multicolor pixeled theme will be available through Sam&#8217;s or this site, but I first have to contact Sam to show him the modifications and ask him what he likes to do with them.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thumnet.com/welcome-thumnet-blog/1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

