<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>Product Review</title>
        <link>http://ryanfarley.com/blog/category/78.aspx</link>
        <description>Product Review</description>
        <language>en-US</language>
        <copyright>Ryan Farley</copyright>
        <managingEditor>ryan.farley@customerfx.com</managingEditor>
        <generator>Subtext Version 1.9.5.177</generator>
        <item>
            <title>Announcing the Growl for Windows Target for NLog (and another reason to love Growl)</title>
            <link>http://ryanfarley.com/blog/archive/2010/05/06/announcing-the-growl-for-windows-target-for-nlog.aspx</link>
            <description>&lt;div style="display:none"&gt;qt8gt0bxhw|20009F4EEE83|RyanMain|subtext_Content|Text|0xfbff385d02000000ab00000001000600&lt;/div&gt;I love &lt;a href="http://www.growlforwindows.com/" target="_blank"&gt;Growl&lt;/a&gt;. In my opinion it is something that should be built into the OS and I wish that every app supported sending Growl notifications. Lately I have been using Growl to get notifications from my own applications. This has been a great way to get instant feedback from applications while testing or when problems happen. However, instead of building in support for Growl, I add these notifications via a custom target for NLog so the notifications are configurable as part of the logging solution.&lt;br /&gt;
&lt;br /&gt;
&lt;font size="4"&gt;&lt;span style="font-weight: bold;"&gt;What is Growl for Windows?&lt;/span&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
First of all, for those who are not familiar with what Growl is, you're missing out. Take a look at Growl's &lt;a target="_blank" href="http://www.growlforwindows.com/gfw/about.aspx"&gt;About page&lt;/a&gt; to find out more. Basically, it is a Windows version of the Mac growl notification system that displays notifications using the GNTP protocol. Growl gives you notifications when things happen. It can be something from your machine or something on some other machine on the network. Think of it as a uniform notification system that any application can use.&lt;br /&gt;
&lt;br /&gt;
&lt;font size="4"&gt;&lt;span style="font-weight: bold;"&gt;Using Growl as a Logging Notification Target&lt;/span&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
So, back to my original topic. I use &lt;a href="http://nlog-project.org/" target="_blank"&gt;NLog&lt;/a&gt; for logging. For logging, NLog is awesome (why I prefer it to log4net will require another post). Some of the things that make Growl for a logging target useful for me:&lt;br /&gt;
&lt;ol&gt;
    &lt;li&gt;Instant feedback while testing applications. I can get details about what is going on in my application while testing, whether I am debugging or not by simply turning on my Growl target in the NLog.config file.&lt;/li&gt;
    &lt;li&gt;If the application is running on a server, I can have the application send fatal or error logging notifications right to my desktop. If my server app has a fatal problem it will get logged, but I get the instant feedback with a Growl notification on my desktop.&lt;/li&gt;
&lt;/ol&gt;
&lt;font size="4"&gt;&lt;span style="font-weight: bold;"&gt;The custom GrowlNotify target for NLog&lt;/span&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
Let's take a look at my simple custom NLog logging target for Growl. To use the GrowlNotify target in NLog, all you have to do is &lt;a href="http://github.com/downloads/RyanFarley/NLogGrowlNotify/NLog.Targets.GrowlNotify_Binaries.zip"&gt;download the GrowlNotify binaries&lt;/a&gt;, place them in the same folder as your app (no need to add them as references, just put them where the NLog.dll and NLog.config are), then wire it up as a target in the NLog.config file. Here is a sample configuration for using the GrowlNotify target:&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&amp;lt;?xml version=&lt;span style="color: rgb(0, 128, 128);"&gt;"1.0"&lt;/span&gt; encoding=&lt;span style="color: rgb(0, 128, 128);"&gt;"utf-8"&lt;/span&gt; ?&amp;gt;&lt;br /&gt;&amp;lt;nlog xmlns=&lt;span style="color: rgb(0, 128, 128);"&gt;"http://www.nlog-project.org/schemas/NLog.xsd"&lt;br /&gt;&lt;/span&gt;      xmlns:xsi=&lt;span style="color: rgb(0, 128, 128);"&gt;"http://www.w3.org/2001/XMLSchema-instance"&lt;/span&gt;&amp;gt;&lt;br /&gt; &lt;br /&gt;    &amp;lt;extensions&amp;gt;&lt;br /&gt;        &amp;lt;add assembly=&lt;span style="color: rgb(0, 128, 128);"&gt;"NLog.Targets.GrowlNotify"&lt;/span&gt; &lt;span style="color: Navy;"&gt;/&lt;/span&gt;&amp;gt;&lt;br /&gt;    &amp;lt;/extensions&amp;gt;&lt;br /&gt;     &lt;br /&gt;    &amp;lt;targets&amp;gt;&lt;br /&gt;        &amp;lt;target name=&lt;span style="color: rgb(0, 128, 128);"&gt;"growl"&lt;/span&gt; type=&lt;span style="color: rgb(0, 128, 128);"&gt;"GrowlNotify"&lt;/span&gt; password=&lt;span style="color: rgb(0, 128, 128);"&gt;""&lt;/span&gt; host=&lt;span style="color: rgb(0, 128, 128);"&gt;""&lt;/span&gt; port=&lt;span style="color: rgb(0, 128, 128);"&gt;""&lt;/span&gt; &lt;span style="color: Navy;"&gt;/&lt;/span&gt;&amp;gt;&lt;br /&gt;    &amp;lt;/targets&amp;gt;&lt;br /&gt; &lt;br /&gt;    &amp;lt;rules&amp;gt;&lt;br /&gt;        &amp;lt;logger name=&lt;span style="color: rgb(0, 128, 128);"&gt;"*"&lt;/span&gt; minLevel=&lt;span style="color: rgb(0, 128, 128);"&gt;"Trace"&lt;/span&gt; appendTo=&lt;span style="color: rgb(0, 128, 128);"&gt;"growl"&lt;/span&gt;&lt;span style="color: Navy;"&gt;/&lt;/span&gt;&amp;gt;&lt;br /&gt;    &amp;lt;/rules&amp;gt;&lt;br /&gt; &lt;br /&gt;&amp;lt;/nlog&amp;gt;&lt;/pre&gt;
&lt;br /&gt;
That configuration will send any level of logging event to Growl on the same/local machine. To have the Growl notification sent over the network, all you have to do is fill in the parameters for "password", "host" (with a machine name or IP address), and optionally the "port" (if you've changed your Growl port from the default). That is it. &lt;br /&gt;
&lt;br /&gt;
Each logging level has it's own icon. Here's some screenshots of NLog GrowlNotify in action:&lt;br /&gt;
&lt;br /&gt;
&lt;img alt="" src="http://content.screencast.com/users/RyanFarley/folders/Private/media/1a42ddb1-86c4-4a83-b91a-6b97d811ec40/GrowlNotify_Registration.png" /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img alt="" src="http://content.screencast.com/users/RyanFarley/folders/Private/media/fdabad11-7630-4af6-bda5-c928a8927d5e/GrowlNotify_Trace.png" /&gt;      &lt;img alt="" src="http://content.screencast.com/users/RyanFarley/folders/Private/media/208edad0-e158-4fde-8c7b-d8cd180ffe3b/GrowlNotify_Debug.png" /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img alt="" src="http://content.screencast.com/users/RyanFarley/folders/Private/media/aad65380-0539-4b39-8982-17e60fb81bfe/GrowlNotify_Info.png" /&gt;      &lt;img alt="" src="http://content.screencast.com/users/RyanFarley/folders/Private/media/2e4fe6a2-2954-4ad0-85c7-19397129f90b/GrowlNotify_Warn.png" /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img alt="" src="http://content.screencast.com/users/RyanFarley/folders/Private/media/0bc73285-487b-4c98-bad1-c5eeed7e4c04/GrowlNotify_Error.png" /&gt;      &lt;img alt="" src="http://content.screencast.com/users/RyanFarley/folders/Private/media/17187701-1142-452a-a127-30a96ebfd7b9/GrowlNotify_Fatal.png" /&gt;&lt;br /&gt;
&lt;br /&gt;
Of course, once you've used GrowlNotify once and the DLL has registered itself with Growl, you'll be able to tweak things for each notification level in the Growl applications list, such as making the more critical levels play a different sound, etc:&lt;br /&gt;
&lt;br /&gt;
&lt;img src="http://content.screencast.com/users/RyanFarley/folders/Jing/media/3bae7a36-0dec-4a34-8a8f-031b6a3e93cc/Growl-NLogSettings.png" alt="" /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="link"&gt;To grab the source for NLog GrowlNotify, head over to the &lt;strong&gt;&lt;a target="_blank" href="http://github.com/RyanFarley/NLogGrowlNotify"&gt;repository on Github&lt;/a&gt;&lt;/strong&gt;.&lt;/div&gt;&lt;img src="http://ryanfarley.com/blog/aggbug/38138.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ryan Farley</dc:creator>
            <guid>http://ryanfarley.com/blog/archive/2010/05/06/announcing-the-growl-for-windows-target-for-nlog.aspx</guid>
            <pubDate>Thu, 06 May 2010 19:57:09 GMT</pubDate>
            <comments>http://ryanfarley.com/blog/archive/2010/05/06/announcing-the-growl-for-windows-target-for-nlog.aspx#feedback</comments>
            <slash:comments>19</slash:comments>
            <wfw:commentRss>http://ryanfarley.com/blog/comments/commentRss/38138.aspx</wfw:commentRss>
            <trackback:ping>http://ryanfarley.com/blog/services/trackbacks/38138.aspx</trackback:ping>
        </item>
        <item>
            <title>A Developer's Look at Xobni</title>
            <link>http://ryanfarley.com/blog/archive/2009/07/23/a-developers-look-at-xobni.aspx</link>
            <description>&lt;div style="display:none"&gt;qt8gt0bxhw|20009F4EEE83|RyanMain|subtext_Content|Text|0xfbffcab101000000b700000001000c00&lt;/div&gt;I've used Xobni off and on since it was first released and over the last few months it has stuck with me and I've become completely attached to it. With some of the initial releases it struggled with performance however, recent versions no longer have that problem. It performs well and doesn't seem to chew up resources. Best of all, it has become so smooth, so magical in what it does and how it does it, that as a developer, &lt;span style="font-style: italic;"&gt;I have come to believe that the Xobni developers are true wizards, crafting their spells of awesomeness on their product&lt;/span&gt;. So, it is with the viewpoint of a developer that I review some things I really like about the current 1.8 version of Xobni.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="link"&gt;&lt;em&gt;&lt;a href="http://www.xobni.com/" target="_blank"&gt;If you've not yet tried Xobni, take a look at it at Xobni.com&lt;/a&gt;&lt;/em&gt;&lt;/div&gt;
&lt;br /&gt;
As a developer, I have complete respect for good, well designed, and nicely written software. I love it when software does something that amazes me and I just &lt;span style="font-style: italic;"&gt;have&lt;/span&gt; to know how it does it. There are many things about Xobni that are pure magic. First of all, it is such a great concept that is amazingly executed. Not only that, but I develop Outlook addins as well, so it is cool to see something done so nicely that I can really learn from. Here are a few things that I just love about Xobni.&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: left;"&gt;&lt;a target="_blank" href="http://files.farleyzone.com/images/xobni/Xobni_Sidebar1.png"&gt;&lt;img border="0" src="http://files.farleyzone.com/images/xobni/th_Xobni_Sidebar1.png" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style="color: rgb(153, 153, 153); font-style: italic;"&gt;(click for larger view)&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;span style="font-weight: bold;"&gt;1) .NET Application&lt;/span&gt;&lt;br /&gt;
This one doesn't "wow" me or anything, but there is something that I love about nicely done software using &lt;span style="text-decoration: underline; font-style: italic; font-weight: bold;"&gt;my technology&lt;/span&gt;. I am a .NET developer and I love .NET, so gotta give props to Xobni for it :-)  - now onto the more important stuff.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-weight: bold;"&gt;2) Lightning fast speed&lt;/span&gt;&lt;br /&gt;
One thing nobody can disagree with. Xobni does what it does super fast. I have a lot of e-mail in Outlook, going back 10+ years (a lot of it archived). My PST is &lt;span style="font-weight: bold;"&gt;several&lt;/span&gt; gigs in size. So when I see Xobni instantly return my search to me, with the right results no less, it is a thing of magic. &lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-weight: bold;"&gt;3) Social networking wizardry that makes me envious&lt;/span&gt;&lt;br /&gt;
In just about every app I do now days, I am always looking at building social media into it. I love the idea of merging a person's online profile/persona with the data you've collected about a person. What cooler way to get the complete picture of a person and know what is going on with them. Working in CRM (Customer Relationship Management) the social-CRM concept, in bringing a person's social data into CRM is something that everyone wants. However, it is not an easy job. If you have to ask a sales person to look for, collect, and enter someone's Facebook profile ID, Twitter account name, LinkedIn profile URL, etc, it will &lt;span style="font-style: italic;"&gt;NEVER&lt;/span&gt; happen and your efforts to merge in that data will be wasted. That is what is so amazing about how Xobni integrates with social sites like Facebook &amp;amp; LinkedIn. Somehow, &lt;span style="font-style: italic;"&gt;it just knows&lt;/span&gt;. I've never told Xobni any of those details, yet it always seems to get it right, displaying Facebook and LinkedIn details about people I receive e-mail from and they merge all this together. You might be seeing a picture of the person from Facebook and the company name and title from LinkedIn. I will tell you it is down right spooky. Do they have access to some super-secret API? Perhaps. But if they do that is a work of genius on its own. But if they don't, then the Xobni devs are true wizards and I am not worthy of their craft. They obviously have some secret sauce here - and I want it. I've spent countless hours trying to reverse-engineer and figure out or replicate how they do what they do unsuccessfully. I bow to their superior intellect.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-weight: bold;"&gt;4) Magical data mining across the internet&lt;/span&gt;&lt;br /&gt;
I discovered something about Xobni. It appears to mine data from places you woudn't expect. One of my websites sends out e-mails from forum posts. I noticed that Xobni was displaying a phone number for that e-mail address and I knew right away that it wasn't a phone number, because I recognized it as a ticket or case number that was displayed on that website (but it does "look" like a phone number). The only way Xobni could have gotten that number is to perform a search for the e-mail address using Google/LiveBing/Whatever (most likely on restricted to the site that the e-mail belongs to based on domain) and harvested out the most logical thing that looked like a phone number. That is pretty smart. So I started looking at other people as well that I know don't have Facebook or LinkedIn and it was showing numbers for them also. Some google searches revealed where I think Xobni was getting the phone numbers from on their websites. But it seemed to just &lt;span style="font-style: italic;"&gt;know&lt;/span&gt; these phone numbers right away. Fast. That is completely clever.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-weight: bold;"&gt;5) Smooth&lt;/span&gt;&lt;br /&gt;
Xobni is nice and smooth. As you click on something the panel will roll in and out with some nice animation that is incredibly smooth. As you search for something the results come in and continue to filter as you type and it is incredibly smooth. The sliders to see more or less details resize as you slide and it is so nice and smooth. I love smooth software. (See screenshot below)&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: left;"&gt;&lt;a target="_blank" href="http://files.farleyzone.com/images/xobni/Xobni_Sidebar_Search.png"&gt;&lt;img border="0" src="http://files.farleyzone.com/images/xobni/th_Xobni_Sidebar_Search.png" alt="" /&gt;&lt;/a&gt;    &lt;a target="_blank" href="http://files.farleyzone.com/images/xobni/Xobni_Sidebar_Email_DetailLevel.png"&gt;&lt;img border="0" src="http://files.farleyzone.com/images/xobni/th_Xobni_Sidebar_Email_DetailLevel.png" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style="font-style: italic; color: rgb(153, 153, 153);"&gt;(click for larger view)&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;span style="font-weight: bold;"&gt;6) Taps into places in Outlook that you didn't know were accessible&lt;/span&gt;&lt;br /&gt;
As a developer who has developed his share of Outlook addins, I am impressed with what the Xobni devs continue to pull off for integrating into Outlook. First of all, I don't believe that the Xobni sidebar itself in loading into an Outlook form region. If it is, I don't know how to get it there. Form regions are typically part of things like the reading pane, the folder pane, etc. Not the full side of the explorer window IIRC (I would love to be corrected on this if I am wrong). I have addins using form regions as well, but the placement of the Xobni sidebar is super nice (and it is NOT a task pane either, those aren't supported in the same versions that Xobni supports and besides task panes load to the left of the Xobni sidebar). Second, the new 1.8 feature of the ranked/intelligent auto-complete when addressing an e-mail. Who knew you could put something there and replace/hide the OOTB autocomplete list? Just awesome. (See screenshot below)&lt;br /&gt;
&lt;br /&gt;
&lt;a target="_blank" href="http://files.farleyzone.com/images/xobni/Xobni_AutoComplete.png"&gt;&lt;img border="0" src="http://files.farleyzone.com/images/xobni/th_Xobni_AutoComplete.png" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style="font-style: italic; color: rgb(153, 153, 153);"&gt;(click for larger view)&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-weight: bold;"&gt; 7) Smart, well designed software that just works&lt;/span&gt;&lt;br /&gt;
All in all, Xobni is software to be impressed with. Especially from the perspective of a developer&lt;span style="font-style: italic; color: rgb(153, 153, 153);"&gt;&lt;/span&gt;. It is just done &lt;span style="font-style: italic;"&gt;smart&lt;/span&gt;. There are some amazing ideas at work in Xobni. Not only that, but it is done right. In the months I've been using Xobni, it hasn't crashed once. It hasn't given me results I wasn't expecting. &lt;br /&gt;
&lt;br /&gt;
Well worth a spin for any Outlook user IMO.&lt;img src="http://ryanfarley.com/blog/aggbug/38136.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ryan Farley</dc:creator>
            <guid>http://ryanfarley.com/blog/archive/2009/07/23/a-developers-look-at-xobni.aspx</guid>
            <pubDate>Fri, 24 Jul 2009 05:20:47 GMT</pubDate>
            <comments>http://ryanfarley.com/blog/archive/2009/07/23/a-developers-look-at-xobni.aspx#feedback</comments>
            <slash:comments>4</slash:comments>
            <wfw:commentRss>http://ryanfarley.com/blog/comments/commentRss/38136.aspx</wfw:commentRss>
            <trackback:ping>http://ryanfarley.com/blog/services/trackbacks/38136.aspx</trackback:ping>
        </item>
        <item>
            <title>Browser Performance - What's Changed with Chrome in the Mix?</title>
            <link>http://ryanfarley.com/blog/archive/2008/09/03/browser-performance-whats-changed-with-chrome-in-the-mix.aspx</link>
            <description>&lt;div style="display:none"&gt;qt8gt0bxhw|20009F4EEE83|RyanMain|subtext_Content|Text|0xfbfff64a00000000b700000001000a00&lt;/div&gt;This week Google released their new browser, &lt;a href="http://www.google.com/chrome" target="_blank"&gt;Chrome&lt;/a&gt;. There has been so much &lt;a target="_blank" href="http://search.twitter.com/search?q=Chrome"&gt;buzz&lt;/a&gt; about it that it's been deafening. It is seriously amazing how passionate people get about a browser. But let's face it, &lt;a href="http://wakoopa.com/software" target="_blank"&gt;a browser is likely what most people use more than any other software&lt;/a&gt; on their computer now days. I spend so much of my time online. Performance is important to me, just like anyone else. Since Chrome's release, I've spent some time reading performance metrics in an attempt to see past the marketing hype, and I've been pleased with what I've found. Not specifically with Chrome, but with the improvements across the board with many, but certainly not all, browsers.&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;First off, let me get this out of the way. I've used Chrome, but I am not sold on it at all. It lacks many features I find critical, or at least useful, in a browser. I am not a GOOG-fanboy and I typically don't care for many things that Google puts out, aside from search. I'm not on that "anything that Google does is gold" bus. I do, however, love Firefox. It is my browser of choice for many reasons, but mainly because it performs well and I love the extensibility of it with addons (not to mention the huge community around addons out there, you can &lt;a href="http://addons.mozilla.org/" target="_blank"&gt;find about anything&lt;/a&gt; to make the browser work the way you want it to)&lt;/blockquote&gt; &lt;br /&gt;
This all started when a consultant I work with sent me an e-mail discussing how a particular &lt;a href="http://customerfx.com/pages/products/2002/10/16/sage-saleslogix.aspx" target="_blank"&gt;web-based CRM application&lt;/a&gt; that I work with performs so much faster using Safari. This consultant would demo this software to clients using Internet Explorer and the demos would never go too well. Everything would appear a bit slow and sluggish. This particular web-based CRM application is a bit heavy on the client, using Ajax for about anything that happens in the browser. One day he decided to test out some other browsers and was amazed at how much faster this application performed using Safari. When he let me know his findings I ran some tests between various browsers with this CRM application and was astounded by the results. The performance of the application with Safari was a clear and noticeable improvement over other browsers I tested with. I was amazed at how drastic the performance improvement was. It was an obvious improvement, even without sophisticated tests, as an end user you could easily see the difference.&lt;br /&gt;
&lt;br /&gt;
This eventually led me to &lt;a href="http://ejohn.org/blog/javascript-performance-rundown/" target="_blank"&gt;a new post today by jQuery rock-star John Resig&lt;/a&gt;. This is an extremely insightful post, and like anything from John is very factual and presents the information in a very non-biased manner. John performs tests on the Javascript processing engines in the mainstream browsers (IE 7 &amp;amp; 8b2, Firefox 3.01 &amp;amp; 3.1, Chrome, Safari, Opera, etc). The article is well worth the read, especially for any users still using IE. I've never been an "IE basher" in any way at all, but these facts do speak volumes on the lower quality experience you might be seeing on the web if you're an IE user.&lt;br /&gt;
&lt;br /&gt;
&lt;img height="384" width="512" src="http://ryanfarley.com/images/ryanfarley_com/blog/js-sunspider-all.sm.png" alt="" /&gt;&lt;br /&gt;
&lt;span style="font-style: italic;"&gt;Chart from John's rundown - I'd highly recommend reading John's post (link below).&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="link"&gt;&lt;a target="_blank" href="http://ejohn.org/blog/javascript-performance-rundown/"&gt;John Resig's JavaScript Performance Rundown&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
While Chrome is based on &lt;a target="_blank" href="http://webkit.org/"&gt;WebKit&lt;/a&gt; (the same open source browser engine that behind Safari), it uses Google's own Javascript engine &lt;a href="http://code.google.com/p/v8/" target="_blank"&gt;V8&lt;/a&gt;, which is also open-source. John's test show some big performance "oohs" and "aahs" for Chrome, which is very nice. However, and this is my Firefox bias showing, that V8 will only lead the game until Firefox 3.1's TraceMonkey hits the streets.&lt;br /&gt;
&lt;br /&gt;
Another &lt;a target="_blank" href="http://lifehacker.com/5044668/beta-browser-speed-tests-which-is-fastest"&gt;set of tests from Lifehacker&lt;/a&gt; show that Chrome wins (when compared to IE8 and Firefox3.1 betas) in browser startup time only (which I don't care so much about since I don't often close my browser), while Firefox performing better or at least the same in other tests for memory usage and Javascript &amp;amp; CSS processing. It's also worth noting that IE8 is still performing behind the two on all tests.&lt;br /&gt;
&lt;br /&gt;
Overall, I think it is overwhelmingly great that &lt;span style="font-weight: bold;"&gt;performance&lt;/span&gt;, for my most utilized application, has become such a important metric across the board for all browsers. While I am not too thrilled about yet another browser in the game, and my initial reaction as a web developer was "oh no, another browser to support", the idea of Chrome raising the game for everyone is completely welcome. I won't be switching to Chrome. I don't think I ever will. However, I am sure to see the effects by some new competition in the war of the almighty browser. The best thing about it, the competition is all focused on performance, and that is good for everyone.&lt;img src="http://ryanfarley.com/blog/aggbug/38134.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ryan Farley</dc:creator>
            <guid>http://ryanfarley.com/blog/archive/2008/09/03/browser-performance-whats-changed-with-chrome-in-the-mix.aspx</guid>
            <pubDate>Wed, 03 Sep 2008 18:11:08 GMT</pubDate>
            <comments>http://ryanfarley.com/blog/archive/2008/09/03/browser-performance-whats-changed-with-chrome-in-the-mix.aspx#feedback</comments>
            <slash:comments>12</slash:comments>
            <wfw:commentRss>http://ryanfarley.com/blog/comments/commentRss/38134.aspx</wfw:commentRss>
            <trackback:ping>http://ryanfarley.com/blog/services/trackbacks/38134.aspx</trackback:ping>
        </item>
        <item>
            <title>Meet My New Favorite Text Editor</title>
            <link>http://ryanfarley.com/blog/archive/2006/10/09/34249.aspx</link>
            <description>&lt;div style="display:none"&gt;qt8gt0bxhw|20009F4EEE83|RyanMain|subtext_Content|Text|0xfbff310100000000b100000001001100&lt;/div&gt;&lt;P&gt;I've been a long time fan of &lt;A href="http://www.textpad.com/" target=_blank&gt;TextPad&lt;/A&gt;. I live by my text editor. My text editor is probably one of the most highly used applications on my pc. Seriously. TextPad has been great and I've always loved it. I decided on TextPad years ago after I grew dissatisfied with &lt;A href="http://www.ultraedit.com/" target=_blank&gt;UltraEdit&lt;/A&gt;, I've tried a few others along the way, such as &lt;A href="http://www.flos-freeware.ch/notepad2.html" target=_blank&gt;Notepad2&lt;/A&gt;, but none would compare to my favorite TextPad. Funny thing is, I wasn't looking for a new text editor, but I came across a new one today that I had not heard of before and I decided to give it a try.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Enter Twistpad&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://files.farleyzone.com/images/twistpad.jpg" border=0&gt;&lt;/P&gt;
&lt;P&gt;
&lt;DIV class=link&gt;&lt;A href="http://www.carthagosoft.net/twistpad/twistpadScreens.htm" target=_blank&gt;View more Twistpad screenshots&lt;/A&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Twistpad is an awesome text editor. It would have to be to get me to decide to move away from TextPad. Complete with syntax highlighting, plugin support, collapsable text blocks ala Visual Studio regions, code snippets &amp; template support, a built in clipboard ring, and a whole lot more.&lt;/P&gt;
&lt;P&gt;So what made me decide to switch? Well, one thing for sure, Twistpad is a really great looking app. It has a very Visual Studio looking UI, and I do like that. A lot. However, some of my favorite features are: &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="http://www.carthagosoft.net/twistpad/tp_sc_10.png" target=_blank&gt;Collapsable sections (outline blocks)&lt;/A&gt; 
&lt;LI&gt;&lt;A href="http://www.carthagosoft.net/twistpad/tp_sc_6.png" target=_blank&gt;The way it handles searches&lt;/A&gt; 
&lt;LI&gt;&lt;A href="http://www.carthagosoft.net/twistpad/tp_sc_16.png" target=_blank&gt;Auto-complete&lt;/A&gt; 
&lt;LI&gt;&lt;A href="http://www.carthagosoft.net/twistpad/tp_sc_18.png" target=_blank&gt;Color syntax-highlighting printing&lt;/A&gt; 
&lt;LI&gt;&lt;A href="http://www.carthagosoft.net/twistpad/tp_sc_19.png" target=_blank&gt;File compares&lt;/A&gt; 
&lt;LI&gt;&lt;A href="http://www.carthagosoft.net/twistpad/tp_sc_22.png" target=_blank&gt;Word-style spell checking&lt;/A&gt; 
&lt;LI&gt;Very well thought-out and designed. It makes sense and it's layout is how you would expect a text editor to be 
&lt;LI&gt;Did I mention how great it looks. I am just loving the VS look and feel&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;DIV class=link&gt;&lt;A href="http://www.carthagosoft.net/twistpad/index.htm" target=_blank&gt;Visit the Twistpad site&lt;/A&gt;&lt;/DIV&gt;&lt;/P&gt;
&lt;P&gt;All in all, I am loving my new text editor. I have to say I didn't think the day would ever come that I would move away from TextPad. So far I love what I see. Sure there are some things that are missing, such as unicode support (coming in the next version) and maybe a shell extension to get better context menu support in Windows, but all in all I am happy.&lt;/P&gt;&lt;img src="http://ryanfarley.com/blog/aggbug/34249.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ryan Farley</dc:creator>
            <guid>http://ryanfarley.com/blog/archive/2006/10/09/34249.aspx</guid>
            <pubDate>Mon, 09 Oct 2006 23:26:00 GMT</pubDate>
            <comments>http://ryanfarley.com/blog/archive/2006/10/09/34249.aspx#feedback</comments>
            <slash:comments>15</slash:comments>
            <wfw:commentRss>http://ryanfarley.com/blog/comments/commentRss/34249.aspx</wfw:commentRss>
            <trackback:ping>http://ryanfarley.com/blog/services/trackbacks/34249.aspx</trackback:ping>
        </item>
        <item>
            <title>Awesome Command-Prompt Replacement</title>
            <link>http://ryanfarley.com/blog/archive/2006/09/01/30742.aspx</link>
            <description>&lt;div style="display:none"&gt;qt8gt0bxhw|20009F4EEE83|RyanMain|subtext_Content|Text|0xfbff300100000000ac00000001000600&lt;/div&gt;&lt;P&gt;I was catching up on some Scott Hanselman posts today after going through &lt;A href="http://www.hanselman.com/blog/ScottHanselmans2006UltimateDeveloperAndPowerUsersToolListForWindows.aspx" target=_blank&gt;Scott's new Utilmate Tools&lt;/A&gt; list (which is a great list) and came accross &lt;A href="http://www.hanselman.com/blog/ABetterPROMPTForCMDEXEOrCoolPromptEnvironmentVariablesAndANiceTransparentMultiprompt.aspx" target=_blank&gt;Scott's post on Console&lt;/A&gt;. Wow. I am in love. &lt;A href="http://ryanfarley.com/blog/archive/2004/03/25/470.aspx"&gt;I've always been a big command-prompt junkie&lt;/A&gt; and this app is the cat's meow. A tabbed console windows app with better support for copy/paste and so much more. &lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://files.farleyzone.com/images/console_screenshot.jpg" border=0&gt;&lt;/P&gt;
&lt;P&gt;How is it that Scott always find out about these kinds of awesome apps. This one is worth using for sure. I'm on the 2.0 beta build 125. I have mine with tabs for loading the VS 2005 &amp; VS 2003 environment vars on separate tabs and a few other custom ones for setting environment vars as well.&lt;/P&gt;
&lt;P&gt;
&lt;DIV class=link&gt;&lt;A href="http://sourceforge.net/projects/console" target=_blank&gt;Visit the Source Forge Console home to download&lt;/A&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;/P&gt;&lt;img src="http://ryanfarley.com/blog/aggbug/30742.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ryan Farley</dc:creator>
            <guid>http://ryanfarley.com/blog/archive/2006/09/01/30742.aspx</guid>
            <pubDate>Sat, 02 Sep 2006 04:13:00 GMT</pubDate>
            <comments>http://ryanfarley.com/blog/archive/2006/09/01/30742.aspx#feedback</comments>
            <slash:comments>12</slash:comments>
            <wfw:commentRss>http://ryanfarley.com/blog/comments/commentRss/30742.aspx</wfw:commentRss>
            <trackback:ping>http://ryanfarley.com/blog/services/trackbacks/30742.aspx</trackback:ping>
        </item>
        <item>
            <title>Colibri - My New Favorite Toy</title>
            <link>http://ryanfarley.com/blog/archive/2006/06/27/24728.aspx</link>
            <description>&lt;div style="display:none"&gt;qt8gt0bxhw|20009F4EEE83|RyanMain|subtext_Content|Text|0xfbff2b0100000000b100000001000f00&lt;/div&gt;&lt;P&gt;&lt;IMG src="http://files.farleyzone.com/images/colibri.png" align=left border=0&gt; I have a new favorite toy. &lt;A href="http://www.hanselman.com/blog/QuicksilverForWindowsEhsoonColibriIsClose.aspx" target=_blank&gt;Scott Hanselman mentioned&lt;/A&gt; Colibri on his blog so I thought I would give it a try. I can't tell you how much I am loving this cool tool. Colibri Type Ahead (which is free) is a combination of a quick start/launch and search program you use to quickly start up applications installed on your pc. &lt;/P&gt;
&lt;P&gt;
&lt;DIV class=link&gt;&lt;A href="http://colibri.leetspeak.org/" target=_blank&gt;Check out Colibri&lt;/A&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Hit a predefined hot-key and then just start typing the name of the application you want to launch. You'll be presented with a list of matches that narrow as you type. The best part is that you don't have to type the whole name, or even a part of it. You can type an abbreviation if you want. If I want to start PowerPoint, for example, I can just type &amp;#8220;popnt&amp;#8221; and it will match to &lt;U&gt;Po&lt;/U&gt;wer&lt;U&gt;P&lt;/U&gt;oi&lt;U&gt;nt&lt;/U&gt;. If more then one application match that name then I'll be presented with the choices. The coolest thing about Colibri is how it learns from you. If I type &amp;#8220;vis&amp;#8221; to start Visual Studio, and Visual Studio isn't the top of the list so I arrow down to select it. It knows that next time I type &amp;#8220;vis&amp;#8221; I probably mean Visual Studio so it will list it first.&lt;/P&gt;
&lt;P&gt;Also, Colibri has integration with other various things, such as Google. I can hit the hot key to bring up Colibri, type &amp;#8220;goo&amp;#8221; then tab and enter my search term to perform a quick search. I can type &amp;#8220;vol&amp;#8221; and then up or down arrow to turn my pc's volume up or down quickly. It can launch control panel applets, and even has some integration coming for iTunes, Winamp, Firefox, etc.&lt;/P&gt;
&lt;P&gt;I always seem to have a billion things installed on my pc at any given moment. While I do try to keep my start menu organized, it feels like such a chore sometimes to dig through the start menu looking for some app I hardly use (and can't remember where it is). Colibri sure makes that all easier. Not to mention Michael, the man behind Colibri, was totally willing to make a change that prevented it from working on my machine. That was just cool.&lt;/P&gt;&lt;table border=0&gt;&lt;tr&gt;&lt;td&gt;&lt;BR clear=all&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;img src="http://ryanfarley.com/blog/aggbug/24728.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ryan Farley</dc:creator>
            <guid>http://ryanfarley.com/blog/archive/2006/06/27/24728.aspx</guid>
            <pubDate>Tue, 27 Jun 2006 21:42:00 GMT</pubDate>
            <comments>http://ryanfarley.com/blog/archive/2006/06/27/24728.aspx#feedback</comments>
            <slash:comments>8</slash:comments>
            <wfw:commentRss>http://ryanfarley.com/blog/comments/commentRss/24728.aspx</wfw:commentRss>
            <trackback:ping>http://ryanfarley.com/blog/services/trackbacks/24728.aspx</trackback:ping>
        </item>
        <item>
            <title>EZShellExtensions.Net Awesome Library for Easy Shell Extensions</title>
            <link>http://ryanfarley.com/blog/archive/2006/03/29/19330.aspx</link>
            <description>&lt;div style="display:none"&gt;qt8gt0bxhw|20009F4EEE83|RyanMain|subtext_Content|Text|0xfbff260100000000b100000001000b00&lt;/div&gt;&lt;P&gt;I came across Sky Software's EZShellExtensions.Net &lt;A href="http://www.larkware.com/dg5/TheDailyGrind844.html" target=_blank&gt;via The Daily Grind&lt;/A&gt; and decided to check it out. Wow. I have to say I just love this library. There are &lt;STRONG&gt;so&lt;/STRONG&gt; many different kinds of shell extensions you can easily do with hardly &lt;EM&gt;any&lt;/EM&gt; effort at all. Take a look at a few tests I threw together:&lt;/P&gt;
&lt;P align=center&gt;&lt;IMG src="http://files.farleyzone.com/images/shellextensions1.jpg" border=0&gt;&lt;/P&gt;
&lt;P&gt;There is so much more that you can do this this library for shell extensions (see the link below for a full list of extensions you can do). Support for both VS 2003 and VS 2005, .NET 1.1 and .NET 2.0. Definitely worth checking out!&lt;/P&gt;
&lt;P&gt;
&lt;DIV class=link&gt;&lt;A href="http://www.ssware.com/ezshell/ezshell.htm" target=_blank&gt;Check out EZShellExtensions.Net&lt;/A&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;And no, I am not &lt;EM&gt;only&lt;/EM&gt; posting this to get my &lt;A href="http://www.ssware.com/bloggers.htm" target=_blank&gt;free developer license&lt;/A&gt; ;-)&lt;/P&gt;&lt;img src="http://ryanfarley.com/blog/aggbug/19330.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ryan Farley</dc:creator>
            <guid>http://ryanfarley.com/blog/archive/2006/03/29/19330.aspx</guid>
            <pubDate>Wed, 29 Mar 2006 21:41:00 GMT</pubDate>
            <comments>http://ryanfarley.com/blog/archive/2006/03/29/19330.aspx#feedback</comments>
            <slash:comments>6</slash:comments>
            <wfw:commentRss>http://ryanfarley.com/blog/comments/commentRss/19330.aspx</wfw:commentRss>
            <trackback:ping>http://ryanfarley.com/blog/services/trackbacks/19330.aspx</trackback:ping>
        </item>
        <item>
            <title>New RSS Reader - Hello GreatNews</title>
            <link>http://ryanfarley.com/blog/archive/2005/12/05/13453.aspx</link>
            <description>&lt;div style="display:none"&gt;qt8gt0bxhw|20009F4EEE83|RyanMain|subtext_Content|Text|0xfbff180100000000d800000001000800&lt;/div&gt;&lt;P&gt;&lt;A href="http://files.farleyzone.com/images/GreatNews.jpg" target=_blank&gt;&lt;IMG src="http://files.farleyzone.com/images/th_GreatNews.jpg" align=left border=0&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I've always been public about my descisions with which RSS reader to use. &lt;A href="http://ryanfarley.com/blog/archive/2005/08/26/8662.aspx"&gt;Last time I posted about this&lt;/A&gt;, I was using Sauce Reader and had found that it was bowing out from aggregator-land. Since then, I've used &lt;A href="http://www.feeddemon.com/feeddemon/index.asp"&gt;FeedDemon&lt;/A&gt; and have been a pleased, but not really that thrilled. I started using &lt;A href="http://www.curiostudio.com/"&gt;GreatNews &lt;/A&gt;and I've found that I like it (even though it's current version is missing a few things). &lt;/P&gt;
&lt;P&gt;Since Sauce Reader went belly-up I've went back to trying RSS Bandit, SharpReader, and FeedDemon, but I just couldn't really get into any of them. RSS Bandit is a great one and it just keeps getting better and better. But I am just not that excited about it. I just don't know why. I came across GreatNews when I wasn't even looking for a new reader and gave it a try. There are some things I really like about it but it's missing a few things too.&lt;/P&gt;
&lt;P&gt;There's a few things that GreatNews has that really appeal to me. It seems that lately I've been so busy that I start to fall behind on reading content that I'd like to keep up on (can't you tell? I've been slacking on updating my blog). GreatNews has some cool, yet very simple features that make it easy to find content that I don't want to miss. Watches, like search folders, let you pull in posts from other sources that you don't even subscribe to. I can built a watch that allows me to see google results of anyone that links to my blog, or see all feedster (or flickr) results that match some certain criteria. I can have GreatNews highlight certain posts based on keywords I've defined so they stand out from the other posts rolling in. I think that is cool. Not to mention that I really like the UI. It is clean, simple, and just looks nice.&lt;/P&gt;
&lt;P&gt;I've spent some time in the GreatNews forums, the developer is easy to work with and makes his nightly builds available for public consumption. Things like support for favicons were suggested in the forums and within a few days I had a new build with the support built in. &lt;/P&gt;&lt;BR&gt;
&lt;P&gt;&lt;STRONG&gt;What I like about GreatNews:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Simple and clean UI 
&lt;LI&gt;Has the features I want (almost) and not a ton of extras I don't care about 
&lt;LI&gt;Free 
&lt;LI&gt;Fast/Performs well 
&lt;LI&gt;Easy to organize with folders, labels, and watches (search folders) 
&lt;LI&gt;Channel Statistics. You can easily see what you look at the most and what subscribed feeds keep most up to date so you're able to fine tune what you spend time reading. 
&lt;LI&gt;Automatic post highlighting based on certain keywords or text so have special content stand out.&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;What I don't like about GreatNews:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;No support for comments! This one is huge, but the developer has committed to adding this. This is really the only thing I wish it had, but hasn't really bothered me too bad so far - I've been using FeedDemon for a bit now which is also missing this so I guess I am used to it.&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;I'm not saying it's better than the others I've been using. Feature-to-feature RSS Bandit wins there, but I am really liking GreatNews for now and I plan to stick with it for a while.&lt;/P&gt;
&lt;DIV class=link&gt;&lt;A href="http://www.curiostudio.com/feature.html" target=_blank&gt;Take a look at some GreatNews features&lt;/A&gt;&lt;/DIV&gt;&lt;img src="http://ryanfarley.com/blog/aggbug/13453.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ryan Farley</dc:creator>
            <guid>http://ryanfarley.com/blog/archive/2005/12/05/13453.aspx</guid>
            <pubDate>Mon, 05 Dec 2005 21:04:00 GMT</pubDate>
            <comments>http://ryanfarley.com/blog/archive/2005/12/05/13453.aspx#feedback</comments>
            <slash:comments>11</slash:comments>
            <wfw:commentRss>http://ryanfarley.com/blog/comments/commentRss/13453.aspx</wfw:commentRss>
            <trackback:ping>http://ryanfarley.com/blog/services/trackbacks/13453.aspx</trackback:ping>
        </item>
        <item>
            <title>MaxiVista v2</title>
            <link>http://ryanfarley.com/blog/archive/2005/08/16/8152.aspx</link>
            <description>&lt;div style="display:none"&gt;qt8gt0bxhw|20009F4EEE83|RyanMain|subtext_Content|Text|0xfbff1001000000009700000001000b00&lt;/div&gt;&lt;P&gt;I &lt;A href="http://ryanfarley.com/blog/archive/2004/01/07/261.aspx"&gt;posted a long time ago about MaxiVista&lt;/A&gt; and how I use it to extend my desktop onto my laptop. I've been using version 2 for a month or two now, and found that I like it even more than before.&lt;/P&gt;
&lt;P&gt;Here's a recap on MaxiVista (Read &lt;A href="http://ryanfarley.com/blog/archive/2004/01/07/261.aspx"&gt;my post from Jan04&lt;/A&gt; for more details). &lt;A href="http://www.maxivista.com/" target=_blank&gt;MaxiVista&lt;/A&gt; is software that allows you to add the monitor of another machine (could be another computer, or laptop, or tablet) as an additional monitor on your computer. This &lt;EM&gt;isn't&lt;/EM&gt; something like desktop sharing or VNC, it actually adds the display of the other computer as an additional display adapter on your computer. It connects to the other display via an WLAN, Ethernet, Firewire or USB connection. I just connect to it over my network. That's just awesome, but nothing new there from version 1. Now here's where things get really useful with version 2. In addition to using my laptop as an additional (third) monitor on my pc, I can use MaxiVista as a KVM (sort of - more like just the KM part). As an additional monitor, I can drag windows from my pc to my laptop's display. While that is cool, I find that I use MaxiVista now more as a KVM, so I see my normal laptop desktop, but I can drag my mouse over to it's display and now my mouse and keyboard are controlling the laptop.&lt;/P&gt;
&lt;P&gt;When I go out of town and have to prep my laptop to take with me, this is really useful. I don't like small laptop keyboards, sure I could use my docking station, but then I need another keyboard &amp; mouse on my desk. I could use remote desktop, but that takes the display of my pc. This way, I can get my laptop ready to go using my pc's keyboard &amp; mouse, and all I have to do is move my mouse to the laptop screen to control it, and then back to my desktop screen to control it again. Not only that, but with a press of a single key it becomes an additional monitor and I can use it to drag an application over to it. Not bad at all.&lt;/P&gt;&lt;img src="http://ryanfarley.com/blog/aggbug/8152.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ryan Farley</dc:creator>
            <guid>http://ryanfarley.com/blog/archive/2005/08/16/8152.aspx</guid>
            <pubDate>Tue, 16 Aug 2005 22:12:00 GMT</pubDate>
            <comments>http://ryanfarley.com/blog/archive/2005/08/16/8152.aspx#feedback</comments>
            <slash:comments>5</slash:comments>
            <wfw:commentRss>http://ryanfarley.com/blog/comments/commentRss/8152.aspx</wfw:commentRss>
            <trackback:ping>http://ryanfarley.com/blog/services/trackbacks/8152.aspx</trackback:ping>
        </item>
        <item>
            <title>A Saucy Switch</title>
            <link>http://ryanfarley.com/blog/archive/2005/05/12/2687.aspx</link>
            <description>&lt;div style="display:none"&gt;qt8gt0bxhw|20009F4EEE83|RyanMain|subtext_Content|Text|0xfbff0a0100000000e000000001001a00&lt;/div&gt;&lt;P&gt;Well, it is done. I've made a switch to a new RSS reader. I've used &lt;A href="http://www.rssbandit.org/" target=_blank&gt;RSS Bandit&lt;/A&gt; for quite a while now. &lt;A href="http://ryanfarley.com/blog/archive/2004/05/14/629.aspx"&gt;I tried many different readers &lt;/A&gt;and ended up quite satisfied with RSS Bandit. But it just didn't excite me any more. I had tried &lt;A href="http://www.synop.com/Products/SauceReader/" target=_blank&gt;Sauce Reader&lt;/A&gt; in the past, although to be honest, I was so in to RSS Bandit at the time that I'm not sure I really gave it a fair shake, but I have now and I am really liking it so far.&lt;/P&gt;
&lt;P&gt;I'm not going to compare RSS Bandit with Sauce Reader too much here (although the things I like or dislike about Sauce Reader are from the perspective of an RSS Bandit user), but I will share a few things that I really like (and don't like) about Sauce Reader. I am a big believer in Josh Ledgard's philosophy of &amp;#8220;&lt;A href="http://blogs.msdn.com/jledgard/archive/2004/05/13/131312.aspx" target=_blank&gt;Living in your world and listening to theirs&lt;/A&gt;&amp;#8221; and hope the same of the makers of all software that I use. So, if I have something to say about software that I like (or that I really &lt;EM&gt;want to like&lt;/EM&gt; but just can't because of some lack of features or limitations it might have) then I will say so in the hopes that it might help improve the software - or just to warn others about software I didn't like ;-)&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;Things I really like about Sauce Reader&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;UI is very clean, really great looking, and easy to find your way around. [&lt;A href="http://files.farleyzone.com/images/sauce_window_w-comments.jpg" target=_blank&gt;View&lt;/A&gt;] 
&lt;LI&gt;Very easy to see which feeds &amp; posts have new comments on it. The icon for a post or feed changes to indicate that new comments have been made. 
&lt;LI&gt;The comments are seen below the actual post - in the same page/layout. No need to expand comments and click through them one at a time, you can see them all under the post (like you do normally when viewing a blog post webpage). This one is awesome and allows me to quickly scan through comments on a post to find any comments of interest without needing to click through each one. [&lt;A href="http://files.farleyzone.com/images/sauce_window_w-comments.jpg" target=_blank&gt;View&lt;/A&gt;] 
&lt;LI&gt;Outlook 2003 style grouping of posts for a feed to make it easy to locate posts made today/yesterday/lastweek/etc. 
&lt;LI&gt;Built in tool for posting to your own blog. The tool is pretty good (well, downgrade that to &amp;#8220;OK&amp;#8220;), but just the basic formatting kinds of stuff built in. No ability for formatting code or anything, but still, it does make it quick and easy for posting to your blog from your reader. [&lt;A href="http://files.farleyzone.com/images/sauce_blog_post.jpg" target=_blank&gt;View&lt;/A&gt;] 
&lt;LI&gt;You have a &amp;#8220;Weblog This&amp;#8220; option available so you can quickly and easily post about some other post you read (it's will add in a blockquote of the text from the original post for you). 
&lt;LI&gt;IE integration. It adds a tool bar in IE that will allow you to post about a page your on (using a &amp;#8220;Weblog This&amp;#8220; button) and also a Subscribe button which automatically becomes enabled if it detects an RSS feed on the page (It doesn't really &amp;#8220;detect&amp;#8220; an RSS feed but just looks for the RSSLink link tag in the page). 
&lt;LI&gt;Sauce Reader is very simple, not overly-done or anything. Just a simple, but nice looking reader. The same reasons that I like &lt;A href="http://www.textpad.com/" target=_blank&gt;TextPad&lt;/A&gt;, it just gives me what I need and doesn't over-complicate with too many bells and whistles. 
&lt;LI&gt;Quick to navigate around. 
&lt;LI&gt;Search folders (RSS Bandit had this too, but I still wanted to mention it) 
&lt;LI&gt;No more goofy smiley-face icon with an eye-patch ;-)&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;Things I don't like about Sauce Reader:&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;The headers in Sauce Reader don't change with the current theme in XP/2003. They are always blue (assuming you are using the blue luna theme). Not a big deal, but it bugs me. 
&lt;LI&gt;Although I do love the way it displays comments (under the post) I &lt;STRONG&gt;hate&lt;/STRONG&gt; (and yes, that was bolded) that trackbacks are not clickable. You can see trackbacks listed under a post, but you can't click the trackback to get to it. That is &lt;EM&gt;&lt;U&gt;so&lt;/U&gt;&lt;/EM&gt; frustrating.
&lt;LI&gt;I can't seem to find any way to flag a post that I want to read in more detail later (other than leaving it as unread, but that's not the same). Well, I can flag it (by clicking the flag for the entry in the list, but I can't seem to be able to find my flagged items easily (I'd like to have a folder that shows all flagged items like RSS Bandit does). 
&lt;LI&gt;I can't find any way to post comments from Sauce Reader. This sucks and would have been a deal breaker for me &lt;A href="http://ryanfarley.com/blog/archive/2004/05/14/629.aspx"&gt;when I was evaluating RSS readers&lt;/A&gt; a year ago, but I guess I don't post as many comments now as I did before because it doesn't seem to bug me as much (but it does still bug me). With so much comment spam out there it seems that there are not as many blogs out there that allow that anyway. (Oops, see edit below) 
&lt;LI&gt;There just has to be a way to do this, but for the life of me I cannot find how to sort the feeds in the list alphabetically. They are all in random order (I imported them from an OPML file). I could drag them all to the where I want them in the list, but I have a lot of subscribed feeds and it would be too much of a pain to do it manually. 
&lt;LI&gt;I have the option set to minimize to the tray. That only works if I click the actual minimize button for some reason. If I click the in on the windows task bar along the bottom to minimize it then it does not go to the tray. Weird and a bug, so not necessarily fair to list here...&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;All in all, Sauce Reader and RSS Bandit stack up well against each other. RSS Bandit has more features, but I never used most of them. I seem to be able to get through my hundreds of unread posts faster using Sauce Reader so they have gotten something right. The newest version of Sauce Reader was a complete rewrtite. The Synop developers dropped .NET completely and went to Delphi. They claim to have had performance issues with .NET. I guess it is all with how you write your code. I have some .NET apps that are resource hogs and slow, but I have others that are quick snappy with small footprints. You really could say that about anything, but I'm sticking with .NET. &lt;/P&gt;
&lt;P&gt;Sauce Reader is well worth a try. They do say it is free for personal use, but I get the feeling that they could be gearing up for charging for it at some point (that's just my perception). I'd have to re-evaluate it again at that point. I do like it, and have switched to using it as my default aggregator, but not sure it excites me enough to pay for it over other free ones out there and I don't think it is there yet. Not that I'm cheap (well, maybe) but it better be a lot better than other free ones to ask money for it. The Synop guys did a great job and deserve something for their efforts, but for now it is free for personal use and will likely stay that way, who knows. The software has only what I consider somewhat minor things that I don't like so it has some real potential to grow into something awesome.&lt;/P&gt;
&lt;P&gt;
&lt;DIV class=link&gt;&lt;A href="http://www.synop.com/Products/SauceReader/" target=_blank&gt;Download Sauce Reader&lt;/A&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;STRONG&gt;Edit:&lt;/STRONG&gt; OK. I did find a way to comment on a post from Sauce Reader. You can right-click the post entry in the list and then there is a &amp;#8220;New Comment&amp;#8221; option. Works just fine although I don't like having to right-click there. I'd prefer a button next to the ones in the top right corner of the post HTML pane or something. But a big step forward none the less for me to like the app even more.&lt;/P&gt;&lt;img src="http://ryanfarley.com/blog/aggbug/2687.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ryan Farley</dc:creator>
            <guid>http://ryanfarley.com/blog/archive/2005/05/12/2687.aspx</guid>
            <pubDate>Thu, 12 May 2005 19:34:00 GMT</pubDate>
            <comments>http://ryanfarley.com/blog/archive/2005/05/12/2687.aspx#feedback</comments>
            <slash:comments>4</slash:comments>
            <wfw:commentRss>http://ryanfarley.com/blog/comments/commentRss/2687.aspx</wfw:commentRss>
            <trackback:ping>http://ryanfarley.com/blog/services/trackbacks/2687.aspx</trackback:ping>
        </item>
    </channel>
</rss>