<?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>2 Bit Hacker &#187; Geek Stuff</title>
	<atom:link href="http://weblog.2bithacker.net/category/geek-stuff/feed" rel="self" type="application/rss+xml" />
	<link>http://weblog.2bithacker.net</link>
	<description>We do what we must because we can.</description>
	<lastBuildDate>Sat, 09 Jul 2011 20:27:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>ZFS Drive Replacement</title>
		<link>http://weblog.2bithacker.net/2011/07/zfs-drive-replacement.html</link>
		<comments>http://weblog.2bithacker.net/2011/07/zfs-drive-replacement.html#comments</comments>
		<pubDate>Sat, 09 Jul 2011 20:26:29 +0000</pubDate>
		<dc:creator>Chip</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[storage server]]></category>
		<category><![CDATA[zfs]]></category>

		<guid isPermaLink="false">http://weblog.2bithacker.net/?p=769</guid>
		<description><![CDATA[My home storage server has been a source of annoyance for a few months now. I had upgraded it from an Intel Atom board to a E5500 and had some major stability issues involving bad RAM and a bad motherboard. After finally getting it stable, I learned one of my 2TB drives in my RAIDZ [...]]]></description>
			<content:encoded><![CDATA[<p>My home storage server has been a source of annoyance for a few months now. I had upgraded it from an Intel Atom board to a <span class="caps">E5500 </span>and had some major stability issues involving bad <span class="caps">RAM </span>and a bad motherboard. After finally getting it stable, I learned one of my 2TB drives in my <span class="caps">RAIDZ </span>pool had started reporting a slightly smaller size, making it unable to participate in the pool. Luckily, the drive was still under warranty, and replacing it is a stupidly easy process, which I&#8217;ve decided to document here.</p>



<pre><code>[chip@sumo ~]$ zpool status
  pool: storage
 state: DEGRADED
status: One or more devices could not be opened.  Sufficient replicas exist for
        the pool to continue functioning in a degraded state.
action: Attach the missing device and online it using 'zpool online'.
   see: http://www.sun.com/msg/ZFS-8000-2Q
 scrub: none requested
config:

        NAME                STATE     READ WRITE CKSUM
        storage             DEGRADED     0     0     0
          raidz1            DEGRADED     0     0     0
            label/2TBdisk1  UNAVAIL      0     0     0  cannot open
            label/2TBdisk2  ONLINE       0     0     0
            label/2TBdisk3  ONLINE       0     0     0

errors: No known data errors</code></pre>



<p>As you can see, 2TBdisk1 has failed and is unavailable. Since these <span class="caps">SATA </span>controllers support hot-swap, I just hooked up the new drive while the box was running. FreeBSD didn&#8217;t automatically detect the new drive, so I had to instruct it to rescan the <span class="caps">SATA </span>device. Normally I would expect <code>atacontrol reinit</code> to do this, but I ended up having to <code>detach</code> and <code>attach</code> the appropriate ata chain to get it to see the new drive.</p>



<pre><code>[chip@sumo ~]$ sudo atacontrol detach ata2
[chip@sumo ~]$ sudo atacontrol attach ata2
Master:  ad4 &lt; SAMSUNG HD204UI/1AQ10001 &gt; SATA revision 2.x
Slave:       no device present</code></pre>



<p>With the new drive now being recognized, I applied a <span class="caps">GEOM </span>label to it, then replaced the failed drive in the <span class="caps">ZFS </span>pool.</p>



<pre><code>[chip@sumo ~]$ sudo glabel label 2TBdisk4 /dev/ad4
[chip@sumo ~]$ sudo zpool replace storage label/2TBdisk1 label/2TBdisk4
[chip@sumo ~]$ zpool status
  pool: storage
 state: DEGRADED
status: One or more devices is currently being resilvered.  The pool will
        continue to function, possibly in a degraded state.
action: Wait for the resilver to complete.
 scrub: resilver in progress for 0h0m, 0.12% done, 4h40m to go
config:

        NAME                  STATE     READ WRITE CKSUM
        storage               DEGRADED     0     0     0
          raidz1              DEGRADED     0     0     0
            replacing         DEGRADED     0     0     0
              label/2TBdisk1  UNAVAIL      0     0     0  cannot open
              label/2TBdisk4  ONLINE       0     0     0  554M resilvered
            label/2TBdisk2    ONLINE       0     0     0
            label/2TBdisk3    ONLINE       0     0     0

errors: No known data errors</code></pre>



<p>Once the replacement process was finished, <code>zpool status</code> goes back to normal:</p>



<pre><code>[chip@sumo ~]$ zpool status
  pool: storage
 state: ONLINE
 scrub: resilver completed after 5h49m with 0 errors on Fri Jul  1 23:23:08 2011
config:

	NAME                STATE     READ WRITE CKSUM
	storage             ONLINE       0     0     0
	  raidz1            ONLINE       0     0     0
	    label/2TBdisk4  ONLINE       0     0     0  437G resilvered
	    label/2TBdisk2  ONLINE       0     0     0
	    label/2TBdisk3  ONLINE       0     0     0

errors: No known data errors</code></pre>



<p>Overall a remarkably painless process, all without taking the machine offline!</p>]]></content:encoded>
			<wfw:commentRss>http://weblog.2bithacker.net/2011/07/zfs-drive-replacement.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eye-Fi Madness</title>
		<link>http://weblog.2bithacker.net/2010/08/eye-fi-madness.html</link>
		<comments>http://weblog.2bithacker.net/2010/08/eye-fi-madness.html#comments</comments>
		<pubDate>Mon, 30 Aug 2010 04:38:33 +0000</pubDate>
		<dc:creator>Chip</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[eye-fi]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://weblog.2bithacker.net/?p=709</guid>
		<description><![CDATA[I set out with a simple goal this evening, to change my Eye-Fi card&#8217;s upload destination from Facebook, where it was putting each image in it&#8217;s own album, to simply uploading to Hindenburg via FTPS. This led to a fun filled evening of debugging and data recovery! The configuration change on the Eye-Fi Manager side [...]]]></description>
			<content:encoded><![CDATA[<p>I set out with a simple goal this evening, to change my Eye-Fi card&#8217;s upload destination from Facebook, where it was putting each image in it&#8217;s own album, to simply uploading to Hindenburg via <span class="caps">FTPS.</span> This led to a fun filled evening of debugging and data recovery!</p>

<p>The configuration change on the Eye-Fi Manager side was easy enough, simply selecting <span class="caps">FTP </span>as the upload mechanism and filling in a few fields. For the server side of things, I decided to go with <a href="http://www.proftpd.org/">ProFTPD</a>, largely because I&#8217;ve used it in the past and the configuration is pretty simple. I&#8217;d never used <span class="caps">FTPS </span>before, but it&#8217;s pretty easy to enable with ProFTPD, just a few configuration directives:</p>

<blockquote style="font-family:monospace"><p><span class="caps">TLSE</span>ngine on<br />
<span class="caps">TLSL</span>og /var/log/proftpd/tls.log<br />
<span class="caps">TLSP</span>rotocol <span class="caps">SSL</span>v3 <span class="caps">TLS</span>v1<br />
<span class="caps">TLSR</span>equired on<br />
<span class="caps">TLSRSAC</span>ertificateFile /usr/local/etc/kyzoku.2bithacker.net.cert<br />
<span class="caps">TLSRSAC</span>ertificateKeyFile /usr/local/etc/kyzoku.2bithacker.net.key<br />
<span class="caps">TLSV</span>erifyClient off<br />
<span class="caps">TLSR</span>enegotiate none</p></blockquote>

<p>However, this doesn&#8217;t appear to work. Based on the xferlog and tls.log, it appears the Eye-Fi client was connecting, but the data session was failing, but it did give the helpful message of &#8220;client did not reuse <span class="caps">SSL </span>session, rejecting data connection (see <span class="caps">TLSO</span>ption NoSessionReuseRequired)&#8221;. This option is undocumented, and is actually &#8220;TLSOptions NoSessionReuseRequired&#8221; (note the plural), but it does solve the problem. Apparently clients are expected to reuse the <span class="caps">TLS </span>session between the control and data channels, but Eye-Fi doesn&#8217;t.</p>

<p>So, that&#8217;s working, but now my Eye-Fi card isn&#8217;t able to be read in either of our cameras or my laptop. Not sure what happened, but it appears the partition table became corrupt this evening. The card still had the only copy of a lot of our Comic-Con photos on it, and I really didn&#8217;t want to lose them. First, I decided to get a disk image of the SD card using Mac OS X&#8217;s Disk Utility. Then, I had remembered hearing about some open source software for recovering images from damaged cards, and after a quick Googling, I came up with <a href="http://www.cgsecurity.org/wiki/PhotoRec">PhotoRec</a>.</p>

<p>PhotoRec is extremely easy to use. It opened up a terminal window with a curses interface, prompting through selecting a disk to scan, a place to save the found files, then initiating a scan of the Eye-Fi, turning up all of my missing images, along with a handful of other files that I didn&#8217;t realize were on the card (including an <span class="caps">SQL</span>ite database, maybe used by Eye-Fi?) So happy I didn&#8217;t lose all those photos, and will have to work on getting them uploaded. Unfortunately, I think I&#8217;ve lost the ability to geotag those photos though&#8230;</p>]]></content:encoded>
			<wfw:commentRss>http://weblog.2bithacker.net/2010/08/eye-fi-madness.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introductory ManchLUG Meeting</title>
		<link>http://weblog.2bithacker.net/2010/08/introductory-manchlug-meeting.html</link>
		<comments>http://weblog.2bithacker.net/2010/08/introductory-manchlug-meeting.html#comments</comments>
		<pubDate>Wed, 25 Aug 2010 02:17:05 +0000</pubDate>
		<dc:creator>Chip</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[gnhlug]]></category>
		<category><![CDATA[manchlug]]></category>
		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://weblog.2bithacker.net/?p=692</guid>
		<description><![CDATA[Earlier tonight was the first meeting of the new ManchLUG chapter of the GNHLUG at Wings Your Way in Manchester. I&#8217;d been tossing around the idea of organizing this chapter for a while, but hadn&#8217;t found the round tuits. Kenta came along and wrangled things together, and this first meeting at least turned out pretty [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier tonight was the first meeting of the new <a href="http://twitter.com/manchlug">ManchLUG</a> chapter of the <a href="http://www.gnhlug.org/"><span class="caps">GNHLUG</span></a> at <a href="http://www.wingsyourway.com/">Wings Your Way</a> in Manchester. I&#8217;d been tossing around the idea of organizing this chapter for a while, but hadn&#8217;t found the round tuits. <a href="http://twitter.com/kentakoga">Kenta</a> came along and wrangled things together, and this first meeting at least turned out pretty well. We had 18 people registered for the event beforehand, and I think our total turn-out ended up being around 26 people.</p>

<p>The meeting itself was pretty casual, just some announcements and just general chatter for most of it. I&#8217;m hoping to have more organization for next month, perhaps with some discussion topics or a quick presentation. One person brought up the topic of media center computers, so maybe we can find someone to talk about their experience building such a thing with open source tech. I&#8217;ve taken a stab at it in the past with my MythTV box, but was never terribly happy with the results, and just use a WD HD TV Live to stream stuff from my storage server today.</p>

<p>Overall, I think everyone had a good time, and I&#8217;m hoping this will be a successful chapter.</p>]]></content:encoded>
			<wfw:commentRss>http://weblog.2bithacker.net/2010/08/introductory-manchlug-meeting.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Powerline Home Network</title>
		<link>http://weblog.2bithacker.net/2008/12/powerline-home-network.html</link>
		<comments>http://weblog.2bithacker.net/2008/12/powerline-home-network.html#comments</comments>
		<pubDate>Mon, 15 Dec 2008 22:30:37 +0000</pubDate>
		<dc:creator>Chip</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[dd-wrt]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[linksys]]></category>
		<category><![CDATA[plk300]]></category>
		<category><![CDATA[wrt54g]]></category>

		<guid isPermaLink="false">http://weblog.2bithacker.net/?p=407</guid>
		<description><![CDATA[During Thursday&#8217;s ice storm I decided to power down my FreeBSD box at home, which acts as my router and file server. Unfortunately, it didn&#8217;t want to boot back up afterwards, and since it didn&#8217;t have a monitor on it, I couldn&#8217;t really debug it. This prodded me into finally moving my cable modem/router set [...]]]></description>
			<content:encoded><![CDATA[<p>During Thursday&#8217;s <a href="http://www.cnn.com/2008/US/weather/12/15/winter.weather/index.html">ice storm</a> I decided to power down my FreeBSD box at home, which acts as my router and file server. Unfortunately, it didn&#8217;t want to boot back up afterwards, and since it didn&#8217;t have a monitor on it, I couldn&#8217;t really debug it. This prodded me into finally moving my cable modem/router set up from the corner of the home office to the front closet. This led to the problem of how to get connectivity to the stuff in the entertainment center.</p>

<p>In the past I had used a Linksys <span class="caps">WRT54</span>g running <a href="http://www.dd-wrt.com/">dd-wrt</a>, configured to be a wireless client and acting as a bridge, but for streaming video and gaming I don&#8217;t really like using wireless. I had replaced the wireless bridge with a long piece of cable running around the living room and into the office, but that would have been really ugly to run into the closet. So, over the weekend I decided to pick up a Linksys <a href="http://www.linksys.com/servlet/Satellite?c=L_Product_C2&amp;childpagename=US%2FLayout&amp;cid=1175248431779&amp;pagename=Linksys%2FCommon%2FVisitorWrapper&amp;lid=3177933028B02"><span class="caps">PLK300</span></a>, a pair of  Powerline AV adapters, one with a built-in 4 port switch. Brought them home, plugged them in, and it just worked. I&#8217;m somewhat impressed, I was expecting some sort of issue, since I have one of them plugged into the surge protection side of a <span class="caps">UPS.</span></p>

<p>So now in the front closet I have the cable coming into the apartment to a 2-way splitter (previously a 2-way then a 4-way, which may have been causing some of my signal issues) then into my cable modem, which connects to one side of my FreeBSD router/file server, which then connects to a <span class="caps">WRT54</span>g running dd-wrt, which provides wireless connectivity, then the single port powerline adapter plugs into that. Then in the entertainment center, it&#8217;s just the XBox 360 and TiVo connected to the powerline adapter with the 4-port switch.</p>

<p>Overall I freed up a 5-port switch, an 8-port switch, a bunch of Cat5, and some space in the office.</p>

<p>Next, I think I&#8217;m going to reconfigure the <span class="caps">WRT </span>to do some <span class="caps">VLAN</span>s, trunking them into my FreeBSD box, and put my <a href="http://www.fon.com/">Fonera</a> and <a href="http://dynwifi.com/">DynWiFi</a> <a href="http://www.meraki.cpm/">Meraki</a> on their own <span class="caps">VLAN.</span></p>]]></content:encoded>
			<wfw:commentRss>http://weblog.2bithacker.net/2008/12/powerline-home-network.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>LG 37LB5D</title>
		<link>http://weblog.2bithacker.net/2008/06/lg-37lb5d.html</link>
		<comments>http://weblog.2bithacker.net/2008/06/lg-37lb5d.html#comments</comments>
		<pubDate>Sat, 07 Jun 2008 22:11:34 +0000</pubDate>
		<dc:creator>Chip</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[broken]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[lg]]></category>
		<category><![CDATA[tv]]></category>

		<guid isPermaLink="false">http://weblog.2bithacker.net/?p=374</guid>
		<description><![CDATA[Okay, LG is going on my personal vendor blacklist, at least for LCD TVs. I bought this LG 37LB5D LCD television back in December to replace my Sony WEGA CRT, and initially I was very happy with it. Then it started having audio issues, which I worked around. Then it started having video issues, where [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, LG is going on my personal vendor blacklist, at least for <span class="caps">LCD</span> TVs. I bought this LG 37LB5D <span class="caps">LCD </span>television back in December to replace my Sony <span class="caps">WEGA CRT, </span>and initially I was very happy with it. Then it started having audio issues, which I worked around. Then it started having video issues, where the screen would blank out randomly. I called a repair place, and the guy came out and swapped in a new power supply and control board, and everything was happy once again.</p>

<p>And so it went till today. The audio issue just resurfaced. I&#8217;m sitting here watching History HD off my TiVo, with no audio. First it was quick cut outs, now it&#8217;s just totally silent.</p>

<p>I suspect it&#8217;s something with the <span class="caps">HDMI </span>audio decoder. My suspicion is that it overheated and did some permanent damage to itself. I should probably contact the repair guy again and find out if the replacement parts were also under warranty, as it&#8217;s probably going to take another set of replacements to make this thing work again.</p>

<p>At this point though, I&#8217;m tempted to chuck this one off the balcony and go buy a Sharp <span class="caps">AQUOS.</span> We&#8217;ve got three of those at work and they&#8217;re running great. I suppose this is what I get for trying to save a buck and going with the cheap brand.</p>]]></content:encoded>
			<wfw:commentRss>http://weblog.2bithacker.net/2008/06/lg-37lb5d.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Signature</title>
		<link>http://weblog.2bithacker.net/2008/04/signature.html</link>
		<comments>http://weblog.2bithacker.net/2008/04/signature.html#comments</comments>
		<pubDate>Tue, 15 Apr 2008 22:30:20 +0000</pubDate>
		<dc:creator>Chip</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[geek code]]></category>
		<category><![CDATA[hacker key]]></category>
		<category><![CDATA[signature]]></category>

		<guid isPermaLink="false">http://weblog.2bithacker.net/?p=372</guid>
		<description><![CDATA[Recently someone pointed out that the contents of my e-mail signature are getting somewhat outdated, which stuck an idea into my head to update it. For a while now I&#8217;ve been using the following: Chip Marshall &#38;lt;chip@2bithacker.net&#38;gt; http://weblog.2bithacker.net/ GCM/IT d+(-) s+:++ a26&#62;? C++ UB++++$ P+++$ L- E--- W++ N@ o K- w O M+ V-- [...]]]></description>
			<content:encoded><![CDATA[<p>Recently someone pointed out that the contents of my e-mail signature are getting somewhat outdated, which stuck an idea into my head to update it. For a while now I&#8217;ve been using the following:</p>



<pre>
Chip Marshall &amp;lt;chip@2bithacker.net&amp;gt;     http://weblog.2bithacker.net/
GCM/IT d+(-) s+:++ a26&gt;? C++ UB++++$ P+++$ L- E--- W++ N@ o K- w O M+
V-- PS+ PE Y+ PGP++ t+@ R@ tv@ b++@ DI++++ D+(-) G++ e&gt;++ h&gt;++ r-- y?
</pre>



<p>That jumbled mess is a <a href="http://en.wikipedia.org/wiki/Geek_Code">Geek Code</a>, a somewhat out of date, condensed representation of me. Given that the guidelines of the Code haven&#8217;t been updated since 1996, I&#8217;ve started looking into alternatives.</p>

<p>The first one I came across was <a href="http://www.gadgeteer.net/omnicode/">OmniCode</a>, which offers a similar syntax and a greater flexibility. However, the actual guidelines don&#8217;t seem to be well thought-out and the resulting code takes up too much space.</p>

<p>My second finding was the <a href="http://www.hackerkey.com/hacker.html">Hacker Key</a>, which is again inspired by the Geek Code, and provides a further condensced format with updated parameters. I created a key pretty quickly, and tried the following on for size:</p>



<pre>
Chip Marshall &amp;lt;chip@2bithacker.net&amp;gt;        http://weblog.2bithacker.net/
v4sw5PUhw4/5ln5pr5FOPck4ma4u6FLOw5Xm5l5Ui2e4t4/5ARWb7HKOen6a2Xs5IMr2g6CM
</pre>



<p>It&#8217;s a little wider, but only two lines overall, and conveys approx the same amount of information to someone who knows what they&#8217;re looking at. I thought it looked kindof odd though, so I shuffled the components around and added in my <span class="caps">PGP </span>key <span class="caps">ID, </span>resulting in:</p>



<pre>
Chip Marshall &amp;lt;chip@2bithacker.net&amp;gt;
v4sw5PUhw4/5ln5pr5FOPck4ma4u6FLOw5Xm5l5Ui2e4t4/5ARWb7HKOen6a2Xs5IMr2g6CM
http://weblog.2bithacker.net/                        PGP key ID 43C4819E
</pre>



<p>It&#8217;s still a little wider than I&#8217;d like, but I could trim out a parameter or two to bring it back down. Haven&#8217;t decided if I really like it overall though yet.</p>

<p>Maybe I just spend too much time on these sorts of things&#8230;</p>

<p><b>PS</b>: Oooh, what if I put the Hacker Key under the <span class="caps">URL</span>/PGP key line?</p>



<pre>
Chip Marshall &amp;lt;chip@2bithacker.net&amp;gt;
http://weblog.2bithacker.net/                        PGP key ID 43C4819E
v4sw5PUhw4/5ln5pr5FOPck4ma4u6FLOw5Xm5l5Ui2e4t4/5ARWb7HKOen6a2Xs5IMr2g6CM
</pre>



<p>Hmm&#8230;</p>]]></content:encoded>
			<wfw:commentRss>http://weblog.2bithacker.net/2008/04/signature.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hindenburg</title>
		<link>http://weblog.2bithacker.net/2008/02/hindenburg.html</link>
		<comments>http://weblog.2bithacker.net/2008/02/hindenburg.html#comments</comments>
		<pubDate>Sat, 01 Mar 2008 03:21:35 +0000</pubDate>
		<dc:creator>Chip</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[hindenburg]]></category>

		<guid isPermaLink="false">http://weblog.2bithacker.net/geek-stuff/hindenburg.html</guid>
		<description><![CDATA[It&#8217;s getting to be that time of the month again, when I start whining about how no one donates to the Hindenburg fund. Unfortunately, it&#8217;s gotten to the point where it looks like Jason and I are the only ones really using it, and it&#8217;s hard to justify the $90/mo to keep it operational. So, [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s getting to be that time of the month again, when I start whining about how no one <a href="http://donate.2bithacker.net/">donates</a> to the Hindenburg fund. Unfortunately, it&#8217;s gotten to the point where it looks like Jason and I are the only ones really using it, and it&#8217;s hard to justify the $90/mo to keep it operational.</p>

<p>So, I&#8217;m starting to think I need to start selling some services on the box in order to get a regular flow of money coming in. Cheap virtual web hosting seems to be the easiest to do, if I can find buyers who would rather go for my little locally hosted box over one of the larger services. $10/mo seems fair to me, and at that rate I only need to get 9 customers to cover the hosting costs. If I could even get 3 or 4 it would be a big help.</p>

<p>If anyone has ideas for other services, or would be interesting in hosting, let me know. I suppose I should do this in some sort of official fashion via 2 Bit Hacker Consulting.</p>]]></content:encoded>
			<wfw:commentRss>http://weblog.2bithacker.net/2008/02/hindenburg.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Happy Holidays</title>
		<link>http://weblog.2bithacker.net/2007/12/happy-holidays.html</link>
		<comments>http://weblog.2bithacker.net/2007/12/happy-holidays.html#comments</comments>
		<pubDate>Wed, 26 Dec 2007 03:25:42 +0000</pubDate>
		<dc:creator>Chip</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[holiday]]></category>
		<category><![CDATA[tivo]]></category>
		<category><![CDATA[xbox360]]></category>

		<guid isPermaLink="false">http://weblog.2bithacker.net/geek-stuff/happy-holidays.html</guid>
		<description><![CDATA[Happy holidays to everyone and all that. Delia and I just got back from her aunt&#8217;s house after eating far too much tasty food. I&#8217;m now the proud owner of a number of shirts courtesy of Delia&#8217;s family, a few more t-shirts, a neat mug, and PixelBlocks from Delia (in addition to the EV mode [...]]]></description>
			<content:encoded><![CDATA[<p>Happy holidays to everyone and all that. Delia and I just got back from her aunt&#8217;s house after eating far too much tasty food. I&#8217;m now the proud owner of a number of shirts courtesy of Delia&#8217;s family, a few more t-shirts, a neat mug, and PixelBlocks from Delia (in addition to the EV mode kit and floor mats for the Prius she already gave me on the solstice,) and a Garmin n&uuml;vi 250W from my dad.</p>

<p>Over the weekend Delia and I got the new TV hooked up, and it&#8217;s looking good. I also decided to go ahead and get the Xbox 360, and I&#8217;m rather glad I did, as the TiVo HD turned out to be dead on arrival. For some reason it was stuck in a reboot cycle and couldn&#8217;t get past it&#8217;s initial welcome screen. TiVo support was pretty cool about it and are doing an advanced ship <span class="caps">RMA </span>on it, so hopefully I&#8217;ll have that soon. The Xbox has been filling the time we would have normally spent watching <span class="caps">TV, </span>so it works out, I suppose. For games, we picked up Assassin&#8217;s Creed for me, <span class="caps">DDR </span>and Katamari for Delia.</p>

<p>Unfortunately my bad luck with new devices has extended to the Garmin my dad sent me. It powers up then complains that it has no maps and is therefore useless. Garmin&#8217;s online support is equally useless it seems, as they try to load pages from <span class="caps">RFC1918 </span>private address space, or try to redirect you to hosts that don&#8217;t exist in the <acronym title="Domain Name System"><span class="caps">DNS</span></acronym>. Their phone support is, of course, closed for the holiday. Hopefully tomorrow will be more fruitful.</p>

<p>All in all though, I&#8217;m happy. I still think Delia spent too much on me, and I feel bad that I didn&#8217;t get her more, which seems to happen every year.</p>]]></content:encoded>
			<wfw:commentRss>http://weblog.2bithacker.net/2007/12/happy-holidays.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Yet Another General Life Update</title>
		<link>http://weblog.2bithacker.net/2007/12/yet-another-general-life-update.html</link>
		<comments>http://weblog.2bithacker.net/2007/12/yet-another-general-life-update.html#comments</comments>
		<pubDate>Tue, 18 Dec 2007 00:56:17 +0000</pubDate>
		<dc:creator>Chip</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[tv]]></category>
		<category><![CDATA[xbox360]]></category>

		<guid isPermaLink="false">http://weblog.2bithacker.net/geek-stuff/yet-another-general-life-update.html</guid>
		<description><![CDATA[It&#8217;s that time again, when I get bored waiting for Delia to get out of work and I don&#8217;t feel like doing anything productive, when I decide it&#8217;s time to update ye olde weblog. As usual, I don&#8217;t think much is really going on in my life, I continue to work, my left leg is [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s that time again, when I get bored waiting for Delia to get out of work and I don&#8217;t feel like doing anything productive, when I decide it&#8217;s time to update ye olde weblog. As usual, I don&#8217;t think much is really going on in my life, I continue to work, my left leg is still weird from my last back problem, my car is still running well, though the mileage is hurting in the cold.</p>

<p>One somewhat interesting thing is that I finally broke down and ordered a shiny new <span class="caps">HDTV </span>last week. It&#8217;s an <a href="http://us.lge.com/products/model/detail/tv|audio|video_lcd%20flat%20panel__37LB5D.jhtml">LG 37LB5D</a>, which is a 37&#8243; widescreen <span class="caps">LCD </span>at full 1080p resolution. To go with it, I also ordered a <a href="http://www.tivo.com/whatistivo/tivohd/index.html">TiVo HD</a> so I&#8217;ll have some HD content to watch. They should both arrive tomorrow, at which point I&#8217;ll get to have fun getting CableCARDs from Comcast. Oh yeah, and if anyone out there is interested in a used 27&#8243; Sony <span class="caps">WEGA </span>tube, let me know. It&#8217;s too big to really go anywhere else in my apartment.</p>

<p>The new TV has also got me thinking about picking up an Xbox 360. I haven&#8217;t really been doing a lot of console gaming lately, but it looks like there are some decent new games out there, and the whole online thing looks interesting. I think Delia wants one too, though I&#8217;m not sure why. Maybe I&#8217;ll just get the <span class="caps">PS2 </span>hooked up again, and if we actually use it, I&#8217;ll get the newer thing.</p>

<p>Other than that, not a lot going on. Some people have asked what I want for the upcoming holiday, so I&#8217;ve started tagging some things as &#8220;<a href="http://del.icio.us/2bithacker/want">want</a>&#8221; on my <a href="http://del.icio.us/2bithacker">del.icio.us</a>. Nothing terribly fancy. I&#8217;m trying to get the apartment cleaned up and presentable so that people can actually come over. If that project gets complete soon, maybe we&#8217;ll have some people over for a holiday party of some sort.</p>]]></content:encoded>
			<wfw:commentRss>http://weblog.2bithacker.net/2007/12/yet-another-general-life-update.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>700p Update</title>
		<link>http://weblog.2bithacker.net/2007/09/700p-update.html</link>
		<comments>http://weblog.2bithacker.net/2007/09/700p-update.html#comments</comments>
		<pubDate>Mon, 24 Sep 2007 00:31:29 +0000</pubDate>
		<dc:creator>Chip</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[treo]]></category>

		<guid isPermaLink="false">http://kyzoku.2bithacker.net/geek-stuff/700p-update.html</guid>
		<description><![CDATA[It appears Palm has released a new update for the Verizon Treo 700p just a couple of days ago. I find it odd that they didn&#8217;t change the version number of the update, instead adding an underscore to the version string to differentiate this version from the last. I&#8217;ve installed it on my Treo, so [...]]]></description>
			<content:encoded><![CDATA[<p>It appears Palm has released a <a href="http://www.everythingtreo.com/news/software/palm-releases-treo-700p-update-for-verizon-wireless-customers-20070921542/">new update</a> for the Verizon Treo 700p just a couple of days ago. I find it odd that they didn&#8217;t change the version number of the update, instead adding an underscore to the version string to differentiate this version from the last. I&#8217;ve installed it on my Treo, so we&#8217;ll see if it clears up the error I&#8217;ve been getting.</p>]]></content:encoded>
			<wfw:commentRss>http://weblog.2bithacker.net/2007/09/700p-update.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: weblog.2bithacker.net @ 2012-02-05 15:09:57 by W3 Total Cache -->
