<?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>HonkBlog&#124;TechNotes &#187; Operating systems</title>
	<atom:link href="http://www.honk.com.au/index.php/category/operating-systems/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.honk.com.au</link>
	<description>Notes, fixes, tips and suggestions from across my technical world</description>
	<lastBuildDate>Wed, 02 Jun 2010 13:24:50 +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>Best free disk defragmenter for windows</title>
		<link>http://www.honk.com.au/index.php/2010/04/12/best-free-disk-defragmenter-for-windows/</link>
		<comments>http://www.honk.com.au/index.php/2010/04/12/best-free-disk-defragmenter-for-windows/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 11:17:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Optimisation]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[defragment]]></category>

		<guid isPermaLink="false">http://www.honk.com.au/?p=322</guid>
		<description><![CDATA[Anyone who&#8217;s had a PC for more than a few months knows that it will begin to slow down over time, they probably also know about disk de-fragmentation which basically reorders your disk drive to perform more quickly.  The free one that comes with Windows is better than nothing, but the other day I came across MyDefrag [...]]]></description>
			<content:encoded><![CDATA[<p>Anyone who&#8217;s had a PC for more than a few months knows that it will begin to slow down over time, they probably also know about disk de-fragmentation which basically reorders your disk drive to perform more quickly.  The free one that comes with Windows is better than nothing, but the other day I came across <a href="http://www.mydefrag.com/" target="_blank">MyDefrag</a> which is easily the <strong>best free disk defragmenter</strong> for Windows I&#8217;ve found.</p>
<p>As a defragmenter it looks great, but one of the things it also does is segment your drive (not partition just organise in segments) based on the file type to ensure the most commonly used files are near the beginning of the drive which in itself can see a major improvement in performance.</p>
<p>If you&#8217;re looking for the best free disk defragmenter for Windows, <a href="http://www.mydefrag.com/" target="_blank">check it out</a>.</p>
<p>NB: not sure if &#8220;defragmenter&#8221; is actually a word!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.honk.com.au/index.php/2010/04/12/best-free-disk-defragmenter-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.htaccess redirecting a Wordpress site to a new domain</title>
		<link>http://www.honk.com.au/index.php/2010/01/20/htaccess-redirecting-wordpress-site-new-domain/</link>
		<comments>http://www.honk.com.au/index.php/2010/01/20/htaccess-redirecting-wordpress-site-new-domain/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 10:45:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[notworking]]></category>

		<guid isPermaLink="false">http://www.honk.com.au/?p=278</guid>
		<description><![CDATA[.htaccess problems and can be a real pain, especially if like me you only do things with the .htaccess file every now and then so aren&#8217;t completely comfortable with the syntax.  Last night when helping a friend and author of the excellent ExchangeWire (about tracking the nascent ad exchange and ad trading networks) switch a [...]]]></description>
			<content:encoded><![CDATA[<p>.htaccess problems and can be a real pain, especially if like me you only do things with the .htaccess file every now and then so aren&#8217;t completely comfortable with the syntax.  Last night when helping a friend and author of the excellent <a href="http://www.exchangewire.com/" target="_blank">ExchangeWire </a>(about tracking the nascent <a href="http://www.exchangewire.com/" target="_blank">ad exchange and ad trading networks</a>) <strong>switch a domain</strong>, I configured the .htaccess file using a standard format:</p>
<p>RewriteEngine On<br />
RewriteCond %{HTTP_HOST} ^oldomain.com$ [OR]<br />
RewriteCond %{HTTP_HOST} ^www. oldomain.com$<br />
RewriteRule ^(.*)$ &#8220;http\:\/\/www\.newdomain\.com\/$1&#8243; [R=301,L]</p>
<p>I say &#8220;a&#8221; standard format because as anyone who has used .htaccess before knows, there are a few variations on this syntax that do the same thing.  Not thinking about it much I put this in the root .htaccess of the Wordpress install, I tested the top domain, worked fine, but the pages themselves just kept redirecting to the the root, not the actual page.  My complete <strong>.htaccess file that was not redirecting properly</strong>:</p>
<p># BEGIN WordPress<br />
&lt;IfModule mod_rewrite.c&gt;<br />
RewriteEngine On<br />
RewriteBase /<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . /index.php [L]<br />
&lt;/IfModule&gt;<br />
# END WordPress</p>
<p>RewriteEngine On<br />
RewriteCond %{HTTP_HOST} ^oldomain.com$ [OR]<br />
RewriteCond %{HTTP_HOST} ^www. oldomain.com$<br />
RewriteRule ^(.*)$ &#8220;http\:\/\/www\.newdomain\.com\/$1&#8243; [R=301,L]</p>
<p>Ok so the clued up amongst you will realise the problem was caused because of the ordering of the commands I had put in the file, this is important. In terms of importance, the domain redirection had to happen first, so I needed to put it above the Wordpress command otherwise the Wordpress command hijacked the process and confused the primary redirect.  So, the lesson is be careful of the order you put things in and the potential conflicts that can occur as a result.  Keep the major redirects/rules at the top of the page (e.g. when you want to <strong>change domains</strong>) and the more detailed one(s) below for more consistency (such as <strong>Wordpress redirects</strong>).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.honk.com.au/index.php/2010/01/20/htaccess-redirecting-wordpress-site-new-domain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to restore the explorer process in windows XP</title>
		<link>http://www.honk.com.au/index.php/2009/10/24/how-to-restore-the-explorer-process-in-windows-xp/</link>
		<comments>http://www.honk.com.au/index.php/2009/10/24/how-to-restore-the-explorer-process-in-windows-xp/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 13:18:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.honk.com.au/?p=211</guid>
		<description><![CDATA[Being the impatient person I am I have a horrible habit of closing down the windows explorer process in the Windows task manager, when actually I mean to close down the iexplorer process just above it that has hung for the thousandth time.
I&#8217;ve never bothered to look up a quick fix to this, and so [...]]]></description>
			<content:encoded><![CDATA[<p>Being the impatient person I am I have a horrible habit of closing down the windows explorer process in the Windows task manager, when actually I mean to close down the iexplorer process just above it that has hung for the thousandth time.</p>
<p>I&#8217;ve never bothered to look up a quick fix to this, and so have always restarted my system when this has happened, but I discovered today there is in fact a solution that doesn&#8217;t require a restart.</p>
<p>To restore the explorer process in windows XP:</p>
<ol>
<li>Click the trusty old CTRL+ALT+DEL</li>
<li>Select Task Manager</li>
<li>Then File</li>
<li>Then New Task Run</li>
<li>Type &#8220;explorer&#8221; into the input box and hit enter</li>
</ol>
<p>And lo and behold the start menu and your active programs should reappear on your screen.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.honk.com.au/index.php/2009/10/24/how-to-restore-the-explorer-process-in-windows-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
