<?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>Jonamerica.com</title>
	<atom:link href="http://www.jonamerica.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jonamerica.com</link>
	<description>Photography and Blog of Jonathan Eggers</description>
	<pubDate>Tue, 18 Nov 2008 18:31:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>MythTV III: The Final Chapter</title>
		<link>http://www.jonamerica.com/news/mythtv-iii-the-final-chapter/</link>
		<comments>http://www.jonamerica.com/news/mythtv-iii-the-final-chapter/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 13:54:48 +0000</pubDate>
		<dc:creator>jonamerica</dc:creator>
		
		<category><![CDATA[News]]></category>

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

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

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

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

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

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

		<guid isPermaLink="false">http://www.jonamerica.com/?p=720</guid>
		<description><![CDATA[My final post on MythTV revolves around tweaking MythTV and Ubuntu. I&#8217;ve picked up a number of ideas from a variety of sites and compiled the tricks, tips, hacks, and configurations that work best for my setup. You can read my first MythTV post on hardware and my second post on Ubuntu and MythTV installation [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-721" title="MythTV" src="http://www.jonamerica.com/blog/wp-content/uploads/2008/11/images-130x97.jpg" alt="" width="130" height="97" />My final post on MythTV revolves around tweaking MythTV and Ubuntu. I&#8217;ve picked up a number of ideas from a variety of sites and compiled the tricks, tips, hacks, and configurations that work best for my setup. You can read my first MythTV <a href="http://www.jonamerica.com/news/mythtv-so-it-begins/">post on hardware</a> and my second post on <a href="http://www.jonamerica.com/news/mythtv-ii-return-of-mythtv/">Ubuntu and MythTV installation and setup</a> for background on the particulars of my setup.</p>
<p><span id="more-720"></span></p>
<p>This post covers specific hacks that increase performance of Ubuntu and MythTV, but I wont go into all the basic configuration of MythTV and Ubuntu. For general ubuntu configuration I recommend checking out <a href="http://ubuntuguide.org/wiki/Main_Page" target="_blank">Ubuntu Guide</a>, which has configuration tips for each release. For MythTV check out the <a href="http://www.mythtv.org/wiki/index.php/Main_Page" target="_blank">MythTV wiki</a>.</p>
<h3>Swapiness</h3>
<p>Swapiness defines how much the system will utilize the swap space over memory. The range is 0 to 100, 0 being no swap usage. The default for Ubuntu is 60. For desktop machines with more than 512MB of RAM you will probably want to adjust this. I set it to 10 for my system. Servers, or machines that are acting as a backend only may want this to be higher than the default.</p>
<blockquote><p>You can use this command to temporarily change the swapiness:<br />
sudo sysctl vm.swappiness=10</p>
<p>To make the change perminent add the line vm.swappiness=10 to sysctl.conf:<br />
sudo gedit /etc/sysctl.conf</p></blockquote>
<h3>Preload</h3>
<p>This program preloads the most common libs and programs and helps with application startup.</p>
<blockquote><p>sudo apt-get install preload</p></blockquote>
<h3>Disable IPv6</h3>
<p>I don&#8217;t need IPv6, yet, and disabling it has given me some improvements to networking</p>
<blockquote><p>sudo gedit /etc/modprobe.d/aliases</p>
<p>Change the line:<br />
alias net-pf-10 ipv6<br />
to:<br />
alias net-pf-10 off #ipv6</p>
<p>Now comment out all the lines that has to do with Ipv6 in your hosts file.<br />
sudo gedit /etc/hosts</p></blockquote>
<h3>Grub and fstab</h3>
<p>If youre using ext3 as your files system, adding noatime and data=writeback flags will help with system performance. Make the following change:</p>
<blockquote><p>sudo gedit /etc/fstab</p>
<p># /dev/md0<br />
UUID=f4d4d73d-4141-4701-a7e2-ec41664483a7 / ext3 defaults,errors=remount-ro 0 1</p>
<p>into this:</p>
<p># /dev/md0<br />
UUID=f4d4d73d-4141-4701-a7e2-ec41664483a7 / ext3 defaults,errors=remount-ro,noatime,data=writeback* 0 1</p></blockquote>
<p>Add writeback to the grub defaults.</p>
<blockquote><p>sudo gedit /boot/grub/menu.lst</p>
<p>And add <strong>rootflags=data=writeback </strong>to defoptions and altoptions:</p>
<p># defoptions=quiet splash rootflags=data=writeback<br />
# altoptions=(recovery mode) single rootflags=data=writeback</p>
<p>Save and close, and type the following command in the console:<br />
sudo update-grub</p></blockquote>
<p>Next time the system boots the changes will take effect. You can also enable writeback without rebooting, but to make the changes permenant you&#8217;ll need to make the changes to fstab and grub.</p>
<blockquote><p>sudo tune2fs -o journal_data_writeback /dev/md0</p></blockquote>
<h3>XvMC NVIDIA</h3>
<p>The biggest performance enhancement for MythTV is enabling the XvMC nVidia library.</p>
<blockquote><p>sudo gedit /etc/X11/XvMCConfig<br />
change the line to <strong>libXvMCNVIDIA_dynamic.so.1</strong></p></blockquote>
<p>In the mythfrontend setup choose Standard XvMC and BOB or linear blend for deinterlacing.</p>
<h3>Nvidia Settings</h3>
<p>Lastly, a few nvidia options. This often helps with buffering and screen splitting</p>
<blockquote><p>sudo nvidia-settigns<br />
disable &#8220;Sync to VBlank&#8221; in three locations.</p></blockquote>]]></content:encoded>
			<wfw:commentRss>http://www.jonamerica.com/news/mythtv-iii-the-final-chapter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ghost RAIDs</title>
		<link>http://www.jonamerica.com/technology/ghost-raids/</link>
		<comments>http://www.jonamerica.com/technology/ghost-raids/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 17:54:03 +0000</pubDate>
		<dc:creator>jonamerica</dc:creator>
		
		<category><![CDATA[Technology]]></category>

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://www.jonamerica.com/?p=710</guid>
		<description><![CDATA[I ran into the same problem in each of the two Ubuntu installs that I recently completed. The initial install failed, and the RAID arrays I had setup could not be deleted. This became a seemingly insurmountable obstacle in the way of completing the install process. In the first instance I finally did a complete [...]]]></description>
			<content:encoded><![CDATA[<p>I ran into the same problem in each of the two Ubuntu installs that I <a href="http://www.jonamerica.com/news/mythtv-so-it-begins/">recently</a> <a href="http://www.jonamerica.com/news/mythtv-ii-return-of-mythtv/">completed</a>. The initial install failed, and the RAID arrays I had setup could not be deleted. This became a seemingly insurmountable obstacle in the way of completing the install process. In the first instance I finally did a complete wipe of all hard drives that had any part of the RAID configuration. Not wanting to go through that long process again I delved into finding a more sensible solution.</p>
<p><span id="more-710"></span></p>
<p>If you&#8217;re building a software RAID array during the Ubuntu setup you may encounter a failed install. I&#8217;m not sure why this is. When you go through the setup a second time, the RAID arrays that you created previously are already there. You cannot create new ones using the same partitions, and it won&#8217;t allow you to delete the old ones either.</p>
<p>My solution for disassembling and deleting these &#8220;ghost RAIDS&#8221; was to go through the installation process, enter the partitioner, selecting manual partitioning. You&#8217;ll then need to select Configure MD device to start any MD devices that already exist. If this option is not present create partition flagged as for RAID, then the option will appear.</p>
<blockquote><p>Press Ctrl-Alt-F1 to get to a command prompt, press return.</p></blockquote>
<p>You&#8217;ll have root access at the prompt, so there&#8217;s no need to su or sudo. You&#8217;ll want to see what MD devices are running, and which disks they&#8217;re using. Run</p>
<blockquote><p>cat /proc/mdstat</p></blockquote>
<p>You&#8217;ll see a bit of information about the MD devices, you&#8217;re looking for the following line(s):</p>
<blockquote><p><em></em><em>md0 : active raid1 sdb1[1] sda1[0]</em></p></blockquote>
<p>This tells you that md0 is a RAID1 array, using the partitions /dev/sda1 and /dev/sdb1. If you have more than one MD device you&#8217;ll see similar lines for each device.</p>
<p>Next run the command:</p>
<blockquote><p>mdadm &#8211;stop &#8211;scan</p></blockquote>
<p>This will stop all MD devices. During the setup none of the devices should be mounted, but in the a real world application, if the MD devices is mounted, you will get the error <em>mdadm: fail to stop array /dev/md0: Device or resource busy</em> In that case you have to first unmount the device with <em>umount /dev/md0. </em></p>
<p>Next you need to zero out the superblock of each partition that is used in an array.</p>
<blockquote><p>mdadm &#8211;zero-superblock /dev/sda1</p></blockquote>
<p>Repeat this command as many times as needed.</p>
<p>I found that it was also helpful to clear the MBR of each drive with</p>
<blockquote><p>dd if=/dev/zero of=/dev/sda count=1 bs=446</p></blockquote>
<p>If you also want to erase the partition table change 446 to 512. If you clear the partition table you&#8217;ll want to run fdisk. Fdisk will give you an error that there are no partition tables, simply type w and hit return to write an empty partition table to the drive, then q to quit.</p>
<p>Now, reboot the system. If everything went according to plan you should have hard drives without any trace of a ghost RAID, and possibly no set partitions.</p>
<h3>Things to note:</h3>
<ul>
<li>If your drive was degraded, it&#8217;s possible bad or missing drives will reappear after reboot and you&#8217;ll need to go through this process again.</li>
<li>If you already have data on any of the drives used in a MD device, the second you create your RAID array mdadm will start to sync the drives. This may cause your install to fail. Your best bet is to erase all the data from the drives before creating the RAID, or wait for mdadm to sync the drives, then format the MD device in the partition manager.</li>
<li>This guide is <strong>not</strong> designed to help recover data from a failed array. I make no guarantee that following these directions won&#8217;t cause data loss.</li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.jonamerica.com/technology/ghost-raids/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MythTV II: Return of MythTV</title>
		<link>http://www.jonamerica.com/news/mythtv-ii-return-of-mythtv/</link>
		<comments>http://www.jonamerica.com/news/mythtv-ii-return-of-mythtv/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 16:59:47 +0000</pubDate>
		<dc:creator>jonamerica</dc:creator>
		
		<category><![CDATA[News]]></category>

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

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://www.jonamerica.com/?p=661</guid>
		<description><![CDATA[Less than a year ago I ventured into the realm of MythTV. My previous ramblings on the subject dealt almost entirely with the hardware end of things. I decided to use the lasted releases of Ubuntu and MythTV as an excuse to recreate the entire system, learning from the first experience, and documenting my setup [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/09/l1010331.jpg" rel="lightbox[661]"><img class="alignleft size-thumbnail wp-image-663" title="Partitioning Drives" src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010331-130x97.jpg" alt="" width="130" height="97" /></a>Less than a year ago I ventured into the realm of MythTV. My <a href="http://www.jonamerica.com/news/mythtv-so-it-begins/">previous ramblings </a>on the subject dealt almost entirely with the hardware end of things. I decided to use the lasted releases of <a href="http://www.ubuntu.com/">Ubuntu</a> and <a href="http://www.mythtv.org/">MythTV</a> as an excuse to recreate the entire system, learning from the first experience, and documenting my setup and configuration to create this MythTV install guide.<span id="more-661"></span></p>
<h3>Changes From Previous Setup</h3>
<p>There are two hardware adjustments to my initial setup. First, I&#8217;ve altered the hard drives, adding a 5th 250gb drive and ditching RAID5. MythTV 0.21 has a new feature, storage groups, which enables MythTV to save video files to specific locations. If you want more room, simply mount a large drive to /var/thisiswheremyvideosare, then add the mount point to the default storage group in MythTV. With this new setup the system won&#8217;t need to manage a software RAID5 whenever I&#8217;m watching or recording television.</p>
<p><a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/09/l1010356.jpg" rel="lightbox[661]"><img class="alignright size-thumbnail wp-image-688" title="New remote" src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010356-130x97.jpg" alt="" width="130" height="97" /></a>The other change was to my remote control setup. Lirc had been nothing but a pain since I started monkeying around with it. I replaced the homebrew serial IR receiver with one that was already well supported and well documented in MythTV-dom, a Windows Media Center, or <a href="http://www.mythtv.org/wiki/index.php/MCE_Remote" target="_blank">MCE remote</a>. Best, decision, EVER.</p>
<h3>Initial Setup</h3>
<p>I&#8217;m going to walk through my Ubuntu setup, including RAID1. If you&#8217;re not going to do any RAID at all you can download the standard Ubuntu setup CD. Otherwise, be sure to download the<strong> alternate</strong> CD.</p>
<p><a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/09/l1010332.jpg" rel="lightbox[661]"><img class="alignleft size-thumbnail wp-image-664" title="Automatically partition the free space" src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010332-130x97.jpg" alt="" width="130" height="97" /></a> The setup process is pretty self-explanatory, but partitioning drives and RAID setup can get a little tricky. With most Linux distributions you only need to have two specific locations across the entire system, one for / (root) and one for swap. If you&#8217;re not sure what to do, let the system make recommended partitions on one of the drives.</p>
<p>After you get to the partition window you&#8217;ll want to select each drive and hit return, this will clear existing partitions. Then select the free space on one of the drives and hit return. Then select &#8220;Automatically partition the free space&#8221;</p>
<p><a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/09/l1010333.jpg" rel="lightbox[661]"><img class="size-thumbnail wp-image-665 alignright" title="Created Partitions" src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010333-130x97.jpg" alt="" width="130" height="97" /></a>For me, Ubuntu created two partitions, one primary ext3 partition mounted at / and a swap partition. The size of the partitions will depend on the size of the drive and the amount of physical RAM. Repeat these steps for the remaining drives. I partitioned two 250GB drives with 247GB for / and 3.1 GB for swap. The other three drives I added after the initial install.</p>
<p><a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/09/l1010334.jpg" rel="lightbox[661]"><img class="alignleft size-thumbnail wp-image-666" title="Partition properties" src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010334-130x97.jpg" alt="" width="130" height="97" /></a> Now select the primary partitions on each drive. After hitting return you&#8217;ll see the screen to the left. Hit return again on &#8216;Use As:&#8217; and select <a title="Use as:" rel="lightbox" href="http://www.jonamerica.com/blog/wp-content/uploads/2008/09/l1010335.jpg" rel="lightbox[661]">&#8216;physical volume for RAID.&#8217;</a> Then select &#8216;Done setting up the partition.&#8217; Do this for as many partitions as you want in your RAID. For my RAID1 setup I selected RAID for all 4 partitions.</p>
<p><a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/09/l1010337.jpg" rel="lightbox[661]"><img class="alignright size-thumbnail wp-image-669" title="Configure RAID" src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010337-130x97.jpg" alt="" width="130" height="97" /></a> Select &#8216;Configure software RAID.&#8217; It will ask you if you&#8217;re sure you want the changes to be written. Select yes. Then select &#8216;Create MD device.&#8217; Select the <a href="http://en.wikipedia.org/wiki/RAID#Standard_levels" target="_blank">RAID type</a> you want to install. Enter the number of devices for the RIAD (2 for my setup), enter the number of spare drives for the RAID (0 for me). Now you should see the partitions you set as physical volume for RIAD listed. Select all the partitions you are going to use. Now select finish.</p>
<p><a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/09/l1010345.jpg" rel="lightbox[661]"><img class="alignleft size-thumbnail wp-image-677" title="Return to RAID" src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010345-130x97.jpg" alt="" width="130" height="97" /></a> You&#8217;re now back at the partition menu where you&#8217;ll see a RAID device listed. Select the partition, as before, and now use the entire partition as you see fit. I mounted the entire 247GB partition as Ext3 mounted to /, very simple. Repeat this process again for the two swap partitions, creating a second MD device. Mount that new RAID device as swap.</p>
<p>Once you have everything setup, select &#8216;Finish partitioning and write changes to disk.&#8217; The system will now format the new RAID partition and start the install process.</p>
<p>Follow the prompts to finish the Ubuntu install, there shouldn&#8217;t be anything overly complicated.</p>
<h3>System Configuration</h3>
<p><a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/09/l1010355.jpg" rel="lightbox[661]"><img class="alignleft size-thumbnail wp-image-687" title="Log in" src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010355-130x97.jpg" alt="" width="130" height="97" /></a>Before you know it, you&#8217;ll have a sparkly new Ubuntu box. Now there are some basic setup items to handle.</p>
<p>Right out of the box the system is going to synchronize the RAID. The install only loads the system files to one drive, so <a href="http://en.wikipedia.org/wiki/Mdadm" target="_blank">mdadm</a> needs to bring the other drive(s) into sync. You can the status of this occasionally  by running Terminal (in the applications menu) and typing</p>
<blockquote><p>cat /proc/mdstat</p></blockquote>
<p>You can wait for the drive to by synchronized. If you&#8217;re like me, you won&#8217;t wait.</p>
<p>Before doing anything else it&#8217;s best to download and install any updates. Go into the system menu and select Update Manager. Enter your password and then click, &#8216;Check for updates.&#8217; Download and install. You can&#8217;t install any other applications while this is running, so go ahead and watch mdadm try desperately to keep up with all the changes.</p>
<p>After the update the system will prompt you to reboot. If you have a nVidia video card don&#8217;t, you&#8217;ll want to enable restricted drivers first, which will save you a reboot later. Under the System menu select drivers and enable the NVidia driver. Now reboot.</p>
<p><a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/09/l1010365.jpg" rel="lightbox[661]"><img class="alignleft size-thumbnail wp-image-697" title="Users and Groups" src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010365-130x97.jpg" alt="" width="130" height="97" /></a>Installing MythTV is simple under Ubuntu, but don&#8217;t get ahead of yourself. <strong>Before installing MythTV</strong> you need to decide if you&#8217;re going to run it under a specific MythTV account, or under your own account. MythTV may contain some <strong>security holes</strong>, and running it under your own account may allow others access to files on that account. If you&#8217;re going to be using the system for something else, (fileshare, Web server, backup, etc) you may want to create a new user called mythtv and do the install from there. <strong>This is the recommended setup</strong>.</p>
<p>If you&#8217;re not going to do that you&#8217;ll want to create a group called mythtv and add the username of the account that you&#8217;ll run MythTV from to the mythtv group. Both are done from &#8216;User and Group Settings&#8217; in the system menu.</p>
<p>In whichever account you use, you&#8217;ll want to change the power management so that the system never sleeps, deactivate the screen saver, disable system beeps, and turn the volume all the way up. You may also want to set the MythTV account to login automatically, which can be done in User and Groups Settings.</p>
<h3>Lirc Installation</h3>
<p><a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/09/l1010358.jpg" rel="lightbox[661]"><img class="alignleft size-thumbnail wp-image-690" title="Synaptic Package Manager" src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010358-130x97.jpg" alt="" width="130" height="97" /></a>You should be logged into the account that you&#8217;ll be running MythTV from. In the system menu run Synaptic Package Manager. The package manager is very easy to use. You can search for and select programs you want to install. If there are prerequisites for a selected program the manager will let you know and select them for you. There are a number of programs required for MythTV to run, the manager will get them all for you.</p>
<p><a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/09/l1010359.jpg" rel="lightbox[661]"><img class="alignright size-thumbnail wp-image-691" title="Install Lirc" src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010359-130x97.jpg" alt="" width="130" height="97" /></a> I started with LIRC. During the install process the configuration wizard asked for the type of receiver I was using. I selected &#8216;Windows Media Center Remotes (new version Philips et al.).&#8217; This is the what you want if you pick up a version 2 MCE Remote, which I strongly recommend.</p>
<p>Normally at this point you&#8217;d go through a painful process of creating the configuration files for the remote. This took me several hours to complete adequately, and I never liked the results. Instead of doing that, search for and install mythbuntu-lirc-generator in the package manager. Then open up a terminal window and run</p>
<blockquote><p>mythbuntu-lirc-generator</p></blockquote>
<p>This will create all the files you need for your remote to work with MythTV. If you want to test your remote you&#8217;ll need to restart lirc. This will require admin privlages:</p>
<blockquote><p>sudo /etc/init.d/lircd restart</p></blockquote>
<p><a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/09/l1010361.jpg" rel="lightbox[661]"><img class="alignleft size-thumbnail wp-image-693" title="irw" src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010361-130x97.jpg" alt="" width="130" height="97" /></a>Then you can run</p>
<blockquote><p>irw</p></blockquote>
<p>and start pressing buttons on your remote. On screen you should be seeing random numbers followed by the name of the button you pressed. There are some very helpful <a href="https://help.ubuntu.com/community/InstallLirc/Hardy" target="_blank">community docs</a> on <a href="http://www.mythtv.org/wiki/index.php/Ubuntu_lirc_install" target="_blank">installing lirc</a>. If you&#8217;re going a different route.</p>
<h3>MythTV Installation</h3>
<p><a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/09/l1010364.jpg" rel="lightbox[661]"><img class="size-thumbnail wp-image-696 alignleft" title="MythTV Install" src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010364-130x97.jpg" alt="" width="130" height="97" /></a>Do a search for Myth in the package manager. You&#8217;re looking for three items: <strong>mythtv, mythtv-themes, and mythplugins</strong>. <strong>Note:</strong> If you don&#8217;t want all of the plugins then don&#8217;t select mythplugins. If you&#8217;re not sure, start off with mythtv and myth-themes. You can always add plugins one at a time, depending on what you want. There are plenty of places on the net where you can <a href="http://www.mythtv.org/modules.php?name=MythInstall" target="_blank">read about plugins</a>.</p>
<p>During the install you&#8217;ll be prompted to answer a number of questions. You&#8217;ll be asked to supply a password for the MySQL root user. It is recommended that you leave this blank, as it has been known to cause errors during setup. If you are concerned about security go ahead and enter a password. If you run into a problem it&#8217;s likely you&#8217;ll only need to created the mythtv user in MySQL and set the password. Easily done, but if you aren&#8217;t familiar with MySQL it may be a bit of a pain.</p>
<p>You&#8217;ll see a message about running mythtv-setup, we&#8217;ll do that in a minute. You&#8217;ll also be asked if you want to allow remote connections to the backend. If you are planning on having a remote frontend, or multiple fronteneds you&#8217;ll want to answer yes. If you select no, you can always enable it later. The install process will generate a password for MySQL user mythtv and store this information in /etc/mythtv/mysql.txt. You may need to refer to this later.</p>
<p>That&#8217;s it, we&#8217;re installed!</p>
<h3>MythTV Configuration</h3>
<p>There are 6 menus to go through. For the most part configuration of the backend is simple. I&#8217;ll walk you through the basics of getting up and running. There is plenty of documentation already out there that covers tweaking MythTV.</p>
<p>From the System, Administration menu select &#8216;MythTV Backend Setup.&#8217; Under the first option, General, you&#8217;ll need to set your &#8216;TV Format&#8217; (NTSC in the U.S.) and your &#8216;Channel frequency table&#8217;. If you&#8217;re using MythTV for over-the-air broadcast in the U.S. select us-bcast.</p>
<p><a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/09/l1010380.jpg" rel="lightbox[661]"><img class="alignleft size-thumbnail wp-image-706" title="MythTV configuration screen" src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010380-130x97.jpg" alt="" width="130" height="97" /></a>In the Capture cards menu you need to select (New capture card). If you&#8217;re using a <a href="http://www.pchdtv.com/hdtv_linux.html" target="_blank">pcHDTV</a> tuning card select DVB DTV for your card type. If you have more than one turning card repeat this step, changing &#8216;DVB card number.&#8217;</p>
<p>In the Video Sources menu you want to select <a href="http://www.schedulesdirect.org/" target="_blank">SchedulesDirect.org</a>. You&#8217;ll need to sign-up with SD ($20 / year). In the setup window enter your SD login and password.</p>
<p>Now you need to select Input connections to associate the Capture cards with the Video sources. Select the card you want to edit, then select your video source for that card. Next click &#8216;Scan for channels.&#8217; This will initiate your channel scan (you&#8217;ll want your antenna/cable source hooked up at this point). If you don&#8217;t get a lock on any channels check your antenna/cable connection. If that doesn&#8217;t resolve the issue try changing the &#8216;Channel frequency table&#8217; in the General menu. Repeat this for all capture cards.</p>
<p>The Channel Editor window allows you to edit the channels that were picked up in scanning. You can hide, delete, and rename channels here.</p>
<p>Lastly, the Storage Directory window is where you specify the path where videos will be stored. I added three hard drives to my system and mounted them to /var/videos/drive1, 2, and 3. In the Storage Directory menu I selected (default), edited the default location to drive1 and added the 2nd and 3rd drive locations respectively. Within MythTV you can specify which recordings go to which storage group. If you wanted to create groups other than default this is where you would set up the different groups. If you only want one group for all videos simply select default.</p>
<p>You can now exit the configuration. You&#8217;ll be prompted to run mythfilldatabase, go ahead and do so. This will pull television information from schedulesdirect.org and fill your program guide.</p>
<p>You can now run the MythTV frontend from the applications menu!</p>
<p>You will find there are 100s of options for adjusting and configuring MythTV. I&#8217;m not going to go into any of them. The specifics of your system will determine these settings. Indeed there were many backend settings that we skipped for the same reason. Read about all of these options and determine what&#8217;s best for your system. I would recommend, however, enableing OpenGL, if you have a video card that supports it.</p>
<p>I&#8217;m running video out to my HDTV from a DVI - HDMI cable. This provides a supurb image quality. However, there is a horrible issue of overscan. You may also run into this issue if you&#8217;re using your MythTV setup with a TV instead of a computer monitor. There is plenty of information out there to help. The easiest solution is to ignore the overscan and adjust the size of the MythTV window, which can be independent from the desktop.</p>
<h3>Useful Links</h3>
<p>Here&#8217;s my list of useful links that have been indispensable to me:</p>
<blockquote><p>General links:<br />
<a href="http://www.mythtv.org/" target="_blank">MythTV Home</a><br />
<a href="http://www.ubuntu.com/" target="_blank">Ubuntu Home</a></p></blockquote>
<blockquote><p>Install Documentation:<br />
<a href="http://www.mythtv.org/modules.php?name=MythInstall" target="_blank">MythTV Install Documentation<br />
</a><a href="https://help.ubuntu.com/community/InstallLirc/Hardy" target="_blank">Install Lirc on Ubuntu<br />
</a></p></blockquote>
<blockquote><p>Hardware links:<br />
<a href="http://www.pchdtv.com/hdtv_linux.html" target="_blank">pcHDTV Tuner Cards</a><br />
<a href="http://www.mythtv.org/wiki/index.php/MCE_Remote" target="_blank">MCE Remote<br />
</a> <a href="http://www.solidsignal.com/prod_display.asp?PROD=SS3000" target="_blank">Solid Signal</a> (Source for internal/external antennas)</p></blockquote>
<blockquote><p>Overscan/Modeline Links:<br />
<a href="http://www.mythtv.org/wiki/index.php/Modeline_Database" target="_blank">Modeline Database</a> (Very handy source for verified Modelins for TVs)<br />
<a href="http://www.mythtv.org/wiki/index.php/Working_with_Modelines" target="_blank">Working with Modelines</a></p></blockquote>
<blockquote><p>General Support:<br />
<a href="https://help.ubuntu.com/community/" target="_blank">Ubuntu Community Documentation<br />
</a> <a href="http://pchdtv.com/forum/index.php" target="_blank">pcHDTV Forums</a> (great for getting tech support)<br />
<a href="http://mythtv.org/wiki/index.php/PcHDTV_HD-5500" target="_blank">MythTV pcHDTV Wiki page<br />
</a> <a href="http://www.nvnews.net/vbulletin/forumdisplay.php?f=14" target="_blank">nVidia Linux Support Forum<br />
</a> <a href="http://www.avsforum.com/avs-vb/forumdisplay.php?f=76" target="_blank">AV Science Forum for Linux base HTPCs</a> Fantastic support resource.</p></blockquote>
<h3>Conclusion</h3>
<p>Tweaking MythTV is a long, complicated, but rewarding process. It can make the difference between smooth and jerky playback. Once you have a configuration you like I recommend documenting it thuroughly. In the past I&#8217;ve had to completely reset my MythTV installation and lost all of my settings.</p>
<p>Building your own MythTV based HTPC can be rewarding. Hopefuly this guide makes it a little easier to get started.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jonamerica.com/news/mythtv-ii-return-of-mythtv/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Gallery: Honeymoon</title>
		<link>http://www.jonamerica.com/photography/gallery-honeymoon/</link>
		<comments>http://www.jonamerica.com/photography/gallery-honeymoon/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 12:33:06 +0000</pubDate>
		<dc:creator>jonamerica</dc:creator>
		
		<category><![CDATA[Photography]]></category>

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

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

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

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

		<guid isPermaLink="false">http://www.jonamerica.com/?p=627</guid>
		<description><![CDATA[We had a wonderful honeymoon. We started in Providence, Rhode Island before flying to the tip of Michigan&#8217;s lower peninsula. From there we took a ferry to Mackinac Island. Since 1898, motorized vehicles have been outlawed on Mackinac Island; although, some exceptions have been made.  The island is home to more than 600 horses, [...]]]></description>
			<content:encoded><![CDATA[<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010228.jpg"  rel="lightbox[627]"  class="lightbox"><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010228-130x130--img641.jpg" alt="" title="The Grand Hotel" width="130" height="73" class="alignleft size-thumbnail wp-image-641" /></a> We had a wonderful honeymoon. We started in Providence, Rhode Island before flying to the tip of Michigan&#8217;s lower peninsula. From there we took a ferry to <a href="http://www.mackinacisland.org/" target="_blank">Mackinac Island</a>. Since 1898, motorized vehicles have been <a href="http://en.wikipedia.org/wiki/Mackinac_Island" target="_blank">outlawed</a> on Mackinac Island; although, <a href="http://www.imdb.com/title/tt0081534/" target="_blank">some exceptions</a> have been made.  The island is home to more than 600 horses, which in the absence of cars, are the only way of transporting goods and large groups of tourists. However, the most popular mode of transportation in the summer is bicycle.</p>
<p><span id="more-627"></span></p>
<p>We stayed at the <a href="http://www.grandhotel.com/" target="_blank">Grand Hotel</a>, a beautiful heritage hotel, which, like much of the island, has retained all of its Victorian charm and sophistication. Our stay there was terribly relaxing. Exactly what we needed!</p>
<p>
<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010193.jpg" title="Day one of our honeymoon. We went to a little Italian cafe in the historic Federal Hill district of Providence, Rhode Island!"><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010193-130x130--img629.jpg" width="86" height="130" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010196.jpg" title="Yes, Providence, Rhode Island."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010196-130x130--img630.jpg" width="86" height="130" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010198.jpg" title="After hearing that we were on our honeymoon, our waitress said, 'In Providence? You're going to the airport, right?'"><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010198-130x130--img631.jpg" width="73" height="130" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010199.jpg" title="Here we are on the shuttle to the Mackinac Island ferry."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010199-130x130--img632.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010206.jpg" title="And here we are on the ferry."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010206-130x130--img633.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010216.jpg" title="This is a historic lighthouse on Round Island, in the Straits of Mackinac."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010216-130x130--img634.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010218.jpg" title="This is the Grand Hotel where we stayed on Mackinac Island."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010218-130x130--img635.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010220.jpg" title="Everything on the island is done by horse and buggy. Here are horses pulling hay off the dock."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010220-130x130--img636.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010221.jpg" title="This is downtown Mackinac Island. This isn't the area where year-round residents live. This is the area where tourists buy fudge."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010221-130x130--img637.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010223.jpg" title="The island is full of beautiful flowers and gardens. "><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010223-130x130--img638.jpg" width="86" height="130" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010224.jpg" title="There are also many sailboats in the harbor and around the island. Here you can see the more modern Mackinac Lighthouse."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010224-130x130--img639.jpg" width="86" height="130" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010226.jpg" title="This is the cupola on the Grand Hotel"><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010226-130x130--img640.jpg" width="130" height="86" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010228.jpg" title="This is the Grand Hotel and the world's largest porch."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010228-130x130--img641.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010230.jpg" title="And here we are!"><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010230-130x130--img642.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010252.jpg" title="Here I am taking pictures on film! (So old school)"><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010252-130x130--img643.jpg" width="130" height="97" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010258.jpg" title="And here we are again."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010258-130x130--img644.jpg" width="130" height="86" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010259.jpg" title="The lighthouse"><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010259-130x130--img645.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010261.jpg" title="Lighthouse"><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010261-130x130--img646.jpg" width="73" height="130" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010264.jpg" title="Here's another view of downtown Mackinac "><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010264-130x130--img647.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010268.jpg" title="We're now climbing up the hill to Fort Mackinac. These are the peaks of a private residence."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010268-130x130--img648.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010270.jpg" title="Here is one of the fort towers."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010270-130x130--img649.jpg" width="73" height="130" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010276.jpg" title="This is a view of the town to the east. More hotels and residences. Fewer tourist shops. "><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010276-130x130--img650.jpg" width="73" height="130" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010278.jpg" title="The two lighthouses."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010278-130x130--img651.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010283.jpg" title="The Grand Hotel, as seen from the fort."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010283-130x130--img652.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010287.jpg" title="The Mackinac Island docks."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010287-130x130--img653.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010304.jpg" title="Sunset at the Grand. This is the road leading away from the Hotel."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010304-130x130--img654.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010310.jpg" title="Sunset on our last evening."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010310-130x130--img655.jpg" width="73" height="130" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010312.jpg" title="It was a spectacular view. Mackinac Bridge in the background."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010312-130x130--img656.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010315.jpg" title="And the official flower of the Grand Hotel, the geranium. These are a couple of the more than 5200 at the hotel."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010315-130x130--img628.jpg" width="73" height="130" class="attachment-thumbnail" alt="" /></a>\n]]></content:encoded>
			<wfw:commentRss>http://www.jonamerica.com/photography/gallery-honeymoon/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Gallery: Governor John Langdon House</title>
		<link>http://www.jonamerica.com/photography/gallery-governor-john-langdon-house/</link>
		<comments>http://www.jonamerica.com/photography/gallery-governor-john-langdon-house/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 13:44:23 +0000</pubDate>
		<dc:creator>jonamerica</dc:creator>
		
		<category><![CDATA[Photography]]></category>

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

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

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

		<guid isPermaLink="false">http://www.jonamerica.com/?p=619</guid>
		<description><![CDATA[On December 14, 1774 Portsmouth, New Hampshire merchant and prominent businessman, John Langdon, led a crowd of rebels to Fort William and Mary (later renamed Fort Constitution) to overtake the fort and confiscate the gunpowder stored there. The crowed stormed the fort before shots could be fired, and after hand-to-hand combat, the fort was [...]]]></description>
			<content:encoded><![CDATA[<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010082.jpg"  rel="lightbox[619]"  class="lightbox"><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010082-130x130--img623.jpg" alt="" title="Governor John Langdon House" width="130" height="73" class="alignleft size-thumbnail wp-image-623" /></a> On December 14, 1774 Portsmouth, New Hampshire merchant and prominent businessman, John Langdon, led a crowd of rebels to Fort William and Mary (later renamed <a href="http://www.jonamerica.com/photography/gallery-engagement/">Fort Constitution</a>) to overtake the fort and confiscate the gunpowder stored there. The crowed stormed the fort before shots could be fired, and after hand-to-hand combat, the fort was taken. John Langdon later became a governor of New Hampshire, a signer of the United States Constitution, a United States Senator, and the first President Pro Tempore of the United States Senate. The <a href="http://www.historicnewengland.org/visit/homes/langdon.htm" target="_blank">Governor John Langdon House</a> is where Leah and I held our wedding reception.</p>
<p><span id="more-619"></span></p>
<p>
<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010086.jpg" title="The house has a beautiful arbor running through the backyard."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010086-130x130--img624.jpg" width="73" height="130" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010093.jpg" title="The arbor is covered with roses and other flowers."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010093-130x130--img620.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010078.jpg" title="Looking away from the house, down the arbor."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010078-130x130--img622.jpg" width="97" height="130" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010091.jpg" title="Pink roses."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010091-130x130--img626.jpg" width="73" height="130" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010090.jpg" title="Magenta roses."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010090-130x130--img625.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010082.jpg" title="Governor John Langdon House"><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010082-130x130--img623.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010074.jpg" title="The arbor."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010074-130x130--img621.jpg" width="73" height="130" class="attachment-thumbnail" alt="" /></a>\n]]></content:encoded>
			<wfw:commentRss>http://www.jonamerica.com/photography/gallery-governor-john-langdon-house/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Gallery: Arkansas May, 08</title>
		<link>http://www.jonamerica.com/photography/gallery-arkansas-may-08/</link>
		<comments>http://www.jonamerica.com/photography/gallery-arkansas-may-08/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 16:18:34 +0000</pubDate>
		<dc:creator>jonamerica</dc:creator>
		
		<category><![CDATA[Photography]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://www.jonamerica.com/?p=595</guid>
		<description><![CDATA[This past May the family got together again in Arkansas to relax, water ski, visit, and play games. This was the last vacation for Leah and me before our wedding and it was the first visit to Arkansas for my brother&#8217;s wife Michelle and my nephew Scott. Here are a few pictures from the [...]]]></description>
			<content:encoded><![CDATA[<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010029.jpg"  rel="lightbox[595]"  class="lightbox"><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010029-130x130--img615.jpg" alt="" title="Skiing in Arkansas " width="130" height="73" class="alignleft size-thumbnail wp-image-615" /></a> This past May the family got together again in Arkansas to relax, water ski, visit, and play games. This was the last vacation for Leah and me before our wedding and it was the first visit to Arkansas for my brother&#8217;s wife Michelle and my nephew Scott. Here are a few pictures from the trip.</p>
<p><span id="more-595"></span></p>
<p>
<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1000959.jpg" title="Michelle and Scott coming up the back steps from the dock. First time on the boat for Scott!"><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1000959-130x130--img597.jpg" width="73" height="130" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1000963.jpg" title="This is one of the many new toys that were awaiting Scott's arrival in Arkansas"><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1000963-130x130--img598.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1000968.jpg" title="There were also some lovely flowers that I couldn't resist photographing."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1000968-130x130--img599.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1000971.jpg" title="Red flower!"><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1000971-130x130--img600.jpg" width="73" height="130" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1000976.jpg" title="To the skiing! Here's Tom!"><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1000976-130x130--img601.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1000978.jpg" title="Tom again, now with tow line behind knees!"><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1000978-130x130--img602.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1000982.jpg" title="Tom on one ski!"><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1000982-130x130--img603.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1000986.jpg" title="Jared's driving the boat, unimpressed with Tom's antics"><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1000986-130x130--img604.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1000989.jpg" title="Jared's turn. Here's Jared getting up on one ski to slalom."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1000989-130x130--img605.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1000990.jpg" title="Getting up on one ski produces quite a large splash. "><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1000990-130x130--img606.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1000995.jpg" title="So does slaloming in general."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1000995-130x130--img607.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010001.jpg" title="The water wasn't great that weekend. "><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010001-130x130--img608.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010006.jpg" title="Overall it was pretty choppy."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010006-130x130--img609.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010013.jpg" title="Here's Scott the turtle! (The wind was in his eyes.)"><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010013-130x130--img610.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010016.jpg" title="Oh, right, Jared's still out there."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010016-130x130--img611.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010021.jpg" title="Here's tom driving the boat."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010021-130x130--img612.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010022.jpg" title="The last evening we were there the lake was in great shape."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010022-130x130--img613.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010028.jpg" title="Jared did some more slaloming"><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010028-130x130--img614.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010029.jpg" title="In the sunset."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010029-130x130--img615.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010030.jpg" title="Making more big waves."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010030-130x130--img616.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010038.jpg" title="slalom fin."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010038-130x130--img617.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010052.jpg" title="I also did some tubing over the weekend. I'm a very blurry person on the tube."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010052-130x130--img618.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n<a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/08/l1010058.jpg" title="They almost knocked me off on this one, but I was able to hold on."><img src="http://www.jonamerica.com/blog/wp-content/plugins/photojar-base/cache/l1010058-130x130--img596.jpg" width="130" height="73" class="attachment-thumbnail" alt="" /></a>\n]]></content:encoded>
			<wfw:commentRss>http://www.jonamerica.com/photography/gallery-arkansas-may-08/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Long time no see</title>
		<link>http://www.jonamerica.com/news/long-time-no-see/</link>
		<comments>http://www.jonamerica.com/news/long-time-no-see/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 20:16:50 +0000</pubDate>
		<dc:creator>jonamerica</dc:creator>
		
		<category><![CDATA[News]]></category>

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

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

		<guid isPermaLink="false">http://www.jonamerica.com/?p=217</guid>
		<description><![CDATA[Moving and preparing for my upcoming nuptials has limited my time for extraneous activities. Leah and I have both been working hard to get the wedding details and new apartment in order. I have a few posts lined up for when time allows. For now the blog will have to wait, as I have more [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-218" title="Wedding Cake Topper" src="http://www.jonamerica.com/blog/wp-content/uploads/2008/07/topper-84x115.jpg" alt="" width="84" height="115" />Moving and preparing for my upcoming nuptials has limited my time for extraneous activities. Leah and I have both been working hard to get the wedding details and new apartment in order. I have a few posts lined up for when time allows. For now the blog will have to wait, as I have more important things to take care of.</p>
<p>C&#8217;est la vie <!--nevermore--></p>]]></content:encoded>
			<wfw:commentRss>http://www.jonamerica.com/news/long-time-no-see/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Time for a national campaign</title>
		<link>http://www.jonamerica.com/politics/time-for-a-national-campaign/</link>
		<comments>http://www.jonamerica.com/politics/time-for-a-national-campaign/#comments</comments>
		<pubDate>Wed, 07 May 2008 20:13:59 +0000</pubDate>
		<dc:creator>jonamerica</dc:creator>
		
		<category><![CDATA[Politics]]></category>

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

		<category><![CDATA[David Axelrod]]></category>

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://www.jonamerica.com/?p=216</guid>
		<description><![CDATA[The results from last nights primaries in North Carolina and Indiana have given Sen. Barack Obama a decisive advantage over Sen. Hillary Clinton. Obama&#8217;s 14 point victory over Clinton in N.C., and the narrow loss in Ind. has given the Obama campaign the air of inevitability. In both states, Obama&#8217;s margins with working-class whites and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-214" title="Obama in N.C., photo: AP" src="http://www.jonamerica.com/blog/wp-content/uploads/2008/05/080506_obama_smith_lede-115x86.jpg" alt="Obama in N.C., photo: AP" width="115" height="86" />The results from last nights primaries in North Carolina and Indiana have given Sen. Barack Obama a decisive advantage over Sen. Hillary Clinton. Obama&#8217;s 14 point victory over Clinton in N.C., and the narrow loss in Ind. has given the Obama campaign the air of inevitability. In both states, Obama&#8217;s margins with working-class whites and other key Clinton demographics has weakened Clinton&#8217;s argument for urging Democratic superdelegates to ignore Obama&#8217;s delegate and popular vote lead and give the nomination to her.</p>
<p><span id="more-216"></span></p>
<p>Obama is gearing up for a campaign shift, as evidenced by his focus on a national contest in his N.C. victory speech, warning of upcoming Republican attacks. In the Wall Street Journal, Obama strategist David Axelrod was quoted as saying, &#8220;I don&#8217;t think we&#8217;re going to spend time solely in primary states.&#8221;</p>
<p><img class="alignleft size-thumbnail wp-image-213" title="Hillary, photo: AP" src="http://www.jonamerica.com/blog/wp-content/uploads/2008/05/080505_expecthillary2-115x86.jpg" alt="Hillary, photo: AP" width="115" height="86" />Clinton is not yet backing down; however, with Tuesday&#8217;s poor results and the loss of momentum, the legitimacy of her campaign is in question. The steady trickle of superdelegates endorsing Obama is certainly a sign that Clinton&#8217;s fate is sealed. Former Sen. George McGovern of South Dakota, who had previously endorsed Clinton, is one of a number of party leaders to support Obama the day after the decisive primaries, and is now encouraging Clinton to drop out of the race.</p>
<p><img class="alignleft size-thumbnail wp-image-215" title="John McCain in Ohio" src="http://www.jonamerica.com/blog/wp-content/uploads/2008/05/mccain5-115x89.jpg" alt="John McCain in Ohio" width="115" height="89" />Meanwhile John McCain is doing his best to make inroads into key democratic constituents, courting moderate and conservative blue-collar Democrats in Pennsylvania and Ohio, two key swings states. The same group of voters that was key to electing Ronald Reagan in 1980. Currently, polls show that 30% of Clinton supporters would vote for McCain over Obama, if the general election were held today. Due largely to the emotions surrounding the hard-fought nomination battles between Clinton and Obama, this voting shift is likely to fade by the fall. The McCain campaign is hoping to take advantage of the current environment and pickup the disenfranchised Clinton supporters now.</p>
<p>It&#8217;s hard to say how much longer the battle for the Democratic nominee will last. If Obama makes a clear shift towards a general election strategy, we should see party leaders pushing Clinton hard to drop out of the race. However, it&#8217;s not likely Clinton will drop out before June 15th. Obama will have to focus on courting Clinton supporters before McCain does. With both McCain and Obama appealing equally well to independent voters, the blue-collar, conservative democrats are McCain&#8217;s best hope for winning the general election.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jonamerica.com/politics/time-for-a-national-campaign/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MSI motherboard sports Stirling engine</title>
		<link>http://www.jonamerica.com/technology/msi-motherboard-sports-stirling-engine/</link>
		<comments>http://www.jonamerica.com/technology/msi-motherboard-sports-stirling-engine/#comments</comments>
		<pubDate>Fri, 11 Apr 2008 17:40:35 +0000</pubDate>
		<dc:creator>jonamerica</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<category><![CDATA[cooling system]]></category>

		<category><![CDATA[micro star international]]></category>

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

		<category><![CDATA[stirling engine]]></category>

		<guid isPermaLink="false">http://www.jonamerica.com/?p=199</guid>
		<description><![CDATA[Micro-Star International recently announced that it will be offering a motherboard with a Stirling engine powered cooling fan for the northbridge. This device would reduce total electricity usage, and be a &#8220;more ECO friendly design.&#8221; Yet, I&#8217;m not convinced that a Stirling engine would provide ideal cooling for hard-core computer operation. At the very least, [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox" href="http://www.jonamerica.com/blog/wp-content/uploads/2008/04/080229_1.jpg" rel="lightbox[199]"><img class="alignnone size-thumbnail wp-image-200 alignleft" style="float: left;" title="080229_1" src="http://www.jonamerica.com/blog/wp-content/uploads/2008/04/080229_1-115x77.jpg" alt="" width="115" height="77" /></a>Micro-Star International <a href="http://global.msi.com.tw/index.php?func=newsdesc&amp;news_no=591" target="_blank">recently announced</a> that it will be offering a motherboard with a Stirling engine powered cooling fan for the northbridge. This device would reduce total electricity usage, and be a &#8220;more ECO friendly design.&#8221; Yet, I&#8217;m not convinced that a Stirling engine would provide ideal cooling for hard-core computer operation. At the very least, I&#8217;m sure it&#8217;s unnecessary.</p>
<p><span id="more-199"></span></p>
<p>A normal, cooled, idle northbridge temperature should be somewhere just over 40 degrees Celsius (104 Fahrenheit). When running at full bore, a motherboard&#8217;s northbridge temperatures might hover around 55 C (131 F), when cooled. Running at a higher temperature can mean a loss of system stability and system crashes, which is why cooling is necessary for computer chips like the northbridge, CPUs and GPUs.</p>
<p><a href="http://www.jonamerica.com/blog/wp-content/uploads/2008/04/080229_5.jpg" rel="lightbox[199]"><img class="alignnone size-thumbnail wp-image-201 alignleft" style="float: left;" title="080229_5" src="http://www.jonamerica.com/blog/wp-content/uploads/2008/04/080229_5-76x114.jpg" alt="" width="76" height="114" /></a>MSI&#8217;s new Stirling engine powered cooler is designed to maintain normal operating temperatures. Stirling engines operate by using a heat source to cause a gaseous working fluid to expand to raise a piston, the gaseous working fluid then cools, lowering the piston. The movement of the piston generates power. The <a href="http://en.wikipedia.org/wiki/Stirling_engine#Beta_Stirling" target="_blank">beta Stirling engine</a> MSI uses is air filled, and powers a cooling fan. The animation below demonstrates how this would be put to use on a motherboard.</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/vG36EIFNI-Y" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/vG36EIFNI-Y"></embed></object></p>
<p style="text-align: left;">As the motherboard heats up, and the engine begins to work, the temperature will come into balance. As the temperature rises, the engine will operate more quickly, and bring the temperature back into balance. The cooling system should be designed to keep the northbridge in the normal operating range, ideally somewhere around 40 C.</p>
<p style="text-align: left;">However, due to the time it takes heat to be converted into energy, there is a lag between the northbridge heating up, the engine responding, and the chip cooling down. This delay can be shortened by using more reactive gaseous liquids and reducing friction by proper lubrication and precision engineering and machining, which would likely be cost prohibitive in this application. If the cooler isn&#8217;t very precise, there could be temperature spikes that cause system instability. Furthermore, if the engine isn&#8217;t efficient enough at cooling, hard-core computing could also result in instability.</p>
<p style="text-align: left;">What&#8217;s the likely hood of stability issues? Very slim, when you consider many people replace the fans on their motherboard&#8217;s northbridge with a <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16835118014&amp;Tpk=fanless%2bnorthbridge" target="_blank">fanless heatsink</a>, to reduce noise. If a simple heatsink will do the trick, why go to all the trouble to introduce a Stirling engine powered cooler? Geek factor would be my guess.</p>
<p style="text-align: left;">]]></content:encoded>
			<wfw:commentRss>http://www.jonamerica.com/technology/msi-motherboard-sports-stirling-engine/feed/</wfw:commentRss>
		</item>
		<item>
		<title>For now, politics as usual</title>
		<link>http://www.jonamerica.com/politics/for-now-politics-as-usual/</link>
		<comments>http://www.jonamerica.com/politics/for-now-politics-as-usual/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 17:16:25 +0000</pubDate>
		<dc:creator>jonamerica</dc:creator>
		
		<category><![CDATA[Politics]]></category>

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

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

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

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

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

		<category><![CDATA[steve hildebrand]]></category>

		<guid isPermaLink="false">http://www.jonamerica.com/?p=179</guid>
		<description><![CDATA[There are three more weeks until the Pennsylvania primary, and many are becoming weary of the consistently negative and personality centered campaigning. Hilary Clinton and Barack Obama have both continued to focus on each other; and while we&#8217;ve heard plenty about readiness, experience, honesty and other character traits of both candidates, it has been a [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-182" style="float: left;" title="obama_clinton" src="http://www.jonamerica.com/blog/wp-content/uploads/2008/04/obama_clinton-115x79.jpg" alt="Clinton &amp; Obama" width="115" height="79" />There are three more weeks until the Pennsylvania primary, and many are becoming weary of the consistently negative and personality centered campaigning. Hilary Clinton and Barack Obama have both continued to focus on each other; and while we&#8217;ve heard plenty about readiness, experience, honesty and other character traits of both candidates, it has been a long time since there have been any substantial policy discussions. Clinton and Obama, even John McCain, could stand to shake up their campaign strategies a bit, to break up the tedium, and generate new excitement.</p>
<p><span id="more-179"></span></p>
<p>Obama&#8217;s campaign is starting to make shifts towards the general election, according to deputy campaign manager, Steve Hildebrand. To focusing on policy, campaigning in key election states, and mobilizing volunteers to register voters for the November election. Despite calls from key Democrats and DNC superdelegates for Clinton to drop out of the race (mostly from Obama supporters), Obama has repeatedly encouraged Clinton to continue her run.</p>
<p>One can imagine that the tough competition between the candidates has been garnering support and funds. Yet, if the public interest is faltering, it is likely that support and donations will follow, and the most logical course of action is to get the electorate excited about the general election campaign. If Obama can successfully shift his campaign, and the electorate&#8217;s interest, from personality to policy, and from Clinton to McCain, Clinton&#8217;s candidacy will be weakened, and her campaign much less effective.</p>
<p><img class="alignleft size-thumbnail wp-image-174" style="float: left;" title="John McCain" src="http://www.jonamerica.com/blog/wp-content/uploads/2008/03/mccain.jpg" alt="John McCain, Source: Unknown" width="78" height="115" />McCain, who has been virtually invisible since clinching the Republican nomination on March 4th, is left in a precarious position. If Obama&#8217;s plan works, the McCain campaign could find itself left on the starting block, forcing McCain to play catch-up. If McCain starts campaigning against Obama too early, he risks strengthening Clinton&#8217;s candidacy, and waisting funds possibly defeating the wrong candidate. McCain&#8217;s situation is only exacerbated by the fact that he&#8217;s already behind in the polls and suffering from a divided support base. McCain&#8217;s campaign must come to action, and right soon, or risk being seen as unfocused and out of touch.</p>
<p>If Obama&#8217;s strategy works, I&#8217;d expect to see the McCain campaign focus in on the November election, with Obama as the opponent. We&#8217;ll then have a full blown election campaign, and Clinton will be left behind.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jonamerica.com/politics/for-now-politics-as-usual/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
