<?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>FVN Tech Blog</title>
	<atom:link href="http://blog.feuvan.net/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.feuvan.net</link>
	<description>Advertisement Platform &#124; Mobile &#124; Interoperability &#124; Coding in C#, JavaScript, Obj-C, PHP &#124; Linux, Mac OSX, Windows Server Backend &#124; Misc ...</description>
	<lastBuildDate>Mon, 16 Jan 2012 14:53:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Handle URL open from other apps in iOS</title>
		<link>http://blog.feuvan.net/2012/01/16/10095-handle-url-open-from-other-apps-in-ios.html</link>
		<comments>http://blog.feuvan.net/2012/01/16/10095-handle-url-open-from-other-apps-in-ios.html#comments</comments>
		<pubDate>Mon, 16 Jan 2012 14:40:53 +0000</pubDate>
		<dc:creator>feuvan</dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[iOS]]></category>

		<guid isPermaLink="false">http://blog.feuvan.net/?p=10095</guid>
		<description><![CDATA[For short, declare UTImportedTypeDeclarations(for types that are not predefined as System Uniform Type Identifiers), CFBundleDocumentTypes in Info.plist, UIApplicationLaunchOptionsURLKey in &#91;launchOptions valueForKey:UIApplicationLaunchOptionsURLKey&#93; And for multitask apps, additionally respond to &#40;BOOL&#41;application:&#40;UIApplication *&#41;application openURL:&#40;NSURL *&#41;url sourceApplication:&#40;NSString *&#41;sourceApplication annotation:&#40;id&#41;annotation // for iOS 4.2+ or &#8230; <a href="http://blog.feuvan.net/2012/01/16/10095-handle-url-open-from-other-apps-in-ios.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For short, declare UTImportedTypeDeclarations(for types that are not predefined as <a href="http://developer.apple.com/library/ios/#documentation/Miscellaneous/Reference/UTIRef/Articles/System-DeclaredUniformTypeIdentifiers.html">System Uniform Type Identifiers</a>), CFBundleDocumentTypes in Info.plist, UIApplicationLaunchOptionsURLKey in</p>

<div class="wp_syntax"><div class="code"><pre class="objc" style="font-family:monospace;"><span style="color: #002200;">&#91;</span>launchOptions valueForKey<span style="color: #002200;">:</span>UIApplicationLaunchOptionsURLKey<span style="color: #002200;">&#93;</span></pre></div></div>

<p>And for multitask apps, additionally respond to</p>

<div class="wp_syntax"><div class="code"><pre class="objc" style="font-family:monospace;"><span style="color: #002200;">&#40;</span><span style="color: #a61390;">BOOL</span><span style="color: #002200;">&#41;</span>application<span style="color: #002200;">:</span><span style="color: #002200;">&#40;</span>UIApplication <span style="color: #002200;">*</span><span style="color: #002200;">&#41;</span>application openURL<span style="color: #002200;">:</span><span style="color: #002200;">&#40;</span><span style="color: #400080;">NSURL</span> <span style="color: #002200;">*</span><span style="color: #002200;">&#41;</span>url sourceApplication<span style="color: #002200;">:</span><span style="color: #002200;">&#40;</span><span style="color: #400080;">NSString</span> <span style="color: #002200;">*</span><span style="color: #002200;">&#41;</span>sourceApplication annotation<span style="color: #002200;">:</span><span style="color: #002200;">&#40;</span><span style="color: #a61390;">id</span><span style="color: #002200;">&#41;</span>annotation <span style="color: #11740a; font-style: italic;">// for iOS 4.2+</span></pre></div></div>

<p>or</p>

<div class="wp_syntax"><div class="code"><pre class="objc" style="font-family:monospace;"><span style="color: #002200;">&#40;</span><span style="color: #a61390;">BOOL</span><span style="color: #002200;">&#41;</span>application<span style="color: #002200;">:</span><span style="color: #002200;">&#40;</span>UIApplication <span style="color: #002200;">*</span><span style="color: #002200;">&#41;</span>application handleOpenURL<span style="color: #002200;">:</span><span style="color: #002200;">&#40;</span><span style="color: #400080;">NSURL</span> <span style="color: #002200;">*</span><span style="color: #002200;">&#41;</span>url <span style="color: #11740a; font-style: italic;">// for iOS 2.0+, deprecated.</span></pre></div></div>

<p>One little trick to handle ALL file types:</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;">	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;key<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>CFBundleDocumentTypes<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/key<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;array<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;dict<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
			<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;key<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>CFBundleTypeName<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/key<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
			<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>All Files<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
			<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;key<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>LSItemContentTypes<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/key<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
			<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;array<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
				<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>public.data<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
				<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>public.content<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
			<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/array<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/dict<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/array<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2012%2F01%2F16%2F10095-handle-url-open-from-other-apps-in-ios.html&amp;title=Handle+URL+open+from+other+apps+in+iOS" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2012%2F01%2F16%2F10095-handle-url-open-from-other-apps-in-ios.html&amp;title=Handle+URL+open+from+other+apps+in+iOS" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2012%2F01%2F16%2F10095-handle-url-open-from-other-apps-in-ios.html&amp;title=Handle+URL+open+from+other+apps+in+iOS" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.feuvan.net%2F2012%2F01%2F16%2F10095-handle-url-open-from-other-apps-in-ios.html&amp;headline=Handle+URL+open+from+other+apps+in+iOS" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Handle+URL+open+from+other+apps+in+iOS&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2012%2F01%2F16%2F10095-handle-url-open-from-other-apps-in-ios.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Handle+URL+open+from+other+apps+in+iOS&amp;u=http%3A%2F%2Fblog.feuvan.net%2F2012%2F01%2F16%2F10095-handle-url-open-from-other-apps-in-ios.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Handle+URL+open+from+other+apps+in+iOS&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2012%2F01%2F16%2F10095-handle-url-open-from-other-apps-in-ios.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Handle+URL+open+from+other+apps+in+iOS&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2012%2F01%2F16%2F10095-handle-url-open-from-other-apps-in-ios.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Handle+URL+open+from+other+apps+in+iOS&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2012%2F01%2F16%2F10095-handle-url-open-from-other-apps-in-ios.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2012%2F01%2F16%2F10095-handle-url-open-from-other-apps-in-ios.html&amp;title=Handle+URL+open+from+other+apps+in+iOS&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.feuvan.net%2F2012%2F01%2F16%2F10095-handle-url-open-from-other-apps-in-ios.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.feuvan.net%2F2012%2F01%2F16%2F10095-handle-url-open-from-other-apps-in-ios.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.feuvan.net%2F2012%2F01%2F16%2F10095-handle-url-open-from-other-apps-in-ios.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.feuvan.net/2012/01/16/10095-handle-url-open-from-other-apps-in-ios.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updated to WordPress 3.3</title>
		<link>http://blog.feuvan.net/2011/12/14/10090-updated-to-wordpress-3-3.html</link>
		<comments>http://blog.feuvan.net/2011/12/14/10090-updated-to-wordpress-3-3.html#comments</comments>
		<pubDate>Wed, 14 Dec 2011 07:54:25 +0000</pubDate>
		<dc:creator>feuvan</dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[wordpres]]></category>

		<guid isPermaLink="false">http://blog.feuvan.net/?p=10090</guid>
		<description><![CDATA[The new admin interface looks pretty good. I like it.]]></description>
			<content:encoded><![CDATA[<p>The new admin interface looks pretty good.<br />
I like it.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F14%2F10090-updated-to-wordpress-3-3.html&amp;title=Updated+to+WordPress+3.3" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F14%2F10090-updated-to-wordpress-3-3.html&amp;title=Updated+to+WordPress+3.3" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F14%2F10090-updated-to-wordpress-3-3.html&amp;title=Updated+to+WordPress+3.3" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F14%2F10090-updated-to-wordpress-3-3.html&amp;headline=Updated+to+WordPress+3.3" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Updated+to+WordPress+3.3&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F14%2F10090-updated-to-wordpress-3-3.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Updated+to+WordPress+3.3&amp;u=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F14%2F10090-updated-to-wordpress-3-3.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Updated+to+WordPress+3.3&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F14%2F10090-updated-to-wordpress-3-3.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Updated+to+WordPress+3.3&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F14%2F10090-updated-to-wordpress-3-3.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Updated+to+WordPress+3.3&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F14%2F10090-updated-to-wordpress-3-3.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F14%2F10090-updated-to-wordpress-3-3.html&amp;title=Updated+to+WordPress+3.3&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F14%2F10090-updated-to-wordpress-3-3.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F14%2F10090-updated-to-wordpress-3-3.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F14%2F10090-updated-to-wordpress-3-3.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.feuvan.net/2011/12/14/10090-updated-to-wordpress-3-3.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>remove a symbol from multiple platform Mach-O file</title>
		<link>http://blog.feuvan.net/2011/12/11/10085-remove-a-symbol-from-multiple-platform-mach-o-file.html</link>
		<comments>http://blog.feuvan.net/2011/12/11/10085-remove-a-symbol-from-multiple-platform-mach-o-file.html#comments</comments>
		<pubDate>Sun, 11 Dec 2011 15:39:15 +0000</pubDate>
		<dc:creator>feuvan</dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[ar]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[lipo]]></category>
		<category><![CDATA[Mach-O]]></category>
		<category><![CDATA[Objective-C]]></category>

		<guid isPermaLink="false">http://blog.feuvan.net/?p=10085</guid>
		<description><![CDATA[For Mach-O fat binaries that contains multiple platforms, stripping symbol may not work as you would expect. So you have to extract the executables/libraries from Mach-O and thin it using lipo. Then you can remove the .o file you don&#8217;t &#8230; <a href="http://blog.feuvan.net/2011/12/11/10085-remove-a-symbol-from-multiple-platform-mach-o-file.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For Mach-O fat binaries that contains multiple platforms, stripping symbol may not work as you would expect.<br />
So you have to extract the executables/libraries from Mach-O and thin it using <a href="http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/lipo.1.html" title="lipo Manual page">lipo</a>. Then you can remove the .o file you don&#8217;t like by &#8220;ar -d <.a> <.o>&#8221; or strip the symbol by &#8220;strip&#8221; which is no longer necessary.<br />
After that, do the reverse steps to pack it back to a multiple platform Mach-O file.</p>
<p>Well, this post *may* be the last post this year.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F11%2F10085-remove-a-symbol-from-multiple-platform-mach-o-file.html&amp;title=remove+a+symbol+from+multiple+platform+Mach-O+file" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F11%2F10085-remove-a-symbol-from-multiple-platform-mach-o-file.html&amp;title=remove+a+symbol+from+multiple+platform+Mach-O+file" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F11%2F10085-remove-a-symbol-from-multiple-platform-mach-o-file.html&amp;title=remove+a+symbol+from+multiple+platform+Mach-O+file" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F11%2F10085-remove-a-symbol-from-multiple-platform-mach-o-file.html&amp;headline=remove+a+symbol+from+multiple+platform+Mach-O+file" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=remove+a+symbol+from+multiple+platform+Mach-O+file&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F11%2F10085-remove-a-symbol-from-multiple-platform-mach-o-file.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=remove+a+symbol+from+multiple+platform+Mach-O+file&amp;u=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F11%2F10085-remove-a-symbol-from-multiple-platform-mach-o-file.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=remove+a+symbol+from+multiple+platform+Mach-O+file&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F11%2F10085-remove-a-symbol-from-multiple-platform-mach-o-file.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=remove+a+symbol+from+multiple+platform+Mach-O+file&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F11%2F10085-remove-a-symbol-from-multiple-platform-mach-o-file.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=remove+a+symbol+from+multiple+platform+Mach-O+file&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F11%2F10085-remove-a-symbol-from-multiple-platform-mach-o-file.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F11%2F10085-remove-a-symbol-from-multiple-platform-mach-o-file.html&amp;title=remove+a+symbol+from+multiple+platform+Mach-O+file&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F11%2F10085-remove-a-symbol-from-multiple-platform-mach-o-file.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F11%2F10085-remove-a-symbol-from-multiple-platform-mach-o-file.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F12%2F11%2F10085-remove-a-symbol-from-multiple-platform-mach-o-file.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.feuvan.net/2011/12/11/10085-remove-a-symbol-from-multiple-platform-mach-o-file.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>zzxy.feuvan.net reloaded.</title>
		<link>http://blog.feuvan.net/2011/01/16/10082-zzxy-feuvan-net-reloaded.html</link>
		<comments>http://blog.feuvan.net/2011/01/16/10082-zzxy-feuvan-net-reloaded.html#comments</comments>
		<pubDate>Sun, 16 Jan 2011 13:57:25 +0000</pubDate>
		<dc:creator>feuvan</dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[datapipe6]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[zzxy]]></category>

		<guid isPermaLink="false">http://blog.feuvan.net/?p=10082</guid>
		<description><![CDATA[with telnet/ssh/web. Thanks to ipv6, tunnel by he.net. And datapipe6.c, lol. As nginx mod_proxy doesn&#8217;t support ipv6 upstream, here is the workaround: datapipe6 localhost 56789 2001:da8:200:900e:200:5efe:a66f:480c 80 And nginx config: server { listen 80; server_name zzxy.feuvan.net; location / { proxy_pass &#8230; <a href="http://blog.feuvan.net/2011/01/16/10082-zzxy-feuvan-net-reloaded.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>with telnet/ssh/web.</p>
<p>Thanks to ipv6, tunnel by he.net.<br />
And datapipe6.c, lol.</p>
<p>As nginx mod_proxy doesn&#8217;t support ipv6 upstream, here is the workaround:<br />
<strong>datapipe6 localhost 56789 2001:da8:200:900e:200:5efe:a66f:480c 80<br />
<span style="color: #444444; font-weight: normal;">And nginx config:</span></strong></p>
<blockquote><p>server {<br />
listen 80;<br />
server_name zzxy.feuvan.net;</p>
<p>location / {<br />
proxy_pass http://localhost:56789;<br />
proxy_set_header  X-Real-IP $remote_addr;<br />
proxy_cache_valid 10m;<br />
}<br />
location ~* \.(jpg|jpeg|bmp|png|gif|mp3)$ {<br />
proxy_pass http://localhost:56789;<br />
proxy_set_header  X-Real-IP $remote_addr;<br />
proxy_cache two;<br />
proxy_cache_key &#8220;$scheme$host$request_uri&#8221;;<br />
proxy_cache_valid 600m;<br />
}<br />
}</p></blockquote>
<p>Cernet sux.</p>
<p><script src="https://gist.github.com/781726.js?file=datapipe6.c"></script></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F01%2F16%2F10082-zzxy-feuvan-net-reloaded.html&amp;title=zzxy.feuvan.net+reloaded." ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F01%2F16%2F10082-zzxy-feuvan-net-reloaded.html&amp;title=zzxy.feuvan.net+reloaded." ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F01%2F16%2F10082-zzxy-feuvan-net-reloaded.html&amp;title=zzxy.feuvan.net+reloaded." ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.feuvan.net%2F2011%2F01%2F16%2F10082-zzxy-feuvan-net-reloaded.html&amp;headline=zzxy.feuvan.net+reloaded." ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=zzxy.feuvan.net+reloaded.&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F01%2F16%2F10082-zzxy-feuvan-net-reloaded.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=zzxy.feuvan.net+reloaded.&amp;u=http%3A%2F%2Fblog.feuvan.net%2F2011%2F01%2F16%2F10082-zzxy-feuvan-net-reloaded.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=zzxy.feuvan.net+reloaded.&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F01%2F16%2F10082-zzxy-feuvan-net-reloaded.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=zzxy.feuvan.net+reloaded.&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F01%2F16%2F10082-zzxy-feuvan-net-reloaded.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=zzxy.feuvan.net+reloaded.&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F01%2F16%2F10082-zzxy-feuvan-net-reloaded.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F01%2F16%2F10082-zzxy-feuvan-net-reloaded.html&amp;title=zzxy.feuvan.net+reloaded.&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.feuvan.net%2F2011%2F01%2F16%2F10082-zzxy-feuvan-net-reloaded.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.feuvan.net%2F2011%2F01%2F16%2F10082-zzxy-feuvan-net-reloaded.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.feuvan.net%2F2011%2F01%2F16%2F10082-zzxy-feuvan-net-reloaded.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.feuvan.net/2011/01/16/10082-zzxy-feuvan-net-reloaded.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just upgrade to 3.0.4</title>
		<link>http://blog.feuvan.net/2010/12/29/10071-just-upgrade-to-3-0-4.html</link>
		<comments>http://blog.feuvan.net/2010/12/29/10071-just-upgrade-to-3-0-4.html#comments</comments>
		<pubDate>Thu, 30 Dec 2010 05:37:18 +0000</pubDate>
		<dc:creator>feuvan</dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.feuvan.net/?p=10071</guid>
		<description><![CDATA[Don&#8217;t pwn my blog site. For the security patch, http://wordpress.org/news/2010/12/3-0-4-update/]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t pwn my blog site.</p>
<p>For the security patch, <a href="http://wordpress.org/news/2010/12/3-0-4-update/">http://wordpress.org/news/2010/12/3-0-4-update/</a></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F12%2F29%2F10071-just-upgrade-to-3-0-4.html&amp;title=Just+upgrade+to+3.0.4" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F12%2F29%2F10071-just-upgrade-to-3-0-4.html&amp;title=Just+upgrade+to+3.0.4" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F12%2F29%2F10071-just-upgrade-to-3-0-4.html&amp;title=Just+upgrade+to+3.0.4" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.feuvan.net%2F2010%2F12%2F29%2F10071-just-upgrade-to-3-0-4.html&amp;headline=Just+upgrade+to+3.0.4" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Just+upgrade+to+3.0.4&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F12%2F29%2F10071-just-upgrade-to-3-0-4.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Just+upgrade+to+3.0.4&amp;u=http%3A%2F%2Fblog.feuvan.net%2F2010%2F12%2F29%2F10071-just-upgrade-to-3-0-4.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Just+upgrade+to+3.0.4&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F12%2F29%2F10071-just-upgrade-to-3-0-4.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Just+upgrade+to+3.0.4&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F12%2F29%2F10071-just-upgrade-to-3-0-4.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Just+upgrade+to+3.0.4&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F12%2F29%2F10071-just-upgrade-to-3-0-4.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F12%2F29%2F10071-just-upgrade-to-3-0-4.html&amp;title=Just+upgrade+to+3.0.4&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.feuvan.net%2F2010%2F12%2F29%2F10071-just-upgrade-to-3-0-4.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.feuvan.net%2F2010%2F12%2F29%2F10071-just-upgrade-to-3-0-4.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F12%2F29%2F10071-just-upgrade-to-3-0-4.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.feuvan.net/2010/12/29/10071-just-upgrade-to-3-0-4.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WCF Tracing basics</title>
		<link>http://blog.feuvan.net/2010/11/09/10072-wcf-tracing-basics.html</link>
		<comments>http://blog.feuvan.net/2010/11/09/10072-wcf-tracing-basics.html#comments</comments>
		<pubDate>Tue, 09 Nov 2010 22:27:41 +0000</pubDate>
		<dc:creator>feuvan</dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://blog.feuvan.net/?p=10072</guid>
		<description><![CDATA[Pretty old but still handy configuration. IIS + ASP.NET only. http://msdn.microsoft.com/en-us/library/ms733025.aspx &#60;configuration&#62; &#60;system.diagnostics&#62; &#60;sources&#62; &#60;source name="System.ServiceModel" switchValue="Information, ActivityTracing" propagateActivity="true"&#62; &#60;listeners&#62; &#60;add name="traceListener" type="System.Diagnostics.XmlWriterTraceListener" initializeData= "c:\log\Traces.svclog" /&#62; &#60;/listeners&#62; &#60;/source&#62; &#60;/sources&#62; &#60;/system.diagnostics&#62; &#60;/configuration&#62;]]></description>
			<content:encoded><![CDATA[<p>Pretty old but still handy configuration.</p>
<p>IIS + ASP.NET only.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms733025.aspx">http://msdn.microsoft.com/en-us/library/ms733025.aspx</a></p>
<pre>&lt;configuration&gt;
   &lt;system.diagnostics&gt;
      &lt;sources&gt;
            &lt;source name="System.ServiceModel"
                    switchValue="Information, ActivityTracing"
                    propagateActivity="true"&gt;
            &lt;listeners&gt;
               &lt;add name="traceListener"
                   type="System.Diagnostics.XmlWriterTraceListener"
                   initializeData= "c:\log\Traces.svclog" /&gt;
            &lt;/listeners&gt;
         &lt;/source&gt;
      &lt;/sources&gt;
   &lt;/system.diagnostics&gt;
&lt;/configuration&gt;</pre>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F09%2F10072-wcf-tracing-basics.html&amp;title=WCF+Tracing+basics" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F09%2F10072-wcf-tracing-basics.html&amp;title=WCF+Tracing+basics" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F09%2F10072-wcf-tracing-basics.html&amp;title=WCF+Tracing+basics" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F09%2F10072-wcf-tracing-basics.html&amp;headline=WCF+Tracing+basics" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=WCF+Tracing+basics&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F09%2F10072-wcf-tracing-basics.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=WCF+Tracing+basics&amp;u=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F09%2F10072-wcf-tracing-basics.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=WCF+Tracing+basics&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F09%2F10072-wcf-tracing-basics.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=WCF+Tracing+basics&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F09%2F10072-wcf-tracing-basics.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=WCF+Tracing+basics&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F09%2F10072-wcf-tracing-basics.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F09%2F10072-wcf-tracing-basics.html&amp;title=WCF+Tracing+basics&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F09%2F10072-wcf-tracing-basics.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F09%2F10072-wcf-tracing-basics.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F09%2F10072-wcf-tracing-basics.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.feuvan.net/2010/11/09/10072-wcf-tracing-basics.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recovered from disk io error</title>
		<link>http://blog.feuvan.net/2010/11/01/10069-recovered-from-disk-io-error.html</link>
		<comments>http://blog.feuvan.net/2010/11/01/10069-recovered-from-disk-io-error.html#comments</comments>
		<pubDate>Mon, 01 Nov 2010 11:04:44 +0000</pubDate>
		<dc:creator>feuvan</dc:creator>
				<category><![CDATA[Default]]></category>

		<guid isPermaLink="false">http://blog.feuvan.net/?p=10069</guid>
		<description><![CDATA[Sometime earlier (several hours ago), there&#8217;s a really high disk io then all services are down. I found the file system was remount in RO mode. Something weird. Anyway, fixed now. feuvan@wonderland:~$ sudo fsck fsck from util-linux-ng 2.17.2 e2fsck 1.41.11 &#8230; <a href="http://blog.feuvan.net/2010/11/01/10069-recovered-from-disk-io-error.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Sometime earlier (several hours ago), there&#8217;s a really high disk io then all services are down.<br />
I found the file system was remount in RO mode. Something weird.<br />
Anyway, fixed now.<br />
<code><br />
feuvan@wonderland:~$ sudo fsck<br />
fsck from util-linux-ng 2.17.2<br />
e2fsck 1.41.11 (14-Mar-2010)<br />
/dev/xvda contains a file system with errors, check forced.<br />
Pass 1: Checking inodes, blocks, and sizes<br />
Inodes that were part of a corrupted orphan linked list found.  Fix<y>? yes</p>
<p>Inode 114702 was part of the orphaned inode list.  FIXED.<br />
Inode 303107 was part of the orphaned inode list.  FIXED.<br />
Deleted inode 958465 has zero dtime.  Fix<y>? yes</p>
<p>Inode 958466 was part of the orphaned inode list.  FIXED.<br />
Inode 958467 was part of the orphaned inode list.  FIXED.<br />
Inode 958468 was part of the orphaned inode list.  FIXED.<br />
Inode 958470 was part of the orphaned inode list.  FIXED.<br />
Deleted inode 961482 has zero dtime.  Fix<y>? yes</p>
<p>Inode 961483 was part of the orphaned inode list.  FIXED.<br />
Inode 961484 was part of the orphaned inode list.  FIXED.<br />
Inode 961485 was part of the orphaned inode list.  FIXED.<br />
Inode 961486 was part of the orphaned inode list.  FIXED.<br />
Pass 2: Checking directory structure<br />
Pass 3: Checking directory connectivity<br />
Pass 4: Checking reference counts<br />
Pass 5: Checking group summary information<br />
Block bitmap differences:  -583804 -(583806--583815) -(1232332--1232666)<br />
Fix<y>? yes</p>
<p>Free blocks count wrong for group #17 (4, counted=15).<br />
Fix<y>? yes</p>
<p>Free blocks count wrong for group #37 (13654, counted=13989).<br />
Fix<y>? yes</p>
<p>Free blocks count wrong (2522826, counted=2523172).<br />
Fix<y>? yes</p>
<p>Inode bitmap differences:  -114702 -303107 -(958465--958468) -958470 -(961482--961486)<br />
Fix<y>? yes</p>
<p>Free inodes count wrong for group #14 (8130, counted=8131).<br />
Fix<y>? yes</p>
<p>Free inodes count wrong for group #37 (6348, counted=6349).<br />
Fix<y>? yes</p>
<p>Free inodes count wrong for group #117 (5170, counted=5180).<br />
Fix<y>? yes</p>
<p>Free inodes count wrong (910912, counted=910924).<br />
Fix<y>? yes</p>
<p>/dev/xvda: ***** FILE SYSTEM WAS MODIFIED *****<br />
/dev/xvda: ***** REBOOT LINUX *****<br />
/dev/xvda: 121268/1032192 files (2.6% non-contiguous), 1605596/4128768 blocks<br />
feuvan@wonderland:~$ sudo reboot</p>
<p>Broadcast message from feuvan@wonderland<br />
	(/dev/pts/0) at 3:58 ...</p>
<p>The system is going down for reboot NOW!<br />
</code></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F01%2F10069-recovered-from-disk-io-error.html&amp;title=Recovered+from+disk+io+error" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F01%2F10069-recovered-from-disk-io-error.html&amp;title=Recovered+from+disk+io+error" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F01%2F10069-recovered-from-disk-io-error.html&amp;title=Recovered+from+disk+io+error" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F01%2F10069-recovered-from-disk-io-error.html&amp;headline=Recovered+from+disk+io+error" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Recovered+from+disk+io+error&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F01%2F10069-recovered-from-disk-io-error.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Recovered+from+disk+io+error&amp;u=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F01%2F10069-recovered-from-disk-io-error.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Recovered+from+disk+io+error&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F01%2F10069-recovered-from-disk-io-error.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Recovered+from+disk+io+error&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F01%2F10069-recovered-from-disk-io-error.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Recovered+from+disk+io+error&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F01%2F10069-recovered-from-disk-io-error.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F01%2F10069-recovered-from-disk-io-error.html&amp;title=Recovered+from+disk+io+error&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F01%2F10069-recovered-from-disk-io-error.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F01%2F10069-recovered-from-disk-io-error.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F11%2F01%2F10069-recovered-from-disk-io-error.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.feuvan.net/2010/11/01/10069-recovered-from-disk-io-error.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install IE9 preview 4 on server SKU</title>
		<link>http://blog.feuvan.net/2010/08/05/10057-install-ie9-preview-4-on-server-sku.html</link>
		<comments>http://blog.feuvan.net/2010/08/05/10057-install-ie9-preview-4-on-server-sku.html#comments</comments>
		<pubDate>Fri, 06 Aug 2010 00:23:40 +0000</pubDate>
		<dc:creator>feuvan</dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[IE9]]></category>
		<category><![CDATA[MSI]]></category>
		<category><![CDATA[Orca]]></category>

		<guid isPermaLink="false">http://blog.feuvan.net/?p=10057</guid>
		<description><![CDATA[For users who are interested in HTML5/CSS3/SVG supported browser IE9, please refer to http://ie.microsoft.com/testdrive/. If you are blocked to install IE9 preview 4 on server 2008 or R2 (see error msg below), you can use Orca to modify the msi &#8230; <a href="http://blog.feuvan.net/2010/08/05/10057-install-ie9-preview-4-on-server-sku.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For users who are interested in HTML5/CSS3/SVG supported browser IE9, please refer to <a href="http://ie.microsoft.com/testdrive/">http://ie.microsoft.com/testdrive/</a>.</p>
<p>If you are blocked to install IE9 preview 4 on server 2008 or R2 (see error msg below), you can use Orca to modify the msi package.</p>
<div id="attachment_10058" class="wp-caption alignnone" style="width: 386px"><a href="http://blog.feuvan.net/wp-content/uploads/2010/08/ie9pre4onServerSKU.png"><img class="size-full wp-image-10058" title="IE9 Preview 4 install blocked on server SKU" src="http://blog.feuvan.net/wp-content/uploads/2010/08/ie9pre4onServerSKU.png" alt="IE9 Preview 4 install blocked on server SKU" width="376" height="178" /></a><p class="wp-caption-text">IE9 Preview 4 install blocked on server SKU</p></div>
<p>You <strong>may</strong> find Orca.msi on your hard disk &#8220;C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\&#8221;.<br />
Or download it, refer to <a href="http://support.microsoft.com/kb/255905/EN-US">KB255905</a>.</p>
<p>Once Orca is installed, follow the steps to modify the MSI to allow installation on server SKU:</p>
<ol>
<li>Use Orca to open iepreview.msi, Ctrl-F to search string &#8220;iepreview_no_server&#8221;, you will find it in table &#8220;CustomAction&#8221; and &#8220;InstallExecuteSequence&#8221;.</li>
<li>Right click on the action and choose &#8220;Drop Row&#8221; to delete the row in &#8220;InstallExecuteSequence&#8221;.</li>
<li>Save the MSI.</li>
<li>Double click to install.</li>
</ol>
<div id="attachment_10064" class="wp-caption alignnone" style="width: 650px"><a href="http://blog.feuvan.net/wp-content/uploads/2010/08/ie9pre4Orca.png"><img src="http://blog.feuvan.net/wp-content/uploads/2010/08/ie9pre4Orca-1024x725.png" alt="Find iepreview_no_server in Orca" title="ie9pre4Orca" width="640" height="453" class="size-large wp-image-10064" /></a><p class="wp-caption-text">Find iepreview_no_server in Orca</p></div>
<p>If you would like to know how to find the action &#8220;iepreview_no_server&#8221; to be deleted, you can try install the original MSI in command line:</p>
<blockquote><p>msiexec /i iepreview.msi /l*vx ie9p4.log</p></blockquote>
<p> and analyze the log by yourself. Notice where error occurs.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F08%2F05%2F10057-install-ie9-preview-4-on-server-sku.html&amp;title=Install+IE9+preview+4+on+server+SKU" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F08%2F05%2F10057-install-ie9-preview-4-on-server-sku.html&amp;title=Install+IE9+preview+4+on+server+SKU" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F08%2F05%2F10057-install-ie9-preview-4-on-server-sku.html&amp;title=Install+IE9+preview+4+on+server+SKU" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.feuvan.net%2F2010%2F08%2F05%2F10057-install-ie9-preview-4-on-server-sku.html&amp;headline=Install+IE9+preview+4+on+server+SKU" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Install+IE9+preview+4+on+server+SKU&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F08%2F05%2F10057-install-ie9-preview-4-on-server-sku.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Install+IE9+preview+4+on+server+SKU&amp;u=http%3A%2F%2Fblog.feuvan.net%2F2010%2F08%2F05%2F10057-install-ie9-preview-4-on-server-sku.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Install+IE9+preview+4+on+server+SKU&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F08%2F05%2F10057-install-ie9-preview-4-on-server-sku.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Install+IE9+preview+4+on+server+SKU&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F08%2F05%2F10057-install-ie9-preview-4-on-server-sku.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Install+IE9+preview+4+on+server+SKU&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F08%2F05%2F10057-install-ie9-preview-4-on-server-sku.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F08%2F05%2F10057-install-ie9-preview-4-on-server-sku.html&amp;title=Install+IE9+preview+4+on+server+SKU&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.feuvan.net%2F2010%2F08%2F05%2F10057-install-ie9-preview-4-on-server-sku.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.feuvan.net%2F2010%2F08%2F05%2F10057-install-ie9-preview-4-on-server-sku.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F08%2F05%2F10057-install-ie9-preview-4-on-server-sku.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.feuvan.net/2010/08/05/10057-install-ie9-preview-4-on-server-sku.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New desktop computer</title>
		<link>http://blog.feuvan.net/2010/06/30/299-new-desktop-computer.html</link>
		<comments>http://blog.feuvan.net/2010/06/30/299-new-desktop-computer.html#comments</comments>
		<pubDate>Wed, 30 Jun 2010 23:19:41 +0000</pubDate>
		<dc:creator>feuvan</dc:creator>
				<category><![CDATA[Default]]></category>

		<guid isPermaLink="false">http://blog.feuvan.net/?p=299</guid>
		<description><![CDATA[i5-750 + OCZ3G1333LV4G * 2 + MSI P55-CD53 + EVGA GTX465 + WD20EARS 2TB + Antec EA650 + Sony AD-7240S-0B in Rosewill CHALLENGER Black Gaming ATX Mid Tower with Microsoft Natural Ergonomic Desktop 7000 from newegg. Microsoft desktop from company &#8230; <a href="http://blog.feuvan.net/2010/06/30/299-new-desktop-computer.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>i5-750 + OCZ3G1333LV4G * 2 + MSI P55-CD53 +<br />
EVGA GTX465 + WD20EARS 2TB + Antec EA650 +<br />
Sony AD-7240S-0B<br />
in<br />
Rosewill CHALLENGER Black Gaming ATX Mid Tower<br />
with Microsoft Natural Ergonomic Desktop 7000</p>
<p>from newegg.</p>
<p>Microsoft desktop from company store.</p>
<p>Dell U2410 will arrive on Friday.</p>
<p>The new desktop computer is the 3rd desktop in my life. It will be used for SharePoint Server farm, home storage server and also WOW game box.</p>
<p><a href="http://blog.feuvan.net/wp-content/uploads/2010/06/part-of-new-desktop.jpg"><img class="alignnone size-medium wp-image-300" title="part of new desktop" src="http://blog.feuvan.net/wp-content/uploads/2010/06/part-of-new-desktop-300x225.jpg" alt="" width="600" height="450" /></a></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F30%2F299-new-desktop-computer.html&amp;title=New+desktop+computer" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F30%2F299-new-desktop-computer.html&amp;title=New+desktop+computer" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F30%2F299-new-desktop-computer.html&amp;title=New+desktop+computer" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F30%2F299-new-desktop-computer.html&amp;headline=New+desktop+computer" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=New+desktop+computer&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F30%2F299-new-desktop-computer.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=New+desktop+computer&amp;u=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F30%2F299-new-desktop-computer.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=New+desktop+computer&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F30%2F299-new-desktop-computer.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=New+desktop+computer&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F30%2F299-new-desktop-computer.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=New+desktop+computer&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F30%2F299-new-desktop-computer.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F30%2F299-new-desktop-computer.html&amp;title=New+desktop+computer&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F30%2F299-new-desktop-computer.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F30%2F299-new-desktop-computer.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F30%2F299-new-desktop-computer.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.feuvan.net/2010/06/30/299-new-desktop-computer.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>RadioFan &#8211; Free Music For .NET</title>
		<link>http://blog.feuvan.net/2010/06/27/293-radiofan-free-music-for-net.html</link>
		<comments>http://blog.feuvan.net/2010/06/27/293-radiofan-free-music-for-net.html#comments</comments>
		<pubDate>Sun, 27 Jun 2010 08:50:58 +0000</pubDate>
		<dc:creator>feuvan</dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[douban.fm]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[RadioFan]]></category>

		<guid isPermaLink="false">http://blog.feuvan.net/?p=293</guid>
		<description><![CDATA[A .NET copy-cat of FanRadio which is Mac only. RadioFan can only play douban.fm music. * Click album picture to go to next one. * TaskBar Preview support. * Win 7 ONLY. lol. * No version check. There properly won&#8217;t &#8230; <a href="http://blog.feuvan.net/2010/06/27/293-radiofan-free-music-for-net.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A .NET copy-cat of <a title="FanRadio" href="http://blog.rollingcode.org/2010/06/20/fanradio-1/">FanRadio</a> which is Mac only. RadioFan can only play <a title="douban.fm" href="http://douban.fm" target="_blank">douban.fm</a> music.</p>
<p><img class="alignnone" title="RadioFan Demo" src="http://feuvan.net/tmp/RadioFanDemo.png" alt="RadioFan Demo" width="328" height="270" /></p>
<p>* Click album picture to go to next one.</p>
<p>* TaskBar Preview support.</p>
<p>* Win 7 ONLY. lol.</p>
<p>* No version check. There properly won&#8217;t be new version.</p>
<p><a href="http://feuvan.net/tmp/RadioFan.exe">Download here. (For Win7 or plus only, I know someone is using Win7 SP1 beta now.)</a></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F27%2F293-radiofan-free-music-for-net.html&amp;title=RadioFan+-+Free+Music+For+.NET" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F27%2F293-radiofan-free-music-for-net.html&amp;title=RadioFan+-+Free+Music+For+.NET" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F27%2F293-radiofan-free-music-for-net.html&amp;title=RadioFan+-+Free+Music+For+.NET" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F27%2F293-radiofan-free-music-for-net.html&amp;headline=RadioFan+-+Free+Music+For+.NET" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=RadioFan+-+Free+Music+For+.NET&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F27%2F293-radiofan-free-music-for-net.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=RadioFan+-+Free+Music+For+.NET&amp;u=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F27%2F293-radiofan-free-music-for-net.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=RadioFan+-+Free+Music+For+.NET&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F27%2F293-radiofan-free-music-for-net.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=RadioFan+-+Free+Music+For+.NET&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F27%2F293-radiofan-free-music-for-net.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=RadioFan+-+Free+Music+For+.NET&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F27%2F293-radiofan-free-music-for-net.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F27%2F293-radiofan-free-music-for-net.html&amp;title=RadioFan+-+Free+Music+For+.NET&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F27%2F293-radiofan-free-music-for-net.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F27%2F293-radiofan-free-music-for-net.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.feuvan.net%2F2010%2F06%2F27%2F293-radiofan-free-music-for-net.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.feuvan.net/2010/06/27/293-radiofan-free-music-for-net.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

