<?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>numlock.ch - a changelog by Daniel Mettler &#187; Fun</title>
	<atom:link href="http://www.numlock.ch/news/tag/fun/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.numlock.ch/news</link>
	<description>make a diff :)</description>
	<lastBuildDate>Thu, 12 Aug 2010 07:45:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Bash script of the day: New .de domains</title>
		<link>http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/</link>
		<comments>http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 15:05:25 +0000</pubDate>
		<dc:creator>mettlerd</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[.de]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[Deutschland]]></category>
		<category><![CDATA[dict]]></category>
		<category><![CDATA[domains]]></category>
		<category><![CDATA[germany]]></category>
		<category><![CDATA[registration]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[wordlist]]></category>

		<guid isPermaLink="false">http://www.numlock.ch/news/?p=786</guid>
		<description><![CDATA[The one-liner:
for i in `echo {{a..z},{0..9}};echo {{a..z},{0..9}}{{a..z},{0..9}}`;do dict -d all -C ${i}de&#62;/dev/null 2&#62;&#38;1; if [ "$?" == "0" ];then echo $i.de; fi done
or the equivalent multi-liner:
for i in `echo {{a..z},{0..9}};echo {{a..z},{0..9}}{{a..z},{0..9}}`;
  do
    dict -d all -C ${i}de &#62;/dev/null 2&#62;&#38;1;
    if [ "$?" == "0" ]; then
   [...]]]></description>
			<content:encoded><![CDATA[<p>The one-liner:</p>
<pre>for i in `echo {{a..z},{0..9}};echo {{a..z},{0..9}}{{a..z},{0..9}}`;do dict -d all -C ${i}de&gt;/dev/null 2&gt;&amp;1; if [ "$?" == "0" ];then echo $i.de; fi done</pre>
<p>or the equivalent multi-liner:</p>
<pre>for i in `echo {{a..z},{0..9}};echo {{a..z},{0..9}}{{a..z},{0..9}}`;
  do
    dict -d all -C ${i}de &gt;/dev/null 2&gt;&amp;1;
    if [ "$?" == "0" ]; then
      echo $i.de;
    fi
  done</pre>
<p>No comment (*cough*)</p>
<p>(P.S. That&#8217;s for ASCII alphanumeric domains only)</p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/&amp;t=Bash+script+of+the+day%3A+New+.de+domains" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/&amp;title=Bash+script+of+the+day%3A+New+.de+domains" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Bash+script+of+the+day%3A+New+.de+domains+-+http://tinyurl.com/ykayw5j&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Bash+script+of+the+day%3A+New+.de+domains&amp;body=Link: http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20one-liner%3A%0D%0Afor%20i%20in%20%60echo%20%7B%7Ba..z%7D%2C%7B0..9%7D%7D%3Becho%20%7B%7Ba..z%7D%2C%7B0..9%7D%7D%7B%7Ba..z%7D%2C%7B0..9%7D%7D%60%3Bdo%20dict%20-d%20all%20-C%20%24%7Bi%7Dde%26gt%3B%2Fdev%2Fnull%202%26gt%3B%26amp%3B1%3B%20if%20%5B%20%22%24%3F%22%20%3D%3D%20%220%22%20%5D%3Bthen%20echo%20%24i.de%3B%20fi%20done%0D%0Aor%20the%20equivalent%20multi-liner%3A%0D%0Afor%20i%20in%20%60echo%20%7B%7Ba..z%7D%2C%7B0..9%7D%7D%3Becho%20%7B%7Ba..z%7D%2C%7B0..9%7D%7D%7B%7Ba..z%7D%2C%7B0..9%7D%7D%60%3B%0D%0A%20%20do%0D%0A%20%20%20%20dict%20-d%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/&amp;title=Bash+script+of+the+day%3A+New+.de+domains" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/&amp;t=Bash+script+of+the+day%3A+New+.de+domains" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/&amp;t=Bash+script+of+the+day%3A+New+.de+domains" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/&amp;title=Bash+script+of+the+day%3A+New+.de+domains&amp;selection=The%20one-liner%3A%0D%0Afor%20i%20in%20%60echo%20%7B%7Ba..z%7D%2C%7B0..9%7D%7D%3Becho%20%7B%7Ba..z%7D%2C%7B0..9%7D%7D%7B%7Ba..z%7D%2C%7B0..9%7D%7D%60%3Bdo%20dict%20-d%20all%20-C%20%24%7Bi%7Dde%26gt%3B%2Fdev%2Fnull%202%26gt%3B%26amp%3B1%3B%20if%20%5B%20%22%24%3F%22%20%3D%3D%20%220%22%20%5D%3Bthen%20echo%20%24i.de%3B%20fi%20done%0D%0Aor%20the%20equivalent%20multi-liner%3A%0D%0Afor%20i%20in%20%60echo%20%7B%7Ba..z%7D%2C%7B0..9%7D%7D%3Becho%20%7B%7Ba..z%7D%2C%7B0..9%7D%7D%7B%7Ba..z%7D%2C%7B0..9%7D%7D%60%3B%0D%0A%20%20do%0D%0A%20%20%20%20dict%20-d%20" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/&amp;title=Bash+script+of+the+day%3A+New+.de+domains" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/&amp;title=Bash+script+of+the+day%3A+New+.de+domains" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/+&quot;Bash+script+of+the+day%3A+New+.de+domains&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Security through obscurity</title>
		<link>http://www.numlock.ch/news/various/security-through-obscurity/</link>
		<comments>http://www.numlock.ch/news/various/security-through-obscurity/#comments</comments>
		<pubDate>Fri, 15 Feb 2008 18:58:36 +0000</pubDate>
		<dc:creator>mettlerd</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Various]]></category>

		<guid isPermaLink="false">https://www.numlock.ch/wordpress/2008/02/15/security-through-obscurity/</guid>
		<description><![CDATA[[..] bei Sportgrossveranstaltungen   wie der UEFA EURO 2008™ ist es üblich, dass die Eintrittskarten erst   wenige Wochen vor Turnierbeginn gedruckt und versandt werden. Dies ist im   Sinne der Sicherheit und verkleinert das Risiko, dass die Tickets den   Karteninhabern vor den Spielen abhanden kommen.[..]
Isn&#8217;t it nice how the [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p><em><font face="Century Gothic" size="2"><span style="font-size: 10pt; font-family: 'Century Gothic'" lang="DE-CH">[..] bei Sportgrossveranstaltungen   wie der UEFA EURO 2008™ ist es üblich, dass die Eintrittskarten erst   wenige Wochen vor Turnierbeginn gedruckt und versandt werden. Dies ist im   Sinne der Sicherheit und verkleinert das Risiko, dass die Tickets den   Karteninhabern vor den Spielen abhanden kommen.[..]</span></font></em></p></blockquote>
<p>Isn&#8217;t it nice how the <font color="#000000">&#8220;EURO 2008 SA&#8221; cares for us? ;)</font></p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.numlock.ch/news/various/security-through-obscurity/&amp;t=Security+through+obscurity" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.numlock.ch/news/various/security-through-obscurity/&amp;title=Security+through+obscurity" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Security+through+obscurity+-+http://tinyurl.com/yhs875r&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.numlock.ch/news/various/security-through-obscurity/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Security+through+obscurity&amp;body=Link: http://www.numlock.ch/news/various/security-through-obscurity/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%5B..%5D%20bei%20Sportgrossveranstaltungen%20%20%20wie%20der%20UEFA%20EURO%202008%E2%84%A2%20ist%20es%20%C3%BCblich%2C%20dass%20die%20Eintrittskarten%20erst%20%20%20wenige%20Wochen%20vor%20Turnierbeginn%20gedruckt%20und%20versandt%20werden.%20Dies%20ist%20im%20%20%20Sinne%20der%20Sicherheit%20und%20verkleinert%20das%20Risiko%2C%20dass%20die%20Tickets%20den%20%20%20Karteninhabern%20vor%20den%20Spielen%20abhanden" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.numlock.ch/news/various/security-through-obscurity/&amp;title=Security+through+obscurity" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.numlock.ch/news/various/security-through-obscurity/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.numlock.ch/news/various/security-through-obscurity/&amp;t=Security+through+obscurity" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.numlock.ch/news/various/security-through-obscurity/&amp;t=Security+through+obscurity" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://www.numlock.ch/news/various/security-through-obscurity/&amp;title=Security+through+obscurity&amp;selection=%0D%0A%5B..%5D%20bei%20Sportgrossveranstaltungen%20%20%20wie%20der%20UEFA%20EURO%202008%E2%84%A2%20ist%20es%20%C3%BCblich%2C%20dass%20die%20Eintrittskarten%20erst%20%20%20wenige%20Wochen%20vor%20Turnierbeginn%20gedruckt%20und%20versandt%20werden.%20Dies%20ist%20im%20%20%20Sinne%20der%20Sicherheit%20und%20verkleinert%20das%20Risiko%2C%20dass%20die%20Tickets%20den%20%20%20Karteninhabern%20vor%20den%20Spielen%20abhanden" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.numlock.ch/news/various/security-through-obscurity/&amp;title=Security+through+obscurity" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.numlock.ch/news/various/security-through-obscurity/&amp;title=Security+through+obscurity" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.numlock.ch/news/various/security-through-obscurity/+&quot;Security+through+obscurity&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.numlock.ch/news/various/security-through-obscurity/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.numlock.ch/news/various/security-through-obscurity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some practical advice for startups</title>
		<link>http://www.numlock.ch/news/it/some-practical-advice-for-startups/</link>
		<comments>http://www.numlock.ch/news/it/some-practical-advice-for-startups/#comments</comments>
		<pubDate>Thu, 31 Jan 2008 00:23:53 +0000</pubDate>
		<dc:creator>mettlerd</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Startups]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[printscreen.ch]]></category>

		<guid isPermaLink="false">https://www.numlock.ch/wordpress/2008/01/31/some-practical-advice-for-startups/</guid>
		<description><![CDATA[&#8220;The Art of the Start&#8221; by Guy Kawasaki. Not the latest, but a courageous and entertaining presentation worthwhile watching.




		
			Share this on Facebook
		
		
			Share this on del.icio.us
		
		
			Tweet This!
		
		
			Subscribe to the comments for this post?
		
		
			Email this via Gmail
		
		
			Add this to Google Bookmarks
		
		
			Post on Google Buzz
		
		
			Submit this to Hacker News
		
		
			Post this to MySpace
		
		
			Post this to Posterous
		
		
			Share this on Reddit
		
		
			Submit [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://video.google.com/videoplay?docid=-3755718939216161559&amp;hl=en" target="_blank">&#8220;The Art of the Start&#8221; by Guy Kawasaki</a>. Not the latest, but a courageous and entertaining presentation worthwhile watching.</p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.numlock.ch/news/it/some-practical-advice-for-startups/&amp;t=Some+practical+advice+for+startups" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.numlock.ch/news/it/some-practical-advice-for-startups/&amp;title=Some+practical+advice+for+startups" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Some+practical+advice+for+startups+-+http://tinyurl.com/ygduods&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.numlock.ch/news/it/some-practical-advice-for-startups/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Some+practical+advice+for+startups&amp;body=Link: http://www.numlock.ch/news/it/some-practical-advice-for-startups/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %22The%20Art%20of%20the%20Start%22%20by%20Guy%20Kawasaki.%20Not%20the%20latest%2C%20but%20a%20courageous%20and%20entertaining%20presentation%20worthwhile%20watching." rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.numlock.ch/news/it/some-practical-advice-for-startups/&amp;title=Some+practical+advice+for+startups" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.numlock.ch/news/it/some-practical-advice-for-startups/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.numlock.ch/news/it/some-practical-advice-for-startups/&amp;t=Some+practical+advice+for+startups" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.numlock.ch/news/it/some-practical-advice-for-startups/&amp;t=Some+practical+advice+for+startups" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://www.numlock.ch/news/it/some-practical-advice-for-startups/&amp;title=Some+practical+advice+for+startups&amp;selection=%22The%20Art%20of%20the%20Start%22%20by%20Guy%20Kawasaki.%20Not%20the%20latest%2C%20but%20a%20courageous%20and%20entertaining%20presentation%20worthwhile%20watching." rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.numlock.ch/news/it/some-practical-advice-for-startups/&amp;title=Some+practical+advice+for+startups" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.numlock.ch/news/it/some-practical-advice-for-startups/&amp;title=Some+practical+advice+for+startups" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.numlock.ch/news/it/some-practical-advice-for-startups/+&quot;Some+practical+advice+for+startups&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.numlock.ch/news/it/some-practical-advice-for-startups/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.numlock.ch/news/it/some-practical-advice-for-startups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Vista or The Holy Grail of Usability</title>
		<link>http://www.numlock.ch/news/it/windows-vista-or-the-holy-grail-of-usability/</link>
		<comments>http://www.numlock.ch/news/it/windows-vista-or-the-holy-grail-of-usability/#comments</comments>
		<pubDate>Wed, 28 Dec 2005 01:39:18 +0000</pubDate>
		<dc:creator>mettlerd</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">https://www.numlock.ch/wordpress/?p=449</guid>
		<description><![CDATA[Fine. After years (heck, even decades!) of staring into distorting, flickering, radiating and mirrorlike CRT screens we finally managed to banish those darn things from our desks and to use distortion-free, flicker-free, radiation-free, coated TFT screens instead. Time to put glares and reflections back into the GUI (just try to read the labels on the [...]]]></description>
			<content:encoded><![CDATA[<p>Fine. After years (heck, even decades!) of staring into distorting, flickering, radiating and <strong><em>mirrorlike CRT screens</em></strong> we finally managed to banish those darn things from our desks and to use distortion-free, flicker-free, radiation-free, <strong><em>coated TFT screens</em></strong> instead. <strong>Time to <a href="http://www.winsupersite.com/images/showcase/vista5270_041.jpg">put glares and reflections back into the GUI</a> (just try to read the labels on the taskbar)! Hallelujah! ;)</strong></p>
<p>(I bet Microsoft will get back to this once the dust has settled. Apple made a similar experience with Aqua&#8217;s transparency effect which was significantly reduced in later versions.)</p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.numlock.ch/news/it/windows-vista-or-the-holy-grail-of-usability/&amp;t=Windows+Vista+or+The+Holy+Grail+of+Usability" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.numlock.ch/news/it/windows-vista-or-the-holy-grail-of-usability/&amp;title=Windows+Vista+or+The+Holy+Grail+of+Usability" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Windows+Vista+or+The+Holy+Grail+of+Usability+-+http://tinyurl.com/ykqqm9l&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.numlock.ch/news/it/windows-vista-or-the-holy-grail-of-usability/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Windows+Vista+or+The+Holy+Grail+of+Usability&amp;body=Link: http://www.numlock.ch/news/it/windows-vista-or-the-holy-grail-of-usability/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Fine.%20After%20years%20%28heck%2C%20even%20decades%21%29%20of%20staring%20into%20distorting%2C%20flickering%2C%20radiating%20and%20mirrorlike%20CRT%20screens%20we%20finally%20managed%20to%20banish%20those%20darn%20things%20from%20our%20desks%20and%20to%20use%20distortion-free%2C%20flicker-free%2C%20radiation-free%2C%20coated%20TFT%20screens%20instead.%20Time%20to%20put%20glares%20and%20reflections%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.numlock.ch/news/it/windows-vista-or-the-holy-grail-of-usability/&amp;title=Windows+Vista+or+The+Holy+Grail+of+Usability" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.numlock.ch/news/it/windows-vista-or-the-holy-grail-of-usability/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.numlock.ch/news/it/windows-vista-or-the-holy-grail-of-usability/&amp;t=Windows+Vista+or+The+Holy+Grail+of+Usability" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.numlock.ch/news/it/windows-vista-or-the-holy-grail-of-usability/&amp;t=Windows+Vista+or+The+Holy+Grail+of+Usability" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://www.numlock.ch/news/it/windows-vista-or-the-holy-grail-of-usability/&amp;title=Windows+Vista+or+The+Holy+Grail+of+Usability&amp;selection=Fine.%20After%20years%20%28heck%2C%20even%20decades%21%29%20of%20staring%20into%20distorting%2C%20flickering%2C%20radiating%20and%20mirrorlike%20CRT%20screens%20we%20finally%20managed%20to%20banish%20those%20darn%20things%20from%20our%20desks%20and%20to%20use%20distortion-free%2C%20flicker-free%2C%20radiation-free%2C%20coated%20TFT%20screens%20instead.%20Time%20to%20put%20glares%20and%20reflections%20" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.numlock.ch/news/it/windows-vista-or-the-holy-grail-of-usability/&amp;title=Windows+Vista+or+The+Holy+Grail+of+Usability" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.numlock.ch/news/it/windows-vista-or-the-holy-grail-of-usability/&amp;title=Windows+Vista+or+The+Holy+Grail+of+Usability" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.numlock.ch/news/it/windows-vista-or-the-holy-grail-of-usability/+&quot;Windows+Vista+or+The+Holy+Grail+of+Usability&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.numlock.ch/news/it/windows-vista-or-the-holy-grail-of-usability/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.numlock.ch/news/it/windows-vista-or-the-holy-grail-of-usability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
