<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Mun's Place</title>
	
	<link>http://www.munsplace.com/blog</link>
	<description>Where Mun talks about stuff</description>
	<lastBuildDate>Tue, 04 Jun 2013 01:50:04 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/munsplace" /><feedburner:info uri="munsplace" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>The Facebook Fast</title>
		<link>http://feedproxy.google.com/~r/munsplace/~3/S4ryATT81hU/</link>
		<comments>http://www.munsplace.com/blog/2013/06/03/the-facebook-fast/#comments</comments>
		<pubDate>Tue, 04 Jun 2013 01:50:04 +0000</pubDate>
		<dc:creator>Mun</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.munsplace.com/blog/?p=374</guid>
		<description><![CDATA[Reading The Facebook Experiment has failed, the following really struck a chord: At a quick glance, the entire list of posts on the first screen are irrelevant to me. If I scrolled down I can find 4 stories I actually care about, from a list of about 30. The most important page on Facebook has [...]]]></description>
				<content:encoded><![CDATA[<p>Reading <a href="https://medium.com/a-programmers-tale/f7b8c66109ea">The Facebook Experiment has failed</a>, the following really struck a chord:</p>
<blockquote><p>At a quick glance, the entire list of posts on the first screen are irrelevant to me. If I scrolled down I can find 4 stories I actually care about, from a list of about 30. The most important page on Facebook has more than three-fourths of absolutely useless content.</p></blockquote>
<p>I&#8217;ve been thinking about how little value I get from Facebook nowadays. The once useful social network used to be a great way to keep in touch with friends and family from back home, but increasingly, I find my news stream is filled with things like images that people are liking and other useless trivia that I couldn&#8217;t care less about.</p>
<p>Equally nagging is my general mistrust of Facebook as a company.  When the timeline changes kicked in, I removed my list of favorite movies, books, etc long ago, as I&#8217;m no longer comfortable with Facebook knowing so much about myself.</p>
<p>In any case, I&#8217;ve decided to go on a &#8220;Facebook Fast&#8221;. The app is being removed from my phone and all my devices, as well as my bookmarks.  More often than not, I find myself wandering over to Facebook when idling, and the lack of a bookmark should hopefully stop that.</p>
<p>It&#8217;s not like I&#8217;ll be missing much. I&#8217;m sick of seeing stupid pictures that need 1 million likes.</p>
<img src="http://feeds.feedburner.com/~r/munsplace/~4/S4ryATT81hU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.munsplace.com/blog/2013/06/03/the-facebook-fast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.munsplace.com/blog/2013/06/03/the-facebook-fast/</feedburner:origLink></item>
		<item>
		<title>Debugging macro for VS.NET</title>
		<link>http://feedproxy.google.com/~r/munsplace/~3/2yi5GfWfhks/</link>
		<comments>http://www.munsplace.com/blog/2012/11/28/debugging-macro-for-vs-net/#comments</comments>
		<pubDate>Wed, 28 Nov 2012 15:35:29 +0000</pubDate>
		<dc:creator>Mun</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.munsplace.com/blog/?p=369</guid>
		<description><![CDATA[I&#8217;ve found the macro below for starting debugging a massive time-saver. Much easier than going through the &#8216;attach to process&#8217; UI screens all the time. The steps below can be used to add a button to a toolbar in VS for attaching to IIS/IISExpress. Tools -> Macros -> Macros IDE Right-click MyMacros -> Add -> [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve found the macro below for starting debugging a massive time-saver.  Much easier than going through the &#8216;attach to process&#8217; UI screens all the time.</p>
<p>The steps below can be used to add a button to a toolbar in VS for attaching to IIS/IISExpress.</p>
<p>Tools -> Macros -> Macros IDE</p>
<p>Right-click MyMacros -> Add -> Add Module</p>
<p>Name: DebuggingMacros</p>
<p>Paste the code below into the module.</p>
<pre name="code" class="vb">Public Sub AttachToWebServer()
        Dim Processes As New System.Collections.Generic.List(Of String)
        Processes.Add("iisexpress.exe")
        Processes.Add("aspnet_wp.exe")
        Processes.Add("w3wp.exe")
        Dim Attached As Boolean = False
        For Each Proc In Processes
            If (AttachToProcess(Proc)) Then
                Attached = True
            End If
        Next
        If (Not Attached) Then
            System.Windows.Forms.MessageBox.Show("Can't find web server process")
        End If
    End Sub</pre>
<p>Right-click toolbar -> customize -> commands tab -> Toolbar radio -> Build -> Add Command</p>
<p>Select <em>Macros</em> from the categories list, <em>Macros.MyMacros.DebuggingMacros.AttachToWebServer</em> from the list of commands on the right.</p>
<p>Rename the button to &#8216;Attach to IIS&#8217; (or whatever you want).</p>
<p>To use, simply click on the button to attach the debugger to IIS/IISExpress.</p>
<img src="http://feeds.feedburner.com/~r/munsplace/~4/2yi5GfWfhks" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.munsplace.com/blog/2012/11/28/debugging-macro-for-vs-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.munsplace.com/blog/2012/11/28/debugging-macro-for-vs-net/</feedburner:origLink></item>
		<item>
		<title>Saving username and password with TortoiseGit</title>
		<link>http://feedproxy.google.com/~r/munsplace/~3/h4WQA8aUwUc/</link>
		<comments>http://www.munsplace.com/blog/2012/07/27/saving-username-and-password-with-tortoisegit/#comments</comments>
		<pubDate>Fri, 27 Jul 2012 17:56:05 +0000</pubDate>
		<dc:creator>Mun</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.munsplace.com/blog/?p=365</guid>
		<description><![CDATA[Saving your login details in TortoiseGit is pretty easy.  Saves having to type in your username and password every time you do a pull or push. 1. Create a file called _netrc with the following contents: machine github.com login &#60;login&#62; password &#60;password&#62; 2. Copy the file to C:\Users\&#60;your-username&#62; (or another location; this just happens to be where [...]]]></description>
				<content:encoded><![CDATA[<p>Saving your login details in <a href="http://code.google.com/p/tortoisegit/">TortoiseGit</a> is pretty easy.  Saves having to type in your username and password every time you do a pull or push.</p>
<p>1. Create a file called <em>_netrc</em> with the following contents:</p>
<p>machine github.com<br />
login &lt;login&gt;<br />
password &lt;password&gt;</p>
<p>2. Copy the file to <em>C:\Users\&lt;your-username&gt;</em> (or another location; this just happens to be where I&#8217;ve put it)</p>
<p>3. Go to command prompt, type <em>setx home C:\Users\&lt;your-username&gt;</em></p>
<p>Note: if you&#8217;re using something earlier than Windows 7, the <em>setx</em> command may not work for you.  Use <em>set</em> instead and add the <em>home</em> environment variable to Windows using via the <em>Advanced Settings</em> under <em>My Computer</em>.</p>
<img src="http://feeds.feedburner.com/~r/munsplace/~4/h4WQA8aUwUc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.munsplace.com/blog/2012/07/27/saving-username-and-password-with-tortoisegit/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://www.munsplace.com/blog/2012/07/27/saving-username-and-password-with-tortoisegit/</feedburner:origLink></item>
		<item>
		<title>Delete all queues in RabbitMQ</title>
		<link>http://feedproxy.google.com/~r/munsplace/~3/E2FvPWn1ZLs/</link>
		<comments>http://www.munsplace.com/blog/2012/02/28/delete-all-queues-in-rabbitmq/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 16:06:43 +0000</pubDate>
		<dc:creator>Mun</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.munsplace.com/blog/?p=362</guid>
		<description><![CDATA[The following will delete all RabbitMQ queues &#8211; useful during development. call rabbitmqctl stop_app call rabbitmqctl reset call rabbitmqctl start_app Easy to just pop these commands in a batch file to call together in one go. Via http://blog.boxedice.com/2010/10/21/clearing-purging-rabbitmq-queues/]]></description>
				<content:encoded><![CDATA[<p>The following will delete all RabbitMQ queues &#8211; useful during development.</p>
<p><code>call rabbitmqctl stop_app<br />
call rabbitmqctl reset<br />
call rabbitmqctl start_app</code></p>
<p>Easy to just pop these commands in a batch file to call together in one go.</p>
<p>Via <a href="http://blog.boxedice.com/2010/10/21/clearing-purging-rabbitmq-queues/">http://blog.boxedice.com/2010/10/21/clearing-purging-rabbitmq-queues/</a></p>
<img src="http://feeds.feedburner.com/~r/munsplace/~4/E2FvPWn1ZLs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.munsplace.com/blog/2012/02/28/delete-all-queues-in-rabbitmq/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.munsplace.com/blog/2012/02/28/delete-all-queues-in-rabbitmq/</feedburner:origLink></item>
		<item>
		<title>Installing Solr on Windows 7 x64</title>
		<link>http://feedproxy.google.com/~r/munsplace/~3/BJcc0_N2OpY/</link>
		<comments>http://www.munsplace.com/blog/2012/02/20/installing-solr-on-windows-7-x64/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 00:56:41 +0000</pubDate>
		<dc:creator>Mun</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.munsplace.com/blog/2012/02/20/installing-solr-on-windows-7-x64/</guid>
		<description><![CDATA[Took a few steps to get this working. 1. Download Java SDK http://www.oracle.com/technetwork/java/javase/downloads/index.htmlhttp://www.oracle.com/technetwork/java/javase/downloads/jdk-7u3-download-1501626.html 2. Download Tomcat 7 http://tomcat.apache.org/download-70.cgihttp://apache.cs.utah.edu/tomcat/tomcat-7/v7.0.25/bin/apache-tomcat-7.0.25.exe 3. Download Solr 3.4.0 http://apache.mirrors.airband.net/lucene/Solr/http://apache.mirrors.airband.net/lucene/Solr/3.4.0/apache-solr-3.4.0.zip NOTE: Make sure you download 3.4.0 and not 3.5.0. 4. Install the Java SDK 5. Install Tomcat on Windows 6. Verify Tomcat works by trying to browse to http://localhost:8080/ 7. Right-click on [...]]]></description>
				<content:encoded><![CDATA[<p>Took a few steps to get this working.</p>
<p><strong>1. Download Java SDK</strong></p>
<p><a href="http://www.oracle.com/technetwork/java/javase/downloads/index.html">http://www.oracle.com/technetwork/java/javase/downloads/index.html</a><br /><a href="http://www.oracle.com/technetwork/java/javase/downloads/jdk-7u3-download-1501626.html">http://www.oracle.com/technetwork/java/javase/downloads/jdk-7u3-download-1501626.html</a></p>
<p><strong>2. Download Tomcat 7</strong></p>
<p><a href="http://tomcat.apache.org/download-70.cgi">http://tomcat.apache.org/download-70.cgi</a><br /><a href="http://apache.cs.utah.edu/tomcat/tomcat-7/v7.0.25/bin/apache-tomcat-7.0.25.exe">http://apache.cs.utah.edu/tomcat/tomcat-7/v7.0.25/bin/apache-tomcat-7.0.25.exe</a></p>
<p><strong>3. Download Solr 3.4.0</strong></p>
<p><a href="http://apache.mirrors.airband.net/lucene/Solr/">http://apache.mirrors.airband.net/lucene/Solr/</a><br /><a href="http://apache.mirrors.airband.net/lucene/Solr/3.4.0/apache-solr-3.4.0.zip">http://apache.mirrors.airband.net/lucene/Solr/3.4.0/apache-solr-3.4.0.zip</a></p>
<p><em>NOTE: Make sure you download 3.4.0 and not 3.5.0.</em></p>
<p><strong>4. Install the Java SDK</strong></p>
<p><strong>5. Install Tomcat on Windows</strong></p>
<p><img border="0" alt="" src="http://www.munsplace.com/blog/wp-content/uploads/solr_step5.png" width="485" /></p>
<p><strong>6. Verify Tomcat works by trying to browse to </strong><a href="http://localhost:8080/"><strong>http://localhost:8080/</strong></a></p>
<p><img border="0" alt="Solr_step6" src="http://www.munsplace.com/blog/wp-content/uploads/solr_step6.png" width="485" /></p>
<p><strong>7. Right-click on Tomcat icon in system tray, select stop service</strong></p>
<p><img border="0" alt="" src="http://www.munsplace.com/blog/wp-content/uploads/solr_step7.png" /></p>
<p><strong>8. Unzip <em>apache-solr-3.4.0.zip</em> to <em>C:\apache-solr-3.4.0</em></strong></p>
<p><strong>9. Copy <em>C:\apache-solr-3.4.0\example\Solr</em> to <em>C:\Solr</em></strong></p>
<p><strong>10. Copy <em>C:\apache-solr-3.4.0\dist\apache-solr-3.4.0.war</em> to <em>C:\Program Files\Apache Software Foundation\Tomcat 7.0\webapps\solr.war</em></strong></p>
<p><strong>11. Right-click on the Tomcat icon in the system tray, choose configure, Java tab, Java options, add the following line at the end:</strong></p>
<p>-DSolr.Solr.home=C:\Solr</p>
<p><img border="0" alt="Solr_step11" src="http://www.munsplace.com/blog/wp-content/uploads/solr_step11.png" width="485" /></p>
<p><strong>12. Start Tomcat by right-clicking on the system tray and selecting &#8220;Start Service&#8221;</strong></p>
<p><img border="0" alt="" src="http://www.munsplace.com/blog/wp-content/uploads/solr_step12.png" /></p>
<p><strong>13. Browse to </strong><a href="http://localhost:8080/Solr/"><strong>http://localhost:8080/Solr/</strong></a><strong> &#8230; You should see &#8220;Welcome to Solr&#8221;.</strong></p>
<p><img border="1" alt="" src="http://www.munsplace.com/blog/wp-content/uploads/solr_step13.png" /></p>
<p><strong>14. Click on &#8220;Solr Admin&#8221;.&nbsp; You should see the Solr admin interface.</strong></p>
<p><img border="0" alt="" src="http://www.munsplace.com/blog/wp-content/uploads/solr_step14.png" width="485" /></p>
<img src="http://feeds.feedburner.com/~r/munsplace/~4/BJcc0_N2OpY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.munsplace.com/blog/2012/02/20/installing-solr-on-windows-7-x64/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		<feedburner:origLink>http://www.munsplace.com/blog/2012/02/20/installing-solr-on-windows-7-x64/</feedburner:origLink></item>
		<item>
		<title>Upgrading to iOS5</title>
		<link>http://feedproxy.google.com/~r/munsplace/~3/SmMXNgdWnZo/</link>
		<comments>http://www.munsplace.com/blog/2011/10/27/upgrading-to-ios5/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 02:47:46 +0000</pubDate>
		<dc:creator>Mun</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.munsplace.com/blog/2011/10/27/upgrading-to-ios5/</guid>
		<description><![CDATA[Well, seeing as the only thing I seem to have been blogging about recently is the iPad, I thought I&#8217;d mention that I decided to sacrifice my jailbreak and upgrade to iOS5.&#160; I&#8217;ve been using it for about a week now and it&#8217;s definitely been the right decision, with the device being much more responsive [...]]]></description>
				<content:encoded><![CDATA[<p>Well, seeing as the only thing I seem to have been blogging about recently is the iPad, I thought I&#8217;d mention that I decided to sacrifice my jailbreak and upgrade to iOS5.&nbsp; I&#8217;ve been using it for about a week now and it&#8217;s definitely been the right decision, with the device being much more responsive and crashing far less.&nbsp; It&#8217;s a little sad losing sbsettings and multifl0w, but the increased reliability makes it worhwhile.</p>
<p>Not quite ready to upgrade my iPhone 4, even though it&#8217;s starting to feel like Windows and needs to be rebooted or resprung at least once a day.&nbsp; The other benefit of course, is that with both devices running iOS5, I&#8217;ll get the full benefit of iCloud with apps, photos, etc syncing between devices.</p>
<img src="http://feeds.feedburner.com/~r/munsplace/~4/SmMXNgdWnZo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.munsplace.com/blog/2011/10/27/upgrading-to-ios5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.munsplace.com/blog/2011/10/27/upgrading-to-ios5/</feedburner:origLink></item>
		<item>
		<title>Upgrading iOS firmware on jailbroken iPad</title>
		<link>http://feedproxy.google.com/~r/munsplace/~3/VRmZdvVHjaI/</link>
		<comments>http://www.munsplace.com/blog/2011/02/19/upgrading-ios-firmware-on-jailbroken-ipad/#comments</comments>
		<pubDate>Sat, 19 Feb 2011 20:12:39 +0000</pubDate>
		<dc:creator>Mun</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.munsplace.com/blog/2011/02/19/upgrading-ios-firmware-on-jailbroken-ipad/</guid>
		<description><![CDATA[I&#8217;ve been holding off on upgrading the firmware on my iPad since&#160;I bought it, as I didn&#8217;t want to lose my jailbreak, or end up with a tethered jailbreak.&#160; Although it doesn&#8217;t leave the house much, having to connect the device to a PC to reboot it sounds like too much hassle. With the release [...]]]></description>
				<content:encoded><![CDATA[<p><img border="0" hspace="5" alt="Ipad_small" vspace="5" align="right" src="http://www.munsplace.com/blog/wp-content/uploads/ipad_small.jpg" />I&#8217;ve been holding off on upgrading the firmware on my iPad since&nbsp;I bought it, as I didn&#8217;t want to lose my jailbreak, or end up with a tethered jailbreak.&nbsp; Although it doesn&#8217;t leave the house much, having to connect the device to a PC to reboot it sounds like too much hassle.</p>
<p>With the release of <a href="http://greenpois0n.com/">greenpois0n</a>, I finally took the plunge and upgraded from 3.2 to 4.2.1.&nbsp; It was actually less hassle than I expected, though largely because the iPad doesn&#8217;t have the same problems as the iPhone, where upgrading via Apple will also upgrade the baseband, which could possibly break any carrier unlock.</p>
<p>The whole process took a couple of hours, including downloading &amp; installing the latest version of iTunes, upgrading the firmware from within iTunes, jailbreaking using the greenpois0n app, and then re-installing&nbsp;the jailbroken apps (sbsettings, multifl0w, infinidock, winterboard, aquarium hd, fake carrier)</p>
<p>I&#8217;m yet to do this on my iPhone, though I&#8217;m still contending whether I want to use the official&nbsp;Apple upgrade option&nbsp;and then&nbsp;use&nbsp;greenpois0n to jailbreak it, which will also upgrade the baseband and&nbsp;break the carrier unlock &ndash;&nbsp; though&nbsp;I&#8217;m not using this anyway but losing it makes the phone harder to sell in future, or whether to restore a custom 4.2.1 IPSW, but go through all the aggravation of re-installing all of my apps manually.</p>
<p>Either way, it&#8217;s nice to finally have 4.2.1 on the iPad.&nbsp; I&#8217;m a big fan of folders and organizing my apps into groups, so that&#8217;s the biggest obvious benefit for me.&nbsp; I&#8217;m not using AirPlay (haven&#8217;t got an Apple TV), and AirPrint seems useful but only works with selected printers, though there seem to be some apps and hacks to work around that which needs further investigation.</p>
<div class="bjtags">Tags:  <a rel="tag" href="http://technorati.com/tag/Apple">Apple</a>, <a rel="tag" href="http://technorati.com/tag/iPad">iPad</a></div>
<img src="http://feeds.feedburner.com/~r/munsplace/~4/VRmZdvVHjaI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.munsplace.com/blog/2011/02/19/upgrading-ios-firmware-on-jailbroken-ipad/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.munsplace.com/blog/2011/02/19/upgrading-ios-firmware-on-jailbroken-ipad/</feedburner:origLink></item>
		<item>
		<title>Installing .NET 3.5 SP1 on Windows 7</title>
		<link>http://feedproxy.google.com/~r/munsplace/~3/mx15XedOCAo/</link>
		<comments>http://www.munsplace.com/blog/2010/01/27/installing-net-3-5-sp1-on-windows-7/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 15:23:15 +0000</pubDate>
		<dc:creator>Mun</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.munsplace.com/blog/?p=340</guid>
		<description><![CDATA[I&#8217;ve been trying to install .NET 3.5 SP1 on my Windows 7 machine, but had a strange problem where the running installer would just do nothing. Tried using both the bootstrapper and the full version, both with no luck. After some fiddling, the following steps seemed to fix the problem: 1. If installed already, uninstall [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been trying to install .NET 3.5 SP1 on my Windows 7 machine, but had a strange problem where the running installer would just do nothing.  Tried using both the bootstrapper and the full version, both with no luck.  After some fiddling, the following steps seemed to fix the problem:</p>
<p>1. If installed already, uninstall the .NET framework via Control Panel &#8211; Turn Windows features on or off.</p>
<p>2. Reboot</p>
<p>3. Stop IIS &#8211; command prompt, iisreset /stop</p>
<p>4. Download <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=AB99342F-5D1A-413D-8319-81DA479AB0D7&#038;displaylang=en">.NET Framework 3.5 SP1</a></p>
<p>5. Run the installer</p>
<p>6. Reboot</p>
<p>The installer might display an error during step 4, but .NET Framework 3.5 SP1 should still be installed correctly.</p>
<img src="http://feeds.feedburner.com/~r/munsplace/~4/mx15XedOCAo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.munsplace.com/blog/2010/01/27/installing-net-3-5-sp1-on-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.munsplace.com/blog/2010/01/27/installing-net-3-5-sp1-on-windows-7/</feedburner:origLink></item>
		<item>
		<title>Revisiting Backups</title>
		<link>http://feedproxy.google.com/~r/munsplace/~3/Mc6LQkJJ-IE/</link>
		<comments>http://www.munsplace.com/blog/2010/01/22/revisiting-backups/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 15:17:39 +0000</pubDate>
		<dc:creator>Mun</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.munsplace.com/blog/?p=333</guid>
		<description><![CDATA[During December, I was out of town and away from my desktop PC, intending to connect to it using LogMeIn to keep working. Although my laptop has enough disk space and is a reasonable enough specced machine, my desktop PC is my main machine and has everything set up already, and remote access software generally [...]]]></description>
				<content:encoded><![CDATA[<p>During December, I was out of town and away from my desktop PC, intending to connect to it using <a href="http://www.logmein.com/">LogMeIn</a> to keep working.  Although my laptop has enough disk space and is a reasonable enough specced machine, my desktop PC is my main machine and has everything set up already, and remote access software generally works well.</p>
<p>Unfortunately, during this period, the Western Digital Raptor in my desktop PC with all my data decided to fail.  This is my first real drive failure, and having it fail while being 4000 miles away in a different continent really magnifies the problem.  The first signal was connecting to my PC and seeing two drive letters vanish into thin air.  Rebooting the PC ended up in losing connection permanently (which I later learned was because it had hung on boot while detecting the drives), followed by a couple of hours troubleshooting with a friend who managed to get in front of my PC, finally accepting the fact that the problem could not be easily resolved and leaving the machine switched off until I could get back.</p>
<p>Fortunately, the code I needed to work with was in an offsite SVN repository and essential dev tools like Visual Studio and SQL Server are available from MSDN, allowing me to get my laptop in a state that was at least usable.  This managed to allow me to keep working, but it did get me thinking about my general backup strategy though.</p>
<p>About a year or two ago, I tried several online backup solutions and although I preferred Mozy&#8217;s backup software, the actual backup process refused to work properly on my machine and eventually I <a href="http://www.munsplace.com/blog/2006/11/08/the-perfect-backup-solution/">settled for Carbonite</a>, in tandem with <a href="http://www.2brightsparks.com/syncback/syncback-hub.html">Syncback SE</a> for syncing changes to an external drive.  This strategy worked fine until recently, when I upgraded to Windows 7.  Unfortunately, Carbonite&#8217;s software had some issues with this, and I didn&#8217;t re-install, leaving my PC without form of online backup.</p>
<p>Reluctant to have no backup in place all, I decided to go for a disk imaging solution instead and eventually settled on <a href="http://www.macrium.com/">Macrium Reflect</a>.  The pro version offers scheduled backups, and I had weekly full backups and nightly incremental backups for system and data drives.  The backup images are stored on a third separate hard disk in my PC and copied over to an external 1TB drive to offer some redundancy.</p>
<p>Once I got back to FL, getting back up and running was mostly a case of getting a new drive and simply restoring from the most recent image created by Macrium Reflect.  The whole process took about a couple of hours and was relatively painless.  However, the Raptor was partitioned into two drives, one containing utilities.  This wasn&#8217;t backed up as it didn&#8217;t seem like there was anything too important on there.  Getting the essential ones back took a couple of hours too and a lot of time and hassle could have been saved by backing this up too.</p>
<p>It seems like Carbonite have fixed most of their issues with Windows 7, but there&#8217;s still a conflict with SVN where Carbonite causes the SVN icon overlays to disappear.  Generally unsatisfied with Carbonite, my search for a viable online backup solution continued.</p>
<p>It&#8217;s been a couple of weeks since I&#8217;ve been using JungleDisk (as <a href="http://twitter.com/ShawnWildermuth/status/7630752483">suggested</a> by <a href="http://wildermuth.com/">Shawn Wildermuth</a>), and so far, I&#8217;m liking it.  The cost structure is a bit different from Carbonite, with the desktop addition costing $3 per month plus the cost of storage with Amazon S3, which is about $0.10 per gigabyte per month, plus fees for data transfer &#8211; though this is currently free until June 30th, 2010.  There&#8217;s a slightly cheaper version for backups only at $2 per month, but with the added features of folder sync and a mapped network drive in the cloud, the desktop version is easily worth the extra cost.</p>
<p>The software doesn&#8217;t look as fancy as Carbonite, though I actually prefer my Windows applications to look like Windows applications rather than having big fonts and bright colors, and JungleDisk definitely offers users more control over their backups.  However, it does lack shell integration which would&#8217;ve been nice, and I don&#8217;t <em>think</em> there&#8217;s any way to restore files via the web.  But the features all work well and as expected.  It&#8217;s also great to be able to use the software on multiple machines, with the only additional cost being incurred for the extra storage.</p>
<p>The yearly fee for Carbonite is about $55.  My backup is about 60gb, though the first 5gb is free, so this is going to be about $8.25 per month.  Adding in the Jungle Disk fee of $3 per month, and the total cost per year is about 2.5 times the cost of Carbonite, but still not unreasonable and given the cost and pain of losing important data, it&#8217;s worth it.</p>
<p>Overall, my backup strategy consists of the following now:</p>
<ul>
<li>Backups every 5 minutes to Amazon S3 with Jungle Disk</li>
<li>Automated weekly full backups of system and data drives using Macrium Reflect to a separate physical internal drive</li>
<li>Automated nightly incremental backups of system and data drives using Macrium Reflect to a separate physical internal drive</li>
<li>Both weekly and nightly incremental backup images are also copied to a separate external USB drive.</li>
<li>Non-automated backup of utilities drive (this hardly changes and is just to ease restoring if another drive failure happens)</li>
<li>Code backed up to offsite SVN repository</li>
</ul>
<p>This seems like it should cover everything, from a full-blown drive failure to accidentally deleting some important data.</p>
<img src="http://feeds.feedburner.com/~r/munsplace/~4/Mc6LQkJJ-IE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.munsplace.com/blog/2010/01/22/revisiting-backups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.munsplace.com/blog/2010/01/22/revisiting-backups/</feedburner:origLink></item>
		<item>
		<title>Improving the Experts Exchange experience</title>
		<link>http://feedproxy.google.com/~r/munsplace/~3/YkbWzasXts4/</link>
		<comments>http://www.munsplace.com/blog/2009/11/01/improving-the-experts-exchange-experience/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 14:26:54 +0000</pubDate>
		<dc:creator>Mun</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.munsplace.com/blog/2009/11/01/improving-the-experts-exchange-experience/</guid>
		<description><![CDATA[I&#8217;m no fan of Experts Exchange and prefer to use Stack Overflow whenever possible (which is actually EE&#8217;s arch-enemy) &#8211; which is 99.9% of the time.&#160; But there&#8217;s still that rare occurence when something shows up in Google from their site which looks like it might be helpful, and then they use all sorts of [...]]]></description>
				<content:encoded><![CDATA[<p align="left">I&rsquo;m no fan of <a href="http://www.experts-exchange.com/">Experts Exchange</a> and prefer to use <a href="http://www.stackoverflow.com/">Stack Overflow</a> whenever possible (which is actually <a href="http://www.codinghorror.com/blog/archives/001246.html">EE&rsquo;s arch-enemy</a>) &#8211; which is 99.9% of the time.&nbsp; But there&rsquo;s still that rare occurence when something shows up in Google from their site which looks like it might be helpful, and then they use all sorts of sneaky tactics to try and get users to register, though the answers do display at the bottom of the screen.&nbsp;Fortunately, there&rsquo;s a couple of ways we can improve the experience and reduce the pain of using their site during those rare moments.</p>
<p align="left">Install <a href="https://addons.mozilla.org/en-US/firefox/addon/1865">AdBlock+</a>. This is an absolutely required Firefox extension.</p>
<p align="left">Install <a href="https://addons.mozilla.org/en-US/firefox/addon/748">GreaseMonkey</a>.</p>
<p align="left">Add a new user script. Right-click on GreaseMonkey icon, select <em>New User Script.</em></p>
<p align="left"><img border="0" alt="Experts-exchange-cleanup-1" src="http://www.munsplace.com/blog/wp-content/uploads/experts-exchange-cleanup-1.png" /></p>
<p align="left">Click OK.&nbsp; Past the following into Notepad:</p>
<pre class="javascript" name="code">// ==UserScript==
// @name           BlurredAnsweres
// @namespace      ee
// @include        http://www.experts-exchange.com/*
// ==/UserScript==

var GM_JQ = document.createElement('script');
GM_JQ.src = 'http://jquery.com/src/jquery-latest.js';
GM_JQ.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(GM_JQ);

function GM_wait()
{
	if(typeof unsafeWindow.jQuery == 'undefined') { window.setTimeout(GM_wait,100); }
	else { $ = unsafeWindow.jQuery; letsJQuery(); }
}
GM_wait();

function letsJQuery()
{
	$(".blurredAnswer, .relatedSolutions, .allZonesMain, .qStats, .lightImage, .startFreeTrial").remove();
	$("#EchoTopic + .clear + div").remove();
}</pre>
<p>(Credit for this script goes to <a href="http://blog.louderthanreason.com/2008/05/20/greasemonkey-script-to-make-experts-exchange-tolerable/">Jared Blitzstein</a>)</p>
<p>Save and close.</p>
<p>Install <a href="https://addons.mozilla.org/en-US/firefox/addon/953">RefControl</a> Firefox add-in.</p>
<p>Restart Firefox</p>
<p>Click Tools &ndash; RefControl Options on the menu.</p>
<p><img border="0" alt="Experts-exchange-cleanup-2" src="http://www.munsplace.com/blog/wp-content/uploads/experts-exchange-cleanup-2.png" /></p>
<p>Click Add Site</p>
<p><img border="0" alt="Experts-exchange-cleanup-3" src="http://www.munsplace.com/blog/wp-content/uploads/experts-exchange-cleanup-3.png" /></p>
<p>Click OK, and then OK again to exit out of the &lsquo;RefControl Options&rsquo; dialog box.</p>
<p>Quick comparison of <a href="http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_24461925.html">a question on Experts Exchange</a>&nbsp;between Google Chrome without any scripts or add-ins and Firefox with the above changes.</p>
<p><img border="0" alt="Experts-exchange-cleanup-4" src="http://www.munsplace.com/blog/wp-content/uploads/experts-exchange-cleanup-4.jpg" /></p>
<p>&nbsp;</p>
<p><img border="0" alt="Experts-exchange-cleanup-5" src="http://www.munsplace.com/blog/wp-content/uploads/experts-exchange-cleanup-5.jpg" /></p>
<p>Should still keep away from Experts Exchange whenever possible though.&nbsp; <a href="http://www.stackoverflow.com/">Stack Overflow</a> is significantly better and doesn&rsquo;t use any questionable practices to push users into registration.</p>
<img src="http://feeds.feedburner.com/~r/munsplace/~4/YkbWzasXts4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.munsplace.com/blog/2009/11/01/improving-the-experts-exchange-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.munsplace.com/blog/2009/11/01/improving-the-experts-exchange-experience/</feedburner:origLink></item>
	</channel>
</rss>
