﻿<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" 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:geo="http://www.w3.org/2003/01/geo/wgs84_pos#">
  <channel>
    <title>aaron.stemen.me</title>
    <description>Because there aren't enough .NET bloggers on the internet</description>
    <link>http://aaron.stemen.me/blog/</link>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <generator>BlogEngine.NET 1.6.1.0</generator>
    <language>en-US</language>
    <blogChannel:blogRoll>http://aaron.stemen.me/blog/opml.axd</blogChannel:blogRoll>
    <blogChannel:blink>http://www.dotnetblogengine.net/syndication.axd</blogChannel:blink>
    <dc:creator>Aaron Stemen</dc:creator>
    <dc:title>aaron.stemen.me</dc:title>
    <geo:lat>0.000000</geo:lat>
    <geo:long>0.000000</geo:long>
    <item>
      <title>Prevent Time Warner from Hijacking Your Bing Address Bar Searches</title>
      <description>&lt;p&gt;I use Bing as my default search engine and browser home page.&amp;nbsp; What can I say?&amp;nbsp; I like the daily Bing image!&amp;nbsp; I also like Bing as a search engine.&amp;nbsp; If I can't find something on Bing, I sometimes fall back to Google, but that's pretty rare.&lt;/p&gt;
&lt;p&gt;I noticed over the past week or two, when I do a search in the address bar, I end up with a Time Warner search page.&amp;nbsp; I thought maybe it was my new cable modem since it doesn't happen when I'm at work on the same laptop.&lt;/p&gt;
&lt;p&gt;I searched around for some answers and found that some other people are experiencing the same thing.&amp;nbsp; One answer I found was to update my DNS servers to the Google public DNS servers.&amp;nbsp; I tried updating the DNS server entries on my router without any success.&lt;/p&gt;
&lt;p&gt;I found that I could see the bing.com address in the address bar just before it switched to the Time Warner search page.&amp;nbsp; So I ran Fiddler2 to capture the traffic.&amp;nbsp; I did a search from the Bing home page directly to see the differences.&lt;/p&gt;
&lt;p&gt;The major difference that I found is that the Bing add-on for IE uses a query string parameter named src with a value of ie9tr.&amp;nbsp; When I take that query string parameter out, the URL from the address bar search goes through and I get Bing results back.&lt;/p&gt;
&lt;p&gt;The trick is to open the registry editor and go to HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\{0633EE93-D776-472f-A0FF-E1416B8B2E3A}.&amp;nbsp; Look for the TopResultURL value.&amp;nbsp; Edit the data changing the data from http://www.bing.com/search?q={searchTerms}&amp;amp;src=ie9tr to http://www.bing.com/search?q={searchTerms} removing "&amp;amp;src=ie9tr".&lt;/p&gt;
&lt;p&gt;After doing that and restarting Internet Explorer, my address bar searches now go through without being redirected by Time Warner.&lt;/p&gt;</description>
      <link>http://aaron.stemen.me/blog/post/2013/09/26/Prevent-Time-Warner-from-Hijacking-Your-Bing-Address-Bar-Searches.aspx</link>
      <author>agstemen</author>
      <comments>http://aaron.stemen.me/blog/post/2013/09/26/Prevent-Time-Warner-from-Hijacking-Your-Bing-Address-Bar-Searches.aspx#comment</comments>
      <guid>http://aaron.stemen.me/blog/post.aspx?id=72f292ba-7aff-4359-982c-179b5637fcef</guid>
      <pubDate>Thu, 26 Sep 2013 19:43:00 -1500</pubDate>
      <dc:publisher>agstemen</dc:publisher>
      <pingback:server>http://aaron.stemen.me/blog/pingback.axd</pingback:server>
      <pingback:target>http://aaron.stemen.me/blog/post.aspx?id=72f292ba-7aff-4359-982c-179b5637fcef</pingback:target>
      <slash:comments>4</slash:comments>
      <trackback:ping>http://aaron.stemen.me/blog/trackback.axd?id=72f292ba-7aff-4359-982c-179b5637fcef</trackback:ping>
      <wfw:comment>http://aaron.stemen.me/blog/post/2013/09/26/Prevent-Time-Warner-from-Hijacking-Your-Bing-Address-Bar-Searches.aspx#comment</wfw:comment>
      <wfw:commentRss>http://aaron.stemen.me/blog/syndication.axd?post=72f292ba-7aff-4359-982c-179b5637fcef</wfw:commentRss>
    </item>
    <item>
      <title>SharePoint 2010 - Reverse Proxy</title>
      <description>&lt;p&gt;We have two web servers.&amp;nbsp; One server accepts traffic from the WAN on port 80.&amp;nbsp; The other accepts traffic from the WAN on port 443.&amp;nbsp; Our SharePoint 2010 instance lives on the former, but we only want public traffic coming to the SharePoint server over SSL.&amp;nbsp; Which, as you probably know, is port 443 by default.&lt;/p&gt;
&lt;p&gt;What to do, what to do?&lt;/p&gt;
&lt;p&gt;We had several options including opening up another port and allowing SSL traffic over a different port to the port 80 server.&amp;nbsp; I didn't like that idea.&amp;nbsp; In the past, for various things, I've used the IIS URL Rewrite module for various things, so I decided to see if I could put some rules in place with that.&lt;/p&gt;
&lt;p&gt;What I found is that URL Rewrite has a template for doing a reverse proxy.&amp;nbsp; Brilliant!&amp;nbsp; Fortunately for me, it's a common enough scenario that Microsoft decided to add a rules template to version 2 of the Rewrite Module.&lt;/p&gt;
&lt;p&gt;If you haven't done so already, and I recommend doing it regardless of whether or not you're doing a reverse proxy, &lt;a title="URL Rewrite" href="http://www.iis.net/download/URLRewrite" target="_blank"&gt;download&lt;/a&gt; and install the URL Rewrite module.&amp;nbsp; If you already have the IIS Manager open, you'll need to close it and reopen it for the extension to show up.&lt;/p&gt;
&lt;p style="TEXT-ALIGN: center"&gt;&lt;a href="http://aaron.stemen.me/blog/image.axd?picture=image_8.png"&gt;&lt;img style="BACKGROUND-IMAGE: none; BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; MARGIN: 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px; PADDING-TOP: 0px" title="image" src="http://aaron.stemen.me/blog/image.axd?picture=image_8.png" border="0" alt="image" width="543" height="397" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Select your site in the Sites under your server on the left.&amp;nbsp; Open the URL Rewrite extension, and click Add Rule from the Actions bar on the right-hand side.&amp;nbsp; You'll be presented with a dialog.&amp;nbsp; Choose Reverse Proxy from the Inbound and Outbound Rules category.&lt;/p&gt;
&lt;p style="TEXT-ALIGN: center"&gt;&lt;a href="http://aaron.stemen.me/blog/image.axd?picture=image_9.png"&gt;&lt;img style="BACKGROUND-IMAGE: none; BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px; PADDING-TOP: 0px" title="image" src="http://aaron.stemen.me/blog/image.axd?picture=image_9.png" border="0" alt="image" width="640" height="423" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;You are likely to be presented with a dialog saying that you need Application Request Routing installed to do the reverse proxy.&amp;nbsp; Not a problem, just follow the instructions and install it.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://aaron.stemen.me/blog/image.axd?picture=image_10.png"&gt;&lt;img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px; padding-top: 0px" title="image" src="http://aaron.stemen.me/blog/image.axd?picture=image_thumb_10.png" border="0" alt="image" width="490" height="192" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This one doesn't have a standalone installer.&amp;nbsp; At least not one that I could find.&amp;nbsp; You'll need to install it using the Microsoft Web Platform Installer.&amp;nbsp; I didn't care for that because I wanted to keep the number of components on the server to a minimum, but I didn't have much choice.&lt;/p&gt;
&lt;p&gt;After installing it, closing IIS Manager, and opening it again, I repeated the previous steps and this time, I was presented with a dialog related to ARR, but asking if I wanted to enable it.&amp;nbsp; Of course I clicked OK.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://aaron.stemen.me/blog/image.axd?picture=image_11.png"&gt;&lt;img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px; padding-top: 0px" title="image" src="http://aaron.stemen.me/blog/image.axd?picture=image_thumb_11.png" border="0" alt="image" width="490" height="223" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Finally, I was presented with a simple data entry screen to configure some server and routing&amp;nbsp; information.&amp;nbsp; I filled it out similar to this:&lt;/p&gt;
&lt;p style="TEXT-ALIGN: center"&gt;&lt;a href="http://aaron.stemen.me/blog/image.axd?picture=image_12.png"&gt;&lt;img style="BACKGROUND-IMAGE: none; BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; MARGIN: 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px; PADDING-TOP: 0px" title="image" src="http://aaron.stemen.me/blog/image.axd?picture=image_12.png" border="0" alt="image" width="560" height="570" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;If you're doing what I'm doing and taking an HTTPS connection and forwarding it to an internal URL over HTTP, then make sure that the Enable SLL Offloading checkbox is checked.&amp;nbsp; Also, if SharePoint is configured properly, as I'll explain below, you won't need an Outbound Rule for rewriting URLs in the response.&lt;/p&gt;
&lt;p&gt;Now SharePoint needs to be configured properly.&amp;nbsp; The internal domain that you use needs to be configured as an internet address in the Alternate Access Mappings, and the public URL needs to be the primary internet URL for the site.&amp;nbsp; Let me show you what I'm talking about.&lt;/p&gt;
&lt;p&gt;In Central Administration, go to Application Management and select Configure alternate access mappings.&amp;nbsp; On the top right, there's a drop down named Alternate Access Mapping Collection.&amp;nbsp; Choose the SharePoint site that you're putting the reverse proxy in front of.&lt;/p&gt;
&lt;p&gt;Whatever you used as the server name in the Inbound Rules for the reverse proxy, this needs to be an internal URL for the internet zone.&amp;nbsp; If it's not already, click on Add Internal URLs and add it.&lt;/p&gt;
&lt;p style="text-align: center;"&gt;&lt;a href="http://aaron.stemen.me/blog/image.axd?picture=image_13.png"&gt;&lt;img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://aaron.stemen.me/blog/image.axd?picture=image_13.png" border="0" alt="image" width="640" height="243" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;If the URL that you're using is one of your public URLs for the SharePoint site, like mine was the public URL for the intranet zone, you'll need to either choose a different internal URL for your inbound rule, or you'll need to change the public URL.&amp;nbsp; I changed the public URL.&lt;/p&gt;
&lt;p&gt;The internet URL is what your HTTPS web server is using.&amp;nbsp; So if the URL that you're using on the receiving web server is https://sharepoint.domain.com, then the internet zone in the public rules for your SharePoint site should be https://sharepoint.domain.com.&lt;/p&gt;
&lt;p&gt;I believe that's it!&amp;nbsp; Because of the alternate access mapping, SharePoint 2010 will do the work for you of updating all of the URLs in the responses to use the internet URL for any requests coming in on http://sharepoint.internaldomain.internal alleviating you of the need to have an outbound rule to rewrite responses.&lt;/p&gt;</description>
      <link>http://aaron.stemen.me/blog/post/2012/01/18/SharePoint-2010-Reverse-Proxy.aspx</link>
      <author>agstemen</author>
      <comments>http://aaron.stemen.me/blog/post/2012/01/18/SharePoint-2010-Reverse-Proxy.aspx#comment</comments>
      <guid>http://aaron.stemen.me/blog/post.aspx?id=1e11e6d2-ce55-432d-9563-357a7b0deada</guid>
      <pubDate>Wed, 18 Jan 2012 00:23:00 -1500</pubDate>
      <dc:publisher>agstemen</dc:publisher>
      <pingback:server>http://aaron.stemen.me/blog/pingback.axd</pingback:server>
      <pingback:target>http://aaron.stemen.me/blog/post.aspx?id=1e11e6d2-ce55-432d-9563-357a7b0deada</pingback:target>
      <slash:comments>75</slash:comments>
      <trackback:ping>http://aaron.stemen.me/blog/trackback.axd?id=1e11e6d2-ce55-432d-9563-357a7b0deada</trackback:ping>
      <wfw:comment>http://aaron.stemen.me/blog/post/2012/01/18/SharePoint-2010-Reverse-Proxy.aspx#comment</wfw:comment>
      <wfw:commentRss>http://aaron.stemen.me/blog/syndication.axd?post=1e11e6d2-ce55-432d-9563-357a7b0deada</wfw:commentRss>
    </item>
    <item>
      <title>SharePoint 2010 - Can't Delete Search Service Application</title>
      <description>&lt;p&gt;Yesterday, I discussed &lt;a title="SharePoint 2010 - The search service is not able to connect to the machine that hosts the administration component" href="http://aaron.stemen.me/blog/post/2012/01/16/SharePoint-2010-The-search-service-is-not-able-to-connect-to-the-machine-that-hosts-the-administration-component.aspx"&gt;my issue&lt;/a&gt; where my Search Service Application wasn't working.&amp;#160; It wasn't crawling, couldn't connect to some back end, and searching was returning an error.&amp;#160; After I created the new Search Service Application, I had to delete the old one.&lt;/p&gt;  &lt;p&gt;Sounds simple, right?&amp;#160; Sure, if you understand that you might not be able to delete it from the SharePoint Central Administration.&lt;/p&gt;  &lt;p&gt;Here's the problem: the Search Service Application is selected.&amp;#160; Delete is clicked.&amp;#160; You get a fancy-looking popup with a swirling logo asking you to please wait.&amp;#160; And you do!&amp;#160; FOREVER!&lt;/p&gt;  &lt;p&gt;&lt;a href="http://aaron.stemen.me/blog/image.axd?picture=image_7.png"&gt;&lt;img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://aaron.stemen.me/blog/image.axd?picture=image_thumb_7.png" width="661" height="182" /&gt;&lt;/a&gt;&lt;/p&gt;    &lt;p&gt;That spinning logo never goes away regardless of how long you wait.&amp;#160; You close out and go back into the Manage Service Applications page to see that it's still there.&lt;/p&gt;  &lt;p&gt;The solution is to use stsadm.exe.&amp;#160; I found &lt;a title="Deleting the search service application" href="http://donalconlon.wordpress.com/2010/08/27/deleting-the-search-service-application/" target="_blank"&gt;this solution&lt;/a&gt;.&amp;#160; Following the solution on that page, I executed:&lt;/p&gt;  &lt;p&gt;stsadm.exe -o deleteconfigurationobject -id &amp;quot;&amp;lt;insert Application Service GUID here&amp;gt;&amp;quot;&lt;/p&gt;  &lt;p&gt;It didn't complete instantaneously, but it did complete.&amp;#160; When I went back into Central Administration, the extra Search Service Application was gone!&lt;/p&gt;</description>
      <link>http://aaron.stemen.me/blog/post/2012/01/17/SharePoint-2010-Cant-Delete-Search-Service-Application.aspx</link>
      <author>agstemen</author>
      <comments>http://aaron.stemen.me/blog/post/2012/01/17/SharePoint-2010-Cant-Delete-Search-Service-Application.aspx#comment</comments>
      <guid>http://aaron.stemen.me/blog/post.aspx?id=f603ad4c-9204-401b-aa37-62450cd3d845</guid>
      <pubDate>Tue, 17 Jan 2012 04:47:37 -1500</pubDate>
      <dc:publisher>agstemen</dc:publisher>
      <pingback:server>http://aaron.stemen.me/blog/pingback.axd</pingback:server>
      <pingback:target>http://aaron.stemen.me/blog/post.aspx?id=f603ad4c-9204-401b-aa37-62450cd3d845</pingback:target>
      <slash:comments>140</slash:comments>
      <trackback:ping>http://aaron.stemen.me/blog/trackback.axd?id=f603ad4c-9204-401b-aa37-62450cd3d845</trackback:ping>
      <wfw:comment>http://aaron.stemen.me/blog/post/2012/01/17/SharePoint-2010-Cant-Delete-Search-Service-Application.aspx#comment</wfw:comment>
      <wfw:commentRss>http://aaron.stemen.me/blog/syndication.axd?post=f603ad4c-9204-401b-aa37-62450cd3d845</wfw:commentRss>
    </item>
    <item>
      <title>SharePoint 2010 - The search service is not able to connect to the machine that hosts the administration component</title>
      <description>&lt;p&gt;A couple of months ago, I set up a SharePoint 2010 instance.&amp;nbsp; I had some issues, but the site was up and working for the most part.&lt;/p&gt;
&lt;p&gt;One of the issues was the Search Application Service.&amp;nbsp; For some reason, the service wouldn't crawl the site, and it was giving me an error in Central Administration in the System Status.&amp;nbsp; The message said, "The search service is not able to connect to the machine that hosts the administration component.&amp;nbsp; Verify that the administration component '&amp;lt;guid goes here&amp;gt;' in search application 'Search Service Application' is in a good state and try again.&lt;/p&gt;
&lt;p&gt;Also, when running a search from within a SharePoint site, I would get the error message, "The search request was unable to connect to the Search Service."&amp;nbsp; Of course it can't.&amp;nbsp; The search service isn't working, right?&lt;/p&gt;
&lt;p&gt;I read several things that told me to change the app pool to a different one [&lt;a title="SharePoint 2010: Search Service is not able to connect to the machine that hosts the administration component" href="http://planetmoss.blogspot.com/2010/09/sharepoint-2010-search-service-is-not.html" target="_blank"&gt;link&lt;/a&gt;], make sure the indexing service is running [&lt;a title="Error: The search request was unable to connect to the Search Service." href="http://social.technet.microsoft.com/Forums/en-US/sharepointsearch/thread/9c7bc920-23b1-45b8-ae68-770bfe4cf5a6/" target="_blank"&gt;link&lt;/a&gt;], and to make sure that the search application is associated with the proxy group (same thread in the previous link).&amp;nbsp; This latter solution is what helped me out.&amp;nbsp; Not only did the contributor mention the association, but he also said that he deleted the old service and created a new one.&lt;/p&gt;
&lt;p&gt;The first thing I tried was following his instructions of checking the "Service Application Associations."&amp;nbsp; This is under Central Administration &amp;gt; Application Management &amp;gt; Service Applications &amp;gt; Configure service application associations.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://aaron.stemen.me/blog/image.axd?picture=image.png"&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" src="http://aaron.stemen.me/blog/image.axd?picture=image_thumb.png" border="0" alt="image" width="661" height="264" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;After clicking on the "Configure" link, you're presented with a page that has your web applications and an Application Proxy Group associated with the web applications.&amp;nbsp; Mine was named "Default" and was associated with the user site and the main site.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://aaron.stemen.me/blog/image.axd?picture=image_1.png"&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" src="http://aaron.stemen.me/blog/image.axd?picture=image_thumb_1.png" border="0" alt="image" width="660" height="214" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;So, clicking on Default, I get a dialog showing me all of the application services associated with the Application Proxy Group.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://aaron.stemen.me/blog/image.axd?picture=image_2.png"&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" src="http://aaron.stemen.me/blog/image.axd?picture=image_thumb_2.png" border="0" alt="image" width="663" height="446" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I noticed that there was no Search Service in the list at all!&amp;nbsp; Looking at the "Type" I did see that everything was a whatever-service "Proxy".&amp;nbsp; My search service wasn't there, and after looking in the service applications, I didn't have a Search Service Application Proxy on the Search Service Application.&amp;nbsp; Either it was never there, or I accidentally deleted it.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://aaron.stemen.me/blog/image.axd?picture=image_3.png"&gt;&lt;img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" src="http://aaron.stemen.me/blog/image.axd?picture=image_thumb_3.png" border="0" alt="image" width="660" height="179" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I created a new Search Service Application.&amp;nbsp; After creating it, I verified the proxy was there:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://aaron.stemen.me/blog/image.axd?picture=image_4.png"&gt;&lt;img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" src="http://aaron.stemen.me/blog/image.axd?picture=image_thumb_4.png" border="0" alt="image" width="661" height="220" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Then I verified that the search service was associated with my web application:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://aaron.stemen.me/blog/image.axd?picture=image_5.png"&gt;&lt;img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" src="http://aaron.stemen.me/blog/image.axd?picture=image_thumb_5.png" border="0" alt="image" width="658" height="138" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;After that, all the bells and whistles came on for the crawl status:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://aaron.stemen.me/blog/image.axd?picture=image_6.png"&gt;&lt;img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" src="http://aaron.stemen.me/blog/image.axd?picture=image_thumb_6.png" border="0" alt="image" width="660" height="417" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Finally, I now get results in my searches through the SharePoint site.&lt;/p&gt;</description>
      <link>http://aaron.stemen.me/blog/post/2012/01/16/SharePoint-2010-The-search-service-is-not-able-to-connect-to-the-machine-that-hosts-the-administration-component.aspx</link>
      <author>agstemen</author>
      <comments>http://aaron.stemen.me/blog/post/2012/01/16/SharePoint-2010-The-search-service-is-not-able-to-connect-to-the-machine-that-hosts-the-administration-component.aspx#comment</comments>
      <guid>http://aaron.stemen.me/blog/post.aspx?id=7b769dde-40a9-4fbc-a18a-dcdb3e415437</guid>
      <pubDate>Mon, 16 Jan 2012 05:05:00 -1500</pubDate>
      <dc:publisher>agstemen</dc:publisher>
      <pingback:server>http://aaron.stemen.me/blog/pingback.axd</pingback:server>
      <pingback:target>http://aaron.stemen.me/blog/post.aspx?id=7b769dde-40a9-4fbc-a18a-dcdb3e415437</pingback:target>
      <slash:comments>153</slash:comments>
      <trackback:ping>http://aaron.stemen.me/blog/trackback.axd?id=7b769dde-40a9-4fbc-a18a-dcdb3e415437</trackback:ping>
      <wfw:comment>http://aaron.stemen.me/blog/post/2012/01/16/SharePoint-2010-The-search-service-is-not-able-to-connect-to-the-machine-that-hosts-the-administration-component.aspx#comment</wfw:comment>
      <wfw:commentRss>http://aaron.stemen.me/blog/syndication.axd?post=7b769dde-40a9-4fbc-a18a-dcdb3e415437</wfw:commentRss>
    </item>
    <item>
      <title>Blog Publishing with Windows Live Writer</title>
      <description>&lt;p&gt;I subscribe to quite a few blogs.&amp;#160; I put them in Google Reader so that I can easily read them from my phone or my tablet.&amp;#160; When I run across one that seems like it might be useful to me, either now or later, I &amp;quot;star&amp;quot; it.&lt;/p&gt;  &lt;p&gt;Recently I decided to go back through my starred posts looking for posts on useful utilities.&amp;#160; I really look for anything that can keep my machine clean, running faster, help with productivity, whatever.&amp;#160; I wish I could double-star those because of how useful I find them.&lt;/p&gt;  &lt;p&gt;This time around, the article that stood out for me, and I've gone back to it several times, is Scott Hanselman's 2011 Ultimate Developer and Power Users Tool List for Windows.&amp;#160; Say that three times fast.&amp;#160; Seriously.&lt;/p&gt;  &lt;p&gt;The author, Scott Hanselman [blog | Twitter], apparently updates this list every year or two.&amp;#160; I already use a few of those utilities, but the one that I overlooked until a few days ago is Windows Live Writer.&lt;/p&gt;  &lt;p&gt;One of my [failed] goals this year was to do a lot more publishing on all of my blog sites.&amp;#160; I find that it's maybe more than a little inconvenient to log into the various sites, go into the editor, which may or may not be very friendly (it is the web after all), write, spell-check, proof-read, and publish.&amp;#160; Windows Live Writer gives me a unified front for doing just that.&lt;/p&gt;  &lt;p&gt;When I set up Windows Live Writer for this blog site, and the others, it downloaded the stylesheets.&amp;#160; It appears to be giving me an accurate view of what my post will look like once it’s published to the site!&amp;#160; The rich text editor in BlogEngine.NET doesn’t even do that for me.&amp;#160; There's a Preview tab so if this isn't good enough, I can see what it’ll look like on the site itself.&lt;/p&gt;  &lt;p&gt;While this is obviously going to help me publish more blog posts, I still need to find something for mobile devices.&amp;#160; I find that using my tablet is easier than carting my laptop around the house.&amp;#160; Also, the aforementioned rich text editor in BE.NET isn't very Android browser friendly.&amp;#160; If anybody has a recommendation for something on Android, I would love to hear about it.&lt;/p&gt;</description>
      <link>http://aaron.stemen.me/blog/post/2011/12/28/Blog-Publishing-with-Windows-Live-Writer.aspx</link>
      <author>agstemen</author>
      <comments>http://aaron.stemen.me/blog/post/2011/12/28/Blog-Publishing-with-Windows-Live-Writer.aspx#comment</comments>
      <guid>http://aaron.stemen.me/blog/post.aspx?id=c5cb6893-acb3-422f-9746-9a1687f07c27</guid>
      <pubDate>Wed, 28 Dec 2011 05:46:40 -1500</pubDate>
      <dc:publisher>agstemen</dc:publisher>
      <pingback:server>http://aaron.stemen.me/blog/pingback.axd</pingback:server>
      <pingback:target>http://aaron.stemen.me/blog/post.aspx?id=c5cb6893-acb3-422f-9746-9a1687f07c27</pingback:target>
      <slash:comments>125</slash:comments>
      <trackback:ping>http://aaron.stemen.me/blog/trackback.axd?id=c5cb6893-acb3-422f-9746-9a1687f07c27</trackback:ping>
      <wfw:comment>http://aaron.stemen.me/blog/post/2011/12/28/Blog-Publishing-with-Windows-Live-Writer.aspx#comment</wfw:comment>
      <wfw:commentRss>http://aaron.stemen.me/blog/syndication.axd?post=c5cb6893-acb3-422f-9746-9a1687f07c27</wfw:commentRss>
    </item>
    <item>
      <title>Nook Feedback - Reading Textbooks</title>
      <description>&lt;p&gt;I may have mentioned &lt;a title="Review - Barnes and Noble Nook" href="http://aaron.stemen.me/blog/post/2010/10/24/Review-Barnes-and-Noble-Nook.aspx"&gt;once&lt;/a&gt; or &lt;a title="Review - Barnes &amp;amp; Noble Nook Firmware v1.5" href="http://aaron.stemen.me/blog/post/2010/12/18/Review-Barnes-and-Noble-Nook-Firmware-v15.aspx"&gt;twice&lt;/a&gt;, I really like my Nook. I bought a Samsung Galaxy Tab 10.1 not long ago. I installed the Nook app on there and use it as another reader on occasion. It's a fantastic compliment to the Nook. I'll get into that later.&lt;/p&gt;
&lt;p&gt;Because I like the Nook so much for reading, I decided to take it a step further. I bought a technical book (textbook) to read on it. The book was "The Art of Unit Testing" by Roy Osherove. I reviewed it in my last &lt;a title="Book Review: The Art of Unit Testing by Roy Osherove" href="http://aaron.stemen.me/blog/post/2011/09/13/Book-Review-The-Art-of-Unit-Testing-by-Roy-Osherove.aspx"&gt;post&lt;/a&gt;. My opinion of reading textbooks on the Nook wasn't as positive as my review of Mr. Osherove's book. Which, if you read my review, you're probably making a face right now. The kind of face like you just watched a video of some guy getting kicked in the nuts. &lt;em&gt;That&lt;/em&gt; face!&lt;/p&gt;
&lt;p&gt;Here are what I feel the pros and cons are for reading tech books on the Nook.&lt;/p&gt;
&lt;h2&gt;Pros&lt;/h2&gt;
&lt;p&gt;First of all, think of the biggest, thickest, heaviest tech book (or any kind of book for that matter) that you've read or own. If you have it handy, pick it up. try reading a page from it. If you don't have it handy, visualize it in your mind. Feel or picture the strain on your wrists. Maybe the book is so unwieldy that you have to set it down and read it on a table or desk.&lt;/p&gt;
&lt;p&gt;Now picture reading that same book, except it's height and width are similar to a paperback. It's about 1/4" thick, and it's held easily in one hand. That's the major pro! On the Nook, a book that's wide, thick, 500 pounds, or some other undesirable attribute, is now easy to hold and read! Aching wrists and losing your place are things of the past!&lt;/p&gt;
&lt;p&gt;Another pro, if the book is part of your Barnes &amp;amp; Noble library (read: you bought it from Barnes &amp;amp; Noble), you can read the same book on multiple devices: phone, tablet, laptop, Nook, whatever device there's an app for it. If you bought your eBook from, say, Manning for example, you don't have that page sync feature. I want to find something for that, but its not a priority yet.&lt;/p&gt;
&lt;p&gt;Searching for keywords is another pro. It's not something that you can do easily on device though. I just tested it out on my tablet using the Android Nook app, and I got a nice listing of what chapter and page the keyword was on, and a snippet of the line that contains it. Very nice since if I'm searching for a keyword, I'm probably not going to do it from my Nook itself. I'm more likely to look for specific things while on my tablet or PC.&lt;/p&gt;
&lt;p&gt;If you've got an eReader, or have read about them, then you're probably familiar with the other pros of using them. I'm not going to elaborate anymore on them here.&lt;/p&gt;
&lt;h2&gt;Cons&lt;/h2&gt;
&lt;p&gt;There are a couple of things that I don't really care for with reading textbooks on the Nook. After looking into it, I think they're probably just obstacles for a device like the Nook and probably the Kindle.&lt;/p&gt;
&lt;p&gt;The first thing was the font. The font for the majority of the text is fine, but the code samples in the book I read were in a fixed width font that was really thin. It was like a really thin Courier New. It was difficult to read. I tried changing fonts without much, if any, improvement. It's not as bad in the Nook app on my tablet.&lt;/p&gt;
&lt;p&gt;The other issue was with the code samples themselves. Most of them were fine, but there were a couple of samples that were so long they ran off the bottom of the screen. That would be fine if the sample continued on the next page, which happened with most of the samples. But a couple of them ran off the page and I'm assuming into oblivion. I'll never know how those code samples ended. I wish that I had kept track of them because I wanted to compare with the PC and Android versions to see if it was simply a device issue. I skimmed through the samples on my tablet and on the desktop to see if I could find the same kind of issue on the apps, but they appeared to be fine. I also compared the look to how the Kindle app rendered the mobi version, and while there were some differences, it rendered fine there too. So I think that it's a shortcoming of the device.&lt;/p&gt;
&lt;p&gt;Another con is that you can't put your books on display. How are people going to know that you're smart if you can't put all of your tech books on display for them to see? Nobody's going to be able to "oh" and "ah" over your big brain made smrter by reading yor big books.&lt;/p&gt;
&lt;h2&gt;Summary&lt;/h2&gt;
&lt;p&gt;Initially I really had hoped for better. After finishing "The Art of Unit Testing", I vowed that I wasn't going to buy another tech book in eBook format! I swore that I was going to tell the world about how horrible it is to read a tech book on an eReader!&lt;/p&gt;
&lt;p&gt;I bought two more eBooks from Manning a few days ago...&lt;/p&gt;
&lt;p&gt;Since the initial read, I've played with the Nook apps for PC and Android. Now, I think the freely available Nook apps help overcome the pain I felt when reading on the Nook itself. And the reality is that I'm moving more toward the convenience and awesomeness of the Nook and the free Nook apps. I'm finding it harder and harder to justify having a physical book when I can carry so many books around in such a convenient package and be able to search through them easily like I would a white paper or the internet.&lt;/p&gt;
&lt;p&gt;I'm going to continue to grow my eBook collection and eventually stop buying printed books. Though for tech books, I might use my tablet more for reading instead of the Nook itself. Unfortunately, I won't be able to show off my growing book collection, but my officemate has died or moved away (spiders hate cold weather?) and wouldn't appreciate what he was seeing anyway.&lt;/p&gt;</description>
      <link>http://aaron.stemen.me/blog/post/2011/12/22/Nook-Feedback-Reading-Textbooks.aspx</link>
      <author>agstemen</author>
      <comments>http://aaron.stemen.me/blog/post/2011/12/22/Nook-Feedback-Reading-Textbooks.aspx#comment</comments>
      <guid>http://aaron.stemen.me/blog/post.aspx?id=62fcbd81-99ad-43e7-8d88-a9a04e613ef1</guid>
      <pubDate>Thu, 22 Dec 2011 07:24:00 -1500</pubDate>
      <dc:publisher>agstemen</dc:publisher>
      <pingback:server>http://aaron.stemen.me/blog/pingback.axd</pingback:server>
      <pingback:target>http://aaron.stemen.me/blog/post.aspx?id=62fcbd81-99ad-43e7-8d88-a9a04e613ef1</pingback:target>
      <slash:comments>116</slash:comments>
      <trackback:ping>http://aaron.stemen.me/blog/trackback.axd?id=62fcbd81-99ad-43e7-8d88-a9a04e613ef1</trackback:ping>
      <wfw:comment>http://aaron.stemen.me/blog/post/2011/12/22/Nook-Feedback-Reading-Textbooks.aspx#comment</wfw:comment>
      <wfw:commentRss>http://aaron.stemen.me/blog/syndication.axd?post=62fcbd81-99ad-43e7-8d88-a9a04e613ef1</wfw:commentRss>
    </item>
    <item>
      <title>Book Review: The Art of Unit Testing by Roy Osherove</title>
      <description>&lt;p&gt;Let me start off by saying, I didn't seek this book out.&amp;nbsp; It was recommended by a friend after I read "Working Effectively with Legacy Code" by Michael Feathers (see my review &lt;a title="Book Review: Working Effectively with Legacy Code by Michael Feathers" href="http://aaron.stemen.me/blog/post/2011/08/22/Book-Review-Working-Effectively-with-Legacy-Code-by-Michael-Feathers.aspx"&gt;here&lt;/a&gt;).&amp;nbsp; With that, here's the bad, the good, and the summary (in &lt;strong&gt;that&lt;/strong&gt; order!).&lt;/p&gt;
&lt;h2&gt;The Bad&lt;/h2&gt;
&lt;p&gt;First, the bad.&amp;nbsp; The book (&lt;a title="Unit Testing - The Art Of Unit Testing - Home" href="http://artofunittesting.com/" target="_blank"&gt;official site&lt;/a&gt;) itself wasn't bad.&amp;nbsp; Unfortunately, I didn't learn much from the book.&amp;nbsp; I had followed up Michael Feathers book with this one, and maybe that was the issue.&amp;nbsp; Michael Feathers book was densely packed with tons of information.&amp;nbsp; "The Art of Unit Testing" felt pretty light in comparison.&lt;/p&gt;
&lt;p&gt;There was nothing really ground breaking about the book.&amp;nbsp; A good amount of the information presented is information that can be easily found around the web, in samples from the unit testing tools available, and in other books that maybe aren't even about unit testing (&lt;a title="Professional ASP.NET MVC 1.0" href="http://www.wrox.com/WileyCDA/WroxTitle/Professional-ASP-NET-MVC-1-0.productCd-0470384611.html" target="_blank"&gt;link&lt;/a&gt;). It made more than a couple of references back to Michael Feathers book encouraging the reader to maybe go look at that book.&lt;/p&gt;
&lt;h2&gt;The Good&lt;/h2&gt;
&lt;p&gt;It was written well and easily understood. I feel like it's organized well.&amp;nbsp; It also goes into detail about techniques you can use to try to integrate unit testing into your organization.&amp;nbsp; The author himself has been through the scenario multiple times and is able to relate his experiences.&lt;/p&gt;
&lt;p&gt;The first thing that was new to me was how to hide some of the constructors from the public interface, but make them visible for testing.&amp;nbsp; Declare them as &lt;strong&gt;internal&lt;/strong&gt; and add the &lt;strong&gt;InternalsVisibleTo&lt;/strong&gt; attribute in the AssemblyInfo file.&amp;nbsp; That helped settle a disagreement I was having with one of my former coworkers.&amp;nbsp; He felt reflection should be used to set fields and properties instead of using dependency injection techniques like overloaded constructors.&amp;nbsp; Declaring the constructors as internal gave him more of a warm, fuzzy feeling than having them public, and it let me do what I felt was best.&amp;nbsp; So thanks for settling that Roy!&lt;/p&gt;
&lt;p&gt;The author was working for &lt;a title="Typemock" href="http://www.typemock.com/" target="_blank"&gt;Typemock&lt;/a&gt; while writing the book.&amp;nbsp; He even gave that disclosure multiple times throughout the book in an attempt to dissuade the user from feeling like he was secretly trying to sell the reader on Typemock products like Isolator.&amp;nbsp; He did give lots of examples using &lt;a title="Typemock Isolator" href="http://www.typemock.com/isolator-product-page" target="_blank"&gt;Typemock Isolator&lt;/a&gt;, but they were to demonstrate what's possible with various tools.&amp;nbsp; Typemock Isolator definitely has a lot of power and features, as it should since it's a commercial product.&lt;/p&gt;
&lt;p&gt;While a lot of examples were around Typemock Isolator, many (and probably more) examples were given using &lt;a title="Moq" href="http://code.google.com/p/moq/" target="_blank"&gt;Moq&lt;/a&gt; and &lt;a title="Rhino Mocks" href="http://ayende.com/wiki/Rhino+Mocks.ashx?AspxAutoDetectCookieSupport=1"&gt;Rhino Mocks&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The other place that I found useful information was in the appendices.&amp;nbsp; The appendices went through and described various tools that can fill various needs in testing (unit, integration, and even acceptance).&amp;nbsp; The listings and descriptions were really good.&amp;nbsp; It pointed out some tools that I didn't know about and plan on investigating.&amp;nbsp; For now though, I'm pretty happy with xUnit.net, MS Test, and Moq.&lt;/p&gt;
&lt;h2&gt;Summary&lt;/h2&gt;
&lt;p&gt;Overall&amp;nbsp;the content in the book really felt too too basic for me.&amp;nbsp; Maybe that's my fault for following up the Michael Feathers book with this one.&amp;nbsp; Maybe I expected the same level of detail and amount of content that was in my previous read.&amp;nbsp; Maybe I'm just wicked smart!&amp;nbsp; Who knows?&lt;/p&gt;
&lt;p&gt;I wouldn't recommend this book to anybody except people that are looking to get started with unit testing and haven't read Michael Feathers book yet.&amp;nbsp; I feel like this might be a better book to start with and followed up with Michael Feathers book "Working Effectively with Legacy Code".&amp;nbsp; Reading in that order may lead to better enlightenment.&lt;/p&gt;
&lt;p&gt;While it was pretty basic, I did get some useful information out of it.&amp;nbsp; Now though, it'll probably just collect cyber dust sitting on my cyber bookshelf (I got the eBook version if you're wondering what the hell I'm talking about).&lt;/p&gt;</description>
      <link>http://aaron.stemen.me/blog/post/2011/09/13/Book-Review-The-Art-of-Unit-Testing-by-Roy-Osherove.aspx</link>
      <author>agstemen</author>
      <comments>http://aaron.stemen.me/blog/post/2011/09/13/Book-Review-The-Art-of-Unit-Testing-by-Roy-Osherove.aspx#comment</comments>
      <guid>http://aaron.stemen.me/blog/post.aspx?id=5415b06a-8de7-4439-8e84-eae574a6acd7</guid>
      <pubDate>Tue, 13 Sep 2011 22:19:00 -1500</pubDate>
      <dc:publisher>agstemen</dc:publisher>
      <pingback:server>http://aaron.stemen.me/blog/pingback.axd</pingback:server>
      <pingback:target>http://aaron.stemen.me/blog/post.aspx?id=5415b06a-8de7-4439-8e84-eae574a6acd7</pingback:target>
      <slash:comments>112</slash:comments>
      <trackback:ping>http://aaron.stemen.me/blog/trackback.axd?id=5415b06a-8de7-4439-8e84-eae574a6acd7</trackback:ping>
      <wfw:comment>http://aaron.stemen.me/blog/post/2011/09/13/Book-Review-The-Art-of-Unit-Testing-by-Roy-Osherove.aspx#comment</wfw:comment>
      <wfw:commentRss>http://aaron.stemen.me/blog/syndication.axd?post=5415b06a-8de7-4439-8e84-eae574a6acd7</wfw:commentRss>
    </item>
    <item>
      <title>Book Review: Working Effectively with Legacy Code by Michael Feathers</title>
      <description>&lt;p&gt;The book isn't new (published in 2005), and I'm certainly not the first to review the book (&lt;a title="Search Results: review &amp;quot;working effectively with legacy code&amp;quot; blog" href="http://www.google.com/search?q=review+%22working+effectively+with+legacy+code%22&amp;amp;rls=com.microsoft:en-US&amp;amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;amp;startIndex=&amp;amp;startPage=1#sclient=psy&amp;amp;hl=en&amp;amp;safe=off&amp;amp;rls=com.microsoft:en-US&amp;amp;source=hp&amp;amp;q=review+%22working+effectively+with+legacy+code%22+blog&amp;amp;aq=f&amp;amp;aqi=&amp;amp;aql=&amp;amp;oq=&amp;amp;pbx=1&amp;amp;bav=on.2,or.r_gc.r_pw.r_cp.&amp;amp;fp=10f5994450cf0bb4&amp;amp;biw=1920&amp;amp;bih=641" target="_blank"&gt;link&lt;/a&gt;).&amp;nbsp; I'm also not the first to tell you, it's a good book (&lt;a title="Amazon.com: Customer Reviews: Working Effectively with Legacy Code" href="http://www.amazon.com/Working-Effectively-Legacy-Michael-Feathers/product-reviews/0131177052/ref=dp_top_cm_cr_acr_txt?ie=UTF8&amp;amp;showViewpoints=1" target="_blank"&gt;link&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;I could just leave it at that: it's a good book.&amp;nbsp; But I feel like I should tell you why I think that: because it's awesome!&amp;nbsp; Also, it's written by a really smart &lt;a title="Michael Feathers" href="http://michaelfeathers.typepad.com/" target="_blank"&gt;guy&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;If that's not reason enough, here's some more detail.&lt;/p&gt;
&lt;p&gt;When I started reading the book, I was a little apprehensive.&amp;nbsp; I was told the book is pretty dry and dense.&amp;nbsp; I was more than a little surprised to find that the book was a real page turner!&amp;nbsp; I rarely go through a technical book wanting to read the next page or chapter because of the very reason thing I was warned about with this book: dry and dense.&amp;nbsp; I couldn't put this book down.&amp;nbsp; I raved to &lt;a title="Chris Slee" href="http://twitter.com/#!/chrisslee" target="_blank"&gt;Chris Slee&lt;/a&gt; about it repeatedly.&amp;nbsp; I know he was tired of hearing about it, but he was a good sport about it,&amp;nbsp; I think he even bought the eBook eventually.&lt;/p&gt;
&lt;p&gt;Early in the book, there's mention that the book doesn't need to be read cover to cover, and it's okay (recommended even) to skip around.&amp;nbsp; There are references to later pages and chapters related to the current topic.&amp;nbsp; Those are pointing you to the part of the book that defines and describes the pattern/technique being described.&amp;nbsp; That's the one thing I did wrong: I didn't go to those while I was reading.&amp;nbsp; Why?&amp;nbsp; Because I'm &lt;a title="Obsessive&amp;ndash;compulsive personality disorder" href="http://en.wikipedia.org/wiki/Obsessive%E2%80%93compulsive_personality_disorder" target="_blank"&gt;OCD&lt;/a&gt; about not skipping around in a book.&amp;nbsp; I also thought that it was making reference to other sections, and I was afraid of getting lost!&amp;nbsp; My fear was unfounded.&amp;nbsp; One: I'm a man.&amp;nbsp; Men don't get lost.&amp;nbsp; Am I right, guys? Huh?&amp;nbsp; Two: it was just to read through the technique.&amp;nbsp; I have a finger and book marks,&amp;nbsp; I could have saved my place and gone right back.&lt;/p&gt;
&lt;p&gt;Even though I did it wrong, the book still changed how I do my work.&amp;nbsp; That applies to both &lt;a title="Greenfield project" href="http://en.wikipedia.org/wiki/Greenfield_project" target="_blank"&gt;greenfield&lt;/a&gt; and &lt;a title="Brownfield (software development)" href="http://en.wikipedia.org/wiki/Brownfield_(software_development)" target="_blank"&gt;brownfield&lt;/a&gt; development.&lt;/p&gt;
&lt;p&gt;The book uses C++, Java, and .NET for examples, but the techniques can be applies to other technologies.&amp;nbsp; That is, if you understand it.&amp;nbsp; I glossed over the C++ examples and techniques.&amp;nbsp; Not because I don't care, but because...well...I guess I don't care.&amp;nbsp; I don't do C++ development, and my exposure is usually pretty limited to it.&lt;/p&gt;
&lt;p&gt;I actually finished reading this book months ago, but it still stands out in my mind, and my work reflects the things I learned from it (you're welcome everybody working with my most recent work).&amp;nbsp; It made that much of an impression on me.&lt;/p&gt;
&lt;p&gt;To make a long rambling shorter, the book was very good.&amp;nbsp; It was a little dry in a few places, but the information was presented very well throughout the entire book.&amp;nbsp; I now have a much different and better view of what a unit test really is, how to write them, and how to integrate unit tests into existing code.&amp;nbsp; I'm even considering reading it again.&amp;nbsp; That says a lot.&amp;nbsp; I probably won't re-read it, but the fact that I'm considering it is monumental because I&amp;nbsp;&lt;strong&gt;&lt;em&gt;never&lt;/em&gt;&lt;/strong&gt; re-read books.&lt;/p&gt;</description>
      <link>http://aaron.stemen.me/blog/post/2011/08/22/Book-Review-Working-Effectively-with-Legacy-Code-by-Michael-Feathers.aspx</link>
      <author>agstemen</author>
      <comments>http://aaron.stemen.me/blog/post/2011/08/22/Book-Review-Working-Effectively-with-Legacy-Code-by-Michael-Feathers.aspx#comment</comments>
      <guid>http://aaron.stemen.me/blog/post.aspx?id=b680ceb2-644e-4def-ac64-e60f2ec8ede1</guid>
      <pubDate>Mon, 22 Aug 2011 04:09:00 -1500</pubDate>
      <dc:publisher>agstemen</dc:publisher>
      <pingback:server>http://aaron.stemen.me/blog/pingback.axd</pingback:server>
      <pingback:target>http://aaron.stemen.me/blog/post.aspx?id=b680ceb2-644e-4def-ac64-e60f2ec8ede1</pingback:target>
      <slash:comments>107</slash:comments>
      <trackback:ping>http://aaron.stemen.me/blog/trackback.axd?id=b680ceb2-644e-4def-ac64-e60f2ec8ede1</trackback:ping>
      <wfw:comment>http://aaron.stemen.me/blog/post/2011/08/22/Book-Review-Working-Effectively-with-Legacy-Code-by-Michael-Feathers.aspx#comment</wfw:comment>
      <wfw:commentRss>http://aaron.stemen.me/blog/syndication.axd?post=b680ceb2-644e-4def-ac64-e60f2ec8ede1</wfw:commentRss>
    </item>
    <item>
      <title>My New Office</title>
      <description>&lt;p style="text-align: center;"&gt;I didn't announce it, but I recently left &lt;a title="AWH - Web Solutions, Mobile Solutions, Custom Software Solutions" href="http://www.awhone.net/" target="_blank"&gt;AWH&lt;/a&gt; to join the &lt;a title="Great Migrations - Software Migration Tools: About &amp;gt; Team" href="http://www.greatmigrations.com/about_team.aspx" target="_blank"&gt;Great Migrations&lt;/a&gt; team as a new partner! It's a really exciting opportunity for me, and it should prove interesting.&lt;/p&gt;
&lt;p&gt;Because we're a small product team, we all work from our homes. That's great, except for a few things:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;When I worked from home while at AWH, I sat at the kitchen table and worked from my laptop. This was because of the next few reasons.&lt;/li&gt;
&lt;li&gt;My office is a wreck. Some of Sarah's stuff is in here, there's clutter everywhere.&lt;/li&gt;
&lt;li&gt;My desk is the same roll-away desk I got as a junior in college (over a decade ago).&lt;/li&gt;
&lt;li&gt;My monitor is an old 17" (19"?) CRT.&lt;/li&gt;
&lt;li&gt;It's dark, I'm hungry, and there's nobody to laugh at my various witty remarks.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;The good news is that most of that is easily remedied!&lt;/p&gt;
&lt;p&gt;A little over a week ago, Sarah and I borrowed my mother-in-law's van and went to IKEA with a couple of friends. While there, we got some furniture for my son's new bedroom, and we picked up a desk for me.&lt;/p&gt;
&lt;p&gt;Once we got home, I started clearing out the office. I moved everything out that I needed to, filling another room and blocking the front door. Sarah took some of her stuff upstairs, and I assembled the desk.&lt;/p&gt;
&lt;p&gt;The desk that I got is the Galant series corner desk with an extension on each end. I experienced this particular desk while I was at AWH, and for IKEA, it's pretty sturdy. There's a good brace underneath the table top that holds any weight pretty well, and the legs are pretty solid. Assembly wasn't too bad. I had it together in an hour or so.&lt;/p&gt;
&lt;p&gt;In addition to the desk, I ordered a couple of monitors from Newegg.com. They had the Hannspree 23" LCDs on sale for $140/each with free shipping. I ordered three: two for me; one for Sarah.&lt;/p&gt;
&lt;p&gt;After getting everything set up, I continued to clean the office and organize it. Here's a picture of the office:&lt;/p&gt;
&lt;p style="text-align: center;"&gt;&lt;a title="The new office - full-size image" href="http://aaron.stemen.me/blog/image.axd?picture=2011%2f8%2fnew_office.png"&gt;&lt;img src="http://aaron.stemen.me/blog/image.axd?picture=2011%2f8%2fnew_office.png" alt="The new office" width="400" height="300" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Here's a picture of my officemate:&lt;/p&gt;
&lt;p style="text-align: center;"&gt;&lt;a title="My office mate (it's a spider!) - full-size image" href="http://aaron.stemen.me/blog/image.axd?picture=2011%2f8%2fofficemate.png"&gt;&lt;img src="http://aaron.stemen.me/blog/image.axd?picture=2011%2f8%2fofficemate.png" alt="My officemate (it's a spider!)" width="400" height="300" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Here in the home office, I have a strict "I'm going to kill my officemates eventually" policy. Your days are numbered my friend...&lt;/p&gt;
&lt;p&gt;I need to hang some office policies around the room too. I was thinking about printing and posting the office sexual harassment policy, which is pretty strict:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;strong&gt;Sexual Harassment Policy:&lt;/strong&gt;&lt;br /&gt;Strictly &lt;span style="text-decoration: underline;"&gt;NO&lt;/span&gt; sexual harassment!&lt;/p&gt;
&lt;p&gt;Not sure where to put it though...&lt;/p&gt;
&lt;p&gt;Anyway, that takes care of the first few things on the list, but what about #5? I end up talking to myself by the end of the day. It's going to require some effort on my part and on the part of my friends. I need to get out and meet up with people for lunch, code and coffee, drinks, whatever. I need to get out.&lt;/p&gt;
&lt;p&gt;So, if you haven't seen me for a while, let me know and we can get together! I'll be happy to get out of the office and see some friendly faces.&lt;/p&gt;</description>
      <link>http://aaron.stemen.me/blog/post/2011/08/16/My-New-Office.aspx</link>
      <author>agstemen</author>
      <comments>http://aaron.stemen.me/blog/post/2011/08/16/My-New-Office.aspx#comment</comments>
      <guid>http://aaron.stemen.me/blog/post.aspx?id=f8abaef8-bfaf-48ee-87be-c0067e7bae43</guid>
      <pubDate>Tue, 16 Aug 2011 04:49:00 -1500</pubDate>
      <dc:publisher>agstemen</dc:publisher>
      <pingback:server>http://aaron.stemen.me/blog/pingback.axd</pingback:server>
      <pingback:target>http://aaron.stemen.me/blog/post.aspx?id=f8abaef8-bfaf-48ee-87be-c0067e7bae43</pingback:target>
      <slash:comments>257</slash:comments>
      <trackback:ping>http://aaron.stemen.me/blog/trackback.axd?id=f8abaef8-bfaf-48ee-87be-c0067e7bae43</trackback:ping>
      <wfw:comment>http://aaron.stemen.me/blog/post/2011/08/16/My-New-Office.aspx#comment</wfw:comment>
      <wfw:commentRss>http://aaron.stemen.me/blog/syndication.axd?post=f8abaef8-bfaf-48ee-87be-c0067e7bae43</wfw:commentRss>
    </item>
    <item>
      <title>The Droid Eris and Gingerbread</title>
      <description>&lt;p&gt;I rooted my phone some time ago.  I then flashed it with a custom ROM with &lt;a title="The Droid Eris and Froyo" href="http://aaron.stemen.me/blog/post/2010/08/30/The-Droid-Eris-and-Froyo.aspx"&gt;undesirable results&lt;/a&gt;.  I've been pretty unhappy with my phone lately because of a lack of storage space for apps, it's slow, and I get bored easily.&lt;/p&gt;
&lt;p&gt;Do I get a new phone?  No, not yet.&lt;/p&gt;
&lt;p&gt;Do I try flashing it with a ROM again?  I think Yoda said it best.  You know what he said.&lt;/p&gt;
&lt;p&gt;In my search, I discovered that some of the newer ROMs give the user the ability to move apps to the SD card.  Sounds like just the thing!  But what ROM do I use?  I did some research and found that there is a &lt;a title="CyanogenMOD 7.1.0 RC1 Gingerbread NIGHTLY for the HTC Eris" href="http://forum.xda-developers.com/showthread.php?t=944430" target="_blank"&gt;ROM&lt;/a&gt; (more than one actually) that is based on the latest &lt;a title="CyanogenMod" href="http://www.cyanogenmod.com/" target="_blank"&gt;CyanogenMod&lt;/a&gt; release.  I read a little about it, and I decided to do it, not try it since...you know...thanks Yoda.&lt;/p&gt;
&lt;p&gt;The splash screen that comes up is pretty cool.  Totally non-functional, but I appreciate CyanogenMod's splash screen.&lt;/p&gt;
&lt;p&gt;I have found very little reason to complain about this ROM!  It's been very stable with some minor exceptions.  I find that I can't run Navigator with GPS on and listen to music through the player at the same time.  After a while, the phone spontaneously reboots.  Also, for some reason, it couldn't get location through GPS once.&lt;/p&gt;
&lt;p&gt;I'm also not a huge fan of LauncherPro, which is the UI installed as opposed to something like HTC Sense.  It works fine, and I've got it customized now, but every once in a while, I would accidentally start to resize a widget or icon, and it would nag about buying the upgraded version to allow for resizing your home screen widgets.  Not a deal breaker by any means.&lt;/p&gt;
&lt;p&gt;The ability to move apps to the SD card has been great for me.  This made the effort of reinstalling all of my apps totally worthwhile.&lt;/p&gt;
&lt;p&gt;After about a week, I installed an app called Battery Calibration.  I reset the battery stats (whatever that is or does).  My battery life has been great.  I can go a couple of days without having to charge the phone.  A definite improvement over the stock ROM!&lt;/p&gt;
&lt;p&gt;I've been running the ROM for a few weeks now, which is more than I can say about KaosFroyo (sorry Kaos!).  If you're getting tired of your Eris (or other older Android phone), I would definitely recommend trying one of the  CyanogenMod "unofficial" ROMs.  For me, it's been mostly stable, snappy, and refreshing to use!&lt;/p&gt;</description>
      <link>http://aaron.stemen.me/blog/post/2011/08/11/The-Droid-Eris-and-Gingerbread.aspx</link>
      <author>agstemen</author>
      <comments>http://aaron.stemen.me/blog/post/2011/08/11/The-Droid-Eris-and-Gingerbread.aspx#comment</comments>
      <guid>http://aaron.stemen.me/blog/post.aspx?id=3a3f4210-d09a-4383-85b4-0d52209a98e0</guid>
      <pubDate>Thu, 11 Aug 2011 00:13:00 -1500</pubDate>
      <dc:publisher>agstemen</dc:publisher>
      <pingback:server>http://aaron.stemen.me/blog/pingback.axd</pingback:server>
      <pingback:target>http://aaron.stemen.me/blog/post.aspx?id=3a3f4210-d09a-4383-85b4-0d52209a98e0</pingback:target>
      <slash:comments>55</slash:comments>
      <trackback:ping>http://aaron.stemen.me/blog/trackback.axd?id=3a3f4210-d09a-4383-85b4-0d52209a98e0</trackback:ping>
      <wfw:comment>http://aaron.stemen.me/blog/post/2011/08/11/The-Droid-Eris-and-Gingerbread.aspx#comment</wfw:comment>
      <wfw:commentRss>http://aaron.stemen.me/blog/syndication.axd?post=3a3f4210-d09a-4383-85b4-0d52209a98e0</wfw:commentRss>
    </item>
  </channel>
</rss>