<?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>Slopjongs weblog &#187; slopjong</title>
	<atom:link href="http://slopjong.de/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://slopjong.de</link>
	<description>Speedskating, tech stuff &#38; lots more</description>
	<lastBuildDate>Fri, 16 Jul 2010 07:32:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>jQuery: eq() vs. get()</title>
		<link>http://slopjong.de/2010/07/15/jquery-eq-vs-get/</link>
		<comments>http://slopjong.de/2010/07/15/jquery-eq-vs-get/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 17:07:32 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://slopjong.de/?p=4054</guid>
		<description><![CDATA[There are several ways to access queried DOM elements. You get either a DOM element using get() or a jQuery object using eq(). This can be confusing while you try to call jQuery API functions on DOM elements.
The example shows how to get the first array element on three different ways.
&#60;ul&#62;
  &#60;li&#62;&#60;/li&#62;
  &#60;li&#62;&#60;/li&#62;
 [...]]]></description>
			<content:encoded><![CDATA[<p>There are several ways to access queried DOM elements. You get either a DOM element using <strong>get()</strong> or a jQuery object using <strong>eq()</strong>. This can be confusing while you try to call jQuery API functions on DOM elements.</p>
<p>The example shows how to get the first array element on three different ways.</p>
<pre><code>&lt;ul&gt;
  &lt;li&gt;&lt;/li&gt;
  &lt;li&gt;&lt;/li&gt;
  &lt;li&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;script type="text/javascript"&gt;
    $(document).ready(function(){
        var elems, elem;
        elems = $("li"); // get an array of all the list items

        // This is a jQuery object that you can call jQuery related methods on.
        elem = elems.eq(0); 

        // This is the DOM element itself that lets you access the native
        // javascript attributes and methods.
        elem = elems.get(0); 

        // This is the DOM element too.
        elem = elems[0];
    });
&lt;/script&gt;
</code>
</pre>
<p>Instead of using the filter method eq() you can combine the filter with the selector like this</p>
<pre>
<code>var elem = $("li:eq(0)");</code>
</pre>
<p>or</p>
<pre>
<code>var elem = $("li:first");</code>
</pre>
<p>To turn a DOM element into a jQuery object you can wrap it with <strong>jQuery(</strong>element<strong>)</strong> or <strong>$(</strong>element<strong>)</strong> if you&#8217;re not in conflict mode. But keep in mind that this creates a new object which <del datetime="2010-07-15T16:44:15+00:00">wastes</del> consumes memory so pay attention if you do this in a loop.</p>
<p><a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F15%2Fjquery-eq-vs-get%2F&amp;linkname=jQuery%3A%20eq%28%29%20vs.%20get%28%29" title="Delicious" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F15%2Fjquery-eq-vs-get%2F&amp;linkname=jQuery%3A%20eq%28%29%20vs.%20get%28%29" title="Digg" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F15%2Fjquery-eq-vs-get%2F&amp;linkname=jQuery%3A%20eq%28%29%20vs.%20get%28%29" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F15%2Fjquery-eq-vs-get%2F&amp;linkname=jQuery%3A%20eq%28%29%20vs.%20get%28%29" title="Reddit" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F15%2Fjquery-eq-vs-get%2F&amp;linkname=jQuery%3A%20eq%28%29%20vs.%20get%28%29" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F15%2Fjquery-eq-vs-get%2F&amp;linkname=jQuery%3A%20eq%28%29%20vs.%20get%28%29" title="Facebook" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/spurl?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F15%2Fjquery-eq-vs-get%2F&amp;linkname=jQuery%3A%20eq%28%29%20vs.%20get%28%29" title="Spurl" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/spurl.png" width="16" height="16" alt="Spurl"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F15%2Fjquery-eq-vs-get%2F&amp;linkname=jQuery%3A%20eq%28%29%20vs.%20get%28%29" title="Twitter" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/webnews?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F15%2Fjquery-eq-vs-get%2F&amp;linkname=jQuery%3A%20eq%28%29%20vs.%20get%28%29" title="Webnews" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/webnews.png" width="16" height="16" alt="Webnews"/></a> <a href="http://www.addtoany.com/add_to/yigg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F15%2Fjquery-eq-vs-get%2F&amp;linkname=jQuery%3A%20eq%28%29%20vs.%20get%28%29" title="YiGG" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yigg.png" width="16" height="16" alt="YiGG"/></a> <a href="http://www.addtoany.com/add_to/myspace?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F15%2Fjquery-eq-vs-get%2F&amp;linkname=jQuery%3A%20eq%28%29%20vs.%20get%28%29" title="MySpace" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/myspace.png" width="16" height="16" alt="MySpace"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F15%2Fjquery-eq-vs-get%2F&amp;linkname=jQuery%3A%20eq%28%29%20vs.%20get%28%29" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/friendfeed?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F15%2Fjquery-eq-vs-get%2F&amp;linkname=jQuery%3A%20eq%28%29%20vs.%20get%28%29" title="FriendFeed" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/friendfeed.png" width="16" height="16" alt="FriendFeed"/></a> <a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F15%2Fjquery-eq-vs-get%2F&amp;linkname=jQuery%3A%20eq%28%29%20vs.%20get%28%29" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/livejournal?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F15%2Fjquery-eq-vs-get%2F&amp;linkname=jQuery%3A%20eq%28%29%20vs.%20get%28%29" title="LiveJournal" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/livejournal.png" width="16" height="16" alt="LiveJournal"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F15%2Fjquery-eq-vs-get%2F&amp;linkname=jQuery%3A%20eq%28%29%20vs.%20get%28%29"><img src="http://slopjong.de/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://slopjong.de/2010/07/15/jquery-eq-vs-get/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java kills people</title>
		<link>http://slopjong.de/2010/07/08/java-kills-man/</link>
		<comments>http://slopjong.de/2010/07/08/java-kills-man/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 14:48:42 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://slopjong.de/?p=4046</guid>
		<description><![CDATA[





www.youtube.com/watch?v=A-Rp6wMZ1-s
]]></description>
			<content:encoded><![CDATA[<p><span class="youtube">
<object width="425" height="344">
<param name="movie" value="http://www.youtube-nocookie.com/v/A-Rp6wMZ1-s&amp;rel=0&amp;color1=3a3a3a&amp;color2=999999&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showsearch=0" />
<param name="allowFullScreen" value="true" />
<embed wmode="transparent" src="http://www.youtube-nocookie.com/v/A-Rp6wMZ1-s&amp;rel=0&amp;color1=3a3a3a&amp;color2=999999&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showsearch=0" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed>
<param name="wmode" value="transparent" />
</object>
</span><p><a href="http://www.youtube.com/watch?v=A-Rp6wMZ1-s"><img src="http://img.youtube.com/vi/A-Rp6wMZ1-s/default.jpg" width="130" height="97" border=0></a></p><p><a href="http://www.youtube.com/watch?v=A-Rp6wMZ1-s">www.youtube.com/watch?v=A-Rp6wMZ1-s</a></p></p>
<p><a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F08%2Fjava-kills-man%2F&amp;linkname=Java%20kills%20people" title="Delicious" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F08%2Fjava-kills-man%2F&amp;linkname=Java%20kills%20people" title="Digg" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F08%2Fjava-kills-man%2F&amp;linkname=Java%20kills%20people" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F08%2Fjava-kills-man%2F&amp;linkname=Java%20kills%20people" title="Reddit" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F08%2Fjava-kills-man%2F&amp;linkname=Java%20kills%20people" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F08%2Fjava-kills-man%2F&amp;linkname=Java%20kills%20people" title="Facebook" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/spurl?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F08%2Fjava-kills-man%2F&amp;linkname=Java%20kills%20people" title="Spurl" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/spurl.png" width="16" height="16" alt="Spurl"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F08%2Fjava-kills-man%2F&amp;linkname=Java%20kills%20people" title="Twitter" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/webnews?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F08%2Fjava-kills-man%2F&amp;linkname=Java%20kills%20people" title="Webnews" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/webnews.png" width="16" height="16" alt="Webnews"/></a> <a href="http://www.addtoany.com/add_to/yigg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F08%2Fjava-kills-man%2F&amp;linkname=Java%20kills%20people" title="YiGG" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yigg.png" width="16" height="16" alt="YiGG"/></a> <a href="http://www.addtoany.com/add_to/myspace?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F08%2Fjava-kills-man%2F&amp;linkname=Java%20kills%20people" title="MySpace" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/myspace.png" width="16" height="16" alt="MySpace"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F08%2Fjava-kills-man%2F&amp;linkname=Java%20kills%20people" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/friendfeed?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F08%2Fjava-kills-man%2F&amp;linkname=Java%20kills%20people" title="FriendFeed" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/friendfeed.png" width="16" height="16" alt="FriendFeed"/></a> <a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F08%2Fjava-kills-man%2F&amp;linkname=Java%20kills%20people" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/livejournal?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F08%2Fjava-kills-man%2F&amp;linkname=Java%20kills%20people" title="LiveJournal" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/livejournal.png" width="16" height="16" alt="LiveJournal"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F07%2F08%2Fjava-kills-man%2F&amp;linkname=Java%20kills%20people"><img src="http://slopjong.de/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://slopjong.de/2010/07/08/java-kills-man/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding unsupported file extensions to QuickLook</title>
		<link>http://slopjong.de/2010/06/25/adding-unsupported-file-extensions-to-quicklook/</link>
		<comments>http://slopjong.de/2010/06/25/adding-unsupported-file-extensions-to-quicklook/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 10:40:14 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[QuickLook]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://slopjong.de/?p=4036</guid>
		<description><![CDATA[Some file extensions were still not supported by my QuickLook. If I must edit configuration files I don&#8217;t need a preview, I open them directly in my text editor. So maybe that&#8217;s the reason why I still didn&#8217;t add their support. Anyway today I only wanted to have a quick look into some configuration files, [...]]]></description>
			<content:encoded><![CDATA[<p>Some file extensions were still not supported by my QuickLook. If I must edit configuration files I don&#8217;t need a preview, I open them directly in my text editor. So maybe that&#8217;s the reason why I still didn&#8217;t add their support. Anyway today I only wanted to have a quick look into some configuration files, thus I followed the steps of this <a href="http://www.macosxhints.com/article.php?story=20071028184428583" target="_blank">tutorial by moondark</a>. In my case I added the following UTExportedTypeDeclarations section to TextWrangler&#8217;s Info.plist.</p>
<pre>
<code>    &lt;key&gt;UTExportedTypeDeclarations&lt;/key&gt;
	&lt;array&gt;
	&lt;dict&gt;
	  &lt;key&gt;UTTypeConformsTo&lt;/key&gt;
	  &lt;array&gt;
		&lt;string&gt;public.text&lt;/string&gt;
        &lt;string&gt;public.plain-text&lt;/string&gt;
	  &lt;/array&gt;
	  &lt;key&gt;UTTypeDescription&lt;/key&gt;
	  &lt;string&gt;Plain text file&lt;/string&gt;
	  &lt;key&gt;UTTypeIdentifier&lt;/key&gt;
	  &lt;string&gt;com.barebones.textwrangler&lt;/string&gt;
	  &lt;key&gt;UTTypeTagSpecification&lt;/key&gt;
	  &lt;dict&gt;
		&lt;key&gt;com.apple.ostype&lt;/key&gt;
		&lt;string&gt;TEXT&lt;/string&gt;
		&lt;key&gt;public.filename-extension&lt;/key&gt;
		&lt;array&gt;
		  &lt;string&gt;conf&lt;/string&gt;
          &lt;string&gt;ini&lt;/string&gt;
          &lt;string&gt;bak&lt;/string&gt;
          &lt;string&gt;types&lt;/string&gt;
		&lt;/array&gt;
	  &lt;/dict&gt;
	&lt;/dict&gt;
	&lt;/array&gt;
</code>
</pre>
<p><a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F25%2Fadding-unsupported-file-extensions-to-quicklook%2F&amp;linkname=Adding%20unsupported%20file%20extensions%20to%20QuickLook" title="Delicious" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F25%2Fadding-unsupported-file-extensions-to-quicklook%2F&amp;linkname=Adding%20unsupported%20file%20extensions%20to%20QuickLook" title="Digg" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F25%2Fadding-unsupported-file-extensions-to-quicklook%2F&amp;linkname=Adding%20unsupported%20file%20extensions%20to%20QuickLook" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F25%2Fadding-unsupported-file-extensions-to-quicklook%2F&amp;linkname=Adding%20unsupported%20file%20extensions%20to%20QuickLook" title="Reddit" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F25%2Fadding-unsupported-file-extensions-to-quicklook%2F&amp;linkname=Adding%20unsupported%20file%20extensions%20to%20QuickLook" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F25%2Fadding-unsupported-file-extensions-to-quicklook%2F&amp;linkname=Adding%20unsupported%20file%20extensions%20to%20QuickLook" title="Facebook" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/spurl?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F25%2Fadding-unsupported-file-extensions-to-quicklook%2F&amp;linkname=Adding%20unsupported%20file%20extensions%20to%20QuickLook" title="Spurl" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/spurl.png" width="16" height="16" alt="Spurl"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F25%2Fadding-unsupported-file-extensions-to-quicklook%2F&amp;linkname=Adding%20unsupported%20file%20extensions%20to%20QuickLook" title="Twitter" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/webnews?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F25%2Fadding-unsupported-file-extensions-to-quicklook%2F&amp;linkname=Adding%20unsupported%20file%20extensions%20to%20QuickLook" title="Webnews" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/webnews.png" width="16" height="16" alt="Webnews"/></a> <a href="http://www.addtoany.com/add_to/yigg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F25%2Fadding-unsupported-file-extensions-to-quicklook%2F&amp;linkname=Adding%20unsupported%20file%20extensions%20to%20QuickLook" title="YiGG" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yigg.png" width="16" height="16" alt="YiGG"/></a> <a href="http://www.addtoany.com/add_to/myspace?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F25%2Fadding-unsupported-file-extensions-to-quicklook%2F&amp;linkname=Adding%20unsupported%20file%20extensions%20to%20QuickLook" title="MySpace" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/myspace.png" width="16" height="16" alt="MySpace"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F25%2Fadding-unsupported-file-extensions-to-quicklook%2F&amp;linkname=Adding%20unsupported%20file%20extensions%20to%20QuickLook" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/friendfeed?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F25%2Fadding-unsupported-file-extensions-to-quicklook%2F&amp;linkname=Adding%20unsupported%20file%20extensions%20to%20QuickLook" title="FriendFeed" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/friendfeed.png" width="16" height="16" alt="FriendFeed"/></a> <a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F25%2Fadding-unsupported-file-extensions-to-quicklook%2F&amp;linkname=Adding%20unsupported%20file%20extensions%20to%20QuickLook" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/livejournal?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F25%2Fadding-unsupported-file-extensions-to-quicklook%2F&amp;linkname=Adding%20unsupported%20file%20extensions%20to%20QuickLook" title="LiveJournal" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/livejournal.png" width="16" height="16" alt="LiveJournal"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F25%2Fadding-unsupported-file-extensions-to-quicklook%2F&amp;linkname=Adding%20unsupported%20file%20extensions%20to%20QuickLook"><img src="http://slopjong.de/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://slopjong.de/2010/06/25/adding-unsupported-file-extensions-to-quicklook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Matlab commands for feedback controls</title>
		<link>http://slopjong.de/2010/06/14/matlab-commands-for-feedback-controls/</link>
		<comments>http://slopjong.de/2010/06/14/matlab-commands-for-feedback-controls/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 14:32:59 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Regelungstechnik]]></category>
		<category><![CDATA[feedback]]></category>
		<category><![CDATA[matlab]]></category>

		<guid isPermaLink="false">http://slopjong.de/?p=4005</guid>
		<description><![CDATA[Here is a small matlab reference for feedback calculations or simulations: 

roots: Find polynomial roots
poly: Convert roots to polynomial
conv: Convolution and polynomial multiplication
polyval: Evaluate polynomial
tf: Creation of transfer functions or conversion to transfer function
pzmap: Pole-zero map of LTI models
pole: Compute the poles of LTI models
zero: Computes the transmission zeros of LTI models
series: Series interconnection of [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a small matlab reference for feedback calculations or simulations: </p>
<ul>
<li>roots: Find polynomial roots</li>
<li>poly: Convert roots to polynomial</li>
<li>conv: Convolution and polynomial multiplication</li>
<li>polyval: Evaluate polynomial</li>
<li>tf: Creation of transfer functions or conversion to transfer function</li>
<li>pzmap: Pole-zero map of LTI models</li>
<li>pole: Compute the poles of LTI models</li>
<li>zero: Computes the transmission zeros of LTI models</li>
<li>series: Series interconnection of the two LTI models</li>
<li>parallel: Parallel interconnection of two LTI models</li>
<li>feedback: Feedback connection of two LTI models</li>
<li>minreal: Minimal realization and pole-zero cancellation</li>
<li>step: Step response of LTI models</li>
</ul>
<p><a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F14%2Fmatlab-commands-for-feedback-controls%2F&amp;linkname=Matlab%20commands%20for%20feedback%20controls" title="Delicious" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F14%2Fmatlab-commands-for-feedback-controls%2F&amp;linkname=Matlab%20commands%20for%20feedback%20controls" title="Digg" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F14%2Fmatlab-commands-for-feedback-controls%2F&amp;linkname=Matlab%20commands%20for%20feedback%20controls" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F14%2Fmatlab-commands-for-feedback-controls%2F&amp;linkname=Matlab%20commands%20for%20feedback%20controls" title="Reddit" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F14%2Fmatlab-commands-for-feedback-controls%2F&amp;linkname=Matlab%20commands%20for%20feedback%20controls" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F14%2Fmatlab-commands-for-feedback-controls%2F&amp;linkname=Matlab%20commands%20for%20feedback%20controls" title="Facebook" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/spurl?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F14%2Fmatlab-commands-for-feedback-controls%2F&amp;linkname=Matlab%20commands%20for%20feedback%20controls" title="Spurl" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/spurl.png" width="16" height="16" alt="Spurl"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F14%2Fmatlab-commands-for-feedback-controls%2F&amp;linkname=Matlab%20commands%20for%20feedback%20controls" title="Twitter" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/webnews?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F14%2Fmatlab-commands-for-feedback-controls%2F&amp;linkname=Matlab%20commands%20for%20feedback%20controls" title="Webnews" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/webnews.png" width="16" height="16" alt="Webnews"/></a> <a href="http://www.addtoany.com/add_to/yigg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F14%2Fmatlab-commands-for-feedback-controls%2F&amp;linkname=Matlab%20commands%20for%20feedback%20controls" title="YiGG" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yigg.png" width="16" height="16" alt="YiGG"/></a> <a href="http://www.addtoany.com/add_to/myspace?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F14%2Fmatlab-commands-for-feedback-controls%2F&amp;linkname=Matlab%20commands%20for%20feedback%20controls" title="MySpace" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/myspace.png" width="16" height="16" alt="MySpace"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F14%2Fmatlab-commands-for-feedback-controls%2F&amp;linkname=Matlab%20commands%20for%20feedback%20controls" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/friendfeed?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F14%2Fmatlab-commands-for-feedback-controls%2F&amp;linkname=Matlab%20commands%20for%20feedback%20controls" title="FriendFeed" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/friendfeed.png" width="16" height="16" alt="FriendFeed"/></a> <a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F14%2Fmatlab-commands-for-feedback-controls%2F&amp;linkname=Matlab%20commands%20for%20feedback%20controls" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/livejournal?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F14%2Fmatlab-commands-for-feedback-controls%2F&amp;linkname=Matlab%20commands%20for%20feedback%20controls" title="LiveJournal" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/livejournal.png" width="16" height="16" alt="LiveJournal"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F06%2F14%2Fmatlab-commands-for-feedback-controls%2F&amp;linkname=Matlab%20commands%20for%20feedback%20controls"><img src="http://slopjong.de/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://slopjong.de/2010/06/14/matlab-commands-for-feedback-controls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook &#8211; 1.5 million accounts hacked</title>
		<link>http://slopjong.de/2010/04/23/facebook-1-5-million-accounts-hacked/</link>
		<comments>http://slopjong.de/2010/04/23/facebook-1-5-million-accounts-hacked/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 17:17:00 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[From my personal life]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[hacker]]></category>

		<guid isPermaLink="false">http://slopjong.de/?p=3846</guid>
		<description><![CDATA[CSO reports on 1.5 million stolen Facebook IDs for sale.
A hacker named Kirllos has a rare deal for anyone who wants to spam, steal or scam on Facebook: an unprecedented number of user accounts offered at rock-bottom prices.
Researchers at VeriSign&#8217;s iDefense group recently spotted Kirllos selling Facebook user names and passwords in an underground hacker [...]]]></description>
			<content:encoded><![CDATA[<p>CSO reports on 1.5 million stolen Facebook IDs for sale.</p>
<blockquote><p>A hacker named Kirllos has a rare deal for anyone who wants to spam, steal or scam on Facebook: an unprecedented number of user accounts offered at rock-bottom prices.</p>
<p>Researchers at VeriSign&#8217;s iDefense group recently spotted Kirllos selling Facebook user names and passwords in an underground hacker forum, but what really caught their attention was the volume of credentials he had for sale: 1.5 million accounts.</p>
<p>&#8230; read <a href="http://www.csoonline.com/article/591775/1.5_million_stolen_Facebook_IDs_for_sale" target="_blank">more</a>
</p></blockquote>
<p><a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F23%2Ffacebook-1-5-million-accounts-hacked%2F&amp;linkname=Facebook%20%26%238211%3B%201.5%20million%20accounts%20hacked" title="Delicious" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F23%2Ffacebook-1-5-million-accounts-hacked%2F&amp;linkname=Facebook%20%26%238211%3B%201.5%20million%20accounts%20hacked" title="Digg" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F23%2Ffacebook-1-5-million-accounts-hacked%2F&amp;linkname=Facebook%20%26%238211%3B%201.5%20million%20accounts%20hacked" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F23%2Ffacebook-1-5-million-accounts-hacked%2F&amp;linkname=Facebook%20%26%238211%3B%201.5%20million%20accounts%20hacked" title="Reddit" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F23%2Ffacebook-1-5-million-accounts-hacked%2F&amp;linkname=Facebook%20%26%238211%3B%201.5%20million%20accounts%20hacked" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F23%2Ffacebook-1-5-million-accounts-hacked%2F&amp;linkname=Facebook%20%26%238211%3B%201.5%20million%20accounts%20hacked" title="Facebook" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/spurl?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F23%2Ffacebook-1-5-million-accounts-hacked%2F&amp;linkname=Facebook%20%26%238211%3B%201.5%20million%20accounts%20hacked" title="Spurl" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/spurl.png" width="16" height="16" alt="Spurl"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F23%2Ffacebook-1-5-million-accounts-hacked%2F&amp;linkname=Facebook%20%26%238211%3B%201.5%20million%20accounts%20hacked" title="Twitter" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/webnews?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F23%2Ffacebook-1-5-million-accounts-hacked%2F&amp;linkname=Facebook%20%26%238211%3B%201.5%20million%20accounts%20hacked" title="Webnews" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/webnews.png" width="16" height="16" alt="Webnews"/></a> <a href="http://www.addtoany.com/add_to/yigg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F23%2Ffacebook-1-5-million-accounts-hacked%2F&amp;linkname=Facebook%20%26%238211%3B%201.5%20million%20accounts%20hacked" title="YiGG" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yigg.png" width="16" height="16" alt="YiGG"/></a> <a href="http://www.addtoany.com/add_to/myspace?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F23%2Ffacebook-1-5-million-accounts-hacked%2F&amp;linkname=Facebook%20%26%238211%3B%201.5%20million%20accounts%20hacked" title="MySpace" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/myspace.png" width="16" height="16" alt="MySpace"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F23%2Ffacebook-1-5-million-accounts-hacked%2F&amp;linkname=Facebook%20%26%238211%3B%201.5%20million%20accounts%20hacked" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/friendfeed?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F23%2Ffacebook-1-5-million-accounts-hacked%2F&amp;linkname=Facebook%20%26%238211%3B%201.5%20million%20accounts%20hacked" title="FriendFeed" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/friendfeed.png" width="16" height="16" alt="FriendFeed"/></a> <a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F23%2Ffacebook-1-5-million-accounts-hacked%2F&amp;linkname=Facebook%20%26%238211%3B%201.5%20million%20accounts%20hacked" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/livejournal?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F23%2Ffacebook-1-5-million-accounts-hacked%2F&amp;linkname=Facebook%20%26%238211%3B%201.5%20million%20accounts%20hacked" title="LiveJournal" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/livejournal.png" width="16" height="16" alt="LiveJournal"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F23%2Ffacebook-1-5-million-accounts-hacked%2F&amp;linkname=Facebook%20%26%238211%3B%201.5%20million%20accounts%20hacked"><img src="http://slopjong.de/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://slopjong.de/2010/04/23/facebook-1-5-million-accounts-hacked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accessing the right method in Java</title>
		<link>http://slopjong.de/2010/04/20/accessing-the-right-method-in-java/</link>
		<comments>http://slopjong.de/2010/04/20/accessing-the-right-method-in-java/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 14:13:16 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://slopjong.de/?p=3819</guid>
		<description><![CDATA[A inner class can call methods of an outer class.

public class Dummy1
{
	private class Dummy2
	{
		public Dummy2()
		{
			method();
		}
	}

	private void method() { }
}

So far so good but if the inner class has the same method this will be called instead. To avoid this ambiguity one can call the method in a more specific way. To be able to call [...]]]></description>
			<content:encoded><![CDATA[<p>A inner class can call methods of an outer class.</p>
<pre>
<code>public class Dummy1
{
	private class Dummy2
	{
		public Dummy2()
		{
			method();
		}
	}

	private void method() { }
}</code>
</pre>
<p>So far so good but if the inner class has the same method this will be called instead. To avoid this ambiguity one can call the method in a more specific way. To be able to call the method of the outer class the prefix <em>Dummy1.this</em> can be added.</p>
<pre>
<code>public class Dummy1
{
	private class Dummy2
	{
		public Dummy2()
		{
			Dummy1.this.method();
		}

		private void method() { }
	}

	private void method() { }
}</code>
</pre>
<p><a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F20%2Faccessing-the-right-method-in-java%2F&amp;linkname=Accessing%20the%20right%20method%20in%20Java" title="Delicious" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F20%2Faccessing-the-right-method-in-java%2F&amp;linkname=Accessing%20the%20right%20method%20in%20Java" title="Digg" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F20%2Faccessing-the-right-method-in-java%2F&amp;linkname=Accessing%20the%20right%20method%20in%20Java" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F20%2Faccessing-the-right-method-in-java%2F&amp;linkname=Accessing%20the%20right%20method%20in%20Java" title="Reddit" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F20%2Faccessing-the-right-method-in-java%2F&amp;linkname=Accessing%20the%20right%20method%20in%20Java" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F20%2Faccessing-the-right-method-in-java%2F&amp;linkname=Accessing%20the%20right%20method%20in%20Java" title="Facebook" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/spurl?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F20%2Faccessing-the-right-method-in-java%2F&amp;linkname=Accessing%20the%20right%20method%20in%20Java" title="Spurl" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/spurl.png" width="16" height="16" alt="Spurl"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F20%2Faccessing-the-right-method-in-java%2F&amp;linkname=Accessing%20the%20right%20method%20in%20Java" title="Twitter" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/webnews?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F20%2Faccessing-the-right-method-in-java%2F&amp;linkname=Accessing%20the%20right%20method%20in%20Java" title="Webnews" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/webnews.png" width="16" height="16" alt="Webnews"/></a> <a href="http://www.addtoany.com/add_to/yigg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F20%2Faccessing-the-right-method-in-java%2F&amp;linkname=Accessing%20the%20right%20method%20in%20Java" title="YiGG" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yigg.png" width="16" height="16" alt="YiGG"/></a> <a href="http://www.addtoany.com/add_to/myspace?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F20%2Faccessing-the-right-method-in-java%2F&amp;linkname=Accessing%20the%20right%20method%20in%20Java" title="MySpace" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/myspace.png" width="16" height="16" alt="MySpace"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F20%2Faccessing-the-right-method-in-java%2F&amp;linkname=Accessing%20the%20right%20method%20in%20Java" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/friendfeed?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F20%2Faccessing-the-right-method-in-java%2F&amp;linkname=Accessing%20the%20right%20method%20in%20Java" title="FriendFeed" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/friendfeed.png" width="16" height="16" alt="FriendFeed"/></a> <a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F20%2Faccessing-the-right-method-in-java%2F&amp;linkname=Accessing%20the%20right%20method%20in%20Java" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/livejournal?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F20%2Faccessing-the-right-method-in-java%2F&amp;linkname=Accessing%20the%20right%20method%20in%20Java" title="LiveJournal" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/livejournal.png" width="16" height="16" alt="LiveJournal"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F20%2Faccessing-the-right-method-in-java%2F&amp;linkname=Accessing%20the%20right%20method%20in%20Java"><img src="http://slopjong.de/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://slopjong.de/2010/04/20/accessing-the-right-method-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lost connection of the hard drive</title>
		<link>http://slopjong.de/2010/04/18/lost-connection-of-the-hard-drive/</link>
		<comments>http://slopjong.de/2010/04/18/lost-connection-of-the-hard-drive/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 16:43:39 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[From my personal life]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Hard Drive]]></category>
		<category><![CDATA[MacPower]]></category>
		<category><![CDATA[Pleiades]]></category>
		<category><![CDATA[Time Machine]]></category>

		<guid isPermaLink="false">http://slopjong.de/?p=3804</guid>
		<description><![CDATA[Once again I have some trouble with my backup drive today. The problem is that at any time the connection to my external hard drive gets interrupted. This is very bad if Time Machine, the backup software, is writing to the disk at the same time and there&#8217;s absolutely no rule when this appears. One [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://slopjong.de/wp-content/2010/04/Bild-7-Kopie.png"><img src="http://slopjong.de/wp-content/2010/04/Bild-7-Kopie-300x159.png" alt="" title="Konsole: disk is not present" width="300" height="159" class="alignright size-medium wp-image-3808" /></a></p>
<p>Once again I have some trouble with my backup drive today. The problem is that at any time the connection to my external hard drive gets interrupted. This is very bad if Time Machine, the backup software, is writing to the disk at the same time and there&#8217;s absolutely no rule when this appears. One more bad thing is that the system recognizes the lost connection but it hangs up until the cable is unplugged. It looks like the hard drive is going into a sleep mode but you can still hear the disk rotating. There&#8217;s a WD Caviar Green inside and after my research I&#8217;m sure that the case is the evildoer. This is a <strong>MacPower Pleiades 3.5&#8243; FW400/USB</strong> I bought in last August.</p>
<p><a href="http://www.macfix.de/index.php?mode=thread&#038;id=220625#p220900">These</a> and <a href="http://www.macuser.de/forum/f14/ex-festplatte-via-494226/">those</a> have the same problem with their Pleiades case and here&#8217;s a video of a guy getting nervous like me:</p>
<p><span class="youtube">
<object width="425" height="344">
<param name="movie" value="http://www.youtube-nocookie.com/v/xGsaGzHlcjQ&amp;rel=0&amp;color1=3a3a3a&amp;color2=999999&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showsearch=0" />
<param name="allowFullScreen" value="true" />
<embed wmode="transparent" src="http://www.youtube-nocookie.com/v/xGsaGzHlcjQ&amp;rel=0&amp;color1=3a3a3a&amp;color2=999999&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showsearch=0" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed>
<param name="wmode" value="transparent" />
</object>
</span><p><a href="http://www.youtube.com/watch?v=xGsaGzHlcjQ"><img src="http://img.youtube.com/vi/xGsaGzHlcjQ/default.jpg" width="130" height="97" border=0></a></p><p><a href="http://www.youtube.com/watch?v=xGsaGzHlcjQ">www.youtube.com/watch?v=xGsaGzHlcjQ</a></p></p>
<p><a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F18%2Flost-connection-of-the-hard-drive%2F&amp;linkname=Lost%20connection%20of%20the%20hard%20drive" title="Delicious" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F18%2Flost-connection-of-the-hard-drive%2F&amp;linkname=Lost%20connection%20of%20the%20hard%20drive" title="Digg" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F18%2Flost-connection-of-the-hard-drive%2F&amp;linkname=Lost%20connection%20of%20the%20hard%20drive" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F18%2Flost-connection-of-the-hard-drive%2F&amp;linkname=Lost%20connection%20of%20the%20hard%20drive" title="Reddit" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F18%2Flost-connection-of-the-hard-drive%2F&amp;linkname=Lost%20connection%20of%20the%20hard%20drive" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F18%2Flost-connection-of-the-hard-drive%2F&amp;linkname=Lost%20connection%20of%20the%20hard%20drive" title="Facebook" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/spurl?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F18%2Flost-connection-of-the-hard-drive%2F&amp;linkname=Lost%20connection%20of%20the%20hard%20drive" title="Spurl" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/spurl.png" width="16" height="16" alt="Spurl"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F18%2Flost-connection-of-the-hard-drive%2F&amp;linkname=Lost%20connection%20of%20the%20hard%20drive" title="Twitter" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/webnews?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F18%2Flost-connection-of-the-hard-drive%2F&amp;linkname=Lost%20connection%20of%20the%20hard%20drive" title="Webnews" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/webnews.png" width="16" height="16" alt="Webnews"/></a> <a href="http://www.addtoany.com/add_to/yigg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F18%2Flost-connection-of-the-hard-drive%2F&amp;linkname=Lost%20connection%20of%20the%20hard%20drive" title="YiGG" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yigg.png" width="16" height="16" alt="YiGG"/></a> <a href="http://www.addtoany.com/add_to/myspace?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F18%2Flost-connection-of-the-hard-drive%2F&amp;linkname=Lost%20connection%20of%20the%20hard%20drive" title="MySpace" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/myspace.png" width="16" height="16" alt="MySpace"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F18%2Flost-connection-of-the-hard-drive%2F&amp;linkname=Lost%20connection%20of%20the%20hard%20drive" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/friendfeed?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F18%2Flost-connection-of-the-hard-drive%2F&amp;linkname=Lost%20connection%20of%20the%20hard%20drive" title="FriendFeed" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/friendfeed.png" width="16" height="16" alt="FriendFeed"/></a> <a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F18%2Flost-connection-of-the-hard-drive%2F&amp;linkname=Lost%20connection%20of%20the%20hard%20drive" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/livejournal?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F18%2Flost-connection-of-the-hard-drive%2F&amp;linkname=Lost%20connection%20of%20the%20hard%20drive" title="LiveJournal" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/livejournal.png" width="16" height="16" alt="LiveJournal"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F18%2Flost-connection-of-the-hard-drive%2F&amp;linkname=Lost%20connection%20of%20the%20hard%20drive"><img src="http://slopjong.de/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://slopjong.de/2010/04/18/lost-connection-of-the-hard-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What does &#8220;attaboy&#8221; mean?</title>
		<link>http://slopjong.de/2010/04/16/what-does-attaboy-mean/</link>
		<comments>http://slopjong.de/2010/04/16/what-does-attaboy-mean/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 22:03:22 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[Learning English]]></category>

		<guid isPermaLink="false">http://slopjong.de/2010/04/16/what-does-attaboy-mean/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div>
			
			<table>
			<tr><td valign="top">a)</td><td> <a id="owad_alt1_" href="http://owad.slopjong.de/attaboy_12518.html?KeepThis=true&TB_iframe=true&height=540&width=800" class="thickbox" title="Using data with permission of owad.de">Nice job!</a> </td></tr>
			<tr><td valign="top">b)</td><td> <a id="owad_alt2_" href="http://owad.slopjong.de/attaboy_32518.html?KeepThis=true&TB_iframe=true&height=540&width=800" class="thickbox" title="Using data with permission of owad.de">Be careful!</a> </td></tr>
			<tr><td valign="top">c)</td><td> <a id="owad_alt3_" href="http://owad.slopjong.de/attaboy_52518.html?KeepThis=true&TB_iframe=true&height=540&width=800" class="thickbox" title="Using data with permission of owad.de">Calm down!</a> </td></tr>
			</table>
			</div>
			
			<!--
			<object type="application/x-shockwave-flash" data="http://slopjong.de/wp-content/plugins/one-word-a-day/audio-player/player.swf" id="audioplayer-2518" height="24" width="190">
			<param name="movie" value="http://slopjong.de/wp-content/plugins/one-word-a-day/audio-player/player.swf">
			<param name="FlashVars" value="playerID=1&amp;titles=attaboy&amp;animation=yes&amp;soundFile=http://slopjong.de/What_does_attaboy_mean.mp3">
			<param name="quality" value="high">
			<param name="menu" value="false">
			<param name="wmode" value="transparent">
			</object>
			-->
			
			<!--
			<p id="owad-sound">Listen</p>
			
			<script type="text/javascript">
			//AudioPlayer.embed("owad-sound2518", {soundFile: "http://slopjong.de/What_does_attaboy_mean.mp3"} );
			</script>
			-->
			<p style="font-size:8pt;">With granted permission of <a href="http://owad.de" target="_blank">Paul Smith</a>.</p>
<p><a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F16%2Fwhat-does-attaboy-mean%2F&amp;linkname=What%20does%20%26%238220%3Battaboy%26%238221%3B%20mean%3F" title="Delicious" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F16%2Fwhat-does-attaboy-mean%2F&amp;linkname=What%20does%20%26%238220%3Battaboy%26%238221%3B%20mean%3F" title="Digg" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F16%2Fwhat-does-attaboy-mean%2F&amp;linkname=What%20does%20%26%238220%3Battaboy%26%238221%3B%20mean%3F" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F16%2Fwhat-does-attaboy-mean%2F&amp;linkname=What%20does%20%26%238220%3Battaboy%26%238221%3B%20mean%3F" title="Reddit" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F16%2Fwhat-does-attaboy-mean%2F&amp;linkname=What%20does%20%26%238220%3Battaboy%26%238221%3B%20mean%3F" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F16%2Fwhat-does-attaboy-mean%2F&amp;linkname=What%20does%20%26%238220%3Battaboy%26%238221%3B%20mean%3F" title="Facebook" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/spurl?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F16%2Fwhat-does-attaboy-mean%2F&amp;linkname=What%20does%20%26%238220%3Battaboy%26%238221%3B%20mean%3F" title="Spurl" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/spurl.png" width="16" height="16" alt="Spurl"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F16%2Fwhat-does-attaboy-mean%2F&amp;linkname=What%20does%20%26%238220%3Battaboy%26%238221%3B%20mean%3F" title="Twitter" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/webnews?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F16%2Fwhat-does-attaboy-mean%2F&amp;linkname=What%20does%20%26%238220%3Battaboy%26%238221%3B%20mean%3F" title="Webnews" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/webnews.png" width="16" height="16" alt="Webnews"/></a> <a href="http://www.addtoany.com/add_to/yigg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F16%2Fwhat-does-attaboy-mean%2F&amp;linkname=What%20does%20%26%238220%3Battaboy%26%238221%3B%20mean%3F" title="YiGG" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yigg.png" width="16" height="16" alt="YiGG"/></a> <a href="http://www.addtoany.com/add_to/myspace?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F16%2Fwhat-does-attaboy-mean%2F&amp;linkname=What%20does%20%26%238220%3Battaboy%26%238221%3B%20mean%3F" title="MySpace" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/myspace.png" width="16" height="16" alt="MySpace"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F16%2Fwhat-does-attaboy-mean%2F&amp;linkname=What%20does%20%26%238220%3Battaboy%26%238221%3B%20mean%3F" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/friendfeed?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F16%2Fwhat-does-attaboy-mean%2F&amp;linkname=What%20does%20%26%238220%3Battaboy%26%238221%3B%20mean%3F" title="FriendFeed" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/friendfeed.png" width="16" height="16" alt="FriendFeed"/></a> <a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F16%2Fwhat-does-attaboy-mean%2F&amp;linkname=What%20does%20%26%238220%3Battaboy%26%238221%3B%20mean%3F" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/livejournal?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F16%2Fwhat-does-attaboy-mean%2F&amp;linkname=What%20does%20%26%238220%3Battaboy%26%238221%3B%20mean%3F" title="LiveJournal" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/livejournal.png" width="16" height="16" alt="LiveJournal"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F16%2Fwhat-does-attaboy-mean%2F&amp;linkname=What%20does%20%26%238220%3Battaboy%26%238221%3B%20mean%3F"><img src="http://slopjong.de/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://slopjong.de/2010/04/16/what-does-attaboy-mean/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What does &#8220;rehearsal&#8221; mean?</title>
		<link>http://slopjong.de/2010/04/15/what-does-rehearsal-mean/</link>
		<comments>http://slopjong.de/2010/04/15/what-does-rehearsal-mean/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 22:00:01 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[Learning English]]></category>

		<guid isPermaLink="false">http://slopjong.de/2010/04/15/what-does-rehearsal-mean/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div>
			
			<table>
			<tr><td valign="top">a)</td><td> <a id="owad_alt1_" href="http://owad.slopjong.de/rehearsal_12517.html?KeepThis=true&TB_iframe=true&height=540&width=800" class="thickbox" title="Using data with permission of owad.de">a vehicle for transporting the dead</a> </td></tr>
			<tr><td valign="top">b)</td><td> <a id="owad_alt2_" href="http://owad.slopjong.de/rehearsal_32517.html?KeepThis=true&TB_iframe=true&height=540&width=800" class="thickbox" title="Using data with permission of owad.de">a hearing aid</a> </td></tr>
			<tr><td valign="top">c)</td><td> <a id="owad_alt3_" href="http://owad.slopjong.de/rehearsal_52517.html?KeepThis=true&TB_iframe=true&height=540&width=800" class="thickbox" title="Using data with permission of owad.de">a practice session for a performance</a> </td></tr>
			</table>
			</div>
			
			<!--
			<object type="application/x-shockwave-flash" data="http://slopjong.de/wp-content/plugins/one-word-a-day/audio-player/player.swf" id="audioplayer-2517" height="24" width="190">
			<param name="movie" value="http://slopjong.de/wp-content/plugins/one-word-a-day/audio-player/player.swf">
			<param name="FlashVars" value="playerID=1&amp;titles=rehearsal&amp;animation=yes&amp;soundFile=http://slopjong.de/What_does_rehearsal_mean.mp3">
			<param name="quality" value="high">
			<param name="menu" value="false">
			<param name="wmode" value="transparent">
			</object>
			-->
			
			<!--
			<p id="owad-sound">Listen</p>
			
			<script type="text/javascript">
			//AudioPlayer.embed("owad-sound2517", {soundFile: "http://slopjong.de/What_does_rehearsal_mean.mp3"} );
			</script>
			-->
			<p style="font-size:8pt;">With granted permission of <a href="http://owad.de" target="_blank">Paul Smith</a>.</p>
<p><a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F15%2Fwhat-does-rehearsal-mean%2F&amp;linkname=What%20does%20%26%238220%3Brehearsal%26%238221%3B%20mean%3F" title="Delicious" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F15%2Fwhat-does-rehearsal-mean%2F&amp;linkname=What%20does%20%26%238220%3Brehearsal%26%238221%3B%20mean%3F" title="Digg" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F15%2Fwhat-does-rehearsal-mean%2F&amp;linkname=What%20does%20%26%238220%3Brehearsal%26%238221%3B%20mean%3F" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F15%2Fwhat-does-rehearsal-mean%2F&amp;linkname=What%20does%20%26%238220%3Brehearsal%26%238221%3B%20mean%3F" title="Reddit" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F15%2Fwhat-does-rehearsal-mean%2F&amp;linkname=What%20does%20%26%238220%3Brehearsal%26%238221%3B%20mean%3F" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F15%2Fwhat-does-rehearsal-mean%2F&amp;linkname=What%20does%20%26%238220%3Brehearsal%26%238221%3B%20mean%3F" title="Facebook" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/spurl?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F15%2Fwhat-does-rehearsal-mean%2F&amp;linkname=What%20does%20%26%238220%3Brehearsal%26%238221%3B%20mean%3F" title="Spurl" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/spurl.png" width="16" height="16" alt="Spurl"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F15%2Fwhat-does-rehearsal-mean%2F&amp;linkname=What%20does%20%26%238220%3Brehearsal%26%238221%3B%20mean%3F" title="Twitter" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/webnews?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F15%2Fwhat-does-rehearsal-mean%2F&amp;linkname=What%20does%20%26%238220%3Brehearsal%26%238221%3B%20mean%3F" title="Webnews" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/webnews.png" width="16" height="16" alt="Webnews"/></a> <a href="http://www.addtoany.com/add_to/yigg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F15%2Fwhat-does-rehearsal-mean%2F&amp;linkname=What%20does%20%26%238220%3Brehearsal%26%238221%3B%20mean%3F" title="YiGG" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yigg.png" width="16" height="16" alt="YiGG"/></a> <a href="http://www.addtoany.com/add_to/myspace?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F15%2Fwhat-does-rehearsal-mean%2F&amp;linkname=What%20does%20%26%238220%3Brehearsal%26%238221%3B%20mean%3F" title="MySpace" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/myspace.png" width="16" height="16" alt="MySpace"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F15%2Fwhat-does-rehearsal-mean%2F&amp;linkname=What%20does%20%26%238220%3Brehearsal%26%238221%3B%20mean%3F" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/friendfeed?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F15%2Fwhat-does-rehearsal-mean%2F&amp;linkname=What%20does%20%26%238220%3Brehearsal%26%238221%3B%20mean%3F" title="FriendFeed" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/friendfeed.png" width="16" height="16" alt="FriendFeed"/></a> <a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F15%2Fwhat-does-rehearsal-mean%2F&amp;linkname=What%20does%20%26%238220%3Brehearsal%26%238221%3B%20mean%3F" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/livejournal?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F15%2Fwhat-does-rehearsal-mean%2F&amp;linkname=What%20does%20%26%238220%3Brehearsal%26%238221%3B%20mean%3F" title="LiveJournal" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/livejournal.png" width="16" height="16" alt="LiveJournal"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F15%2Fwhat-does-rehearsal-mean%2F&amp;linkname=What%20does%20%26%238220%3Brehearsal%26%238221%3B%20mean%3F"><img src="http://slopjong.de/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://slopjong.de/2010/04/15/what-does-rehearsal-mean/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What does &#8220;leave well enough alone&#8221; mean?</title>
		<link>http://slopjong.de/2010/04/14/what-does-leave-well-enough-alone-mean/</link>
		<comments>http://slopjong.de/2010/04/14/what-does-leave-well-enough-alone-mean/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 22:01:14 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[Learning English]]></category>

		<guid isPermaLink="false">http://slopjong.de/2010/04/14/what-does-leave-well-enough-alone-mean/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div>
			
			<table>
			<tr><td valign="top">a)</td><td> <a id="owad_alt1_" href="http://owad.slopjong.de/leave_well_enough_alone_12516.html?KeepThis=true&TB_iframe=true&height=540&width=800" class="thickbox" title="Using data with permission of owad.de">to travel solo</a> </td></tr>
			<tr><td valign="top">b)</td><td> <a id="owad_alt2_" href="http://owad.slopjong.de/leave_well_enough_alone_32516.html?KeepThis=true&TB_iframe=true&height=540&width=800" class="thickbox" title="Using data with permission of owad.de">to keep something like it is</a> </td></tr>
			<tr><td valign="top">c)</td><td> <a id="owad_alt3_" href="http://owad.slopjong.de/leave_well_enough_alone_52516.html?KeepThis=true&TB_iframe=true&height=540&width=800" class="thickbox" title="Using data with permission of owad.de">to do less than what is demanded</a> </td></tr>
			</table>
			</div>
			
			<!--
			<object type="application/x-shockwave-flash" data="http://slopjong.de/wp-content/plugins/one-word-a-day/audio-player/player.swf" id="audioplayer-2516" height="24" width="190">
			<param name="movie" value="http://slopjong.de/wp-content/plugins/one-word-a-day/audio-player/player.swf">
			<param name="FlashVars" value="playerID=1&amp;titles=leave+well+enough+alone&amp;animation=yes&amp;soundFile=http://slopjong.de/What_does_leave_well_enough_alone_mean.mp3">
			<param name="quality" value="high">
			<param name="menu" value="false">
			<param name="wmode" value="transparent">
			</object>
			-->
			
			<!--
			<p id="owad-sound">Listen</p>
			
			<script type="text/javascript">
			//AudioPlayer.embed("owad-sound2516", {soundFile: "http://slopjong.de/What_does_leave_well_enough_alone_mean.mp3"} );
			</script>
			-->
			<p style="font-size:8pt;">With granted permission of <a href="http://owad.de" target="_blank">Paul Smith</a>.</p>
<p><a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F14%2Fwhat-does-leave-well-enough-alone-mean%2F&amp;linkname=What%20does%20%26%238220%3Bleave%20well%20enough%20alone%26%238221%3B%20mean%3F" title="Delicious" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F14%2Fwhat-does-leave-well-enough-alone-mean%2F&amp;linkname=What%20does%20%26%238220%3Bleave%20well%20enough%20alone%26%238221%3B%20mean%3F" title="Digg" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F14%2Fwhat-does-leave-well-enough-alone-mean%2F&amp;linkname=What%20does%20%26%238220%3Bleave%20well%20enough%20alone%26%238221%3B%20mean%3F" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F14%2Fwhat-does-leave-well-enough-alone-mean%2F&amp;linkname=What%20does%20%26%238220%3Bleave%20well%20enough%20alone%26%238221%3B%20mean%3F" title="Reddit" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F14%2Fwhat-does-leave-well-enough-alone-mean%2F&amp;linkname=What%20does%20%26%238220%3Bleave%20well%20enough%20alone%26%238221%3B%20mean%3F" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F14%2Fwhat-does-leave-well-enough-alone-mean%2F&amp;linkname=What%20does%20%26%238220%3Bleave%20well%20enough%20alone%26%238221%3B%20mean%3F" title="Facebook" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/spurl?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F14%2Fwhat-does-leave-well-enough-alone-mean%2F&amp;linkname=What%20does%20%26%238220%3Bleave%20well%20enough%20alone%26%238221%3B%20mean%3F" title="Spurl" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/spurl.png" width="16" height="16" alt="Spurl"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F14%2Fwhat-does-leave-well-enough-alone-mean%2F&amp;linkname=What%20does%20%26%238220%3Bleave%20well%20enough%20alone%26%238221%3B%20mean%3F" title="Twitter" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/webnews?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F14%2Fwhat-does-leave-well-enough-alone-mean%2F&amp;linkname=What%20does%20%26%238220%3Bleave%20well%20enough%20alone%26%238221%3B%20mean%3F" title="Webnews" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/webnews.png" width="16" height="16" alt="Webnews"/></a> <a href="http://www.addtoany.com/add_to/yigg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F14%2Fwhat-does-leave-well-enough-alone-mean%2F&amp;linkname=What%20does%20%26%238220%3Bleave%20well%20enough%20alone%26%238221%3B%20mean%3F" title="YiGG" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yigg.png" width="16" height="16" alt="YiGG"/></a> <a href="http://www.addtoany.com/add_to/myspace?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F14%2Fwhat-does-leave-well-enough-alone-mean%2F&amp;linkname=What%20does%20%26%238220%3Bleave%20well%20enough%20alone%26%238221%3B%20mean%3F" title="MySpace" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/myspace.png" width="16" height="16" alt="MySpace"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F14%2Fwhat-does-leave-well-enough-alone-mean%2F&amp;linkname=What%20does%20%26%238220%3Bleave%20well%20enough%20alone%26%238221%3B%20mean%3F" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/friendfeed?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F14%2Fwhat-does-leave-well-enough-alone-mean%2F&amp;linkname=What%20does%20%26%238220%3Bleave%20well%20enough%20alone%26%238221%3B%20mean%3F" title="FriendFeed" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/friendfeed.png" width="16" height="16" alt="FriendFeed"/></a> <a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F14%2Fwhat-does-leave-well-enough-alone-mean%2F&amp;linkname=What%20does%20%26%238220%3Bleave%20well%20enough%20alone%26%238221%3B%20mean%3F" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/livejournal?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F14%2Fwhat-does-leave-well-enough-alone-mean%2F&amp;linkname=What%20does%20%26%238220%3Bleave%20well%20enough%20alone%26%238221%3B%20mean%3F" title="LiveJournal" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/livejournal.png" width="16" height="16" alt="LiveJournal"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F04%2F14%2Fwhat-does-leave-well-enough-alone-mean%2F&amp;linkname=What%20does%20%26%238220%3Bleave%20well%20enough%20alone%26%238221%3B%20mean%3F"><img src="http://slopjong.de/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://slopjong.de/2010/04/14/what-does-leave-well-enough-alone-mean/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
