<?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/category/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>Quick analysis of the first animated Google doodle (&#8220;Isaac Newton&#8217;s apple&#8221;)</title>
		<link>http://www.numlock.ch/news/it/quick-analysis-of-the-first-animated-google-doodle-isaac-newton-apple/</link>
		<comments>http://www.numlock.ch/news/it/quick-analysis-of-the-first-animated-google-doodle-isaac-newton-apple/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 23:26:50 +0000</pubDate>
		<dc:creator>mettlerd</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[analysis]]></category>
		<category><![CDATA[animated Doodle]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Doodle]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Isaac Newton]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.numlock.ch/news/?p=806</guid>
		<description><![CDATA[You probably noticed the funny animated logo on the Google search page today, January 4, 2010 (Isaac Newton&#8217;s birthday). It shows an apple falling from a tree reminding of the story that Isaac Newton was inspired to formulate his theory of gravitation by watching the fall of an apple from a tree.

Animation of an apple [...]]]></description>
			<content:encoded><![CDATA[<p>You probably noticed the funny animated logo on the <a href="http://www.google.com/" target="_blank">Google search page</a> today, January 4, 2010 (Isaac Newton&#8217;s birthday). It shows an apple falling from a tree reminding of the story that <a href="http://en.wikipedia.org/wiki/Isaac_Newton" target="_blank">Isaac Newton</a> <a href="http://en.wikipedia.org/wiki/Isaac_Newton#Newton.27s_apple" target="_blank">was inspired to formulate his theory of gravitation by watching the fall of an apple from a tree</a>.</p>
<p><a href="http://www.numlock.ch/news/wp-content/uploads/2010/01/google_search_page_apple_isaac_newton.png"><img class="aligncenter size-medium wp-image-809" title="Screenshot of Google's doodle in memory of Isaac Newton's birthday" src="http://www.numlock.ch/news/wp-content/uploads/2010/01/google_search_page_apple_isaac_newton-300x252.png" alt="Screenshot of Google's doodle in memory of Isaac Newton's birthday" width="300" height="252" /></a></p>
<p><a href="http://www.numlock.ch/news/wp-content/uploads/2010/01/2010-01-05_0016.swf">Animation of an apple falling from a tree in Google&#8217;s doodle in memory of Isaac Newton&#8217;s birthday</a></p>
<p>As this seems to be the first animated logo on Google&#8217;s home page ever, I wondered how it was implemented (in particular, how well the code simulates gravity on earth). Short explanation: As expected, it&#8217;s a mix of JavaScript code and CSS formatting. And not surprising either, the algorithm used is an acceptable simulation of gravity on earth (in vacuum).</p>
<p>Here&#8217;s a &#8220;reformatted&#8221; version of the JavaScript code for better readability, along with some explanations as <span style="color: #008000;">inline comments</span> (note that this &#8220;reformatted&#8221; code doesn&#8217;t work as-is due to the inserted comments):</p>
<blockquote>
<pre>window.lol&amp;&amp;lol();
setTimeout( <span style="color: #008000;">// execute this code once after a timeout of 2 seconds</span>
  function(){ <span style="color: #008000;">// an anonymous function</span>
    var h=0, <span style="color: #008000;">// initial horizontal offset (=0) of the apple's position</span>
    v=1, <span style="color: #008000;">// initial vertical offset ('delta_height' = b(t+1)-b(t)) of the apple's position</span>
    f=document.getElementById('fall'), <span style="color: #008000;">// get a reference to the apple image</span>
    i=setInterval( <span style="color: #008000;">// execute repeatedly in intervals of 25 msec</span>
      function(){ <span style="color: #008000;">// yet another anonymous function</span>
        if(f){ <span style="color: #008000;">// execute if the apple image exists</span><span style="color: #008000;"> (a safety net)</span>
          var r=parseInt(f.style.right)+h,<span style="color: #008000;"> // add the horizontal offset (will move apple left for h&gt;0)</span>
          b=parseInt(f.style.bottom)-v;<span style="color: #008000;"> // subtract the vertical offset (will move apple down for v&gt;0)</span>
          f.style.right=r+'px';<span style="color: #008000;"> // set the apple's new horizontal position</span>
          f.style.bottom=b+'px';<span style="color: #008000;"> // set the apple's new vertical position</span>
          if(b&gt;-210){ <span style="color: #008000;">// the apple is above ground level (i.e. falling down or bouncing up)</span>
            v+=2 <span style="color: #008000;">// increase 'delta_height' by 2 pixels per interval (accelerate the apple's free fall or slow down its rebound)</span>
          } else { <span style="color: #008000;">// the apple hit the 'ground'</span>
            h=(v&gt;9)?v*0.1:0; <span style="color: #008000;">// bounce apple to the left at 10% of the last 'delta_height' if speedy, else don't move it horizontally</span>
            v*=(v&gt;9)?-0.3:0 <span style="color: #008000;">// bounce apple up at 30% of the last 'delta_height' if speedy, else don't move it vertically</span>
          }
        }
      }
      ,25 <span style="color: #008000;">// the interval in msec</span>
    );
    google.rein&amp;&amp;
    google.rein.push(
      function(){
        clearInterval(i); <span style="color: #008000;">// disable the interval loop</span>
        h=0;v=1
      }
    )
  },2000 <span style="color: #008000;">// the timeout in msec</span>
)
</pre>
</blockquote>
<p>The apple&#8217;s initial position:<em> position: relative; right: 248px; bottom: 46px;</em></p>
<p>The apple&#8217;s final position (after the rebound):<em> position: relative; right: 286px; bottom: -210px;</em></p>
<p><strong>Some words about the physics:</strong></p>
<p>The simple algorithm used above reflects the constant <a href="http://en.wikipedia.org/wiki/Free_fall" target="_blank">acceleration during free fall</a> accurately, supposed we&#8217;re neglecting the effect of air drag. IOW: height(t) = height(t=0) &#8211; 0.5*g*t^2 = h(t=0) &#8211; k*t^2.</p>
<p>The rebound of the apple is less realistic though. I doubt an apple would rebound that high and the fact that it rebounds to the left seems to be rather arbitrary (given the image it&#8217;s difficult to judge where the apple&#8217;s center of gravity would be compared to the contact area when touching the ground on impact). Further, simulating rotational forces on the apple wouldn&#8217;t hurt the realism ;)</p>
<p><strong>Symbolism:</strong></p>
<p>It&#8217;s not without irony that Google shows a falling <a href="http://www.apple.com/" target="_blank">apple</a> on its main page, as one reader points out on <a href="http://mashable.com/2010/01/04/google-newton-animated-logo/" target="_blank">Mashable&#8217;s article about this animation</a> ;)</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/quick-analysis-of-the-first-animated-google-doodle-isaac-newton-apple/&amp;t=Quick+analysis+of+the+first+animated+Google+doodle+%28%22Isaac+Newton%27s+apple%22%29" 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/quick-analysis-of-the-first-animated-google-doodle-isaac-newton-apple/&amp;title=Quick+analysis+of+the+first+animated+Google+doodle+%28%22Isaac+Newton%27s+apple%22%29" 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=Quick+analysis+of+the+first+animated+Google+doodle+%28%22Isaac+Newton%27s+apple%22%29+-+http://tinyurl.com/yz9myuc&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/quick-analysis-of-the-first-animated-google-doodle-isaac-newton-apple/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=Quick+analysis+of+the+first+animated+Google+doodle+%28%22Isaac+Newton%27s+apple%22%29&amp;body=Link: http://www.numlock.ch/news/it/quick-analysis-of-the-first-animated-google-doodle-isaac-newton-apple/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A You%20probably%20noticed%20the%20funny%20animated%20logo%20on%20the%20Google%20search%20page%20today%2C%20January%204%2C%202010%20%28Isaac%20Newton%27s%20birthday%29.%20It%20shows%20an%20apple%20falling%20from%20a%20tree%20reminding%20of%20the%20story%20that%20Isaac%20Newton%20was%20inspired%20to%20formulate%20his%20theory%20of%20gravitation%20by%20watching%20the%20fall%20of%20an%20apple%20from%20a%20tree.%0D%0A%0D" 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/quick-analysis-of-the-first-animated-google-doodle-isaac-newton-apple/&amp;title=Quick+analysis+of+the+first+animated+Google+doodle+%28%22Isaac+Newton%27s+apple%22%29" 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/quick-analysis-of-the-first-animated-google-doodle-isaac-newton-apple/&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/quick-analysis-of-the-first-animated-google-doodle-isaac-newton-apple/&amp;t=Quick+analysis+of+the+first+animated+Google+doodle+%28%22Isaac+Newton%27s+apple%22%29" 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/quick-analysis-of-the-first-animated-google-doodle-isaac-newton-apple/&amp;t=Quick+analysis+of+the+first+animated+Google+doodle+%28%22Isaac+Newton%27s+apple%22%29" 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/quick-analysis-of-the-first-animated-google-doodle-isaac-newton-apple/&amp;title=Quick+analysis+of+the+first+animated+Google+doodle+%28%22Isaac+Newton%27s+apple%22%29&amp;selection=You%20probably%20noticed%20the%20funny%20animated%20logo%20on%20the%20Google%20search%20page%20today%2C%20January%204%2C%202010%20%28Isaac%20Newton%27s%20birthday%29.%20It%20shows%20an%20apple%20falling%20from%20a%20tree%20reminding%20of%20the%20story%20that%20Isaac%20Newton%20was%20inspired%20to%20formulate%20his%20theory%20of%20gravitation%20by%20watching%20the%20fall%20of%20an%20apple%20from%20a%20tree.%0D%0A%0D" 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/quick-analysis-of-the-first-animated-google-doodle-isaac-newton-apple/&amp;title=Quick+analysis+of+the+first+animated+Google+doodle+%28%22Isaac+Newton%27s+apple%22%29" 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/quick-analysis-of-the-first-animated-google-doodle-isaac-newton-apple/&amp;title=Quick+analysis+of+the+first+animated+Google+doodle+%28%22Isaac+Newton%27s+apple%22%29" 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/quick-analysis-of-the-first-animated-google-doodle-isaac-newton-apple/+&quot;Quick+analysis+of+the+first+animated+Google+doodle+%28%22Isaac+Newton%27s+apple%22%29&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/quick-analysis-of-the-first-animated-google-doodle-isaac-newton-apple/" 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/quick-analysis-of-the-first-animated-google-doodle-isaac-newton-apple/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<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>
