<?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>funnydingo.de &#187; Projekte</title>
	<atom:link href="http://www.funnydingo.de/categories/projekte/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.funnydingo.de</link>
	<description>kurz und knapp</description>
	<lastBuildDate>Sat, 24 Dec 2011 08:23:54 +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>New Tag Cloud v0.7 released</title>
		<link>http://www.funnydingo.de/blog/2009/11/10/new-tag-cloud-v0-7-released/</link>
		<comments>http://www.funnydingo.de/blog/2009/11/10/new-tag-cloud-v0-7-released/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 22:22:00 +0000</pubDate>
		<dc:creator>FunnyDingo</dc:creator>
				<category><![CDATA[Projekte]]></category>
		<category><![CDATA[new tag cloud]]></category>

		<guid isPermaLink="false">http://www.funnydingo.de/?p=1076</guid>
		<description><![CDATA[Wow, it&#8217;s a very long time ago I released the last update. But now New Tag Cloud has some new features! Filtering No you are able to filter for tags used in defined categories and skip tags. It&#8217;s very nice because you can say: Only display tags used in categories a, b and c but [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, it&#8217;s a very long time ago I released the last update. But now <a href="/projekte/new-tag-cloud/">New Tag Cloud</a> has some new features!</p>
<p><strong>Filtering</strong><br />
No you are able to filter for tags used in defined categories and skip tags. It&#8217;s very nice because you can say: Only display tags used in categories a, b and c but not the tags home, baby and car. I hope you like it!</p>
<p><strong>Caching</strong><br />
That&#8217;s done too. I&#8217;ve implemented a caching feature. For the first time the cloud is generated normal but after generating, the complete HTML code will be written to the database and for every next time the cloud has to been shown, the plugin can read the complete HTML code from the database and can skip the generating process. That&#8217;s very cool <img src='http://www.funnydingo.de/wp-content/plugins/smilies-themer/adiumicons/wink.png' alt=';)' class='wp-smiley' /> Oh, the cache will be cleared every time you publish or update an post, so the cloud is up to date (sure, you have the ability to clear the cache manualy).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.funnydingo.de/blog/2009/11/10/new-tag-cloud-v0-7-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Filter tags in New Tag Cloud</title>
		<link>http://www.funnydingo.de/blog/2009/11/09/filter-tags-in-new-tag-cloud/</link>
		<comments>http://www.funnydingo.de/blog/2009/11/09/filter-tags-in-new-tag-cloud/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 17:19:54 +0000</pubDate>
		<dc:creator>FunnyDingo</dc:creator>
				<category><![CDATA[Projekte]]></category>
		<category><![CDATA[new tag cloud]]></category>

		<guid isPermaLink="false">http://www.funnydingo.de/?p=1074</guid>
		<description><![CDATA[Often I've been asked for a way to filter the tags used by New Tag Cloud. Only tags used in posts from defined categories should be used. Today I found the time to play with possible SQL statements and found a good one: PLAIN TEXT SQL: SELECT wp_terms.term_id, wp_terms.name, LOWER&#40;wp_terms.name&#41; AS lowername, wp_term_taxonomy.count FROM wp_terms [...]]]></description>
			<content:encoded><![CDATA[<p>Often I've been asked for a way to filter the tags used by New Tag Cloud. Only tags used in posts from defined categories should be used. Today I found the time to play with possible SQL statements and found a good one:</p>
<div class="igBar"><span id="lsql-2"><a href="#" onclick="javascript:showPlainTxt('sql-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">SQL:</span>
<div id="sql-2">
<div class="sql">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#455A79;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">SELECT</span> wp_terms.term_id, wp_terms.name, LOWER<span style="color:#006600; font-weight:bold;">&#40;</span>wp_terms.name<span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color: #993333; font-weight: bold;">AS</span> lowername, wp_term_taxonomy.count</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">FROM</span> wp_terms</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#455A79;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">LEFT</span> <span style="color: #993333; font-weight: bold;">JOIN</span> wp_term_taxonomy <span style="color: #993333; font-weight: bold;">ON</span> wp_terms.term_id = wp_term_taxonomy.term_id</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">LEFT</span> <span style="color: #993333; font-weight: bold;">JOIN</span> wp_term_relationships <span style="color: #993333; font-weight: bold;">ON</span> wp_term_taxonomy.term_taxonomy_id = wp_term_relationships.term_taxonomy_id</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#455A79;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">LEFT</span> <span style="color: #993333; font-weight: bold;">JOIN</span> wp_posts <span style="color: #993333; font-weight: bold;">ON</span> wp_term_relationships.object_id = wp_posts.ID</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">WHERE</span> wp_term_relationships.object_id <span style="color: #993333; font-weight: bold;">IN</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#455A79;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#40;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">SELECT</span> object_id</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#455A79;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">FROM</span> wp_term_relationships</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">LEFT</span> <span style="color: #993333; font-weight: bold;">JOIN</span> wp_term_taxonomy <span style="color: #993333; font-weight: bold;">ON</span> wp_term_relationships.term_taxonomy_id = wp_term_taxonomy.term_taxonomy_id</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#455A79;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">WHERE</span> term_id <span style="color: #993333; font-weight: bold;">IN</span> <span style="color:#006600; font-weight:bold;">&#40;</span><span style="color: #cc66cc;color:#800000;">1</span>,<span style="color: #cc66cc;color:#800000;">2</span>,...<span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#455A79;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">AND</span> wp_term_taxonomy.taxonomy = <span style="color: #ff0000;">'post_tag'</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">AND</span> wp_term_taxonomy.count&gt; <span style="color: #cc66cc;color:#800000;">0</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#455A79;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">GROUP</span> <span style="color: #993333; font-weight: bold;">BY</span>    wp_terms.name</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">ORDER</span> <span style="color: #993333; font-weight: bold;">BY</span>    wp_term_taxonomy.count <span style="color: #993333; font-weight: bold;">DESC</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>This query is very similar to the old one and needs on my system only 0.05 seconds more than the old one. But lets take a look in detail.</p>
<p>We will start in lines 8 - 11. Realy, that is all the magic! This small query returns the IDs of all objects (in our case posts) wich are in the categories wich IDs have been placed in the brackets. Now the main query (lines 1-6 and 13-16) can filter the relevant posts for those, wich are returned by the sub query. Sure, in this case, we have to do a join with the posts table, but cause we are only interested in tags used in already published posts, we have to do it anyway.</p>
<p>So, in the next days I'll implement this in the plugin and release the new version.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.funnydingo.de/blog/2009/11/09/filter-tags-in-new-tag-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 langsamer bei HDD Burstrate!?</title>
		<link>http://www.funnydingo.de/blog/2009/05/22/windows-7-langsamer-bei-hdd-burstrate/</link>
		<comments>http://www.funnydingo.de/blog/2009/05/22/windows-7-langsamer-bei-hdd-burstrate/#comments</comments>
		<pubDate>Fri, 22 May 2009 09:11:12 +0000</pubDate>
		<dc:creator>FunnyDingo</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Projekte]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.funnydingo.de/?p=845</guid>
		<description><![CDATA[Ich habe gerade mal mit HD Tach die Performance meiner Platten gemessen. Ich war erstaunt, dass die Zugriffe langsamer waren als unter Windows XP SP3. Da ich seit dem letzten Test unter Windows XP einiges an der Hardware geändert habe, habe ich die Messung unter XP wiederholt. Selbes Ergebnis. Beim Burst ist Windows 7 langsamer. [...]]]></description>
			<content:encoded><![CDATA[<p>Ich habe gerade mal mit HD Tach die Performance meiner Platten gemessen. Ich war erstaunt, dass die Zugriffe langsamer waren als unter Windows XP SP3. Da ich seit dem letzten Test unter Windows XP einiges an der Hardware geändert habe, habe ich die Messung unter XP wiederholt. Selbes Ergebnis. Beim Burst ist Windows 7 langsamer. Hier mal ein paar Screenshots (rot = Windows 7, blau = Windows XP SP3).</p>

<a href='http://www.funnydingo.de/blog/2009/05/22/windows-7-langsamer-bei-hdd-burstrate/samsung-hd502ij/' title='Samsung HD502IJ'><img width="150" height="150" src="http://www.funnydingo.de/wp-content/uploads/2009/05/samsung-hd502ij-150x150.png" class="attachment-thumbnail" alt="Samsung HD502IJ (500GB)" title="Samsung HD502IJ" /></a>
<a href='http://www.funnydingo.de/blog/2009/05/22/windows-7-langsamer-bei-hdd-burstrate/wdc-wd10/' title='WDC WD10'><img width="150" height="150" src="http://www.funnydingo.de/wp-content/uploads/2009/05/wdc-wd10-150x150.png" class="attachment-thumbnail" alt="WDC WD10 (1TB)" title="WDC WD10" /></a>
<a href='http://www.funnydingo.de/blog/2009/05/22/windows-7-langsamer-bei-hdd-burstrate/wdc-wd400bb/' title='WDC WD400BB'><img width="150" height="150" src="http://www.funnydingo.de/wp-content/uploads/2009/05/wdc-wd400bb-150x150.png" class="attachment-thumbnail" alt="WDC WD400BB (40GB)" title="WDC WD400BB" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.funnydingo.de/blog/2009/05/22/windows-7-langsamer-bei-hdd-burstrate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Test of WordPress 2.5</title>
		<link>http://www.funnydingo.de/blog/2008/03/16/test-of-wordpress-25/</link>
		<comments>http://www.funnydingo.de/blog/2008/03/16/test-of-wordpress-25/#comments</comments>
		<pubDate>Sun, 16 Mar 2008 13:27:57 +0000</pubDate>
		<dc:creator>FunnyDingo</dc:creator>
				<category><![CDATA[funnydingo.de]]></category>
		<category><![CDATA[Projekte]]></category>
		<category><![CDATA[new tag cloud]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.funnydingo.de/blog/2008/03/16/test-of-wordpress-25/</guid>
		<description><![CDATA[A few minutes ago I tested compatibility between my WordPress installation and the new WordPress 2.5 (nightly build). Everything works. The theme, all plugins (even my New Tag Cloud) and the widgets. So I think it should be possible to upgrade my blog to 2.5 on release date and optimize it later.]]></description>
			<content:encoded><![CDATA[<p>A few minutes ago I tested compatibility between my WordPress installation and the new WordPress 2.5 (<a href="http://wordpress.org/download/nightly/" target="_blank">nightly build</a>). Everything works. The theme, all plugins (even my <a href="/projekte/new-tag-cloud/">New Tag Cloud</a>) and the widgets. So I think it should be possible to upgrade my blog to 2.5 on release date and optimize it later.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.funnydingo.de/blog/2008/03/16/test-of-wordpress-25/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kleines yac Update</title>
		<link>http://www.funnydingo.de/blog/2008/01/19/kleines-yac-update/</link>
		<comments>http://www.funnydingo.de/blog/2008/01/19/kleines-yac-update/#comments</comments>
		<pubDate>Sat, 19 Jan 2008 00:03:37 +0000</pubDate>
		<dc:creator>FunnyDingo</dc:creator>
				<category><![CDATA[Projekte]]></category>
		<category><![CDATA[next4u.de]]></category>
		<category><![CDATA[yac]]></category>

		<guid isPermaLink="false">http://www.funnydingo.de/blog/2008/01/19/kleines-yac-update/</guid>
		<description><![CDATA[Gerade habe ich ein kleines yac Update veröffentlich. Dieses Update löst ein Problem mit bestimmten Formatierungszeichen die zu Problemen in manchen Browsern führen können. Der next4u.de-Chat hat das Bugfix direkt eingespielt bekommen. Nun ist Version 0.9.7 aktuell. Für alle anderen yac Betreiber steht die aktuelle Version wie immer via SVN zur Verfügung.]]></description>
			<content:encoded><![CDATA[<p>Gerade habe ich ein kleines yac Update veröffentlich. Dieses Update löst ein Problem mit bestimmten Formatierungszeichen die zu Problemen in manchen Browsern führen können. Der next4u.de-Chat hat das Bugfix direkt eingespielt bekommen. Nun ist Version 0.9.7 aktuell.</p>
<p>Für alle anderen yac Betreiber steht die aktuelle Version wie immer via SVN zur Verfügung.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.funnydingo.de/blog/2008/01/19/kleines-yac-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Laufzeit aktueller yac Installationen</title>
		<link>http://www.funnydingo.de/blog/2008/01/18/laufzeit-aktueller-yac-installationen/</link>
		<comments>http://www.funnydingo.de/blog/2008/01/18/laufzeit-aktueller-yac-installationen/#comments</comments>
		<pubDate>Fri, 18 Jan 2008 22:21:43 +0000</pubDate>
		<dc:creator>FunnyDingo</dc:creator>
				<category><![CDATA[Projekte]]></category>
		<category><![CDATA[next4u.de]]></category>
		<category><![CDATA[recensio.org]]></category>
		<category><![CDATA[yac]]></category>

		<guid isPermaLink="false">http://www.funnydingo.de/blog/2008/01/18/laufzeit-aktueller-yac-installationen/</guid>
		<description><![CDATA[Es sind zwar nicht viele, aber hier ein kleiner Überblick: next4u.de: 1427h 15m recensio.org: 632h 10m funnydingo.de: 1427h 22m Ich glaube bei recensio.org war der letzte Reboot nur wegen eines Serverumzugs notwenig (oder Bernhard?).]]></description>
			<content:encoded><![CDATA[<p>Es sind zwar nicht viele, aber hier ein kleiner Überblick:</p>
<p><a href="http://www.next4u.de/" target="_blank">next4u.de</a>: 1427h 15m<br />
<a href="http://www.recensio.org/" target="_blank"> recensio.org</a>:  632h 10m<br />
<a href="http://yac.funnydingo.de/demo/" target="_blank">funnydingo.de</a>: 1427h 22m</p>
<p>Ich glaube bei recensio.org war der letzte Reboot nur wegen eines Serverumzugs notwenig (oder Bernhard?).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.funnydingo.de/blog/2008/01/18/laufzeit-aktueller-yac-installationen/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New Tag Cloud 0.4 Testing Version</title>
		<link>http://www.funnydingo.de/blog/2008/01/16/new-tag-cloud-04-testing-version/</link>
		<comments>http://www.funnydingo.de/blog/2008/01/16/new-tag-cloud-04-testing-version/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 21:36:15 +0000</pubDate>
		<dc:creator>FunnyDingo</dc:creator>
				<category><![CDATA[Projekte]]></category>
		<category><![CDATA[new tag cloud]]></category>

		<guid isPermaLink="false">http://www.funnydingo.de/blog/2008/01/16/new-tag-cloud-04-testing-version/</guid>
		<description><![CDATA[A few minutes ago I uploaded version 0.4 of New Tag Cloud. It's only a testing version, so access the svn repository to download it. Read the readme.txt to see what's new.]]></description>
			<content:encoded><![CDATA[<p>A few minutes ago I uploaded version 0.4 of <a href="/projekte/new-tag-cloud/">New Tag Cloud</a>. It's only a testing version, so access the <a href="http://svn.wp-plugins.org/new-tag-cloud/tags/" target="_blank">svn repository</a> to download it. Read the readme.txt to see what's new.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.funnydingo.de/blog/2008/01/16/new-tag-cloud-04-testing-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get New Tag Cloud colored</title>
		<link>http://www.funnydingo.de/blog/2007/11/27/get-new-tag-cloud-colored/</link>
		<comments>http://www.funnydingo.de/blog/2007/11/27/get-new-tag-cloud-colored/#comments</comments>
		<pubDate>Tue, 27 Nov 2007 18:43:19 +0000</pubDate>
		<dc:creator>FunnyDingo</dc:creator>
				<category><![CDATA[Projekte]]></category>
		<category><![CDATA[new tag cloud]]></category>

		<guid isPermaLink="false">http://www.funnydingo.de/blog/2007/11/27/get-new-tag-cloud-colored/</guid>
		<description><![CDATA[coke3grad had a very greate idea to get the tag cloud colored. By adding a class-property to the a-tag you are able to define more style definitions for the tag cloud. See coke3grad's comment.]]></description>
			<content:encoded><![CDATA[<p>coke3grad had a very greate idea to get the tag cloud colored. By adding a class-property to the a-tag you are able to define more style definitions for the tag cloud. See <a href="http://www.funnydingo.de/projekte/new-tag-cloud/#comment-182">coke3grad's comment</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.funnydingo.de/blog/2007/11/27/get-new-tag-cloud-colored/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bug in New Tag Cloud</title>
		<link>http://www.funnydingo.de/blog/2007/11/25/bug-in-new-tag-cloud/</link>
		<comments>http://www.funnydingo.de/blog/2007/11/25/bug-in-new-tag-cloud/#comments</comments>
		<pubDate>Sun, 25 Nov 2007 17:15:36 +0000</pubDate>
		<dc:creator>FunnyDingo</dc:creator>
				<category><![CDATA[Projekte]]></category>
		<category><![CDATA[new tag cloud]]></category>

		<guid isPermaLink="false">http://www.funnydingo.de/blog/2007/11/25/345/</guid>
		<description><![CDATA[There is a little bug in version 0.3 of New Tag Cloud. If you have downloaded the plugin between 19th and 25th Nov please redownload it. See this comment for more informations.]]></description>
			<content:encoded><![CDATA[<p>There is a little bug in version 0.3 of <a href="/projekte/new-tag-cloud/">New Tag Cloud</a>. If you have downloaded the plugin between 19th and 25th Nov please <a href="http://wordpress.org/extend/plugins/new-tag-cloud/" target="_blank">redownload it</a>. See <a href="/projekte/new-tag-cloud/#comment-178">this comment</a> for more informations.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.funnydingo.de/blog/2007/11/25/bug-in-new-tag-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NewTagCloud 0.3 released</title>
		<link>http://www.funnydingo.de/blog/2007/11/19/newtagcloud-03-released/</link>
		<comments>http://www.funnydingo.de/blog/2007/11/19/newtagcloud-03-released/#comments</comments>
		<pubDate>Mon, 19 Nov 2007 19:50:05 +0000</pubDate>
		<dc:creator>FunnyDingo</dc:creator>
				<category><![CDATA[Projekte]]></category>
		<category><![CDATA[new tag cloud]]></category>

		<guid isPermaLink="false">http://www.funnydingo.de/blog/2007/11/19/newtagcloud-03-released/</guid>
		<description><![CDATA[Version 0.3 of NewTagCloud is released. Much fun!]]></description>
			<content:encoded><![CDATA[<p>Version 0.3 of <a href="/projekte/new-tag-cloud/">NewTagCloud</a> is released. Much fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.funnydingo.de/blog/2007/11/19/newtagcloud-03-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>yac Demo Chat wieder online</title>
		<link>http://www.funnydingo.de/blog/2007/11/14/yac-demo-chat-wieder-online/</link>
		<comments>http://www.funnydingo.de/blog/2007/11/14/yac-demo-chat-wieder-online/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 15:02:06 +0000</pubDate>
		<dc:creator>FunnyDingo</dc:creator>
				<category><![CDATA[Projekte]]></category>
		<category><![CDATA[yac]]></category>

		<guid isPermaLink="false">http://www.funnydingo.de/blog/2007/11/14/yac-demo-chat-wieder-online/</guid>
		<description><![CDATA[Nach einigen Problemen ist es mir nun endlich gelungen, den yac Demo Chat wieder online zu bekommen. Wer möchte kann ihn also gerne wieder ausprobieren.]]></description>
			<content:encoded><![CDATA[<p>Nach einigen Problemen ist es mir nun endlich gelungen, den <a href="http://yac.funnydingo.de/demo/" target="_blank">yac Demo Chat</a> wieder online zu bekommen. Wer möchte kann ihn also gerne wieder ausprobieren.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.funnydingo.de/blog/2007/11/14/yac-demo-chat-wieder-online/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>State of developing 0.3 of New Tag Cloud (update)</title>
		<link>http://www.funnydingo.de/blog/2007/11/13/state-of-developing-03-of-new-tag-cloud-update/</link>
		<comments>http://www.funnydingo.de/blog/2007/11/13/state-of-developing-03-of-new-tag-cloud-update/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 20:00:17 +0000</pubDate>
		<dc:creator>FunnyDingo</dc:creator>
				<category><![CDATA[Projekte]]></category>
		<category><![CDATA[new tag cloud]]></category>

		<guid isPermaLink="false">http://www.funnydingo.de/blog/2007/11/13/state-of-developing-03-of-new-tag-cloud-update/</guid>
		<description><![CDATA[I uploaded the new version to the svn repository. Please remeber, that it's only a testing version!]]></description>
			<content:encoded><![CDATA[<p>I uploaded the new version to the <a href="http://svn.wp-plugins.org/new-tag-cloud/tags/" target="_blank">svn repository</a>. Please remeber, that it's only a testing version!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.funnydingo.de/blog/2007/11/13/state-of-developing-03-of-new-tag-cloud-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>State of developing 0.3 of New Tag Cloud</title>
		<link>http://www.funnydingo.de/blog/2007/11/12/state-of-developing-03-of-new-tag-cloud/</link>
		<comments>http://www.funnydingo.de/blog/2007/11/12/state-of-developing-03-of-new-tag-cloud/#comments</comments>
		<pubDate>Mon, 12 Nov 2007 21:00:52 +0000</pubDate>
		<dc:creator>FunnyDingo</dc:creator>
				<category><![CDATA[Projekte]]></category>
		<category><![CDATA[new tag cloud]]></category>

		<guid isPermaLink="false">http://www.funnydingo.de/blog/2007/11/12/state-of-developing-03-of-new-tag-cloud/</guid>
		<description><![CDATA[Today I finished developing version 0.3 of New Tag Cloud. Everybody who's interessted of testing the new version can send me a mail.]]></description>
			<content:encoded><![CDATA[<p>Today I finished developing version 0.3 of <a href="/projekte/new-tag-cloud/">New Tag Cloud</a>. Everybody who's interessted of testing the new version can <a href="/impressum/kontakt/">send me a mail</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.funnydingo.de/blog/2007/11/12/state-of-developing-03-of-new-tag-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Tag Cloud 0.2 release</title>
		<link>http://www.funnydingo.de/blog/2007/10/06/new-tag-cloud-02-release/</link>
		<comments>http://www.funnydingo.de/blog/2007/10/06/new-tag-cloud-02-release/#comments</comments>
		<pubDate>Fri, 05 Oct 2007 23:44:14 +0000</pubDate>
		<dc:creator>FunnyDingo</dc:creator>
				<category><![CDATA[Projekte]]></category>
		<category><![CDATA[new tag cloud]]></category>

		<guid isPermaLink="false">http://www.funnydingo.de/blog/2007/10/06/new-tag-cloud-02-release/</guid>
		<description><![CDATA[Version 0.2 has been released. There is only a small update. I have added a way to call New Tag Cloud directly from another PHP file (e.g. a theme file). To use it in a theme, locate the place where you want use New Tag Cloud and add this line of code: &#60;?php newtagcloud_output(array('maxcount' =&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>Version 0.2 has been <a href="http://wordpress.org/extend/plugins/new-tag-cloud/" target="_blank">released</a>. There is only a small update. I have added a way to call <em>New Tag Cloud</em> directly from another PHP file (e.g. a theme file). To use it in a theme, locate the place where you want use <em>New Tag Cloud</em> and add this line of code:</p>
<p>&lt;?php<br />
newtagcloud_output(array('maxcount' =&gt; 20, 'bigsize' =&gt; 60, 'smallsize' =&gt; 5, 'step' =&gt; 5, 'sizetype' =&gt; 'px'));<br />
?&gt;</p>
<p>The parameters are the same as you use for the widget:</p>
<ul>
<li>maxcount: number of tags should be shown</li>
<li>bigsize: biggest font size</li>
<li>smallsize: smallest font size</li>
<li>step: font size differenz between two tag</li>
<li>sizetype: sure, the font type like px, em or what ever</li>
</ul>
<p>Please use the <a href="/projekte/new-tag-cloud/">project page</a> to leave a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.funnydingo.de/blog/2007/10/06/new-tag-cloud-02-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Tag Cloud</title>
		<link>http://www.funnydingo.de/blog/2007/09/19/new-tag-cloud/</link>
		<comments>http://www.funnydingo.de/blog/2007/09/19/new-tag-cloud/#comments</comments>
		<pubDate>Wed, 19 Sep 2007 19:33:50 +0000</pubDate>
		<dc:creator>FunnyDingo</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[funnydingo.de]]></category>
		<category><![CDATA[Projekte]]></category>
		<category><![CDATA[new tag cloud]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[tagging]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.funnydingo.de/blog/2007/09/19/new-tag-cloud/</guid>
		<description><![CDATA[Wie ich bereits erzählte, habe ich ein kleines WP-Plugin geschrieben, dass die links zu sehende Tag Cloud erstellt. Ich habe das Plugin nun verfeinert und ins WordPress Extension Repository aufgenommen. Da der SVN-Transfer erst einige Minuten her ist, wird es wohl noch ein wenig dauern, bis es zur Verfügung steht. PS: Hab das Plugin gerade [...]]]></description>
			<content:encoded><![CDATA[<p>Wie ich bereits erzählte, habe ich ein kleines WP-Plugin geschrieben, dass die links zu sehende Tag Cloud erstellt. Ich habe das Plugin nun verfeinert und ins WordPress Extension Repository aufgenommen. Da der SVN-Transfer erst einige Minuten her ist, wird es wohl noch ein wenig dauern, bis es zur Verfügung steht.</p>
<p>PS: Hab das Plugin gerade <a href="http://wordpress.org/extend/plugins/new-tag-cloud/" target="_blank">gefunden</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.funnydingo.de/blog/2007/09/19/new-tag-cloud/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Schöne AJAX Wartebox</title>
		<link>http://www.funnydingo.de/blog/2007/04/10/schone-ajax-wartebox/</link>
		<comments>http://www.funnydingo.de/blog/2007/04/10/schone-ajax-wartebox/#comments</comments>
		<pubDate>Tue, 10 Apr 2007 19:45:06 +0000</pubDate>
		<dc:creator>FunnyDingo</dc:creator>
				<category><![CDATA[Projekte]]></category>

		<guid isPermaLink="false">http://projects.funnydingo.de/wp/blog/2007/04/10/schone-ajax-wartebox/</guid>
		<description><![CDATA[Da ich mich seit einigen Wochen mit AJAX und Web 2.0 beschäftige, habe ich mir überlegt, mal ein "schönes Wartefenster" für solche Anwendung zu basteln. Ein paar fertige DHTML-Scripte und schon gings los... Als Basis dient das DHTML Window widget von dynamicdrive.com, da ich dieses kleine Script als eines der besten für DHTML-Fenster ansehe. Ein [...]]]></description>
			<content:encoded><![CDATA[<p>Da ich mich seit einigen Wochen mit AJAX und Web 2.0 beschäftige, habe ich mir überlegt, mal ein "schönes Wartefenster" für solche Anwendung zu basteln. Ein paar fertige DHTML-Scripte und schon gings los...</p>
<p>Als Basis dient das <a href="http://www.dynamicdrive.com/dynamicindex8/dhtmlwindow/index.htm" target="_blank">DHTML Window widget von dynamicdrive.com</a>, da ich dieses kleine Script als eines der besten für DHTML-Fenster ansehe. Ein paar kleine Anpassungen habe ich vorgenommen, so das man auch "nicht schließbare" Fenster erstellen kann. Herausgekommen ist eine kleine Anwendung die man ohne große Probleme für weitere Anwendungen nutzen kann.</p>
<p>Wer sich das ganze mal ansehen möchte, wird <a href="http://projects.funnydingo.de/nice-ajax-waitingbox/" target="_blank">hier</a>  (englisch!) fündig.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.funnydingo.de/blog/2007/04/10/schone-ajax-wartebox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Webchat-Client via JavaScript?</title>
		<link>http://www.funnydingo.de/blog/2007/04/06/webchat-client-via-javascript/</link>
		<comments>http://www.funnydingo.de/blog/2007/04/06/webchat-client-via-javascript/#comments</comments>
		<pubDate>Fri, 06 Apr 2007 12:15:15 +0000</pubDate>
		<dc:creator>FunnyDingo</dc:creator>
				<category><![CDATA[Projekte]]></category>

		<guid isPermaLink="false">http://projects.funnydingo.de/wp/blog/2007/04/06/webchat-client-via-javascript/</guid>
		<description><![CDATA[Während eines Gespräches mit Badknight kam ich auf die Idee, einen Webchat-Client (wie der [[[) rein in JavaScript zu programmieren. Zwei Ansätze standen mir zur Verfügung: AJAX und JavaObjects. Der Ansatz über AJAX gefiehl mir auf anhieb am besten, da man sich dort nicht noch Gedanken um die Implementierung des HTTP-Protokolls machen muss. Leider sehen [...]]]></description>
			<content:encoded><![CDATA[<p>Während eines Gespräches mit Badknight kam ich auf die Idee, einen Webchat-Client (wie der [[[) rein in JavaScript zu programmieren. Zwei Ansätze standen mir zur Verfügung: AJAX und JavaObjects.</p>
<p>Der Ansatz über AJAX gefiehl mir auf anhieb am besten, da man sich dort nicht noch Gedanken um die Implementierung des HTTP-Protokolls machen muss. Leider sehen die Sicherheitsvorkerhungen des Mozillas bzw. Firefox es nicht vor, AJAX-Requests quer durch das Internet zu schicken und dies müsste bei einem solchen Webclient ja passieren (das HTML-File mit dem JS-Code liegt ja lokal auf dem PC).</p>
<p>Der zweite Ansatz, JavaObjects zu verwenden, schien da schon besser zu sein. Seit JavaScript 1.5 werden JavaObjects geboten. Mit Hilfe dieses Features kann man in JS ein Java-Objekt (wie z.B. einen Java Socket) nutzen. Dieser Ansatz setzt natürlich eine eigene Implementierung des HTTP-Protokolls voraus. Vorteil dieses Weges ist aber auch, dass man weitere Protokolle wie z.B. IRC einbinden könnte.</p>
<p>Leider scheinen auch bei den JavaObjects die Einschränkungen des Browser zu greifen: eine Verbindung zum lokalen Host kann man mit dem Java Socket aufbauen, aber sobald der Zugriff auf eine entfernte Resource erfolgen soll, wirft JS eine Exception "java.security.PrivilegedActionException: java.security.PrivilegedActionException: java.lang.reflect.InvocationTargetException". Schade eigentlich - das wäre bestimmt ein spannendes Projekt geworden.</p>
<p>PS: Bei diesem Versuch habe ich herausgefunden, das Microsofts Internet Explorer mal wieder nicht aktuell sein will. Der Firefox unterstützt mitterweile JavaScript 1.7. Der IE spielt leider noch mit dem (mitterweile fast 10 Jahre altem) JavaScript 1.3 rum.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.funnydingo.de/blog/2007/04/06/webchat-client-via-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unternehmen und VoIP</title>
		<link>http://www.funnydingo.de/blog/2006/11/10/unternehmen-und-voip/</link>
		<comments>http://www.funnydingo.de/blog/2006/11/10/unternehmen-und-voip/#comments</comments>
		<pubDate>Fri, 10 Nov 2006 10:53:26 +0000</pubDate>
		<dc:creator>FunnyDingo</dc:creator>
				<category><![CDATA[Projekte]]></category>

		<guid isPermaLink="false">http://projects.funnydingo.de/wp/blog/2006/11/10/unternehmen-und-voip/</guid>
		<description><![CDATA[Während der Fahrt am Mittwoch von Karlsruhe nach Münster, habe ich mit meinem Abteilunsgleiter über VoIP im Unternehmensumfeld seniert. Wie sieht es denn derzeit im Regelfall aus? Jeder Standort besitzt eine eigene TK-Anlage die eventuell noch untereinander verbunden sind. Wie kann die Zukunft aussehen? TK-Anlagen müssen nicht mehr selbst betrieben werden. TK-Provider könnten große VoIP-Anlagen [...]]]></description>
			<content:encoded><![CDATA[<p>Während der Fahrt am Mittwoch von Karlsruhe nach Münster, habe ich mit meinem Abteilunsgleiter über VoIP im Unternehmensumfeld seniert. Wie sieht es denn derzeit im Regelfall aus? Jeder Standort besitzt eine eigene TK-Anlage die eventuell noch untereinander verbunden sind.</p>
<p>Wie kann die Zukunft aussehen? TK-Anlagen müssen nicht mehr selbst betrieben werden. TK-Provider könnten große VoIP-Anlagen bereitstellen. Die komplette Logik, die bisher selbst betrieben wird, entfällt. Nur noch die Endgeräte werden auf das Hausnetz gesteckt und schon gehts los. Die VoIP-Anlagen werden entsprechen strategisch dezentralisiert, Systemausfälle der TK-Umgebung auf diesem Wege minimiert.</p>
<p>Gehen wir noch einen Schritt weiter. Statten wir Handys mit WLAN-Adaptern aus und schon könnte sich das Handy per WLAN in das Hausnetz des Unternehmens einbuchen. So wäre man nicht nur über seine Mobilfunknummer, sondern auch über seinen "Office-Anschluss" erreichbar.</p>
<p>Diesen Gedanken könnten man mit entsprechenden Ideen weiter ausbauen. Meiner Meinung nach fehlt technisch gesehen nicht mehr viel, bleibt nur die Frage, wann Unternehmen wie Arcor, Telekom, Vodafone, Nokia, Sony, etc. auf den gemeinsamen Zug aufspringen.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.funnydingo.de/blog/2006/11/10/unternehmen-und-voip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

