<?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>Zack of All Trades &#187; Work</title>
	<atom:link href="http://zackofalltrades.com/category/work/feed/" rel="self" type="application/rss+xml" />
	<link>http://zackofalltrades.com</link>
	<description>… and master of, um… let me get back to you on that…</description>
	<lastBuildDate>Sat, 13 Mar 2010 03:41:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>bc</title>
		<link>http://zackofalltrades.com/2010/03/bc/</link>
		<comments>http://zackofalltrades.com/2010/03/bc/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 03:24:01 +0000</pubDate>
		<dc:creator>Zack Williams</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://zackofalltrades.com/?p=162</guid>
		<description><![CDATA[This post is mainly inspired by <a href="http://www.marco.org/441168915">this post by Marco</a>, about <a href="http://www.acqualia.com/soulver/">Soulver</a>, which has, in their words, a "word processor style interface".   I view this as a way to avoid saying "Command Line", which it basically is. 

I'm kind of surprised at this veneration - the concept is nothing new, as there's already as similar calculator built into Mac OS X and other Unix operating systems, called <a href="http://www.gnu.org/software/bc/">bc</a>, which is pretty much identical in functionality, with a few quirks. 
]]></description>
			<content:encoded><![CDATA[<p>This post is mainly inspired by <a href="http://www.marco.org/441168915">this post by Marco</a>, about <a href="http://www.acqualia.com/soulver/">Soulver</a>, which has, in their words, a &#8220;word processor style interface&#8221;.   I view this as a way to avoid saying &#8220;Command Line&#8221;, which it basically is. </p>
<p>I&#8217;m kind of surprised at this veneration &#8211; the concept is nothing new, as there&#8217;s already as similar calculator built into Mac OS X and other Unix operating systems, called <a href="http://www.gnu.org/software/bc/">bc</a>, which is pretty much identical in functionality, with a few quirks. </p>
<p>The first time you load <code>bc</code> up and use it, you&#8217;ll probably find that it&#8217;s defaults aren&#8217;t the best &#8211; for example, when dividing a number, you get only the quotient back (the part in front of the decimal place), which isn&#8217;t too useful in most cases.  </p>
<pre>
10/3
3
</pre>
<p>If you set the &#8220;scale&#8221; variable it will return a proper float with that number of digits: </p>
<pre>
scale=5
10/3
3.33333
</pre>
<p>Also, the gnu version of <code>bc</code> prints a gnu advertisement at the front of every session:</p>
<pre>
$ bc
bc 1.06
Copyright 1991-1994, 1997, 1998, 2000 Free Software Foundation, Inc.
This is free software with ABSOLUTELY NO WARRANTY.
For details type `warranty'.
</pre>
<p>The fix for this is as follows &#8211; <code>bc</code> (at least the common gnu version) will take a set of arguments from an environmental variable (set in your <code>.profile</code> or similar shell init script) like so:</p>
<pre>
BC_ENV_ARGS='-q /Users/username/.bc'
</pre>
<p>The <code>-q</code> suppresses the advert, and the path to my <code>.bc</code> file is a set of commands that is executed before every session. Note that it needs a full path supplied &#8211; you can&#8217;t use ~ to specify your home folder, as <code>bc</code> doesn&#8217;t perform shell expansion on it&#8217;s arguments passed in this way.  My <code>.bc</code> file is simple &#8211; it just sets the scale variable:</p>
<pre>
scale=5
</pre>
<p>You could also predefine functions and variables as well in there if you cared to.  </p>
]]></content:encoded>
			<wfw:commentRss>http://zackofalltrades.com/2010/03/bc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How slow is a floppy?</title>
		<link>http://zackofalltrades.com/2009/12/how-slow-is-a-floppy/</link>
		<comments>http://zackofalltrades.com/2009/12/how-slow-is-a-floppy/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 21:22:07 +0000</pubDate>
		<dc:creator>Zack Williams</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://zackofalltrades.com/?p=157</guid>
		<description><![CDATA[This slow:

# dd if=dban-1.0.7_i386.ima of=/dev/disk3
2880+0 records in
2880+0 records out
1474560 bytes transferred in 192.277221 secs (7669 bytes/sec)

That&#8217;s over 3 minutes, using a USB floppy drive connected my MacBook Pro.  
(I needed a copy of DBAN on floppy so I could erase an ancient 60Mhz Pentium) 
]]></description>
			<content:encoded><![CDATA[<p>This slow:</p>
<pre>
# dd if=dban-1.0.7_i386.ima of=/dev/disk3
2880+0 records in
2880+0 records out
1474560 bytes transferred in 192.277221 secs (7669 bytes/sec)
</pre>
<p>That&#8217;s over 3 minutes, using a USB floppy drive connected my MacBook Pro.  </p>
<p>(I needed a copy of <a href="http://www.dban.org/">DBAN</a> on floppy so I could erase an ancient 60Mhz Pentium) </p>
]]></content:encoded>
			<wfw:commentRss>http://zackofalltrades.com/2009/12/how-slow-is-a-floppy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trying out Opensolaris 2008.11</title>
		<link>http://zackofalltrades.com/2008/11/trying-out-opensolaris-200811/</link>
		<comments>http://zackofalltrades.com/2008/11/trying-out-opensolaris-200811/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 16:40:21 +0000</pubDate>
		<dc:creator>Zack Williams</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[opensolaris]]></category>

		<guid isPermaLink="false">http://zackofalltrades.com/?p=152</guid>
		<description><![CDATA[Notes on installing OpenSolaris from a sysadmin perspective. ]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m cycling through servers , and thought I&#8217;d try something new.  Previously, I&#8217;ve generally used <a href="http://centos.org">Centos</a> and other Redhat derivative systems as home server, as I&#8217;m used to the RPM package manager.  Recently there&#8217;s been a lot of buzz out there about <a href="http://www.opensolaris.com/">OpenSolaris</a>.  Most of this revolves around the <a href="http://www.sun.com/software/solaris/zfs.jsp">ZFS filesystem</a>, which has an amazing feature set, and can implement high end data integrity functionality in software without high end hardware RAID systems underneath it. </p>
<p>To facilitate this, I bought a <a href="http://dell.com/content/products/productdetails.aspx/pedge_sc440">Dell PowerEdge SC440</a> when they were really cheap ($199 base), and with a small processor and RAM bump, it&#8217;s actually a fairly solid server.  It uses the Intel <a href="http://www.intel.com/Products/chipsets/3000_3010/index.htm">3000 chipset</a>, with a <a href="http://www.intel.com/design/chipsets/datashts/307013.htm">ICH7</a> Southbridge which has 4x 3.0Gbit SATA connectors.  It should also be able to take 8GB of RAM, assuming Dell didn&#8217;t hobble the chipset &#8211; they claim a 4GB max.  If you&#8217;re looking for a server, this isn&#8217;t too bad a choice &#8211; if you&#8217;re an AMD fan the Dell T105, with it&#8217;s optional quad-core Barcelona (Phenom class) Opteron also looks pretty good. </p>
<p>I <a href="http://www.opensolaris.com/get/index.jsp">downloaded</a> a prerelease version (101, rc1b) version, which boots to a live CD and then allows you to install the base system.   It&#8217;s a very nice install process, and fairly painless.  I had no trouble installing on one disk, adding a mirror to the root ZFS pool, and  updating on the system, but beyond that I started running into walls. </p>
<p>Apparently, in this version, <code>zfs list</code> by default only shows filesystems and volumes, and <strong>not snapshots</strong>, unlike every other example I&#8217;ve seen from documentation or on the web.  To list snapshots as well, you have to use <code>zfs list -t all</code> for everything or <code>zfs list -t snapshots</code> for just the snapshots.  </p>
<p>Transferring a files from my Mac and Linux computers was easy via NFS with the <code>zfs set sharenfs=rw rpool/example</code>.  I was slightly perturbed that there were no firewall changes required to do this, as I&#8217;m used to secure by default systems like CentOS or OpenBSD.</p>
<p>I still don&#8217;t really get SMF as Sun&#8217;s replacement for init scripts.  It seems to only be implemented halfway in this release &#8211; you&#8217;d think they would go through the system and get rid of all their legacy boot scripts (as Apple did when they developed <code>launchd</code>), but apparently not.   </p>
<p>For being a company focused on Web 2.0 developers, I&#8217;ve had more trouble trying to get their website working than with any other vendor &#8211; here&#8217;s an error I got when trying to log into the <a href="http://forums.opensolaris.com">OpenSolaris Forums</a>. I also had to enter the same login information twice to get to the error: </p>
<p><img src="http://zackofalltrades.com/wp-content/uploads/2008/11/picture-5.png" alt="Picture 5.png" border="0" width="620" height="110" /></p>
<p>The <a href="http://dlc.sun.com/osol/docs/content/2008.11/getstart//index.html">OpensSolaris install documentation</a> is sufficient, but doesn&#8217;t go much beyond updating the system.  You really have to look around for documentation &#8211; here&#8217;s a few links I&#8217;ve found so far:  </p>
<ul>
<li><a href="http://www.genunix.org/wiki/index.php/OpenSolaris_New_User_FAQ">OpenSolaris New User FAQ</a></li>
<li><a href="http://opensolaris.org/os/community/documentation/docs-index/">Current Documentation at OpenSolaris.org</a></li>
</ul>
<p>That all said, it&#8217;s a well running, stable system.  I&#8217;ll post more as I work with it. </p>
]]></content:encoded>
			<wfw:commentRss>http://zackofalltrades.com/2008/11/trying-out-opensolaris-200811/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fixing Bluetooth and Optical dropouts on a Mac Mini</title>
		<link>http://zackofalltrades.com/2008/11/fixing-bluetooth-and-optical-dropouts-on-a-mac-mini/</link>
		<comments>http://zackofalltrades.com/2008/11/fixing-bluetooth-and-optical-dropouts-on-a-mac-mini/#comments</comments>
		<pubDate>Sun, 09 Nov 2008 21:24:25 +0000</pubDate>
		<dc:creator>Zack Williams</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[bluetooth]]></category>
		<category><![CDATA[cd]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[mac mini]]></category>

		<guid isPermaLink="false">http://zackofalltrades.com/?p=147</guid>
		<description><![CDATA[The Bluetooth and Optical Drive stopped working reliably on my Mac Mini a few days ago. Here's what I did to fix it.]]></description>
			<content:encoded><![CDATA[<p>Bluetooth stopped working reliably on my Mac Mini (2.0Ghz Intel Core2Duo) a few days ago.   It would work for a while, then nothing.  Finally I got a menu bar icon that looked like this: </p>
<p><img src="http://zackofalltrades.com/wp-content/uploads/2008/11/bt-menu-x.png" alt="bt_menu_x.png" border="0" width="208" height="53" /></p>
<p>Obviously that&#8217;s not correct, as the bluetooth card is built in, and should always be connected.  </p>
<p>At first I though I just had a bad bluetooth card, but then I started having issues reading CDs and DVD&#8217;s in the optical drive and the lightbulb went on in my head.  </p>
<p>Both these components are electrically connected via a mezzanine board inside the Mac Mini. There are some good pictures of this <a href="http://www.applefritter.com/Mac_Mini_Take_Apart_Guide">here at AppleFritter.com</a>.  Basically, to put memory into a Mini, you have to disconnect and lift off the subframe which contains the optical, hard disk, bluetooth, and a ribbon cable to the audio connectors, all of which connect via the mezzanine board.</p>
<p>To fix, I just popped open the Mini again, lifted the subframe and mezzanine board out then and plugged it back in, and everything was back to normal.  It must have worked it&#8217;s way loose when I installed it, or due to thermal expansion/contraction after using it for the last year. </p>
<p>Moral of the story? If your Mini is acting weird, try reseating the internal components.   </p>
]]></content:encoded>
			<wfw:commentRss>http://zackofalltrades.com/2008/11/fixing-bluetooth-and-optical-dropouts-on-a-mac-mini/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing to a non-xen kernel in CentOS 5 (so you can run VMware Server)</title>
		<link>http://zackofalltrades.com/2008/09/changing-to-a-non-xen-kernel-in-centos-5-so-you-can-run-vmware-server/</link>
		<comments>http://zackofalltrades.com/2008/09/changing-to-a-non-xen-kernel-in-centos-5-so-you-can-run-vmware-server/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 01:11:02 +0000</pubDate>
		<dc:creator>Zack Williams</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[virtualization]]></category>

		<guid isPermaLink="false">http://zackofalltrades.com/?p=140</guid>
		<description><![CDATA[Quick instructions for changing your kernel out on CentOS 5 so you can run VMWare Server. ]]></description>
			<content:encoded><![CDATA[<p><a href="http://vmware.com/">VMware</a> conflicts with the <a href="http://www.xen.org/">Xen</a> hypervisor in the Linux kernel, making their use mutually exclusive.  This is because they both use the hardware assisted virtualization features of the processor. </p>
<p>Why would you want to do this, when Xen can offer better performance than VMware?  Portability &#8211; I can run a VMware virtual machine on Mac under VMware Fusion, on Windows under VMware Server, Workstation, or Player.  </p>
<p>In my office, I&#8217;ve got a Dell Poweredge 830 with 8GB RAM, but my desktop computer is a Mac Mini which maxes out at 2GB RAM. It&#8217;s a no brainer to use the Dell for setting up the VM&#8217;s and then moving them to other machines when the time comes. </p>
<p>If your CentOS 5 box is running the xen kernel and try to install <a href="http://vmware.com/beta/server/">VMware Server 2.0</a> (currently in beta), you&#8217;ll get the following error when trying to install the RPM:</p>
<pre> You cannot install VMware Server on a system running a xen kernel</pre>
<p>As a result, you need to switch to a non-xen kernel.</p>
<p>To do this, you first need to install the kernel. <code>yum</code> makes this easy:</p>
<pre>yum install kernel</pre>
<p>Then remove xen and the kernel-xen packages:</p>
<pre>yum remove xen kernel-xen</pre>
<p>Then you have to specify which kernel you want to run in <code>/boot/grub/grub.conf</code>. In that file there&#8217;s a list of kernels available to boot from:</p>
<pre>
#boot=/dev/sda
default=1
timeout=5
splashimage=(hd0,0)/boot/grub/splash.xpm.gz
hiddenmenu
title CentOS (2.6.18-92.1.10.el5)
        root (hd0,0)
        kernel /boot/vmlinuz-2.6.18-92.1.10.el5 ro root=LABEL=/1 rhgb quiet
        initrd /boot/initrd-2.6.18-92.1.10.el5.img
title CentOS (2.6.18-92.1.10.el5xen)
        root (hd0,0)
        kernel /boot/xen.gz-2.6.18-92.1.10.el5
        module /boot/vmlinuz-2.6.18-92.1.10.el5xen ro root=LABEL=/1 rhgb quiet
        module /boot/initrd-2.6.18-92.1.10.el5xen.img
</pre>
<p>The line that says <code>default=</code> specifies which kernel to load, where 0 is the first one listed in the file.  In my case, I had to change the line that says <code>default=1</code> to <code>default=0</code> to specify the non-xen kernel. </p>
<p>Reboot, and you&#8217;re good to go &#8211; the VMware RPM will install, and VMware server runs just fine. </p>
]]></content:encoded>
			<wfw:commentRss>http://zackofalltrades.com/2008/09/changing-to-a-non-xen-kernel-in-centos-5-so-you-can-run-vmware-server/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Blog Workflow Changes</title>
		<link>http://zackofalltrades.com/2007/05/blog-workflow-changes/</link>
		<comments>http://zackofalltrades.com/2007/05/blog-workflow-changes/#comments</comments>
		<pubDate>Thu, 10 May 2007 18:11:25 +0000</pubDate>
		<dc:creator>Zack Williams</dc:creator>
				<category><![CDATA[Organization]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://zackofalltrades.com/2007/05/blog-workflow-changes/</guid>
		<description><![CDATA[In which I describe how I am now posting to this blog.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve changed the way I work on this blog and recently and as result I&#8217;ve been posting a lot more. Probably the most obvious change is that I&#8217;m using MarsEdit to edit the posts on my local computer and then post them to the weblog.</p>
<p>MarsEdit makes it very easy for me to posting multiple weblogs, safe drafts, etc. </p>
<p>I also dug out my old copy of iListen, which lets me dictate directly into any text window on my Mac. This never worked that well on my older PowerBook because it just wasn&#8217;t fast enough and but on the new iMac it works great.  I had to upgrade it to version 1.7 which is a universal binary, but well worth it.</p>
<p>Overall, the new system works fairly well. I&#8217;ll probably refine it in the coming days and weeks. His</p>
]]></content:encoded>
			<wfw:commentRss>http://zackofalltrades.com/2007/05/blog-workflow-changes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Been a while&#8230;</title>
		<link>http://zackofalltrades.com/2006/12/been-a-while/</link>
		<comments>http://zackofalltrades.com/2006/12/been-a-while/#comments</comments>
		<pubDate>Thu, 07 Dec 2006 22:18:46 +0000</pubDate>
		<dc:creator>Zack Williams</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://zackofalltrades.com/?p=75</guid>
		<description><![CDATA[Wow, 6 months... I really should post more.]]></description>
			<content:encoded><![CDATA[<p>Wow, 6 months&#8230; I really should post more.</p>
<p>I&#8217;ve been busy.  Really busy. Busy to the point that I&#8217;m worn out and feel like going to be a hermit on some mountaintop somewhere. </p>
<p>So, business is going well.  I&#8217;m still trying to find health insurance, but hopefully that should be wrapped up by the end of the year.</p>
<p>I replaced my car with a <a href="http://www.toyota.com/vehicles/2007/matrix/m_theory.html">Toyota Matrix M-Theory</a>.  Pictures coming soon.  Going to get the windows tinted tomorrow. </p>
<p>I&#8217;m going to <a href="http://www.golfnstuff.com/">Golf N&#8217; Stuff</a> tomorrow, for my birthday.   It&#8217;ll be just like when I was 8!</p>
<p>That&#8217;s enough of that. I&#8217;ll post more soon.  Back to the grind!</p>
]]></content:encoded>
			<wfw:commentRss>http://zackofalltrades.com/2006/12/been-a-while/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Thinking about work</title>
		<link>http://zackofalltrades.com/2006/06/thinking-about-work/</link>
		<comments>http://zackofalltrades.com/2006/06/thinking-about-work/#comments</comments>
		<pubDate>Sat, 10 Jun 2006 05:07:31 +0000</pubDate>
		<dc:creator>Zack Williams</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://zackofalltrades.com/?p=70</guid>
		<description><![CDATA[There&#8217;s an interesting discusson on work over at /..  This particular comment made me think &#8220;Man, I wish I had moderator points left&#8221;:

It seems to me that for a well educated, technically skilled, first world people, there are basically three optimal strategies one can choose in finding work:
1 &#8211; Find a job that you [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s an <a href="http://ask.slashdot.org/article.pl?sid=06/06/09/1842247">interesting discusson </a>on work over at <a href="http://slashdot.org">/.</a>. <a href="http://ask.slashdot.org/comments.pl?sid=188040&#038;cid=15507359"> This particular comment</a> made me think <em>&#8220;Man, I wish I had moderator points left&#8221;</em>:</p>
<blockquote><p>
It seems to me that for a well educated, technically skilled, first world people, there are basically three optimal strategies one can choose in finding work:</p>
<p>1 &#8211; Find a job that you love, so that working itself makes you happy, where happiness may include the feeling that you&#8217;ve accomplished something worthwhile, even if the day to day work isn&#8217;t pleasant. (eg. the physicist or aid worker options)</p>
<p>2 &#8211; Find a job that requires minimum effort and time and allows you to spend most of your time doing things that make you happy. (the writer who&#8217;s also a security guard option)</p>
<p>3 &#8211; Find a job that sucks but allows you to make a lot of money, then retire early and spend the rest of your life doing things that make you happy. (the investment banker turned surfer option.)</p></blockquote>
<p>Personally, I&#8217;m trying to move into a #1 situation.  I think I could swing #2 easily as well if I got interested in something other than computers, and did that as my &#8220;minimal time&#8221; job.</p>
]]></content:encoded>
			<wfw:commentRss>http://zackofalltrades.com/2006/06/thinking-about-work/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Overload</title>
		<link>http://zackofalltrades.com/2006/02/overload/</link>
		<comments>http://zackofalltrades.com/2006/02/overload/#comments</comments>
		<pubDate>Sat, 18 Feb 2006 18:48:02 +0000</pubDate>
		<dc:creator>Zack Williams</dc:creator>
				<category><![CDATA[Access Tucson]]></category>
		<category><![CDATA[Family]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://zackofalltrades.com/?p=52</guid>
		<description><![CDATA[I'm doing too much.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m doing too much.</p>
<p>I think I need to focus more on what I do well, and less on the things that I add little to no value to.  I do all the accounting work for my business, which takes a bit of time, and I think I could outsource that, or write a program to do most of it for me.  Crunching numbers isn&#8217;t a &#8220;fun&#8221; activity, and having someone or -thing responsible for it would really cut down on the stress. </p>
<p>For me, stress turns into obsessive work.  If I get stressed, I start working on something.  This is very different from Amy, who wants to relax when she gets stressed.   When I come home from work, I usually want to start on some project, because I want to accomplish or finish something, which I find rewarding.   When Amy comes home, she&#8217;s more likely to read, watch TV, or take a nap.   Either way of dealing with stress is fine by me &#8211; the differences are really in how we were raised. My parents were always doing something, so that seemed normal and I fit into that mold.  From my experience, Amy&#8217;s parents separate their work and personal time more strictly, so she does the same. </p>
<p>I&#8217;ve been thinking about my working situation as well &#8211; I work 30 hours a week for Access Tucson, and get benefits from them, but the pay isn&#8217;t that great.  If I went full time for my business and stopped working there, I could probably make a lot more, but then I&#8217;d have to pay for my own benefits, wouldn&#8217;t have the 401k set up, etc.     I don&#8217;t really want to quit right now (It gives me a greater sense of security to both me and Amy to have me working for someone), but I may ask to drop to 20 hours a week this summer. </p>
<p>Oh well, time to work. <img src='http://zackofalltrades.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://zackofalltrades.com/2006/02/overload/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WRT54G rude awakening</title>
		<link>http://zackofalltrades.com/2005/11/wrt54g-rude-awakening/</link>
		<comments>http://zackofalltrades.com/2005/11/wrt54g-rude-awakening/#comments</comments>
		<pubDate>Fri, 11 Nov 2005 16:31:43 +0000</pubDate>
		<dc:creator>Zack Williams</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wireless]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://zackofalltrades.com/2005/11/wrt54g-rude-awakening/</guid>
		<description><![CDATA[The new WRT54G version 5 doesn't run linux, and is flaky.]]></description>
			<content:encoded><![CDATA[<p>With their release of the WRT54G version 5, <a href="http://linksys.com">Linksys</a>, has neutered their quite popular and easily hackable router.   </p>
<p>Yesterday I visited a custmer who had purchased new WRT54G version 5, and it was a rude awakening. They downsized the hardware (half the RAM and ROM), and removed features &#8211; it no longer has WDS.  The router now runs VxWorks, not Linux like the previous version, and there is no replacement firmware available.  Configuration and setup was very flaky as well- I had to reset it several times to get it working right. </p>
<p>Sveasoft (a well known 3rd party firmware creation group) has <a href="http://www.sveasoft.com/modules/phpBB2/viewtopic.php?t=13698">more information</a> on this model.</p>
<p>The solution?  Buy the WRT54GS (now to version 4), which can take replacement firmware, still runs linux, and has quadruple the memory and rom space as the WRT54G v5.  </p>
]]></content:encoded>
			<wfw:commentRss>http://zackofalltrades.com/2005/11/wrt54g-rude-awakening/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.202 seconds -->
