<?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"
	>

<channel>
	<title>Judd Muir</title>
	<atom:link href="http://juddmuir.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://juddmuir.com</link>
	<description>Official Home Page</description>
	<pubDate>Tue, 31 Aug 2010 15:37:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Changing the Unix hostname</title>
		<link>http://juddmuir.com/blog/2010/changing-the-unix-hostname/</link>
		<comments>http://juddmuir.com/blog/2010/changing-the-unix-hostname/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 08:49:14 +0000</pubDate>
		<dc:creator>Judd Muir</dc:creator>
		
		<category><![CDATA[Unix]]></category>

		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://juddmuir.com/?p=63</guid>
		<description><![CDATA[A Unix machine&#8217;s hostname appears at the shell prompt, and is also the name used many of the networking pro-grams to identify the machine.

To see what the hostname is set to:

$ hostname


And to change it:

$ hostname new_name_here



]]></description>
			<content:encoded><![CDATA[<p>A Unix machine&#8217;s hostname appears at the shell prompt, and is also the name used many of the networking pro-grams to identify the machine.</p>
<ul>
<li>To see what the hostname is set to:
<ul>
<li>$ hostname</li>
</ul>
</li>
<li>And to change it:
<ul>
<li>$ hostname new_name_here</li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://juddmuir.com/blog/2010/changing-the-unix-hostname/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Textmate Tips &#38; Tricks</title>
		<link>http://juddmuir.com/blog/2010/textmate-tips-tricks/</link>
		<comments>http://juddmuir.com/blog/2010/textmate-tips-tricks/#comments</comments>
		<pubDate>Sun, 08 Aug 2010 11:00:53 +0000</pubDate>
		<dc:creator>Judd Muir</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[textmate]]></category>

		<guid isPermaLink="false">http://juddmuir.com/?p=57</guid>
		<description><![CDATA[Adding folding to CSS blocks in TextMate
(From http://stefan.sofa-rockers.org/2010/07/14/adding-sections-folding-css-textmate/)
Top tip for folding CSS according to comments such as:
/* start ContentBlock */
/* end ContentBlock */

Added snippet called &#8220;sectionfold&#8221; to the Textmate CSS bundle:

Bundles -&#62; Bundle Editor -&#62; Show Bundle Editor
New Snippet, then paste in the following:
/* start ${1:section} */
$0
/* end $1 */
It gets activated by the tab [...]]]></description>
			<content:encoded><![CDATA[<h2>Adding folding to CSS blocks in TextMate</h2>
<p>(From http://stefan.sofa-rockers.org/2010/07/14/adding-sections-folding-css-textmate/)</p>
<p>Top tip for folding CSS according to comments such as:</p>
<p>/* start ContentBlock */</p>
<p>/* end ContentBlock */</p>
<ol>
<li>Added snippet called &#8220;sectionfold&#8221; to the Textmate CSS bundle:
<ul>
<li>Bundles -&gt; Bundle Editor -&gt; Show Bundle Editor</li>
<li>New Snippet, then paste in the following:</li>
<li>/* start ${1:section} */<br />
$0<br />
/* end $1 */</li>
<li>It gets activated by the tab trigger &#8220;sec&#8221; (or as you like), and set the scope selector to source.css.</li>
<li><a href="http://www.juddmuir.com/files/2010/08/textmate_css_editor_tip_1.gif"><img class="alignnone size-medium wp-image-58" src="http://www.juddmuir.com/files/2010/08/textmate_css_editor_tip_1-300x217.gif" alt="" width="300" height="217" /></a></li>
</ul>
</li>
<li>Modify the CSS language definition:
<ul>
<li>
<pre><span class="n">foldingStartMarker</span> <span class="o">=</span> <span class="s">'/\*\*(?!\*)|\{\s*($|/\*(?!.*?\*/.*\S))|/\* start \w+ \*/'</span><span class="p">;</span></pre>
</li>
<li>
<pre><span class="n">foldingStopMarker</span> <span class="o">=</span> <span class="s">'(?&lt;!\*)\*\*/|^\s*\}|/\* end \w+ \*/'</span><span class="p">;</span></pre>
</li>
<li><a href="http://www.juddmuir.com/files/2010/08/textmate_css_editor_tip_2.gif"><img class="alignnone size-full wp-image-59" src="http://www.juddmuir.com/files/2010/08/textmate_css_editor_tip_2.gif" alt="" width="499" height="352" /></a></li>
</ul>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://juddmuir.com/blog/2010/textmate-tips-tricks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to convert date format  MM/DD/YYYY to YYYY/MM/DD using sed (Unix)</title>
		<link>http://juddmuir.com/blog/2010/how-to-convert-date-format-mmddyyyy-to-yyyymmdd-using-sed-unix/</link>
		<comments>http://juddmuir.com/blog/2010/how-to-convert-date-format-mmddyyyy-to-yyyymmdd-using-sed-unix/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 14:44:46 +0000</pubDate>
		<dc:creator>Judd Muir</dc:creator>
		
		<category><![CDATA[Unix]]></category>

		<category><![CDATA[dates]]></category>

		<category><![CDATA[sed]]></category>

		<guid isPermaLink="false">http://juddmuir.com/?p=52</guid>
		<description><![CDATA[Damned Americans and their illogical data formats&#8230;trying to import a 100MB file into MySQL, and the date fields are in MM/DD/YYYY instead of the traditional YYYY/MM/DD that we all know and love&#8230;so I turned my hand to sed:
First, a quick test on the command line:
echo &#8220;MM/DD/YYYY&#8221; &#124; sed -e &#8220;s_\(..\)\/\(..\)\/\(&#8230;.\)_\3/\1/\2_&#8221;
=&#62; YYYY/MM/DD
echo &#8220;textbeforeMM/DD/YYYYtextafter&#8221; &#124; sed -e [...]]]></description>
			<content:encoded><![CDATA[<p>Damned Americans and their illogical data formats&#8230;trying to import a 100MB file into MySQL, and the date fields are in MM/DD/YYYY instead of the traditional YYYY/MM/DD that we all know and love&#8230;so I turned my hand to sed:</p>
<p>First, a quick test on the command line:</p>
<blockquote><p>echo &#8220;MM/DD/YYYY&#8221; | sed -e &#8220;s_\(..\)\/\(..\)\/\(&#8230;.\)_\3/\1/\2_&#8221;</p>
<p>=&gt; YYYY/MM/DD</p>
<p>echo &#8220;textbeforeMM/DD/YYYYtextafter&#8221; | sed -e &#8220;s_\(..\)\/\(..\)\/\(&#8230;.\)_\3/\1/\2_&#8221;</p>
<p>=&gt;textbeforeYYYY/MM/DDtextafter</p></blockquote>
<p>Then let&#8217;s let it loose on the file itself:</p>
<blockquote><p>sed -e &#8220;s_\(..\)\/\(..\)\/\(&#8230;.\)_\3/\1/\2_&#8221; test_in.csv &gt; test_out.csv</p></blockquote>
<p>Took a few seconds to run against a 100MB file <img src='http://www.juddmuir.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Many thanks to Bruce Barnett for his <a href="http://www.grymoire.com/Unix/Sed.html" target="_blank">Sed - An Introduction and Tutorial</a> , an invaluable reference for a neophyte like me <img src='http://www.juddmuir.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://juddmuir.com/blog/2010/how-to-convert-date-format-mmddyyyy-to-yyyymmdd-using-sed-unix/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hotel Affiliate Club</title>
		<link>http://juddmuir.com/blog/2010/hotel-affiliate-club/</link>
		<comments>http://juddmuir.com/blog/2010/hotel-affiliate-club/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 16:20:24 +0000</pubDate>
		<dc:creator>Judd Muir</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[projects]]></category>

		<guid isPermaLink="false">http://juddmuir.com/?p=50</guid>
		<description><![CDATA[Let&#8217;s get the clock ticking for a new project: Hotel Affiliate Club
Thanks 
]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s get the clock ticking for a new project: <a href="http://www.hotelaffiliateclub.com/" target="_blank">Hotel Affiliate Club</a></p>
<p>Thanks <img src='http://www.juddmuir.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://juddmuir.com/blog/2010/hotel-affiliate-club/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installing Ubuntu Netbook on Acer Aspire One</title>
		<link>http://juddmuir.com/blog/2010/installing-ubuntu-netbook-on-acer-aspire-one/</link>
		<comments>http://juddmuir.com/blog/2010/installing-ubuntu-netbook-on-acer-aspire-one/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 11:02:44 +0000</pubDate>
		<dc:creator>Judd Muir</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<category><![CDATA[acer aspire one]]></category>

		<category><![CDATA[ubuntu netbook]]></category>

		<guid isPermaLink="false">http://juddmuir.com/?p=40</guid>
		<description><![CDATA[I bought an Aspire One about a year ago, the intention being to surf and email from the comfort of my own sofa&#8230;so far, it&#8217;s been an unsatisfying experience due to the boot process freezing on startup if it&#8217;s previously died from lack of battery, and the interminable dropping of the wi-fi connection, not too [...]]]></description>
			<content:encoded><![CDATA[<p>I bought an Aspire One about a year ago, the intention being to surf and email from the comfort of my own sofa&#8230;so far, it&#8217;s been an unsatisfying experience due to the boot process freezing on startup if it&#8217;s previously died from lack of battery, and the interminable dropping of the wi-fi connection, not too mention the rather ridiculous Linpus operating system.</p>
<p>A year down the road, and I&#8217;m suddenly determined to turn this little thing into something useful, and after doing a little web-research, I&#8217;m going to attempt installing Ubuntu Network version onto my Acer Aspire One.</p>
<p>The starting point:</p>
<p>Acer Aspire One model AOA 150.  Its an 8.9&#8243; model with the Atom N270,  1GB RAM, and a 120GB hard drive, currently on the crappy BIOS version v0.3114, and the simplistic Linpus OS.</p>
<p>The process:</p>
<ol>
<li>First, I made sure the BIOS was up to date. There appear to be a lot of issues with the earlier version of the Aspire One BIOS, which I was still running. I followed <a href="http://macles.blogspot.com/2008/07/flashing-bios.html" target="_blank">macle&#8217;s excellent instructions,</a> with the latest BIOS version v0.3310 downloaded from <a href="http://sites.google.com/site/maclesblogspotcom/BIOS" target="_blank">here</a>
<ul>
<li>Failed at the first hurdle - turns out you need to make sure your USB drive does not have any spaces in it&#8217;s volume name&#8230;.so, rename / remount&#8230;start again&#8230;</li>
<li>&#8230;Flash update successful - and yes, a quick system check shows that I&#8217;m now running with BIOS v0.3310 <img src='http://www.juddmuir.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </li>
</ul>
</li>
<li>Right, now to install <a href="http://www.ubuntu.com/netbook/get-ubuntu" target="_blank">Ubuntu Netbook</a>
<ol>
<li>Ok, an obvious step, but first I needed to download it - at 700MB, it took awhile, so I should really have downloaded this before I got started, to avoid thumb-twiddling&#8230;.</li>
<li>Then I had to root around for a 2GB-plus USB drive to copy Ubuntu onto, then followed Ubuntu&#8217;s instructions for creating a <a href="http://www.ubuntu.com/netbook/get-ubuntu/download" target="_blank">Ubuntu-bootable USB drive</a> &#8230;which also took awhile..</li>
<li>And finally, plugged in the USB stick into the Acer Aspire One, remembering to F12 to boot from the USB drive, and took Ubuntu for a test run&#8230;if I want to install it instead of run it off the USB, there&#8217;s a big fat &#8220;Install&#8221; button on the desktop&#8230;</li>
</ol>
</li>
<li>Things I&#8217;m going to keep an eye on
<ol>
<li>Wireless connection</li>
<li>Skype webcam - one main usage for my netbook is to Skype my kids in the UK, so it&#8217;s essential that the webcam works!</li>
<li>Cisco VPN: sudo apt-get install network-manager-vpnc</li>
</ol>
</li>
</ol>
<p>Update: I managed about an hour before installing Ubuntu for good and wiping Linpus away for ever. My netbook has never been so happy!</p>
<p>This is a <a href="http://www.linuxjournal.com/content/ubuntu-netbook-remix-acer-aspire-one-netbook" target="_blank">good reference</a> for one man&#8217;s journey down this path.</p>
]]></content:encoded>
			<wfw:commentRss>http://juddmuir.com/blog/2010/installing-ubuntu-netbook-on-acer-aspire-one/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Must-have SEO tools</title>
		<link>http://juddmuir.com/blog/2010/must-have-seo-tools/</link>
		<comments>http://juddmuir.com/blog/2010/must-have-seo-tools/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 11:16:09 +0000</pubDate>
		<dc:creator>Judd Muir</dc:creator>
		
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://juddmuir.com/?p=37</guid>
		<description><![CDATA[I just wrote a review of two great tools I&#8217;ve only recently come across, that are invaluable time-savers for any practicing SEO. Check out my review of Advanced Link Manager and Advanced Web Rankings 
]]></description>
			<content:encoded><![CDATA[<p>I just wrote a review of two great tools I&#8217;ve only recently come across, that are invaluable time-savers for any practicing SEO. Check out my <a href="http://www.barcelona-internet-marketing.com/blog/2010/03/01/review-of-advanced-link-manager-advanced-web-ranking/" target="_blank">review of Advanced Link Manager and Advanced Web Rankings</a> <img src='http://www.juddmuir.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://juddmuir.com/blog/2010/must-have-seo-tools/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Losing my faith in Joomla?</title>
		<link>http://juddmuir.com/blog/2009/losing-my-faith-in-joomla/</link>
		<comments>http://juddmuir.com/blog/2009/losing-my-faith-in-joomla/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 20:46:46 +0000</pubDate>
		<dc:creator>Judd Muir</dc:creator>
		
		<category><![CDATA[Joomla]]></category>

		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://juddmuir.com/?p=35</guid>
		<description><![CDATA[I&#8217;m a big fan of open-source software, and more recently of open-source frameworks running on open-source software. CMS of the month for me has been Joomla, but I have to admit that the shine is wearing off.
One of the big pluses of Joomla is the countless numbers of extensions, modules,  and plugins available. Wonderful&#8230;if only [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a big fan of open-source software, and more recently of open-source frameworks running on open-source software. CMS of the month for me has been Joomla, but I have to admit that the shine is wearing off.</p>
<p>One of the big pluses of Joomla is the countless numbers of extensions, modules,  and plugins available. Wonderful&#8230;if only they were long-lasting. I&#8217;ve seen so many launch strongly, then fade away - either due to lack of funds, or due to the developer&#8217;s success leading him/her to pastures new.</p>
<p><a href="http://dev.anything-digital.com/" target="_blank">sh404SEF</a> is a case in point - recently they have had huge problem with pagination in sh404SEF, and it&#8217;s been lasting long-enough to cause a lot of problems. An SEO plugin that doesn&#8217;t work consistently is a huge no-no.</p>
<p>Maybe it&#8217;s time I moved to WordPress&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://juddmuir.com/blog/2009/losing-my-faith-in-joomla/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Being a parent - a job description</title>
		<link>http://juddmuir.com/blog/2009/being-a-parent-a-job-description/</link>
		<comments>http://juddmuir.com/blog/2009/being-a-parent-a-job-description/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 16:06:13 +0000</pubDate>
		<dc:creator>Judd Muir</dc:creator>
		
		<category><![CDATA[humour]]></category>

		<category><![CDATA[parenting]]></category>

		<guid isPermaLink="false">http://juddmuir.com/?p=33</guid>
		<description><![CDATA[
JOB DESCRIPTION :


Long-term team players needed, for challenging permanent work in an often chaotic environment. 
Candidates must possess excellent communication and organizational skills and be willing to work variable hours, which will include evenings and weekends and frequent 24 hour shifts on call. 
Some overnight travel required, including trips to primitive camping sites on rainy [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: Helvetica;font-style: normal;font-variant: normal;font-weight: normal;font-size: 12px;color: #000000"></p>
<div style="font-size: 12pt"><span style="text-decoration: underline"><span style="font-family: Times New Roman;font-size: small"><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"></span></span></span><span style="font-size: small"><span style="font-family: Times New Roman"><span style="font-size: 10pt;font-family: Tahoma"><strong></strong></span></span></span><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="text-decoration: underline"><span style="font-family: Times New Roman;font-size: small">JOB DESCRIPTION :</span></span><br />
</span></p>
<ul>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-family: Times New Roman;font-size: small">Long-term team players needed, for challenging<span> </span>permanent work in an often chaotic environment.<span> </span></span></span></li>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-family: Times New Roman;font-size: small">Candidates must possess excellent communication<span> </span>and organizational skills and be willing to work<span> </span>variable hours, which will include evenings and weekends<span> </span>and frequent 24 hour shifts on call.<span> </span></span></span></li>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-family: Times New Roman;font-size: small">Some overnight travel required, including trips to<span> </span>primitive camping sites on rainy weekends and endless sports tournaments in far away cities!<span> </span></span></span></li>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-family: Times New Roman;font-size: small"> Travel expenses not reimbursed.<span> </span></span></span></li>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-family: Times New Roman;font-size: small">Extensive courier duties also required.</span></span></li>
</ul>
<p><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="text-decoration: underline"><span style="font-family: Times New Roman;font-size: small">RESPONSIBILITIES :</span></span><br />
</span></p>
<ul>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-family: Times New Roman;font-size: small">The rest of your life.<span> </span></span></span></li>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-family: Times New Roman;font-size: small"> Must be willing to be hated, at least temporarily,<span> </span>until someone needs a fiver.<span><br />
</span></span></span></li>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-family: Times New Roman;font-size: small">Must be willing to bite tongue repeatedly.<span> </span></span></span></li>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-family: Times New Roman;font-size: small"> Also, must possess the physical stamina of a<span> </span>pack mule<span> </span>and be able to go from zero to 60 mph in three seconds flat<span> </span>in case, this time, the screams from<span> </span>the backyard are not someone just crying wolf.<span> </span></span></span></li>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-family: Times New Roman;font-size: small"> Must be willing to face stimulating technical challenges,<span> </span>such as small gadget repair, mysteriously sluggish toilets<span> </span>and stuck zippers.<span> </span></span></span></li>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-family: Times New Roman;font-size: small">Must screen phone calls, maintain calendars and<span> </span>coordinate production of multiple homework projects.<span> </span></span></span></li>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-family: Times New Roman;font-size: small">Must have ability to plan and organize social gatherings<span> </span>for clients of all ages and mental outlooks.<span> </span></span></span></li>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-family: Times New Roman;font-size: small">Must be willing to be indispensable one minute,<span> </span>an embarrassment the next.<span> </span></span></span></li>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-family: Times New Roman;font-size: small">Must handle assembly and product safety testing of a<span> </span>half million cheap, plastic toys, and battery operated devices.<span> </span></span></span></li>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-family: Times New Roman;font-size: small">Must always hope for the best but be prepared for the worst.<span> </span></span></span></li>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-family: Times New Roman;font-size: small"> Must assume final, complete accountability for<span> </span>the quality of the end product.<span> </span></span></span></li>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-family: Times New Roman;font-size: small">Responsibilities also include floor maintenance and<span> </span>janitorial work throughout the facility.</span></span></li>
</ul>
<p><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="text-decoration: underline"> <span style="font-family: Times New Roman;font-size: small">POSSIBILITY FOR ADVANCEMENT &amp; PROMOTION :</span></span><br />
</span></p>
<ul>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-family: Times New Roman;font-size: small">None.<span> </span>Your job is to remain in the same position for years, without complaining, constantly retraining and updating your skills,<span> </span>so that those in your charge can ultimately surpass you</span></span></li>
</ul>
<p><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="text-decoration: underline"><span style="font-family: Times New Roman;font-size: small">PREVIOUS EXPERIENCE</span></span><span style="font-size: small"><span style="font-family: Times New Roman"><span> </span>:<br />
</span></span></span></p>
<ul>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-size: small"><span style="font-family: Times New Roman">None required unfortunately..</span></span></span></li>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-size: small"><span style="font-family: Times New Roman"> On-the-job training offered on a continually exhausting basis.</span></span></span></li>
</ul>
<p><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="text-decoration: underline"><span style="font-family: Times New Roman;font-size: small">WAGES AND COMPENSATION</span></span><span style="font-size: small"><span style="font-family: Times New Roman"><span> </span>:<br />
</span></span></span></p>
<ul>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-size: small"><span style="font-family: Times New Roman">Get this - You pay them, offering frequent raises and bonuses.<span> </span></span></span></span></li>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-size: small"><span style="font-family: Times New Roman">A balloon payment is due when they turn 18 because<span> </span>of the assumption that college will help them<span> </span>become financially independent.<span> </span></span></span></span></li>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-size: small"><span style="font-family: Times New Roman">When you die, you give them whatever is left.<span> </span></span></span></span></li>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-size: small"><span style="font-family: Times New Roman">The oddest thing about this reverse-salary scheme is that<span> </span>you actually enjoy it and wish you could only do more.</span></span></span></li>
</ul>
<p><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="text-decoration: underline"> <span style="font-family: Times New Roman;font-size: small">BENEFITS</span></span><span style="font-size: small"><span style="font-family: Times New Roman"><span> </span>:<br />
</span></span></span></p>
<ul>
<li><span style="font-weight: bold;font-size: 13.5pt;font-family: Garamond"><span style="font-size: small"><span style="font-family: Times New Roman">While no health or dental insurance, no pension,<span> </span>no tuition reimbursement, no paid holidays and<span> </span>no stock options are offered;<span> </span>this job supplies limitless opportunities for personal growth, unconditional love,<span> </span>and free hugs and kisses for life if you play your cards right.</span></span></span></li>
</ul>
<p><em><span style="font-size: 13.5pt;color: #339966;font-style: italic;font-family: Garamond"> <span style="font-weight: bold"><span style="font-size: small"><span style="color: #000000"><span style="font-family: Times New Roman"></span></span></span></span></span><span style="font-weight: bold;font-size: 13.5pt;font-style: italic;font-family: Garamond"><span style="color: #339966"><span style="font-size: small"><span style="color: #000000"><span style="font-family: Times New Roman"> Remember, even when it&#8217;s a disaster, you&#8217;re still the best person for the job because they are yours and they love you&#8230;</span></span></span></span></span></em><span style="font-size: small"><strong><span style="font-family: Times New Roman"><span style="font-size: 10pt;font-family: Tahoma"><span></p>
<p></span></span><span style="font-size: 10pt;font-family: Verdana"></span></span></strong></span></div>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://juddmuir.com/blog/2009/being-a-parent-a-job-description/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Does your USB thumbdrive/flashdrive have slow transfer speeds?</title>
		<link>http://juddmuir.com/blog/2008/does-your-usb-thumbdriveflashdrive-have-slow-transfer-speeds/</link>
		<comments>http://juddmuir.com/blog/2008/does-your-usb-thumbdriveflashdrive-have-slow-transfer-speeds/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 12:08:52 +0000</pubDate>
		<dc:creator>Judd Muir</dc:creator>
		
		<category><![CDATA[Getting Things Done]]></category>

		<category><![CDATA[trouble-shooting]]></category>

		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://juddmuir.com/?p=27</guid>
		<description><![CDATA[I recently bought a 16GB USB Flash drive, with the intention of running my desktop from it. I moved all my files over, set up my Thunderbird profile, etc etc etc&#8230;and then found it almost unusable as the data transfer speed was appallingly slow  
Following all these steps did the trick under Windows XP:

Right [...]]]></description>
			<content:encoded><![CDATA[<p>I recently bought a 16GB USB Flash drive, with the intention of running my desktop from it. I moved all my files over, set up my Thunderbird profile, etc etc etc&#8230;and then found it almost unusable as the data transfer speed was appallingly slow <img src='http://www.juddmuir.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p>Following all these steps did the trick under Windows XP:</p>
<ol>
<li>Right click on the USB drive and select properties</li>
<li>Select the Hardware tab</li>
<li>Under All Disk Drives, highlight your USB drive and select Properties</li>
<li>Select the Policies tab and select Optimize for performance.</li>
<li>Press OK twice, and your transfer speeds should increase dramatically</li>
</ol>
<p><em><strong>Note that when your drive is optimized for performance you’ll need to use the Safely Remove Hardware icon in the taskbar to eject the drive - otherwise you’ll risk corrupting your data by just removing the drive from the port.</strong></em></p>
<p>I now happily unplug my thumbdrive from one laptop and into another <img src='http://www.juddmuir.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Hmm, perhaps I should write a post on running your desktop from a flash drive. Most important point is of course to <em><strong>back up that flash drive every single day</strong></em>&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://juddmuir.com/blog/2008/does-your-usb-thumbdriveflashdrive-have-slow-transfer-speeds/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Shameless plug</title>
		<link>http://juddmuir.com/blog/2008/shameless-plug/</link>
		<comments>http://juddmuir.com/blog/2008/shameless-plug/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 11:15:39 +0000</pubDate>
		<dc:creator>Judd Muir</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[bingo]]></category>

		<category><![CDATA[yabadoo]]></category>

		<guid isPermaLink="false">http://juddmuir.com/?p=25</guid>
		<description><![CDATA[This post is nothing more than a shameless plug to get you to try out bingo online, by checking out the reviews and promotions on offer over at Yabadoo! Yes, I know it should be shameful, but it&#8217;s tough world out there 
]]></description>
			<content:encoded><![CDATA[<p>This post is nothing more than a shameless plug to get you to try out <a title="spanish bingo reviews" href="http://www.yabadoo.es/bingo/" target="_blank">bingo</a> online, by checking out the reviews and promotions on offer over at <a href="http://www.yabadoo.es/" target="_blank">Yabadoo</a><a title="Reseñas y consejos de Bingo, Poker, y Juegos de Casinos" href="http://www.yabadoo.es/" target="_blank">!</a> Yes, I know it should be shameful, but it&#8217;s tough world out there <img src='http://www.juddmuir.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://juddmuir.com/blog/2008/shameless-plug/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
