<?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/"
	>

<channel>
	<title>byDust</title>
	<atom:link href="http://www.bydust.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bydust.com</link>
	<description>Nick Van der Vrekens personal portfolio</description>
	<pubDate>Mon, 22 Dec 2008 01:55:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Playr, the best actionscript music player out there</title>
		<link>http://www.bydust.com/playr-the-best-actionscript-music-player-out-there/</link>
		<comments>http://www.bydust.com/playr-the-best-actionscript-music-player-out-there/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 19:36:21 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
		
		<category><![CDATA[Actionscript]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Links]]></category>

		<category><![CDATA[Noteworthy]]></category>

		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.bydust.com/?p=241</guid>
		<description><![CDATA[Playr is a open source Flash Actionscript 3 class which takes the heavy lifting off your hands and makes building any kind of music player a piece of cake. Yes! Thats the short description right there.
If you need music a music player in your site, this is what you need. Playr makes it incredible easy [...]]]></description>
			<content:encoded><![CDATA[<p>Playr is a open source Flash Actionscript 3 class which takes the heavy lifting off your hands and makes building any kind of music player a piece of cake. Yes! Thats the short description right there.</p>
<p>If you need music a music player in your site, this is what you need. Playr makes it incredible easy to implement any kind of music player in your flash website. And the best part of it, you only need two (<span style="text-decoration: underline;">2</span>!) lines of actionscript to get it working. <span id="more-241"></span><br />
For all you hard asses that don&#8217;t believe me, here&#8217;s an example:</p>
<address class="geshi no actionscript"> </address>
<ol>
<li class="li1">
<div class="de1"><span class="kw3">import</span> com.<span class="me1">nocreativity</span>.<span class="me1">playr</span>.<span class="me1">Playr</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">var</span> playr:Playr= <span class="kw2">new</span> Playr<span class="br0">(</span><span class="st0">&#8220;/assets/playlist.xml&#8221;</span>,<span class="st0">&#8220;/assets/music/&#8221;</span>,<span class="kw2">true</span><span class="br0">)</span>;</div>
</li>
</ol>
<div class="geshi no actionscript">Or a bit more advanced:</div>
<div class="geshi no actionscript">
<address class="geshi no actionscript"> </address>
<ol>
<li class="li1">
<div class="de1"><span class="kw3">import</span> com.<span class="me1">nocreativity</span>.<span class="me1">playr</span>.<span class="me1">*</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">var</span> playr:Playr= <span class="kw2">new</span> Playr<span class="br0">(</span><span class="st0">&#8220;/assets/playlist.xml&#8221;</span>,<span class="st0">&#8220;/assets/music/&#8221;</span>,<span class="kw2">true</span><span class="br0">)</span>;</div>
</li>
<li class="li1">
<div class="de1">playr.<span class="me1">registerPlayButton</span><span class="br0">(</span>btnPlay<span class="br0">)</span>;</div>
</li>
<li class="li1">
<div class="de1">playr.<span class="me1">registerPauseButton</span><span class="br0">(</span>btnPause<span class="br0">)</span>;</div>
</li>
<li class="li1">
<div class="de1">playr.<span class="me1">registerNextButton</span><span class="br0">(</span>btnNext<span class="br0">)</span>;</div>
</li>
<li class="li1">
<div class="de1">playr.<span class="me1">registerPreviousButton</span><span class="br0">(</span>btnPrevious<span class="br0">)</span>;</div>
</li>
<li class="li1">
<div class="de1">playr.<span class="me1">registerStopButton</span><span class="br0">(</span>btnStop<span class="br0">)</span>;</div>
</li>
<li class="li1">
<div class="de1">playr.<span class="me1">addEventListener</span><span class="br0">(</span>PlayrErrorEvent.<span class="me1">PLAYLIST_STREAM_ERROR</span>, playlistStreamErrorHandler<span class="br0">)</span>;</div>
</li>
<li class="li1">
<div class="de1">playr.<span class="me1">addEventListener</span><span class="br0">(</span>PlayrErrorEvent.<span class="me1">SOUND_STREAM_ERROR</span>, soundStreamErrorHandler<span class="br0">)</span>;</div>
</li>
<li class="li1">
<div class="de1">playr.<span class="me1">addEventListener</span><span class="br0">(</span>PlayrErrorEvent.<span class="me1">PLAYLIST_INVALID_XML</span>, playlistInvalidXMLErrorHandler<span class="br0">)</span>;</div>
</li>
<li class="li1">
<div class="de1">playr.<span class="me1">addEventListener</span><span class="br0">(</span>PlayrErrorEvent.<span class="me1">TRACK_NOT_ADDED_TO_PLAYLIST</span>, trackNotAddedToPlaylistErrorHandler<span class="br0">)</span>;</div>
</li>
</ol>
</div>
<p>You can download Playr and see more information and examples at <a title="Click to go to the Playr homepage" href="http://playr.nocreativity.com/">playr.nocreativity.com</a>.<br />
The Playr documentation is available at <a title="Click and the Playr documentation will magically appear !" href="http://playr.nocreativity.com/docs/">playr.nocreativity.com/docs/</a></p>
<p>Playr has been developed by the local Flashguru, <a title="Visit Ronny Welters homepage" href="http://www.nocreativity.com">Ronny Welter</a> .<br />
No animals were hurt or killed during the development of Playr. Ronny had a headache tho.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bydust.com/playr-the-best-actionscript-music-player-out-there/feed/</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;Online TV&#8221; Presentation</title>
		<link>http://www.bydust.com/online-tv-presentation/</link>
		<comments>http://www.bydust.com/online-tv-presentation/#comments</comments>
		<pubDate>Sat, 29 Nov 2008 16:54:54 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
		
		<category><![CDATA[Portfolio]]></category>

		<category><![CDATA[Presentations]]></category>

		<category><![CDATA[School]]></category>

		<guid isPermaLink="false">http://www.bydust.com/?p=236</guid>
		<description><![CDATA[I did a Powerpoint presentation about &#8220;Online TV&#8221;, have put alot of work in the preparation and presentation slides of this thingy. You can download the presentation below, It&#8217;s written in Dutch.
]]></description>
			<content:encoded><![CDATA[<p>I did a Powerpoint presentation about &#8220;Online TV&#8221;, have put alot of work in the preparation and presentation slides of this thingy. You can download the presentation below, It&#8217;s written in Dutch.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bydust.com/online-tv-presentation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fhi-zin, free AJAX Wordpress theme template for Portfolio and Photography</title>
		<link>http://www.bydust.com/fhi-zin-free-ajax-wordpress-theme-template-for-portfolio-and-photography/</link>
		<comments>http://www.bydust.com/fhi-zin-free-ajax-wordpress-theme-template-for-portfolio-and-photography/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 17:01:42 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
		
		<category><![CDATA[AJAX]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[Noteworthy]]></category>

		<category><![CDATA[Photography]]></category>

		<category><![CDATA[Portfolio]]></category>

		<category><![CDATA[Themes]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.bydust.com/?p=192</guid>
		<description><![CDATA[Fhi-zin is one of the best Wordpress themes for Portfolio and Photography websites on the web, and with its unique design it doesn&#8217;t even look like a Wordpress website ! On top of that, its completely driven by an AJAX engine, is Googlefriendly, SEO-optimised and capable of attaching an unlimited amount of images on each [...]]]></description>
			<content:encoded><![CDATA[<p>Fhi-zin is one of the best Wordpress themes for Portfolio and Photography websites on the web, and with its unique design it doesn&#8217;t even look like a Wordpress website ! On top of that, its completely driven by an AJAX engine, is Googlefriendly, SEO-optimised and capable of attaching an unlimited amount of images on each post.</p>
<p><span id="more-192"></span></p>
<p>Like I said before, Fhi-zin is completely <strong>AJAX-driven</strong>. It&#8217;s powered by my <a href="http://www.bydust.com/ajaxed-website-automatically-convert-to-ajax-website-combydustajax/">com.bydust.ajax</a> class, which automatically converts a static website into an AJAX-driven website. The theme runs smoothly on computers with javascript disabled, for example older browsers and search engines. Whenever a javascript error occurs - which should be never, but you never know - the ajax class should commit suicide and your theme will run without the ajax-functions. Offcourse that never happens, its just in case ;-)</p>
<p>Fhi-zin will most likely be used for <strong>portfolio sites </strong>and <strong>photography galleries </strong>which will use Wordpress as a CMS-system. The possibility of <strong>attaching an unlimited amount of high-resolution images</strong> to each post can be used to create a separate gallery from each post in your Wordpress site, which you can group in the standard Wordpress categories. There is no maximum dimension size for these images, but if you pick large dimensions some users may have problems viewing the images since they dont fit on their screen. If you keep the dimensions smaller than 1000&#215;700 things should be fine :)</p>
<p>Apart from the unlimited images, you can define<strong> external links</strong> and <strong>downloadable files</strong> for each post too. There is a live demo available for you, and the theme is up for download on Wordpress.org.</p>
<p>When the theme is activated, there will be an information page available in your Wordpress administration. This can be very usefull for adding images and links. If you still have some questions or remarks, please post them here.</p>
<p>For all users who want <strong>scrollbars </strong>in the post/page content text, I&#8217;ve made a modified theme which includes scrollbars. You can download it <a href="http://www.bydust.com/wp-content/uploads/2008/11/fhi-zin-content-scroller.zip">here</a>. If you already uploaded the Fhi-zin theme, you just need to replace the files &#8220;style.css&#8221;, &#8220;single.php&#8221; and &#8220;js/main.js&#8221;.</p>
<p>I&#8217;ve found already quite a few websites who use Fhi-zin, here are a few nice examples:</p>
<ul>
<li><a href="http://namouda.fr/">Namouda</a><a href="http://namouda.fr/"><br />
<img class="alignnone" src="http://www.bydust.com/wp-content/uploads/2008/11/namouda.jpg" alt="" width="200" height="150" /></a></li>
<li><a href="http://www.pencil-to-paper.co.uk/">Pencil to Paper<br />
</a><a href="http://www.pencil-to-paper.co.uk/"><img class="alignleft" src="http://www.bydust.com/wp-content/uploads/2008/11/penciltopaper.jpg" alt="" width="200" height="150" /></a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.bydust.com/fhi-zin-free-ajax-wordpress-theme-template-for-portfolio-and-photography/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AJAXed website - Automatically convert to AJAX website - com.bydust.ajax</title>
		<link>http://www.bydust.com/ajaxed-website-automatically-convert-to-ajax-website-combydustajax/</link>
		<comments>http://www.bydust.com/ajaxed-website-automatically-convert-to-ajax-website-combydustajax/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 22:46:01 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
		
		<category><![CDATA[AJAX]]></category>

		<category><![CDATA[Browsers]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[Noteworthy]]></category>

		<category><![CDATA[Portfolio]]></category>

		<category><![CDATA[Themes]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.bydust.com/?p=167</guid>
		<description><![CDATA[The com.bydust.ajax class is simply a javascript class that automatically converts your static website into a full-blown ajaxed website. Whenever a user visits your website, the class will perform a browser-check. If your visitor&#8217;s browser is capable of running the needed javascript, it will convert the website automatically. If not, the script deactivates itself and [...]]]></description>
			<content:encoded><![CDATA[<p>The com.bydust.ajax class is simply a javascript class that automatically converts your static website into a full-blown ajaxed website. Whenever a user visits your website, the class will perform a browser-check. If your visitor&#8217;s browser is capable of running the needed javascript, it will convert the website automatically. If not, the script deactivates itself and the visitor browses through your website as it is ( without ajax request etc. ).</p>
<p>You can download the script and view the howto at <a href="http://www.bydust.com/examples/com.bydust.ajax/">http://www.bydust.com/examples/com.bydust.ajax/</a></p>
<p><span id="more-167"></span></p>
<p><strong>Basic implementation</strong></p>
<p>The implementation of the javascript class is really easy, you just need to add a few lines of code into your pages. These will load and launch the script, and mark the area&#8217;s you want to refresh on each page. Look at the implementation page on the <a href="http://www.bydust.com/examples/com.bydust.ajax/">manual</a> for more information.</p>
<p><strong>Customizable animations</strong></p>
<p>Yes, animations. Its only eye-candy, but it improves the style of your website alot, and the users impression of your website.<br />
There are two types of animations available in the script, we have the tweens who smoothly fit your content into your page, and the alpha transitions which display your content with a nice fade in. As if that isn&#8217;t enough yet, these animations are customizable !<br />
There are 13 types of tweens available, from normal easeIn or easeOut tweens to elastic and bouncy. There&#8217;s also an option to disable the tweens and alpha transitions, this might be good for large pages since they demand some CPU usage from the visitors computer. Don&#8217;t think you&#8217;ll need to disable tho :)</p>
<p>You can add more eye-candy in the customizable loading-messages, for example a nice loading image in gif-format or even little flash-movies. By adding CSS-styles in the loading-messages this can be very easy.</p>
<p><strong>Functionalities</strong></p>
<p>Its a bit more than your average &#8220;Hey-I-can-do-ajax&#8221;-script. With this script you can add event listeners, set up custom rules and custom animations, manage the filetypes handled by the script, and so on.</p>
<p>Attaching <strong>event listeners</strong> to certain events launched by the script allows you to execute certain pieces of code whenever an event happens, for example on errors ( but offcourse these never occur :) ) or page loads. Attaching an event listener is very easy, you can attach an event with one line of code. Just like in actionscript, we can use the &#8220;addEventListener&#8221;-function with the same two parameters, the event and the function to execute.</p>
<p><strong>Custom rules</strong> allow us to tell the script to discard certain links or forms, or even to only notify the server when a user has clicked a certain link or posted a form. These rules can come in handy when you don&#8217;t want certain links to be parsed in ajax, for example feeds or trackbacks. When implemented in a Wordpress theme, you&#8217;ll need to add these rules for the wp-admin folder, feed and trackback links.</p>
<p><strong>Error handling</strong> is often overlooked, but not here. The class is able to discover whenever an error occured, and will fix it when possible. If it notices that there is no way to fix the error, for example if one of the requested pages doesn&#8217;t have the information it needs, it will shut down itself and serve the page as a normal browser request, without any ajax. The ajax-class will then load again when the new page is fully loaded. If the script is able to fix the error, an error-event containing all information will be raised and an appropriate message will be shown. These messages are also customizable offcourse :)</p>
<p>Webpages often contain images, thats why I&#8217;ve built in some <strong>image preloading</strong> functions. When the ajax-class receives the new page from the server, it starts looking for images in the content areas that need to be refreshed. As long as its preloading, a ( customizable ! ) message will be shown to the user. When the images are fully loaded or the maximum load time has been reached the script will display the page. And, as you can guess, the maximum load time can also be specified by the user.</p>
<p>Since this is a pretty big project I&#8217;ve set up <a href="http://www.bydust.com/examples/com.bydust.ajax/">a small howto-website</a> with loads of information about the script, and an example for you to download. You&#8217;ll find a detailed manual for the basic implementation there, along with the more advanced stuff.</p>
<p>The script is completely free for non-commercial use, but I&#8217;d like you to leave the credits in the classfiles and maybe a small link back to this page - if its not too much trouble. I&#8217;ll link back to your website if you&#8217;re using the script, so others have some more working examples. Contact me for commercial use :)</p>
<p>Com.bydust.ajax has been featured on several websites and communities:</p>
<ul>
<li><a title="View the article on webresourcedepot" href="http://www.webresourcesdepot.com/ajaxify-a-static-website-in-minutes/">webresourcesdepot.com</a></li>
<li><a title="View the article on hotajax" href="http://www.hotajax.org/others/photos--other-plugins/581-ajaxify-a-static-website-in-minutes-using-combydustajax.html">hotajax.org</a></li>
<li><a title="View the article on hotscripts" href="http://www.hotscripts.com/Detailed/84976.html">hotscripts.com</a></li>
<li><a title="View the article on Coliss" href="http://coliss.com/articles/build-websites/operation/javascript/1750.html">coliss.com</a></li>
<li><a title="View the article on e-siber" href="http://www.e-siber.com/web-teknolojileri/statik-bir-web-sitesini-kolayca-ajaxli-hale-getirin/">e-siber.com</a></li>
<li><a title="View the article on qvado" href="http://qvado.ru/2008/11/10/ajaxify/">qvado.ru</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.bydust.com/ajaxed-website-automatically-convert-to-ajax-website-combydustajax/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Expanding images - Javascript image navigation script</title>
		<link>http://www.bydust.com/expanding-images-javascript-image-navigation-script/</link>
		<comments>http://www.bydust.com/expanding-images-javascript-image-navigation-script/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 11:41:06 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
		
		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.bydust.com/?p=156</guid>
		<description><![CDATA[Expanding Images is a javascript class that enables the user to animate a row of images on the webpage, so that the focused image appears larger than the other images in the row. It can be used as navigation, gallery, thumbnail viewer, and so on. Use your imagination :)
There are a few parameters to specify [...]]]></description>
			<content:encoded><![CDATA[<p>Expanding Images is a javascript class that enables the user to animate a row of images on the webpage, so that the focused image appears larger than the other images in the row. It can be used as navigation, gallery, thumbnail viewer, and so on. Use your imagination :)<span id="more-156"></span></p>
<p>There are a few parameters to specify for the script to work.<br />
To start, we need all the id&#8217;s of the images to use in our script. We can specify these with our create-method. See below for more information.</p>
<p><span style="color: #800000;">var BDEI = new BDExpandingImages();<br />
// create a new BDExpandingImages object. This thing will handle the animation.</span></p>
<p><span style="color: #800000;">window.onload = function(){ </span></p>
<p style="padding-left: 30px;"><span style="color: #800000;">// we can only initiate the expanding images when the page is fully loaded.<br />
// optional parameters:<br />
BDEI.width = 120;<br />
// width of a single image, in pixels. default 100.<br />
BDEI.height = 182;<br />
// height of a single image, in pixels. default 100.<br />
BDEI.classNormal = &#8216;normal&#8217;;<br />
// class of an image when not active. default &#8221;<br />
BDEI.classHover = &#8216;active&#8217;;<br />
// class of an image when active. default &#8221;<br />
BDEI.scaleNormal = 0.6;<br />
// scale of an image when not active. default 0.8.<br />
BDEI.scaleHover = 1;<br />
// scale of an image when active. default 1.4.<br />
BDEI.range = 6;<br />
// number of images on each side of the active image that are pulled. default 3.<br />
BDEI.create(&#8217;scroller_image1&#8242;,&#8217;scroller_image2&#8242;,&#8217;scroller_image3&#8242;,&#8217;scroller_image4&#8242;,&#8217;scroller_image5&#8242;,&#8217;scroller_image6&#8242;,&#8217;scroller_image7&#8242;);<br />
// id&#8217;s of the images we&#8217;re using for the animation.<br />
BDEI.init();<br />
// initiating the script.<br />
BDEI.hover(BDEI.itemIDs[3]);<br />
// activate a default image. This will be image 4. by default no images are active after initiation.</span></p>
<p><span style="color: #800000;">}</span></p>
<p>There are several scripts like this one available on the internet, but most of them are not working on all browsers or are taking WAY too much CPU. There are probably some other faults too, for example the need for absolute positioning, but these are the two main reasons why I scripted my own class. It has alot more parameters to set than most of the others too, for example the range-parameter or class-parameters.</p>
<p>Demo: <a title="Click here to see the demo" href="http://www.bydust.com/examples/com.bydust.expandingImages/" target="_blank" class="bda_ignore">click here</a></p>
<p>You can download the demo and script with the link below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bydust.com/expanding-images-javascript-image-navigation-script/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Extended javascript Array Class - com.bydust.array</title>
		<link>http://www.bydust.com/extended-javascript-array-class-com-bydust-array/</link>
		<comments>http://www.bydust.com/extended-javascript-array-class-com-bydust-array/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 11:37:20 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
		
		<category><![CDATA[Browsers]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.bydust.com/?p=177</guid>
		<description><![CDATA[The extended javascript Array class is a small class that allows you to access more - custom - javascript methods, for example array.contains(object), array.dump(), array.shuffle() and others. It can be used for faster programming and fixing crossbrowser issues. Nothing fancy really, I just scripted this because I thought the normal Array class could use a [...]]]></description>
			<content:encoded><![CDATA[<p>The extended javascript Array class is a small class that allows you to access more - custom - javascript methods, for example <em>array.contains(object)</em>, <em>array.dump()</em>, <em>array.shuffle()</em> and others. It can be used for faster programming and fixing crossbrowser issues. Nothing fancy really, I just scripted this because I thought the normal Array class could use a few extra&#8217;s.</p>
<p>Updated to version 1.1 on october 29th, 2008</p>
<p><span id="more-177"></span></p>
<p><strong>So what&#8217;s in this &#8220;extended class&#8221;? </strong></p>
<p>Well, the extended javascript Array class contains some pretty usefull functions that are not included in the standard javascript Array class. Here&#8217;s a full list of what is standard included and which functions and methods are added by this class.</p>
<p><strong>Standard Array functions:</strong></p>
<ul>
<li><em>array.concat(another_array, &#8230;);</em></li>
<li><em>array.join(&#8221;separator&#8221;);</em></li>
<li><em>array.pop();</em></li>
<li><em>array.push(obj, &#8230;);</em></li>
<li><em>array.reverse();</em></li>
<li><em>array.shift();</em></li>
<li><em>array.slice(start[, end]);</em></li>
<li><em>array.sort();</em></li>
<li><em>array.splice(index, howmany[, elementstoadd]);</em></li>
<li><em>array.toSource();</em></li>
<li><em>array.toString();</em></li>
<li><em>array.unshift(elements);</em></li>
<li><em>array.valueOf();</em></li>
</ul>
<p><strong>Functions and methods added in com.bydust.array 1.1:</strong></p>
<ul>
<li><em>array.contains(obj);</em>
<ul>
<li>Returns true if the array contains the given value, false if it doesn&#8217;t.</li>
</ul>
</li>
<li><em>array.count();</em>
<ul>
<li>Counts the number of keys in the array.</li>
</ul>
</li>
<li><em>array.countValues();</em>
<ul>
<li>Returns an array using the values of the array as keys and their frequency in input as values.</li>
</ul>
</li>
<li><em>array.dump();</em>
<ul>
<li>Returns a string containing a table with each key and its respective value in HTML-code.</li>
</ul>
</li>
<li><em>array.fillKeys(keys, value);</em>
<ul>
<li>Fills an array with the value of the value parameter, using the values of the keys array as keys.</li>
</ul>
</li>
<li><em>array.get(key);</em>
<ul>
<li>Returns the value attached to the specified key.</li>
</ul>
</li>
<li><em>array.getKeys();</em>
<ul>
<li>Returns an array containing all the keys.</li>
</ul>
</li>
<li><em>array.indexOfKey(key);</em>
<ul>
<li>Returns the index of the specified key in the array, returns -1 if the key doesn&#8217;t exist.</li>
</ul>
</li>
<li><em>array.indexOf(obj);</em>
<ul>
<li>Returns the index of the specified value in the array, returns -1 if the value doesn&#8217;t exist.</li>
</ul>
</li>
<li><em>array.keyOnIndex(index);</em>
<ul>
<li>Returns the key on the specified index.</li>
</ul>
</li>
<li><em>array.makeUnique();</em>
<ul>
<li>Removes duplicate values from an array.</li>
</ul>
</li>
<li><em>array.product();</em>
<ul>
<li>Calculate the product of values in an array.</li>
</ul>
</li>
<li><em>array.shuffle([preserve_keys]);</em>
<ul>
<li>Shuffle the array. Optional parameter &#8220;preserve_keys&#8221;, default false.</li>
</ul>
</li>
<li><em>array.set(key, value);</em>
<ul>
<li>Add a key with a value.</li>
</ul>
</li>
<li><em>array.sum();</em>
<ul>
<li>Calculate the sum of values in an array.</li>
</ul>
</li>
<li><em>array.swap(key1,key2);</em>
<ul>
<li>Swaps two elements in an array. Keys are not preserved.</li>
</ul>
</li>
<li><em>array.rand();</em>
<ul>
<li>Picks a random entry out of an array.</li>
</ul>
</li>
<li><em>array.remove(key);</em>
<ul>
<li>Removes the specified key and its value from the array.</li>
</ul>
</li>
</ul>
<p>There&#8217;s also a fix for the <em>array.indexOf(object)</em> method. If the given object is found in the array, it will return its index as a number. If not, -1 is returned. This method is already implemented in the normal Array class, but doesn&#8217;t work for IE browsers. Well, now it does :)</p>
<p>Well, I hope someone can use this extended class. I wasn&#8217;t going to put it online at first, but changed my mind when I saw I&#8217;m not the only one who could use this :)</p>
<p>You can download the class with the link below:</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bydust.com/extended-javascript-array-class-com-bydust-array/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Chrome: the revolutionary browser ?</title>
		<link>http://www.bydust.com/google-chrome-the-revolutionary-browser/</link>
		<comments>http://www.bydust.com/google-chrome-the-revolutionary-browser/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 18:37:51 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
		
		<category><![CDATA[Browsers]]></category>

		<category><![CDATA[Noteworthy]]></category>

		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://www.bydust.com/?p=142</guid>
		<description><![CDATA[Yesterday Google released their brand-new browser Chrome, but is this the revolutionary browser we have all been waiting for ? I&#8217;ve tested this browser for about 10hours now, I&#8217;ll discuss a few things about it here.
Lets start with the good things, because there are quite a few. The Chrome browser is designed to give the [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday Google released their brand-new browser Chrome, but is this the revolutionary browser we have all been waiting for ? I&#8217;ve tested this browser for about 10hours now, I&#8217;ll discuss a few things about it here.</p>
<p><span id="more-142"></span>Lets start with the good things, because there are quite a few. The Chrome browser is designed to give the user as much space as possible to display web content. There is no statusbar, no menubar and no titlebar. Ok, maybe this looks a bit different from what we&#8217;re all used to, but in my opinion its a pretty good improvement. For us who use the statusbar ( including me ), don&#8217;t panic. Whenever you hover over a link, a small statusbar pops up at the bottom of the browserscreen. This goes for some other actions too, so its not that different from your average browser.</p>
<p>The Chrome layout is fresh, simple and it makes the browser easy to use. There isn&#8217;t a flood of information available at first sight, we just focus on the webpage here. History, downloads and favorites are only one click away, there is a possibility to display a favorites-bar too.  The options-window is pretty small, it only contains what we really need. Take a look at picture 3 for the layout and favorites.</p>
<p>Its not the lightest browser however, when we look at the stats Google Chrome created for us ( and we can see those in picture 2 ), we see that Opera still has the crown there. Chrome has its own task manager, and statistics page for each tab. It also displays other browsers, if they are running on the host computer. To clearify the statistics on picture 2, I opened the bydust.com mainpage in 5 different browsers, just to see the differences between browsers there.</p>
<p>Pages load faster too, the Google guys didn&#8217;t lie about that. Whenever you open a large page, you get the idea that its loaded faster than on whatever browser you&#8217;ve used before. Same goes for executing javascript, thats one point more for Google Chrome.</p>
<p>On Chrome&#8217;s default start page you can see your most visited websites, including thumbnails. Pretty nice Google, but it would be nicer if we could set our own websites on the quickdial function. Lets hope this will be one of the first plugins released for Google Chrome.</p>
<p>According to Google Chrome shouldn&#8217;t freeze or lock up whenever something bad happens in one of its tabs, the problem should be kept in that particular tab. Well, thats a pretty nice idea and it works most of the time, but I&#8217;ve had a few freezes already. Mostly its nothing, I close a tab or make a request and the browser freezes for a second, but right before I started writing this review I had to kill the process because it was taking all available CPU recources. I was browsing for an image file, maybe it had a little problem with explorer - I don&#8217;t know.</p>
<p>Another &#8220;bad&#8221; thing about Chrome are the resizable textarea&#8217;s. Thats pretty usefull indeed, but whatever you type in those things isn&#8217;t shown as it should be. Sometimes parts of words are dissapearing, or a whole sentence vanishes. Its still there, we just don&#8217;t see it.</p>
<p>Ok, this must be the longest blogpost ever (from me, that is). Hope this was interesting for you :)</p>
<p> </p>
<p>Small edit: after reading Robert Accettura&#8217;s blogposts about Google Chrome I thought you guys might find this interesting.<br />
Here are <a href="http://robert.accettura.com/blog/2008/09/02/initial-thoughts-on-google-chrome/" target="_blank">his initial thoughts on Chrome</a>, and <a href="http://robert.accettura.com/blog/2008/09/03/aboutinternets/" target="_blank">the easter egg</a> he discovered.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bydust.com/google-chrome-the-revolutionary-browser/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top 49 of best free Wordpress Themes and Templates</title>
		<link>http://www.bydust.com/top-49-of-best-free-wordpress-themes-and-templates/</link>
		<comments>http://www.bydust.com/top-49-of-best-free-wordpress-themes-and-templates/#comments</comments>
		<pubDate>Sat, 16 Aug 2008 15:26:19 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
		
		<category><![CDATA[Noteworthy]]></category>

		<category><![CDATA[Themes]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.bydust.com/?p=111</guid>
		<description><![CDATA[Lots of people are looking for some good and colorfull Wordpress themes for their blog, and even more people have alot of trouble finding the one they need. Thats why I&#8217;ve set up my top 49 of free Wordpress themes for you to download.

You might want to check out my Fhi-zin theme, its a flashy [...]]]></description>
			<content:encoded><![CDATA[<p>Lots of people are looking for some good and colorfull Wordpress themes for their blog, and even more people have alot of trouble finding the one they need. Thats why I&#8217;ve set up my top 49 of free Wordpress themes for you to download.</p>
<p><span id="more-111"></span></p>
<p>You might want to check out my <a href="http://www.bydust.com/fhi-zin-free-ajax-wordpress-theme-template-for-portfolio-and-photography/">Fhi-zin theme</a>, its a flashy AJAX theme which is perfect for a portfolio or photography website.</p>
<p>Enough said, start looking!</p>
<table id="table_button_links" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Aalglatt</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/aalglatt.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.felixkrusch.de/testthemes2/">View demo</a></p>
<p><a href="http://www.felixkrusch.de/?s=aalglatt&amp;x=0&amp;y=0">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Aspire</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/aspire.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.infocreek.com/webdesign/aspire.html">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Autumn Concept</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/autumnconcept.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.tenbytwenty.com/products/wordpress-themes/autumn-concept">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>deLight</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/delight.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.nattywp.com/test.php?theme_id=140">View demo</a></p>
<p><a href="http://www.nattywp.com/view-theme.php?theme_id=140&amp;theme_name=deLight">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>dfMarine</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/dfmarine.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://marine.dezinerfolio.com/">View demo</a></p>
<p><a href="http://www.dezinerfolio.com/2007/10/22/dfmarine-wordpress-theme/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>dilectio</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/dilectico.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.wp-themes.designdisease.com/testrun/?theme=dilectio">View   demo</a></p>
<p><a href="http://www.smashingmagazine.com/2007/12/21/dilectio-a-smashing-wordpress-theme/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Dreamplace</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/dreamplace.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.nattywp.com/test-natty.php?theme_id=99902">View   demo</a></p>
<p><a href="http://www.nattywp.com/view-natty-theme.php?theme_id=99902&amp;theme_name=Dreamplace">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Elegance</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/elegance.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.nattywp.com/test.php?theme_id=65">View demo</a></p>
<p><a href="http://www.nattywp.com/view-theme.php?theme_id=65&amp;theme_name=Elegance">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Fauna</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/fauna.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.noscope.com/fauna/">View demo</a></p>
<p><a href="http://www.noscope.com/fauna/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Fluid Solution</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/fluidsolution.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.wpdemo.kaushalsheth.com/index.php?wptheme=Fluid+Solution">View   demo</a></p>
<p><a href="http://www.kaushalsheth.com/fluid-solution-wordpress-theme-released/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Freshy</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/freshy.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.jide.fr/english/downloads/template-freshy-wordpress/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Glossy blue</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/glossyblue.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.ndesign-studio.com/resources/wp-themes/glossyblue/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Gossip City</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/gossipcity.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.wp-themes.designdisease.com/testrun/?theme=wp_gossipcity2/gossipcity">View   demo</a></p>
<p><a href="http://www.celebrific.com/gossip-city-wordpress-theme-release/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Gridline lite</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/gridline.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://gridline.thadallender.com/index.php?wptheme=Gridline+Lite">View   demo</a></p>
<p><a href="http://graphpaperpress.com/2007/12/09/gridline-lite/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Hello Wiki</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/hellowiki.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://hellowiki.com/2007/02/28/wordpress-theme-hello-2007/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>I3 theme brothers, Left and Right!</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/i3themebrothers.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.mangoorange.com/2007/06/18/i3theme-brothers-left-and-right/">View   demo</a></p>
<p><a href="http://www.mangoorange.com/2007/06/18/i3theme-brothers-left-and-right/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>I feel dirty</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/ifeeldirty.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://studio.st/i-feel-dirty/">View demo</a></p>
<p><a href="http://studio.st/i-feel-dirty/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Illacrimo</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/illacrimo.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.wp-themes.designdisease.com/testrun/?theme=wp_illacrimo/illacrimo">View   demo</a></p>
<p><a href="http://wp-themes.designdisease.com/category/free-blog-themes/illacrimo/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Intrablog</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/intrablog.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.anieto2k.com/2006/11/23/intrablog-ahora-para-wordpress/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Jello Wala Mello</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/jellowallamelo.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.wpdesigner.com/2007/10/06/jello-wala-mello-wordpress-theme/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>JSTheme V1.1</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/jstheme1.1.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://jsbox.net/264">View demo</a></p>
<p><a href="http://jsbox.net/264">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>JSTheme</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/jstheme.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://jsbox.net/389">View demo</a></p>
<p><a href="http://jsbox.net/389">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Light</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/light.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://wpzone.net/demo/?wpzone_theme=Light">View demo</a></p>
<p><a href="http://wpzone.net/free-wordpress-themes/light/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Metamorph tropicforest</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/metamorph.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.nattywp.com/test.php?theme_id=92">View demo</a></p>
<p><a href="http://www.nattywp.com/view-theme.php?theme_id=92&amp;theme_name=metamorph_tropicforest">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Modern</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/modern.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.ulfpettersson.se/design/modern/">View demo</a></p>
<p><a href="http://www.ulfpettersson.se/design/modern/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Modicus Remix</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/modicusremix.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.artculture.com/news/art-culture/modicus-wordpress-theme-remix">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>New order</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/neworder.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.wpsnap.com/test/?wptheme=73">View demo</a></p>
<p><a href="http://www.wpsnap.com/2007/07/25/new-order/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Nishita</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/nishita.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.clipthephotos.com/">View demo</a></p>
<p><a href="http://www.brajeshwar.com/2006/nishita-another-free-photo-blog-wordpress-theme/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Not so fresh</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/notsofresh.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.xsized.de/wordpress-theme-not-so-fresh/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Peacefull rush</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/peacefullrush.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.wpdesigner.com/2007/01/17/peaceful-rush-wordpress-theme/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>PocketT</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/pockett.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.nyssajbrown.net/pockett/">View demo</a></p>
<p><a href="http://www.nyssajbrown.net/2007/11/04/pockett-wordpress-theme/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Resurrection</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/resurrection.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://vikiworks.com/2007/09/11/wp-theme-resurrection/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Rugged</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/rugged.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.nattywp.com/test.php?theme_id=144">View demo</a></p>
<p><a href="http://www.nattywp.com/view-theme.php?theme_id=144&amp;theme_name=RuggedWordPressTheme">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Sakena</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/sakena.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://wordpress.diy-template.com/">View demo</a></p>
<p><a href="http://shaziamistry.com/webdesign/blog/introducing_sakeena_for_wordpress/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>School&#8217;s in session</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/schoolsinsession.jpg" alt="" /></td>
<td width="242" valign="top"><a href="http://nuwen.com/media/wordpress-themes">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Several</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/several.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://several3.jeremyreviews.com/">View demo</a></p>
<p><a href="http://themespack.com/several3-wordpress-theme.html">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Sharpfolio</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/sharpfolio.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://webrevolutionary.com/sharpfolio-wordpress-portfolio-theme/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Simplicity</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/simplicity.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.koch-werkstatt.de/2007/03/24/wordpress-theme-simplicity/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>SimPress</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/simpress.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://sv2.dezinerfolio.com/">View demo</a></p>
<p><a href="http://www.dezinerfolio.com/2007/10/10/just-another-wodpress-theme/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Smashing theme</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/smashingtheme.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.wp-themes.designdisease.com/testrun/?theme=wp_smashingtheme">View   demo</a></p>
<p><a href="http://www.smashingmagazine.com/2007/09/07/smashing-freefont-and-wordpress-theme">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>So Suechtig</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/sosuechtig.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.sosuechtig.de/2008/02/03/sosuechtig-29-beta5/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Supermini</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/supermini.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://blog.unnerkrunt.de/2006/07/27/this-supermini-thing/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>The morning after</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/themorningafter.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://themasterplan.in/themes/the-morning-after/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Trendy cork</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/trendycork.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.nattywp.com/test.php?theme_id=91">View demo</a></p>
<p><a href="http://www.nattywp.com/view-theme.php?theme_id=91&amp;theme_name=TrendyCork">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Vector Plain</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/vectorplain.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.nattywp.com/test.php?theme_id=149">View demo</a></p>
<p><a href="http://www.nattywp.com/view-theme.php?theme_id=149&amp;theme_name=VectorPlain1.0">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Winter stream</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/winterstream.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://www.nattywp.com/test.php?theme_id=6">View demo</a></p>
<p><a href="http://www.nattywp.com/view-theme.php?theme_id=6&amp;theme_name=Winterstream">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>WP Premium</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/wppremium.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://cssace.com/?preview_theme=WP_Premium">View demo</a></p>
<p><a href="http://cssace.com/free-wp-premium-theme-is-here/">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>xPlosive reloaded</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/xplosive-reloaded.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://wpthemes.blogohblog.net/index.php?wptheme=Xplosive+Reloaded">View   demo</a></p>
<p><a href="http://www.freeminders.org/temas/544">Download</a></td>
</tr>
<tr>
<td colspan="2" width="558" valign="top">
<h2>Yoghourt</h2>
</td>
</tr>
<tr>
<td width="316" valign="top"><img src="http://www.bydust.com/wp-content/uploads/bestwpthemes/yoghourt.jpg" alt="" width="300" height="200" /></td>
<td width="242" valign="top"><a href="http://web-kreation.com/wp_yoghourt/">Download</a></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.bydust.com/top-49-of-best-free-wordpress-themes-and-templates/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Firebug, web development evolved</title>
		<link>http://www.bydust.com/firebug-web-development-evolved/</link>
		<comments>http://www.bydust.com/firebug-web-development-evolved/#comments</comments>
		<pubDate>Sat, 16 Aug 2008 13:56:19 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
		
		<category><![CDATA[Browsers]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[Noteworthy]]></category>

		<category><![CDATA[Reviews]]></category>

		<category><![CDATA[XML]]></category>

		<category><![CDATA[XSD]]></category>

		<category><![CDATA[XSL]]></category>

		<guid isPermaLink="false">http://www.bydust.com/?p=101</guid>
		<description><![CDATA[Firebug integrates with Firefox to put a wealth of web development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page.

This is a must-have tool for any developer who&#8217;s frequently coding in javascript, CSS and HTML. The Firebug webpage offers you alot of [...]]]></description>
			<content:encoded><![CDATA[<p>Firebug integrates with Firefox to put a wealth of web development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page.</p>
<p><span id="more-101"></span></p>
<p>This is a must-have tool for any developer who&#8217;s frequently coding in javascript, CSS and HTML. The Firebug webpage offers you alot of info and help on almost anything you need.</p>
<p>If you&#8217;re interested in this, you might want to read my post about another Firefox add-on, the <a href="http://www.bydust.com/firefox-addon-web-developer/">Webdeveloper toolbar</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bydust.com/firebug-web-development-evolved/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Videobased promogame, &#8220;De schat van Napoleon&#8221;</title>
		<link>http://www.bydust.com/videobased-promogame-napoleons-treasure-de-schat-van-napoleon/</link>
		<comments>http://www.bydust.com/videobased-promogame-napoleons-treasure-de-schat-van-napoleon/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 16:18:15 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
		
		<category><![CDATA[Actionscript]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Portfolio]]></category>

		<category><![CDATA[School]]></category>

		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.bydust.com/?p=138</guid>
		<description><![CDATA[This videobased game was made to promote Fort Napoleon, an old fortress in the dunes of Ostend, Belgium. With this game we aim for families with little children, sending them a message that there is more to see here in Ostend, and they should visit this ancient fortress.

The story of the game is pretty simple. [...]]]></description>
			<content:encoded><![CDATA[<p>This videobased game was made to promote Fort Napoleon, an old fortress in the dunes of Ostend, Belgium. With this game we aim for families with little children, sending them a message that there is more to see here in Ostend, and they should visit this ancient fortress.</p>
<p><span id="more-138"></span></p>
<p>The story of the game is pretty simple. The visitor is waiting in the dunes, where he should meet a friend. Offcourse the friend never shows up, but he sends the user a textmessage saying he&#8217;s trapped inside the fortress, and the user should get him out.<br />
Once the user gets close to the fortress he can choose to view the historical information given about the places he passes through, or he can just run along and play the game. When he meets up with his friend inside the fort, a quest for Napoleons treasure begins.</p>
<p>Ok, now you have some general information, go play the game !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bydust.com/videobased-promogame-napoleons-treasure-de-schat-van-napoleon/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
