<?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>Kordon.me - Mark Kordon</title>
	<atom:link href="http://kordon.me/feed/" rel="self" type="application/rss+xml" />
	<link>http://kordon.me</link>
	<description>ASP.NET MVC, SQL Server, Visual Studio, jQuery, tips &#38; tricks</description>
	<lastBuildDate>Thu, 11 Feb 2010 10:36:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Setting up PayPal standard payments with IPN for Magento</title>
		<link>http://kordon.me/setting-up-paypal-standard-payments-with-ipn-for-magento/</link>
		<comments>http://kordon.me/setting-up-paypal-standard-payments-with-ipn-for-magento/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 16:33:18 +0000</pubDate>
		<dc:creator>Mark Kordon</dc:creator>
				<category><![CDATA[Web and social media]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[PayPal]]></category>
		<category><![CDATA[Renomedia]]></category>

		<guid isPermaLink="false">http://kordon.me/?p=126</guid>
		<description><![CDATA[On a project I&#8217;m doing with a good friend, Sebastian Kraaijenzank. We&#8217;re setting up a Magento Commerce shop. The shop was coming along quite nice and we started adding products. In Denmark, you have to get your webshop approved before starting accepting payments via credit cards. This was a problem for us. First of all, [...]]]></description>
			<content:encoded><![CDATA[<p>On a project I&#8217;m doing with a good friend, <a href="http://brandes.me/2010/02/den-gyldne-skillelinje/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/brandes.me/2010/02/den-gyldne-skillelinje/?referer=');">Sebastian Kraaijenzank</a>. We&#8217;re setting up a Magento Commerce shop. The shop was coming along quite nice and we started adding products. In Denmark, you have to get your webshop approved before starting accepting payments via credit cards. This was a problem for us. First of all, this process can take months, if you&#8217;re unlucky. We decided to start out with PayPal payments. Here&#8217;s how to get started.</p>
<p>Okay, we&#8217;re going to set up a couple of things to get started. Both in Magento admin panel and PayPal.</p>
<ol>
<li><a href="#step_1">Setting up Magento</a></li>
<li><a href="#step_2">Setting up PayPal</a></li>
<li><a href="#step_3">Known problems and fix</a></li>
</ol>
<p>Let&#8217;s get started!</p>
<h3 id="step_1">1. Setting up Magento</h3>
<p>First thing we gotta do is setup PayPal Standard.</p>
<p>Go to <em>System </em>-&gt; <em>Configuration </em>-&gt; <em>PayPal Accounts</em></p>
<p><strong>The field &#8220;Business Name&#8221;.</strong> The name you enter in this field is used when all the items in the Magento shopping cart are aggregated into a lump sum on the Paypal invoice.</p>
<p><strong>The field &#8220;Business Account&#8221;.</strong> Type in the e-mail. you use to sign in with, on your PayPal Business account.</p>
<p><em>Optional: Set the &#8220;Sandbox flag&#8221; to &#8220;True&#8221;, if you&#8217;re testing this <a href="http://sandbox.paypal.com" target="_blank" onclick="pageTracker._trackPageview('/outgoing/sandbox.paypal.com?referer=');">in sandbox mode</a>.</em></p>
<p>Next up, go to: <em>System </em>-&gt; <em>Configuration </em>–&gt;<em> Payment Methods</em> –&gt; <em>PayPal Standard</em></p>
<p>Start out by enabling the payment method; <strong>set &#8220;Enabled&#8221; to &#8220;Yes&#8221;.</strong></p>
<p><strong>Now if you want PayPal to capture the money</strong> when to order is placed, choose &#8220;Sale&#8221; for &#8220;Payment Action&#8221;. If you want to control when the money is actually captured, set it to &#8220;Authorization&#8221;. This will only validate the credit card and let you decide when the money will be captured. We choose this option, because you&#8217;re only allowed to capture the money when the order is sent by mail.<br />
<strong>Note:</strong> <em>you will need to log in to your PayPal account in order to actually capture the money. But Magento will automatically be notified.</em></p>
<p><strong>Select an option for &#8220;New order state&#8221;</strong>. It&#8217;s totally your call.</p>
<p><strong>The &#8220;Transaction Type&#8221;</strong>: select “Individual Item” to have all the items in the Magento shopping cart listed separately on the Paypal invoice, or “Aggregate Order” when you just want a lump sum for the whole order on the Paypal invoice.</p>
<p>That was about it for Magento. Let&#8217;s have a look at your PayPal account.</p>
<h3 id="step_2">2. Setting up PayPal</h3>
<p>First, we need to <strong>enable IPN (Instant Payment Notifications)</strong>. In order to do this, log in to your PayPal account and choose <em>My Account</em> -&gt; <em>Profile</em> -&gt;<em>Instant Payment Notification Preferences</em></p>
<p>Click the &#8220;Edit IPN Settings&#8221; button and put in this url in the field:</p>
<ul>
<li>http://www.your-magento-shop-url.com/paypal/standard/ipn/</li>
</ul>
<p>And of course, you need to enable the feature.</p>
<p>You might also want your <strong>customers to be automatically redirected to your shop</strong>, when they have completed the payment. To do this, go to Website Payments in <em>My Account </em>-&gt; <em>Profile</em>. Check the &#8220;On&#8221; button and put in this URL in the field:</p>
<ul>
<li>http://www.your-magento-shop-url.com/paypal/standard/success/</li>
</ul>
<p>That&#8217;s about everything. Your shop is now PayPal ready. However, you might experiencing some problems regarding double Grand Totals and Total Paid, or the order show as Completed instead of the selected value. Read on!</p>
<h3 id="step_3">3. Known problems and fix</h3>
<p>As mentioned above, some might be having problems with double Grand Totals and Total Paid, or the order show as Completed instead of the selected value. If that is the case you need to modify a core file. It&#8217;s a bug; yaiks!</p>
<p>Open the file:</p>
<ul>
<li>/app/code/core/Mage/Paypal/Model/Standard.php</li>
</ul>
<p>On line 149 you should see the following:</p>
<ul>
<li>return false;</li>
</ul>
<p>Change this to</p>
<ul>
<li>return true;</li>
</ul>
<p>On line 423, edit this line:</p>
<ul>
<li>Mage_Sales_Model_Order::STATE_COMPLETED, true,</li>
</ul>
<p>Instead, it should be:</p>
<ul>
<li>Mage_Sales_Model_Order::STATE_PROCESSING, $newOrderStatus,</li>
</ul>
<h3>Done!</h3>
<p>Yep, it&#8217;s true! You&#8217;re actually finished! If you got any problems or questions, feel free to comment!</p>
]]></content:encoded>
			<wfw:commentRss>http://kordon.me/setting-up-paypal-standard-payments-with-ipn-for-magento/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tip: Make file uploads user friendly &#8211; usability comes first!</title>
		<link>http://kordon.me/tip-make-file-uploads-user-friendly-usability-comes-first/</link>
		<comments>http://kordon.me/tip-make-file-uploads-user-friendly-usability-comes-first/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 23:10:07 +0000</pubDate>
		<dc:creator>Mark Kordon</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Tips & tricks]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Uploadify]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://kordon.me/?p=111</guid>
		<description><![CDATA[Just wanted to share a thing I just realized. Input files of the type &#8220;file&#8221; is evil! They&#8217;re ugly and they need to be replaced. But it doesn&#8217;t seem to happen in the near future. But if you, as I do, use jQuery there are a number of good alternatives to the evil input field. [...]]]></description>
			<content:encoded><![CDATA[<p>Just wanted to share a thing I just realized. Input files of the type &#8220;file&#8221; is evil! They&#8217;re ugly and they need to be replaced. But it doesn&#8217;t seem to happen in the near future. But if you, as I do, use jQuery there are a number of good alternatives to the evil input field. The one I found most attractive is <a href="http://www.uploadify.com/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.uploadify.com/?referer=');">the Uploadify plugin</a>. It&#8217;s dynamic, easy to use and highly customizable. It&#8217;s well documented and there&#8217;s <a href="http://www.uploadify.com/download/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.uploadify.com/download/?referer=');">plenty of examples</a> available &#8211; and of course <a href="http://www.uploadify.com/demo/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.uploadify.com/demo/?referer=');">a demo page</a>.</p>
<p>It has many advantages over the boring input field:</p>
<ul>
<li>Custom trigger for the file window</li>
<li>Queue</li>
<li>Restrict file types</li>
<li>Progress bar</li>
<li>&#8230; requires no page refresh, of course!</li>
</ul>
<p>This solution requires JavaScript and Flash.</p>
<p>I encourage you strongly, to think about implementing such features. Your user will thank you! I know you want to be web 2.0&#8242;ish!</p>
]]></content:encoded>
			<wfw:commentRss>http://kordon.me/tip-make-file-uploads-user-friendly-usability-comes-first/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How I keep my repositories DRY and simple</title>
		<link>http://kordon.me/how-i-keep-my-repositories-dry-and-simple/</link>
		<comments>http://kordon.me/how-i-keep-my-repositories-dry-and-simple/#comments</comments>
		<pubDate>Sat, 26 Dec 2009 22:21:38 +0000</pubDate>
		<dc:creator>Mark Kordon</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[ASP.NET MVC]]></category>
		<category><![CDATA[IRepository pattern]]></category>

		<guid isPermaLink="false">http://kordon.me/?p=71</guid>
		<description><![CDATA[A couple of weeks ago, my friend and colleague, Jonas, wrote an article about keeping your project and repositories DRY (Don&#8217;t Repeat Yourself). Instead of having a repository for each POCO object within your project, he created a IRepository. A repository each object could use to get the most used methods:

GetById()
GetAll()
Insert()
Delete()

These four functions is used [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of weeks ago, my friend and colleague, Jonas, wrote <a href="http://jhovgaard.dk/posts/getting-started-with-the-irepository-pattern" target="_blank" onclick="pageTracker._trackPageview('/outgoing/jhovgaard.dk/posts/getting-started-with-the-irepository-pattern?referer=');">an article about keeping your project and repositories DRY</a> (<strong>D</strong>on&#8217;t <strong>R</strong>epeat <strong>Y</strong>ourself). Instead of having a repository for each POCO object within your project, he created a IRepository. A repository each object could use to get the most used methods:</p>
<ul>
<li>GetById()</li>
<li>GetAll()</li>
<li>Insert()</li>
<li>Delete()</li>
</ul>
<p>These four functions is used in every repository 95% of the time. So I asked him; what about the times you would actually need a read-only repository? It&#8217;s not impossible you would want that.</p>
<p>So instead of having a &#8220;master&#8221; repository, I&#8217;d rather have <em>a class for each object</em> in my project. I would create an interface for each method to be reused:</p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #0600FF;">public</span> <span style="color: #FF0000;">interface</span> ICanGetAll<span style="color: #008000;">&lt;</span>T<span style="color: #008000;">&gt;</span>
<span style="color: #000000;">&#123;</span>
    IEnumerable<span style="color: #008000;">&lt;</span>T<span style="color: #008000;">&gt;</span> GetAll<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #0600FF;">public</span> <span style="color: #FF0000;">interface</span> ICanGetById<span style="color: #008000;">&lt;</span>TEntity, TKey<span style="color: #008000;">&gt;</span>
<span style="color: #000000;">&#123;</span>
    TEntity GetById<span style="color: #000000;">&#40;</span>TKey id<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #0600FF;">public</span> <span style="color: #FF0000;">interface</span> ICanRemove<span style="color: #008000;">&lt;</span>T<span style="color: #008000;">&gt;</span>
<span style="color: #000000;">&#123;</span>
    <span style="color: #0600FF;">void</span> Remove<span style="color: #000000;">&#40;</span>T entity<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #0600FF;">public</span> <span style="color: #FF0000;">interface</span> ICanSave<span style="color: #008000;">&lt;</span>T<span style="color: #008000;">&gt;</span>
<span style="color: #000000;">&#123;</span>
    <span style="color: #0600FF;">void</span> Save<span style="color: #000000;">&#40;</span>T entity<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span></pre></div></div>

<p>These interfaces gives us <em>the freedom to implement them as you go</em>. Yes, I still need a file with a repository class for each object. But that&#8217;s fine for me. Now I can make sure all my methods names are the same. Let&#8217;s say I have a <em>Project object</em>.</p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #0600FF;">public</span> <span style="color: #FF0000;">interface</span> IProjectRepository <span style="color: #008000;">:</span>
    ICanSave<span style="color: #008000;">&lt;</span>Project<span style="color: #008000;">&gt;</span>,
    ICanRemove<span style="color: #008000;">&lt;</span>Project<span style="color: #008000;">&gt;</span>,
    ICanGetById<span style="color: #008000;">&lt;</span>Project, id<span style="color: #008000;">&gt;</span>,
    ICanGetAll<span style="color: #008000;">&lt;</span>Project<span style="color: #008000;">&gt;</span>
<span style="color: #000000;">&#123;</span>
    IEnumerable<span style="color: #008000;">&lt;</span>Project<span style="color: #008000;">&gt;</span> GetProjectsByCustomerId<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> customerId<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span></pre></div></div>

<p>This is not perfect in any way. Still, I don&#8217;t have to copy/paste a repository when I need a new one. I can simply select the methods required for the specific repository. That&#8217;s a bullet proof way for me!</p>
]]></content:encoded>
			<wfw:commentRss>http://kordon.me/how-i-keep-my-repositories-dry-and-simple/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Upgrade your ASP.NET MVC project from Visual Studio 2008 to 2010</title>
		<link>http://kordon.me/upgrade-your-asp-net-mvc-project-from-visual-studio-2008-to-2010/</link>
		<comments>http://kordon.me/upgrade-your-asp-net-mvc-project-from-visual-studio-2008-to-2010/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 10:49:06 +0000</pubDate>
		<dc:creator>Mark Kordon</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Scott Gu]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://kordon.me/?p=57</guid>
		<description><![CDATA[I currently have a couple of projects going on. Some for clients, and then I have some ideas and experiments for myself, so that I can play around with NHibernate, LINQ to Entities, ASP.NET 4.0 and Visual Studio 2010.
I started one of my projects in Visual Studio 2008. Recently, I went to &#8220;The best of [...]]]></description>
			<content:encoded><![CDATA[<p>I currently have a couple of projects going on. Some for clients, and then I have some ideas and experiments for myself, so that I can play around with NHibernate, LINQ to Entities, ASP.NET 4.0 and Visual Studio 2010.</p>
<p>I started one of my projects in Visual Studio 2008. Recently, I went to <a title="Best of PDC 2009" href="http://kordon.me/my-thoughts-on-the-best-of-pdc-2009-with-scott-guthrie-in-denmark/">&#8220;The best of PDC 2009 with Scott Guthrie&#8221; here in Denmark</a>. That was when I decided to upgrade some of my projects, so I could take full advantage of the upgrade from both Visual Studio, but also .NET 4.0. So I did. Or, so I thought. It all seemed straightforward, but when i opened the project in Visual Studio 2010, it converted with errors. The error I was getting was:</p>
<ul>
<li><em>The project file &#8216;&lt;project file path&gt;&#8217; cannot be opened. The project type is not  supported by this installation.</em></li>
</ul>
<p>First, I was like&#8230; Did I miss something in the installation? But no, I didn&#8217;t. I started Googling around and found this solution:</p>
<ul>
<li><em>Open up the project file file in notepad (or your favorite text editor) and replace the entire &lt;ProjectTypeGuids&gt; tag with the following tag:</em></li>
<li><em>&lt;ProjectTypeGuids&gt;{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}&lt;/ProjectTypeGuids&gt;.</em></li>
</ul>
<p>It works! But why, I don&#8217;t know. That&#8217;s why I just e-mailed Scott Guthrie, hoping he could shed some light over this. He actually replied me and told another guy, Eilon Lipton, to help me with the problem.</p>
<p>I will, of course, update this post when I have a solution &#8211; or at least a decent explanation.</p>
]]></content:encoded>
			<wfw:commentRss>http://kordon.me/upgrade-your-asp-net-mvc-project-from-visual-studio-2008-to-2010/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My thoughts on &#8220;The best of PDC 2009 with Scott Guthrie&#8221; &#8211; in Denmark</title>
		<link>http://kordon.me/my-thoughts-on-the-best-of-pdc-2009-with-scott-guthrie-in-denmark/</link>
		<comments>http://kordon.me/my-thoughts-on-the-best-of-pdc-2009-with-scott-guthrie-in-denmark/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 07:05:39 +0000</pubDate>
		<dc:creator>Mark Kordon</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[ASP.NET MVC]]></category>
		<category><![CDATA[PDC09]]></category>
		<category><![CDATA[Scott Gu]]></category>

		<guid isPermaLink="false">http://kordon.me/?p=39</guid>
		<description><![CDATA[Yesterday, I went to see Scott Guthrie presenting the best of PDC 2009. I must say&#8230; Scott is a great speaker! He jokes around while presenting the product at the same time.
I wasn&#8217;t too impressed by the other speakers, though. Mostly sales speaks and techies doing some cool stuff about WCF, Azure, etc. But it [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, I went to see Scott Guthrie presenting the best of PDC 2009. I must say&#8230; Scott is a great speaker! He jokes around while presenting the product at the same time.</p>
<p>I wasn&#8217;t too impressed by the other speakers, though. Mostly sales speaks and techies doing some cool stuff about WCF, Azure, etc. But it just wasn&#8217;t presented that well. Hope they won&#8217;t see my evaluation of their performances&#8230;</p>
<p>The worst part is, that after seeing what&#8217;s coming in .NET 4.0 and Visual Studio 2010 i find myself having a hard time, deciding which technologies to use. I was intentionally going for NHibernate, but after seeing the entities framework having a great upgrade I have my doubts. Well, I&#8217;m going to tell you, when I make up my mind.</p>
<p>And of course, Visual Studio 2010 is going to be a even better development tool than 2008. Can&#8217;t wait trying out the deployment features.</p>
<p>PS: Scott rocks, as you can see here:</p>
<div id="attachment_41" class="wp-caption aligncenter" style="width: 330px"><a href="http://kordon.me/wp-content/uploads/2009/12/scott.jpg"><img class="size-full wp-image-41  " title="Scott Gu fooling around" src="http://kordon.me/wp-content/uploads/2009/12/scott.jpg" alt="Scott Gu fooling around" width="320" height="240" /></a><p class="wp-caption-text">Scott doing a demo of a Silverligt app using the webcam</p></div>
]]></content:encoded>
			<wfw:commentRss>http://kordon.me/my-thoughts-on-the-best-of-pdc-2009-with-scott-guthrie-in-denmark/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tip: Hide multiple Facebook applications from your news feed in seconds</title>
		<link>http://kordon.me/tip-hide-multiple-facebook-applications-from-your-news-feed-in-seconds/</link>
		<comments>http://kordon.me/tip-hide-multiple-facebook-applications-from-your-news-feed-in-seconds/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 19:54:24 +0000</pubDate>
		<dc:creator>Mark Kordon</dc:creator>
				<category><![CDATA[Tips & tricks]]></category>
		<category><![CDATA[Web and social media]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[facebook applications]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://kordon.me/?p=3</guid>
		<description><![CDATA[Yeah. I&#8217;m sure most of you who reached this post, knows what I&#8217;m talking about. You have a few hundreds of friends who knows good Facebook maners. But&#8230; There&#8217;s also your mom and dad, sister, brother or even your grandparents! They just installed the new popular, upcoming application and BAM! You just got hit by [...]]]></description>
			<content:encoded><![CDATA[<p>Yeah. I&#8217;m sure most of you who reached this post, knows what I&#8217;m talking about. You have a few hundreds of friends who knows good Facebook maners. But&#8230; There&#8217;s also your mom and dad, sister, brother or even your grandparents! They just installed the new popular, upcoming application and BAM! You just got hit by 384 kisses, 202 hugs and got kidnapped in Mob Wars.</p>
<p>But we don&#8217;t want kisses, hugs, or know when your parents will be getting laid. And it&#8217;s a new application <strong>every day</strong>! So here&#8217;s a guide on how to block the applications quick and easy.</p>
<p>When logged in, you should see your news feed. On your left hand, you&#8217;ll see a filter box.</p>
<ul>
<li>Click the &#8220;<em>More</em>&#8221; link.</li>
</ul>
<h2><a href="http://kordon.me/wp-content/uploads/2009/12/FB_Tip1_1.png"><img class="size-full wp-image-4 aligncenter" style="border: 1px solid black;" title="News feed" src="http://kordon.me/wp-content/uploads/2009/12/FB_Tip1_1.png" alt="News feed selector" width="348" height="219" /></a></h2>
<div>
<p>The list will unfold, and reveal lot&#8217;s of annoying applications hidden in there.</p></div>
<div>
<ul>
<li>Click an <em>unwanted application.</em></li>
</ul>
</div>
<h2><a href="http://kordon.me/wp-content/uploads/2009/12/FB_Tip1_2.png"><img class="size-full wp-image-5 aligncenter" style="border: 1px solid black;" title="New feed selector" src="http://kordon.me/wp-content/uploads/2009/12/FB_Tip1_2.png" alt="New feed selector" width="140" height="415" /></a></h2>
<ul>
<li>When you mouseover the news item, a &#8220;<em>Hide</em>&#8221; button will appear.<br />
Go ahead, <strong>click it</strong>!</li>
</ul>
<h2><a href="http://kordon.me/wp-content/uploads/2009/12/FB_Tip1_3.png"><img class="size-full wp-image-6 aligncenter" style="border: 1px solid black;" title="Crappy application" src="http://kordon.me/wp-content/uploads/2009/12/FB_Tip1_3.png" alt="Crappy application" width="394" height="238" /></a></h2>
<ul>
<li>Hell yeah, <strong>success</strong>!<br />
The application will no longer annoy you, nor your news feed!</li>
</ul>
<h2><a href="http://kordon.me/wp-content/uploads/2009/12/FB_Tip1_4.png"><img class="size-full wp-image-7 aligncenter" style="border: 1px solid black;" title="Crappy applications removed" src="http://kordon.me/wp-content/uploads/2009/12/FB_Tip1_4.png" alt="Crappy applications removed" width="434" height="130" /></a></h2>
<p>Now just repeat these steps for every application. The advantage of this method is, you get a quick overview of the applications.</p>
<p>Hope this helped you!</p>
]]></content:encoded>
			<wfw:commentRss>http://kordon.me/tip-hide-multiple-facebook-applications-from-your-news-feed-in-seconds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
