<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>I'm Knight</title>
	
	<link>http://imknight.net</link>
	<description>developer who likes Web2.0, Open Source and Mac</description>
	<lastBuildDate>Thu, 05 Nov 2009 15:55:27 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.0/</creativeCommons:license><image><link>http://feeds.feedburner.com/imknight</link><url>http://feeds.feedburner.com/~fc/imknight?bg=99CCFF&amp;amp;fg=444444&amp;amp;anim=1</url><title>I'M Knight</title></image><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/imknight" type="application/rss+xml" /><feedburner:feedFlare href="http://add.my.yahoo.com/rss?url=http%3A%2F%2Ffeeds.feedburner.com%2Fimknight" src="http://us.i1.yimg.com/us.yimg.com/i/us/my/addtomyyahoo4.gif">Subscribe with My Yahoo!</feedburner:feedFlare><feedburner:feedFlare href="http://www.newsgator.com/ngs/subscriber/subext.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2Fimknight" src="http://www.newsgator.com/images/ngsub1.gif">Subscribe with NewsGator</feedburner:feedFlare><feedburner:feedFlare href="http://feeds.my.aol.com/add.jsp?url=http%3A%2F%2Ffeeds.feedburner.com%2Fimknight" src="http://o.aolcdn.com/favorites.my.aol.com/webmaster/ffclient/webroot/locale/en-US/images/myAOLButtonSmall.gif">Subscribe with My AOL</feedburner:feedFlare><feedburner:feedFlare href="http://www.bloglines.com/sub/http://feeds.feedburner.com/imknight" src="http://www.bloglines.com/images/sub_modern11.gif">Subscribe with Bloglines</feedburner:feedFlare><feedburner:feedFlare href="http://www.netvibes.com/subscribe.php?url=http%3A%2F%2Ffeeds.feedburner.com%2Fimknight" src="http://www.netvibes.com/img/add2netvibes.gif">Subscribe with Netvibes</feedburner:feedFlare><feedburner:feedFlare href="http://fusion.google.com/add?feedurl=http%3A%2F%2Ffeeds.feedburner.com%2Fimknight" src="http://buttons.googlesyndication.com/fusion/add.gif">Subscribe with Google</feedburner:feedFlare><feedburner:feedFlare href="http://www.pageflakes.com/subscribe.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2Fimknight" src="http://www.pageflakes.com/ImageFile.ashx?instanceId=Static_4&amp;fileName=ATP_blu_91x17.gif">Subscribe with Pageflakes</feedburner:feedFlare><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Fix missing favicon on IE7</title>
		<link>http://feedproxy.google.com/~r/imknight/~3/uI-S4oUuGf8/</link>
		<comments>http://imknight.net/2009/11/05/fix-missing-favicon-ie7/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 15:55:27 +0000</pubDate>
		<dc:creator>Knight</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[favicon]]></category>
		<category><![CDATA[ie7]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://imknight.net/?p=1955</guid>
		<description><![CDATA[I just fix a missing favicon problem in IE7 for my work few day ago, i would like to share how i fixed it after trying a few different solution. so the original code that i have on the site is
&#60;link rel="SHORTCUT ICON"  href="/favicon.ico" /&#62;
since i using firefox as my major development browser and [...]]]></description>
			<content:encoded><![CDATA[<p>I just fix a missing <a href="http://en.wikipedia.org/wiki/Favicon" target="_blank">favicon</a> problem in IE7 for my work few day ago, i would like to share how i fixed it after trying a few different solution. so the original code that i have on the site is</p>
<p><code>&lt;link rel="SHORTCUT ICON"  href="/favicon.ico" /&gt;</code></p>
<p>since i using firefox as my major development browser and this code display the favicon perfectly ok on firefox , i thought this is the correct way to using it ( ya i know by right i should check this againts  cross browser )  until the users file a bug on this , the favicon is not showing on IE 7.</p>
<p>after some research on the web and doing some testing on the site , finally i found the solution , there are 2 thing i have miss out</p>
<ul>
<li>IE7 have a bug to recognize favicon on relative path, that why the path for the icon must be aboslute path , which mean the ico image file with full domain.</li>
<li>there is a need to declare the <a href="http://en.wikipedia.org/wiki/ICO_%28file_format%29" target="_blank">mime type for favicon</a> , which is the  <code>type="image/x-icon".</code></li>
</ul>
<p><code>&lt;link rel="shortcut icon" href="http://domain/favicon.ico" type="image/x-icon" /&gt;</code></p>
<p>after this you might still not seeing the favicon appear on your IE , you need to clear your cache first and reload the site, the first time be slightly slower but it should be display the favicon after a while. Below is the image what favicon is , in case some of the reader don&#8217;t know.</p>
<p><a class="thickbox" href="http://imknight.net/images/websites/favicon.png"><img class="ngg-singlepic ngg-none" src="http://imknight.net/images/websites/thumbs/thumbs_favicon.png" alt="Fix missing favicon on IE7"  title="Fix missing favicon on IE7 Image" /></a></p>
<img src="http://imknight.net/?ak_action=api_record_view&id=1955&type=feed" alt="Fix missing favicon on IE7"  title="Fix missing favicon on IE7 Image" />
	Tags: <a href="http://imknight.net/tag/browser/" title="browser" rel="tag nofollow">browser</a>, <a href="http://imknight.net/tag/favicon/" title="favicon" rel="tag nofollow">favicon</a>, <a href="http://imknight.net/tag/ie7/" title="ie7" rel="tag nofollow">ie7</a>, <a href="http://imknight.net/tag/tips/" title="Tips" rel="tag nofollow">Tips</a><br />

	<h4><b>Related Post</b></h4><br/>
	<ul class="st-related-posts">
	<li><a href="http://imknight.net/2009/07/16/1-item-remaining-bug-for-addthis-user/" title="1 item remaining bug for addthis user (Thu 16th-Jul-2009)">1 item remaining bug for addthis user</a></li>
	<li><a href="http://imknight.net/2009/06/16/opera-unite-strike-back-for-opera/" title="Opera Unite strike back for opera (Tue 16th-Jun-2009)">Opera Unite strike back for opera</a></li>
	<li><a href="http://imknight.net/2009/06/03/trying-out-adobe-browserlab/" title="Trying out Adobe Browserlab (Wed 3rd-Jun-2009)">Trying out Adobe Browserlab</a></li>
	<li><a href="http://imknight.net/2009/05/12/display-user-count-from-delicious/" title="Display user count from delicious (Tue 12th-May-2009)">Display user count from delicious</a></li>
	<li><a href="http://imknight.net/2008/09/17/google-chrome-crossover-mac/" title="Google Chrome Crossover Mac (Wed 17th-Sep-2008)">Google Chrome Crossover Mac</a></li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/imknight?a=uI-S4oUuGf8:7nD2H0yUnWo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/imknight?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=uI-S4oUuGf8:7nD2H0yUnWo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/imknight?i=uI-S4oUuGf8:7nD2H0yUnWo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=uI-S4oUuGf8:7nD2H0yUnWo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/imknight?i=uI-S4oUuGf8:7nD2H0yUnWo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=uI-S4oUuGf8:7nD2H0yUnWo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/imknight?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/imknight/~4/uI-S4oUuGf8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imknight.net/2009/11/05/fix-missing-favicon-ie7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://imknight.net/2009/11/05/fix-missing-favicon-ie7/</feedburner:origLink></item>
		<item>
		<title>Remember The Milk leave beta</title>
		<link>http://feedproxy.google.com/~r/imknight/~3/SekukZ3ha7Y/</link>
		<comments>http://imknight.net/2009/11/04/remember-the-milk-leave-beta/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 13:50:35 +0000</pubDate>
		<dc:creator>Knight</dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[rememberthemilk]]></category>
		<category><![CDATA[rememberthemilkpro]]></category>
		<category><![CDATA[rtm]]></category>
		<category><![CDATA[rtmpro]]></category>

		<guid isPermaLink="false">http://imknight.net/?p=1947</guid>
		<description><![CDATA[It&#8217;s great to see another web2.0 service getting mature and finally step out from the &#8220;beta&#8221; branding, although now day the &#8220;beta&#8221; meaning is totally different. After four Remember The Milk finally remove the beta words from their logo, i thought they remove it already when they launch the pro account.
I been using Remember The [...]]]></description>
			<content:encoded><![CDATA[<p><img class="ngg-singlepic ngg-none alignleft" src="http://imknight.net/images/web20/rtm_nobeta.png" alt="Remember The Milk leave beta" width="188" height="83" title="Remember The Milk leave beta Image" />It&#8217;s great to see another web2.0 service getting mature and finally step out from the &#8220;beta&#8221; branding, although now day the &#8220;beta&#8221; meaning is totally different. After four Remember The Milk finally remove the beta words from their logo, i thought they remove it already when they launch the pro account.</p>
<p>I been using Remember The Milk on and off for the past 4 years, i did subscribe the pro account for 1 year before but cancel it, i been trying a lot of replacement service , yet i still come back to RTM , i wrote <a href="http://imknight.net/tag/rememberthemilk/" target="_blank"> a number of post on RTM</a> before on this blog and most likely once i change my mobile phone from windows mobile to either iPhone or Android , i will be subscribe back to RTM, it seem like running on this 2 platform really help RTM gaining more users .</p>
<p><a class="thickbox" href="http://imknight.net/images/web20/rtm_android.jpg"><img class="ngg-singlepic ngg-none alignleft" style="margin-left: 30px; margin-right: 30px;" src="http://imknight.net/images/web20/thumbs/thumbs_rtm_android.jpg" alt="Remember The Milk leave beta" width="133" height="270" title="Remember The Milk leave beta Image" /></a> <a class="thickbox" href="http://imknight.net/images/web20/rtm_iphone.jpg"> <img class="ngg-singlepic ngg-none alignleft" style="margin-left: 30px; margin-right: 30px;" src="http://imknight.net/images/web20/thumbs/thumbs_rtm_iphone.jpg" alt="Remember The Milk leave beta" width="138" height="300" title="Remember The Milk leave beta Image" /></a></p>
<img src="http://imknight.net/?ak_action=api_record_view&id=1947&type=feed" alt="Remember The Milk leave beta"  title="Remember The Milk leave beta Image" />
	Tags: <a href="http://imknight.net/tag/beta/" title="beta" rel="tag nofollow">beta</a>, <a href="http://imknight.net/tag/rememberthemilk/" title="rememberthemilk" rel="tag nofollow">rememberthemilk</a>, <a href="http://imknight.net/tag/rememberthemilkpro/" title="rememberthemilkpro" rel="tag nofollow">rememberthemilkpro</a>, <a href="http://imknight.net/tag/rtm/" title="rtm" rel="tag nofollow">rtm</a>, <a href="http://imknight.net/tag/rtmpro/" title="rtmpro" rel="tag nofollow">rtmpro</a><br />

	<h4><b>Related Post</b></h4><br/>
	<ul class="st-related-posts">
	<li><a href="http://imknight.net/2009/05/04/goodbye-remember-the-milk-hello-the-hit-list/" title="Goodbye Remember The Milk , Hello The Hit List (Mon 4th-May-2009)">Goodbye Remember The Milk , Hello The Hit List</a></li>
	<li><a href="http://imknight.net/2008/09/22/otherinbox-beta-invite/" title="Otherinbox beta invite ! (Mon 22nd-Sep-2008)">Otherinbox beta invite !</a></li>
	<li><a href="http://imknight.net/2008/09/18/google-gears-for-safari-is-not-enough/" title="Google Gears For Safari is not enough (Thu 18th-Sep-2008)">Google Gears For Safari is not enough</a></li>
	<li><a href="http://imknight.net/2008/05/31/me-n-remember-the-milk/" title="Remember The Milk and Me (Sat 31st-May-2008)">Remember The Milk and Me</a></li>
	<li><a href="http://imknight.net/2008/05/28/orgoo-invite-kickstart/" title="Orgoo Invite kickstart (Wed 28th-May-2008)">Orgoo Invite kickstart</a></li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/imknight?a=SekukZ3ha7Y:fskIj6Jo_Qg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/imknight?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=SekukZ3ha7Y:fskIj6Jo_Qg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/imknight?i=SekukZ3ha7Y:fskIj6Jo_Qg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=SekukZ3ha7Y:fskIj6Jo_Qg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/imknight?i=SekukZ3ha7Y:fskIj6Jo_Qg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=SekukZ3ha7Y:fskIj6Jo_Qg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/imknight?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/imknight/~4/SekukZ3ha7Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imknight.net/2009/11/04/remember-the-milk-leave-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://imknight.net/2009/11/04/remember-the-milk-leave-beta/</feedburner:origLink></item>
		<item>
		<title>Will Scamville affect the Facebook developer roadmap ?</title>
		<link>http://feedproxy.google.com/~r/imknight/~3/xEhRHb5bYs4/</link>
		<comments>http://imknight.net/2009/11/04/scamville-affect-facebook-developer-roadmap/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 16:10:59 +0000</pubDate>
		<dc:creator>Knight</dc:creator>
				<category><![CDATA[Social]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[facebook application]]></category>
		<category><![CDATA[social gaming]]></category>

		<guid isPermaLink="false">http://imknight.net/?p=1946</guid>
		<description><![CDATA[I been looking at social gaming topics for sometime , this topic getting my attention immediately this morning and i actually link this to the Facebook roadmap that just release few day ago. If you have no idea what is scamville , i will recommend you to read these scamville post on TechCrunch.

Scamville: The Social [...]]]></description>
			<content:encoded><![CDATA[<p>I been looking at social gaming topics for sometime , this topic getting my attention immediately this morning and i actually link this to the Facebook roadmap that just release few day ago. If you have no idea what is scamville , i will recommend you to read these scamville post on <a href="http://www.techcrunch.com" target="_blank">TechCrunch</a>.</p>
<ul>
<li><a href="http://www.techcrunch.com/2009/10/31/scamville-the-social-gaming-ecosystem-of-hell/" target="_blank">Scamville: The Social Gaming Ecosystem Of Hell</a></li>
<li><a href="http://www.techcrunch.com/2009/11/01/scamville-hotornot-plentyoffish-facebook-myspace/">Two Companies That Said No To Social Media Scams</a></li>
<li><a href="http://www.techcrunch.com/2009/11/01/how-to-spam-facebook-like-a-pro-an-insiders-confession/">How To Spam Facebook Like A Pro: An Insider’s Confession</a></li>
<li><a href="http://www.techcrunch.com/2009/11/02/scamville-zynga-says-13-of-revenue-comes-from-lead-gen-and-other-offers/">Scamville: Zynga Says 1/3 Of Revenue Comes From Lead Gen And Other Offers</a></li>
</ul>
<div class="wp-caption alignleft" style="width: 210px"><img class="ngg-singlepic ngg-none  " src="http://imknight.net/images/social/scamville.jpg" alt="Will Scamville affect the Facebook developer roadmap ?" width="200" height="200" title="Will Scamville affect the Facebook developer roadmap ? Image" /><p class="wp-caption-text">(Credit: techcrunch) </p></div>
<p>This answer one of the question that i been asking my friends which playing lots of Facebook game, will you pay anything for these Facebook game ? almost all my friends give me a big &#8220;NO&#8221; (although there are one female friend that actually want to pay to buy a cow in country story) , this make me wonder if there are not many user willing to pay, how come some of these company actually earn $250 million a year ?</p>
<p>after reading through all the scamville info, now i understand how some of these social gaming company earning money and this is quite disturbing. If you still remember Facebook recently release <a href="http://wiki.developers.facebook.com/index.php/Developer_Roadmap" target="_blank">Facebook developer roadmap</a> , one of the major changes is allow application developer to gain permission for accessing user&#8217;s email address, which is another primary source of scam/spam. I believe this scamville issue most likely will be generate a lot of discussions and i just wonder will Facebook actually delay this email permission changes or will Facebook actually put in more control on this?</p>
<img src="http://imknight.net/?ak_action=api_record_view&id=1946&type=feed" alt="Will Scamville affect the Facebook developer roadmap ?"  title="Will Scamville affect the Facebook developer roadmap ? Image" />
	Tags: <a href="http://imknight.net/tag/facebook/" title="facebook" rel="tag nofollow">facebook</a>, <a href="http://imknight.net/tag/facebook-application/" title="facebook application" rel="tag nofollow">facebook application</a>, <a href="http://imknight.net/tag/social/" title="Social" rel="tag nofollow">Social</a>, <a href="http://imknight.net/tag/social-gaming/" title="social gaming" rel="tag nofollow">social gaming</a><br />

	<h4><b>Related Post</b></h4><br/>
	<ul class="st-related-posts">
	<li><a href="http://imknight.net/2009/10/27/5-tips-survive-new-facebook-news-feed/" title="5 tips to survive new facebook news feed (Tue 27th-Oct-2009)">5 tips to survive new facebook news feed</a></li>
	<li><a href="http://imknight.net/2009/09/12/facebook-lite-is-facebook-in-twitter-style-interface/" title="Facebook lite is facebook in twitter style interface (Sat 12th-Sep-2009)">Facebook lite is facebook in twitter style interface</a></li>
	<li><a href="http://imknight.net/2009/07/18/first-try-facebook-connect-for-iphone/" title="First Try facebook connect for iPhone (Sat 18th-Jul-2009)">First Try facebook connect for iPhone</a></li>
	<li><a href="http://imknight.net/2009/06/14/facebook-username-landrush-today/" title="Facebook username landrush today (Sun 14th-Jun-2009)">Facebook username landrush today</a></li>
	<li><a href="http://imknight.net/2009/05/21/my-rant-on-facebook-application-about-page-update/" title="My rant on Facebook application about page update (Thu 21st-May-2009)">My rant on Facebook application about page update</a></li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/imknight?a=xEhRHb5bYs4:pSuCbw-zc-A:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/imknight?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=xEhRHb5bYs4:pSuCbw-zc-A:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/imknight?i=xEhRHb5bYs4:pSuCbw-zc-A:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=xEhRHb5bYs4:pSuCbw-zc-A:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/imknight?i=xEhRHb5bYs4:pSuCbw-zc-A:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=xEhRHb5bYs4:pSuCbw-zc-A:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/imknight?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/imknight/~4/xEhRHb5bYs4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imknight.net/2009/11/04/scamville-affect-facebook-developer-roadmap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://imknight.net/2009/11/04/scamville-affect-facebook-developer-roadmap/</feedburner:origLink></item>
		<item>
		<title>Delicious and Yahoo ID</title>
		<link>http://feedproxy.google.com/~r/imknight/~3/umjsGsUXqJQ/</link>
		<comments>http://imknight.net/2009/11/02/delicious-yahoo-id/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 13:42:43 +0000</pubDate>
		<dc:creator>Knight</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[del.icio.us]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://imknight.net/?p=1945</guid>
		<description><![CDATA[If you going to register a new account on delicious , my favourite social bookmarking service, you will realize that you need a yahoo account. After Yahoo accquired Delicious for few year , finally they start to merge the account with their own Yahoo ID , the last service that going through the similar path [...]]]></description>
			<content:encoded><![CDATA[<p>If you going to register a new account on <a href="http://www.delicious.com/" target="_blank">delicious</a> , my favourite social bookmarking service, you will realize that you need a yahoo account. After Yahoo accquired Delicious for few year , finally they start to merge the account with their own Yahoo ID , the last service that going through the similar path will be flickr.</p>
<p><img class="ngg-singlepic ngg-none" src="http://imknight.net/images/websites/delicious-merge-with-yahoo-login.jpg" alt="Delicious and Yahoo ID"  title="Delicious and Yahoo ID Image" /></p>
<p>I m not a Yahoo Fan, this might be the main reason i hate to see this merge, my current yahoo id is use for YIM ( company using this as official communication tools ) and for my flickr account only, both delicious and flickr founder leaving Yahoo make me feel even more disappoint. I still remember during the period where Flickr account merging with Yahoo account,lots of issue happen and there are complaints everywhere, there are even user refuse to merge and leave the service. I m not sure after this few year, the same kind of merging will be causing any issue or not , but if can i really prefer to have stand alone account for both service, in stead of having a yahoo account.</p>
<p>Maybe i should consider <a href="http://pinboard.in/" target="_blank">pinboard</a> ?</p>
<img src="http://imknight.net/?ak_action=api_record_view&id=1945&type=feed" alt="Delicious and Yahoo ID"  title="Delicious and Yahoo ID Image" />
	Tags: <a href="http://imknight.net/tag/delicious/" title="del.icio.us" rel="tag nofollow">del.icio.us</a>, <a href="http://imknight.net/tag/flickr/" title="flickr" rel="tag nofollow">flickr</a>, <a href="http://imknight.net/tag/yahoo/" title="yahoo" rel="tag nofollow">yahoo</a><br />

	<h4><b>Related Post</b></h4><br/>
	<ul class="st-related-posts">
	<li><a href="http://imknight.net/2009/09/14/yahoo-meme-is-the-new-tumblr/" title="Yahoo meme is the new tumblr (Mon 14th-Sep-2009)">Yahoo meme is the new tumblr</a></li>
	<li><a href="http://imknight.net/2009/07/13/you-need-to-pay-if-you-want-to-try-pinboard/" title="You need to pay if you want to try Pinboard (Mon 13th-Jul-2009)">You need to pay if you want to try Pinboard</a></li>
	<li><a href="http://imknight.net/2009/07/01/post-your-flickr-photo-to-twitter-by-flickr2twitter/" title="Post your flickr photo to twitter by flickr2twitter (Wed 1st-Jul-2009)">Post your flickr photo to twitter by flickr2twitter</a></li>
	<li><a href="http://imknight.net/2009/06/07/you-got-yslow-i-have-page-speed/" title="You got Yslow , i have Page Speed (Sun 7th-Jun-2009)">You got Yslow , i have Page Speed</a></li>
	<li><a href="http://imknight.net/2009/06/01/5-reasons-why-i-didnt-renew-my-flickr-pro/" title="5 reasons why I didn&#8217;t renew my Flickr pro (Mon 1st-Jun-2009)">5 reasons why I didn&#8217;t renew my Flickr pro</a></li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/imknight?a=umjsGsUXqJQ:IodYxWy3Twg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/imknight?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=umjsGsUXqJQ:IodYxWy3Twg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/imknight?i=umjsGsUXqJQ:IodYxWy3Twg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=umjsGsUXqJQ:IodYxWy3Twg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/imknight?i=umjsGsUXqJQ:IodYxWy3Twg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=umjsGsUXqJQ:IodYxWy3Twg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/imknight?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/imknight/~4/umjsGsUXqJQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imknight.net/2009/11/02/delicious-yahoo-id/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://imknight.net/2009/11/02/delicious-yahoo-id/</feedburner:origLink></item>
		<item>
		<title>5 tips to survive new facebook news feed</title>
		<link>http://feedproxy.google.com/~r/imknight/~3/IM2C4FgauuM/</link>
		<comments>http://imknight.net/2009/10/27/5-tips-survive-new-facebook-news-feed/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 14:03:28 +0000</pubDate>
		<dc:creator>Knight</dc:creator>
				<category><![CDATA[Social]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[layout]]></category>

		<guid isPermaLink="false">http://imknight.net/?p=1943</guid>
		<description><![CDATA[Facebook launch the new news feed few day ago , it seem like  lots of user don&#8217;t really like it , which remind me the same situation when facebook redesign their home page. I m going to share some tips for users to survive from this latest design.
1. There are 2 type of feeds available [...]]]></description>
			<content:encoded><![CDATA[<p>Facebook launch the new <strong>news feed </strong>few day ago , it seem like  lots of user don&#8217;t really like it , which remind me the same situation when facebook redesign their home page. I m going to share some tips for users to survive from this latest design.</p>
<p>1. There are 2 type of feeds available on news feed page now , News Feed and Live Feed. News Feed  is showing you interesting things base on a combination of criteria , which mean the info that display to you is those mostly you will feel interested ( this feed by right should be display yesterday info only but it seem like currently display some of the latest info too , not sure is the feature broken or what ). Live Feed is displaying what happen right now, you are able to see all the activity real time. Choose which type of feed is more suitable your reading habit and stick on it.</p>
<p><img class="ngg-singlepic ngg-none alignright" src="http://imknight.net/images/websites/facebook-status-updates-filter.jpg" alt="5 tips to survive new facebook news feed" width="152" height="295" title="5 tips to survive new facebook news feed Image" /><br />
2. Moving the Status Updates filter to top , what this does is to show your friend status update as default and give you a very twitter style page. If there are enough feed for certain application , there will be a application filter too , which display you and your friend activity on the application.</p>
<p>3. Hide those quiz,games,spam news, advertisement that annoy you from news feed , you can either hide the person or the application, there are new feature added which allow you to hide the parent application too , which is very good to block those custom quiz.</p>
<p><a class="thickbox" href="http://imknight.net/images/websites/hide-facebook-apps.jpg"><img class="ngg-singlepic ngg-none" src="http://imknight.net/images/websites/thumbs/thumbs_hide-facebook-apps.jpg" alt="5 tips to survive new facebook news feed"  title="5 tips to survive new facebook news feed Image" /></a></p>
<p>4. configure the Live Feed Setting ( i wonder why it still call news feed settings ) , this allow you to show more news feed from some of the friend and hide the person from your live feed, another important setting for those facebook user that have a lot of friends , is to control how many friends&#8217;s feed should be showing.</p>
<p><a class="thickbox" href="http://imknight.net/images/websites/facebook-news-feed-setting.jpg"><img class="ngg-singlepic ngg-none" src="http://imknight.net/images/websites/thumbs/thumbs_facebook-news-feed-setting.jpg" alt="5 tips to survive new facebook news feed"  title="5 tips to survive new facebook news feed Image" /></a></p>
<p><a class="thickbox" href="http://imknight.net/images/websites/news-feed-and-wall-privacy.jpg"><img class="ngg-singlepic ngg-none alignright" src="http://imknight.net/images/websites/thumbs/thumbs_news-feed-and-wall-privacy.jpg" alt="5 tips to survive new facebook news feed" width="245" height="300" title="5 tips to survive new facebook news feed Image" /></a></p>
<p>5. the last complaint will be please remove who added who as friend message from news feed, you can&#8217;t really control your friend to hide this , but at least you can start from your own , hide your own adding friend activity from your friend on <a href="http://www.facebook.com/privacy/?view=feeds" target="_blank">privacy setting</a>.</p>
<p>If these 5 tips still can&#8217;t help you to survive from Facebook latest news feed , you might join the <a href="http://www.facebook.com/group.php?gid=143958055205" target="_blank">We Hate The New Facebook Design</a> group for release your  anger on the new design.</p>
<img src="http://imknight.net/?ak_action=api_record_view&id=1943&type=feed" alt="5 tips to survive new facebook news feed"  title="5 tips to survive new facebook news feed Image" />
	Tags: <a href="http://imknight.net/tag/facebook/" title="facebook" rel="tag nofollow">facebook</a>, <a href="http://imknight.net/tag/layout/" title="layout" rel="tag nofollow">layout</a><br />

	<h4><b>Related Post</b></h4><br/>
	<ul class="st-related-posts">
	<li><a href="http://imknight.net/2009/11/04/scamville-affect-facebook-developer-roadmap/" title="Will Scamville affect the Facebook developer roadmap ? (Wed 4th-Nov-2009)">Will Scamville affect the Facebook developer roadmap ?</a></li>
	<li><a href="http://imknight.net/2009/09/12/facebook-lite-is-facebook-in-twitter-style-interface/" title="Facebook lite is facebook in twitter style interface (Sat 12th-Sep-2009)">Facebook lite is facebook in twitter style interface</a></li>
	<li><a href="http://imknight.net/2009/07/18/first-try-facebook-connect-for-iphone/" title="First Try facebook connect for iPhone (Sat 18th-Jul-2009)">First Try facebook connect for iPhone</a></li>
	<li><a href="http://imknight.net/2009/06/14/facebook-username-landrush-today/" title="Facebook username landrush today (Sun 14th-Jun-2009)">Facebook username landrush today</a></li>
	<li><a href="http://imknight.net/2009/05/21/my-rant-on-facebook-application-about-page-update/" title="My rant on Facebook application about page update (Thu 21st-May-2009)">My rant on Facebook application about page update</a></li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/imknight?a=IM2C4FgauuM:GWe1TlRNywc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/imknight?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=IM2C4FgauuM:GWe1TlRNywc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/imknight?i=IM2C4FgauuM:GWe1TlRNywc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=IM2C4FgauuM:GWe1TlRNywc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/imknight?i=IM2C4FgauuM:GWe1TlRNywc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=IM2C4FgauuM:GWe1TlRNywc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/imknight?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/imknight/~4/IM2C4FgauuM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imknight.net/2009/10/27/5-tips-survive-new-facebook-news-feed/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://imknight.net/2009/10/27/5-tips-survive-new-facebook-news-feed/</feedburner:origLink></item>
		<item>
		<title>Using Balsamiq Mockups for quick wireframe</title>
		<link>http://feedproxy.google.com/~r/imknight/~3/mqHcRum0uYA/</link>
		<comments>http://imknight.net/2009/10/26/balsamiq-mockups-quick-wireframe/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 13:29:43 +0000</pubDate>
		<dc:creator>Knight</dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[mockup]]></category>
		<category><![CDATA[web2.0]]></category>
		<category><![CDATA[wireframe]]></category>

		<guid isPermaLink="false">http://imknight.net/?p=1942</guid>
		<description><![CDATA[One of the skill i been trying to pick up is wireframe a UI. That&#8217;s the reason i been keeping quite a few wireframe tools in my delicious bookmarks. I have just give my first try on Balsamiq Mockups and like it ,i believe it really help newbie to pick up wireframing skill easily.
If you [...]]]></description>
			<content:encoded><![CDATA[<p>One of the skill i been trying to pick up is wireframe a UI. That&#8217;s the reason i been keeping quite a few wireframe tools in my delicious bookmarks. I have just give my first try on <a href="http://www.balsamiq.com/products/mockups" target="_blank">Balsamiq Mockups</a> and like it ,i believe it really help newbie to pick up wireframing skill easily.</p>
<p>If you watch the <a href="http://www.youtube.com/watch?v=zLysy3IPfFI" target="_blank">intro video</a> before , you should know that it is very easy to use <a href="http://www.balsamiq.com/products/mockups" target="_blank">Balsamiq Mockups</a> to draft out a layout , you can even use the commands to select the UI you need and place it on you mockup really quick.I m using the desktop version which run on adobe air , which mean it can run on different OS platform , combine with the power of dropbox , i can mofidy my wireframe at any place.</p>
<p>Overall i really happy with <a href="http://www.balsamiq.com/products/mockups" target="_blank">Balsamiq Mockups</a> performance, the only things that i don&#8217;t really like is how the application handle grouping. Example if you suddenly need to ungroup one of the object within groups of object, you must ungroup all the objects, you can&#8217;t ungroup the object that you need to edit only. That&#8217;s my only complaint so far.</p>
<p>One of the important website that you can&#8217;t miss &#8211; <a href="http://mockupstogo.net/" target="_blank">Mockups To Go</a> , this blog collecting some of the mockups which done by <a href="http://www.balsamiq.com/products/mockups" target="_blank">Balsamiq Mockups</a> , some time there will be special created UI Library release too. If you have some $$ to spend , there are this tool &#8211; <a href="http://www.balsamiq.com/products/mockups" target="_blank"></a><a href="http://www.napkee.com/" target="_blank">Napkee</a> that export your  mockup to HTML/CSS/JS and Adobe Flex 3.<a href="http://www.balsamiq.com/products/mockups" target="_blank"></a></p>
<p>The below image is my quick mockup base on nettutsplus website.</p>
<p><a class="thickbox" href="http://imknight.net/images/web20/mockup.png"><img class="ngg-singlepic ngg-none" src="http://imknight.net/images/web20/thumbs/thumbs_mockup.png" alt="Using Balsamiq Mockups for quick wireframe"  title="Using Balsamiq Mockups for quick wireframe Image" /></a></p>
<img src="http://imknight.net/?ak_action=api_record_view&id=1942&type=feed" alt="Using Balsamiq Mockups for quick wireframe"  title="Using Balsamiq Mockups for quick wireframe Image" />
	Tags: <a href="http://imknight.net/tag/mockup/" title="mockup" rel="tag nofollow">mockup</a>, <a href="http://imknight.net/tag/web20/" title="web2.0" rel="tag nofollow">web2.0</a>, <a href="http://imknight.net/tag/wireframe/" title="wireframe" rel="tag nofollow">wireframe</a><br />

	<h4><b>Related Post</b></h4><br/>
	<ul class="st-related-posts">
	<li><a href="http://imknight.net/2009/06/04/the-recent-changes-of-tumblr/" title="The recent changes of Tumblr (Thu 4th-Jun-2009)">The recent changes of Tumblr</a></li>
	<li><a href="http://imknight.net/2009/05/20/webnotes-goes-pro/" title="WebNotes goes Pro (Wed 20th-May-2009)">WebNotes goes Pro</a></li>
	<li><a href="http://imknight.net/2009/04/27/annotate-the-web-webnotes/" title="Annotate the web &#8211; Webnotes (Mon 27th-Apr-2009)">Annotate the web &#8211; Webnotes</a></li>
	<li><a href="http://imknight.net/2009/01/01/summary-of-my-gadget-web-service-2008/" title="Summary of my gadget &#038; web service  2008 (Thu 1st-Jan-2009)">Summary of my gadget &#038; web service  2008</a></li>
	<li><a href="http://imknight.net/2008/10/09/what-happen-to-monkiri/" title="What happen to monkiri ? (Thu 9th-Oct-2008)">What happen to monkiri ?</a></li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/imknight?a=mqHcRum0uYA:SUsbKMd3pCo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/imknight?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=mqHcRum0uYA:SUsbKMd3pCo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/imknight?i=mqHcRum0uYA:SUsbKMd3pCo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=mqHcRum0uYA:SUsbKMd3pCo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/imknight?i=mqHcRum0uYA:SUsbKMd3pCo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=mqHcRum0uYA:SUsbKMd3pCo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/imknight?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/imknight/~4/mqHcRum0uYA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imknight.net/2009/10/26/balsamiq-mockups-quick-wireframe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://imknight.net/2009/10/26/balsamiq-mockups-quick-wireframe/</feedburner:origLink></item>
		<item>
		<title>Bantam Live is project management with social network</title>
		<link>http://feedproxy.google.com/~r/imknight/~3/M3moOQYiZuU/</link>
		<comments>http://imknight.net/2009/10/18/bantam-live-project-management-social-network/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 13:52:30 +0000</pubDate>
		<dc:creator>Knight</dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[bantam live]]></category>
		<category><![CDATA[contact management]]></category>
		<category><![CDATA[project management]]></category>
		<category><![CDATA[social netoworks]]></category>
		<category><![CDATA[task management]]></category>

		<guid isPermaLink="false">http://imknight.net/?p=1940</guid>
		<description><![CDATA[I found this gem when i cleaning out web applications on my beta list ,my first impression this looks like another social networking site like facebook but i m wrong, this is more like a project management web applications with networking feature with your colleague and client.
Bantam live is like create a smaller facebook for [...]]]></description>
			<content:encoded><![CDATA[<p><span>I found <a href="http://www.bantamlive.com/" target="_blank">this gem</a> when i cleaning out web applications on my beta list ,my first impression this looks like another social networking site like <span>facebook</span> but i m wrong, this is more like a project management web applications with networking feature with your colleague and client.</span></p>
<p><span><a href="http://www.bantamlive.com/" target="_blank">Bantam live</a> is like create a smaller <span>facebook</span> for you and your company colleague and management the project with activity stream, example you can upgrade your status so that your colleague know what you are doing ? ( imagine <span>Yammer</span> or Twitter ) then you can create event or task , all these info will be list on your activity stream and the person that you assign to. Other then these standard feature, Bantam live include CRM feature that can show which project your company working on related to which contact ( of course you can leave some comments on this contact, so that your colleague that handle this project know what to avoid ).</span></p>
<p><span>Personally i like this idea , the rest is really depends on how they marketing this product,base on compete&#8217;s data it seem like after the <a href="http://www.techcrunch.com/2009/07/10/bantam-live-the-ultimate-social-real-time-crm/" target="_blank">techcrunch&#8217;s post</a> , their traffic is going back to normal, we will see how they going to hit the sweet spot again.<br />
</span></p>
<p style="text-align: center;"><span><a class="thickbox" href="http://imknight.net/images/web20/bantam-live.jpg"><img class="ngg-singlepic ngg-none aligncenter" src="http://imknight.net/images/web20/thumbs/thumbs_bantam-live.jpg" alt="Bantam Live is project management with social network"  title="Bantam Live is project management with social network Image" /></a><br />
</span></p>
<img src="http://imknight.net/?ak_action=api_record_view&id=1940&type=feed" alt="Bantam Live is project management with social network"  title="Bantam Live is project management with social network Image" />
	Tags: <a href="http://imknight.net/tag/bantam-live/" title="bantam live" rel="tag nofollow">bantam live</a>, <a href="http://imknight.net/tag/contact-management/" title="contact management" rel="tag nofollow">contact management</a>, <a href="http://imknight.net/tag/project-management/" title="project management" rel="tag nofollow">project management</a>, <a href="http://imknight.net/tag/social-netoworks/" title="social netoworks" rel="tag nofollow">social netoworks</a>, <a href="http://imknight.net/tag/task-management/" title="task management" rel="tag nofollow">task management</a><br />

	<h4><b>Related Post</b></h4><br/>
	<ul class="st-related-posts">
	<li><a href="http://imknight.net/2009/03/05/social-media-first-step/" title="Social Media first step (Thu 5th-Mar-2009)">Social Media first step</a></li>
	<li><a href="http://imknight.net/2008/09/20/try-out-soocial-hassle-free-contacts/" title="Try out Soocial Hassle Free Contacts (Sat 20th-Sep-2008)">Try out Soocial Hassle Free Contacts</a></li>
	<li><a href="http://imknight.net/2007/04/08/gubb/" title="Gubb (Sun 8th-Apr-2007)">Gubb</a></li>
	<li><a href="http://imknight.net/2007/04/07/revisit-task-management/" title="Revisit Task Management (Sat 7th-Apr-2007)">Revisit Task Management</a></li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/imknight?a=M3moOQYiZuU:wENIPzb4Tks:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/imknight?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=M3moOQYiZuU:wENIPzb4Tks:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/imknight?i=M3moOQYiZuU:wENIPzb4Tks:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=M3moOQYiZuU:wENIPzb4Tks:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/imknight?i=M3moOQYiZuU:wENIPzb4Tks:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=M3moOQYiZuU:wENIPzb4Tks:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/imknight?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/imknight/~4/M3moOQYiZuU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imknight.net/2009/10/18/bantam-live-project-management-social-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://imknight.net/2009/10/18/bantam-live-project-management-social-network/</feedburner:origLink></item>
		<item>
		<title>Using evernote with Readability</title>
		<link>http://feedproxy.google.com/~r/imknight/~3/1OhXqEb3lKY/</link>
		<comments>http://imknight.net/2009/10/07/using-evernote-with-readability/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 15:36:55 +0000</pubDate>
		<dc:creator>Knight</dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[evernote]]></category>
		<category><![CDATA[readability]]></category>

		<guid isPermaLink="false">http://imknight.net/?p=1939</guid>
		<description><![CDATA[I been using evernote for quite some time and i m loving it , although i haven&#8217;t become the premium user but it play a big part on my digital life, which most likely going to turn me into paid user by end of this year. I m using evernote to keep my ideas, blogging [...]]]></description>
			<content:encoded><![CDATA[<p>I been using <a href="http://www.evernote.com" target="_blank">evernote</a> for quite some time and i m loving it , although i haven&#8217;t become the premium user but it play a big part on my digital life, which most likely going to turn me into paid user by end of this year. I m using evernote to keep my ideas, blogging topic and some tech article.</p>
<p>One of the major problem i have for evernote is to capture blog post ,when i read some nice blog post, i would like to use the web clip to keep the blogpost , but most of the time it will capture lots of useless info too , it is waste of bandwidth because there are upload limit monthly. So <a href="http://lab.arc90.com/experiments/readability/" target="_blank">Readbility</a> come in handy, it &#8220;<em>removing the clutter around what you reading</em>&#8221; and allow you to focus on content only.</p>
<p>I found <a href="http://forum.evernote.com/phpbb/viewtopic.php?f=39&amp;t=10450" target="_blank">a solution on evernote user forum</a> that combine the best of this 2 , what it does is change the evernote web clipper javascript and combine with Readbility javascript, when you press the web clipping , the website will be turn into Readbility mode and keep in your evernote account.</p>
<p><a class="thickbox" href="http://imknight.net/images/web20/evernote-readability.jpg"><img class="ngg-singlepic ngg-none" src="http://imknight.net/images/web20/thumbs/thumbs_evernote-readability.jpg" alt="Using evernote with Readability"  title="Using evernote with Readability Image" /></a></p>
<img src="http://imknight.net/?ak_action=api_record_view&id=1939&type=feed" alt="Using evernote with Readability"  title="Using evernote with Readability Image" />
	Tags: <a href="http://imknight.net/tag/evernote/" title="evernote" rel="tag nofollow">evernote</a>, <a href="http://imknight.net/tag/readability/" title="readability" rel="tag nofollow">readability</a><br />

	<h4><b>Related Post</b></h4><br/>
	<ul class="st-related-posts">
	<li><a href="http://imknight.net/2009/07/06/readability-for-better-reading-experience/" title="Readability for better reading experience (Mon 6th-Jul-2009)">Readability for better reading experience</a></li>
	<li><a href="http://imknight.net/2009/04/16/step-by-step-to-send-your-tweets-to-evernote/" title="Step by step to send your tweets to evernote (Thu 16th-Apr-2009)">Step by step to send your tweets to evernote</a></li>
	<li><a href="http://imknight.net/2009/03/03/5-things-that-evernote-iphone-apps-need-to-improve/" title="5 things that Evernote iPhone apps need to improve (Tue 3rd-Mar-2009)">5 things that Evernote iPhone apps need to improve</a></li>
	<li><a href="http://imknight.net/2009/02/25/spam-by-evernote-blogs-comment/" title="Spam by Evernote blog&#8217;s comment (Wed 25th-Feb-2009)">Spam by Evernote blog&#8217;s comment</a></li>
	<li><a href="http://imknight.net/2008/04/15/evernote-cross-platform-note-service/" title="Evernote &#8211; cross platform note service (Tue 15th-Apr-2008)">Evernote &#8211; cross platform note service</a></li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/imknight?a=1OhXqEb3lKY:lsOkgog8vuA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/imknight?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=1OhXqEb3lKY:lsOkgog8vuA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/imknight?i=1OhXqEb3lKY:lsOkgog8vuA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=1OhXqEb3lKY:lsOkgog8vuA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/imknight?i=1OhXqEb3lKY:lsOkgog8vuA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=1OhXqEb3lKY:lsOkgog8vuA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/imknight?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/imknight/~4/1OhXqEb3lKY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imknight.net/2009/10/07/using-evernote-with-readability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://imknight.net/2009/10/07/using-evernote-with-readability/</feedburner:origLink></item>
		<item>
		<title>Sorting your iphone apps by iTunes 9</title>
		<link>http://feedproxy.google.com/~r/imknight/~3/cF3r4mqMrS4/</link>
		<comments>http://imknight.net/2009/09/16/sorting-your-iphone-apps-by-itunes-9/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 15:02:53 +0000</pubDate>
		<dc:creator>Knight</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[app store]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[ipod touch]]></category>
		<category><![CDATA[itunes]]></category>

		<guid isPermaLink="false">http://imknight.net/?p=1936</guid>
		<description><![CDATA[Just in case you are not aware of , the latest iTunes 9 come with improved syncing feature which allow you to organize your application through different page in your iphone/ipod touch. Before this feature  release, you can only manually organize the application on each page, which mean if you need to move application [...]]]></description>
			<content:encoded><![CDATA[<p>Just in case you are not aware of , the latest iTunes 9 come with improved syncing feature which allow you to organize your application through different page in your iphone/ipod touch. Before this feature  release, you can only manually organize the application on each page, which mean if you need to move application from page 1 to page 4, you need to hold that applications until it movable and drag it across 3 pages.</p>
<p><a class="thickbox" href="http://imknight.net/images/mac/itunes-application-sort.jpg"><img class="ngg-singlepic ngg-none" src="http://imknight.net/images/mac/thumbs/thumbs_itunes-application-sort.jpg" alt="Sorting your iphone apps by iTunes 9"  title="Sorting your iphone apps by iTunes 9 Image" /></a></p>
<p>Now with this new application organize feature, everything is just drag and drop, as you can see on the screen shot, i have lots of application across different pages, i just need to drag the application that i would like to move and drop it on the page , which is very straight forward.Although i m quite happy with this new feature, but i think <a href="http://movementapp.com/" target="_blank">movement</a> is much more better in organize applications, watch the <a href="http://www.youtube.com/watch?v=KBmgrbSb7Ow" target="_blank">youtube demo video</a> and you will agree with me.</p>
<img src="http://imknight.net/?ak_action=api_record_view&id=1936&type=feed" alt="Sorting your iphone apps by iTunes 9"  title="Sorting your iphone apps by iTunes 9 Image" />
	Tags: <a href="http://imknight.net/tag/app-store/" title="app store" rel="tag nofollow">app store</a>, <a href="http://imknight.net/tag/ipod/" title="ipod" rel="tag nofollow">ipod</a>, <a href="http://imknight.net/tag/ipod-touch/" title="ipod touch" rel="tag nofollow">ipod touch</a>, <a href="http://imknight.net/tag/itunes/" title="itunes" rel="tag nofollow">itunes</a><br />

	<h4><b>Related Post</b></h4><br/>
	<ul class="st-related-posts">
	<li><a href="http://imknight.net/2009/07/21/world-of-warcraft-mobile-armory-app-store/" title="World of Warcraft Mobile Armory (Tue 21st-Jul-2009)">World of Warcraft Mobile Armory</a></li>
	<li><a href="http://imknight.net/2009/07/18/first-try-facebook-connect-for-iphone/" title="First Try facebook connect for iPhone (Sat 18th-Jul-2009)">First Try facebook connect for iPhone</a></li>
	<li><a href="http://imknight.net/2009/07/14/lots-of-sexy-apps-in-itunes-app-store/" title="Lots of sexy apps in iTunes App Store (Tue 14th-Jul-2009)">Lots of sexy apps in iTunes App Store</a></li>
	<li><a href="http://imknight.net/2009/06/23/instapaper-pro-promo/" title="Instapaper Pro Promo (Tue 23rd-Jun-2009)">Instapaper Pro Promo</a></li>
	<li><a href="http://imknight.net/2009/06/08/5-ipod-touch-games-with-interesting-lite-version/" title="5 iPod Touch Games with interesting lite version (Mon 8th-Jun-2009)">5 iPod Touch Games with interesting lite version</a></li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/imknight?a=cF3r4mqMrS4:6CdtWBQxwFk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/imknight?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=cF3r4mqMrS4:6CdtWBQxwFk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/imknight?i=cF3r4mqMrS4:6CdtWBQxwFk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=cF3r4mqMrS4:6CdtWBQxwFk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/imknight?i=cF3r4mqMrS4:6CdtWBQxwFk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=cF3r4mqMrS4:6CdtWBQxwFk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/imknight?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/imknight/~4/cF3r4mqMrS4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imknight.net/2009/09/16/sorting-your-iphone-apps-by-itunes-9/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://imknight.net/2009/09/16/sorting-your-iphone-apps-by-itunes-9/</feedburner:origLink></item>
		<item>
		<title>Yahoo meme is the new tumblr</title>
		<link>http://feedproxy.google.com/~r/imknight/~3/OWWKMs-6Iq8/</link>
		<comments>http://imknight.net/2009/09/14/yahoo-meme-is-the-new-tumblr/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 13:33:08 +0000</pubDate>
		<dc:creator>Knight</dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[blogshere]]></category>
		<category><![CDATA[micro blogging]]></category>
		<category><![CDATA[yahoo]]></category>
		<category><![CDATA[yahoo meme]]></category>

		<guid isPermaLink="false">http://imknight.net/?p=1935</guid>
		<description><![CDATA[Not long ago , Yahoo is launching a secret weapon call &#8220;Yahoo meme&#8221;  that targeting the micro blogging/statusphere , i believe this is more aimining on tumblr style of service, in stead of status base service like twitter. I manage to get the invite and beta testing the service, just want to share some of [...]]]></description>
			<content:encoded><![CDATA[<p>Not long ago , Yahoo is launching a secret weapon call &#8220;Yahoo meme&#8221;  that targeting the micro blogging/statusphere , i believe this is more aimining on tumblr style of service, in stead of status base service like twitter. I manage to get the invite and beta testing the service, just want to share some of my view.</p>
<p><a class="thickbox" href="http://imknight.net/images/web20/yahoo-meme-dashboard.jpg"><img class="ngg-singlepic ngg-none" src="http://imknight.net/images/web20/thumbs/thumbs_yahoo-meme-dashboard.jpg" alt="Yahoo meme is the new tumblr"  title="Yahoo meme is the new tumblr Image" /></a></p>
<p>As you can see the dashboard interface, you are allow to post 4 type of media , there are follow feature for social purpose and repost feature for reblogging, one of the important feature that tumblr is missing will be the comment feature. Yahoo meme weakness will be the permalink of post, currently the url strucuture is not really SEO friendly. There are no option for you to customize your meme currently, but  there are some very clean looking theme available for you to change.</p>
<p><a class="thickbox" href="http://imknight.net/images/web20/yahoo-meme.jpg"><img class="ngg-singlepic ngg-none" src="http://imknight.net/images/web20/thumbs/thumbs_yahoo-meme.jpg" alt="Yahoo meme is the new tumblr"  title="Yahoo meme is the new tumblr Image" /></a></p>
<p>That&#8217;s all for my short review, you can visit <a href="http://meme.yahoo.com/imknight" target="_blank">my yahoo meme</a> or leave your comment here to request a meme invite , i still have  6 more invite to send.</p>
<img src="http://imknight.net/?ak_action=api_record_view&id=1935&type=feed" alt="Yahoo meme is the new tumblr"  title="Yahoo meme is the new tumblr Image" />
	Tags: <a href="http://imknight.net/tag/blogshere/" title="blogshere" rel="tag nofollow">blogshere</a>, <a href="http://imknight.net/tag/micro-blogging/" title="micro blogging" rel="tag nofollow">micro blogging</a>, <a href="http://imknight.net/tag/yahoo/" title="yahoo" rel="tag nofollow">yahoo</a>, <a href="http://imknight.net/tag/yahoo-meme/" title="yahoo meme" rel="tag nofollow">yahoo meme</a><br />

	<h4><b>Related Post</b></h4><br/>
	<ul class="st-related-posts">
	<li><a href="http://imknight.net/2009/11/02/delicious-yahoo-id/" title="Delicious and Yahoo ID (Mon 2nd-Nov-2009)">Delicious and Yahoo ID</a></li>
	<li><a href="http://imknight.net/2009/06/07/you-got-yslow-i-have-page-speed/" title="You got Yslow , i have Page Speed (Sun 7th-Jun-2009)">You got Yslow , i have Page Speed</a></li>
	<li><a href="http://imknight.net/2008/10/09/yahoo-is-preferred-content-or-language/" title="Yahoo, is preferred content or language? (Thu 9th-Oct-2008)">Yahoo, is preferred content or language?</a></li>
	<li><a href="http://imknight.net/2008/09/30/twitter-with-ads/" title="Twitter with ads (Tue 30th-Sep-2008)">Twitter with ads</a></li>
	<li><a href="http://imknight.net/2008/09/24/plurk-analytics/" title="Plurk Analytics (Wed 24th-Sep-2008)">Plurk Analytics</a></li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/imknight?a=OWWKMs-6Iq8:DFORqkL8_MU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/imknight?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=OWWKMs-6Iq8:DFORqkL8_MU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/imknight?i=OWWKMs-6Iq8:DFORqkL8_MU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=OWWKMs-6Iq8:DFORqkL8_MU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/imknight?i=OWWKMs-6Iq8:DFORqkL8_MU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/imknight?a=OWWKMs-6Iq8:DFORqkL8_MU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/imknight?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/imknight/~4/OWWKMs-6Iq8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imknight.net/2009/09/14/yahoo-meme-is-the-new-tumblr/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://imknight.net/2009/09/14/yahoo-meme-is-the-new-tumblr/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 1.438 seconds. --><!-- Cached page generated by WP-Super-Cache on 2009-11-20 12:47:20 -->
