<?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>K's Weblog</title>
	
	<link>http://kdmurray.net</link>
	<description>Technology and the Interweb for the Real World</description>
	<lastBuildDate>Wed, 05 May 2010 07:49:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/kdmurray" /><feedburner:info uri="kdmurray" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Subversion – Can’t move [file]. The file or directory has become corrupted and is unreadable</title>
		<link>http://feedproxy.google.com/~r/kdmurray/~3/tE--RKapCT4/</link>
		<comments>http://kdmurray.net/2010/05/05/subversion-cant-move-the-file-or-directory-has-become-corrupted-and-is-unreadable/#comments</comments>
		<pubDate>Wed, 05 May 2010 07:48:34 +0000</pubDate>
		<dc:creator>Keith</dc:creator>
				<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[ankhsvn]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[win7]]></category>
		<category><![CDATA[win7corrupt]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://kdmurray.net/?p=843</guid>
		<description><![CDATA[Copyright &#169; 2010 Keith. Visit the original article at http://kdmurray.net/2010/05/05/subversion-cant-move-the-file-or-directory-has-become-corrupted-and-is-unreadable/.I recently ran into a problem on my fancy new machine while trying to commit a rather large number of files into an SVN repository. The error message stated that some of the files in the .svn control directory had become corrupted and unreadable. After Googling [...]]]></description>
			<content:encoded><![CDATA[Copyright &copy; 2010 <a href="http://kdmurray.net">Keith</a>. Visit the original article at <a href="http://kdmurray.net/2010/05/05/subversion-cant-move-the-file-or-directory-has-become-corrupted-and-is-unreadable/">http://kdmurray.net/2010/05/05/subversion-cant-move-the-file-or-directory-has-become-corrupted-and-is-unreadable/</a>.<br /><p><a href="http://kdmurray.net/wp-content/uploads/2010/05/svn.png"><img class="alignleft size-full wp-image-845" style="border: 0pt none; margin: 4px;" title="svn" src="http://kdmurray.net/wp-content/uploads/2010/05/svn.png" alt="" width="96" height="73" /></a>I recently ran into a problem on my fancy new machine while trying to commit a rather large number of files into an SVN repository. The error message stated that some of the files in the .svn control directory had become corrupted and unreadable.</p>
<p>After Googling around a bit I came across a post on <a href="http://ankhsvn.open.collab.net/issues/show_bug.cgi?id=614" target="_blank">the CollabNet issue log</a> which identified this as an issue with the NTFS stack on Windows 7. This post included another link to a <a href="http://social.technet.microsoft.com/Forums/en/w7itprogeneral/thread/df935a52-a0a9-4f67-ac82-bc39e0585148" target="_blank">Microsoft technet discussion about the issue</a>.</p>
<p>The long and the short of it is that this is an identified issue in the NTFS implementation in all editions of Windows 7 (both 32 and 64 bit versions). The indexing service is locking files which SVN is trying to move. This only appears to be a problem with large batch transactions. Smaller ones, for me at least, have been working just fine but YMMV.</p>
<p>In case you don&#8217;t want to read the whole discussion thread, here&#8217;s the response from the NTFS team developer who responded to the community reports:</p>
<blockquote><p>This is a known regression in Windows 7 in the NTFS file system.  It  occurs when doing a superceding rename over a file that has an atomic  oplock on it (atomic oplocks are a new feature in Windows 7).  The  indexer uses atomic oplocks which is why it helped when you disabled the  indexer.  Explorer also uses atomic oplocks which is why you are still  seeing the issue.  When this occurs STATUS_FILE_CORRUPT is incorrectly  returned and the volume is marked &#8220;dirty&#8221; which is a signal to the  system that chkdsk needs to be run.  No actual corruption has occured.</p>
<p>Neal  Christiansen<br />
NTFS Development Lead</p></blockquote>
<p>The identified workaround for this issue is to stop the indexing service. If you don&#8217;t use search very often you can disable it. If you do, you can just stop the service and allow it to restart the next time you restart Windows.</p>
<p>The next trick, of course, is finding the indexing service.  In Windows 7 the service has been renamed &#8220;Windows Search&#8221;. It serves essentially the same functions as the old &#8220;Indexing Service&#8221;.</p>
<p><a href="http://kdmurray.net/wp-content/uploads/2010/05/Services.png"><img class="alignnone size-full wp-image-844" title="Services" src="http://kdmurray.net/wp-content/uploads/2010/05/Services.png" alt="" width="481" height="84" /></a></p>
<p>There have been some reports that this issue affects Windows Vista as well, but I don&#8217;t have a Vista machine to test with.</p>
]]></content:encoded>
			<wfw:commentRss>http://kdmurray.net/2010/05/05/subversion-cant-move-the-file-or-directory-has-become-corrupted-and-is-unreadable/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://kdmurray.net/2010/05/05/subversion-cant-move-the-file-or-directory-has-become-corrupted-and-is-unreadable/</feedburner:origLink></item>
		<item>
		<title>Firefox Shortcuts for Bookmarks and Searching</title>
		<link>http://feedproxy.google.com/~r/kdmurray/~3/3NS2AR49oxw/</link>
		<comments>http://kdmurray.net/2010/04/26/firefox-shortcuts-for-bookmarks-and-searching/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 03:37:23 +0000</pubDate>
		<dc:creator>Keith</dc:creator>
				<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[shortcuts]]></category>

		<guid isPermaLink="false">http://kdmurray.net/?p=774</guid>
		<description><![CDATA[Copyright &#169; 2010 Keith. Visit the original article at http://kdmurray.net/2010/04/26/firefox-shortcuts-for-bookmarks-and-searching/.It&#8217;s not new information, but since I just figured this out recently, I thought I&#8217;d punch it up here.  When you add a new bookmark in FireFox there are a few fields that you get prompted to fill out: These fields are only a portion of [...]]]></description>
			<content:encoded><![CDATA[Copyright &copy; 2010 <a href="http://kdmurray.net">Keith</a>. Visit the original article at <a href="http://kdmurray.net/2010/04/26/firefox-shortcuts-for-bookmarks-and-searching/">http://kdmurray.net/2010/04/26/firefox-shortcuts-for-bookmarks-and-searching/</a>.<br /><p>It&#8217;s not new information, but since I just figured this out recently, I thought I&#8217;d punch it up here.  When you add a new bookmark in FireFox there are a few fields that you get prompted to fill out:</p>
<p><a href="http://kdmurray.net/wp-content/uploads/2010/04/firefox_add_bookmark.png"><img class="size-full wp-image-833 alignnone" title="firefox_add_bookmark" src="http://kdmurray.net/wp-content/uploads/2010/04/firefox_add_bookmark.png" alt="" width="281" height="251" /></a></p>
<p>These fields are only a portion of the information that Firefox can keep for a particular bookmark. Among the most useful of these is the keyword field.</p>
<p>For people like me who prefer to use the keyboard over any form of pointing device, this is fantastic.  I can open a new tab and type in the keyword of the bookmark I want, in this case &#8216;kdm&#8217; and firefox will load the bookmark in question.</p>
<p><a href="http://kdmurray.net/wp-content/uploads/2010/04/firefox_edit_bookmark.png"><img class="alignnone size-full wp-image-834" title="firefox_edit_bookmark" src="http://kdmurray.net/wp-content/uploads/2010/04/firefox_edit_bookmark.png" alt="" width="337" height="276" /></a></p>
<p>Even though most browsers have a built-in search bar, that&#8217;s another toolbar that eats up real-estate in your browser. If you&#8217;re screen-space-challenged or you have a disdain for toolbars.  Take your bookmarks to the next level with a parameter.</p>
<p><a href="http://kdmurray.net/wp-content/uploads/2010/04/firefox_edit_bookmark_google.png"><img class="alignnone size-full wp-image-835" title="firefox_edit_bookmark_google" src="http://kdmurray.net/wp-content/uploads/2010/04/firefox_edit_bookmark_google.png" alt="" width="344" height="276" /></a></p>
<p>By adding in the string %s you can create search bookmarks for your favourite searching sites. As a helper, I&#8217;ve included a few search links below which already contain the %s. Just right-click the links below and use the &#8216;Copy Link Location&#8217; or &#8216;Copy Shortcut&#8217; options.</p>
<p><a href="http://www.google.com/search?q=%s" target="_blank">Google</a> (<a href="http://www.google.ca/search?q=%s" target="_blank">ca</a>, <a href="http://www.google.com.au/search?q=%s" target="_blank">au</a>, <a href="http://www.google.de/search?q=%s" target="_blank">de</a>, <a href="http://www.google.co.jp/search?q=%s" target="_blank">jp</a>)</p>
<p><a href="http://www.bing.com/search?q=%s" target="_blank">Bing</a></p>
<p><a href="http://search.yahoo.com/search?p=%s" target="_blank">Yahoo</a></p>
<p><a rel="nofollow" href="http://en.wikipedia.org/w/index.php?title=Special%3ASearch&amp;search=%s&amp;fulltext=Search" target="_blank">Wikipedia</a> (<a rel="nofollow" href="http://de.wikipedia.org/w/index.php?title=Special%3ASearch&amp;search=%s&amp;fulltext=Search" target="_blank">de</a>, <a rel="nofollow" href="http://fr.wikipedia.org/w/index.php?title=Special%3ASearch&amp;search=%s&amp;fulltext=Search" target="_blank">fr</a>, <a rel="nofollow" href="http://pl.wikipedia.org/w/index.php?title=Special%3ASearch&amp;search=%s&amp;fulltext=Search" target="_blank">pl</a>, <a rel="nofollow" href="http://it.wikipedia.org/w/index.php?title=Special%3ASearch&amp;search=%s&amp;fulltext=Search" target="_blank">it</a>)</p>
<p><a href="http://stackoverflow.com/search?q=%s" target="_blank">Stack Overflow</a></p>
<p><a href="http://memory-alpha.org/wiki/index.php?title=Special%3ASearch&amp;search=%s&amp;fulltext=Search" target="_blank">Memory Alpha</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kdmurray.net/2010/04/26/firefox-shortcuts-for-bookmarks-and-searching/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://kdmurray.net/2010/04/26/firefox-shortcuts-for-bookmarks-and-searching/</feedburner:origLink></item>
		<item>
		<title>Announcing EpubSharp</title>
		<link>http://feedproxy.google.com/~r/kdmurray/~3/OYF8Pmw41zU/</link>
		<comments>http://kdmurray.net/2010/04/05/announcing-epubsharp/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 07:21:37 +0000</pubDate>
		<dc:creator>Keith</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[epub]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://kdmurray.net/?p=827</guid>
		<description><![CDATA[Copyright &#169; 2010 Keith. Visit the original article at http://kdmurray.net/2010/04/05/announcing-epubsharp/.Over the past few days I&#8217;ve put some time into working on a library to create EPUB documents in .NET.  When I first did a search for this a few months ago I really didn&#8217;t find anything that suited my needs: a library that I could [...]]]></description>
			<content:encoded><![CDATA[Copyright &copy; 2010 <a href="http://kdmurray.net">Keith</a>. Visit the original article at <a href="http://kdmurray.net/2010/04/05/announcing-epubsharp/">http://kdmurray.net/2010/04/05/announcing-epubsharp/</a>.<br /><p>Over the past few days I&#8217;ve put some time into working on a library to create EPUB documents in .NET.  When I first did a search for this a few months ago I really didn&#8217;t find anything that suited my needs: a library that I could use to create EPUB documents on the fly, in code.</p>
<p>So I said to myself: &#8220;Self! You can write code, build the damn thing yourslef!&#8221;. So I did.</p>
<p>The initial version of the library has been published up on Google Code and is probably full of holes. If you&#8217;re interested, have a look and let me know what you think.  I&#8217;ll try to publish some more detailed specs for what the library does in the coming weeks.</p>
<p>For now, it can get got at: <a href="http://code.google.com/p/epubsharp/"title="EpubSharp on Google Code"  target="_blank">http://code.google.com/p/epubsharp/</a> &#8212; and yes, the documentation on that page is as sparse as it is here.  <img src='http://kdmurray.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://kdmurray.net/2010/04/05/announcing-epubsharp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://kdmurray.net/2010/04/05/announcing-epubsharp/</feedburner:origLink></item>
		<item>
		<title>The Future of Short Order Code</title>
		<link>http://feedproxy.google.com/~r/kdmurray/~3/7IOfEeWB8kg/</link>
		<comments>http://kdmurray.net/2010/04/03/the-future-of-short-order-code/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 06:09:30 +0000</pubDate>
		<dc:creator>Keith</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Global Geek Podcast]]></category>
		<category><![CDATA[short order code]]></category>

		<guid isPermaLink="false">http://kdmurray.net/?p=828</guid>
		<description><![CDATA[Copyright &#169; 2010 Keith. Visit the original article at http://kdmurray.net/2010/04/03/the-future-of-short-order-code/.The future of Short Order code is very much up in the air right now. With a baby on the way in the near future and what seems like no time to work on things for the podcast already There&#8217;s a good chance that there won&#8217;t [...]]]></description>
			<content:encoded><![CDATA[Copyright &copy; 2010 <a href="http://kdmurray.net">Keith</a>. Visit the original article at <a href="http://kdmurray.net/2010/04/03/the-future-of-short-order-code/">http://kdmurray.net/2010/04/03/the-future-of-short-order-code/</a>.<br /><p>The future of Short Order code is very much up in the air right now. With a baby on the way in the near future and what seems like no time to work on things for the podcast already There&#8217;s a good chance that there won&#8217;t be another episode of Short Order code for at least another few months.</p>
<p>I have been considering using the SOC blog as more of a blog and posting all of my programming related posts there and leaving this one as more of a general blog.  I have some posts coming soon for programming related things and I&#8217;m trying to figure out what makes more sense: posting them here where they&#8217;ll get a few more eyeballs, or posting them on SOC where the site is all about programming &#8212; albeit a programming podcast that hasn&#8217;t seen an episode since late 2009.</p>
<p>In short, the future is muddy. Hopefully I&#8217;ll be able to shed some more light on things as the next month or two roll on.</p>
]]></content:encoded>
			<wfw:commentRss>http://kdmurray.net/2010/04/03/the-future-of-short-order-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://kdmurray.net/2010/04/03/the-future-of-short-order-code/</feedburner:origLink></item>
		<item>
		<title>New Box – Dell Vostro 430</title>
		<link>http://feedproxy.google.com/~r/kdmurray/~3/dlVPfEkrCr8/</link>
		<comments>http://kdmurray.net/2010/01/14/new-box-dell-vostro-430/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 08:15:29 +0000</pubDate>
		<dc:creator>Keith</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[boxen]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[buy]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[VM]]></category>

		<guid isPermaLink="false">http://kdmurray.net/?p=808</guid>
		<description><![CDATA[Copyright &#169; 2010 Keith. Visit the original article at http://kdmurray.net/2010/01/14/new-box-dell-vostro-430/.I&#8217;ve got no doubt I&#8217;ll take some heat for going this route, but my solution to the build it or buy it dilemma was in fact to buy a new box. I decided to go for a machine from their business lineup, the Vostro 430 MT. [...]]]></description>
			<content:encoded><![CDATA[Copyright &copy; 2010 <a href="http://kdmurray.net">Keith</a>. Visit the original article at <a href="http://kdmurray.net/2010/01/14/new-box-dell-vostro-430/">http://kdmurray.net/2010/01/14/new-box-dell-vostro-430/</a>.<br /><p>I&#8217;ve got no doubt I&#8217;ll take some heat for going this route, but my solution to the <a href="http://kdmurray.net/2010/01/01/build-it-or-buy-it-the-technologists-dillemma/" target="_self">build it or buy it dilemma</a> was in fact to buy a new box. I decided to go for a machine from their business lineup, the <a href="http://www1.ca.dell.com/ca/en/business/desktops/vostro-430/pd.aspx?refid=vostro-430&amp;s=bsd&amp;cs=cabsdt1" target="_blank">Vostro 430 MT</a>. This machine comes with a bunch of cores and an ample amount of RAM will allow this box to become the base for my home computing activities.</p>
<p><img class="alignright size-full wp-image-822" title="96853863369137192645863751565797555095" src="http://kdmurray.net/wp-content/uploads/2010/01/96853863369137192645863751565797555095.jpg" alt="" width="130" height="130" />This machine&#8217;s primary duty will be to take over the day-to-day computing tasks from my Macbook freeing it up for mobile-only duties so that I&#8217;m not carrying around the primary copies of most of my data every time I leave the house.  In addition, I&#8217;ll be <a rel="nofollow" href="http://en.wikipedia.org/wiki/Full_virtualization" target="_blank">virtualizing</a> the two desktop machines I have in the basement today, one of which has succumbed to old age in the past couple of months.  The VMs will provide some added flexibility as far as Operating Systems and some single-duty machines.</p>
<p>For now I&#8217;m evaluating a couple of virtualization options to use on the new box when it arrives, and I&#8217;m re-working the layout of the home network, splitting out VLANs for the servers to help isolate them a bit from the rest of the network. The main goal of some of this is to play around and learn the technologies, of course.</p>
<p>Some of the VM applications I&#8217;m considering include test machines for development, SSH tunnel/proxy for remote access, web server, Mozilla Weave server, secure machine for my office VPN and whatever else my dreams, or nightmares (or conversations with <a href="http://knightwise.com/" target="_blank">Knightwise</a>) inspire.</p>
<p>The machine should arrive in the next week, unboxing and other additional posts will follow.</p>
]]></content:encoded>
			<wfw:commentRss>http://kdmurray.net/2010/01/14/new-box-dell-vostro-430/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://kdmurray.net/2010/01/14/new-box-dell-vostro-430/</feedburner:origLink></item>
		<item>
		<title>Google Docs Adds Cloud Storage</title>
		<link>http://feedproxy.google.com/~r/kdmurray/~3/dvKrv1vUmco/</link>
		<comments>http://kdmurray.net/2010/01/13/google-docs-adds-cloud-storage/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 07:38:32 +0000</pubDate>
		<dc:creator>Keith</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[docs]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[GDrive]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Docs]]></category>
		<category><![CDATA[sharing]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[types]]></category>

		<guid isPermaLink="false">http://kdmurray.net/?p=819</guid>
		<description><![CDATA[Copyright &#169; 2010 Keith. Visit the original article at http://kdmurray.net/2010/01/13/google-docs-adds-cloud-storage/.Google Docs today expanded the functionality of the service by offering 1GB of cloud storage for any type of file you want to upload. The only restrictions seem to be the 1GB cap on storage (you can buy more at $0.25 USD / GB) and the [...]]]></description>
			<content:encoded><![CDATA[Copyright &copy; 2010 <a href="http://kdmurray.net">Keith</a>. Visit the original article at <a href="http://kdmurray.net/2010/01/13/google-docs-adds-cloud-storage/">http://kdmurray.net/2010/01/13/google-docs-adds-cloud-storage/</a>.<br /><p>Google Docs today expanded the functionality of the service by <a href="http://googleblog.blogspot.com/2010/01/upload-your-files-and-access-them.html" target="_blank">offering 1GB of cloud storage</a> for any type of file you want to upload. The only restrictions seem to be the 1GB cap on storage (you can buy more at $0.25 USD / GB) and the limit of 250MB per individual file.</p>
<p>Though it doesn&#8217;t quite match some of the other features we&#8217;ve become accustomed to seeing in cloud storage like an OS client with drag &amp; drop functionality, it certainly provides a reliable place to store some of your larger files that won&#8217;t fit under the smaller 20MB cap that Google places on email. This is quite possibly the precursor to the much lauded and speculated about G-Drive cloud storage service.</p>
<p>via <a href="http://lifehacker.com/5446337/" target="_blank">LifeHacker</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kdmurray.net/2010/01/13/google-docs-adds-cloud-storage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://kdmurray.net/2010/01/13/google-docs-adds-cloud-storage/</feedburner:origLink></item>
		<item>
		<title>Creating ISO Images from the OSX Command Line</title>
		<link>http://feedproxy.google.com/~r/kdmurray/~3/RfOJQ21A18g/</link>
		<comments>http://kdmurray.net/2010/01/09/creating-iso-images-from-the-osx-command-line/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 08:31:26 +0000</pubDate>
		<dc:creator>Keith</dc:creator>
				<category><![CDATA[Lessons]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[dd]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[iso]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://kdmurray.net/?p=810</guid>
		<description><![CDATA[Copyright &#169; 2010 Keith. Visit the original article at http://kdmurray.net/2010/01/09/creating-iso-images-from-the-osx-command-line/.A super fast way to create ISO images (or any kind of bit for bit copies) from the OS X (or linux, or unix) command line is to use the DD command. This isn&#8217;t without it&#8217;s risks since the DD command will duplicate byte for byte [...]]]></description>
			<content:encoded><![CDATA[Copyright &copy; 2010 <a href="http://kdmurray.net">Keith</a>. Visit the original article at <a href="http://kdmurray.net/2010/01/09/creating-iso-images-from-the-osx-command-line/">http://kdmurray.net/2010/01/09/creating-iso-images-from-the-osx-command-line/</a>.<br /><p>A super fast way to create ISO images (or any kind of bit for bit copies) from the OS X (or linux, or unix) command line is to use the DD command. This isn&#8217;t without it&#8217;s risks since the DD command will duplicate byte for byte all data from one location to another, but once you&#8217;ve found the necessary information you can easily replicate data.</p>
<p>I needed to create a copy of my Windows XP installation CD to use for setting up new virtual machines. Since it&#8217;s quicker to install VMs from an ISO image rather than from the installation media I wanted an ISO of my CD. The built in OS X disk utility can make this work&#8230; in theory. My copy of disk utility (on Snow Leopard) didn&#8217;t want to recognize the CD. So I turned to my command line knowledge.</p>
<p>I should also note that before you can read the CD using DD, you will need to unmount it:</p>
<p><code>sudo umount /dev/disk1s0</code></p>
<p>You&#8217;ll be prompted for your administrator password, then you&#8217;re in business.</p>
<p>To create an image of a CD (or DVD or anything else&#8230;) use the following:</p>
<p><code>dd if=/dev/disk1s0 of=/Users/kdmurray/Desktop/WindowsXP.iso bs=64k</code></p>
<ul>
<li>if= input file, in this case our Windows XP CD</li>
<li>of= output file, the actual ISO file you want created</li>
<li>bs= block size, the size of chunks the tool will work with</li>
</ul>
<p>I did a few speed tests at 16k, 32k, 64k, 128k, 256k and 1M and found that the 64k seemed to be the ideal block size on my machine. This will vary by CPU, and possibly by hard drive controller, so do a few contolled tests first. To do a test, start the copy process, then stop it after 20-30s (ctrl-c). Whichever one copied the most in 30s is the one you should use.</p>
<p>That&#8217;s all she wrote, folks. Happy command-lining. <img src='http://kdmurray.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://kdmurray.net/2010/01/09/creating-iso-images-from-the-osx-command-line/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://kdmurray.net/2010/01/09/creating-iso-images-from-the-osx-command-line/</feedburner:origLink></item>
		<item>
		<title>Build it or Buy it — The Technologist’s dillemma</title>
		<link>http://feedproxy.google.com/~r/kdmurray/~3/2_pSyAzyps8/</link>
		<comments>http://kdmurray.net/2010/01/01/build-it-or-buy-it-the-technologists-dillemma/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 07:59:25 +0000</pubDate>
		<dc:creator>Keith</dc:creator>
				<category><![CDATA[Soapbox]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[buy]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[dilemma]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[technologist]]></category>

		<guid isPermaLink="false">http://kdmurray.net/?p=712</guid>
		<description><![CDATA[Copyright &#169; 2010 Keith. Visit the original article at http://kdmurray.net/2010/01/01/build-it-or-buy-it-the-technologists-dillemma/.The time has finally come for me to pick up a new system. This is usually a very happy moment in a geek&#8217;s life; the time when you get to spec out a new system with some of the latest tech. Reading product reviews, selecting components&#8230; [...]]]></description>
			<content:encoded><![CDATA[Copyright &copy; 2010 <a href="http://kdmurray.net">Keith</a>. Visit the original article at <a href="http://kdmurray.net/2010/01/01/build-it-or-buy-it-the-technologists-dillemma/">http://kdmurray.net/2010/01/01/build-it-or-buy-it-the-technologists-dillemma/</a>.<br /><p><a href="http://www.flickr.com/photos/frigante/410052637/" target="_blank"><img class="alignleft" style="margin: 4px;" title="PIII 900 Guts" src="http://farm1.static.flickr.com/180/410052637_dc8075637a_d.jpg" alt="" width="200" height="150" /></a>The time has finally come for me to pick up a new system. This is usually a very happy moment in a geek&#8217;s life; the time when you get to spec out a new system with some of the latest tech. Reading product reviews, selecting components&#8230; it&#8217;s fun!</p>
<p>One of the true marks of geekdom is the ability to build your own machines from the ground up. Everything from ordering the parts, to gingerly placing in the CPU and glopping on just the right amount of thermal-conductive paste right through to powering up the system for the first time then installing and pimping out the OS of your choice. I&#8217;ve been there, its a ton of fun when you finally get everything working just right. It&#8217;s also a fair bit of work.</p>
<p>The more pragmatic geek can also buy a system, spec&#8217;d to order from companies like Dell or Lenovo. These systems still have pretty much everything you want, professionally assembled and sent to your door. These usually take a few weeks to ship so you need to be a bit more patient but there&#8217;s a lot less work involved.</p>
<p>So, what about price? Most of the time the price is pretty comparable for a complete system. I priced out a system with the following basic requirements from both Dell and a local computer retailer:</p>
<ul>
<li>Intel Core i7 860</li>
<li>8GB of Memory</li>
<li>Windows 7 Pro</li>
</ul>
<p>The two systems came out less than $80 apart with some minor differences in specs, hard drive size, optical drive, video card etc. For the most part it was the same system, and essentially the same price.</p>
<p>So what does it come down to? Is one option truly better than any other? The best advice I can give is that you need to get yourself a system you can trust. If that means you want professionals to put the system together for you and certify it, then that&#8217;s the route you need to take. If, however, you&#8217;re the Richard Stallman of computer builds and you feel that you need to free each of the components and build a computer that&#8217;s independent of &#8220;the man&#8221; and that&#8217;s where you derive the most value, then that should be your choice.</p>
<p>Image courtesy <a href="http://www.flickr.com/photos/frigante/410052637/" target="_blank">Frigante on Flickr</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://kdmurray.net/2010/01/01/build-it-or-buy-it-the-technologists-dillemma/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://kdmurray.net/2010/01/01/build-it-or-buy-it-the-technologists-dillemma/</feedburner:origLink></item>
		<item>
		<title>Fixing Bootcamp Clock Issue on Windows 7</title>
		<link>http://feedproxy.google.com/~r/kdmurray/~3/e5Dvyt2gafQ/</link>
		<comments>http://kdmurray.net/2009/11/01/fixing-bootcamp-clock-issue-on-windows-7/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 09:31:27 +0000</pubDate>
		<dc:creator>Keith</dc:creator>
				<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[Bootcamp]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[clock]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[registry]]></category>
		<category><![CDATA[Snow Leopard]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://kdmurray.net/?p=788</guid>
		<description><![CDATA[Copyright &#169; 2010 Keith. Visit the original article at http://kdmurray.net/2009/11/01/fixing-bootcamp-clock-issue-on-windows-7/.For the longest time I simply lived with the fact that my system clock didn&#8217;t behave properly in my Windows partition when I had BootCamp setup on the macbook. It didn&#8217;t matter what I did, I couldn&#8217;t seem to find a way to keep the clock [...]]]></description>
			<content:encoded><![CDATA[Copyright &copy; 2010 <a href="http://kdmurray.net">Keith</a>. Visit the original article at <a href="http://kdmurray.net/2009/11/01/fixing-bootcamp-clock-issue-on-windows-7/">http://kdmurray.net/2009/11/01/fixing-bootcamp-clock-issue-on-windows-7/</a>.<br /><p><a href="http://kdmurray.net/wp-content/uploads/2009/11/win7transparent.png"><img class="alignleft size-full wp-image-792" title="win7transparent" src="http://kdmurray.net/wp-content/uploads/2009/11/win7transparent.png" alt="win7transparent" width="128" height="114" /></a>For the longest time I simply lived with the fact that my system clock didn&#8217;t behave properly in my Windows partition when I had BootCamp setup on the macbook. It didn&#8217;t matter what I did, I couldn&#8217;t seem to find a way to keep the clock properly synchronized.  The problem stems from how Apple decided to implement the system clock which is different from the way that most PC manufacturers do.</p>
<p>Apple&#8217;s hardware always returns time in UTC, most PCs update the system clock to local time and won&#8217;t require a conversion of that time so of course the default Windows settings aren&#8217;t really set up for BootCamp (though you&#8217;d think the BootCamp installer could correct this&#8230;)</p>
<p>The solution, as it turns out, is a simple registry key change to tell Windows that the system&#8217;s clock is using UTC time.  One value in one key, that&#8217;s all it takes:</p>
<p><code>Windows Registry Editor Version 5.00</code></p>
<p><code>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation]<br />
"RealTimeIsUniversal"=dword:00000001</code></p>
<p><strong>BootcampUtcClockFix.reg</strong></p>
<p>Another solution that I found over at <a href="http://superuser.com/questions/11150/clock-on-my-mac-gets-altered-when-i-boot-into-windows" target="_blank">superuser.com</a> is to modify OS X to change the time at startup and at shutdown. To me, this seems like more of a hack than the &#8220;unsupported&#8221; registry key. Windows 7 has been working well under this configuration and has even successfully interpreted the daylight saving time change.</p>
]]></content:encoded>
			<wfw:commentRss>http://kdmurray.net/2009/11/01/fixing-bootcamp-clock-issue-on-windows-7/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://kdmurray.net/2009/11/01/fixing-bootcamp-clock-issue-on-windows-7/</feedburner:origLink></item>
		<item>
		<title>GeoCities Retiring Today</title>
		<link>http://feedproxy.google.com/~r/kdmurray/~3/ehyn1Lwr124/</link>
		<comments>http://kdmurray.net/2009/10/26/geocities-retiring-today/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 15:04:35 +0000</pubDate>
		<dc:creator>Keith</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[closed]]></category>
		<category><![CDATA[GeoCities]]></category>
		<category><![CDATA[RIP]]></category>
		<category><![CDATA[shutdown]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://kdmurray.net/?p=782</guid>
		<description><![CDATA[Copyright &#169; 2010 Keith. Visit the original article at http://kdmurray.net/2009/10/26/geocities-retiring-today/.It&#8217;s been a long time since I had an active presence on GeoCities (about 13 years by my count) but its still a site that holds a place in my heart. I got  started with website design, as did thousands of other people, by having a [...]]]></description>
			<content:encoded><![CDATA[Copyright &copy; 2010 <a href="http://kdmurray.net">Keith</a>. Visit the original article at <a href="http://kdmurray.net/2009/10/26/geocities-retiring-today/">http://kdmurray.net/2009/10/26/geocities-retiring-today/</a>.<br /><p><a href="http://kdmurray.net/wp-content/uploads/2009/10/Geocitiesoriginallogo.png"><img class="alignleft size-full wp-image-786" title="Geocitiesoriginallogo" src="http://kdmurray.net/wp-content/uploads/2009/10/Geocitiesoriginallogo.png" alt="Geocitiesoriginallogo" width="93" height="84" /></a>It&#8217;s been a long time since I had an active presence on <a rel="nofollow" href="http://en.wikipedia.org/wiki/Geocities" target="_blank">GeoCities</a> (about 13 years by my count) but its still a site that holds a place in my heart. I got  started with website design, as did thousands of other people, by having a site on GeoCities many years ago. And within a few months of joining what was in some ways one of the earliest social networks of the web, I&#8217;d entered the &#8220;GeoCities Community Leader&#8221; program to help other people learn the technology, and learn to do more with the tools the free service provided.</p>
<p><a href="http://kdmurray.net/wp-content/uploads/2009/10/no_more_geocities.PNG"><img class="alignleft size-medium wp-image-783" style="border: 0pt none; margin: 0px;" title="no_more_geocities" src="http://kdmurray.net/wp-content/uploads/2009/10/no_more_geocities-299x98.PNG" alt="no_more_geocities" width="150" height="49" /></a>Today Yahoo is shutting down GeoCities officially. For good. It&#8217;s been 15 years since the service got its start in 1994, and 10 years since Yahoo bought the company for over $3 Billion in stock near the peak of the tech bubble in late 1999. Yahoo was fairly patient with the service leaving accounts active in one form or another until today.  It is in many ways the end of an era.</p>
<p><a href="http://kdmurray.net/wp-content/uploads/2009/10/xkcd_geocities_tribute.PNG"><img class="alignright size-thumbnail wp-image-784" title="xkcd_geocities_tribute" src="http://kdmurray.net/wp-content/uploads/2009/10/xkcd_geocities_tribute-150x150.PNG" alt="xkcd_geocities_tribute" width="150" height="150" /></a>Some sites are paying tribute to the venerable property. I can&#8217;t tell if <a href="http://xkcd.com/" target="_blank">xkcd is paying tribute</a>, or reminding those of us who are a bit sentimental just what the web looked like when GeoCities was the major force behind free web space on the internet.  Either way, have a look at the xkcd homepage today, or if you&#8217;ve missed the boat on that one, click the image in the right for a look at their 1990&#8242;s inspired design.</p>
<p>RIP GeoCities.</p>
]]></content:encoded>
			<wfw:commentRss>http://kdmurray.net/2009/10/26/geocities-retiring-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://kdmurray.net/2009/10/26/geocities-retiring-today/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.369 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-07-03 05:32:12 --><!-- Compression = gzip -->
