<?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>iThoughts</title>
	<atom:link href="http://www.ithoughts.de/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ithoughts.de</link>
	<description>Upgrade your Brain</description>
	<lastBuildDate>Thu, 02 May 2013 15:55:30 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Json.NET and Serializing only base class properties</title>
		<link>http://www.ithoughts.de/json-net-and-serializing-only-base-class-properties</link>
		<comments>http://www.ithoughts.de/json-net-and-serializing-only-base-class-properties#comments</comments>
		<pubDate>Thu, 02 May 2013 15:55:30 +0000</pubDate>
		<dc:creator>Akku</dc:creator>
				<category><![CDATA[Privat]]></category>
		<guid isPermaLink="false">http://www.ithoughts.de/?p=906</guid>
		<description><![CDATA[I was just working with Json.NET in C# and was looking for a solution to create a JSON-String from an object where I only wanted to put in the properties of the base type, as I have stored subtypes in memory which contain additional ViewModel properties that were unneeded as I only needed the business [...]]]></description>
				<content:encoded><![CDATA[<p>I was just working with Json.NET in C# and was looking for a solution to create a JSON-String from an object where I only wanted to put in the properties of the base type, as I have stored subtypes in memory which contain additional ViewModel properties that were unneeded as I only needed the business data. As I didn&#8217;t find anything fitting via Google, I researched how to build a custom ContractResolver that only serializes the Properties belonging to my business model class type T:</p>
<pre>public class DerivedTypeFilterContractResolver&lt;T&gt; : DefaultContractResolver
{
  protected override JsonProperty CreateProperty(MemberInfo member, MemberSerialization memberSerialization)
  {
    JsonProperty property = base.CreateProperty(member, memberSerialization);
    if (property.DeclaringType == typeof(T))
    {
        property.ShouldSerialize =
          instance =&gt; false;
    }
    return property;
}</pre>
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li>No Related Posts</li>
</ul>
 <img src="http://www.ithoughts.de/?feed-stats-post-id=906" width="1" height="1" style="display: none;" /> <p><a href="http://www.ithoughts.de/?flattrss_redirect&amp;id=906&amp;md5=a352ef042fd43516b6c08dcb6205d632" title="Flattr" target="_blank"><img src="http://www.ithoughts.de/wp-content/plugins/flattrss/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ithoughts.de/json-net-and-serializing-only-base-class-properties/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=8844&amp;url=http%3A%2F%2Fwww.ithoughts.de%2Fjson-net-and-serializing-only-base-class-properties&amp;language=en_GB&amp;category=text&amp;title=Json.NET+and+Serializing+only+base+class+properties&amp;description=I+was+just+working+with+Json.NET+in+C%23+and+was+looking+for+a+solution+to+create+a+JSON-String+from+an+object+where+I+only+wanted+to+put+in+the+properties...&amp;tags=blog" type="text/html" />
	</item>
		<item>
		<title>Routine, Change and Failure</title>
		<link>http://www.ithoughts.de/routine-change-and-failure</link>
		<comments>http://www.ithoughts.de/routine-change-and-failure#comments</comments>
		<pubDate>Sun, 14 Apr 2013 14:36:05 +0000</pubDate>
		<dc:creator>Akku</dc:creator>
				<category><![CDATA[Philosophy]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Fail]]></category>
		<category><![CDATA[Fear]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[Meaning of Life]]></category>
		<guid isPermaLink="false">http://www.ithoughts.de/?p=898</guid>
		<description><![CDATA[Just a thought about failure and change.]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.ithoughts.de/wp-content/MonsterandAngel_id_8454306326_CC_ND_BY_h.koppdelaney_16230215@N08.jpg"><img class="lazy alignright size-medium wp-image-899 shadow-curl" style="margin: 5px;" alt="MonsterandAngel_id_8454306326_CC_ND_BY_h.koppdelaney_16230215@N08" src="http://www.ithoughts.de/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" data-original="http://www.ithoughts.de/wp-content/MonsterandAngel_id_8454306326_CC_ND_BY_h.koppdelaney_16230215@N08-300x300.jpg" width="300" height="300" /><noscript><img class="alignright size-medium wp-image-899 shadow-curl" style="margin: 5px;" alt="MonsterandAngel_id_8454306326_CC_ND_BY_h.koppdelaney_16230215@N08" src="http://www.ithoughts.de/wp-content/MonsterandAngel_id_8454306326_CC_ND_BY_h.koppdelaney_16230215@N08-300x300.jpg" width="300" height="300" /></noscript></a></p>
<p>Whenever I read that you should embrace failure, I think that many people won&#8217;t get the point.</p>
<p>The human mind loves routine. Routine is a series of steps you&#8217;ve done before, in a way that&#8217;s always the same. When you know something works in a certain way, it&#8217;s a safe feeling that you know what&#8217;s coming. It&#8217;s the opposite of danger, and the fear that&#8217;s connected to danger.</p>
<p>When you read somewhere that you should embrace failure, they really mean that you should change. Change always has a positive effect, and if it hasn&#8217;t (you failed!) you can usually change again and learn something in the process, advancing you overall.</p>
<p>What keeps you from change is when you never break your routine.</p>
<hr />
<p>Picture: <a href="http://creativecommons.org/licenses/by-nd/2.0/" target="_blank" rel="license"><img class="lazy alignnone" title="Creative Commons Attribution-No Derivative Works 2.0 Generic License" alt="Creative Commons Attribution-No Derivative Works 2.0 Generic License" src="http://www.ithoughts.de/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" data-original="http://i.creativecommons.org/l/by-nd/2.0/80x15.png" width="80" height="15" border="0" /><noscript><img class="alignnone" title="Creative Commons Attribution-No Derivative Works 2.0 Generic License" alt="Creative Commons Attribution-No Derivative Works 2.0 Generic License" src="http://i.creativecommons.org/l/by-nd/2.0/80x15.png" width="80" height="15" border="0" /></noscript></a>  by <a href="http://www.flickr.com/people/h-k-d/" target="_blank"> </a><a href="http://www.flickr.com/people/h-k-d/" target="_blank" rel="cc:attributionURL">h.koppdelaney</a><br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://www.ithoughts.de/life-is-the-ultimate-game' title='Life is The Ultimate Game'>Life is The Ultimate Game</a></li>
<li><a href='http://www.ithoughts.de/teaching-sometimes-leads-to-refusal' title='Teaching sometimes leads to Refusal'>Teaching sometimes leads to Refusal</a></li>
<li><a href='http://www.ithoughts.de/the-human-flaw' title='The Human Flaw'>The Human Flaw</a></li>
<li><a href='http://www.ithoughts.de/timeframe-of-life' title='Timeframes of Life'>Timeframes of Life</a></li>
<li><a href='http://www.ithoughts.de/new-years-resolutions' title='New year&#8217;s resolutions'>New year&#8217;s resolutions</a></li>
</ul>
 <img src="http://www.ithoughts.de/?feed-stats-post-id=898" width="1" height="1" style="display: none;" /> <p><a href="http://www.ithoughts.de/?flattrss_redirect&amp;id=898&amp;md5=3a5233934bfe587d569cce7f3801ff40" title="Flattr" target="_blank"><img src="http://www.ithoughts.de/wp-content/plugins/flattrss/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ithoughts.de/routine-change-and-failure/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=8844&amp;url=http%3A%2F%2Fwww.ithoughts.de%2Froutine-change-and-failure&amp;language=en_GB&amp;category=text&amp;title=Routine%2C+Change+and+Failure&amp;description=Whenever+I+read+that+you+should+embrace+failure%2C+I+think+that+many+people+won%26%238217%3Bt+get+the+point.+The+human+mind+loves+routine.+Routine+is+a+series+of+steps+you%26%238217%3Bve+done...&amp;tags=English%2CFail%2CFear%2CLearning%2CMeaning+of+Life%2CPhilosophy%2Cblog" type="text/html" />
	</item>
		<item>
		<title>Mac OS X Customizability – Part 2: Finder, Browsing, Touchpad and Windows 7 Features</title>
		<link>http://www.ithoughts.de/mac-os-x-customizability-part-2-finder-browsing-touchpad-and-windows-7-features</link>
		<comments>http://www.ithoughts.de/mac-os-x-customizability-part-2-finder-browsing-touchpad-and-windows-7-features#comments</comments>
		<pubDate>Wed, 13 Feb 2013 05:13:48 +0000</pubDate>
		<dc:creator>Akku</dc:creator>
				<category><![CDATA[Tipps]]></category>
		<category><![CDATA[Alfred]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[BetterTouchTool]]></category>
		<category><![CDATA[Convenience]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Keyboard Maestro]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Time]]></category>
		<category><![CDATA[XtraFinder]]></category>
		<guid isPermaLink="false">http://www.ithoughts.de/?p=862</guid>
		<description><![CDATA[I'm showing some of the main productivity apps and time savers on my system: BetterTouchTool, XtraFinder and Alfred. With screenshots!]]></description>
				<content:encoded><![CDATA[<p>Related: <a title="Mac OS X Customizability – Part 1: Desktop" href="http://www.ithoughts.de/mac-os-x-customizability-part-1-desktop">Mac OS X Customizability – Part 1: Desktop</a></p>
<p>I wish I had known this stuff earlier, so here you go with part 2. This will especially be interesting for people who think the Mac misses some features they like on Windows 7, or that you wonder why Apple didn&#8217;t build em in. Small side-note: I use A LOT of apps that modify global input, but it doesn&#8217;t cause any problems at all. There was one single incompatibility that <a title="KeyRemapForMacbook" href="http://pqrs.org/macosx/keyremap4macbook/">KeyRemapForMacbook</a> could fix for me.</p>
<p>The first tool I want to mention is <a title="BetterTouchTool" href="http://www.boastr.de/">BetterTouchTool</a> which does all sorts of nice &amp; crazy things. For example, it includes the Window Snapping behavior from Windows 7, where you can drag a window somewhere and it maximizes like this:</p>
<p style="text-align: center;"><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:480px;margin: 5px;" class="aligncenter"><img class="lazy shadow_curl size-full wp-image-863 " style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="desktop_window_snapping_mac" src="http://www.ithoughts.de/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" data-original="http://www.ithoughts.de/wp-content/desktop_window_snapping_mac.jpg" width="480" height="300" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div><noscript><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:480px;margin: 5px;" class="aligncenter"><img class="shadow_curl size-full wp-image-863 " style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="desktop_window_snapping_mac" src="http://www.ithoughts.de/wp-content/desktop_window_snapping_mac.jpg" width="480" height="300" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div></noscript></p>
<p>The tool is free, and does a lot more in this regard, and as you can see from this screenshot, you can configure the hell out of BTT (oh, and the window moving part on the other settings screen is also really nice, like &#8220;move the window under the cursor when I hold <em>fn</em>&#8220;):</p>
<p style="text-align: center;"><a href="http://www.ithoughts.de/wp-content/bttWindowSnapping.jpg"><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:454px;margin: 5px;" class="aligncenter"><img class="lazy shadow_curl size-full wp-image-870 " style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="bttWindowSnapping" src="http://www.ithoughts.de/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" data-original="http://www.ithoughts.de/wp-content/bttWindowSnapping.jpg" width="454" height="337" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div><noscript><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:454px;margin: 5px;" class="aligncenter"><img class="shadow_curl size-full wp-image-870 " style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="bttWindowSnapping" src="http://www.ithoughts.de/wp-content/bttWindowSnapping.jpg" width="454" height="337" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div></noscript></a></p>
<p>I don&#8217;t use a mouse anymore, because <a title="BetterTouchTool" href="http://www.boastr.de/">BetterTouchTool</a> does LOADs of stuff by configuring gestures for my touchpad. As an example what it can do, I show you the following screenshot with the Chrome settings for nicer tabbed browsing:</p>
<p style="text-align: center;"><a href="http://www.ithoughts.de/wp-content/BTTchromesettings.jpg"><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:461px;margin: 5px;" class="aligncenter"><img class="lazy shadow_curl size-full wp-image-865 " style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="BTTchromesettings" src="http://www.ithoughts.de/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" data-original="http://www.ithoughts.de/wp-content/BTTchromesettings.jpg" width="461" height="339" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div><noscript><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:461px;margin: 5px;" class="aligncenter"><img class="shadow_curl size-full wp-image-865 " style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="BTTchromesettings" src="http://www.ithoughts.de/wp-content/BTTchromesettings.jpg" width="461" height="339" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div></noscript></a></p>
<p>Swipe three fingers up to open a tab, down to close it, and tip-taps left and right to hit the shortcuts for switch to left or right tab. Nice right? How cool would it be if Finder had tabs and worked this way? Enter <a title="XtraFinder" href="http://www.trankynam.com/xtrafinder/">XtraFinder</a>:</p>
<p style="text-align: center;"><a href="http://www.ithoughts.de/wp-content/XtraFinderDualTabs.jpg"><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:602px;margin: 5px;" class="aligncenter"><img class="lazy shadow_curl size-full wp-image-868 " style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="XtraFinderDualTabs" src="http://www.ithoughts.de/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" data-original="http://www.ithoughts.de/wp-content/XtraFinderDualTabs.jpg" width="602" height="385" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div><noscript><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:602px;margin: 5px;" class="aligncenter"><img class="shadow_curl size-full wp-image-868 " style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="XtraFinderDualTabs" src="http://www.ithoughts.de/wp-content/XtraFinderDualTabs.jpg" width="602" height="385" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div></noscript></a></p>
<p>Yes, with the tabbed browsing in Finder, I defined the same stuff for the finder that I also defined above for the browser in <a title="BetterTouchTool" href="http://www.boastr.de/">BetterTouchTool</a>, which looks like this:</p>
<p style="text-align: center;"><a href="http://www.ithoughts.de/wp-content/bttfindersettings.jpg"><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:461px;margin: 5px;" class="aligncenter"><img class="lazy shadow_curl size-full wp-image-864 " style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="bttfindersettings" src="http://www.ithoughts.de/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" data-original="http://www.ithoughts.de/wp-content/bttfindersettings.jpg" width="461" height="340" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div><noscript><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:461px;margin: 5px;" class="aligncenter"><img class="shadow_curl size-full wp-image-864 " style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="bttfindersettings" src="http://www.ithoughts.de/wp-content/bttfindersettings.jpg" width="461" height="340" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div></noscript></a></p>
<p><a title="XtraFinder" href="http://www.trankynam.com/xtrafinder/">XtraFinder</a> is free too, and it also adds a lot of useful stuff freshly converted Windows users miss, like &#8220;Create new .txt here&#8221;, but also stuff very handy on the Mac like &#8220;Create Symlink&#8221;, &#8220;Open in Terminal&#8221; or &#8220;Copy Path (with various syntax modes like path, windows path, file-URL, etc&#8230;)&#8221;. See for yourself some examples as screenshots:</p>
<p style="text-align: center;"><a href="http://www.ithoughts.de/wp-content/XtraFinderNewFile.jpg"><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:477px;margin: 5px;" class="aligncenter"><img class="lazy shadow_curl size-full wp-image-869 " style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="XtraFinderNewFile" src="http://www.ithoughts.de/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" data-original="http://www.ithoughts.de/wp-content/XtraFinderNewFile.jpg" width="477" height="445" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div><noscript><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:477px;margin: 5px;" class="aligncenter"><img class="shadow_curl size-full wp-image-869 " style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="XtraFinderNewFile" src="http://www.ithoughts.de/wp-content/XtraFinderNewFile.jpg" width="477" height="445" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div></noscript></a></p>
<p style="text-align: center;"><a href="http://www.ithoughts.de/wp-content/Xtra_path.jpg"><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:548px;margin-top: 5px;margin-bottom: 5px;" class="aligncenter"><img class="lazy shadow_curl size-full wp-image-866 " style="; ;; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="Xtra_path" src="http://www.ithoughts.de/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" data-original="http://www.ithoughts.de/wp-content/Xtra_path.jpg" width="548" height="642" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div><noscript><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:548px;margin-top: 5px;margin-bottom: 5px;" class="aligncenter"><img class="shadow_curl size-full wp-image-866 " style="; ;; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="Xtra_path" src="http://www.ithoughts.de/wp-content/Xtra_path.jpg" width="548" height="642" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div></noscript></a></p>
<p>The only thing missing at this point is a fast way to jump to exactly the right folder or file that you need right now. On Windows, I used everything for that, on Mac my first choice was intuitively using Spotlight. Which is fine, it&#8217;s just that the last must-have app in this post &#8211; <a title="Alfred Website" href="http://www.alfredapp.com/">Alfred</a> &#8211; is faster and better and more customizable. Just install and use it, you&#8217;ll see:</p>
<p style="text-align: center;"><a href="http://www.ithoughts.de/wp-content/alfred.jpg"><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:662px;margin: 5px;" class="aligncenter"><img class="lazy shadow_curl size-full wp-image-867 " style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="alfred" src="http://www.ithoughts.de/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" data-original="http://www.ithoughts.de/wp-content/alfred.jpg" width="662" height="521" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div><noscript><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:662px;margin: 5px;" class="aligncenter"><img class="shadow_curl size-full wp-image-867 " style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="alfred" src="http://www.ithoughts.de/wp-content/alfred.jpg" width="662" height="521" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div></noscript></a></p>
<p><a title="Alfred" href="http://www.alfredapp.com/">Alfred</a> can do a lot of stuff, integrate 1Password (I&#8217;m not going to show you a screenshot, but that&#8217;s a must have app too), but generally it&#8217;s just a great search tool. Btw. the guys behind <a title="Alfred" href="http://www.alfredapp.com/">Alfred</a> have just released the <a title="Alfred Version 2 Beta" href="http://blog.alfredapp.com/2013/01/12/first-alfred-v2-beta-now-available-for-mega-supporters/">beta</a> of the next major version, which is a complete rewrite that will support some fascinating things like a Google Instant search right on your desktop.</p>
<p><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:302px;margin: 5px;" class="alignright"><img class="lazy shadow_curl size-full wp-image-872 " style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="alfred_clipboard_history" src="http://www.ithoughts.de/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" data-original="http://www.ithoughts.de/wp-content/alfred_clipboard_history.jpg" width="302" height="155" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div><noscript><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:302px;margin: 5px;" class="alignright"><img class="shadow_curl size-full wp-image-872 " style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="alfred_clipboard_history" src="http://www.ithoughts.de/wp-content/alfred_clipboard_history.jpg" width="302" height="155" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div></noscript></p>
<p>One more giant feature I need to post a screenshot for: Alfred includes a VERY good searchable clipboard history. In the next post of this series, I&#8217;ll likely write about automation of basically every thinkable workflow using Keyboard Maestro.<br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://www.ithoughts.de/todo-for-mac-review' title='ToDo for Mac &#8211; Review'>ToDo for Mac &#8211; Review</a></li>
<li><a href='http://www.ithoughts.de/programs-you-should-have-a-look-at' title='Programs you should have a look at'>Programs you should have a look at</a></li>
<li><a href='http://www.ithoughts.de/type-faster-be-more-productive' title='Be more productive with Phrase Express'>Be more productive with Phrase Express</a></li>
<li><a href='http://www.ithoughts.de/mac-os-x-customizability-part-1-desktop' title='Mac OS X Customizability &#8211; Part 1: Desktop'>Mac OS X Customizability &#8211; Part 1: Desktop</a></li>
<li><a href='http://www.ithoughts.de/firefox-on-mac-tabs-closed-after-restart' title='Firefox on Mac &#8211; Tabs Closed after Restart'>Firefox on Mac &#8211; Tabs Closed after Restart</a></li>
</ul>
 <img src="http://www.ithoughts.de/?feed-stats-post-id=862" width="1" height="1" style="display: none;" /> <p><a href="http://www.ithoughts.de/?flattrss_redirect&amp;id=862&amp;md5=9139dcdeb9522cd7f2fc3480597b9baf" title="Flattr" target="_blank"><img src="http://www.ithoughts.de/wp-content/plugins/flattrss/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ithoughts.de/mac-os-x-customizability-part-2-finder-browsing-touchpad-and-windows-7-features/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=8844&amp;url=http%3A%2F%2Fwww.ithoughts.de%2Fmac-os-x-customizability-part-2-finder-browsing-touchpad-and-windows-7-features&amp;language=en_GB&amp;category=text&amp;title=Mac+OS+X+Customizability+%E2%80%93+Part+2%3A+Finder%2C+Browsing%2C+Touchpad+and+Windows+7+Features&amp;description=Related%3A%C2%A0Mac+OS+X+Customizability+%E2%80%93+Part+1%3A+Desktop+I+wish+I+had+known+this+stuff+earlier%2C+so+here+you+go+with+part+2.+This+will+especially+be+interesting+for+people...&amp;tags=Alfred%2CApps%2CBetterTouchTool%2CConvenience%2CEnglish%2CKeyboard+Maestro%2CMac%2COSX%2CProductivity%2CReview%2CSoftware%2CTime%2CXtraFinder%2Cblog" type="text/html" />
	</item>
		<item>
		<title>Hay Day Hints, Tips and Tricks</title>
		<link>http://www.ithoughts.de/hay-day-hints-tips-and-tricks</link>
		<comments>http://www.ithoughts.de/hay-day-hints-tips-and-tricks#comments</comments>
		<pubDate>Sun, 10 Feb 2013 15:03:45 +0000</pubDate>
		<dc:creator>Akku</dc:creator>
				<category><![CDATA[Shorts]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[shorts]]></category>
		<guid isPermaLink="false">http://www.ithoughts.de/?p=883</guid>
		<description><![CDATA[Just a link to my small tumbler site where I wrote up tips, tricks and hints for Hay-Day.]]></description>
				<content:encoded><![CDATA[<p>Just want to note that I was seriously infected with a free game called <a title="Hay Day in the AppStore" href="https://itunes.apple.com/de/app/hay-day/id506627515?mt=8&amp;ign-mpt=uo%3D2">Hay-Day</a>. I wrote up my hints, tips and tricks for beginner in a <a title="Tips, Tricks and Hints for Hay Day" href="http://hay-day.tumblr.com/">small, ugly-themed Tumblr</a>. Have fun with that, but don&#8217;t expect more &#8211; I quit, as it wasn&#8217;t free but cost a lot of time :-)<br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://www.ithoughts.de/routine-change-and-failure' title='Routine, Change and Failure'>Routine, Change and Failure</a></li>
<li><a href='http://www.ithoughts.de/mac-os-x-customizability-part-2-finder-browsing-touchpad-and-windows-7-features' title='Mac OS X Customizability – Part 2: Finder, Browsing, Touchpad and Windows 7 Features'>Mac OS X Customizability – Part 2: Finder, Browsing, Touchpad and Windows 7 Features</a></li>
</ul>
 <img src="http://www.ithoughts.de/?feed-stats-post-id=883" width="1" height="1" style="display: none;" /> <p><a href="http://www.ithoughts.de/?flattrss_redirect&amp;id=883&amp;md5=01f58b7d00d265ae460377b3c9876bb0" title="Flattr" target="_blank"><img src="http://www.ithoughts.de/wp-content/plugins/flattrss/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ithoughts.de/hay-day-hints-tips-and-tricks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=8844&amp;url=http%3A%2F%2Fwww.ithoughts.de%2Fhay-day-hints-tips-and-tricks&amp;language=en_GB&amp;category=text&amp;title=Hay+Day+Hints%2C+Tips+and+Tricks&amp;description=Just+want+to+note+that+I+was+seriously+infected+with+a+free+game+called+Hay-Day.+I+wrote+up+my+hints%2C+tips+and+tricks+for+beginner+in+a+small%2C+ugly-themed+Tumblr....&amp;tags=English%2Cshorts%2Cblog" type="text/html" />
	</item>
		<item>
		<title>Mac OS X Customizability &#8211; Part 1: Desktop</title>
		<link>http://www.ithoughts.de/mac-os-x-customizability-part-1-desktop</link>
		<comments>http://www.ithoughts.de/mac-os-x-customizability-part-1-desktop#comments</comments>
		<pubDate>Sat, 09 Feb 2013 07:04:01 +0000</pubDate>
		<dc:creator>Akku</dc:creator>
				<category><![CDATA[Tipps]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[Bartender]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[GeekTool]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Software]]></category>
		<guid isPermaLink="false">http://www.ithoughts.de/?p=838</guid>
		<description><![CDATA[Presenting GeekTool and Bartender to customize the Desktop]]></description>
				<content:encoded><![CDATA[<p>Waiting for an 21GB game to install, I found time for a short burst of blog posts about really cool stuff you can do to customize your Mac OS X experience. I wish I had known this stuff earlier, so here you go with part 1.</p>
<p>Let&#8217;s customize the Desktop with dynamic data. This is mine:</p>
<p><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:576px;margin: 5px;" class="alignright"><img class="lazy shadow_curl   wp-image-841" style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="fullscreen" src="http://www.ithoughts.de/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" data-original="http://www.ithoughts.de/wp-content/fullscreen.jpg" width="576" height="360" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div><noscript><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:576px;margin: 5px;" class="alignright"><img class="shadow_curl   wp-image-841" style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="fullscreen" src="http://www.ithoughts.de/wp-content/fullscreen.jpg" width="576" height="360" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div></noscript></p>
<p>&nbsp;</p>
<p>If you want dynamic text on your desktop too, download <strong>GeekTool</strong> <a title="GeekTool in the Mac App Store" href="https://itunes.apple.com/de/app/geektool/id456877552?mt=12">from the Mac App Store</a>. For the quotes, you can use the settings you see on the screenshot with my <strong>ruby script (<a title="A Roby script to get some quotes from an RSS feed and print two random ones." href="http://www.ithoughts.de/downloads/new.rb">download here</a>) </strong>that gets quotes from <a title="Quotes of the Day" href="http://feeds.feedburner.com/quotationspage/qotd">http://feeds.feedburner.com/quotationspage/qotd</a>. For the process list, use the following settings and command:</p>
<p><a href="http://www.ithoughts.de/wp-content/geektoolProcesses.jpg"><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:267px;margin: 5px;" class="alignright"><img class="lazy shadow_curl  size-full wp-image-843" style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="geektoolProcesses" src="http://www.ithoughts.de/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" data-original="http://www.ithoughts.de/wp-content/geektoolProcesses.jpg" width="267" height="646" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div><noscript><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:267px;margin: 5px;" class="alignright"><img class="shadow_curl  size-full wp-image-843" style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="geektoolProcesses" src="http://www.ithoughts.de/wp-content/geektoolProcesses.jpg" width="267" height="646" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div></noscript></a></p>
<p><code>top -l 1 | awk '/PhysMem/ {print "Used RAM: " $8 " Free: " $10}';echo "";echo "  PID  CPU% RAM_MB  Process";ps -arcwwwxo "pid %cpu rss command" | egrep "$1" | grep -v grep | head -12 | tail -11</code></p>
<p>The calendar stuff in the middle are multiple &#8220;geeklets&#8221; that use the following commands to get the different parts of the calendar and that are styled slightly different:</p>
<p><code>date +%A</code> <em>(outputs &#8220;Friday&#8221; in my german localization)</em></p>
<p><code>date +%d.;</code> <em>(outputs &#8220;08.&#8221;)</em></p>
<p><code>date +%B</code> <em>(outputs &#8220;February&#8221;)</em></p>
<p><code>date '+%H:%M'</code> <em>(outputs &#8220;23:46&#8243;)</em></p>
<p>The resulting calendar then might look like this, if you&#8217;ve styled the geeklets like I did and positioned them in the same way (the borders will vanish, when GeekTool is not the frontmost app):</p>
<p><a href="http://www.ithoughts.de/wp-content/calendarGeekTool.jpg"><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:555px;margin: 5px;" class="alignright"><img class="lazy shadow_curl wp-image-842 " style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="calendarGeekTool" src="http://www.ithoughts.de/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" data-original="http://www.ithoughts.de/wp-content/calendarGeekTool.jpg" width="555" height="363" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div><noscript><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:555px;margin: 5px;" class="alignright"><img class="shadow_curl wp-image-842 " style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="calendarGeekTool" src="http://www.ithoughts.de/wp-content/calendarGeekTool.jpg" width="555" height="363" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div></noscript></a></p>
<p>By the way, when you have so many strange apps installed (I have), your appbar gets icon creep. But if you saw my screenshots above, it wasn&#8217;t so bad, was it? May I introduce: <a title="Bartender" href="http://www.macbartender.com/">Bartender</a>. Look at this</p>
<p><a href="http://www.ithoughts.de/wp-content/bartender.jpg"><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:539px;margin: 5px;" class="alignright"><img class="lazy shadow_curl   wp-image-844" style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="bartender" src="http://www.ithoughts.de/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" data-original="http://www.ithoughts.de/wp-content/bartender.jpg" width="539" height="103" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div><noscript><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:539px;margin: 5px;" class="alignright"><img class="shadow_curl   wp-image-844" style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="bartender" src="http://www.ithoughts.de/wp-content/bartender.jpg" width="539" height="103" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div></noscript></a></p>
<p>Bartender lets you configure what you want to see, what you don&#8217;t want to see and what is only shown in the Bartender bar that opens when you click it.</p>
<p>Part 2 of this customizability posts will follow soon with a <strong>better finder</strong> and <strong>better touch input</strong>.<br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://www.ithoughts.de/mac-os-x-customizability-part-2-finder-browsing-touchpad-and-windows-7-features' title='Mac OS X Customizability – Part 2: Finder, Browsing, Touchpad and Windows 7 Features'>Mac OS X Customizability – Part 2: Finder, Browsing, Touchpad and Windows 7 Features</a></li>
<li><a href='http://www.ithoughts.de/firefox-on-mac-tabs-closed-after-restart' title='Firefox on Mac &#8211; Tabs Closed after Restart'>Firefox on Mac &#8211; Tabs Closed after Restart</a></li>
<li><a href='http://www.ithoughts.de/the-big-anti-apple-rant' title='The Big Anti-Apple Rant'>The Big Anti-Apple Rant</a></li>
<li><a href='http://www.ithoughts.de/apples-move-the-content-paradigm-for-the-future' title='The &#8220;Move The Content&#8221; Paradigm, Criticism And The Future Of Mac OSX'>The &#8220;Move The Content&#8221; Paradigm, Criticism And The Future Of Mac OSX</a></li>
<li><a href='http://www.ithoughts.de/marketshare-and-winning-and-religion' title='Marketshare and Winning and Religion'>Marketshare and Winning and Religion</a></li>
</ul>
 <img src="http://www.ithoughts.de/?feed-stats-post-id=838" width="1" height="1" style="display: none;" /> <p><a href="http://www.ithoughts.de/?flattrss_redirect&amp;id=838&amp;md5=93b77a81c61affd045889e27484843b9" title="Flattr" target="_blank"><img src="http://www.ithoughts.de/wp-content/plugins/flattrss/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ithoughts.de/mac-os-x-customizability-part-1-desktop/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=8844&amp;url=http%3A%2F%2Fwww.ithoughts.de%2Fmac-os-x-customizability-part-1-desktop&amp;language=en_GB&amp;category=text&amp;title=Mac+OS+X+Customizability+%26%238211%3B+Part+1%3A+Desktop&amp;description=Waiting+for+an+21GB+game+to+install%2C+I+found+time+for+a+short+burst+of+blog+posts+about+really+cool+stuff+you+can+do+to+customize+your+Mac+OS+X...&amp;tags=Apple%2CApps%2CBartender%2CEnglish%2CGeekTool%2COSX%2CSoftware%2Cblog" type="text/html" />
	</item>
		<item>
		<title>SVN &#8216;Add Directory Failed&#8217;-Gotcha</title>
		<link>http://www.ithoughts.de/svn-add-directory-failed-gotcha</link>
		<comments>http://www.ithoughts.de/svn-add-directory-failed-gotcha#comments</comments>
		<pubDate>Mon, 04 Feb 2013 16:52:12 +0000</pubDate>
		<dc:creator>Akku</dc:creator>
				<category><![CDATA[Privat]]></category>
		<guid isPermaLink="false">http://www.ithoughts.de/?p=829</guid>
		<description><![CDATA[Failed to add directory &#8216;DirectoryName&#8217;: a versioned directory of the same name already exists. Wasted a lot of time for this. Problem was that I locally deleted a folder, created it new and checked it in, but wrote the directory with another case (for example delete folder &#8220;Directoryname&#8221; and created folder &#8220;DirectoryName&#8221; with uppercase N). [...]]]></description>
				<content:encoded><![CDATA[<blockquote><p>Failed to add directory &#8216;DirectoryName&#8217;: a versioned directory of the same name already exists.</p></blockquote>
<p>Wasted a lot of time for this. <strong>Problem was that</strong> I locally deleted a folder, created it new and checked it in, but wrote the directory with another case (for example delete folder &#8220;Directoryname&#8221; and created folder &#8220;DirectoryName&#8221; with uppercase N). The case sensitive SVN had no problem adding the new folder and managing Directoryname AND DirectoryName, but when Jenkins / Hudson on our Windows build server would try to checkout both directories, it would fail with this StackTrace:</p>
<p style="font-size: x-small;">ERROR: Failed to check out <a href="http://localhost/svn/somerepo/someproject">http://localhost/svn/somerepo/someproject</a> <a href="http://stacktrace.hudson-ci.org/search?query=org.tmatesoft.svn.core.SVNException">org.tmatesoft.svn.core.SVNException</a>: svn: Failed to add directory &#8216;DirectoryName&#8217;: a versioned directory of the same name already exists at <a href="http://stacktrace.hudson-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc.SVNErrorManager.error&amp;entity=method">org.tmatesoft.svn.core.internal.wc.SVNErrorManager.error(SVNErrorManager.java:64)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc.SVNErrorManager.error&amp;entity=method">org.tmatesoft.svn.core.internal.wc.SVNErrorManager.error(SVNErrorManager.java:51)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=org.tmatesoft.svn.core.internal.io.dav.http.HTTPConnection.request&amp;entity=method">org.tmatesoft.svn.core.internal.io.dav.http.HTTPConnection.request(HTTPConnection.java:640)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=org.tmatesoft.svn.core.internal.io.dav.http.HTTPConnection.request&amp;entity=method">org.tmatesoft.svn.core.internal.io.dav.http.HTTPConnection.request(HTTPConnection.java:280)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=org.tmatesoft.svn.core.internal.io.dav.http.HTTPConnection.request&amp;entity=method">org.tmatesoft.svn.core.internal.io.dav.http.HTTPConnection.request(HTTPConnection.java:268)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=org.tmatesoft.svn.core.internal.io.dav.DAVConnection.doReport&amp;entity=method">org.tmatesoft.svn.core.internal.io.dav.DAVConnection.doReport(DAVConnection.java:286)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=org.tmatesoft.svn.core.internal.io.dav.DAVRepository.runReport&amp;entity=method">org.tmatesoft.svn.core.internal.io.dav.DAVRepository.runReport(DAVRepository.java:1280)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=org.tmatesoft.svn.core.internal.io.dav.DAVRepository.update&amp;entity=method">org.tmatesoft.svn.core.internal.io.dav.DAVRepository.update(DAVRepository.java:828)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=org.tmatesoft.svn.core.wc.SVNUpdateClient.update&amp;entity=method">org.tmatesoft.svn.core.wc.SVNUpdateClient.update(SVNUpdateClient.java:564)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=org.tmatesoft.svn.core.wc.SVNUpdateClient.doCheckout&amp;entity=method">org.tmatesoft.svn.core.wc.SVNUpdateClient.doCheckout(SVNUpdateClient.java:922)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=hudson.scm.subversion.CheckoutUpdater$UpdateTaskImpl.perform&amp;entity=method">hudson.scm.subversion.CheckoutUpdater$UpdateTaskImpl.perform(CheckoutUpdater.java:99)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=hudson.scm.subversion.WorkspaceUpdater$UpdateTask.delegateTo&amp;entity=method">hudson.scm.subversion.WorkspaceUpdater$UpdateTask.delegateTo(WorkspaceUpdater.java:152)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=hudson.scm.SubversionSCM$CheckOutTask.perform&amp;entity=method">hudson.scm.SubversionSCM$CheckOutTask.perform(SubversionSCM.java:807)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=hudson.scm.SubversionSCM$CheckOutTask.invoke&amp;entity=method">hudson.scm.SubversionSCM$CheckOutTask.invoke(SubversionSCM.java:790)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=hudson.scm.SubversionSCM$CheckOutTask.invoke&amp;entity=method">hudson.scm.SubversionSCM$CheckOutTask.invoke(SubversionSCM.java:771)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=hudson.FilePath.act&amp;entity=method">hudson.FilePath.act(FilePath.java:758)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=hudson.FilePath.act&amp;entity=method">hudson.FilePath.act(FilePath.java:740)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=hudson.scm.SubversionSCM.checkout&amp;entity=method">hudson.scm.SubversionSCM.checkout(SubversionSCM.java:763)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=hudson.scm.SubversionSCM.checkout&amp;entity=method">hudson.scm.SubversionSCM.checkout(SubversionSCM.java:706)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=hudson.model.AbstractProject.checkout&amp;entity=method">hudson.model.AbstractProject.checkout(AbstractProject.java:1483)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=hudson.model.AbstractBuild$AbstractRunner.checkout&amp;entity=method">hudson.model.AbstractBuild$AbstractRunner.checkout(AbstractBuild.java:507)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=hudson.model.AbstractBuild$AbstractRunner.run&amp;entity=method">hudson.model.AbstractBuild$AbstractRunner.run(AbstractBuild.java:424)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=hudson.model.Run.run&amp;entity=method">hudson.model.Run.run(Run.java:1366)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=hudson.model.FreeStyleBuild.run&amp;entity=method">hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=hudson.model.ResourceController.execute&amp;entity=method">hudson.model.ResourceController.execute(ResourceController.java:88)</a> at <a href="http://stacktrace.hudson-ci.org/search/?query=hudson.model.Executor.run&amp;entity=method">hudson.model.Executor.run(Executor.java:145)</a></p>
<p>Just writing this up, because I found no links that correctly identified this problem.<br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li>No Related Posts</li>
</ul>
 <img src="http://www.ithoughts.de/?feed-stats-post-id=829" width="1" height="1" style="display: none;" /> <p><a href="http://www.ithoughts.de/?flattrss_redirect&amp;id=829&amp;md5=dcacc37302b13894fccb9c03dce5cbb3" title="Flattr" target="_blank"><img src="http://www.ithoughts.de/wp-content/plugins/flattrss/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ithoughts.de/svn-add-directory-failed-gotcha/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=8844&amp;url=http%3A%2F%2Fwww.ithoughts.de%2Fsvn-add-directory-failed-gotcha&amp;language=en_GB&amp;category=text&amp;title=SVN+%26%238216%3BAdd+Directory+Failed%26%238217%3B-Gotcha&amp;description=Failed+to+add+directory+%26%238216%3BDirectoryName%26%238217%3B%3A+a+versioned+directory+of+the+same+name+already+exists.+Wasted+a+lot+of+time+for+this.+Problem+was+that+I+locally+deleted+a+folder%2C+created...&amp;tags=blog" type="text/html" />
	</item>
		<item>
		<title>Twitter Clients and Language Metadata</title>
		<link>http://www.ithoughts.de/twitter-clients-and-language-metadata</link>
		<comments>http://www.ithoughts.de/twitter-clients-and-language-metadata#comments</comments>
		<pubDate>Wed, 16 Jan 2013 21:19:24 +0000</pubDate>
		<dc:creator>Akku</dc:creator>
				<category><![CDATA[Shorts]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[Twitter]]></category>
		<guid isPermaLink="false">http://www.ithoughts.de/?p=817</guid>
		<description><![CDATA[Put language / locale metadata in Twitter would be great for new users.]]></description>
				<content:encoded><![CDATA[<p>The metadata, that sits in every tweet contains no locale definition. If it did, Twitter clients (including Twitters website) could filter tweets by language, and hide me from Chinese, Spanish and other very nice languages &#8230; that I nevertheless don&#8217;t understand.</p>
<p>Update: As George Hahn points out in the comments, Twitter basically supports tweet languages. This means apps like Tweetbot or Osfoora could give options like &#8220;don&#8217;t show Tweets that are tagged as Chinese or Japanese&#8221;. /Update</p>
<p><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:256px;margin: 10px;" class="alignleft"><img class="lazy shadow_curl size-full wp-image-818 " style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="Give tweets an explict language" src="http://www.ithoughts.de/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" data-original="http://www.ithoughts.de/wp-content/Usa-256-copy.png" width="256" height="256" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div><noscript><div style="overflow:hidden;display:table;line-height:0;text-align:center;width:256px;margin: 10px;" class="alignleft"><img class="shadow_curl size-full wp-image-818 " style=";; padding:0 !important; margin:0 !important; max-width:100% !important;" alt="Give tweets an explict language" src="http://www.ithoughts.de/wp-content/Usa-256-copy.png" width="256" height="256" /><br/><img alt="" src="http://www.ithoughts.de/wp-content/plugins/shadows/shadow_curl.png" class="shadow_img" style="margin:0 !important;height:10px;width:100%;" /></div></noscript></p>
<p>Putting in the language would then of course be an additional hassle for multiple language tweeters, but effectively it would do no more harm that what is done right now to the unprotected eyes of usual people who want to try twitter but might be scared away if they get all the english retweets &#8211; while they don&#8217;t speak english. Then also applications can try to auto recognize if I tweet in german or english (which might not even be <em>that</em> hard) and correct me if I didn&#8217;t put in the language manually.</p>
<p>&nbsp;<br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://www.ithoughts.de/speeding-up-my-blog-disabling-social-buttons' title='Speeding up my Blog &amp; Disabling Social Buttons'>Speeding up my Blog &#038; Disabling Social Buttons</a></li>
<li><a href='http://www.ithoughts.de/keep-private-stuff-private-on-twitter' title='Keep Private Stuff Private on Twitter'>Keep Private Stuff Private on Twitter</a></li>
<li><a href='http://www.ithoughts.de/find-e-mail-of-your-job-candidate-mass-follow-by-e-mail-on-twitter' title='Find E-Mail of your Job Candidate / Mass Follow by E-Mail on Twitter'>Find E-Mail of your Job Candidate / Mass Follow by E-Mail on Twitter</a></li>
<li><a href='http://www.ithoughts.de/why-social-media-only-works-for-the-winners' title='Why Social Media only works for the Winners'>Why Social Media only works for the Winners</a></li>
<li><a href='http://www.ithoughts.de/what-is-viral-marketing' title='What is Viral Marketing?'>What is Viral Marketing?</a></li>
</ul>
 <img src="http://www.ithoughts.de/?feed-stats-post-id=817" width="1" height="1" style="display: none;" /> <p><a href="http://www.ithoughts.de/?flattrss_redirect&amp;id=817&amp;md5=a9507455b8ab09b71556398b19ea6028" title="Flattr" target="_blank"><img src="http://www.ithoughts.de/wp-content/plugins/flattrss/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ithoughts.de/twitter-clients-and-language-metadata/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=8844&amp;url=http%3A%2F%2Fwww.ithoughts.de%2Ftwitter-clients-and-language-metadata&amp;language=en_GB&amp;category=text&amp;title=Twitter+Clients+and+Language+Metadata&amp;description=The+metadata%2C+that+sits+in+every+tweet+contains+no+locale+definition.+If+it+did%2C+Twitter+clients+%28including+Twitters+website%29+could+filter+tweets+by+language%2C+and+hide+me+from%C2%A0Chinese%2C+Spanish+and...&amp;tags=English%2CError%2CTwitter%2CUsability%2Cblog" type="text/html" />
	</item>
	</channel>
</rss>
