<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Rob Boek &#187; Google</title>
	<atom:link href="http://robboek.com/tag/google/feed/" rel="self" type="application/rss+xml" />
	<link>http://robboek.com</link>
	<description></description>
	<lastBuildDate>Tue, 17 May 2011 20:04:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using WordPress on IIS7</title>
		<link>http://robboek.com/2009/01/03/using-wordpress-on-iis7/</link>
		<comments>http://robboek.com/2009/01/03/using-wordpress-on-iis7/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 08:34:59 +0000</pubDate>
		<dc:creator>Rob Boek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[IIS7]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://robboek.com/?p=65</guid>
		<description><![CDATA[I’ve been running WordPress 2.7 for a few weeks now and I have been very happy with it so far. In this post I’ll share my thought process behind running WordPress on IIS7 and the details on how I have it setup.
I setup my first blog back in 2006 running on dasBlog. I was never [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I’ve been running <a href="http://wordpress.org/">WordPress</a> 2.7 for a few weeks now and I have been very happy with it so far. In this post I’ll share my thought process behind running WordPress on IIS7 and the details on how I have it setup.</p>
<p>I setup my first blog back in 2006 running on <a href="http://www.dasblog.info/">dasBlog</a>. I was never really happy with it, mostly because I couldn’t find a theme I liked. I wrote a few posts, then when I changed hosting providers, I never setup the permissions correctly and was unable to post. It would have been an easy fix, but it became an excuse to not blog.</p>
<p>When I decided to start blogging again, I wanted something that would be easy to setup, and wouldn’t take a lot of effort to maintain. Since I’m a fan of Google’s offerings, I started off using <a href="http://www.blogger.com">Blogger</a>. Unfortunately, <a href="http://robboek.com/2008/12/12/blog-on-hold/">I ran into some DNS limitations</a> and couldn’t get things setup the way I wanted. I also checked out the <a href="http://wordpress.com/">hosted WordPress solution</a>, but it was even more limited then Blogger.</p>
<p>I decided to use WordPress as my blogging platform because there is a very active community, lots of themes available, and because you there are plugins that allow you to add whatever features you want without any coding.</p>
<p>Since IIS7 has decent PHP support, I decided to use a Windows plan on <a href="http://gadaddy.com">GoDaddy.com</a>. This will allow me to put .NET apps on my site down the road. I also have another site that I need to host that requires .NET and this keeps my hosting costs lower.</p>
<p>Installing WordPress 2.7 was pretty easy. I just had to create a MySQL database, upload the WordPress files and run through the setup.</p>
<p>Next, I had to get <a href="http://codex.wordpress.org/Introduction_to_Blogging#Pretty_Permalinks">pretty permalinks</a> working the way I wanted them. One way to do this would be to use Microsoft’s <a href="http://learn.iis.net/page.aspx/460/using-url-rewrite-module/">URL Rewrite Module</a>. The problem is that GoDaddy doesn’t currently support the URL Rewrite Module (I’ve heard that they plan to support it soon). I ended up using the <a href="http://www.managedfusion.com/products/url-rewriter/">ManagedFusion Url Rewriter</a>.</p>
<h2>Setting Up the Managed Fusion Url Rewriter to work with WordPress</h2>
<p>Download the ManagedFusion Url Rewriter files <a href="http://www.managedfusion.com/products/url-rewriter/">here</a>.</p>
<p>If you don’t already have one, create a folder named “bin” at the root of your blog.</p>
<p>Copy ManagedFusion.Rewriter.dll and ManagedFusionRewriter.pdb into the bin folder you just created.</p>
<p>If you don’t have one, create a file named “web.config” in the root folder of your blog that looks like the one below, otherwise just add the info to your existing web.config.</p>
<p><strong>web.config</strong></p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;configuration<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;system.webserver<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;validation</span> <span style="color: #000066;">validateintegratedmodeconfiguration</span>=<span style="color: #ff0000;">&quot;false&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;modules</span> <span style="color: #000066;">runallmanagedmodulesforallrequests</span>=<span style="color: #ff0000;">&quot;true&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
                <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;add</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;ManagedFusion.Rewriter.RewriterModule, ManagedFusion.Rewriter&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;RewriterModule&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/modules<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;handlers<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
                <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;add</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;System.Web.HttpForbiddenHandler, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;RewriterProxyHandler&quot;</span> <span style="color: #000066;">path</span>=<span style="color: #ff0000;">&quot;RewriterProxy.axd&quot;</span> <span style="color: #000066;">verb</span>=<span style="color: #ff0000;">&quot;*&quot;</span> <span style="color: #000066;">precondition</span>=<span style="color: #ff0000;">&quot;integratedMode&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/handlers<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/system.webserver<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/configuration<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>Create a file named “ManagedFusion.Rewriter.rules” in the root folder of your blog. This will allow you to use .htaccess syntax to handle the Url Rewrites. I set mine up to remove the www from my hostname, remove index.php from the url, and redirect urls from my old blog to the new location.</p>
<p><strong>ManagedFusion.Rewriter.rules</strong></p>

<div class="wp_syntax"><div class="code"><pre class="apache" style="font-family:monospace;"><span style="color: #adadad; font-style: italic;">#  Managed Fusion Url Rewriter</span>
<span style="color: #adadad; font-style: italic;">#  http://managedfusion.com/products/url-rewriter/</span>
<span style="color: #adadad; font-style: italic;">#</span>
<span style="color: #adadad; font-style: italic;">#  Developed by: Nick Berardi</span>
<span style="color: #adadad; font-style: italic;">#       Support: support@managedfusion.com</span>
<span style="color: #adadad; font-style: italic;">#</span>
<span style="color: #00007f;">RewriteEngine</span> <span style="color: #0000ff;">on</span>
&nbsp;
<span style="color: #adadad; font-style: italic;">#</span>
<span style="color: #adadad; font-style: italic;"># Place Rules Below</span>
<span style="color: #adadad; font-style: italic;">#</span>
&nbsp;
<span style="color: #adadad; font-style: italic;"># misc WordPress rewrites</span>
<span style="color: #00007f;">RewriteRule</span> ^/wp-login\.php$ /wp-login.php [L]
<span style="color: #00007f;">RewriteRule</span> ^/wp-comments-post\.php$ /wp-comments-post.php [L]
<span style="color: #00007f;">RewriteRule</span> ^/wp-admin/(.*)$ /wp-admin/$<span style="color: #ff0000;">1</span> [L]
&nbsp;
<span style="color: #adadad; font-style: italic;"># deny access to evil robots site rippers offline browsers and other nasty scum</span>
<span style="color: #00007f;">RewriteCond</span> %{HTTP_USER_AGENT} ^Anarchie [OR]
<span style="color: #00007f;">RewriteCond</span> %{HTTP_USER_AGENT} ^ASPSeek [OR]
<span style="color: #00007f;">RewriteCond</span> %{HTTP_USER_AGENT} ^attach [OR]
<span style="color: #00007f;">RewriteCond</span> %{HTTP_USER_AGENT} ^autoemailspider [OR]
<span style="color: #00007f;">RewriteCond</span> %{HTTP_USER_AGENT} ^Xaldon\ WebSpider [OR]
<span style="color: #00007f;">RewriteCond</span> %{HTTP_USER_AGENT} ^Xenu [OR]
<span style="color: #00007f;">RewriteCond</span> %{HTTP_USER_AGENT} ^Zeus.*Webster [OR]
<span style="color: #00007f;">RewriteCond</span> %{HTTP_USER_AGENT} ^Zeus
<span style="color: #00007f;">RewriteRule</span> ^.* - [F,L]
&nbsp;
<span style="color: #adadad; font-style: italic;"># remove www</span>
<span style="color: #00007f;">RewriteCond</span> %{HTTP_HOST} ^www\.robboek\.com$ [NC]
<span style="color: #00007f;">RewriteRule</span> ^(.*)$ http://robboek.com$<span style="color: #ff0000;">1</span> [R=<span style="color: #ff0000;">301</span>]
&nbsp;
<span style="color: #adadad; font-style: italic;"># redirect old urls</span>
<span style="color: #00007f;">RewriteRule</span> ^/<span style="color: #ff0000;">2008</span>/<span style="color: #ff0000;">12</span>/blog-on-hold.html$ /<span style="color: #ff0000;">2008</span>/<span style="color: #ff0000;">12</span>/<span style="color: #ff0000;">12</span>/blog-on-hold/ [R=<span style="color: #ff0000;">301</span>]
<span style="color: #00007f;">RewriteRule</span> ^/<span style="color: #ff0000;">2008</span>/<span style="color: #ff0000;">11</span>/google-chrome-wont-start-in-vista-x64\.html$ /<span style="color: #ff0000;">2008</span>/<span style="color: #ff0000;">11</span>/<span style="color: #ff0000;">16</span>/google-chrome-wont-start-in-vista-x64/ [R=<span style="color: #ff0000;">301</span>]
<span style="color: #00007f;">RewriteRule</span> ^/<span style="color: #ff0000;">2008</span>/<span style="color: #ff0000;">11</span>/pass-community-summit-<span style="color: #ff0000;">2008</span>-events.html$ /<span style="color: #ff0000;">2008</span>/<span style="color: #ff0000;">11</span>/<span style="color: #ff0000;">14</span>/pass-community-summit-<span style="color: #ff0000;">2008</span>-events-calendar/ [R=<span style="color: #ff0000;">301</span>]
<span style="color: #00007f;">RewriteRule</span> ^/<span style="color: #ff0000;">2008</span>/<span style="color: #ff0000;">11</span>/fort-stevens-camping-trip.html$ /<span style="color: #ff0000;">2008</span>/<span style="color: #ff0000;">11</span>/<span style="color: #ff0000;">14</span>/fort-stevens-camping-trip/ [R=<span style="color: #ff0000;">301</span>]
<span style="color: #00007f;">RewriteRule</span> ^/<span style="color: #ff0000;">2008</span>/<span style="color: #ff0000;">10</span>/first-post.html$ /<span style="color: #ff0000;">2008</span>/<span style="color: #ff0000;">10</span>/<span style="color: #ff0000;">10</span>/first-post/ [R=<span style="color: #ff0000;">301</span>]
<span style="color: #00007f;">RewriteRule</span> ^/blog/CommentView,guid,1d8cba50-0814-4c89-86df-eca669973e8e.aspx$ /<span style="color: #ff0000;">2006</span>/09/<span style="color: #ff0000;">29</span>/junctions-in-windows-vista/ [R=<span style="color: #ff0000;">301</span>]
<span style="color: #00007f;">RewriteRule</span> ^/blog/<span style="color: #ff0000;">2006</span>/09/<span style="color: #ff0000;">29</span>/JunctionsInWindowsVista.aspx$ /<span style="color: #ff0000;">2006</span>/09/<span style="color: #ff0000;">29</span>/junctions-in-windows-vista/ [R=<span style="color: #ff0000;">301</span>]
&nbsp;
<span style="color: #adadad; font-style: italic;"># rewrite all nonexistent files and directories to use index.php for WordPress</span>
<span style="color: #00007f;">RewriteCond</span> %{REQUEST_FILENAME} !-d
<span style="color: #00007f;">RewriteCond</span> %{REQUEST_FILENAME} !-f
<span style="color: #00007f;">RewriteRule</span> ^(.*)$ /index.php$<span style="color: #ff0000;">1</span></pre></div></div>

<p>I also setup a custom 404 error page that will allow me to use the WordPress 404 page in my theme.</p>
<p><strong>404.php</strong></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$qs</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'QUERY_STRING'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$pos</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strrpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$qs</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'://'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$pos</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$qs</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'/'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$pos</span> <span style="color: #339933;">+</span> <span style="color: #cc66cc;">4</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REQUEST_URI'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$qs</span><span style="color: #339933;">,</span> <span style="color: #000088;">$pos</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'PATH_INFO'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REQUEST_URI'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">include</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'index.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<h2>Plugins I&#8217;m using</h2>
<p><strong><a href="http://wordpress.org/extend/plugins/disqus-comment-system/">DISQUS Comment System</a></p>
<p></strong>The main reason I’m using <a href="http://disqus.com/">DISQUS</a> is because comment notification emails weren&#8217;t working for me with the default WordPress comments. It does add some nice functionality though, including threaded comments, comment spam protection, facebook connect integration and more. The other thing I liked about DISQUS is that all of my comments are synced in the WordPress database so if I ever want to stop using DISQUS, all I need to do is disable it.</p>
<p><strong><a href="http://www.google.com/support/feedburner/bin/answer.py?answer=78483&amp;topic=13252">FeedBurner FeedSmith</a></strong></p>
<p>Redirects the RSS links over to <a href="http://feedproxy.google.com/RobBoek">my feed</a> on <a href="http://www.feedburner.com/">FeedBurner</a>.</p>
<p><strong><a href="http://cavemonkey50.com/code/google-analyticator/">Google Analyticator</a></strong></p>
<p>Makes it easy to add <a href="http://www.google.com/analytics/">Google Analytics</a> tracking codes. It also has some nice features like disabling tracking for blog administrators.</p>
<p><strong><a href="http://suche.pytalhost.de/2008/12/13/wordpress-plugin-simple-google-sitemap-v10/">Simple Google Sitemap</a></strong></p>
<p>Generates an XML sitemap to give to the search engines. If you haven’t tried <a href="http://www.google.com/webmaster/tools">Google Webmaster Tools</a> it’s worth a look.</p>
<p><strong><a href="http://wordpress.org/extend/plugins/wp-syntax/">WP-Syntax</a></p>
<p></strong>Easy to use syntax highlighting code like you see in this post.</p>
<h2>Other tweaks</h2>
<p>I’m running the <a href="http://www.revolutiontwo.com/themes/code-gray">Revolution Code Grey theme</a>, with a <a href="http://friendfeed.com/">FriendFeed</a> badge, a <a href="http://disqus.com/">DISQUS</a> comments widget and a and <a href="http://twitter.com/">Twitter</a> updates widget. The rest are just the standard widgets that come with WordPress.</p>
<p>I’m also <a href="http://robboek.com/2008/12/30/use-your-google-account-as-an-openid-provider-for-your-blog/">using my blog as an OpenID using my Google account for authentication</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://robboek.com/2009/01/03/using-wordpress-on-iis7/feed/</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
		<item>
		<title>Use Your Google Account as an OpenID Provider for Your Blog</title>
		<link>http://robboek.com/2008/12/30/use-your-google-account-as-an-openid-provider-for-your-blog/</link>
		<comments>http://robboek.com/2008/12/30/use-your-google-account-as-an-openid-provider-for-your-blog/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 08:20:34 +0000</pubDate>
		<dc:creator>Rob Boek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[OpenID]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://robboek.com/2008/12/30/use-your-google-account-as-an-openid-provider-for-your-blog/</guid>
		<description><![CDATA[I’m running a self-hosted WordPress 2.7 blog on a GoDaddy.com IIS7 hosting plan. Today I was trying to setup my blog as an OpenID provider so I could use it to login to OpenID enabled sites like stackoverflow.
My first attempt was to use the WordPress OpenID plugin. Beside the fact that I couldn’t get it [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I’m running a self-hosted <a href="http://wordpress.org/">WordPress</a> 2.7 blog on a <a href="http://www.godaddy.com/">GoDaddy.com</a> IIS7 hosting plan. Today I was trying to setup my blog as an <a href="http://en.wikipedia.org/wiki/Openid">OpenID</a> provider so I could use it to login to OpenID enabled sites like <a href="http://stackoverflow.com/">stackoverflow</a>.</p>
<p>My first attempt was to use the <a href="http://wordpress.org/extend/plugins/openid/">WordPress OpenID plugin</a>. Beside the fact that <a href="http://code.google.com/p/diso/issues/detail?id=101">I couldn’t get it working</a>, the plugin was really overkill for my needs. Since I’m using the DISQUS plugin for comments, I didn’t need OpenID support for those. I just wanted to be able to use <a href="http://robboek.com">http://robboek.com</a> to log in to other sites.</p>
<p>Next, I tried <a href="http://siege.org/projects/phpMyID/">phpMyID</a>. phpMyID was pretty easy to setup and the test worked, but I couldn’t get it to let me login to stackoverflow. While trying to setup phpMyID, I noticed the link tags it had me insert into the template and figured that I should probably be able to point to another OpenID provider from my blog url and have that work. A little searching revealed <a href="http://www.labnol.org/internet/favorites/use-google-account-email-openid-user-name/2901/">this post</a> that pointed me in the right direction.</p>
<p>Here are the steps to use your Google account as an OpenID Provider for your blog:</p>
<ol>
<li>Go to <a title="http://openid-provider.appspot.com/" href="http://openid-provider.appspot.com/">http://openid-provider.appspot.com/</a> and login using your Google account. It will give you an OpenID sign-on in the form of:

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">http://openid-provider.appspot.com/[your google email]</pre></div></div>

</li>
<li>Add the following 2 lines to the &lt;head&gt; section of your template:

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;link rel=&quot;openid.server&quot; href=&quot;[OpenID from step 1]&quot; /&gt;
&lt;link rel=&quot;openid.delegate&quot; href=&quot;[OpenID from step 1]&quot; /&gt;</pre></div></div>

<p>As an example, the lines I added were:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;link rel=&quot;openid.server&quot; href=&quot;http://openid-provider.appspot.com/rob@robboek.com&quot; /&gt;
&lt;link rel=&quot;openid.delegate&quot; href=&quot;http://openid-provider.appspot.com/rob@robboek.com&quot; /&gt;</pre></div></div>

</li>
</ol>
<p>That’s all there is to it. Two easy steps and now I can use <a href="http://robboek.com">http://robboek.com</a> to login to OpenID enabled sites.</p>
]]></content:encoded>
			<wfw:commentRss>http://robboek.com/2008/12/30/use-your-google-account-as-an-openid-provider-for-your-blog/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Software I Use Almost Every Day</title>
		<link>http://robboek.com/2008/12/20/software-i-use-almost-every-day/</link>
		<comments>http://robboek.com/2008/12/20/software-i-use-almost-every-day/#comments</comments>
		<pubDate>Sat, 20 Dec 2008 09:13:58 +0000</pubDate>
		<dc:creator>Rob Boek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Airfoil]]></category>
		<category><![CDATA[alt.binz]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[DAEMON Tools]]></category>
		<category><![CDATA[Digsby]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Foxit Reader]]></category>
		<category><![CDATA[FreshBooks]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Input Director]]></category>
		<category><![CDATA[KatMouse]]></category>
		<category><![CDATA[Pandora]]></category>
		<category><![CDATA[Remember The Milk]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[TweetDeck]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[UltraMon]]></category>
		<category><![CDATA[uTorrent]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[WinRAR]]></category>
		<category><![CDATA[XBMC]]></category>

		<guid isPermaLink="false">http://robboek.com/2008/12/20/software-i-use-almost-every-day/</guid>
		<description><![CDATA[I just repaved my desktop and while reloading software I thought I’d share some of the programs I use the most. Here they are in no particular order:
SQL Server
This is the software that pays the bills. I’ll admit though, I’m pretty excited about working with SQL Server. Databases are fun!
Visual Studio
Along with SQL Server, I [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I just repaved my desktop and while reloading software I thought I’d share some of the programs I use the most. Here they are in no particular order:</p>
<h3><a href="http://www.microsoft.com/sqlserver/">SQL Server</a></h3>
<p>This is the software that pays the bills. I’ll admit though, I’m pretty excited about working with <a href="http://www.microsoft.com/sqlserver/">SQL Server</a>. Databases are fun!</p>
<h3><a href="http://msdn.microsoft.com/en-us/vstudio/default.aspx">Visual Studio</a></h3>
<p>Along with <a href="http://www.microsoft.com/sqlserver/">SQL Server</a>, I do a little bit of .NET development. I’ve also been using the <a href="http://msdn.microsoft.com/en-us/vsts2008/db/default.aspx">Database Edition</a> features quite a bit lately, and really like them.</p>
<h3><a href="http://www.digsby.com/">Digsby</a></h3>
<p><a href="http://www.digsby.com/">Digsby</a> is the best multi-IM client. One app to connect to Google Talk (my preferred network), Live (MSN),  Yahoo, AIM, Facebook, and more!</p>
<h3><a href="http://www.inputdirector.com/">Input Director</a></h3>
<p><a href="http://www.inputdirector.com/">Input Director</a> let’s me use one keyboard and mouse to control both my desktop and my laptop.</p>
<h3><a href="http://ehiti.de/katmouse/">KatMouse</a></h3>
<p>I can’t live without <a href="http://ehiti.de/katmouse/">KatMouse</a> anymore. It lets you use your scroll wheel in background windows without bringing them to the front or giving them focus.</p>
<h3><a href="http://office.microsoft.com/">Microsoft Office</a></h3>
<p>Not much to say here. I use Word, Excel, and OneNote the most, then PowerPoint and Visio. I try to avoid Outlook.</p>
<h3><a href="http://www.google.com/chrome">Google Chrome</a></h3>
<p><a href="http://www.google.com/chrome">Chrome</a> is getting more use lately. Simple and quick, I love the application shortcuts for gmail.</p>
<h3><a href="http://www.mozilla.com/en-US/firefox/">Firefox</a></h3>
<p>Still my most used web browser. I love some of the extensions, but it’s been losing a little bit of time to <a href="http://www.google.com/chrome">Google Chrome</a>. I’m currently running beta 2 of Firefox 3.1.</p>
<h3><a href="http://www.foxitsoftware.com/pdf/rd_intro.php">Foxit Reader</a></h3>
<p><a href="http://www.foxitsoftware.com/pdf/rd_intro.php">Foxit Reader</a> is a lightweight pdf reader. It’s much faster than Adobe. I don’t like that they started adding a bunch of stuff to their installer or the new updater, but I still keep it around. It’s getting a little less important with Google’s new pdf viewer built in to gmail.</p>
<h3><a href="http://www.daemon-tools.cc/">Daemon Tools</a></h3>
<p>Simple tool, mounts iso images.</p>
<h3><a href="http://www.skype.com/">Skype</a></h3>
<p>I use <a href="http://www.skype.com/">Skype</a> to call regular phones, hardly ever for Skype-to-Skype calls.</p>
<h3><a href="http://www.realtimesoft.com/ultramon/">UltraMon</a></h3>
<p><a href="http://www.realtimesoft.com/ultramon/">UltraMon</a> is a must have for multi-monitor users. It extends the Windows taskbar across your other monitors. Other cool things are being able to setup different wallpaper and screen savers on each monitor.</p>
<h3><a href="http://www.altbinz.net/">Alt.Binz</a></h3>
<p>My favorite Usenet client for binaries.</p>
<h3><a href="http://www.utorrent.com/">uTorrent</a></h3>
<p>Favorite <a href="http://en.wikipedia.org/wiki/BitTorrent_(protocol)">bittorrent</a> client.</p>
<h3><a href="http://www.rarlab.com/">WinRAR</a></h3>
<p><a href="http://www.rarlab.com/">WinRAR</a> is one of those things that I take for granted. Right drag –&gt; Extract To is mostly how I use it, and occasionally to zip something for email.</p>
<h3><a href="http://xbmc.org/">XBMC</a></h3>
<p>I don’t use this on my PC, but it would be hard to get along without it. My wife loves this one as well. <a href="http://xbmc.org/">XBMC</a> is by far the best media center software I’ve used. Newer HD formats are making my original Xbox outdated, but I’m going to get some new hardware soon and definitely keep <a href="http://xbmc.org/">XBMC</a> around.</p>
<h3><a href="http://www.rogueamoeba.com/airfoil/windows/">Airfoil</a></h3>
<p><a href="http://www.rogueamoeba.com/airfoil/windows/">Airfoil</a> let’s you stream music from any application to <a href="http://www.apple.com/airportexpress/">AirPort Express</a> devices. I picked up a few on <a href="http://search.ebay.com/search/search.dll?satitle=airport+express">ebay</a> for around $50 each. Turn on <a href="http://www.pandora.com/">Pandora</a> and have whole house audio on the cheap.</p>
<h3><a href="http://openpandora.googlepages.com/">OpenPandora</a></h3>
<p><a href="http://www.pandora.com/">Pandora</a> in a <a href="http://openpandora.googlepages.com/">Windows desktop app</a>. Lets you hide it in the tray and more.</p>
<h3><a href="http://www.tweetdeck.com/">TweetDeck</a></h3>
<p>My favorite <a href="http://twitter.com">Twitter</a> client.</p>
<p>That covers most of it. I also have a bunch of small apps that I keep in a C:\utils folder and there are a few web apps that I use frequently (<a href="http://www.google.com/a">Google Apps</a>, <a href="https://www.freshbooks.com/subscribe.php?ref=a11a79ed40442-1">FreshBooks</a>, <a href="http://www.google.com/reader/">Google Reader</a>, <a href="http://www.rememberthemilk.com/">RTM</a>). I’ll cover those in a future post.</p>
<p>What apps do you use frequently? Any I should know about?</p>
]]></content:encoded>
			<wfw:commentRss>http://robboek.com/2008/12/20/software-i-use-almost-every-day/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Blog on hold</title>
		<link>http://robboek.com/2008/12/12/blog-on-hold/</link>
		<comments>http://robboek.com/2008/12/12/blog-on-hold/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 00:04:00 +0000</pubDate>
		<dc:creator>Rob Boek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://robboek.com/2008/12/12/blog-on-hold/</guid>
		<description><![CDATA[I really want to start blogging. The trouble is, I can&#8217;t get things setup the way I want them. I had settled on using blogger but I really want to have my domain as http://robboek.com and not http://www.robboek.com. The trouble is, now I can&#8217;t have it hosted by google as you can&#8217;t add a CNAME [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I really want to start blogging. The trouble is, I can&#8217;t get things setup the way I want them. I had settled on using blogger but I really want to have my domain as http://robboek.com and not http://www.robboek.com. The trouble is, now I can&#8217;t have it hosted by google as you can&#8217;t add a CNAME to the root domain without messing things up. Next I though I would just create an A record to the ip address, but then my site goes down frequently. I was looking to use wordpress.com but to have a custom domain name there you have to use them for DNS.</p>
<p>My next idea is to use self-hosted wordpress. Now I need to find a good cheap hosting company. Preferably one that also supports ASP.NET and SQL Server. If you have any suggestions, please let me know. In the mean time I&#8217;m putting the blog on hold because I don&#8217;t want to worry about moving my content over.</p>
]]></content:encoded>
			<wfw:commentRss>http://robboek.com/2008/12/12/blog-on-hold/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Chrome Won’t Start in Vista x64 – SOLVED!</title>
		<link>http://robboek.com/2008/11/16/google-chrome-wont-start-in-vista-x64/</link>
		<comments>http://robboek.com/2008/11/16/google-chrome-wont-start-in-vista-x64/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 09:25:00 +0000</pubDate>
		<dc:creator>Rob Boek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Airfoil]]></category>
		<category><![CDATA[Airport Express]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[DRM]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://robboek.com/2008/11/16/google-chrome-won%e2%80%99t-start-in-vista-x64-%e2%80%93-solved/</guid>
		<description><![CDATA[This has been bugging me for months. At some point, Google Chrome just stopped working. I would double click the icon, and nothing would happen. The process would show up in task manager, but nothing would show up on the screen. I spent HOURS searching for an answer and finally gave up. Chrome was working [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>This has been bugging me for months. At some point, Google Chrome just stopped working. I would double click the icon, and nothing would happen. The process would show up in task manager, but nothing would show up on the screen. I spent HOURS searching for an answer and finally gave up. Chrome was working fine on my laptop, so I just figured something got corrupted. I have been wanting to rebuild my desktop to fix the problem, but just haven’t had time.</p>
<p>Today, I went to launch Chrome on my laptop and nothing! I was freaking out! Not again!!! The last thing I wanted to do was rebuild my laptop. I decided to try searching again. Since it happened on both of my systems, I figured that someone else must have had the same problem. Finally, <a href="http://groups.google.com/group/google-chrome-help-troubleshooting/browse_thread/thread/dce3c75416dbd81d/b3dfabf13a9d545d?hl=en&amp;lnk=gst&amp;q=vista+x64#b3dfabf13a9d545d">I found the answer</a>!</p>
<p>Apparently, the reason Chrome wouldn’t start has something to do with DRM in Vista. I use a great program called <a href="http://www.rogueamoeba.com/airfoil/">Airfoil</a> that lets me stream audio to several <a href="http://www.apple.com/airportexpress/">Apple Airport Express</a> devices in my house. Airfoil has a feature called “instant hijack” that lets you re-route the audio from an app without restarting it. Apparently if that is turned on, Vista thinks you are trying to be evil. Anyway, as soon as I disabled the instant hijack Chrome started working again. Thank you, Mark, for posting the answer!</p>
<p>I really hate DRM!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://robboek.com/2008/11/16/google-chrome-wont-start-in-vista-x64/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>First Post</title>
		<link>http://robboek.com/2008/10/10/first-post/</link>
		<comments>http://robboek.com/2008/10/10/first-post/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 22:03:00 +0000</pubDate>
		<dc:creator>Rob Boek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Live Writer]]></category>

		<guid isPermaLink="false">http://robboek.com/2008/10/10/first-post/</guid>
		<description><![CDATA[Welcome to the first post on my second attempt at a blog. The first one failed miserably when I changed servers and was too lazy to fix a permissions issue.
This time, I&#8217;ve decided to use Blogger. I&#8217;ve been very happy with Google services so far, and when I came across a post by Jeff Blankenburg [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Welcome to the first post on my second attempt at a blog. The first one failed miserably when I changed servers and was too lazy to fix a permissions issue.</p>
<p>This time, I&#8217;ve decided to use <a href="http://www.blogger.com/">Blogger</a>. I&#8217;ve been very happy with Google services so far, and when I came across a post by <a href="http://www.jeffblankenburg.com/">Jeff Blankenburg</a> on <a href="http://www.jeffblankenburg.com/2008/09/tutorial-using-blogger-with-aspnet-and.aspx">using Blogger with ASP.NET</a>, I figured I&#8217;d give it a shot.</p>
<p>After a few minutes to setup the blog and install <a href="http://get.live.com/">Windows Live Writer</a>, I&#8217;m off to the races. Wish me luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://robboek.com/2008/10/10/first-post/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

