<?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>undertakingyou</title>
	<atom:link href="http://undertakingyou.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://undertakingyou.com</link>
	<description>explorations in open source software and ideas</description>
	<lastBuildDate>Fri, 03 Sep 2010 14:30:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>First Experience with Zend Framework</title>
		<link>http://undertakingyou.com/general/first-experience-with-zend-framework/</link>
		<comments>http://undertakingyou.com/general/first-experience-with-zend-framework/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 14:30:07 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Application Review]]></category>
		<category><![CDATA[WebStuff]]></category>

		<guid isPermaLink="false">http://undertakingyou.com/?p=355</guid>
		<description><![CDATA[I wrote a review of Zend Enterprise PHP Patterns a while back. While I read the book, I had yet to jump into the Zend framework and really make a project that used it, or any of it for that matter. While doing a project for a client I had need of making several forms. [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote a review of <a href="http://http://undertakingyou.com/general/book-review-ze…e-php-patterns/">Zend Enterprise PHP Patterns </a>a while back. While I read the book, I had yet to jump into the Zend framework and really make a project that used it, or any of it for that matter. While doing a project for a client I had need of making several forms. Nothing is more tedious to me than making forms. The html tags for labels, the form input, and then the PHP on top of it to give default values. This is OK when making a short form. But I get extra sick of it when doing a form with even ten or more fields. When faced with such a situation this last week I decided to try just a piece of the Zend Framework.</p>
<p>This is possibly my favorite thing about the framework, the ability to use as much or as little as you would like. It gives great flexibility and allows you to include parts into a currently existing project.</p>
<p>To get started, you need to tell your PHP application where zend is, in addition, starting the autoloader at this time really makes life easy. The following code does just that:</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1"><a href="http://www.php.net/set_include_path"><span class="kw3">set_include_path</span></a><span class="br0">&#40;</span><a href="http://www.php.net/get_include_path"><span class="kw3">get_include_path</span></a><span class="br0">&#40;</span><span class="br0">&#41;</span> . PATH_SEPARATOR . <span class="st0">&#8216;&lt;wherever Zend is&gt;&#8217;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">require_once</span> <span class="st0">&#8216;&lt;wherever Zend is&gt;/Autoloader.php&#8217;</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="re0">$autoloader</span> = Zend_Loader_Autoloader::<span class="me2">getInstance</span><span class="br0">&#40;</span><span class="br0">&#41;</span>;</div>
</li>
</ol>
</div>
<p>With these two items in place you can just begin to call Zend Classes and Functions without another thought about it. I put this in my included header.php file, where I have all kinds of includes. Now my functions are available to me wherever I am.</p>
<p>To start your form it is very easy.</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1"><span class="re0">$form</span> = <span class="kw2">new</span> Zend_Form<span class="br0">&#40;</span><span class="br0">&#41;</span>;</div>
</li>
</ol>
</div>
<p>That is is, we have started a form. Everything else will use the newly created $form object and go forward from there.</p>
<p>Next, you must add attributes and elements to your form. I found certain parts of this very poorly documented. I wish there was a list of acceptable options, etc for each form addition type but there isn&#8217;t. Maybe I should just not complain and write it, but I digress. Adding attributes is rather easy</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1"><span class="re0">$form</span>-&gt;<span class="me1">setAction</span><span class="br0">&#40;</span><span class="st0">&#8216;./action.php&#8217;</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp;-&gt;<span class="me1">setMethod</span><span class="br0">&#40;</span><span class="st0">&#8216;post&#8217;</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp;-&gt;<span class="me1">setAttrib</span><span class="br0">&#40;</span><span class="st0">&#8216;id&#8217;</span>, <span class="st0">&#8216;form_id&#8217;</span><span class="br0">&#41;</span>;</div>
</li>
</ol>
</div>
<p>Now adding form fields, a couple options here, both quite easy. First is to just use the $form object and add directly:</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1"><span class="re0">$form</span>-&gt;<span class="me1">addElement</span><span class="br0">&#40;</span><span class="st0">&#8216;text&#8217;</span>, <span class="st0">&#8216;text_input&#8217;</span>, <a href="http://www.php.net/array"><span class="kw3">array</span></a><span class="br0">&#40;</span><span class="st0">&#8216;value&#8217;</span> =&gt; <span class="re0">$_REQUEST</span><span class="br0">&#91;</span><span class="st0">&#8216;text_input&#8217;</span><span class="br0">&#93;</span>, <span class="st0">&#8216;label&#8217;</span> =&gt; <span class="st0">&#8216;Text Input:&#8217;</span><span class="br0">&#41;</span><span class="br0">&#41;</span>;</div>
</li>
</ol>
</div>
<p>The arguments passed to the addElement method are type, name, array of  options.</p>
<p>The second option is to create a Zend_Form_Element object and add that to the $form object:</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1"><span class="re0">$select_input</span> = <span class="kw2">new</span> Zend_Form_Element_Select<span class="br0">&#40;</span><span class="st0">&#8216;select_input&#8217;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="re0">$select_input</span>-&gt;<span class="me1">setLabel</span><span class="br0">&#40;</span><span class="st0">&#8216;Select Input:&#8217;</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp;-&gt;<span class="me1">addMultiOptions</span><span class="br0">&#40;</span><a href="http://www.php.net/array"><span class="kw3">array</span></a><span class="br0">&#40;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&#8216;Option0&#8242;</span> =&gt; <span class="st0">&#8216;Option0&#8242;</span>,</div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&#8216;Option1&#8242;</span> =&gt; <span class="st0">&#8216;Option1&#8242;</span>,</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&#8216;Option2&#8242;</span> =&gt; <span class="st0">&#8216;Option2&#8242;</span><span class="br0">&#41;</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp;-&gt;<span class="me1">setOptions</span><span class="br0">&#40;</span><a href="http://www.php.net/array"><span class="kw3">array</span></a><span class="br0">&#40;</span><span class="st0">&#8216;value&#8217;</span> =&gt; <span class="re0">$_REQUEST</span><span class="br0">&#91;</span><span class="st0">&#8216;select_input&#8217;</span><span class="br0">&#93;</span><span class="br0">&#41;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="re0">$form</span>-&gt;<span class="me1">addElement</span><span class="br0">&#40;</span><span class="re0">$select_input</span><span class="br0">&#41;</span>;</div>
</li>
</ol>
</div>
<p>The last bit, actually rendering your form. Some caveats here, Zend Framework components can be used outside of the Zend MVC environment, but you still must define a view in order for the form to actually come up. If you do not, you will get an exception. It isn&#8217;t hard though, the following will do it for you:</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1"><span class="re0">$form</span>-&gt;<span class="me1">setView</span><span class="br0">&#40;</span><span class="kw2">new</span> Zend_View<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1"><a href="http://www.php.net/echo"><span class="kw3">echo</span></a> <span class="re0">$form</span>;</div>
</li>
</ol>
</div>
<p>Viola! The form magically appears in front of your eyes. A couple things to remember, anything that can be attribute of an HTML form of input elements can be added to the Zend_Form in the options array. This includes, value, class, specifically defined ID, etc. I will be using Zend_Form much more often. It is so easy to get forms together quickly and easily.</p>
]]></content:encoded>
			<wfw:commentRss>http://undertakingyou.com/general/first-experience-with-zend-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lazyweb: VNC and RDP client for Android</title>
		<link>http://undertakingyou.com/general/lazyweb-vnc-and-rdp-client-for-android/</link>
		<comments>http://undertakingyou.com/general/lazyweb-vnc-and-rdp-client-for-android/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 06:20:55 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Lazyweb]]></category>

		<guid isPermaLink="false">http://undertakingyou.com/?p=381</guid>
		<description><![CDATA[I am looking for a good VNC and RDP client for android. Preferably this app would cost nothing, but if some money is needed no more than $5.00. Has anyone used anything that has been a really good VNC and RDP client? Is there suggestion of two separate ones, one for each protocol?]]></description>
			<content:encoded><![CDATA[<p>I am looking for a good VNC and RDP client for android. Preferably this app would cost nothing, but if some money is needed no more than $5.00. Has anyone used anything that has been a really good VNC and RDP client? Is there suggestion of two separate ones, one for each protocol?</p>
]]></content:encoded>
			<wfw:commentRss>http://undertakingyou.com/general/lazyweb-vnc-and-rdp-client-for-android/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My experience updating ubuntu servers</title>
		<link>http://undertakingyou.com/general/my-experience-updating-ubuntu-servers/</link>
		<comments>http://undertakingyou.com/general/my-experience-updating-ubuntu-servers/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 14:30:26 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Remote Managment]]></category>
		<category><![CDATA[Server Administration]]></category>

		<guid isPermaLink="false">http://undertakingyou.com/?p=351</guid>
		<description><![CDATA[I had a contract to update three linux servers at various locations for my client. Each server presented a different set of issues. Ubuntu has really made these updates easy with the do-release-upgrade command, part of the update-manager-core package. Running the command does pretty well everything for you, and all you have to do is [...]]]></description>
			<content:encoded><![CDATA[<p>I had a contract to update three linux servers at various locations for my client. Each server presented a different set of issues.</p>
<p>Ubuntu has really made these updates easy with the do-release-upgrade command, part of the update-manager-core package. Running the command does pretty well everything for you, and all you have to do is follow a couple of on-screen instructions.</p>
<p>The first server to update was a public webserver. It sits in the datacenter at Xmission, and houses several websites, a database server, and some dns services. This was on ubuntu 8.04, and I was migrating it to 10.04. I logged in from my house via SSH, ran the do-release-upgrade command and we were off to the races. I rebooted afterwards, and waited about 5 minutes. Sure enough I can even SSH back into the box. Then I realize that the upgrade removed my MTA and Database server as part of cleaning up unused packages. Really seems silly to me that is would do that. Thankfully just installing the database was enough, all the databases and users, etc. were still there. Then a fight with apache to actually read the virtualhosts and serve them right. I don&#8217;t know what I changed, but it worked.</p>
<p>The second was a backup server onsite. It was at ubuntu 9.04, but with two release upgrades I was running strong on the LTS. Everything else just seemed to work, so that was an easy done.</p>
<p>Last machine was an internal webserver, running some intercompany webapps. It also served as a MTA for the office, allowing copy machines to send mail. It has been the real pain. Upgraded remotely via ssh and it never came back after the reboot. When I physically got to the machine to check it out it was saying something I have never seen before. Grub was complaining that it couldn&#8217;t find /dev/mapper/root-device and would drop me to a busybox shell. But I could see /dev/mapper/root-device from the shell. I fought with this for a while. After something like 100 restarts I got the bright idea and just typed &#8216;exit&#8217; at the busybox shell. Guess what!!! The machine started fine! I have no idea what the machines damage is, but from now on I just type exit when restarting the machine. Thankfully the server doesn&#8217;t restart very often, in fact, this update was the first time in 1 1/2 years that I have restarted it. But my trial was not over then. Last large issue was the /etc/network/interfaces file. It kept the old file, but then would not work right. Weirdest symptoms, I could get to the machine fine from 2 of our 5 subnets and the computer could not get to the outside world. I fought with it a while and finally just disabled one of the interfaces and renamed some of the alias&#8217; and away we ran.</p>
<p>I guess the moral of the story is, no server update ever goes smooth. Thankfully I am done for two years.</p>
]]></content:encoded>
			<wfw:commentRss>http://undertakingyou.com/general/my-experience-updating-ubuntu-servers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fixing Windows MBR with Linux LiveCD</title>
		<link>http://undertakingyou.com/general/fixing-windows-mbr-with-linux-livecd/</link>
		<comments>http://undertakingyou.com/general/fixing-windows-mbr-with-linux-livecd/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 14:30:02 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Server Administration]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://undertakingyou.com/?p=336</guid>
		<description><![CDATA[I ran into an interesting snag the other day. I had a hard drive that was not showing up and therefore the system would not boot. I really found this odd, because it showed up to the bios, and all hardware tests said the drive was fine, so I thought I would try and run [...]]]></description>
			<content:encoded><![CDATA[<p>I ran into an interesting snag the other day. I had a hard drive that was not showing up and therefore the system would not boot. I really found this odd, because it showed up to the bios, and all hardware tests said the drive was fine, so I thought I would try and run a FIXMBR on the drive to see if that was the problem. Now, here is where the snag comes up. Normally I would take my Windows installation disk, and once running I would use the &#8216;recovery console&#8217; to run the command and be done with it. But the Windows disk would not start. It would hang on the &#8216;Inspecting your systems hardware configuration.&#8217; So, I needed the Windows Recover Console, to run the command, but I couldn&#8217;t get the console . . . and the whole things crashes down.</p>
<p>I then found <a href="http://www.arsgeek.com/2008/01/15/how-to-fix-your-windows-mbr-with-an-ubuntu-livecd/" target="_blank">http://www.arsgeek.com/2008/01/15/how-to-fix-your-windows-mbr-with-an-ubuntu-livecd/</a> . I thought to myself, how perfect is that? I know that the ubuntu disk will run, and then I can perform the changes I need and away we go.</p>
<p>Some changes since the writing of my reference article. The ms-sys package is no longer in the repositories. If you go to their website you can download source and do a quick make, make-install.</p>
<p>After you have done that the rest is easy peazy. Once again, linux saves the day.</p>
]]></content:encoded>
			<wfw:commentRss>http://undertakingyou.com/general/fixing-windows-mbr-with-linux-livecd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resource Website</title>
		<link>http://undertakingyou.com/general/resource-website/</link>
		<comments>http://undertakingyou.com/general/resource-website/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 14:30:05 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Server Administration]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://undertakingyou.com/?p=345</guid>
		<description><![CDATA[The other day I had an HP laptop with some problems. I sent it back, using their HP care stuff. I was pleasantly surprised with how fast they shipped everything, at their expence, and got everything back to me. But as I started the machine they didn&#8217;t have the wireless driver installed. Using their website [...]]]></description>
			<content:encoded><![CDATA[<p>The other day I had an HP laptop with some problems. I sent it back, using their HP care stuff. I was pleasantly surprised with how fast they shipped everything, at their expence, and got everything back to me. But as I started the machine they didn&#8217;t have the wireless driver installed. Using their website they said that I had to have a broadcom card, and so I installed their provided drivers. Unfortunately, it wasn&#8217;t a broadcom card. They were wrong. All I had was the Vendor ID and Hardware ID.</p>
<p>After some searching I found <a href="http://www.pcidatabase.com/">http://www.pcidatabase.com/</a> . This website can just search by Vendor ID or Hardware ID and give you the information that you need to get stuff fixed. I have used it a couple of times and found it very helpful.</p>
]]></content:encoded>
			<wfw:commentRss>http://undertakingyou.com/general/resource-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My experience installing Debian</title>
		<link>http://undertakingyou.com/general/my-experience-installing-debian/</link>
		<comments>http://undertakingyou.com/general/my-experience-installing-debian/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 14:00:15 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Application Review]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[FOSS Love]]></category>

		<guid isPermaLink="false">http://undertakingyou.com/?p=334</guid>
		<description><![CDATA[A while back I wrote about my trepidation with Lucid. I have used ubuntu linux ever since my first linux introduction 5 years ago. But recently the changes in Lucid and general pain-in-the-butt install issues have had me very scared to install it. I have not updated any of my machines to Lucid but the [...]]]></description>
			<content:encoded><![CDATA[<p>A while back I wrote about my <a title="Trepidation with Lucid" href="http://undertakingyou.com/general/trepidation-with-lucid/" target="_self">trepidation with Lucid</a>. I have used ubuntu linux ever since my first linux introduction 5 years ago. But recently the changes in Lucid and general pain-in-the-butt install issues have had me very scared to install it. I have not updated any of my machines to Lucid but the other machines that I have updated have been less than spectacular.</p>
<p>So, I finally got around to installing Debian on my home desktop machine. I have been holding off because I am lazy. So far everything had worked, but I had a weekend off and away we ran with it.</p>
<p>First, I did have two little issues. I installed lenny and my update to squeeze crashed and burned. Once I used the Testing installer all was well. Also the installer didn&#8217;t like hooking to the wifi even though my wireless driver is included in the kernel as the ath9k driver. Aside from that this was the smoothest install I have ever had. Ever. Of all time.</p>
<p>Some things that I really liked. Once I installed the system I was up to date and running full steam ahead. No need to update and wait and download everything. That was already done as part of the install. Usually there are some configuration things and little get it together issues. Once I associated my bluetooth keyboard and mouse I have not had to do anything else. Everything has just fallen into place.</p>
<p>Also, rolling releases are just an awesome idea. I can stay on testing and I will always have an up to date system. Furthermore, the packages in the repositories are not archaic, but actually quiet up-to-date.</p>
<p>All in all, I am very pleased with my Debian install.</p>
]]></content:encoded>
			<wfw:commentRss>http://undertakingyou.com/general/my-experience-installing-debian/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>My rant on Prop 8</title>
		<link>http://undertakingyou.com/personal/my-rant-on-prop-8/</link>
		<comments>http://undertakingyou.com/personal/my-rant-on-prop-8/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 02:20:27 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://undertakingyou.com/?p=338</guid>
		<description><![CDATA[Let me preface this by saying that this is not a discussion about my stance on California&#8217;s proposition 8, the legislation that defined marriage as a union between one man and one woman. This article is about what I view as the real and much larger issue. Lets first examine what happened in California&#8217;s proposition [...]]]></description>
			<content:encoded><![CDATA[<p>Let me preface this by saying that this is not a discussion about my stance on California&#8217;s proposition 8, the legislation that defined marriage as a union between one man and one woman. This article is about what I view as the real and much larger issue.</p>
<p>Lets first examine what happened in California&#8217;s proposition 8. A proposal was made. Supporters of both sides campaigned by every means that they could to gain even more supporters. Voters turned up at the polls in record numbers to cast their vote on an issue. The votes were counted and like every contest one side lost and didn&#8217;t like it.</p>
<p>Regardless of what side of this issue you are on this is what happened. The issue could have been about changing all roads to be painted white instead of black asphalt. To do white would allow more sun to be reflected and city tempratures to come down. To leave it black would cost less and actually prevent accidents because the sun wouldn&#8217;t reflect in peoples eyes from the road. The cycle is the same, proposal, campaign, voters, and counting. It has been going on for a long time.</p>
<p>This process of rules being established by vote of the people is the foundation of a democratic society.</p>
<p>Now this is where I get scared. Yesterday the federal court overturned California&#8217;s proposition 8 and all I see is people praising this wonderful decision and how awesome it is. I saw it tweeted, on facebook, in newspapers and radio programs. It was even hailed as a huge justice on &#8216;So You Think You Can Dance&#8217; by one of the judges. But what were they praising? The were praising that the democratic process just got overthrown.</p>
<p>Yep, my whole concern with this issue is regardless of how I vote if I don&#8217;t do it the way &#8216;they&#8217; want, my vote will get the ol&#8217; heave-ho and &#8216;they&#8217; will have it however they want. <span style="text-decoration: underline;">It doesn&#8217;t matter the issue folks</span>. It could be about what color to paint the street. Nope, you did it wrong, and we are going to repeal it. Tough crap!</p>
<p>The fact that people are thinking that this overturning of the law is just about marriage is absolutely beyond me. This could be about anything you find important. From school budgets to gun control to whether to go to war. If you don&#8217;t do it the way &#8216;they&#8217; want they will just find a way to get it done anyways. I think that <a title="George Carlin's advice." href="http://bit.ly/d64FDW" target="_blank">George Carlin&#8217;s words say it best</a>. Basically, &#8216;they&#8217; don&#8217;t care about you, &#8216;they&#8217; will do whatever &#8216;they&#8217; want.</p>
<p>What I would rather see, what I am shocked is not happening, what should be done is have everyone on either side of this issue protest with big signs that say &#8220;Stop F***ing America!&#8221;. Later, we can all play part of the democratic process again. Get a new bill proposed that overturns a previous bill, campaign our hearts out, and then have the voters come out. When it as all done, we can count the votes and see where it stands. Until then, I guess a whole bunch of people are really happy being raped over by Uncle Sam and the broken American System.</p>
]]></content:encoded>
			<wfw:commentRss>http://undertakingyou.com/personal/my-rant-on-prop-8/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Lest we forget</title>
		<link>http://undertakingyou.com/general/lest-we-forget/</link>
		<comments>http://undertakingyou.com/general/lest-we-forget/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 22:48:50 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://undertakingyou.com/?p=328</guid>
		<description><![CDATA[I have not worked with a Windows Vista computer in some time. I forgot how bad it sucked. Now, let us qualify sucking. I have never used a computer that has a respectable hardware stat-sheet, and been so dog slow in all of my life. Case and point: Today I am using a Toshiba Laptop [...]]]></description>
			<content:encoded><![CDATA[<p>I have not worked with a Windows Vista computer in some time. I forgot how bad it sucked. Now, let us qualify sucking. I have never used a computer that has a respectable hardware stat-sheet, and been so dog slow in all of my life.</p>
<p>Case and point: Today I am using a Toshiba Laptop that has a Intel Pentium Dual-Core 1.6 GHz processor and 2 GB of ram. Now while these two figures alone do not give us a perfect picture of expected performance any machine with these components should be just fine.</p>
<p>I clicked the start orb, then on control panel. Ten minutes later the control panel came up. Ten minutes. I sat there waiting for just the control panel. I then selected &#8216;Network and sharing&#8217;, another 3 minutes. After it finally opens all looks fine there, I now need to add a printer. Go back to Control Panel. After 7 minutes of just sitting there with that blue donut whirling it finally did something. Yes folks, a flash of a blue screen and the computer restarted.</p>
<p>I wish that I could take this computer and do one of two things, install something else, like my favorite free operating system, or downgrade to Windows XP or upgrade to Windows 7. But alas, it is not my computer. It is the personal computer of a co-worker who needs access to certain things on our network. I won&#8217;t go into the pain of this running windows Vista Home Premium and that connecting even to drives in our active directory is a hack at best. That will be a post for another day.</p>
]]></content:encoded>
			<wfw:commentRss>http://undertakingyou.com/general/lest-we-forget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photos from Bountiful Fireworks</title>
		<link>http://undertakingyou.com/personal/photos-from-bountiful-fireworks/</link>
		<comments>http://undertakingyou.com/personal/photos-from-bountiful-fireworks/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 17:19:27 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://undertakingyou.com/?p=319</guid>
		<description><![CDATA[Below are some photos that I took with my Canon Digital Rebel XTi prior to and during the fireworks on the 23rd. The other photos all ended up blurry because it was dark. But these were pretty good.]]></description>
			<content:encoded><![CDATA[<p>Below are some photos that I took with my Canon Digital Rebel XTi prior to and during the fireworks on the 23rd.</p>
<p><a href="http://undertakingyou.com/wp-content/uploads/2010/07/IMG_3313.jpg"><img class="alignnone size-large wp-image-320" title="Temple at Sunset" src="http://undertakingyou.com/wp-content/uploads/2010/07/IMG_3313-1024x682.jpg" alt="Temple at Sunset" width="717" height="477" /></a></p>
<p><a href="http://undertakingyou.com/wp-content/uploads/2010/07/IMG_3314.jpg"><img class="alignnone size-large wp-image-321" title="Sunset over Bountiful" src="http://undertakingyou.com/wp-content/uploads/2010/07/IMG_3314-1024x682.jpg" alt="Sunset over Bountiful" width="717" height="477" /></a></p>
<p><a href="http://undertakingyou.com/wp-content/uploads/2010/07/IMG_3316.jpg"><img class="alignnone size-large wp-image-322" title="Flag and Sunset" src="http://undertakingyou.com/wp-content/uploads/2010/07/IMG_3316-1024x682.jpg" alt="Flag and Sunset" width="717" height="477" /></a></p>
<p><a href="http://undertakingyou.com/wp-content/uploads/2010/07/IMG_3316.jpg"><a href="http://undertakingyou.com/wp-content/uploads/2010/07/IMG_3345.jpg"><img class="alignnone size-large wp-image-323" title="Fireworks" src="http://undertakingyou.com/wp-content/uploads/2010/07/IMG_3345-1024x682.jpg" alt="Fireworks" width="717" height="477" /></a></a></p>
<p>The other photos all ended up blurry because it was dark. But these were pretty good.</p>
]]></content:encoded>
			<wfw:commentRss>http://undertakingyou.com/personal/photos-from-bountiful-fireworks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Theory: In each chat there are two conversations</title>
		<link>http://undertakingyou.com/general/theory-in-each-chat-there-are-two-conversations/</link>
		<comments>http://undertakingyou.com/general/theory-in-each-chat-there-are-two-conversations/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 14:30:14 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://undertakingyou.com/?p=315</guid>
		<description><![CDATA[So I have this theory that in each chat session that we have with someone there are always two conversations going. Maybe always is a bit broad. Lets say, all of mine, and my guess is most of yours. I find that it is because of this phenomena that most effective communication can break down [...]]]></description>
			<content:encoded><![CDATA[<p>So I have this theory that in each chat session that we have with someone there are always two conversations going. Maybe always is a bit broad. Lets say, all of mine, and my guess is most of yours. I find that it is because of this phenomena that most effective communication can break down in a chat. Largely due to confusion on what the context is of a specific piece of the communication.</p>
<p>Lets look at a completely hypothetical example:</p>
<blockquote><p>A: Hey, hows it going? Haven&#8217;t chatted in a while.<br />
A: Wanted to ask you if you still had that car.<br />
B: Hey, hows it going? Yeah, it has been a while.<br />
B: What are you up to?<br />
B: Yeah I have the car, Why?<br />
A: I am fine, just up to the usual, Work.<br />
A: boss is really on my nerves.<br />
A: Was wanting to know if you wanted to sell the car.<br />
B: Oh man that sucks! I hate my boss. Work is the pits.<br />
B: I wish I could quit my job.<br />
A: Oh man I know. Work is awful.<br />
B: So you like the car? I need the money, I could sell it.<br />
A: I hate it, it is always on my nerves.</p></blockquote>
<p>It is at this point that confusion comes in. By looking right at the chat it looks like person A hates the car and it is always on his nerves. We can look at the two conversations seperatly and see that each is a logical, straightforward conversation.</p>
<blockquote><p>A: Hey, hows it going? Haven&#8217;t chatted in a while.<br />
B: Hey, hows it going? Yeah, it has been a while.<br />
B: What are you up to?<br />
A: I am fine, just up to the usual, Work.<br />
A: boss is really on my nerves.<br />
B: Oh man that sucks! I hate my boss. Work is the pits.<br />
B: I wish I could quit my job.<br />
A: Oh man I know. Work is awful.<br />
A: I hate it, it is always on my nerves.</p></blockquote>
<blockquote><p>A: Wanted to ask you if you still had that car.<br />
B: Yeah I have the car, Why?<br />
A: Was wanting to know if you wanted to sell the car.<br />
B: So you like the car? I need the money, I could sell it.</p></blockquote>
<p>Each is a self contained conversation.</p>
<p>Has anyone else noticed this in their own chats? It seems that I am not totally alone in my findings, there is a <a title="Two Conversations One Chat" href="http://bit.ly/d7oZtB" target="_blank">facebook group about it</a>. It seems too the only way to not have it happen is to wait what seems like an obscenely long time for each question to be asked and answered back.</p>
]]></content:encoded>
			<wfw:commentRss>http://undertakingyou.com/general/theory-in-each-chat-there-are-two-conversations/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
