<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<feed xmlns="http://www.w3.org/2005/Atom">

	<title>Fozzolog</title>
	<link rel="self" href="http://www.fozzilinymoo.org/Fozzolog/atom.xml"/>
	<link href="http://www.fozzilinymoo.org/Fozzolog/"/>
	<id>http://www.fozzilinymoo.org/Fozzolog/atom.xml</id>
	<updated>2010-03-12T20:30:04+00:00</updated>
	<generator uri="http://www.planetplanet.org/">Planet/2.0 +http://www.planetplanet.org</generator>

	<entry>
		<title type="html">Playing tricks in the past</title>
		<link href="http://fozzolog.fozzilinymoo.org/general/2010/02/playing-tricks-in-the-past.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2010:/general//3.1689</id>
		<updated>2010-02-20T08:58:07+00:00</updated>
		<content type="html" xml:lang="en-us">&lt;p&gt;I told this story in the network security class I&amp;#8217;ve been teaching this
semester. They enjoyed it and figured I might as well type it up for the
blog&amp;#8230; you know, so everyone else can consume, ingest, etc. the story.&lt;/p&gt;

&lt;p&gt;It was in 1994, about sixteen years ago, my wife and I started dating.
We had met online, long before eharmony.com or other online dating services
appeared on the Internet. It wasn&amp;#8217;t via an online dating service, we had
both been invited into a kind of virtual party line application on the VMS
computer system at Utah State University. A program called PHONE separated 
the screen into regions, one for each person on the &amp;#8220;call.&amp;#8221; Each participating 
user could see what they and everyone else was typing in real time. What
happened with Christine and I was that we were both involved in a call with
about six people or so and then everyone left except us. The rest is, as
they say, history.&lt;/p&gt;

&lt;p&gt;But that&amp;#8217;s not what this story is about. &lt;/p&gt;

&lt;p&gt;Anyway, as Christine and I started hanging out, she explained that one of
her best friends had accepted a scholarship to study math at a small
private college in the northwest. This school had a student body of around
2,000 students. Where USU had a cluster of DEC Alpha systems running
OpenVMS to serve as a central computing system for around 20,000 students,
faculty, and staff, this small college had a Sun Solaris Unix system that
students logged into to send and receive e-mail and perform other central
computing tasks. &lt;/p&gt;

&lt;p&gt;At the time, my future wife and her friend had figured out a way to
communicate electronically with each other in a manner more interactive
than electronic mail.  Christine knew her friend&amp;#8217;s password on the Solaris
system.  Christine would telnet into her friend&amp;#8217;s account at a prescribed
time and they would chat using a program called &amp;#8216;talk,&amp;#8217; similar to PHONE on
the VMS system.&lt;/p&gt;

&lt;p&gt;I knew Unix pretty well then. I taught Unix system administration courses
for a private training company in Salt Lake City in 1992, had worked as a
systems administrator for a couple of companies, and spent a lot of time
working in Unix labs on campus. When I found out Christine knew her
friend&amp;#8217;s password and had gotten to know her friend a little bit, I
started forming an idea for an incredibly funny, albeit cruel, geeky prank
to pull. &lt;/p&gt;

&lt;p&gt;To understand the impact of this practical joke, you have to understand
how these computer systems were used back then. The World Wide Web was only
barely in use then. The venerable &lt;a href=&quot;http://en.wikipedia.org/wiki/Netscape_Navigator&quot;&gt;Netscape Navigator&lt;/a&gt; Web browser
wasn&amp;#8217;t to be released for several months. E-mail users at USU and at
Christine&amp;#8217;s
friend&amp;#8217;s school used text-based e-mail applications. To access and run
these applications, users would use a telnet application to connect to the
system and then type in the name of the e-mail application (pine, elm, VMS
Mail, etc. Even &lt;a href=&quot;http://www.mutt.org/&quot;&gt;Mutt&lt;/a&gt; &amp;#8212; now a favorite among text-based
mail applications &amp;#8212; wouldn&amp;#8217;t be released until the next year.&lt;/p&gt;

&lt;p&gt;Christine&amp;#8217;s friend, like many at Utah State as well, would go into an
on-campus computer lab, boot up a computer, probably running Microsoft
Windows 3.1 or Mac OS, and then run a telnet client (most at USU used MS-DOS Kermit
because its principal author worked as a professor at USU) to connect to
the system where the e-mail application ran. &lt;/p&gt;

&lt;p&gt;Telnet has long since been replaced with SSH as the preferred way to log
into a remote computer system. Telnet sends all data over the network
unencrypted including all login credentials like username and password.
Anyone who could intercept (or listen to) traffic between one computer and
another could get everything, usernames, passwords, entire e-mail messages,
conversations, you name it. &lt;/p&gt;

&lt;p&gt;When you &lt;em&gt;telnetted&lt;/em&gt; to a remote system, you would generally be prompted
for your username and then your password. If you entered the right
information, you&amp;#8217;d usually then see a command prompt. That&amp;#8217;s where you&amp;#8217;d
type in &amp;#8216;pine&amp;#8217; or whatever program you wanted to run. &lt;/p&gt;

&lt;p&gt;Sometimes, there would be system scripts that ran before you saw the
command prompt. The most common would be one that required you to change
your password at certain intervals. &lt;/p&gt;

&lt;p&gt;Now, back to the joke. I worked for a couple of hours on a shell script
that we could upload to Christine&amp;#8217;s friend&amp;#8217;s account that would get run
automatically the next time she logged in. The script would display
something like this:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;Your password has expired. Please choose a new one.
New Password:
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Now, this is where things started to get a little tricky. A &lt;em&gt;real&lt;/em&gt; password
changing application would not echo the characters typed back when the user typed in a password. My script had
to turn off the behavior that normally echoed characters back. This wasn&amp;#8217;t
that hard. I just had to use the &amp;#8216;stty&amp;#8217; command in the script to turn the
echo mode on and off. &lt;/p&gt;

&lt;p&gt;The script notified Christine&amp;#8217;s friend that her password had expired and
asked that she choose a new one. If I wanted to be really, really evil, I
could have captured her password as she typed it and filed it away
somewhere, but this was just about fun. After she typed in the password,
like any good password changing program, the script asked her to type the
password again.&lt;/p&gt;

&lt;p&gt;Then, the script said her password wasn&amp;#8217;t long enough and prompted her to enter a
longer password.&lt;/p&gt;

&lt;p&gt;Then, it said her password didn&amp;#8217;t contain the necessary assortment of
characters, numbers, and special characters.&lt;/p&gt;

&lt;p&gt;Then, it called Christine&amp;#8217;s friend by name and said, &amp;#8220;Oh come on, you can
do better than THAT!&amp;#8221; and gave her another chance.&lt;/p&gt;

&lt;p&gt;I don&amp;#8217;t remember how many iterations it went through, but it was at least 4
or so. Then, when it was all done, it removed the directive that made it
run when she logged in and deleted itself. &lt;/p&gt;

&lt;p&gt;A few hours later, we caught up with Christine&amp;#8217;s friend and confessed. She
was still frustrated, but began to see the humor in the prank we had pulled
on her. She explained that others in the computer lab were puzzled as to
why she was yelling so much profanity at her computer screen. &lt;/p&gt;

&lt;p&gt;Good times. Good times.&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/general/</uri>
		</author>
		<source>
			<title type="html">general</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/general/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/general//3</id>
			<updated>2010-02-20T09:00:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Tricks to getting Fedora 12 and RPMFusion kmod-nvidia playing nice</title>
		<link href="http://fozzolog.fozzilinymoo.org/tech/2009/12/tricks-to-getting-fedora-12-and-rpmfusion-kmod-nvidia-playing-nice.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/tech//1.1688</id>
		<updated>2009-12-03T23:14:51+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;There have been a couple things about Fedora 12 that haven&amp;#8217;t been as nice
as I would have liked. I finally solved one of them tonight. &lt;/p&gt;

&lt;p&gt;My laptop, a Dell Latitude D830(N), has an NVidia Quadro NVS 140M video
chipset in it. Fedora 12 worked out of the box with the open source
&lt;em&gt;nouveau&lt;/em&gt; driver which is an experimental reverse-engineered driver for
NVidia chipsets. It works pretty well and I probably would have kept using
it if I could get my laptop to hibernate properly. Instead, I could never
get the laptop to come back to life after it went into hibernation. &lt;/p&gt;

&lt;p&gt;Meanwhile, the &lt;a href=&quot;http://www.rpmfusion.org/&quot;&gt;RPMFusion&lt;/a&gt; folks (a popular
third-party repository) usually have the &lt;code&gt;kmod-nvidia&lt;/code&gt; package available to
install which gives you everything you need to run the proprietary NVidia
drivers (Fedora doesn&amp;#8217;t include this because they adhere to an all-open,
non-patent-encumbered package policy). However, the &lt;code&gt;kmod-nvidia&lt;/code&gt; package
wasn&amp;#8217;t available for Fedora 12.&lt;/p&gt;

&lt;p&gt;When it &lt;strong&gt;did&lt;/strong&gt; show up on rpmfusion, there were some caveats. Fedora had
done some work to make the nouveau driver work as seamlessly as possible
and, as a result, made it a little more difficult to install the
proprietary driver. The RPMFusion folks have some &lt;a href=&quot;http://rpmfusion.org/Howto/nVidia&quot;&gt;errata info&lt;/a&gt; on how to get
the proprietary driver working. I&amp;#8217;ll summarize the process here since it&amp;#8217;s
a little tricky to execute and understand.&lt;/p&gt;

&lt;p&gt;Before you do anything the RPMFusion information says to do, you should
obviously install the &lt;code&gt;kmod-nvidia&lt;/code&gt; package. Then, run:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;nvidia-system-config enable
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;(I usually do this with &lt;code&gt;sudo&lt;/code&gt;.)&lt;/p&gt;

&lt;p&gt;Then, reboot into runlevel 3 and proceed with the commands RPMFusion&amp;#8217;s page
recommends.&lt;/p&gt;

&lt;p&gt;The first commands the RPMFusion info indicates should be run are these:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;mv /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r)-nouveau.img
dracut /boot/initramfs-$(uname -r).img $(uname -r)
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;The &lt;code&gt;initramfs-blahblah.img&lt;/code&gt; file is a replacement for the old
&lt;code&gt;initrd-blahblah.img&lt;/code&gt; file. So, we&amp;#8217;re making a backup of the original
initiam ramdisk image file for the running kernel and adding &lt;code&gt;nouveau&lt;/code&gt; to
its name so we know this is the initial ramdisk image that contains the
nouveau driver (Fedora added the driver to the initial ramdisk so the
graphical bootloader can take advantage of the NVidia chipset&amp;#8217;s
capabilities). &lt;/p&gt;

&lt;p&gt;Then, running the &lt;code&gt;dracut&lt;/code&gt; command creates a new initial ramdisk image for
the running kernel. The &lt;code&gt;dracut&lt;/code&gt; command replaces the &lt;code&gt;mkinitrd&lt;/code&gt; that has
been used traditionally. For more information about &lt;code&gt;dracut&lt;/code&gt; check out the
&lt;a href=&quot;http://fedoraproject.org/wiki/Dracut&quot;&gt;Fedora Project&amp;#8217;s wiki page on dracut&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;Finally, run the &lt;code&gt;setsebool&lt;/code&gt; command RPMFusion&amp;#8217;s page mentions:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;setsebool -P allow_execstack on
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;If you&amp;#8217;re like me, however, you probably have SELinux set to &lt;em&gt;permissive&lt;/em&gt;
because RPMFusion&amp;#8217;s nonfree codec packages have already broken some SELinux
stuff. Hopefully that will be fixed soon.&lt;/p&gt;

&lt;p&gt;Then, reboot again into runlevel 5 and enjoy.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;UPDATE: Read below!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Soon after getting &lt;code&gt;kmod-nvidia&lt;/code&gt; installed, I noticed some weird issues in KDE. Whenever I would press &lt;code&gt;ALT-F2&lt;/code&gt; to run a command, the UI would freeze for about 10 seconds. I did some searching and found this was &lt;a href=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=533620&quot;&gt;a reported bug&lt;/a&gt;. I&amp;#8217;m guessing a forthcoming &lt;code&gt;xorg-x11-server-*&lt;/code&gt; package update will include this, but in the meantime, I installed new &lt;code&gt;xorg-x11-server-Xorg&lt;/code&gt; and &lt;code&gt;xorg-x11-server-common&lt;/code&gt; packages from &lt;a href=&quot;http://koji.fedoraproject.org/koji/buildinfo?buildID=142860&quot;&gt;this 1.7.1-12 Koji build&lt;/a&gt;. Pressing &lt;code&gt;ALT+F2&lt;/code&gt; does not freeze the system anymore. &lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/tech/</uri>
		</author>
		<source>
			<title type="html">tech</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/tech/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/tech//1</id>
			<updated>2009-12-03T23:15:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Ezra Taft Benson on free market philosophy</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/12/ezra-taft-benson-on-free-market-philosophy.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1687</id>
		<updated>2009-12-01T16:28:07+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;Another excerpt from &lt;em&gt;This Nation Shall Endure&lt;/em&gt; by the late Ezra Taft Benson, former U.S. Secretary of Agriculture and President of the Church Of Jesus Christ of Latter-Day Saints.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;The principles behind our American free market philosophy can be reduced to
  a rather simple formula. Here it is:&lt;/p&gt;
  
  &lt;ol&gt;
  &lt;li&gt;&lt;p&gt;Economic security for all is impossible without widespread abundance.&lt;/p&gt;&lt;/li&gt;
  &lt;li&gt;&lt;p&gt;Abundance is impossible without industrious and efficient production.&lt;/p&gt;&lt;/li&gt;
  &lt;li&gt;&lt;p&gt;Such production is impossible without energetic, willing, and eager
  labor.&lt;/p&gt;&lt;/li&gt;
  &lt;li&gt;&lt;p&gt;Such labor is not possible without incentive.&lt;/p&gt;&lt;/li&gt;
  &lt;li&gt;&lt;p&gt;Of all forms of incentive, the freedom to attain a reward for one&amp;#8217;s
  labors if the most sustaining for most people. Sometimes called the profit
  motive, it is simply the rights to plan and to earn and to enjoy the fruits
  of one&amp;#8217;s labor.&lt;/p&gt;&lt;/li&gt;
  &lt;li&gt;&lt;p&gt;This profit motive diminishes as government controls, regulations, and
  taxes increase to deny the fruits of success to those who produce.&lt;/p&gt;&lt;/li&gt;
  &lt;li&gt;&lt;p&gt;Therefore, any attempt through government intervention to redistribute
  the material rewards of labor can only result in the eventual destruction of
  the productive base of society, without which real abundance and security
  for more than the ruling elite are quite impossible.&lt;/p&gt;&lt;/li&gt;
  &lt;/ol&gt;
&lt;/blockquote&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Ezra Taft Benson quote</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/11/ezra-taft-benson-quote.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1685</id>
		<updated>2009-11-30T07:28:05+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;I&amp;#8217;m reading this book right now and ran across this great quote tonight. &lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&amp;#8220;If reference is made continually to weaknesses of the private enterprise
  system without any effort to point out its virtues and the comparative
  fruits of this and other systems, the tendency in this country will be to
  demand that the government take over more and more of the economic and
  social responsibilities and make more of the decisions for the people.
  This can result in but one thing: slavery of the individual to the state.
  This seems to be the trend in the world today. The issue is whether the
  individual exists for the state or the state for the individual.&amp;#8221;&lt;/p&gt;
  
  &lt;p&gt;&amp;#8212; Ezra Taft Benson, &lt;em&gt;This Nation Shall Endure&lt;/em&gt;, 1977&lt;/p&gt;
&lt;/blockquote&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Thomas Jefferson quote</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/11/thomas-jefferson-quote.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1686</id>
		<updated>2009-11-30T07:14:19+00:00</updated>
		<content type="html" xml:lang="en">&lt;blockquote&gt;
  &lt;p&gt;&amp;#8220;&amp;#8230; with all these blessings, what more is necessary to make us a happy and prosperous people? Still one thing more, fellow citizens&amp;#8212;a wise and frugal government, which shall restrain men from injuring one another, which shall leave them otherwise free to regulate their own pursuits or industry and improvement, and shall not take from the mouth of labor the bread it has earned.&amp;#8221;&lt;/p&gt;
  
  &lt;p&gt;&amp;#8212; Thomas Jefferson, in his first inaugural address, 1801&lt;/p&gt;
&lt;/blockquote&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Thoughts: Government healthcare for the uninsurable?</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/11/thoughts-government-healthcare-for-the-uninsurable.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1684</id>
		<updated>2009-11-29T09:09:51+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;There has been a whole lot of discussion both online and offline about
healthcare. Specifically, about government&amp;#8217;s role in healthcare and whether
that role should be enlarged, redefined, etc. &lt;/p&gt;

&lt;p&gt;Personally, I&amp;#8217;d like to see the federal government get out of healthcare
altogether. If things were done my way, there would no longer be any
Medicare or Medicaid. &lt;/p&gt;

&lt;p&gt;&amp;#8220;But, Doran, what about all those people who depend on these programs for
their healthcare?! Do you just want them to wither away and die?!&amp;#8221;&lt;/p&gt;

&lt;p&gt;No, but I have something I think many who are pushing for more government
involvement in citizens&amp;#8217; healthcare do not have: Faith. I have faith in the
people of America to provide help to those who really need it. I have faith
in the free market to find healthcare solutions. &lt;/p&gt;

&lt;p&gt;The U.S. is, by far, the most giving population of any country on Earth. In
the absence of government run, mandated, etc. healthcare, I believe the
people will step forward. &lt;/p&gt;

&lt;p&gt;I have a friend who recently received a kidney transplant and has since
relied on a regular dose of anti-rejection medications and regular doctor
visits. He also recently was laid off from his job and is now paying for
C.O.B.R.A. coverage to maintain the health insurance benefits he had when
he was employed.&lt;/p&gt;

&lt;p&gt;My friend can not go out and buy individual or family health insurance
coverage outside of an employer group because his condition places him in a
precarious position called &amp;#8220;uninsurable.&amp;#8221; Because I am an insulin-dependent
diabetic, I am also in a similar position. To my knowledge, no health
insurance company will provide coverage for me outside of an employer group
either, regardless of how well I control my diabetes and lifestyle. &lt;/p&gt;

&lt;p&gt;That&amp;#8217;s frustrating, but I know any program provided by the bureaucracy of
the federal government will have the following attributes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Plan will provide a minimum baseline of coverage with few options&lt;/li&gt;
&lt;li&gt;Plan will result in my treatment being a paperwork nightmare&lt;/li&gt;
&lt;li&gt;Plan will restrict what medications and/or treatments are available to me regardless of doctor recommendations&lt;/li&gt;
&lt;li&gt;Plan may restrict what doctors I may consult&lt;/li&gt;
&lt;li&gt;Play may require ridiculous amounts of my time to see a medical professional and/or fulfill my obligations in seeing that bills are paid&lt;/li&gt;
&lt;li&gt;Plan will suffer from corruption, mismanagement and fraud&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I know these things because this is par for the course for any kind of
service provided by the federal government.&lt;/p&gt;

&lt;p&gt;Now, imagine I am in a situation like my friend could be in if he does not
soon find employment with a company that offers health insurance
benefits. Imagine, also, that our government offers no
assistance to people who find themselves in this position. Who would I turn
to? &lt;/p&gt;

&lt;p&gt;I would probably first turn to my church. My church has proven itself
invaluable to many people in need for food, financial assistance, and other
needs.  Historically, this is one of the things churches have done in the
past. I&amp;#8217;m not familiar with people going to their church leaders to help
with healthcare needs, but that could be because the government, in one
form or another, has become the de facto first place people turn. &lt;/p&gt;

&lt;p&gt;I am confident that assistance provided by my church through a church
leader familiar with my specific issues and background would provide more
than a minimum baseline of coverage and would provide more options that
would benefit me. It certainly would not be a &amp;#8220;Cadillac plan,&amp;#8221; but I&amp;#8217;m
confident that if my doctor recommended a procedure or a medication, I
would not be told, &amp;#8220;We&amp;#8217;re sorry, that is not covered.&amp;#8221;&lt;/p&gt;

&lt;p&gt;I am also confident there would be a common sense amount of paperwork and I
would definitely not be restricted in what doctor, hospital, etc. I see.
And, most of all, I have an order of magnitude more confidence in my
church&amp;#8217;s ability to run an assistance program that isn&amp;#8217;t plagued with
corruption, mismanagement, or fraud.&lt;/p&gt;

&lt;p&gt;If churches were not sufficient to fill the void, I believe other
non-profit and charity organizations would appear to fulfill the need. &lt;/p&gt;

&lt;p&gt;One such organization &amp;#8212; &lt;a href=&quot;http://www.volunteersinmedicine.org/&quot;&gt;Volunteers in Medicine&lt;/a&gt; &amp;#8212; 
was mentioned in a &lt;a href=&quot;http://www.lds.org/conference/talk/display/0,5232,23-1-1117-27,00.html&quot;&gt;recent General Conference talk&lt;/a&gt;
by Thomas S. Monson, the president of the church I belong to.  In this
talk, President Monson describes the organization as follows:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;[Volunteers in Medicine] gives retired medical personnel a chance to volunteer at free clinics serving the working uninsured. Dr. McConnell said his leisure time since he retired has &amp;#8220;evaporated into 60-hour weeks of unpaid work, but [his] energy level has increased and there is a satisfaction in [his] life that wasn&amp;#8217;t there before.&amp;#8221; He made this statement: &amp;#8220;In one of those paradoxes of life, I have benefited more from Volunteers in Medicine than my patients have.&amp;#8221; There are now over 70 such clinics across the United States.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Prior to the &amp;#8220;Progressive Invasion&amp;#8221; of the early 20th century, the people
of the United States of America never thought of looking to the federal
government to aid them in their individual or community concerns. Churches
and other organizations ran all kinds of programs for people that would
later be handled by government programs. There was a time when churches ran
hospitals, schools, and more. &lt;/p&gt;

&lt;p&gt;Some people have traced the first progressive shift in federal policy to
the Great Mississippi Flood of 1927 when then commerce secretary Herbert
Hoover convinced others in the Coolidge administration that the federal
government needed to step in and provide on-the-ground assistance to those
displaced and otherwise affected by the flood. Even then, Hoover wasn&amp;#8217;t
spending federal money as much as he was directing the relief effort at a
federal level &amp;#8212; telling people how things should be done. &lt;/p&gt;

&lt;p&gt;This action got Hoover elected as the 31st president of the United States
and under his administration, the country experienced the great stock
market crash of late October 1929 that began an economic recession that
grew to become the Great Depression and endured through Hoover&amp;#8217;s presidency
and two terms of Franklin Roosevelt&amp;#8217;s presidency. &lt;/p&gt;

&lt;p&gt;Hoover and Roosevelt both implemented federal programs to spend taxpayer
money to provide assistance to those afflicted by the lackluster economy.
The merits, effectiveness, and end result of these programs is still
debated today, but some believe &amp;#8212; and I do &amp;#8212; that these programs only
lengthened and amplified the recession that began with the crash of 1929
and made it &amp;#8220;Great&amp;#8221; while other countries&amp;#8217; economies participating in the
global marketplace at that time recovered within a couple of years.&lt;/p&gt;

&lt;p&gt;Healthcare dictated, provided by, or otherwise governed by the government
is &lt;em&gt;perversion of the law&lt;/em&gt; as dictated by &lt;a href=&quot;http://en.wikipedia.org/wiki/Fr%C3%A9d%C3%A9ric_Bastiat&quot;&gt;Frederick
Bastiat&lt;/a&gt;, an early
19th century French political economist whose essay &lt;a href=&quot;http://bastiat.org/en/the_law.html&quot;&gt;&amp;#8220;The Law&amp;#8221;&lt;/a&gt; explains.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Each of us has a natural right &amp;#8212; from God &amp;#8212; to defend his person, his liberty, and his property. These are the three basic requirements of life, and the preservation of any one of them is completely dependent upon the preservation of the other two. For what are our faculties but the extension of our individuality? And what is property but an extension of our faculties? If every person has the right to defend even by force &amp;#8212; his person, his liberty, and his property, then it follows that a group of men have the right to organize and support a common force to protect these rights constantly. Thus the principle of collective right &amp;#8212; its reason for existing, its lawfulness &amp;#8212; is based on individual right. And the common force that protects this collective right cannot logically have any other purpose or any other mission than that for which it acts as a substitute. Thus, since an individual cannot lawfully use force against the person, liberty, or property of another individual, then the common force &amp;#8212; for the same reason &amp;#8212; cannot lawfully be used to destroy the person, liberty, or property of individuals or groups.  &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;In the above excerpt, Bastiat defines the fundamental purpose of
government. It is to defend and uphold our rights as individuals. It is to
act on our behalf where we can not. It is &lt;strong&gt;not&lt;/strong&gt; to interfere in our
rights, something our current system of government increasingly does!&lt;/p&gt;

&lt;p&gt;Bastiat continues:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Under such an administration, everyone would understand that he possessed all the privileges as well as all the responsibilities of his existence. No one would have any argument with government, provided that his person was respected, his labor was free, and the fruits of his labor were protected against all unjust attack. When successful, we would not have to thank the state for our success. And, conversely, when unsuccessful, we would no more think of blaming the state for our misfortune than would the farmers blame the state because of hail or frost. The state would be felt only by the invaluable blessings of safety provided by this concept of government.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Bastiat later writes about the difficulty of reconciling this definition of
the proper role of government with one that does things to &lt;em&gt;help&lt;/em&gt; its
citizens.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Here I encounter the most popular fallacy of our times. It is not considered sufficient that the law should be just; it must be philanthropic. Nor is it sufficient that the law should guarantee to every citizen the free and inoffensive use of his faculties for physical, intellectual, and moral self-improvement. Instead, it is demanded that the law should directly extend welfare, education, and morality throughout the nation.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;But the government&amp;#8217;s participation in this socialism, Bastiat explains, is
&amp;#8220;legal plunder&amp;#8221; and infringes on the citizens&amp;#8217; ability to be FREE!&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;This is the seductive lure of socialism. And I repeat again: These two uses of the law are in direct contradiction to each other. We must choose between them. A citizen cannot at the same time be free and not free. &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Patrick Krey, an attorney in New York, wrote a piece titled 
&lt;a href=&quot;http://www.jbs.org/jbs-news-feed/4777&quot;&gt;&amp;#8220;Bastiat, Barack and Bail-Outs&amp;#8221;&lt;/a&gt; for the &lt;a href=&quot;http://www.jbs.org/&quot;&gt;John Birch
Society site&lt;/a&gt; this last April talking about this very concept as it relates to
our current administration. &lt;/p&gt;

&lt;p&gt;How about some relevant quotes from founding fathers? Here are a couple from Thomas
Jefferson:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;The democracy will cease to exist when you take away from those who are
  willing to work and give to those who would not.&lt;/p&gt;
  
  &lt;p&gt;I predict future happiness for Americans if they can prevent the government
  from wasting the labors of the people under the pretense of taking care of them.&lt;/p&gt;
  
  &lt;p&gt;My reading of history convinces me that most bad government results from too much government.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;John Adams:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Government is instituted for the common good; for the protection, safety, prosperity, and happiness of the people; and not for profit, honor, or private interest of any one man, family, or class of men; therefore, the people alone have an incontestable, unalienable, and indefeasible right to institute government; and to reform, alter, or totally change the same, when their protection, safety, prosperity, and happiness require it.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;And don&amp;#8217;t get me started with Benjamin Franklin!&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Book Review: Masterminds of Programming</title>
		<link href="http://fozzolog.fozzilinymoo.org/tech/2009/11/book-review-masterminds-of-programming.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/tech//1.1680</id>
		<updated>2009-11-27T21:37:10+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;&lt;img src=&quot;http://broadcast.oreilly.com/2009/04/02/9780596515171_148.jpg&quot; align=&quot;left&quot; width=&quot;148&quot; height=&quot;195&quot; alt=&quot;Masterminds of Programming&quot; title=&quot;Masterminds of Programming&quot; vspace=&quot;5&quot; hspace=&quot;5&quot; /&gt;&lt;em&gt;Masterminds of Programming&lt;/em&gt; by Federico Bioancuzzi and Shane Warden and published by O&amp;#8217;Reilly and Associates is a
large (480 pages), dense book packed full of exposition about language
design, software engineering practices, software development lifecycle
methodologies, Computer Science curricula, and unique insights into
computer and computation history. &lt;/p&gt;

&lt;p&gt;The format of the book is straightforward. Each chapter is dedicated to a
programming language and contains a series of questions by the authors and
responses from designers and creators of the language being highlighted. &lt;/p&gt;

&lt;p&gt;I expected the chapters on languages I was familiar with to be the most
interesting and those I was not familiar with to be the least interesting
but my experience was the opposite. Chapters highlighting languages that I
have had no exposure to such as Forth, APL, ML, and Lua were full of
intriguing information, especially languages that were designed in the
1960s or 1950s. It&amp;#8217;s fascinating learning about how these languages came to
be given the relatively restrictive hardware they were developed with. &lt;/p&gt;

&lt;p&gt;Other languages highlighted in the book include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Python&lt;/li&gt;
&lt;li&gt;Perl&lt;/li&gt;
&lt;li&gt;Java&lt;/li&gt;
&lt;li&gt;C++&lt;/li&gt;
&lt;li&gt;C#&lt;/li&gt;
&lt;li&gt;Objective-C&lt;/li&gt;
&lt;li&gt;UML&lt;/li&gt;
&lt;li&gt;AWK&lt;/li&gt;
&lt;li&gt;Postscript&lt;/li&gt;
&lt;li&gt;Eifel&lt;/li&gt;
&lt;li&gt;Haskel&lt;/li&gt;
&lt;li&gt;BASIC&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The book is just overflowing with powerful quotes that carry substantial
meaning to developers, language designers, and managers. Here are a few
that stood out to me. &lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&amp;#8220;Whenever I hear people boasting of millions of lines of code, I know
  they have grieviously midunderstood their problem. There are no
  contemporary problems requiring millions of lines of code. Instead, there
  are careless programmers, bad managers, or impossible requirements for
  compatibility.&amp;#8221; &amp;#8212;Chuck Moore in the &lt;em&gt;Forth&lt;/em&gt; chapter&lt;/p&gt;
  
  &lt;p&gt;&amp;#8220;As processors continue to get faster and memory capacities rise, it&amp;#8217;s
  easier to do quick experiments and even write production code in
  interpreted languages (like AWK) that would not have been feasible a few
  decades ago. All of this is a great win.&lt;/p&gt;
  
  &lt;p&gt;&amp;#8220;At the same time, the ready availability of resources often leads to
  very bloated designs and implementations, systems that could be faster
  and easier to use if a bit more restraint had gone into their design.
  Modern operating systems certainly have this problem; it seems to take
  longer and longer for my machines to boot, even though, thanks to Moore&amp;#8217;s
  Law, they are noticeably faster than the previous ones. All that software
  is slowing me down.&amp;#8221; &amp;#8212;Brian Kernighan in the &lt;em&gt;AWK&lt;/em&gt; chapter.&lt;/p&gt;
  
  &lt;p&gt;&amp;#8220;Software engineering is in many ways a very pathetic field, because so
  much of it is anecdotal and based on people&amp;#8217;s judgements or even people&amp;#8217;s
  aesthetic judgements.&amp;#8221; &amp;#8212; Peter Weinberger in the &lt;em&gt;AWK&lt;/em&gt; chapter&lt;/p&gt;
  
  &lt;p&gt;&amp;#8220;The software business is one of the few places we teach people to write
  before we teach them to read. That&amp;#8217;s really a mistake.&amp;#8221; &amp;#8212; Tom Love in
  the &lt;em&gt;Objective-C&lt;/em&gt; chapter&lt;/p&gt;
  
  &lt;p&gt;&amp;#8220;What do you think the chances are that Microsoft applications get slower
  and slower because they haven&amp;#8217;t managed memory properly? Have you ever
  met a three-year-old Microsoft operating system that you wanted to use? I
  actually operate with a laptop that has a Microsoft-free zone. It&amp;#8217;s
  amazing how much more productive I am than other people sitting in the
  same room with Microsoft computers. My computer is on, and I&amp;#8217;ve done my
  work, and I&amp;#8217;ve closed it down before they&amp;#8217;ve gotten to their first Excel
  spreadsheet.&amp;#8221; &amp;#8212; Tom Love in the &lt;em&gt;Objective-C&lt;/em&gt; chapter.&lt;/p&gt;
  
  &lt;p&gt;&amp;#8220;If you study gold or lead from day to day, you can measure the
  properties and employ scientific methods to study them. With software,
  there is none of that.&amp;#8221; &amp;#8212; Brad Cox in the &lt;em&gt;Objective-C&lt;/em&gt; chapter.&lt;/p&gt;
  
  &lt;p&gt;&amp;#8220;C# basically took everything, although they oddly decided to take away
  the security and reliability stuff by adding all these sorts of unsafe
  pointers, which strikes me at grotesquely stupid, but people have used
  most of the features of Java somewhere.&amp;#8221; &amp;#8212; James Gosling in the Java
  chapter responding to the question related to C# being inspired by Java.&lt;/p&gt;
  
  &lt;p&gt;&amp;#8220;I think architecture is very important, but I am cautious about labeling
  individuals as architects, for many reasons. Many times I have seen
  companies with a team of architects that they send to other organizations
  to work on projects. That may be fine if they work inside a particular
  project, but companies such as big banks usually have a group of
  enterprise architects that sit and draw representations of the
  architecture. Then they throw this over the wall to the developers. The
  developers just ask themselves: &amp;#8216;What is this? It&amp;#8217;s useless.&amp;#8217; In many
  companies, enterprise architects sit in an ivory tower without doing
  anything useful.&amp;#8221; &amp;#8212; Ivar Jacobson in the &lt;em&gt;UML&lt;/em&gt; chapter&lt;/p&gt;
  
  &lt;p&gt;&amp;#8220;Developing software is not rocket science. Look at the 5-10 million
  people who call themselves software developers. Very few of them really
  do anything creative of fundamentally new. Unfortunately, the outside
  world thinks that programmers are creative and brilliant people, and
  that&amp;#8217;s far from reality.&amp;#8221; &amp;#8212; Ivar Jacobson in the &lt;em&gt;UML&lt;/em&gt; chapter.&lt;/p&gt;
  
  &lt;p&gt;&amp;#8220;I rarely have met a programmer who understands the principles of
  computational complexity and puts them into practice. Instead they fuss
  with all kinds of pointless suboptimizations that are &amp;#8216;pennywise and
  pound foolish&amp;#8230; I think the most important skill in computing (as in
  physics and other creative fields) is the ability for abstraction.&amp;#8221;
  &amp;#8212;James Rumbaugh in the &lt;em&gt;UML&lt;/em&gt; chapter.&lt;/p&gt;
  
  &lt;p&gt;&amp;#8220;I have found over my career, whether it be researchers or engineers,
  that in addition to the sort of intellectual skills that they manifest,
  if they are people who finish what they set out to do, they tend to be
  much more productive and have a much larger impact.&amp;#8221; &amp;#8212; Charles Geschke
  in the &lt;em&gt;Postscript&lt;/em&gt; chapter.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;These quotes are just scratching the surface. &lt;/p&gt;

&lt;p&gt;Many of the interviews discuss history of computer science and computation
theory. For example, Charles Geschke and John Warnock gave answers in the
&lt;em&gt;Postscript&lt;/em&gt; chapter detailing how Xerox PARC came into existence out of
ARPA&amp;#8217;s emphasis on digital communications which was the result of thinking
within the Eisenhower and Kennedy administrations. &lt;/p&gt;

&lt;p&gt;Because of the simple, straightforward format of this book, there is
definitely room for improvement.  For example, readers unfamiliar with
certain languages would find it immensely useful to see examples of the
language in use. One thought is that each chapter could start with a code
excerpt showing how a programmer might use the highlighted language to
solve a generic problem. Readers could then see, in code, how each language
differs in their approach to the same problem. &lt;/p&gt;

&lt;p&gt;Each chapter is preceded by one paragraph description of the language which
may contain brief history of the language&amp;#8217;s history. This could definitely
be expanded upon. This book is big already and I don&amp;#8217;t think O&amp;#8217;Reilly&amp;#8217;s
goal is to make it a computer language text book, but it would be useful if
each chapter started with 2-4 pages of introductory abstract about the
language. &lt;/p&gt;

&lt;p&gt;The authors have placed biographical information about each of the
contributing interviewees in a Contributors appendix near the end of the
book, but it would be more helpful to the reader if this information
appeared at the beginning of each chapter instead.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Masterminds of Programming&lt;/em&gt; is available at a suggested price of $39.99. I
rate it at four and a half stars. &lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/tech/</uri>
		</author>
		<source>
			<title type="html">tech</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/tech/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/tech//1</id>
			<updated>2009-12-03T23:15:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">The search for a good Linux e-mail client for a typical user</title>
		<link href="http://fozzolog.fozzilinymoo.org/tech/2009/11/the-search-for-a-good-linux-e-mail-client-for-a-typical-user.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/tech//1.1683</id>
		<updated>2009-11-27T21:23:34+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;I&amp;#8217;m almost a text-based e-mail purist. I used to use
&lt;a href=&quot;http://www.mutt.org/&quot;&gt;Mutt&lt;/a&gt; as my primary e-mail client application, but
decided to go with a graphical client such as &lt;a href=&quot;http://www.mozillamessaging.com/thunderbird/&quot;&gt;Mozilla
Thunderbird&lt;/a&gt; or
&lt;a href=&quot;http://kontact.kde.org/kmail/&quot;&gt;KMail&lt;/a&gt; so that I could at least effectively
&lt;em&gt;read&lt;/em&gt; HTML-formatted messages. &lt;/p&gt;

&lt;p&gt;I&amp;#8217;ve been happy with KMail. I&amp;#8217;ve had it configured to prefer text-based e-mail
and aside from the fact I don&amp;#8217;t use my preferred text editor (&lt;code&gt;vim&lt;/code&gt;) inside it, it&amp;#8217;s been 
a good e-mail client. Now, my dad is a more typical e-mail user. While he
probably doesn&amp;#8217;t care that much about composing original HTML messages, he
does receive a lot of them that he wants to forward onto other people that he
feels may be interested. He&amp;#8217;s on lots of political and family mailing lists
that swap HTML messages complete with embedded images, etc. &lt;/p&gt;

&lt;p&gt;He has been using Thunderbird at his home and KMail (an old version running on
a Fedora Core 6 desktop) at his office. He mentioned to me that KMail runs
noticeably faster on his work system than Thunderbird does on his home system.
I suggested that we could standardize him on KMail and upgrade his office
desktop to a more recent version of Fedora Linux. &lt;/p&gt;

&lt;p&gt;Things got more interesting when Thunderbird recently got updated on his home
system in a package update to version 3.0b4. The &lt;em&gt;Smart Folders&lt;/em&gt; &amp;#8220;feature&amp;#8221;
threw both of us for a loop. It combines multiple Inbox, Sent, and other IMAP
folders into single virtual folders containing an aggregate of messages from
each corresponding folder. I really have no idea who would want this feature.
My parents each have their own e-mail accounts and I had Thunderbird
configured so they could check mail for both accounts. The new version of
Thunderbird combines both inboxes into one virtual &amp;#8220;Smart&amp;#8221; folder and
subsequently confused the heck out of my father. &lt;/p&gt;

&lt;p&gt;I figured out how to disable the &amp;#8220;smart folder&amp;#8221; behavior (View-&gt;Folders-&gt;All),
but Thunderbird was still hiding other IMAP folders like &lt;em&gt;Sent&lt;/em&gt; and &lt;em&gt;Trash&lt;/em&gt;
that my parents often need to access messages in. &lt;/p&gt;

&lt;p&gt;So, KMail. KMail works great for almost all things, but my father noticed
right away when he tried to forward an HTML message with embedded images that
KMail wasn&amp;#8217;t letting do what he was used to doing: Editing the forwarded
message to remove the annoying gazillions of e-mail addresses the original
message(s) were addressed to. &lt;/p&gt;

&lt;p&gt;KMail has two methods of forwarding a message: First, you can forward a
message as an attachment. This preserves everything about the original
message, but KMail doesn&amp;#8217;t let you edit anything within the attached message.
Alternatively, you may forward a message &amp;#8220;inline&amp;#8221;. This lets you edit the
message, but it only gives you the text portion of the message to edit and
completely omits the HTML attachment altogether. &lt;/p&gt;

&lt;p&gt;I did some research online to see if there was a way to get the desired 
functionality out of KMail, but it doesn&amp;#8217;t look like it&amp;#8217;s possible. If it does
ever happen, it&amp;#8217;s a couple versions out at least. It may never happen because
it seems there are voices within the KMail community that feel KMail should
never take on these types of features because it risks KMail becoming &amp;#8220;another
Outlook/Thundebird clone.&amp;#8221;&lt;/p&gt;

&lt;p&gt;Has anyone found other solutions to this problem for a Linux user?&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/tech/</uri>
		</author>
		<source>
			<title type="html">tech</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/tech/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/tech//1</id>
			<updated>2009-12-03T23:15:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Abraham Lincoln quote</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/11/abraham-lincoln-quote.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1682</id>
		<updated>2009-11-27T19:11:44+00:00</updated>
		<content type="html" xml:lang="en">&lt;blockquote&gt;
  &lt;p&gt;&amp;#8220;We have forgotten God. We have forgotten the gracious hand which preserved us in peace, and multiplied and enriched and strengthened us; and we have vainly imagined, in the deceitfulness of our hearts, that all these blessing were produced by some superior wisdom and virtue of our own. Intoxicated with unbroken success, we have become too self-sufficient to feel the necessity of redeeming and preserving grace, too proud to pray to the God that makes us.&amp;#8221;&lt;/p&gt;
  
  &lt;p&gt;&amp;#8212; Abraham Lincoln, Proclamation for A National Fast Day, March 30, 1863&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Hear, hear.&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Fix for mobile broadband (aircard) connection problem in Fedora 12</title>
		<link href="http://fozzolog.fozzilinymoo.org/tech/2009/11/fix-for-mobile-broadband-aircard-connection-problem-in-fedora-12.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/tech//1.1681</id>
		<updated>2009-11-27T19:04:06+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;I recently encountered a problem when I plugged in my Sprint USB aircard (A Sierra Wireless USB 598) into my laptop running Fedora 12. When I clicked on the NetworkManager applet running in my system tray and selected the mobile broadband (CDMA) device to connect to, it appeared to connect and, then shortly after, disconnect. &lt;/p&gt;

&lt;p&gt;I watched the messages sent to the &lt;code&gt;/var/log/messages&lt;/code&gt; file to see what was going on and sure enough, NetworkManager was successfully making a PPP connection to Sprint&amp;#8217;s service and then PPP was terminated and the connection was closed. &lt;/p&gt;

&lt;p&gt;I did some quick searching online but didn&amp;#8217;t find anything definite about this. There were lots of links to the Fedora 12 release notes which claimed Fedora 12 had better support for mobile broadband cards than previous releases. That made me wonder if their improvements were actually breaking things for me. &lt;/p&gt;

&lt;p&gt;I decided to explore the options dialogs. I right-clicked on the NetworkManager applet and chose &lt;code&gt;Edit connections...&lt;/code&gt;, selected the &lt;code&gt;Mobile Broadband&lt;/code&gt; tab, selected my adapter and clicked &lt;code&gt;Edit&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Under the &lt;code&gt;PPP Settings&lt;/code&gt; tab there is a button labeled &lt;code&gt;Configure methods&lt;/code&gt; in the &lt;code&gt;Authentication&lt;/code&gt; section. This lets you choose which authentication methods PPP should try. A list of checkboxes next to possible methods appears with &lt;code&gt;EAP&lt;/code&gt;, &lt;code&gt;PAP&lt;/code&gt;, &lt;code&gt;CHAP&lt;/code&gt;, &lt;code&gt;MSCHAP&lt;/code&gt;, and &lt;code&gt;MSCHAP v2&lt;/code&gt; as possible selections. &lt;/p&gt;

&lt;p&gt;I knew Sprint doesn&amp;#8217;t use anything fancy. In fact, you don&amp;#8217;t even need to provide a user or password. It authenticates using the device ID or virtual phone number of your device. So, I wondered if disabling some things might work. I figured if it was using anything it was probably CHAP or PAP. I disabled everything else. &lt;/p&gt;

&lt;p&gt;Lo and behold, the next time I tried to connect, it connected and stayed connected! &lt;/p&gt;

&lt;p&gt;I hope this is useful to someone else.&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;mt-enclosure mt-enclosure-image&quot;&gt;&lt;img alt=&quot;Mobile Broadband connection dialogs&quot; src=&quot;http://fozzolog.fozzilinymoo.org/tech/2009/11/27/mobile_broadband1.jpg&quot; width=&quot;400&quot; height=&quot;555&quot; class=&quot;mt-image-center&quot; /&gt;&lt;/span&gt;&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/tech/</uri>
		</author>
		<source>
			<title type="html">tech</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/tech/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/tech//1</id>
			<updated>2009-12-03T23:15:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Recompiling ffmpeg for Fedora 12 to add faac support</title>
		<link href="http://fozzolog.fozzilinymoo.org/tech/2009/11/recompiling-ffmpeg-for-fedora-12-to-add-faac-support.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/tech//1.1679</id>
		<updated>2009-11-20T20:24:31+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;The &lt;a href=&quot;http://ffmpeg.org/&quot;&gt;ffmpeg&lt;/a&gt; package that is available for &lt;a href=&quot;http://www.fedoraproject.org/&quot;&gt;Fedora 12&lt;/a&gt; via the &lt;a href=&quot;http://www.rpmfusion.org/&quot;&gt;rpmfusion.org&lt;/a&gt; respository does not include &lt;a href=&quot;http://sourceforge.net/projects/faac/&quot;&gt;faac&lt;/a&gt; support. This can be a problem when you want to create H.264 video content that incorporates the AAC (Advanced Audio Codec). &lt;/p&gt;

&lt;p&gt;The most straightforward way I&amp;#8217;ve found to rectify this situation is to build a new package from the source RPM.&lt;/p&gt;

&lt;p&gt;First, download the source RPM using &lt;code&gt;yumdownloader&lt;/code&gt;.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;yumdownloader --source ffmpeg
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;This will download the &lt;code&gt;.src.rpm&lt;/code&gt; file to  the current directory. Install it using the &lt;code&gt;rpm&lt;/code&gt; command. (This assumes you have a person RPM build environment set up. &lt;a href=&quot;http://www.jasonlitka.com/2007/05/21/setting-up-an-rpm-build-environment/&quot;&gt;This blog post&lt;/a&gt; provides some good information on that.) &lt;/p&gt;

&lt;pre&gt;&lt;code&gt;rpm -ivh ffmpeg-0.5-5.20091026svn.fc12.src.rpm
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;You probably want to indicate some sort of difference in the version numbering since this version is a modification of the upstream. Edit &lt;code&gt;~/rpm/SPECS/ffmpeg.spec&lt;/code&gt; and modify the &lt;code&gt;Release:&lt;/code&gt; line by adding something to the end of it.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;Release: 5.%{svn}svn%{?dist}_fozz
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Now, you can try building the package with &lt;code&gt;rpmbuild&lt;/code&gt;. Unless you&amp;#8217;ve already installed all the development libraries and other dependencies &lt;code&gt;ffmpeg&lt;/code&gt; relies on, you&amp;#8217;ll get some dependency messages. Use &lt;code&gt;yum&lt;/code&gt; to install those dependencies and then try building again.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;rpmbuild -ba ~/rpm/SPEC/ffmpeg.spec --with faac
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;This will create RPM packages for you under &lt;code&gt;~/rpm/RPMS/&lt;/code&gt;. Use &lt;code&gt;rpm&lt;/code&gt; to install the &lt;code&gt;ffmpeg&lt;/code&gt; and &lt;code&gt;ffmpeg-libs&lt;/code&gt; packages.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;rpm -Uvh ~/rpm/RPMS/x86_64 ffmpeg-{libs-,}0.5-5.20091026svn.fc12_fozz.x86_64.rpm
&lt;/code&gt;&lt;/pre&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/tech/</uri>
		</author>
		<source>
			<title type="html">tech</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/tech/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/tech//1</id>
			<updated>2009-12-03T23:15:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Patch to FFmpeg::Command to support multiple input files</title>
		<link href="http://fozzolog.fozzilinymoo.org/tech/2009/11/patch-to-ffmpegcommand-to-support-multiple-input-files.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/tech//1.1677</id>
		<updated>2009-11-13T16:55:38+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;The &lt;a href=&quot;http://search.cpan.org/search?mode=all&amp;amp;query=FFmpeg%3A%3ACommand&quot;&gt;FFmpeg::Command&lt;/a&gt; Perl module is a convenient way to drive the &lt;a href=&quot;http://ffmpeg.org/&quot;&gt;ffmpeg&lt;/a&gt; command-line utility for converting multimedia files.&lt;/p&gt;

&lt;p&gt;For work, I have developed some scripts that make heavy use of &lt;code&gt;FFmpeg::Command&lt;/code&gt;. Yesterday, one of the other developers told me they need a conversion script to be able to merge separate video and audio streams into one file that contains both audio and video. The &lt;code&gt;ffmpeg&lt;/code&gt; command-line utility can do this by accepting more than one input file. For example:&lt;/p&gt;

&lt;p&gt;$ ffmpeg -i video.avi -i audio.wav -acodec copy -vcodec copy merged.avi&lt;/p&gt;

&lt;p&gt;The &lt;code&gt;FFmpeg::Command&lt;/code&gt; Perl module, however, assumed there can only be one input file. I made the necessary changes to the module code so that it would accept multiple input files, created a patch file, and sent it to the Module owner &lt;a href=&quot;http://search.cpan.org/~mizzy/&quot;&gt;Gosuke Miyashita&lt;/a&gt;. This morning, I received e-mail from Gosuke thanking me for the patch and informing me that he has uploaded a new version (v0.12) of &lt;code&gt;FFmpeg::Command&lt;/code&gt; to &lt;a href=&quot;http://www.cpan.org/&quot;&gt;CPAN&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;I love Perl and open source software!&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/tech/</uri>
		</author>
		<source>
			<title type="html">tech</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/tech/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/tech//1</id>
			<updated>2009-12-03T23:15:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Home-buying travails and endurance</title>
		<link href="http://fozzolog.fozzilinymoo.org/general/2009/11/home-buying-travails-and-endurance.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/general//3.1676</id>
		<updated>2009-11-13T16:17:52+00:00</updated>
		<content type="html" xml:lang="en-us">&lt;p&gt;Anyone who&amp;#8217;s been through some sort of big deal in their life is familiar
with the annoyance that comes from dozens of family, friends, and other
people asking for the latest on whatever it is you&amp;#8217;re going through. I&amp;#8217;m
sure anyone who&amp;#8217;s been divorced, had a loved one in the hospital, going
through divorce, had a family member or close friend be involved in a big
court battle, etc. knows what I&amp;#8217;m talking about.&lt;/p&gt;

&lt;p&gt;Our family has been going through a frustrating situation, but I haven&amp;#8217;t
really talked about it much, but those who do know about it have been
calling me, e-mailing me, etc. to get frequent updates on the status, so
I&amp;#8217;m blogging about it so I can just say, &amp;#8220;Go look at the blog.&amp;#8221;&lt;/p&gt;

&lt;p&gt;For the last year or so, Christine and I have been thinking about buying a
larger house. We bought our most recent house in 2003 when the housing
market was experiencing a low period. The house was a HUD repossession and
had been trashed &amp;#8212; or never taken care of &amp;#8212; by the previous owner. We
recarpeted, repainted, and repaired damage throughout. Over the years we
finished a couple of bedrooms and an office in the basement and put in a
yard with a watering system.&lt;/p&gt;

&lt;p&gt;That house has served us well, but Christine and I had been looking at some
of the houses in the newer developments near our house and wondering if we
should upgrade. In fact, we made an offer on a home last year which was
accepted. After the offer was accepted, we got cold feet and withdrew the
offer because we realized we just were not prepared to commit to short sale moving
into a newer, larger house yet. We hadn&amp;#8217;t done anything to sell our house
so we&amp;#8217;d have to pay two house payments until our prior home was sold and
who knew how long that would take.&lt;/p&gt;

&lt;p&gt;After backing out of that, we finished our family room in the basement and
made other minor improvements to the house. We still weren&amp;#8217;t complete sure
we wanted to sell the house because the family room was a nice addition and
gave us a lot more breathing room.&lt;/p&gt;

&lt;p&gt;Come Summer, we started seeing a larger home as a wise investment decision.
Many of the larger homes near us were being listed at steep discounts by
owners that simply could not afford them anymore. We began looking around
at what was available and walked through many homes. Christine saw a
nice house that caught her eye listed, but when we talked to our agent
about it, it had been pulled off the market. Our agent said it hadn&amp;#8217;t been
sold so it might be relisted. Christine kept an eye out.&lt;/p&gt;

&lt;p&gt;Finally, a couple of weeks later, Christine found the house again. It had
been relisted a couple of days before. We talked to our agent, got a
showing, and decided to make an offer on the house. Our offer was accepted.
That was in August.&lt;/p&gt;

&lt;p&gt;During the time we were looking at homes and making the offer on the nice
house, we put our house up for sale. We had an offer in about three weeks
and a closing scheduled for late September.&lt;/p&gt;

&lt;p&gt;The closing for the house we were buying was scheduled for mid-October.
Christine and I had a vacation scheduled at that time and had it moved to
the 22nd of October. As the date approached, the messages we were getting
from the selling agent was that they weren&amp;#8217;t ready to close.&lt;/p&gt;

&lt;p&gt;A little background: As we dealt with the selling agent, the house really
started sounding like a short sale because there  was talk about them
having to get banks to sign off on the sale. But, they never represented
the sale as being a short sale. If it was, there would have been additional
paperwork, specifically a short sale addendum, involved in the contract.&lt;/p&gt;

&lt;p&gt;Well, as 22 October approached, the selling agent indicated they would not
be able to close. He blamed it on the bank (or banks). We had arranged to
rent our older home from the new owners for the month of October so that we
would have a place to live until we closed on the new house. If we didn&amp;#8217;t
close on the newer home, we&amp;#8217;d have to make new living arrangements because
we had to be out of our previous home by the end of October.&lt;/p&gt;

&lt;p&gt;Nothing happened on 22 October. We gave them a few more days to surprise us
with a closing and then proceeded to move everything into storage units.
One of Christine&amp;#8217;s coworkers said his in-laws would let us live in their
basement while we waited for things to come together. We were hoping it
wouldn&amp;#8217;t come to that, but in the end it did.&lt;/p&gt;

&lt;p&gt;We&amp;#8217;ve been living in a basement, out of suitcases, since 31 October. We
extended the closing until 13 November, but as of today, the selling agent
has said they will not be able to close then.&lt;/p&gt;

&lt;p&gt;The good news, if there is any, is that the selling agent said today they
have written approval on at least one of the banks involved in the selling
(apparently there&amp;#8217;s stuff between a first and second mortgage that has to
be resolved).&lt;/p&gt;

&lt;p&gt;So, we&amp;#8217;re extending one more time, to 25 November. The selling agent
expressed confidence to our agent we&amp;#8217;ll be able to close before
Thanksgiving.&lt;/p&gt;

&lt;p&gt;Our theory is this: The sellers we&amp;#8217;re dealing with is a third party to a
short sale. They&amp;#8217;re working directly with the bank to buy the house in a
short sale at a price lower than what we&amp;#8217;re offering. As a result, when the
sale is completed, they&amp;#8217;ll make a few thousand (or a few tens of thousands)
in profit. So, technically, we&amp;#8217;re not involved in a short sale, but the
people we&amp;#8217;re buying the house from are.&lt;/p&gt;

&lt;p&gt;Should this be legal? Maybe, but I think they should be required to provide
full disclosure. It&amp;#8217;s a little unethical to paint the sale as not being a
short sale when in fact it is. Short sales are historically difficult
because the banks involved generally take a long time to move.&lt;/p&gt;

&lt;p&gt;We&amp;#8217;re very grateful to the Hancocks (the older couple whose basement we&amp;#8217;re
living in) for their benevolence and hospitality. We&amp;#8217;d be in a much worse
mess if we didn&amp;#8217;t have their basement to call a temporary home.&lt;/p&gt;

&lt;p&gt;We&amp;#8217;ve been looking at other houses on the market, but nothing really
compares to the house we&amp;#8217;re set to buy.&lt;/p&gt;

&lt;p&gt;We&amp;#8217;ve considering renting an apartment in the interim so that we&amp;#8217;re not
taking too much advantage of the generosity of our hosts upstairs. If this
looks like it will go beyond November, we may do exactly that.&lt;/p&gt;

&lt;p&gt;In the meantime, we&amp;#8217;re crossing our fingers (once again) for a closing
sometime before 25 November.&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/general/</uri>
		</author>
		<source>
			<title type="html">general</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/general/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/general//3</id>
			<updated>2010-02-20T09:00:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Book review: Superfreakonomics</title>
		<link href="http://fozzolog.fozzilinymoo.org/general/2009/11/book-review-superfreakonomics.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/general//3.1675</id>
		<updated>2009-11-09T19:37:10+00:00</updated>
		<content type="html" xml:lang="en-us">&lt;p&gt;Superfreakonomics is the new sequel to the best-selling book Freakonomics by Steven D. Leavitt and Stephen J. Dubner. &lt;/p&gt;

&lt;p&gt;This book roughly follows the same formula its predescessor established, although the original book seems rough and a bit disorganized compared to Superfreakonomics, which flows smooth and is even easier to read. &lt;/p&gt;

&lt;p&gt;The pattern, of course, is to start each chapter with a shocking or strange statement that, at first glance, appears to make no sense. The rest of the chapter leads up to a point where that statement makes perfect sense once you&amp;#8217;ve been exposed to the underlying statistical data the authors enthusiastically present. Each chapter contains an assortment of short stories about related events or historical analysis for perspective on each of the studies discussed.&lt;/p&gt;

&lt;p&gt;The most memorable parts of the original Freakonomics, for me, were the chapters on Chicago drug dealers and the chapter that suggested that the falling urban crime rates in urban areas like New York City, Philadelphia, and Chicago during the 1990s was due less to bureaucrat policies and more to do with the fact that the landmark Roe v. Wade case had occurred roughly 20 years earlier, thereby allowing legalized abortion.  This allegedly decreased the number of children born into poor, single-parent homes that would have basically been bred into a life of crime. The conclusion was that crime rates fell in these urban areas because the would-be criminals were never born. &lt;/p&gt;

&lt;p&gt;If you read the first book, you&amp;#8217;ll remember the stories and conclusions about inner city gangs and drug dealers. The researchers had to employ some unorthodox methods of data collection because of the closed nature of gang society. THat is, members of inner citty gangs are not going to welcome some college professor into their inner circle with open arms. Even if they did speak to a stereotypical economics researcher, it&amp;#8217;s unlikely they would provide entirely truthful or reliable data to the researchers. As a result, these studies required much more effort on the part of the researchers to blend in and become a trusted individual. It was, essentially, an undercover operation that revealed some surprising facts about how gangs and drug dealing worked (and didn&amp;#8217;t work). &lt;/p&gt;

&lt;p&gt;So, what about this new book? This time they&amp;#8217;ve brought us economic analyses of current and past practices of prostitution. How is &amp;#8220;the worlds&amp;#8217; oldest profession&amp;#8221; enduring? Well, it depends. It apparently depends on who the prostitute&amp;#8217;s target customer base is. Prostitutes who &amp;#8220;work the street&amp;#8221; pretty much all make the same hourly rates and have to deal with some pretty serious side effects of their work including violence, disease, and the (relatively low) possibility of being caught and arrested by the police.&lt;/p&gt;

&lt;p&gt;Prostitutes that work as high-class escorts, are well educated, and can carry on conversations with wealthy customers can earn hundreds of dollars per hour.  In fact, it seems the more they can charge, the longer their engagements are.  Their patrons are less interested in engaging in a single act and more interested in living out a fantasy of living with an &amp;#8220;ideal&amp;#8221; mate. &lt;/p&gt;

&lt;p&gt;What else is in this new book? An interesting study on infant and child carseats. My state just made it a law that children under the age of eight must use car seats or booster seats in a car. The studies done by the authors of this book suggest car seats and booster seats may offer no real added protection to children over the age of two compared to plain old seat belts. &lt;/p&gt;

&lt;p&gt;In this new book, the authors take on global warming. I found this interesting because I&amp;#8217;m what you might call a &amp;#8220;skeptic&amp;#8221; or a &amp;#8220;denier.&amp;#8221; I don&amp;#8217;t believe man has much at all to do with what some call &amp;#8220;global warming&amp;#8221; (or, more recently, &amp;#8220;climate change,&amp;#8221; because there hasn&amp;#8217;t been any warming for a while.) &lt;/p&gt;

&lt;p&gt;I was a bit disappointed that Dubner and Leavitt didn&amp;#8217;t take on the plethora of data that suggest historic warming has actually been caused more by solar cycles rather than emissions of greenhouse gases. While acknowledging there is no real concensus (sorry Al Gore), they went with the assumption that global warming/climate change is a real problem we must solve and concentrated their investigation on the proposed strategies to solve it. &lt;/p&gt;

&lt;p&gt;Most governments want to &amp;#8220;solve&amp;#8221; our climate woes by capping emissions, taxing production, and thereby stiffling economic growth across the board. This will, of course, impact humanity globally, probably much more than any changes in the climate will. The costs for these measures are estimated in the trillions of dollars, most of which will come from developed nations. Dubner and Leavitt suggest that in many, if not most, cases, the best solutions to problems are often the simple and least expensive solutions.&lt;/p&gt;

&lt;p&gt;They outline some solutions proposed by a small group in the northwestern US called Intellectual Ventures. One of their global warming proposals, for example, involves putting supposedly harmfull emissions into a higher layer of the atmosphere.  Doing this would be uber-cheap and would effectively stop warming (assuming there is warming). They know it will work because volcanoes do it when they erupt and it cools the planet for a short period of time by blocking the amount of solar radiation that reaches the surface. &lt;/p&gt;

&lt;p&gt;I applaud the authors for taking on so many issues and showing that the way we typically approach problems is often the wrong way. &lt;/p&gt;

&lt;p&gt;Freakonomics is available now in hardcover for a suggested price of $29.99. I give it 4 out of 5 stars.&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/general/</uri>
		</author>
		<source>
			<title type="html">general</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/general/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/general//3</id>
			<updated>2010-02-20T09:00:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Hulu Desktop on Fedora 11 x86_64</title>
		<link href="http://fozzolog.fozzilinymoo.org/tech/2009/10/hulu-desktop-on-fedora-11-x86-64.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/tech//1.1674</id>
		<updated>2009-10-14T15:39:29+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;I installed &lt;a href=&quot;http://www.hulu.com/labs/hulu-desktop-linux&quot;&gt;Hulu Desktop for Linux&lt;/a&gt; recently, but could not get it to work. When I ran &lt;code&gt;huludesktop&lt;/code&gt;, a dialog box would display saying that the Flash plugin could not be found and that I should edit &lt;code&gt;~/.huludesktop&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;The &lt;code&gt;~/.huludesktop&lt;/code&gt; file has a INI-style syntax and has a section for Flash settings:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;[flash]
flash_location = (null)
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;It&amp;#8217;s not obvious whether the &lt;code&gt;flash_location&lt;/code&gt; variable needs to be set to a directory or a full path. I tried both &lt;code&gt;/usr/lib/flash-plugin/&lt;/code&gt; and &lt;code&gt;/usr/lib/flash-plugin/libflashplugin.so&lt;/code&gt;. Neither of these worked. I didn&amp;#8217;t find much help via Google, but kept experimenting until I found a solution that worked:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;flash_location = /usr/lib64/mozilla/plugins-wrapped/nswrapper_32_64.libflashplayer.so
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;When the 64-bit Flash plugin is officially released, this will probably become unnecessary. In the meantime, Hulu Desktop works!&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/tech/</uri>
		</author>
		<source>
			<title type="html">tech</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/tech/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/tech//1</id>
			<updated>2009-12-03T23:15:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Book Review: &quot;Free To Choose&quot; by Milton and Rose Friedman</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/09/book-review-free-to-choose-by-milton-and-rose-friedman.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1673</id>
		<updated>2009-09-30T06:19:02+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;Milton Friedman was a highly visible economist, statistician, and policy
commentator during the Twentieth Century. Before he died in 2006, he wrote
and co-wrote several books relating economic theory, policy studies, and
statistics. He was the recipient of the Nobel Prize in economics in 1976. &lt;/p&gt;

&lt;p&gt;I just finished reading &amp;#8220;Free To Choose: A Personal Statement,&amp;#8221; written by
Thomas Friedman and his wife, Rose Friedman. The book is dense and full of
well thought-out arguments for free markets, smaller government, and how
policies that adhere to these principles will result in greater liberty and
freedom for the people that live under them. &lt;/p&gt;

&lt;p&gt;This book is almost thirty years old and it shows. Many of the numbers
the Friedmans use in the book are laughable today, especially those they use as
salaries for the common man or the cost of an average home. &lt;/p&gt;

&lt;p&gt;It&amp;#8217;s fascinating, however, they write at the end of the Carter
administration that &amp;#8220;the tide is turning.&amp;#8221;&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;The failure of Western governments to achieve their proclaimed objectives
  has produced a widespread reaction against big government. In Britain the
  reaction swept Margaret Thatcher to power in 1979 on a platform pledging
  her Conservative government to reverse the socialist policies that had
  been followed by both Labour and earlier Conservative governments ever
  since the end of World War II.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&amp;#8220;Free To Choose&amp;#8221; is organized in chapters that each spend a liberal amount
of print on a specific category of policy thinking. The first chapter, &amp;#8220;The
Power Of The Market&amp;#8221; spends nearly 30 pages covering the ideals of a free
market, the dangers of price controls, and the role of government with
respect to markets. The second chapter is devoted to governments&amp;#8217; role in
free trade and overall liberty and economic growth. Hint: Friedman isn&amp;#8217;t a
fan of tariffs or any other kind of government meddling with trade between
nations. He offers a compelling historical argument for free trade by
examining the governance and trade policies of Japan during the latter half
of the 19th century and India during the latter half of the 20th century. &lt;/p&gt;

&lt;p&gt;The third chapter, &amp;#8220;The Anatomy of Crisis,&amp;#8221; is perhaps the most relevant to
readers today. It examines the modern banking system in the United States
from the inception of the Federal Reserve in 1913, the depression nobody
remembers from 1920-21, and the Great Depression of the 1930s. For those
who believe we are currently at risk of suffering from the same mistakes or
making greater ones today in our vulnerable financial status, this chapter
offers some brilliant insights.&lt;/p&gt;

&lt;p&gt;In the conclusion of this chapter, the Friedmans write:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;In one respect the (Federal Reserve) System has remained completely
  consistent throughout. It blames all problems on external influences
  beyond its control and takes credit for any and all favorable
  occurrences. It thereby continues to promote the myth that the private
  economy is unstable, while its behavior continues to document the reality
  that government is today the major source of economic instability.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The fourth chapter, &amp;#8220;Cradle to Grave,&amp;#8221; examines the development of the
&lt;em&gt;welfare state&lt;/em&gt; beginning in Europe in the late 1800s and then in the
U.S. in the 1920s. Friedman spotlights health, education, and welfare in
this chapter because at the time the book was written, they fell under a
single department within the federal government. &lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;The waste is distressing, but it the least of the evils of the
  paternalistic programs that have grown to such massive size. Their major
  evil is their effect on the fabric of our society. They weaken the
  family; reduce the incentive to work, save, and innovate; reduce the
  accumulation of capital; and limit our freedom. These are the
  fundamental standards by which they should be judged.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The following chapter challenges the popular notions of what &amp;#8220;equality&amp;#8221;
means. The Friedmans distinguish between the following:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Equality of outcome&lt;/li&gt;
&lt;li&gt;Equality of opportunity&lt;/li&gt;
&lt;li&gt;Equality before God&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Concerning &lt;em&gt;equality of outcome&lt;/em&gt;, they write:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Life is not fair. It is tempting to believe that government can rectify
  what nature has spawned. But it is also important to recognize how much
  we benefit from the very unfairness we deplore.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This chapter goes on to examine the effects of egalitarian policies as
practiced in the US and in other modern societies.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&amp;#8230; a society that puts freedom first will, as a happy by-product, end up
  with greater freedom and greater equality. Though a by-product of
  freedom, greater equality is not an accident. A free society releases the
  energies and abilities of people to pursue their own objectives. It
  prevents some people from arbitrarily suppressing others. It does not
  prevent some people from achieving positions of privilege, but so long as
  freedom is maintained, it prevents those positions of privilege from
  being institutionalized; they are subject to continued attack by other
  able, ambitious people. Freedom means diversity but also mobility. It
  preserves the opportunity for today&amp;#8217;s disadvantaged to become tomorrow&amp;#8217;s
  privileged and, in the process, enabled almost everyone, from top to
  bottom, to enjoy a fuller and richer life.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Next, the Friedmans attach &amp;#8220;What&amp;#8217;s Wrong with Our Schools?&amp;#8221; &lt;/p&gt;

&lt;p&gt;It&amp;#8217;s no surprise their position is that centralized planning is a
substantial culprit of the problem with schools. Again, freedom is the
answer, they say. Vouchers, for example, tied with freedom to choose
public schools, are an ideal way to encourage competition between private
and public schools and drive education quality up.&lt;/p&gt;

&lt;p&gt;I found this passage about public subsidies of higher education shocking
considering what we have observed in 2009:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;When we first started writing about higher education, we had a good deal
  of sympathy for the (justification that public subsidies was an
  investment in future productivity and economic growth of society). We no
  longer do. In the interim we have tried to induce the people who make this
  argument to be specific about the alleged social benefits. The answer is
  almost always simply bad economics. We are told that the nation benefits
  by having more highly trained people, that investment in providing such
  skills is essential for economic growth, that more trained people raise
  the productivity for the rest of us. These statements are correct. But
  none is a valid reason for subsidizing higher education. Each statement
  would be equally correct if made about physical capital (i.e., machines,
  factory buildings, etc.), yet &lt;strong&gt;hardly anyone would conclude that tax money
  should be used to subsidize the capital investment of General Motors or
  General Electric.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Milton Friedman is undoubtedly spinning in his grave today.&lt;/p&gt;

&lt;p&gt;Following education is the question of &amp;#8220;Who Protects the Consumer?&amp;#8221; This
chapter discusses the development of the Interstate Commerce Commission,
The Food and Drug Administration, The Consumer Products Safety Commission,
The Department of Energy and the Environmental Protection Agency. The
Friedmans raise some very valid questions about the government&amp;#8217;s role in
establishing these authorities and whether they are effective in their
stated objectives. &lt;/p&gt;

&lt;p&gt;For example, many are familiar with Ralph Nader&amp;#8217;s book, &amp;#8220;Unsafe at Any
Speed,&amp;#8221; in which he supposedly documents the safety risk the Chevrolet
Corvair was to its occupants. This book ignited a firestorm that eventually
crushed the Corvair out of production and resulted in new government
regulations pertaining to the manufacture of automobiles. It&amp;#8217;s difficult to
argue that the outcome was a bad thing, but what about the original
premise? Was the Corvair that bad? My dad was a Corvair collector and had
two that he tinkered with, restored, and drove around on occasion. I always
thought they were odd cars because the engine was in the back. The
Friedmans point out that ten years after Nader&amp;#8217;s book landed, &amp;#8220;one of the
agencies that was set up in response to the subsequent public outcry
finally got around to testing the Corvair that started the whole thing.
They spent a year and a half comparing the performance of the Corvair with
the performance of other comparable vehicles and they concluded, &amp;#8216;The
1960-63 Corvair compared favorably with the other contemporary vehicles
used in the tests.&amp;#8217;&amp;#8221;&lt;/p&gt;

&lt;p&gt;Next is &amp;#8220;Who Protects the Worker?&amp;#8221; Here labor unions land square in the
crosshairs. Also addressed are government interventions into work such as
regulations against child labor, minimum wage laws, OSHA oversight, workers
compensation, and more.&lt;/p&gt;

&lt;p&gt;Chapter 9 is about inflation. This isn&amp;#8217;t very relevant right now, but
likely will deserve a re-read in a year or so. &lt;/p&gt;

&lt;p&gt;Here, Friedman puts his statistician muscles to work and establishes
through numbers a strong correlation between monetary control and consumer
prices. When the the Treasury and the Federal Reserve flood the market
with money, prices respond by going up. &lt;/p&gt;

&lt;p&gt;The final chapter is a nice capstone on the book and discusses how the U.S.
Constitution relates to many of the policies discussed and how it is eroded
by some. &lt;/p&gt;

&lt;p&gt;Appendix A is an interesting inclusion. It is the party platform from the
Socialist party during the 1928 presidential campaign. The Friedmans go
through each of the 14 items in the platform and demonstrate that despite
the Socialist Party not having a chance in Hell of ever having a candidate
elected, since 1928, just about each and every one of these ideas put forth
by the Socialist Party has been enacted.  &lt;/p&gt;

&lt;p&gt;That&amp;#8217;s something to think about.&lt;/p&gt;

&lt;p&gt;&amp;#8220;Free To Choose&amp;#8221; is available in paperback at a MSRP of $15.00. It&amp;#8217;s not a quick read, but definitely an informative and educational one.&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Book Review: Palm Pre - The Missing Manual</title>
		<link href="http://fozzolog.fozzilinymoo.org/tech/2009/09/book-review-palm-pre---the-missing-manual.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/tech//1.1672</id>
		<updated>2009-09-29T04:33:07+00:00</updated>
		<content type="html" xml:lang="en">&lt;a href=&quot;http://www.goodreads.com/book/show/6881595-palm-pre-the-missing-manual&quot;&gt;&lt;img alt=&quot;Palm Pre: The Missing Manual&quot; src=&quot;http://ecx.images-amazon.com/images/I/41xAZ-SFDFL._SX106_.jpg&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://www.goodreads.com/book/show/6881595-palm-pre-the-missing-manual&quot;&gt;Palm Pre: The Missing Manual&lt;/a&gt; by &lt;a href=&quot;http://www.goodreads.com/author/show/3081431.Ed_Baig&quot;&gt;Ed Baig&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
My rating: &lt;a href=&quot;http://www.goodreads.com/review/show/72489642&quot;&gt;4 of 5 stars&lt;/a&gt;
&lt;p&gt;I'll start by saying that this book-- &lt;a href=&quot;http://www.goodreads.com/book/show/6881595.Palm_Pre_The_Missing_Manual&quot; title=&quot;Palm Pre  The Missing Manual by Ed Baig&quot;&gt;Palm Pre  The Missing Manual&lt;/a&gt;-- is a
must-have for any new Palm Pre owner. Sure, the pamphlet that comes with
the Palm Pre is adequate for getting you started and on your way, but there
are so many figurative nooks and crannies in the operation of the Palm Pre
that you won't even know about unless you've happened across them by
accident or you've read this book.&lt;/p&gt;
&lt;p&gt;I've owned a Palm Pre since the first week it was available. A long-time
user of older Palm smartphones such as the Treo line and Centro, I 
enthusiastically and anxiously followed the the technology news about the
forthcoming Pre. The concept of Synergy -- the Pre's software mechanism for
collecting data from various online sources such as GMail and Facebook into
centralized databases on the phone -- was incredibly appealing and
frightening at the same time. I often wondered if Palm really could pull it
off or if the Pre was going to be Palm's dying gasp and I would be left to
the mediocrity of Windows Mobile or Blackberry or the cult of conformation
using Apple's iPhone. &lt;/p&gt;

&lt;p&gt;Thankfully, my experience with the Pre has given me hope. Being an early
adopter, I've had my shares of bumps along the way, but generally, the Pre
is an awesome device. Now that the Palm App Catalog is filling up with new,
exciting applications and there's talk of more operating system updates on
the horizon, I'm really enjoying myself with the Pre. 
&lt;/p&gt;

&lt;p&gt;Let's get back to the book. &lt;a href=&quot;http://www.goodreads.com/author/show/3081431.Ed_Baig&quot; title=&quot;Ed Baig&quot;&gt;Ed Baig&lt;/a&gt;'s book seems fairly typical for
a &quot;Missing Manual&quot; book. It is fairly short, witty, funny, and packed full
of valuable information interspersed with plenty of callouts to &quot;tips&quot; and
&quot;notes&quot; along the way.&lt;/p&gt;

&lt;p&gt;The book is extremely easy to read and shouldn't intimidate those who are
nowhere nearly as geeky as me. My daughter was easily digesting the book
before I started reading it she's nine years old. &lt;/p&gt;

&lt;p&gt;Had I had this book the first week I owned a Pre, it would have saved me
some frustration figuring out the best way to get my contacts and calendar
data onto the Pre. &lt;/p&gt;

&lt;p&gt;Palm Pre, The Missing Manual is available directly from O'Reilly and
Associates and probably from any of your favorite online booksellers. The
MSRP is $24.99. $24.99 seems a bit much for this book, even if you're probably never going to pay full price. For what you get, I would think $10 less would be more reasonable.&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/tech/</uri>
		</author>
		<source>
			<title type="html">tech</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/tech/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/tech//1</id>
			<updated>2009-12-03T23:15:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">I.O.U.S.A., a must-watch film</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/09/iousa-a-must-watch-film.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1671</id>
		<updated>2009-09-23T05:10:56+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;I finally got around to watching the documentary film
&lt;a href=&quot;http://www.iousathemovie.com/&quot;&gt;I.O.U.S.A.&lt;/a&gt;, which I rented from NetFlix.
Wow. I recommend anybody and everybody in the U.S.A. watch this film. If
you&amp;#8217;re not up to renting it or buying it, watch the &lt;a href=&quot;http://www.youtube.com/watch?v=O_TjBNjc9Bo&quot;&gt;30-minute byte-size
version available on YouTube&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;David Walker, former Comptroller General of the United States 
and head of the Government Accountability Office (GAO), now President of
the &lt;a href=&quot;http://www.pgpf.org/&quot;&gt;Peter G. Peterson Foundation&lt;/a&gt;, takes on the
seemingly insurmountable task of explaining our national debt and does so
successfully with finesse. &lt;/p&gt;

&lt;p&gt;I learned a lot from this film. I mean, because I&amp;#8217;ve been pretty well
plugged-in, politically, I knew our national debt was a huge problem, that
the federal government&amp;#8217;s budget deficits were only making things worse
and federal programs like Social Security and Medicare only exacerbate
the problem. What I didn&amp;#8217;t know was that our trade deficit is so huge, the
largest in the world, in fact. &lt;/p&gt;

&lt;p&gt;Before watching &lt;strong&gt;I.O.U.S.A.&lt;/strong&gt;,  President George W. Bush was not my favorite 
president. While he did a good job responding to the terror attacks in
2001 and going after terrorists where they operate in the Middle East, he
and his administration seemed to ignore problems here at home, like the
growing problem of illegal immigration and adding more liabilities to 
Medicare with the Part D prescription drug coverage. Overall, I think he
was a mediocre president.&lt;/p&gt;

&lt;p&gt;After watching &lt;strong&gt;I.O.U.S.A.&lt;/strong&gt;, I&amp;#8217;m beginning to wonder if George W. Bush
didn&amp;#8217;t commit some kind of treason against this country by letting all
things economic get so out of hand under his watch!&lt;/p&gt;

&lt;p&gt;After watching &lt;strong&gt;I.O.U.S.A.&lt;/strong&gt;, I&amp;#8217;ve developed an increased respect for the
Clinton administration for how they handled economic matters by getting the
federal budget under control for a couple of years. Granted, things were
easier then with no &lt;em&gt;War On Terror&lt;/em&gt; to fund and what-not. &lt;/p&gt;

&lt;p&gt;So, what about our present president? Well, he sucks too! Maybe worse than
Bush! &lt;/p&gt;

&lt;p&gt;Walker is dead on by identifying the four big economic problems facing America:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Federal budget deficit&lt;/li&gt;
&lt;li&gt;Savings deficit&lt;/li&gt;
&lt;li&gt;Trade deficit&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And finally,&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Leadership deficit&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For example, the Democrats&amp;#8217; healthcare reform proposal does &lt;em&gt;not&lt;/em&gt; help our
debt situation. The government&amp;#8217;s own policy analysts show that it too will
only add an increasingly large liability to an already fast-growing balance
we owe. Yes, we need reform, but this ain&amp;#8217;t what the proverbial doctor
ordered.&lt;/p&gt;

&lt;p&gt;One big chunk of our trade deficit is our dependence on foreign oil. Our
president&amp;#8217;s solution is to pull new, alternative energy solutions out of
his butt to replace all energy infrastructure. You know, that might be a
fine solution if we were already in a good economic situation, where we had
economic surpluses to rely on as we went through the painful process of
converting to a scientifically, environmentally superior form of energy
generation, but in the state we&amp;#8217;re in right now, it simply does not make
sense. &lt;/p&gt;

&lt;p&gt;What does make sense is for the U.S. to start getting more energy
production from its own resources. We have &lt;em&gt;lots&lt;/em&gt; of it. Oil. Coal. Natural
gas. We&amp;#8217;ve got gazillions of tons of it, literally, but we&amp;#8217;re staying away
from it, on principle, I guess. &lt;/p&gt;

&lt;p&gt;Leadership deficit! We need leaders that will do what&amp;#8217;s right regardless of
what&amp;#8217;s popular or what their party, platform, or agenda might be. President
Obama wants to usher the U.S. into a new era of green-ness,
environmentalism, ecological awareness, etc. etc. He needs to realize we&amp;#8217;re
never going to be able to do that unless we address our vast economic
imbalance represented by our debt and unfunded liabilities. &lt;/p&gt;

&lt;p&gt;What our government aims to do now is a classic example of cart before horse. &lt;/p&gt;

&lt;p&gt;Here&amp;#8217;s another tough pill I had to swallow watching &lt;em&gt;I.O.U.S.A.&lt;/em&gt;: We
probably will need to raise taxes to get out of this mess. But our
legislators need to reduce the overall size of government at the same
time. We&amp;#8217;ll need to raise taxes and reduce spending. &lt;/p&gt;

&lt;p&gt;That trade deficit thing just keeps bothering me. I want to know more about
why the United States doesn&amp;#8217;t produce much anymore. Common sense tells me
it&amp;#8217;s because other nations can produce cheaper than we can. Why? Is it high
labor costs? Is it restrictive regulation? &lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Why your senator is out of touch</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/09/why-your-senator-is-out-of-touch.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1670</id>
		<updated>2009-09-14T04:40:45+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;At the state capitol rally on Saturday 9/12, a young woman (Nicole Condie, I think her name was) was an unscheduled speaker. She said she had interned for Orrin Hatch and, as an intern, was responsible for handling incoming mail. She said she would prepare responses to letters from concerned constituents and sign them with an autopen. She said she assumed the senator&amp;#8217;s staff would at least collect statistics on what issues his constituents were writing in about and how they felt. However, she said, no statistics were being collected at all. She said there were always protests happening near the senate offices, but the senators never heard or saw them and had private entrances to the building that allowed them to come and go without any exposure to these protests. &lt;/p&gt;

&lt;p&gt;Is it really any wonder why our senators seem to be off in their own little world? &lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">My, oh my, how times have changed.</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/09/my-oh-my-how-times-have-changed.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1669</id>
		<updated>2009-09-10T05:57:43+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;I&amp;#8217;ve been reading &lt;em&gt;Free To Choose&lt;/em&gt; by Milton and Rose Friedman. This book was written in 1979-1980 and it talks about many of the important political and economic issues of that time. Friedman explains things so well and his points are still very relevant. However, as I was reading the chapter &amp;#8220;What&amp;#8217;s Wrong with Our Schools?&amp;#8221; something jumped out at me. See if you can pick it out. I&amp;#8217;ll add emphasis it to give you a hint.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;When we first started writing about higher education, we had a good deal of sympathy for the [justification that public tax subsidies for state schools was an investment in the future productivity of members of society]. We no longer do. In the interim, we have tried to induce the people who make this argument to be specific about the alleged social benefits. The answer is almost always simply bad economics. We are told that the nation benefits by having more highly skilled and trained people, that investment in providing such skills is essential for economic growth, that more trained people raise the productivity of the rest of us. These statements are correct. But none is a valid reason for subsidizing higher education. Each statement would be equally correct if made about physical capital (i.e. machines, factory buildings, etc.) yet &lt;strong&gt;hardly anyone would conclude that tax money should be used to subsidize the capital investment of General Motors or General Electric.&lt;/strong&gt; If higher education improves the economic productivity of individuals, they can capture that improvement through higher earnings, so they have a private incentive to get the training. Adam Smith&amp;#8217;s invisible hand makes their private interest serve the social interest. It is against the social interest to change their private interest by subsidizing schooling. The extra students &amp;#8212; the ones who will only go to college if it is subsidized &amp;#8212; are precisely the ones who judge that the benefits they receive are less than the costs. Otherwise they would be willing to pay the costs themselves.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Wow. Hardly anyone, indeed. Yet, it has happened in the last year and some would argue it was unavoidable because no one in any administrative position (i.e. George W. Bush, John McCain, or Barack Obama) has/had the courage and wisdom to hold back and not &amp;#8220;save&amp;#8221; failing companies.  &lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Book Review: Your Body</title>
		<link href="http://fozzolog.fozzilinymoo.org/general/2009/09/book-review-your-body.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/general//3.1667</id>
		<updated>2009-09-02T20:29:30+00:00</updated>
		<content type="html" xml:lang="en-us">&lt;a href=&quot;http://www.goodreads.com/book/show/6649318-your-body-the-missing-manual&quot;&gt;&lt;img alt=&quot;Your Body: The Missing Manual&quot; src=&quot;http://ecx.images-amazon.com/images/I/415yIBFfmwL._SX106_.jpg&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://www.goodreads.com/book/show/6649318-your-body-the-missing-manual&quot;&gt;Your Body: The Missing Manual&lt;/a&gt; by &lt;a href=&quot;http://www.goodreads.com/author/show/83734.Matthew_MacDonald&quot;&gt;Matthew MacDonald&lt;/a&gt;
&lt;p&gt;
My rating: &lt;a href=&quot;http://www.goodreads.com/review/show/69753882&quot;&gt;4 of 5 stars&lt;/a&gt;
I was hanging out on Facebook one day and &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://www.ora.com/&quot;&gt;O'Reilly Media&lt;/a&gt; sent out a status message saying they needed a few people to review a new book &lt;a href=&quot;http://www.goodreads.com/book/show/6649318.Your_Body_The_Missing_Manual&quot; title=&quot;Your Body  The Missing Manual by Matthew MacDonald&quot;&gt;Your Body  The Missing Manual&lt;/a&gt; (go &lt;a href=&quot;http://oreilly.com/catalog/9780596801748/&quot;&gt;here &lt;/a&gt;for &lt;a href=&quot;http://oreilly.com/catalog/9780596801748/&quot;&gt;O'Reilly's catalog page for the book&lt;/a&gt;). I responded and was contacted by an O'Reilly representative who got my shipping information. &lt;/p&gt;

&lt;p&gt;Within a couple of days, I received a box. Inside was a stinky (stinky because of the ink and paper they used) book with a green cover. &lt;/p&gt;

&lt;p&gt;I didn't really know what to expect. I had planned to compare this to some of the larger encyclopedia-like books that my kids had that were packed with fancy color pictures and diagrams for various aspects of the body. This book isn't like those at all. It is more exposition and less illustration, although there are some very good illustrations in the book. They're just relatively simple compared to other books.&lt;/p&gt;

&lt;p&gt;The writing style is very interesting. It is not clinical &lt;strong&gt;at all&lt;/strong&gt; and is littered with sarcastic and sardonic quips. The first chapter -- about your skin -- starts off, in the very first paragraph, talking about robbing a bank wearing a ski mask. When the author wrote about techniques for removing fingerprints to avoid leaving evidence of your involvement at a crime scene, I was beginning to wonder if there was an underlying, hidden agenda in the book. &lt;/p&gt;

&lt;p&gt;The text is packed with fascinating callouts that fit in contextually throughout the book. This lets the author pack each chapter with numerous bits of tangential information. &lt;/p&gt;

&lt;p&gt;All in all, however, the book is somewhat light on the coverage. This isn't a tell-all, but it is a tell-a-lot. And what it does tell, it tells well. There is a lot of information about latest research and findings. For example, I learned that stretching (in the chapter on &lt;em&gt;muscles&lt;/em&gt;) isn't the recommended activity before an aerobic/cardiovascular workout, but that 5-10 minutes of light warm up activity is better. &lt;/p&gt;

&lt;p&gt;I learned a lot from this book I didn't know before so I definitely feel more knowledgeable as a result of reading it. &lt;/p&gt;

&lt;p&gt;While the other body atlas-type books I've seen seem to be targeted at pretty much all ages, I wouldn't recommend this book to anyone under the age of 16. The reason I would not recommend this book to younger readers is because Chapter 10, the chapter on sex and reproduction, ventured a bit too far out of my comfort zone into sociological and cultural aspects of sexuality than I would ever feel comfortable letting younger kids read. I'm pretty sure my 10-year old does not needs to learn about &quot;Arousal and the Art of Foreplay,&quot; &quot;Reaching The Big O,&quot; or how to &quot;Engage in mutual exploration.&quot;&lt;/p&gt;&lt;p&gt;So, all in all, a good book. It's light, not-very-clinical reading that's bound to teach you several things you didn't already know. You can buy it &lt;a href=&quot;http://www.amazon.com/Your-Body-Missing-Matthew-MacDonald/dp/0596801742/&quot;&gt;direct from O'Reilly&lt;/a&gt; or from everyone's favorite online bookseller: &lt;a href=&quot;http://www.amazon.com/Your-Body-Missing-Matthew-MacDonald/dp/0596801742/&quot;&gt;Amazon.com&lt;/a&gt; for $25 or less.&lt;br /&gt;&lt;/p&gt;

&lt;a href=&quot;http://www.goodreads.com/review/list/1024334-doran-barton&quot;&gt;View all my reviews &amp;gt;&amp;gt;&lt;/a&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/general/</uri>
		</author>
		<source>
			<title type="html">general</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/general/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/general//3</id>
			<updated>2010-02-20T09:00:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">YoManSports.com: What I'm doing these days</title>
		<link href="http://fozzolog.fozzilinymoo.org/tech/2009/09/yomansportscom-what-im-doing-these-days.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/tech//1.1668</id>
		<updated>2009-09-02T20:22:37+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;I think I have finally, really arrived.&lt;/p&gt;

&lt;p&gt;I&amp;#8217;ve been doing contract work for a company in Provo that is launching a
new website called &lt;a href=&quot;http://www.yomansports.com/&quot;&gt;YoManSports.com&lt;/a&gt;, which is
in beta right now. At first glance, the site may appear to be a &amp;#8220;YouTube
for sports,&amp;#8221; but it so much more than that. The concept is centered around video
sharing, but includes familiar social networking elements you&amp;#8217;d find on
sites like Facebook or MySpace. In addition, there are several applications
within the site that are sports-related &amp;#8212; things like competition
bracketing, scorecards, and groups. Perhaps the coolest feature that rounds
out the list is the broadcast feature. This lets a person go to a sporting
event with a video camera, even something as simple as a USB webcam, and
set up a live web broadcast that anyone with a web browser can watch. The
person managing the broadcast can mix prerecorded video, pictures, and
even live video from other users into the broadcast. There&amp;#8217;s even a news
ticker for embedding clickable URL links into the broadcast. It&amp;#8217;s pretty
cool stuff. &lt;/p&gt;

&lt;p&gt;Now, I said at the beginning of this post that I have arrived because we&amp;#8217;ve
been asked by management to blog regularly about the site and what we&amp;#8217;re
doing with it as part of our marketing plan. So, yeah, it&amp;#8217;s cool to be able
to do this and not be wasting my time at work.&lt;/p&gt;

&lt;p&gt;My job has been designing and building the server architecture that sits
behind the scenes and makes it all work. I was brought in late 2008 when
the site was pretty much in a prototype stage. All the code was running on
a single server and it really wasn&amp;#8217;t designed to scale beyond that one
server. So, one of the first things I did was figured out what we&amp;#8217;d need to
do split things like streaming video, web services, and database services
onto their own dedicated servers. &lt;/p&gt;

&lt;p&gt;After that, I went through and figured out how we were going to accomodate
loads higher than we could with individual servers. In a nutshell: load
balancing. That has now been implemented.&lt;/p&gt;

&lt;p&gt;Another thing I&amp;#8217;ve had a big hand in is offloaded encoding and conversion.
The developers had created routines to do all the video encoding in PHP on
the frontend of the website. Of course, doing video encoding on the same
server Apache is running on can be detrimental to the experience of other
website users. I developed a distributed encoding system that handles all
the video conversion and encoding on a separate set of servers. I did it
with &lt;a href=&quot;http://www.perl.org/&quot;&gt;Perl&lt;/a&gt;, of course.&lt;/p&gt;

&lt;p&gt;I&amp;#8217;m pleased with the technology being used on the site. I&amp;#8217;m not a fan of
PHP, but it&amp;#8217;s doing the job well for frontend development. We&amp;#8217;re making use
of a lot of open source technology in dealing with videos. For example, all
our transcoding is being done with the formidable
&lt;a href=&quot;http://www.ffmpeg.org/&quot;&gt;FFMPEG&lt;/a&gt; software along with libraries like
&lt;a href=&quot;http://www.videolan.org/developers/x264.html&quot;&gt;x264&lt;/a&gt; and
&lt;a href=&quot;http://www.audiocoding.com/&quot;&gt;FAAC&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;We&amp;#8217;re leveraging Flash pretty heavily pretty heavily to make the site work
so it&amp;#8217;s fortunate that Flash support has nearly ceased being a problem for
cross-platform compatibility. YoManSports.com works almost seamlessly across
Windows, Mac OS, and Linux.&lt;/p&gt;

&lt;p&gt;Watch this space for more info to come.&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/tech/</uri>
		</author>
		<source>
			<title type="html">tech</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/tech/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/tech//1</id>
			<updated>2009-12-03T23:15:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Book Review: Glenn Beck's &quot;Common Sense&quot;</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/06/book-review-glenn-becks-common-sense.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1665</id>
		<updated>2009-06-27T23:05:52+00:00</updated>
		<content type="html" xml:lang="en">&lt;a href=&quot;http://www.goodreads.com/book/show/6478256-glenn-beck-s-common-sense-the-evolution-of-thomas-paine-s-revolution&quot;&gt;&lt;img alt=&quot;Glenn Beck's Common Sense: The Evolution of Thomas Paine's Revolution&quot; src=&quot;http://ecx.images-amazon.com/images/I/51k8M2576AL._SX106_.jpg&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://www.goodreads.com/book/show/6478256-glenn-beck-s-common-sense-the-evolution-of-thomas-paine-s-revolution&quot;&gt;Glenn Beck's Common Sense: The Evolution of Thomas Paine's Revolution&lt;/a&gt; by &lt;a href=&quot;http://www.goodreads.com/author/show/188932.Glenn_Beck&quot;&gt;Glenn Beck&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
  &lt;a href=&quot;http://www.goodreads.com/review/show/61320885&quot;&gt;&lt;h3&gt;My review&lt;/h3&gt;&lt;/a&gt;
  rating: 4 of 5 stars&lt;br /&gt;Anyone who knows me or has read some of my previous reviews probably knows that I'm one of &lt;a href=&quot;http://fozzolog.fozzilinymoo.org/author/show/188932.Glenn_Beck&quot; title=&quot;Glenn Beck&quot;&gt;Glenn Beck&lt;/a&gt;'s biggest fans, so it will come as little surprise that I now have 4 copies of this book and plan to distribute it to family and friends. 
&lt;br /&gt;
&lt;br /&gt;As with his previous non-fiction work, &lt;a href=&quot;http://fozzolog.fozzilinymoo.org/book/show/6481422.An_Inconvenient_Book_Real_Solutions_to_the_World_s_Biggest_Problems&quot; title=&quot;An Inconvenient Book  Real Solutions to the World's Biggest Problems by Glenn Beck&quot;&gt;An Inconvenient Book  Real Solutions to the World's Biggest Problems&lt;/a&gt;, this book is, for the most part, a repackaging of things Glenn says every day on his television and radio shows. It discusses the corruption in government, the loyalty to special interests among those in congress, the amassing of power by the executive branch, and the cancer that is the Progressive movement. 
&lt;br /&gt;
&lt;br /&gt;That being said, this is definitely a book you can give to your friends who aren't necessarily one of Glenn's biggest fans. And, encourage them to pass it on when they're done. Sign your name on the inside cover and include the date your read it and encourage others to do the same. This book is a rallying cry to all those who feel their voice is held in contempt or just plain ignored by the political class in America. 
&lt;br /&gt;
&lt;br /&gt;I would like to share one of my favorite parts of this book. It is very near to the end of the book (before the Thomas Paine section starts) and addresses religion in a democracy.
&lt;br /&gt;
&lt;br /&gt;&lt;blockquote&gt;
&lt;br /&gt;So why is religion so important to the proper functioning of a democracy? Well, once again, our Founding Fathers had the answer. In a letter to the president of Yale University, Benjamin Franklin once wrote:
&lt;br /&gt;
&lt;br /&gt;&lt;blockquote&gt;
&lt;br /&gt;Here is my creed: I believe in one God, the Creator of the universe. That he governs it by his providence. That he ought to be worshipped. That the most acceptable service we render to him is in doing good to his other children. That the soul of man is immortal, and will be treated with justice in another life respecting its conduct in this. These I take to be the fundamental points in all sound religion.
&lt;br /&gt;&lt;/blockquote&gt;
&lt;br /&gt;
&lt;br /&gt;It wasn't about any one particular creed, dogma, or church, but rather about all religions that inspired men to selflessness, virtue. and godliness. Our Founders understood the thing that we try so hard to forget today:  there is far more than unites us than divides us. Virtue, honesty, and character aren't the purview of any particular congregation; they can be found in any church that has God as its foundation. We have forgotten this lesson and instead of using religion as our anchor, we use it to shame or blame. To many in this country, those who attend church regularly aren't pillars of their community, they're freaks or extremists.
&lt;br /&gt;
&lt;br /&gt;But that mind-set can be changed by setting an example of tolerance and unparalleled acceptance toward each other. Let's stop using our religious symbols to score political points. Are we that insecure in our own faith that the religious symbols or public prayers of a different religion cannot be welcomed with open arms? As Thomas Jefferson once said:
&lt;br /&gt;
&lt;br /&gt;&lt;blockquote&gt;
&lt;br /&gt;Question with boldness even the existence of a God; because, if there be one, he must more approve of the homeage of reason, than that of blind-folded fear... Do not be frightened from this inquiry from any fear of its consequences. If it ends in the belief there is no God, you will find incitements to virtue in the comfort and pleasantness you feel in its exercise...
&lt;br /&gt;
&lt;br /&gt;Religions and their followers must stop turning on each other. We are a land founded through divine Providence, a land where, as James Madison said, the &quot;spirit of liberty and patriotism animates all degrees and denominations of men.&quot;
&lt;br /&gt;&lt;/blockquote&gt;
&lt;br /&gt;
&lt;br /&gt;Very well said, Glenn.&lt;/blockquote&gt;
  &lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.goodreads.com/review/list/1024334-doran-barton&quot;&gt;View all my reviews.&lt;/a&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Life with my Palm Pre (Part 1)</title>
		<link href="http://fozzolog.fozzilinymoo.org/tech/2009/06/life-with-my-palm-pre-part-1.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/tech//1.1664</id>
		<updated>2009-06-15T08:28:32+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;&lt;span class=&quot;mt-enclosure mt-enclosure-image&quot;&gt;&lt;img alt=&quot;pre-300x179.jpg&quot; src=&quot;http://fozzolog.fozzilinymoo.org/tech/pre-300x179.jpg&quot; width=&quot;300&quot; height=&quot;179&quot; class=&quot;mt-image-none&quot; /&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;I&amp;#8217;ve had my Palm Pre for about five days now and I&amp;#8217;m really starting to like it. That&amp;#8217;s not to say the last five days haven&amp;#8217;t been frustrating and disappointing, but I&amp;#8217;ve managed to find acceptable solutions for most of my problems. The experience has turned out a lot better than the &lt;a href=&quot;http://fozzolog.fozzilinymoo.org/tech/2008/06/review-samsung-instinct-as-a-r.html&quot;&gt;last time I tried switching platforms&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The Pre is definitely a 1.0 release so if you&amp;#8217;re a techy user like me, you&amp;#8217;ll find lots of things to gripe about, but there&amp;#8217;s still a lot of promise in the platform. The operating system itself is at version 1.0.2 so it&amp;#8217;s really pretty new.&lt;/p&gt;

&lt;h6&gt;Issues&lt;/h6&gt;

&lt;p&gt;I&amp;#8217;ll start with some of the issues I&amp;#8217;ve run into.&lt;/p&gt;

&lt;h5&gt;PIM data&lt;/h5&gt;

&lt;p&gt;If you&amp;#8217;re a PalmOS user migrating to the Palm Pre, you&amp;#8217;re likely to run into some of the same issues I did. First off, when I asked the Sprint sales dude (who owned a Pre and had owned a Centro prior to that) if he could transfer my data to the Pre, he said, &amp;#8220;Sure!&amp;#8221; and then proceeded to try to get the data off my Centro. A few minutes later, he told me he could not because he just couldn&amp;#8217;t get any of the data to transfer over the IR port. &lt;/p&gt;

&lt;p&gt;That&amp;#8217;s okay, a little reading on &lt;a href=&quot;http://www.palm.com/&quot;&gt;Palm&amp;#8217;s site&lt;/a&gt; told me what I needed to know. I had to sync the Centro &amp;#8220;one last time&amp;#8221; using the latest and greatest Palm Desktop for Windows (which I installed specifically for this task) and then download and run Palm&amp;#8217;s &lt;em&gt;Data Transfer Assistant&lt;/em&gt; program for Windows (which is a free download from the &lt;em&gt;support&lt;/em&gt; area of Palm&amp;#8217;s website.) &lt;/p&gt;

&lt;p&gt;This allegedly transferred my address book, calendar, tasks, and notes/memos to my online Palm Profile where the Pre would automatically find them and install them. Within a few minutes, the address book on the Pre was populated with names and contact information that were on my Centro. Yay. The notes seemed to transfer okay too. But when I went into the Calendar application on the Pre, my day was blank. None of the events I had scheduled for the day were visible. &lt;/p&gt;

&lt;p&gt;Retracing my steps, I wondered if maybe I hadn&amp;#8217;t selected the calendar data to be transferred. In retrospect, Palm doesn&amp;#8217;t let you choose which data you want transferred, but the DTA application has icons for each of the types of data (Calendar, Contacts, etc.) and when you click on those icons, they illuminate as if they&amp;#8217;re selected. As a result, a user (me) might think clicking the icons somehow activates that stream of data to be transferred to the Palm Profile. So, I went back into the DTA and &amp;#8220;selected&amp;#8221; only the Calendar data and transferred it again. &lt;/p&gt;

&lt;p&gt;Nothing ever showed up in my view of my day&amp;#8217;s events on the Pre. Fiddling, I changed to the Week View. That&amp;#8217;s when I saw confirmation that the data I had transferred using the DTA did get transferred&amp;#8230; twice. In the Week View, I saw colored bars indicating appointments and events (in duplicate). But when I switched to the Day View, I saw nothing. Bleh.&lt;/p&gt;

&lt;p&gt;It would be super neat if the Palm Profile was tied to Google Calendar-like web application so you could have a Palm Desktop type app on the Web, but, no, Palm doesn&amp;#8217;t do that. There is a web-based portal that let&amp;#8217;s you log into your Palm Profile, but it doesn&amp;#8217;t let you do much at all except remotely delete all the data on your phone (very handy if your Pre gets stolen and you want to keep your personal information out of the hands of the thief). &lt;/p&gt;

&lt;p&gt;So, I wasn&amp;#8217;t sure what I was going to do. Looking at the Palm support forums, it was clear this wasn&amp;#8217;t a unique problem to me. Lots of people were having this problem. The  seemed to be that people should use Google&amp;#8217;s Calendar app as the online storage location of Calendar data. So, I figured out how to export my PalmOS Calendar data and then import it into my Google Calendar. That worked. Now I had THREE copies of every event showing up as colored rectangles in my Week View, but at least now I had actual events in the Day View.&lt;/p&gt;

&lt;p&gt;I tried remotely deleting the Pre&amp;#8217;s data from the Palm Profile page, but when it booted back up, it asked me for my Palm Profile username and password and then proceeded to load up the duplicate calendar entries again. Buried in the forums, I found information that described how to erase the data in the Palm Profile (Disable backups on the Pre and then reset it.). Then I proceeded to set up the freshly reset Pre to use only Google as my online repository of Calendar data. That worked well.&lt;/p&gt;

&lt;p&gt;In the course of all this, of course, I deleted my address book as my contacts data was stored in my Palm Profile. The Pre grabbed my contacts from Facebook and the handful I had stored already in Google Mail&amp;#8217;s address book, but I have hundreds of contacts from my Centro that I needed to figure out how to get into Google, I guess. Google appears to only let you import from an CSV file generated from Microsoft Outlook (bleh). I can generate a CSV file, but I don&amp;#8217;t know what one generated from Microsoft Outlook looks like, so I&amp;#8217;ll need to do some research on that before I do it. So, for now, I&amp;#8217;m doing without a fully-stocked address book.&lt;/p&gt;

&lt;h5&gt;E-mail&lt;/h5&gt;

&lt;p&gt;The Pre has a pretty decent e-mail client built-in, but I had problems. Again, if you&amp;#8217;re using Google Mail as your only e-mail account, the Pre should work with no problems at all. I set up Google Mail, but I have four other generic IMAP mailboxes I wanted to check with the Pre as well. &lt;/p&gt;

&lt;p&gt;My first problem was with encryption. &lt;/p&gt;

&lt;p&gt;One of the IMAP sites I wanted to check mail with has CA-signed certificates in place for its encrypted IMAP traffic. This means they have purchased a authenticated certificate from a company like Verisign or Comodo. That seemed to work okay.&lt;/p&gt;

&lt;p&gt;The other two sites I wanted to check mail with have self-signed certificates. I trust them because I set up the self-signed certificates myself. Where most modern desktop e-mail applications would raise an alert like, &amp;#8220;Hey, we can&amp;#8217;t vouch for the authenticity of this encryption certificate. Do you want to trust it or what?&amp;#8221; the Pre just says, &amp;#8220;SSL error Check your time and date.&amp;#8221; &lt;/p&gt;

&lt;p&gt;I hope this is something they fix in the next update of the OS because the way it works now is just bone-headed.&lt;/p&gt;

&lt;p&gt;I discovered, yesterday, there is a manual workaround. You can grab the public certificate file off the server and copy it to the Pre via USB. Then, go into Device Info and make your way to a menu item labeled &amp;#8220;Certificate Manager&amp;#8221;. There, you can add a certificate, select the certificate file you added to the Pre via USB, and specify that you want to trust this certificate.&lt;/p&gt;

&lt;p&gt;I am still having trouble sending e-mail through the two sites I manage. What&amp;#8217;s really frustrating about this is that once you try to send e-mail, and it can&amp;#8217;t go through, the Pre just keeps telling you there was an error sending that message. Deleting the offending message from the Outbox doesn&amp;#8217;t stop the repeating alerts. The only way I&amp;#8217;ve been able to stop it from notifying me about the problem is to remove the e-mail account and add it again. Stupid!&lt;/p&gt;

&lt;p&gt;More to come. Sleep calls me.&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/tech/</uri>
		</author>
		<source>
			<title type="html">tech</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/tech/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/tech//1</id>
			<updated>2009-12-03T23:15:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Best. Glenn Beck. Ever.</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/05/best-glenn-beck-ever.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1663</id>
		<updated>2009-05-28T07:59:37+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;I just watched Wednesday&amp;#8217;s (5/27) Glenn Beck TV show on Fox News that was recorded on my DVR and I have to say it was spectacular! Part of the reason it was so great was because he had Thomas Sowell on and Wayne Allen Root who both had really profound things to say.&lt;/p&gt;

&lt;p&gt;Checking YouTube, it looks like Glenn has plenty of friends willing to encode and upload. Here&amp;#8217;s a smattering of online clips to choose from:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=gBQoKxfMRts&quot;&gt;The One Thing&lt;/a&gt; - Great analysis on the auto industry&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=GoVxT3HCRAI&quot;&gt;Thomas Sowell&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=1zSe23Sdar0&quot;&gt;The One Thing&lt;/a&gt; - &amp;#8220;Failure is good for the soul&amp;#8221;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=bKLPEKFLCHM&quot;&gt;Wayne Allen Root and Joshua Cooper Ramo Part 1&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=hiTcwVGxvko&quot;&gt;Wayne Allen Root and Joshua Cooper Ramo Part 2&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=1wPPCGNEHNU&quot;&gt;Joshua Cooper Ramo&lt;/a&gt; - Is China in a position now that the US was after WW1?&lt;/li&gt;
&lt;/ul&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Wanted: a wireless digital photo frame with a few bells and whistles</title>
		<link href="http://fozzolog.fozzilinymoo.org/tech/2009/05/wanted-a-wireless-digital-photo-frame-with-a-few-bells-and-whistles.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/tech//1.1662</id>
		<updated>2009-05-25T08:34:19+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;When digital photo frames first became available, I bought one for my parents. It still sits in their living room and when you turn it on, it displays a slideshow of the same pictures I originally loaded onto the CompactFlash card that is plugged into the frame. &lt;/p&gt;

&lt;p&gt;Now that &lt;em&gt;wireless&lt;/em&gt; digital photo frames are becoming the &amp;#8220;next big thing,&amp;#8221; I&amp;#8217;m interested in getting one for myself, but I&amp;#8217;m not sure any of the models available satisfy my (modest) requirements.&lt;/p&gt;

&lt;p&gt;It seems these wireless frames mostly work by having some kind of stupid e-mail address assigned to the frame. You send an e-mail message with a picture file attached and, within a few minutes, more or less, the picture shows up on your digital photo frame. &lt;/p&gt;

&lt;p&gt;This seems lame to me. Here&amp;#8217;s what I want:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;The digital photo frame should be able to connect to a local file server via SMB/CIFS, HTTP or FTP and display all images hosted at a specific location. For example: &lt;em&gt;ftp://myfileserver/pictures/&lt;/em&gt;. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The digital photo frame should run an HTTP server so I don&amp;#8217;t have to use the on-board buttons or the soon-to-be-lost miniature infrared remote control to set it up. Every VoIP telephone, print server, and a gazillion other network devices seem to all have an HTTP configuration interface, so why not a wireless digital photo frame? &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Am I asking too much?&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/tech/</uri>
		</author>
		<source>
			<title type="html">tech</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/tech/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/tech//1</id>
			<updated>2009-12-03T23:15:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Book Review: Lone Survivor</title>
		<link href="http://fozzolog.fozzilinymoo.org/general/2009/05/book-review-lone-survivor.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/general//3.1661</id>
		<updated>2009-05-10T01:15:20+00:00</updated>
		<content type="html" xml:lang="en-us">&lt;a href=&quot;http://www.goodreads.com/book/show/711901.Lone_Survivor_The_Eyewitness_Account_of_Operation_Redwing_and_the_Lost_Heroes_of_SEAL_Team_10&quot;&gt;&lt;img alt=&quot;Lone Survivor: The Eyewitness Account of Operation Redwing and the Lost Heroes of SEAL Team 10&quot; src=&quot;http://photo.goodreads.com/books/1177541004m/711901.jpg&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://www.goodreads.com/book/show/711901.Lone_Survivor_The_Eyewitness_Account_of_Operation_Redwing_and_the_Lost_Heroes_of_SEAL_Team_10&quot;&gt;Lone Survivor: The Eyewitness Account of Operation Redwing and the Lost Heroes of SEAL Team 10&lt;/a&gt; by &lt;a href=&quot;http://www.goodreads.com/author/show/379290.Marcus_Luttrell&quot;&gt;Marcus Luttrell&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
  &lt;a href=&quot;http://www.goodreads.com/review/show/27830780&quot;&gt;&lt;h3&gt;My review&lt;/h3&gt;&lt;/a&gt;
  rating: 5 of 5 stars&lt;br /&gt;I'd heard Navy SEAL Marcus Luttrell's story in bits and pieces on the radio and on Glenn Beck's TV shows, but I still had no idea how good it would be. This is yet-another book penned with the help of a professional author, but they really managed to leave the book feeling like it was straight out of Marcus's mouth.
&lt;br /&gt;
&lt;br /&gt;The basic premise of this book is that Marcus Luttrell was a member of a Navy SEAL team -- an elite military force -- stationed in Afghanistan in 2005 and sent on a mission to spy on a remote village looking for a high-value military target and, if seen, take him out. The mission was compromised and, after a prolonged firefight with Taliban fighters, Marcus was the only one of his small 4-man team left alive. A helicopter full of SEALs sent to rescue Marcus and his fellow SEALs was attacked by the Taliban as well making this battle the single most-deadly fight in Navy SEAL history.
&lt;br /&gt;
&lt;br /&gt;Marcus was listed as &lt;i&gt;Missing In Action&lt;/i&gt; for several days as his family in Texas impatiently waited for news from Afghanistan. Meanwhile, Marcus ran, fell, and crawled seven miles while being tracked by Taliban fighters and made his way to a small village where, surprisingly, he was cared for. 
&lt;br /&gt;
&lt;br /&gt;There's an immense amount of backstory about the preparation the typical Navy SEAL has to go through to get to be a SEAL. At first, I wasn't sure why this was necessary, but it makes sense later in the story when you consider what kind of people these soldiers were, what they had to endure in their training, and what their experiences had been prior to fighting America's enemies. 
&lt;br /&gt;
&lt;br /&gt;Not only did I learn a heck of a lot about Navy SEALs, I also learned a lot about the terrain, culture, and politics in rural Afghanistan. Marcus spends a good amount of time writing about ROE (Rules Of Engagement), the news media, and other issues soldiers have to take into consideration when dealing with enemies (and potential enemies) in battle. It was very eye-opening. 
  &lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.goodreads.com/review/list/1024334-doran-barton&quot;&gt;View all my reviews.&lt;/a&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/general/</uri>
		</author>
		<source>
			<title type="html">general</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/general/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/general//3</id>
			<updated>2010-02-20T09:00:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Tax Day Tea Parties</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/04/tax-day-tea-parties.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1660</id>
		<updated>2009-04-15T06:56:32+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;It&amp;#8217;s been a while since I&amp;#8217;ve posted anything to the Fozzolog and there are some good reasons for that: I&amp;#8217;ve pretty much withdrawn from most of my online habits and extracurricular activities to focus on much needed areas of my life, notably my marriage, my family, my health, and my spirituality. My hope is that once I get these all tuned up, I can consider returning to some of my favorite pastimes.&lt;/p&gt;

&lt;p&gt;With that being said, I don&amp;#8217;t think I can let April 15 pass without at least showing up at a &lt;a href=&quot;http://www.taxdayteapasrty.com/&quot;&gt;Tax Day Tea Party&lt;/a&gt; to show my support for the cause. So, if you&amp;#8217;re at the party in downtown Salt Lake City beginning at noon, you may see me there. &lt;/p&gt;

&lt;p&gt;Now, let me do my part to dispel some myths about these tea parties. &lt;/p&gt;

&lt;h2&gt;These tea parties are &lt;em&gt;not&lt;/em&gt; about President Obama&lt;/h2&gt;

&lt;p&gt;While President Obama&amp;#8217;s administration is doing almost everything wrong with regards to the economy, it would be wrong to say that people are protesting because of Obama. The problem is much larger than Barack Obama. It is the state of the federal government in general.&lt;/p&gt;

&lt;h2&gt;These tea parties are &lt;em&gt;not&lt;/em&gt; about taxes&lt;/h2&gt;

&lt;p&gt;They&amp;#8217;re not specifically about taxes. While the Obama administration will undoubtedly raise taxes on all of us one way or another to fund all their spending, the Tax Day Tea Parties are more about the federal government&amp;#8217;s out of control spending, saddling the country with ridiculous amounts of debt, not allowing poorly managed companies to fail (and subsequently file for bankruptcy), and other issues. &lt;/p&gt;

&lt;h2&gt;It&amp;#8217;s really about not listening to the people and not using common sense&lt;/h2&gt;

&lt;p&gt;Both major political parties have been actively engaged in anything and everything to gain political power at the expense of any sensible governing principles. You know, the kind espoused by the founders of our great country like &amp;#8220;the government should not go into debt more than can be paid off in one generation.&amp;#8221; These Tax Day Tea Parties on April 15 are the official shot across the federal government&amp;#8217;s bow to send a message that &amp;#8220;you work for us, remember?!&amp;#8221; and &amp;#8220;It&amp;#8217;s time to get back to basics!&amp;#8221;&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Book Review: &quot;Applied Economics: Thinking Beyond Stage One&quot; by Thomas Sowell</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/03/book-review-applied-economics-thinking-beyond-stage-one-by-thomas-sowell.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1659</id>
		<updated>2009-03-28T06:15:40+00:00</updated>
		<content type="html" xml:lang="en">&lt;a href=&quot;http://www.goodreads.com/book/show/3041.Applied_Economics_Thinking_Beyond_Stage_One?utm_medium=api&amp;amp;utm_source=blog_review&quot;&gt;&lt;img alt=&quot;Applied Economics: Thinking Beyond Stage One&quot; src=&quot;http://photo.goodreads.com/books/1161907322m/3041.jpg&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://www.goodreads.com/book/show/3041.Applied_Economics_Thinking_Beyond_Stage_One?utm_medium=api&amp;amp;utm_source=blog_review&quot;&gt;Applied Economics: Thinking Beyond Stage One&lt;/a&gt; by &lt;a href=&quot;http://www.goodreads.com/author/show/2056.Thomas_Sowell&quot;&gt;Thomas Sowell&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
  &lt;a href=&quot;http://www.goodreads.com/review/show/49007399?utm_medium=api&amp;amp;utm_source=blog_review&quot;&gt;&lt;h3&gt;My review&lt;/h3&gt;&lt;/a&gt;
  rating: 4 of 5 stars&lt;br /&gt;While on vacation in southern California, I hit a Barnes &amp;amp; Noble in Costa Mesa to look for something to read and something for my wife's birthday. I was looking for a book I'd read about like &lt;a href=&quot;http://fozzolog.fozzilinymoo.org/book/show/5249492.New_Deal_or_Raw_Deal_How_FDR_s_Economic_Legacy_Has_Damaged_America&quot; title=&quot;New Deal or Raw Deal?  How FDR's Economic Legacy Has Damaged America by Burton W. Folsom, Jr.&quot;&gt;New Deal or Raw Deal?  How FDR's Economic Legacy Has Damaged America&lt;/a&gt;, but the store I was at seemed chock-full of books about President Barack Obama, Global Warming, what was wrong with the Republican Party, and not much of anything that would interest a conservative like me. I did find, however, this book: &lt;a href=&quot;http://fozzolog.fozzilinymoo.org/book/show/3041.Applied_Economics_Thinking_Beyond_Stage_One&quot; title=&quot;Applied Economics  Thinking Beyond Stage One by Thomas Sowell&quot;&gt;Applied Economics: Thinking Beyond Stage One&lt;/a&gt;. 
&lt;br /&gt;
&lt;br /&gt;There was one small problem. My B&amp;amp;N discount card membership had expired one month prior. I'd only used it make one book purchase in that entire year and, coincidentally, it was at that same store in Costa Mesa. I wasn't about to blow more money on their stupid discount plan and I wasn't going to spend $35 on &quot;Applied Economics&quot;. I bought a different book instead and got something for my wife's birthday and went on my way.
&lt;br /&gt;
&lt;br /&gt;When I returned home, I ordered &lt;a href=&quot;http://fozzolog.fozzilinymoo.org/book/show/3041.Applied_Economics_Thinking_Beyond_Stage_One&quot; title=&quot;Applied Economics  Thinking Beyond Stage One by Thomas Sowell&quot;&gt;Applied Economics  Thinking Beyond Stage One&lt;/a&gt; from &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://www.amazon.com/&quot;&gt;Amazon&lt;/a&gt; along with some other books, all at much more reasonable prices. I decided to read this one first.
&lt;br /&gt;
&lt;br /&gt;&lt;a href=&quot;http://fozzolog.fozzilinymoo.org/author/show/2056.Thomas_Sowell&quot; title=&quot;Thomas Sowell&quot;&gt;Thomas Sowell&lt;/a&gt; is a very interesting guy. He's &lt;em&gt;scholar in residence&lt;/em&gt; at the Hoover Institution at Stanford University and has taught economics at Cornell, UCLA, Amherst and other schools. He's written several books on economics. This book is the revised (and enlarged) edition and aims to help members of the general public understand complex economic systems. 
&lt;br /&gt;
&lt;br /&gt;Shooting for the general public is a lofty goal. I don't think Sowell quite made it. It was hard for me to absorb some of this material and I think I've been exposed to more economics material than the average member of the general public. I think this is a testament to how difficult of a task Sowell had taken on rather than his inability to achieve his goal. 
&lt;br /&gt;
&lt;br /&gt;The book is divided into eight chapters, each tackling an issue from the standpoint of pure economics. The first chapter, &quot;Politics versus Economics,&quot; serves as a primer for the rest of the book and explains the &quot;stage one&quot; concept in the subtitle. Sowell states that most politicians (and many regular people, for that matter) fail to consider (or admit knowledge of) the long-term effects of economic policies (or any policies, for that matter.) This is, as Sowell puts it, &quot;stage one thinking.&quot; 
&lt;br /&gt;
&lt;br /&gt;Sowell's intention in this book is to help the reader understand the longer-term effects of legislation and policy decisions. 
&lt;br /&gt;
&lt;br /&gt;In the first chapter, Sowell explains:
&lt;br /&gt;
&lt;br /&gt;&lt;blockquote&gt;
&lt;br /&gt;Laws and policies that will produce politically beneficial effects before the next election are usually preferred to policies that will produce even better results some time after the next election. Indeed, policies that will produce good results before the next election may be preferred even if they can be expected to produce bad results afterward.
&lt;br /&gt;&lt;/blockquote&gt;
&lt;br /&gt;
&lt;br /&gt;As an example, a few paragraphs later:
&lt;br /&gt;
&lt;br /&gt;&lt;blockquote&gt;
&lt;br /&gt;... it is an open question whether drug prevention programs actually prevent or even reduce drug usage, whether public interest law firms actually benefit the public, or whether gun control laws actually control guns.
&lt;br /&gt;&lt;/blockquote&gt;
&lt;br /&gt;
&lt;br /&gt;Later, he examines the consequences of a series of wage and price controls instituted in the 1970s by the Nixon administration and upheld or carried further by the Ford and Carter administrations. What seemed like a good idea at the time resulted in terrible economic consequences in the long run. 
&lt;br /&gt;
&lt;br /&gt;Sowell points out that many politicians just feel an overwhelming need to &quot;do something&quot; whenever there is a crisis at hand.
&lt;br /&gt;
&lt;br /&gt;&lt;blockquote&gt;
&lt;br /&gt;Doing something almost always seems like such a good idea, to those who do not look beyond stage one, that they see no need to look back at history or to apply economics. The alternative to a &quot;do something&quot; approach is not to have the government always do absolutely nothing but,rather, to recognize that governments can only do something &lt;em&gt;specific&lt;/em&gt;-- and that these specifics must be assessed in terms of their specific erffects, both immediate and long-term, as well as the general effects of extended experimentation.
&lt;br /&gt;&lt;/blockquote&gt;
&lt;br /&gt;
&lt;br /&gt;The second chapter, &quot;Free and unfree labor&quot; begins by talking about the history of slavery. It was interesting reading a book by one of the handful of famous black people in the field of economics discussing the pros and cons of various types of slavery. Sowell actually points out that slaves in the southern United States prior to the U.S. Civil War were treated very well compared to other forced labor situations throughout history. 
&lt;br /&gt;
&lt;br /&gt;This chapter also touches on crime as an occuptation, and indentured servitude. 
&lt;br /&gt;
&lt;br /&gt;The third chapter dives into the economics of medical care. It's no surprise that Sowell makes a strong case against government-subsidized healthcare (i.e. &quot;Universal health care&quot;). His most pronounced argument is simply that government healthcare is another way for saying &quot;price controls&quot; and he already discussed the disastrous effects such controls have on a market in the first chapter. He shows these effects are obvious when you look at government health care systems in Great Britain, Canada, and other countries that offer such programs.
&lt;br /&gt;
&lt;br /&gt;He also discusses the economics of malpractice insurance, pharmaceutical drugs, drug advertising, and finally an extremely enlightening treatment on organ transplants and how much sense it makes to allow a legal market for organs for organ transplantation. That was really eye opening.
&lt;br /&gt;
&lt;br /&gt;Chapter Four discusses the economics of housing and illustrates how government action and regulation affects pricing. He also discusses rent control, creative financing programs, segregation in housing, and other housing issues.
&lt;br /&gt;
&lt;br /&gt;Chapter Five is titled &quot;Risky Business&quot; and is generally about the economics of insurance, but it goes beyond just the business of insurance. Most people, and certainly some politicians, don't consider risk issues when considering an issue. 
&lt;br /&gt;
&lt;br /&gt;One of my favorite sections of this chapter discusses how the family was traditionally the main risk reduction instutition in people's lives. This makes perfect sense when you consider how important family honor was, say, 2-300 years ago. 
&lt;br /&gt;
&lt;br /&gt;&lt;blockquote&gt;
&lt;br /&gt;...the family-- the oldest insurer of all -- cautions its members, both when they are growing up and one specific occasions afterward, against various kinds of risky behavior. When families had the burden of taking care of an unwed daughter's baby, there was more chaperoning, screening of her associates, and moral stigma attached to unwed motherhood. All these things declined or disappeared after mean of these costs were shifted to government agencies.
&lt;br /&gt;&lt;/blockquote&gt;
&lt;br /&gt;
&lt;br /&gt;Sowell attacks the issues of risk and insurance from a number of surprising and enlightening angles.
&lt;br /&gt;
&lt;br /&gt;In Chapter Six, Sowell takes on immigration. Expecting him to jump right into the overwhelming costs to the system the illegal immigrant issue burdens our government, I was a little taken back when I a rather comprehensive look at immigration across history. He discusses cultural implications, income implications, health implications, legal and illegal immigration, economic benefits and costs to immigrants and the society they are immigrating to. It is, perhaps, the most unbiased and clearly focused treatment on immigration I've ever read.
&lt;br /&gt;
&lt;br /&gt;In his conclusions, he does touch on some points specific to the hot issues in the US illegal immigration debate. For example, in comparing import of products versus import of labor:
&lt;br /&gt;
&lt;br /&gt;&lt;blockquote&gt;
&lt;br /&gt;When Americans buy a Toyota from Japan, the Toyota does not demand that the United States accomodate the Japanese language or that Americans adjust themselves to Japanese customs in their own country, much less introduce diseases into the American population. Moreover, Toyotas do not give birth to little Toyotas that can grow up with the problematic attitudes of some second generation immigrants.
&lt;br /&gt;&lt;/blockquote&gt;
&lt;br /&gt;
&lt;br /&gt;Chapter seven is about discrimination. It begins by educating the reader on the distinct differences between &lt;em&gt;bias&lt;/em&gt;, &lt;em&gt;prejudice&lt;/em&gt;, and &lt;em&gt;discrimination&lt;/em&gt;. Sowell points out that bias, prejudice, and discrimination are not &quot;bad&quot; by themselves. There are circumstances, history, and more criteria to consider before we can judge that they are bad.
&lt;br /&gt;
&lt;br /&gt;From there, Sowell discusses anti-discrimination laws, affirmative action regulations and legislation, and the pros and cons (mostly cons) of each. One statement from the summary section reads:
&lt;br /&gt;
&lt;br /&gt;&lt;blockquote&gt;
&lt;br /&gt;...those who fail to qualify for particular benefits are often said to be denied &quot;access&quot; or &quot;opportunity,&quot; when in fact they may have had as much access or opportunity as anyone else, but simply did not have the developed capabilities required...
&lt;br /&gt;...a mental test may be characterized as &quot;culturally biased&quot; if one group scores higher than another, as if it is impossible for different groups to have different interest, experience, upbringing, education, or other factors that would lead to a real difference being registered, rather than a biased assessment being made.
&lt;br /&gt;&lt;/blockquote&gt;
&lt;br /&gt;
&lt;br /&gt;Chapter eight discusses the economic development of nations. This chapter discusses the misnomers of &quot;developing nations,&quot; the effects of foreign aid, the importance of formal property rights, the geographic issues related to economies as well as bunch of other implications.
&lt;br /&gt;
&lt;br /&gt;As I mentioned at the beginning of this review, Sowell's book is pretty heady content, but I found it refreshing as it is so clear cut. All of his statements came down on the side of common sense. Isn't that what we all wish our policy makers employed more of?
  &lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.goodreads.com/review/list/1024334-doran-barton?utm_medium=api&amp;amp;utm_source=blog_review&quot;&gt;View all my reviews.&lt;/a&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">The cause of depressions  - an echo from 46 years ago</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/03/the-cause-of-depressions---an-echo-from-46-years-ago.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1658</id>
		<updated>2009-03-27T21:50:37+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;I am reading &amp;#8220;Capitalism: The Unknown Ideal&amp;#8221; by Ayn Rand. It is a collection of essays by Rand and other academics from the school of Objectism. One essay, &amp;#8220;Common Fallacies About Capitalsm,&amp;#8221; written in 1963 by Nathaniel Branden, grabbed my attention in a particularly intense manner.&lt;/p&gt;

&lt;p&gt;After typing for quite some time, I would like to present an excerpt from this essay: a section titled &amp;#8220;Depression&amp;#8221;. Boldface emphasis has been added by me.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Question: Are periodic depressions inevitable in a system of Laissez-Faire
  Capitalism?&lt;/p&gt;
  
  &lt;p&gt;&lt;strong&gt;It is characteristic of the enemies of capitalism that they denounce it for
  evils which are, in fact, the result not of capitalism but of statism: evils
  which result from and are made possible only by government intervention
  into the economy.&lt;/strong&gt;&lt;/p&gt;
  
  &lt;p&gt;I have discussed a flagrant example of this policy: the charge that
  capitalism leads to the establishment of coercive monopolies. The most
  notorious instance of this policy is the claim that capitalism, by its
  nature, inevitably leads to periodic depressions.&lt;/p&gt;
  
  &lt;p&gt;Statists repeatedly assert that depressions (the phenomenon of the
  so-called business cycle of &amp;#8220;boom and bust&amp;#8221;) are inherent in laissez-faire,
  and that the great rash of 1929 was the final proof of the failure of an
  unregulated, free-market economy. What is the truth of the matter?&lt;/p&gt;
  
  &lt;p&gt;A depression is a large-scale decline in production and trade; it is
  characterized by a sharp drop in productive output, in investment, and in
  the value of capital assets (plants, machinery, etc.). Normal business
  fluctuations, or a temporary decline in the rate of industrial expansion,
  do not constitute a depression. A depression is a nation-wide contraction
  of business activity&amp;#8212;and a general decline in the value of capital
  assets&amp;#8212;of major proportions.&lt;/p&gt;
  
  &lt;p&gt;There is nothing in the nature of a free-market economy to cause such an
  event. The popular explanations of depression as caused by
  &amp;#8220;over-production,&amp;#8221; &amp;#8220;under-consumption,&amp;#8221; monopolies, labor-saving decides,
  maldistribution, excessive accumulations of wealth, etc., have been
  exploded as fallacies many times.&lt;/p&gt;
  
  &lt;p&gt;Readjustments of economic activity, shifts of capital and labor from one
  industry to another, due to changing conditions, occur constantly under
  capitalism. This is entailed in the process of motion, growth, and progress
  that characterizes capitalism. But there always exists the possibility of
  profitable endeavor in one field or another, there is always the need and
  demand for goods, and all that can change is the kind of goods it becomes
  most profitable to produce.&lt;/p&gt;
  
  &lt;p&gt;In any one industry, it is possible for supply to exceed demand, in the
  context of all the other existing demands. In such a case, there is a drop
  in prices, in profitableness, in investment, and in employment in that
  particular industry; capital and labor tend to flow elsewhere, seeking more
  rewarding uses. Such an industry undergoes a period of stagnation as a
  result of unjustified, that is, uneconomic, unprofitable, unproductive
  investment.&lt;/p&gt;
  
  &lt;p&gt;&lt;strong&gt;In a free economy that functions on a gold standard, such unproductive
  investment is severely limited; unjustified speculation does not rise,
  unchecked, until it engulfs an entire nation. In a free economy, the supply
  of money and credit needed to finance business ventures is determined by
  &lt;em&gt;objective&lt;/em&gt; economic factors. it is the banking system that acts as the
  guardian of economic stability. The principles governing money supply
  operate to forbid large-scale unjustified investment.&lt;/strong&gt;&lt;/p&gt;
  
  &lt;p&gt;Most businesses finance their undertakings, at least in part, by means of
  bank loans. Banks function as an investment clearing house, investing the
  savings of their customers in those enterprises which promise to be most
  successful. Banks do not have unlimited funds to loan; they are limited in
  the credit they can extend by the amount of their gold reserves. In order
  to remain successful, to make profits and thus attract the savings of
  investors, banks much make their loans judiciously: they must seek out
  those ventures which they judge to be most sound and potentially profitable.&lt;/p&gt;
  
  &lt;p&gt;If, in a period of increasing speculation, banks are confronted with an
  inordinate number of requests for loans, then, in response to the shrinking
  availability of money, they (a) raise their interest rates, and (b)
  scrutinize more severely the ventures for which loans are requested setting
  more exacting standards of what constitutes a justifiable investment. As a
  consequence, funds are more difficult to obtain, and there is a temporary
  curtailment and contraction of business investment. Businessmen are often
  unable to borrow the funds they desire and have to reduce plans for
  expansion. The purchase of common stocks, which reflects the investors&amp;#8217;
  estimates of the future earnings of companies is similarly curtailed;
  overvalued stocks fall in price. businesses engaged in credit, are obliged
  to close their doors; a further waste of productive factors is stopped and
  economic errors are liquidated.&lt;/p&gt;
  
  &lt;p&gt;At worst, the economy may experience a mild recession, i.e. a slight
  general decline in investment and production. In an unregulated economy,
  readjustments occur quite swiftly, and then production and investment begin
  to rise again. The temporary recession is not harmful but beneficial; it
  represents an economic system in the process of correcting its errors, of
  curtailing disease and returning to health.&lt;/p&gt;
  
  &lt;p&gt;The impact of such a recession may be significantly felt in a few
  industries, but it does not wreck an entire economy. &lt;strong&gt;A nation-wide
  depression, such as occurred in the United States in the thirties, would
  not have been possible in a fully free society. It was made possible only
  by government intervention in the economy&amp;#8212;more specifically, by government
  manipulation of the money supply.&lt;/strong&gt;&lt;/p&gt;
  
  &lt;p&gt;The government&amp;#8217;s policy consisted, in essence, of anesthetizing the
  regulators, inherent in a free banking system, that prevent runaway
  speculation and consequent economic collapse.&lt;/p&gt;
  
  &lt;p&gt;&lt;strong&gt;All government intervention in the economy is based on the belief that
  economic laws need not operate, that principles of cause and effect can be
  suspended, that everything in existence is &amp;#8220;flexible&amp;#8221; and &amp;#8220;malleable,&amp;#8221;
  except a bureaucrat&amp;#8217;s whim, which is omnipotent; reality, logic, and
  economics much not be allowed to get in the way.&lt;/strong&gt;&lt;/p&gt;
  
  &lt;p&gt;This was the implicit premise that led to the establishment, in 1913, of
  the Federal Reserve System&amp;#8212;an institution with control (through complex
  and often indirect means) over the individual banks throughout the country.
  The Federal Reserve undertook to free individual banks from the
  &amp;#8220;limitations&amp;#8221; imposed on them by the amount of their own individual
  reserves, to free them from laws of the market&amp;#8212;and to arrogate to
  government officials the right to decide how much credit they wished to
  make available at what times.&lt;/p&gt;
  
  &lt;p&gt;A &amp;#8220;cheap money&amp;#8221; policy was the guiding idea and goal of these officials.
  Banks were no longer to be limited in making loans by the amount of their
  gold reserves. Interest rates were no longer to rise in response to
  increasing speculation and increasing demands for funds. Credit was to
  remain readily available&amp;#8212;until and unless the Federal Reserve decided
  otherwise.&lt;/p&gt;
  
  &lt;p&gt;The government argued that by taking control of money and credit out of
  the hands of private bankers, and by contracting or expanding credit at
  will, guided by considerations other than those influencing the &amp;#8220;selfish&amp;#8221;
  bankers, it could&amp;#8212;in conjunction with the other interventionist
  policies&amp;#8212;so control investment as to guarantee a state of virtually
  constant prosperity. &lt;strong&gt;Many bureaucrats believed that the government could
  keep the economy in a state of unending boom.&lt;/strong&gt;&lt;/p&gt;
  
  &lt;p&gt;To borrow an invaluable metaphor from Alan Greenspan: &lt;strong&gt;if, under
  laissez-faire, the banking system and the principles controlling the
  availability of funds act as a fuse that prevents a blowout in the
  economy&amp;#8212;then the government, through the Federal Reserve System, &lt;em&gt;put a
  penny in the fuse-box&lt;/em&gt;.&lt;/strong&gt; The result was the explosion known as the Crash of
  1929.&lt;/p&gt;
  
  &lt;p&gt;&lt;strong&gt;Throughout most of the 1920&amp;#8217;s, the government compelled banks to keep
  interest rates artificially and uneconomically low. As a consequence, money
  was poured into every sort of speculative venture. By 1928, the warning
  signals of danger were deeply apparent: unjustified investment was rampant
  and stocks were increasingly overvalued. The government chose to ignore
  these danger signals.&lt;/strong&gt;&lt;/p&gt;
  
  &lt;p&gt;A free banking system would have been compelled, by economic necessity, to
  put the brakes on this process of runaway speculation. credit and investment,
  in such a case, would be drastically curtailed; the banks which made
  unprofitable investments, the enterprises which proved unproductive, and
  those who dealt with them, would suffer&amp;#8212;but that would be all; the
  country as a whole would not be dragged own. However, the &amp;#8220;anarchy&amp;#8221; of a
  free banking system had been abandoned&amp;#8212;in favor of &amp;#8220;enlightened&amp;#8221;
  government planning.&lt;/p&gt;
  
  &lt;p&gt;The boom and the wild speculation&amp;#8212;which had preceded every major
  depression&amp;#8212;were allowed to rise unchecked, involving, in a widening
  network of malinvestments and miscalculations, the entire economic
  structure of the nation. People were investing in virtually everything and
  making fortunes overnight&amp;#8212;&lt;em&gt;on paper&lt;/em&gt;. Profits were calculated on
  hysterically exaggerated appraisals of the future earnings of companies.
  Credit was extended with promiscuous abandon, on the premise that somehow
  the goods would be there to back it up. It was like the policy of a man who
  passes out rubber checks, counting on the hope that he will somehow find a
  ay to obtain the necessary money and to deposit it in the bank before
  anyone presents his checks for collection.&lt;/p&gt;
  
  &lt;p&gt;But A is A&amp;#8212;and reality is not infinitely elastic. In 1929, the country&amp;#8217;s
  economic and financial structure had become impossibly precarious. By
  the time the government finally and frantically raised the interest rates,
  it was too late. It is doubtful whether anyone can state with certainty what
  events first set off the panic&amp;#8212;and it does not matter: the crash had
  become inevitable; any number of events could have pulled the trigger. But
  when the news of the first bank and commercial failures began to spread,
  uncertainty spread across the country in widening waves of terror. People
  began to sell their stocks, hoping to get out of the market with their
  gains, or to obtain the money they suddenly needed to pay bank loans that
  were being called in&amp;#8212;and other people, seeing this, apprehensively began
  to sell &lt;em&gt;their&lt;/em&gt; stocks&amp;#8212;and, virtually overnight, an avalanche hurled the
  stock market downward, prices collapsed, securities became worthless, loans
  were called in, many of which could not be paid, the value of capital
  assets plummeted sickeningly, fortunes were wiped out, and, by 1932,
  business activity had come almost to a halt. the law of causality had
  avenged itself.&lt;/p&gt;
  
  &lt;p&gt;Such, in essence, was the nature and cause of the 1929 depression. &lt;/p&gt;
  
  &lt;p&gt;It provides one of the most eloquent illustrations of the disastrous
  consequences of a &amp;#8220;planned&amp;#8221; economy. &lt;strong&gt;In a free economy, when an individual
  businessman makes an error of economic judgment, &lt;em&gt;he&lt;/em&gt; (and perhaps those
  who immediately deal with him) suffers the consequences; in a controlled
  economy, when a central planner makes an error of economic judgment, the
  whole country suffers the consequences.&lt;/strong&gt;&lt;/p&gt;
  
  &lt;p&gt;But it was not the Federal Reserve, it was not the government intervention
  that took the blame for the 1929 depression&amp;#8212;it was capitalism.
  Freedom&amp;#8212;cried statists of every breed and sect&amp;#8212;had had its chance and had
  failed. The voices of the few thinkers who pointed to the real cause of the
  evil were drowned out in the denunciation of businessmen, of the profit
  motive, of capitalism.&lt;/p&gt;
  
  &lt;p&gt;&lt;strong&gt;Had men chosen to understand the cause of the crash, the country would have
  been spared much of the agony that followed. The depression was prolonged
  for tragically unnecessary years by the same evil that caused it: government
  controls and regulations.&lt;/strong&gt;&lt;/p&gt;
  
  &lt;p&gt;Contrary to popular misconception, controls and regulation began long
  before the New Deal; in the 1920&amp;#8217;s, the mixed economy was already an
  established fact of American life. But the trend toward statism began to
  move faster under the Hoover Administration&amp;#8212;and, with the advent of
  Roosevelt&amp;#8217;s New Deal, it accelerated at an unprecedented rate. The economic
  adjustments needed to bring the depression to an end were prevented from
  taking place&amp;#8212;by the imposition of strangling controls, increased taxes,
  and labor legislation. This last had the effect of forcing wage rates to
  unjustifiably high levels, thus raising the businessman&amp;#8217;s costs at
  precisely the time when costs needed to be lowered, if investment and
  production were to revive.&lt;/p&gt;
  
  &lt;p&gt;The National Industrial Recovery Act, the Wagner Act, and the abandonment
  of the gold standard (with the government&amp;#8217;s subsequent plunge into
  inflation and an orgy of deficit spending) were only three of the many
  disastrous measures enacted by the New Deal for the avowed purpose of
  pulling the country out of the depression; all had the opposite effect. &lt;/p&gt;
  
  &lt;p&gt;As Alan Greenspan points out in &amp;#8220;Stock Prices and Capital Evaluation,&amp;#8221; the
  obstacle to business recovery did not consist exclusively of the specific
  New Deal legislation passed; more harmful still was the general atmosphere
  of &lt;em&gt;uncertainty&lt;/em&gt; engendered by the Administration. &lt;strong&gt;Men had no way to know
  what law or regulation would descend on their heads at any moment; they had
  no way to know what sudden shifts of direction government policy might
  take; they had no way to plan long-range.&lt;/strong&gt;&lt;/p&gt;
  
  &lt;p&gt;&lt;strong&gt;To act and produce, businessmen require &lt;em&gt;knowledge&lt;/em&gt;, the possibility of
  rational calculation, not &amp;#8220;faith&amp;#8221; and &amp;#8220;hope&amp;#8221;&amp;#8212;above all, not &amp;#8220;faith&amp;#8221; and
  &amp;#8220;hope&amp;#8221; concerning the unpredictable twistings within a bureaucrat&amp;#8217;s head.&lt;/strong&gt;&lt;/p&gt;
  
  &lt;p&gt;Such advances as business was able to achieve under the New Deal collapsed
  in 1937&amp;#8212;as a result of intensification of uncertainty regarding what the
  government might choose to do next. Unemployment rose to more than ten
  million and business activity fell almost to the low point of 1932, the
  worst year of the depression.&lt;/p&gt;
  
  &lt;p&gt;It is part of the official New Deal mythology that Roosevelt &amp;#8220;got us out of
  the depression.&amp;#8221; &lt;strong&gt;How was the problem of the depression finally &amp;#8220;solved&amp;#8221;? By
  the favorite expedient of all statists in times of emergency: a war.&lt;/strong&gt;&lt;/p&gt;
  
  &lt;p&gt;The depression precipitated by the stock market crash of 1929 was not the
  first in American history&amp;#8212;though it was incomparably more severe than
  anything that had preceded it. &lt;strong&gt;If one studies the earlier depressions, the
  same basic cause and common denominator will be found: in one form or
  another, government manipulation of the money supply&lt;/strong&gt;. It is typical the
  manner in which interventionism grows that the Federal Reserve System was
  instituted as a proposed antidote against those earlier depressions&amp;#8212;which
  were themselves products of monetary manipulation by the government.&lt;/p&gt;
  
  &lt;p&gt;The financial mechanism of an economy is the sensitive center, the living
  heart, of business activity. In no other area can government intervention
  produce quite such disastrous consequences. For a general discussion of the
  business cycle and its relation to government manipulation of the money
  supply, see Ludwig von Mises, &lt;em&gt;Human Action&lt;/em&gt;. &lt;/p&gt;
  
  &lt;p&gt;&lt;strong&gt;One of the most striking facts of history is men&amp;#8217;s failure to learn from
  it.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Basic questions about the solution</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/03/basic-questions-about-the-solution.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1657</id>
		<updated>2009-03-23T21:56:14+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;Wow.&lt;/p&gt;

&lt;p&gt;That&amp;#8217;s about all I can think of. Wow.&lt;/p&gt;

&lt;p&gt;John Stossel&amp;#8217;s latest 20/20 piece on the so-called economic stimulus features lawmakers, economists, lots of media darlings, and simple, simple questions. After watching this, how can you not wonder what the hell our elected &amp;#8220;leaders&amp;#8221; are thinking?&lt;/p&gt;

&lt;p&gt;(Note: After I posted this, I discovered the video I original watched was only one of &lt;em&gt;six&lt;/em&gt; parts, so here you go!)&lt;/p&gt;

&lt;p&gt;Part 1 of 6: &lt;a href=&quot;http://www.youtube.com/watch?v=CiUy5n8gkJs&quot;&gt;http://www.youtube.com/watch?v=CiUy5n8gkJs&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;Part 2 of 6: &lt;a href=&quot;http://www.youtube.com/watch?v=lZl9AMnwio0&quot;&gt;http://www.youtube.com/watch?v=lZl9AMnwio0&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;Part 3 of 6: &lt;a href=&quot;http://www.youtube.com/watch?v=wPTjO3MjdiM&quot;&gt;http://www.youtube.com/watch?v=wPTjO3MjdiM&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;Part 4 of 6: &lt;a href=&quot;http://www.youtube.com/watch?v=LOAzvWB7mHo&quot;&gt;http://www.youtube.com/watch?v=LOAzvWB7mHo&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;Part 5 of 6: &lt;a href=&quot;http://www.youtube.com/watch?v=lA1Y61xdCX4&quot;&gt;http://www.youtube.com/watch?v=lA1Y61xdCX4&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;Part 6 of 6: &lt;a href=&quot;http://www.youtube.com/watch?v=2y4Y9dWMQzE&quot;&gt;http://www.youtube.com/watch?v=2y4Y9(dWMQzE&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Back in time via audio cassettes - Digital Village</title>
		<link href="http://fozzolog.fozzilinymoo.org/general/2009/03/back-in-time-via-audio-cassettes---digital-village.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/general//3.1656</id>
		<updated>2009-03-22T07:55:35+00:00</updated>
		<content type="html" xml:lang="en-us">&lt;p&gt;I recently decided to embark on a journey of digitizing a box full of audio cassettes. Those who knew me growing up&amp;#8212;especially when I was in junior high and earlier&amp;#8212;know I was always goofing off with a microphone and a tape recorder. I operated a pirate radio station at AM 1630 for a while too. It&amp;#8217;s broadcast radius covered most of the town of Granger, UT, where I lived.&lt;/p&gt;

&lt;p&gt;One of the nuggets I found was actually much later than that. In 1995, I had just published (self-published) a book about the World Wide Web titled &lt;em&gt;Fozziliny George Moo&amp;#8217;s Guide To The World Wide Web&lt;/em&gt; and was asked by a friend to appear on his radio program.&lt;/p&gt;

&lt;p&gt;Now, about this friend: His name is Doran Barons. Freaky, right?! My name is Doran Barton! His name is Doran Barons!&lt;/p&gt;

&lt;p&gt;He saw a letter I had written to the editors of Wired magazine a few months before (which was subsequently published in Wired) and sent me e-mail to introduce himself. This triggered a series of e-mail exchanged between us which led to him inviting me on his radio program, &lt;a href=&quot;http://www.digitalvillage.org/&quot;&gt;Digital Village&lt;/a&gt; a weekly radio program on &lt;a href=&quot;http://www.kpfk.org/&quot;&gt;KFPK&lt;/a&gt;, 90.7FM in Los Angeles, CA.&lt;/p&gt;

&lt;p&gt;Digital Village has an online MP3 archive of their radio program going back to 2000 and they&amp;#8217;ve hosted some impressive guests on their radio program like Neal Stephenson (one of my favorite authors), Bruce Sterling (another of my favorite authors), Steve Wozniak (who started Apple with Steve Jobs), Bruce Schneier, and Lawrence &amp;#8220;Larry&amp;#8221; Lessig. It&amp;#8217;s cool that I preceded such giants. :-)&lt;/p&gt;

&lt;p&gt;After I did the telephone interview with the radio program, Doran sent me a cassette tape of the program and I&amp;#8217;ve digitized it (with Doran&amp;#8217;s permission). So, if anyone&amp;#8217;s interested in taking a peek back in time to 1995 to hear about the World Wide Web in its relative infancy, here it is:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.xmission.com/~fozz/podcast/19950917-digital_village.mp3&quot;&gt;http://www.xmission.com/~fozz/podcast/19950917-digital_village.mp3&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It&amp;#8217;s clear I was fresh from doing lots of research for my book. It&amp;#8217;s fun listening to me advise one of the show&amp;#8217;s callers to contact the &amp;#8220;site&amp;#8221; he was getting his dialup access through to see if they offered anything like PPP, SLIP, or TIA so he could &amp;#8220;extend the Internet to his home computer over his dialup line&amp;#8221; or he could use &lt;code&gt;lynx&lt;/code&gt; at the shell prompt on the Unix system he was dialing into.&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/general/</uri>
		</author>
		<source>
			<title type="html">general</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/general/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/general//3</id>
			<updated>2010-02-20T09:00:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">More Sowell: Social Insurance</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/03/more-sowell-social-insurance.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1655</id>
		<updated>2009-03-20T05:42:55+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;This book&amp;#8212; &lt;a href=&quot;http://www.amazon.com/Applied-Economics-Thinking-Beyond-Stage/dp/0465003451/&quot;&gt;Applied Economics&lt;/a&gt; by &lt;a href=&quot;http://www.tsowell.com/&quot;&gt;Thomas Sowell&lt;/a&gt;&amp;#8212; is just chock full of gems. A lot of this stuff I already was aware of, but Sowell frames it exceptionally well. &lt;/p&gt;

&lt;p&gt;Here is another blurb from the chapter on insurance which addresses &lt;em&gt;social insurance&lt;/em&gt; (e.g. social security), which isn&amp;#8217;t a &lt;em&gt;real&lt;/em&gt; insurance at all:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Government-run social insurance programs seldom have enough assets to cover their liabilities, but rely instead of making current payments out of current receipts. These are called pay-as-you-go programs&amp;#8212; and sometimes they are called pyramid schemes. Pyramid schemes are privately run pay-as-you-go plans&amp;#8212; and they are illegal because of their high risk of default and the opportunities for those who run them to take part of the money for themselves. The most famous pyramid scheme was run by a man named Charles Ponzi, who went to jail back in 1920. He used the same principles behind the pension plans of many Western governments today.&lt;/p&gt;
  
  &lt;p&gt;Ponzi had promised, within 90 days, to double the investments of those who paid into his program. The first investors who were not deterred by warnings from skeptics  were in fact rewarded by having their investments pay off double in 90 days. Ponzi simply paid the first wave of investors with money from the second wave of investors, and the second wave from the even larger number of those in the third wave, as enthusiasm for his plan spread. So long as the number of people attracted to this plan formed an expanding pyramid, both the earlier investors and Ponzi profited handsomely. But, once the pyramid stopped growing, there was no way to continue to pay off those who sent Ponzi their money, since his scheme created no new wealth.&lt;/p&gt;
  
  &lt;p&gt;The American Social Security pension system and similar government pension systems in the countries of the European Union likewise take in payments from people who are working and use that money to pay the pensions of people who have retired&amp;#8212; paying the first generation who paid into these pension plans with money received from the second generation, and so on. &lt;/p&gt;
  
  &lt;p&gt;&amp;#8230;&lt;/p&gt;
  
  &lt;p&gt;Those who warned that these government pension plans were essentially Ponzi schemes without enough assets to cover their liabilities&amp;#8212; that they were &amp;#8220;actuarially unsound&amp;#8221; in the financial jargon&amp;#8212; were either not believed or were brushed aside for having made objections that were theoretically correct by in practice irrelevant. One of those who brushed these objections aside was Professor Paul Samuelson of MIT, the first American winner of the Nobel Prize in economics:&lt;/p&gt;
  
  &lt;blockquote&gt;
    &lt;p&gt;The beauty of social insurance is that it is actuarially unsound. Everyone who reaches retirement age is given benefit privileges that far exceed anything he has paid in&amp;#8230; Always there are more youths than old folks in a growing population. More important, with real incomes growing at some 3% a year, the taxable base upon which benefits rest in any period are much greater than the taxes paid historically by the generations now retired&amp;#8230; A growing nation is the greatest Ponzi game ever contrived.&lt;/p&gt;
  &lt;/blockquote&gt;
  
  &lt;p&gt;By the end of the twentieth century, however, the day of reckoning began to loom on the horizon for these government pension programs, as it had for the original Ponzi scheme. Contrary to Professor Samuelson&amp;#8217;s assertion, there are not &lt;em&gt;always&lt;/em&gt; &amp;#8220;more youths than old folks.&amp;#8221;  As birth rates declined in the Western world and life expectancy increased, vastly increasing the number of years in which pensions would have to paid to growing numbers of people, it became painfully clear that either tax rates were going to have to rise by very large amounts or the benefits would have to be reduced in one way or another &amp;#8212; or both&amp;#8212; or the system would simply run out of money.&lt;/p&gt;
&lt;/blockquote&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Sowell on The Great Depression</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/03/sowell-on-the-great-depression.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1654</id>
		<updated>2009-03-19T02:00:20+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;Continuing with more excellent excerpts from &lt;a href=&quot;http://www.amazon.com/Applied-Economics-Thinking-Beyond-Stage/dp/0465003451/&quot;&gt;Applied Economics&lt;/a&gt; by &lt;a href=&quot;http://www.tsowell.com/&quot;&gt;Thomas Sowell&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;This one is on Government intervention in depressions and comes from the chapter titled &lt;em&gt;Politics versus Economics&lt;/em&gt;:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Prior to the Great Depression of the 1930s, there was no tradition of federal government intervention to get the United States out of depressions. Roosevelt&amp;#8217;s predecessor, President Herbert Hoover, was the first President to take on that responsibility, and many of his interventions were later simply carrier much further by FDR, despite a political myth that persisted for years that Hoover was a &amp;#8220;do nothing&amp;#8221; President. In much later years, even prominent former advisers of the Roosevelt administration admitted that FDR&amp;#8217;s New Deal was a further extension of what Hoover had been doing. Herbert Hoover was in fact the first President to decide to &amp;#8220;do something&amp;#8221; on a national scale to try to extricate the country from a depression, though there is no evidence that what he did made things any better and there is considerable reason to believe that they made things worse.&lt;/p&gt;
  
  &lt;p&gt;Earlier in the 1920s, a sharp decline in the economy had been largely ignored by President Calvin Coolidge&amp;#8212; and the economy pulled out of its decline in relatively short time, as it had pulled out of other such declines in the past. There was nothing inevitable about a stock market crash leading to a decade-long depression. Moreover, as Professor Peter Temin or M.I.T. has noted, the 1929 stock market crash was not unique:&lt;/p&gt;
  
  &lt;blockquote&gt;
    &lt;p&gt;The stock market has gone up and down many times since then without producing a similar movement in income. The most obvious parallel was in the fall of 1987. The isomorphism was uncanny. The stock market fell almost exactly the same amount on almost exactly the same dates.&lt;/p&gt;
  &lt;/blockquote&gt;
  
  &lt;p&gt;Another study referred to the October 19, 19878 decline as &amp;#8220;by far the worst precentage decline day in the stock market&amp;#8217;s history.&amp;#8221; In 1987, however, President Ronald Reagan did not react as Presidents Hoover and Roosevelt had in the wake of the 1929 stock market crash. Instead, like Coolidge before him (whom he admired,) Reagan let the economy recover on its own. Far from leading to a Great Depression, the recovery began one of the longest periods of sustained high employment, low inflation, and general prosperity in American history. At the time, however, President Reagan was sharply criticized in the &lt;em&gt;Washington Post&lt;/em&gt; for a &amp;#8220;do-nothing, let-the-problems-accumulate, Calvin Coolidge act of the 1980s&amp;#8221; and was denounced in the &lt;em&gt;New York Times&lt;/em&gt; for having &amp;#8220;squandered the opportunity&amp;#8221; to take action.&lt;/p&gt;
&lt;/blockquote&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Notable excerpts from &quot;Applied Economics&quot;</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/03/notable-excerpts-from-applied-economics.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1653</id>
		<updated>2009-03-18T00:56:02+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;I am currently reading &lt;a href=&quot;http://www.amazon.com/Applied-Economics-Thinking-Beyond-Stage/dp/0465003451/&quot;&gt;Applied Economics&lt;/a&gt; by &lt;a href=&quot;http://www.tsowell.com/&quot;&gt;Thomas Sowell&lt;/a&gt; and have found it &lt;em&gt;full&lt;/em&gt; of awesome quotes and data. For example,  this from the chapter section on insurance and risk:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;As a matter of financial self-protection, both families and insurance companies must seek to discourage risky behavior in one way or another. For a government agency, however, financed by taxpayers&amp;#8217; money, there is no such urgency about discouraging the increased risks that people may take when those risks are covered by others. Moreover, the agency gets its biggest political support from helping those suffering the consequences of the risks they have taken, however unwisely, not by criticizing them.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Stay tuned for more great nuggets.&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Book Review: The Survivors Club</title>
		<link href="http://fozzolog.fozzilinymoo.org/general/2009/03/book-review-the-survivors-club.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/general//3.1651</id>
		<updated>2009-03-12T07:00:08+00:00</updated>
		<content type="html" xml:lang="en-us">&lt;a href=&quot;http://www.goodreads.com/book/show/4731479.The_Survivors_Club_The_Secrets_and_Science_that_Could_Save_Your_Life?utm_medium=api&amp;amp;utm_source=blog_review&quot;&gt;&lt;img alt=&quot;The Survivors Club: The Secrets and Science that Could Save Your Life&quot; src=&quot;http://ecx.images-amazon.com/images/I/51Co0bFF3ML._SL160_.jpg&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://www.goodreads.com/book/show/4731479.The_Survivors_Club_The_Secrets_and_Science_that_Could_Save_Your_Life?utm_medium=api&amp;amp;utm_source=blog_review&quot;&gt;The Survivors Club: The Secrets and Science that Could Save Your Life&lt;/a&gt; by &lt;a href=&quot;http://www.goodreads.com/author/show/153697.Ben_Sherwood&quot;&gt;Ben Sherwood&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
  &lt;a href=&quot;http://www.goodreads.com/review/show/47967480?utm_medium=api&amp;amp;utm_source=blog_review&quot;&gt;&lt;h3&gt;My review&lt;/h3&gt;&lt;/a&gt;
  rating: 3 of 5 stars&lt;br /&gt;&lt;p&gt;I picked up this book at the John Wayne Airport after hearing &lt;a href=&quot;http://fozzolog.fozzilinymoo.org/author/show/153697.Ben_Sherwood&quot; title=&quot;Ben Sherwood&quot;&gt;Ben Sherwood&lt;/a&gt; on &lt;a href=&quot;http://fozzolog.fozzilinymoo.org/author/show/188932.Glenn_Beck&quot; title=&quot;Glenn Beck&quot;&gt;Glenn Beck&lt;/a&gt;'s radio show and seeing him on Glenn's TV show.&lt;/p&gt;

&lt;p&gt;Sherwood's book approaches survival from multiple angles and I appreciated that. Whatever you might think this book is, it probably is just a bit and a whole lot of what you didn't expect. I found most of it to be anecdotal and a bit fluffy, which made it a very easy read, but Sherwood does shower some dense statistics throughout the book for you to dig through that make the subject matter more appealing to the left brain.&lt;/p&gt;
&lt;p&gt;Much of the book is the result of interviews with and stories about people who have encounter dramatic and traumatic events in their lives whether it be an airplane crash, a lion attack, captivity inside a Nazi concentration camp, or miraculously escaping one of the NY World Trade Center towers after the airplane has hit the building.&lt;/p&gt;
&lt;p&gt;Combining advice from survival experts, doctors, the survivors themselves, and others, Sherwood comes up with a variety of intriguing possibilities for why certain people survive. In addition, he includes recommendations for people wanting to boost their potential survivability. He addresses the issues of good luck vs. bad luck and how strategic thinking and doing some simple preparatory planning for the worst can save you from freezing or &quot;becoming a statue&quot; when the unexpected happens. &lt;/p&gt;
&lt;p&gt;So, in conclusion, a very easy read partly because it's well written and partly because the subject matter is a little superfluous and fluffy. It's less dense than &lt;a href=&quot;http://fozzolog.fozzilinymoo.org/book/show/1202.Freakonomics_Rev_Ed_A_Rogue_Economist_Explores_the_Hidden_Side_of_Everything&quot; title=&quot;Freakonomics Rev Ed  A Rogue Economist Explores the Hidden Side of Everything by Steven D. Levitt&quot;&gt;Freakonomics&lt;/a&gt;, but just as interesting to read.&lt;/p&gt;
  &lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.goodreads.com/review/list/1024334-Doran-Barton?utm_medium=api&amp;amp;utm_source=blog_review&quot;&gt;View all my reviews.&lt;/a&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/general/</uri>
		</author>
		<source>
			<title type="html">general</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/general/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/general//3</id>
			<updated>2010-02-20T09:00:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Engadget editor shows off Palm Pre on Jimmy Falon show</title>
		<link href="http://fozzolog.fozzilinymoo.org/tech/2009/03/engadget-editor-shows-off-palm-pre-on-jimmy-falon-show.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/tech//1.1650</id>
		<updated>2009-03-10T16:02:07+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;&lt;span class=&quot;mt-enclosure mt-enclosure-image&quot;&gt;&lt;img alt=&quot;Palm Pre&quot; src=&quot;http://fozzolog.fozzilinymoo.org/tech/palm_pre_4.jpg&quot; width=&quot;158&quot; height=&quot;290&quot; class=&quot;mt-image-left&quot; /&gt;&lt;/span&gt;I&amp;#8217;m very stoked about the &lt;a href=&quot;http://www.palm.com/us/products/phones/pre/&quot;&gt;Palm Pre&lt;/a&gt;. Last night on Jimmy Falon&amp;#8217;s talk show, &lt;a href=&quot;http://www.engadget.com&quot;&gt;Engadget&lt;/a&gt; editor Joshua Topolsky and &amp;#8220;Jim&amp;#8221; shared love for the forthcoming smartphone. See the video &lt;a href=&quot;http://www.engadget.com/2009/03/10/in-case-you-missed-late-night-with-jimmy-fallon-last-night/&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/tech/</uri>
		</author>
		<source>
			<title type="html">tech</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/tech/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/tech//1</id>
			<updated>2009-12-03T23:15:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Anti-GOP? Anti-Dem? It's really about PRINCIPLES!</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/03/anti-gop-anti-dem-its-really-about-principles.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1649</id>
		<updated>2009-03-10T15:49:02+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;&lt;img src=&quot;http://fozzolog.fozzilinymoo.org/images/govt_wtf-200x300.png&quot; alt=&quot;GOVT WTF?!&quot; width=&quot;200&quot; height=&quot;300&quot; align=&quot;right&quot; /&gt;Mona Charen wrote an article titled &amp;#8220;&lt;a href=&quot;http://article.nationalreview.com/?q=MTRiMmU0NGQ4MzBjNzgxYTU4MDlkYjVhYjZmZDU3MmE=&quot;&gt;American Dependence - Where is the responsibility?&lt;/a&gt;&amp;#8221; that I saw at &lt;a href=&quot;http://www.nro.com/&quot;&gt;National Review Online&lt;/a&gt; which addresses the issue of which political party to blame for soaring government deficits. &lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;For eight years, the Democrats have entertained us with a great song and dance about deficits. It is now evident that they were, not to put too fine a point on it, insincere. &lt;/p&gt;
  
  &lt;p&gt;On the other hand, some of us have been calling out Republicans, in good times and bad, for abandoning principle. In 2003, for example, I wrote: &amp;#8220;When it comes to spending, alas, the Republicans are hardly Eagle Scouts either. The ideal of smaller government is in eclipse at the moment. The terror attacks have been seized as an opportunity to lard on new spending for favored constituencies. Citizens Against Government Waste estimates that the federal government will spend $22.5 billion on 9,362 pork-barrel projects in 2003.&amp;#8221; And in a 2005 column titled &amp;#8220;Who Are These Republicans,&amp;#8221; I wrote &amp;#8220;And now President Bush, whose greatest sin in his first term was failure to wield the veto pen, has joined enthusiastically in the legalized looting of the taxpayer.&amp;#8221;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;She opens the article with some mighty embarrassing quotes from Speaker Pelosi in 2006:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&amp;#8220;While President Bush continues to trumpet his so-called &amp;#8216;economic achievements,&amp;#8217; the Bush administration confirmed today that the budget deficit for 2006 will be one of the largest in our nation&amp;#8217;s history. President Bush&amp;#8217;s failed economic policies have resulted in budgets that are drastically out of balance and skyrocketing debt. Budget deficits translate into higher interest rates, which means that mortgages cost more, credit-card debt grows, and student loans cost more&amp;#8230; . Democrats know how to restore fiscal discipline with tough policies of pay-as-you-go budgeting, no new deficit spending &amp;#8230; .&amp;#8221;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Ahhh. It would be hilarious if it weren&amp;#8217;t&amp;#8230; you know&amp;#8230; our money.&lt;/p&gt;

&lt;p&gt;I think every elected official in the federal government needs one of those fancy reset buttons Hillary&amp;#8217;s been giving out in Europe.&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Thoughts on socialism</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/03/thoughts-on-socialism.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1648</id>
		<updated>2009-03-09T05:37:37+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;Beginning in 2007 during the beginning of the 2008 presidential election,
many on the right began predicting that the election of one of the
viable democratic contenders for president &amp;#8212; Clinton and Obama &amp;#8212; would
result in a significant move toward a socialist state in the US. Some of
the more&amp;#8230; dramatic ones on the left, including my idol &lt;a href=&quot;http://www.glennbeck.com/&quot;&gt;Glenn
Beck&lt;/a&gt;, have succeeded in bluring the lines
between socialism and communism. &lt;/p&gt;

&lt;p&gt;Now, I&amp;rsquo;m sure many pundits and commentators, including the amazing,
wonderful and entertaining Beck, really do know the difference between the
two, but their flippant banter only confuses people. &lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.reason.com/news/show/132054.html&quot;&gt;This article&lt;/a&gt; Cathy Young over at
&lt;a href=&quot;http://www.reason.com/&quot;&gt;Reason magazine&lt;/a&gt; explains the rhetoric pretty well
and makes the observation that while Obama&amp;rsquo;s administration is
certainly friendly to larger government chock full of social programs, this
isn&amp;rsquo;t a course change by any means.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;A headline in The Weekly Standard warns of &amp;#8220;The Return of Big
  Government&amp;#8221;; but big government never left, and certainly not under Bush.
  Obama may be seeking to reverse Ronald Reagan&amp;#8217;s legacy; but, as
  conservative economist Bruce Bartlett argued persuasively in his 2006 book,
  Impostor, that legacy was already betrayed by Bush. Many people will tell
  you we officially became &amp;#8220;the U.S.S.A.&amp;#8221; with the bank bailout in October
  2008.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Since the 2008 presidential election cycle was in full swing, Glenn Beck has been
saying that both Republican and Democrat parties were both in favor of
&amp;#8220;taking us to the same place, only one is taking us in a steam train and
the other is taking us in a jet plane.&amp;#8221;&lt;/p&gt;

&lt;p&gt;It seems any time philosophical labels are brought up on the Internet, &lt;a href=&quot;http://en.wikipedia.org/wiki/Godwin%27s_Law&quot;&gt;bad
things tend to happen&lt;/a&gt;. I
think part of the reason there has been so much back and forth discussion
about these labels is due to Jonah Goldberg&amp;rsquo;s book &lt;a href=&quot;http://www.amazon.com/Liberal-Fascism-American-Mussolini-Politics/dp/0385511841&quot;&gt;Liberal Fascism:
The Secret History of the American Left, From Mussolini to the Politics of
Meaning&lt;/a&gt;.
People have ridiculed Jonah, but I think he&amp;rsquo;s dead-on. &lt;/p&gt;

&lt;p&gt;Many people believe Hitler was the epitome of fascism and that fascism is an
extreme form of right-wing thinking &amp;#8212; that had George W. Bush been able to 
go full-bore and do whatever he wanted as much as he wanted, we would have
seen the second coming of Hitler. (Note: Bush is a poor analogy since he
is, by far, a moderate Republican and not the poster-boy for the
far-right.) Jonah Goldberg sets the record straight and I have to wonder
why we ever wondered in the first place. After all, the Nazis stood for the
&amp;#8220;National Socialist German Workers&amp;#8217; Party&amp;#8221;. &amp;#8220;Socialist&amp;#8221; and &amp;#8220;Workers&amp;#8221; should be the key words there. That&amp;rsquo;s something to think about.&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">A nugget of truth about bailouts and unions</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/03/a-nugget-of-truth-about-bailouts-and-unions.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1647</id>
		<updated>2009-03-07T19:06:44+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;As President Obama and the US Congress continue to, in my opinion, destroy
wealth-production in our country and severely handicap our ability to
recover from the economic advertsity we&amp;#8217;ve gotten into, I&amp;#8217;m encouraged by
leaders of business, like Gregory Knox, who obviously get it.&lt;/p&gt;

&lt;p&gt;The new administration seems set on continuing to bail out failing
businesses and providing support to labor unions &amp;#8212; big reasons
these businesses are failing!&lt;/p&gt;

&lt;p&gt;Here&amp;#8217;s a letter from a president of General Motors to his employees in 2008:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Dear Employee,&lt;/p&gt;
  
  &lt;p&gt;Next week, Congress and the current Administration will determine whether to provide immediate support to the domestic auto industry to help it through one of the most difficult economic times in our nation&amp;#8217;s history. Your elected officials must hear from all of us now on why this support is critical to our continuing the progress we began prior to the global financial crisis&amp;#8230; As an employee, you have a lot at stake and continue to be one of our most effective and passionate voices. I know GM can count on you to have your voice heard.&lt;/p&gt;
  
  &lt;p&gt;Thank you for your urgent action and ongoing support.&lt;/p&gt;
  
  &lt;p&gt;Troy Clarke&lt;br /&gt;
  President&lt;br /&gt;
  General Motors North America&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Mr. Knox wrote a letter back to Mr. Clarke in December 2008:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;In response to your request to call legislators and ask for a bailout for the United States automakers please consider the following, and please also pass this onto Troy Clark, the president of General Motors North America for me.&lt;/p&gt;
  
  &lt;p&gt;You are both infected with the same entitlement mentality that has bred like cancerous germs in UAW halls for the last countless decades, and whose plague is now sweeping the nation, awaiting our new &amp;#8220;messiah&amp;#8221; to wave his magical wand and make all our problems go away, while at the same time allowing our once great nation to keep &amp;#8220;living the dream&amp;#8221;.&lt;/p&gt;
  
  &lt;p&gt;The dream is over!&lt;/p&gt;
  
  &lt;p&gt;The dream that we can ignore the consumer for years while management myopically focuses on its personal rewards packages at the same time that our factories have been filled with the worlds most overpaid, arrogant, ignorant and laziest entitlement minded &amp;#8220;laborers&amp;#8221; without paying the price for these atrocities and that still the masses will line up to buy our products&lt;/p&gt;
  
  &lt;p&gt;Don&amp;#8217;t tell me I&amp;#8217;m wrong. Don&amp;#8217;t accuse me of not knowing of what I speak. I have called on Ford, GM, Chrysler, TRW, Delphi, Kelsey Hayes, American Axle and countless other automotive OEM&amp;#8217;s and Tier ones for 3 decades now throughout the Midwest and what I&amp;#8217;ve seen over the years in these union shops can only be described as disgusting.&lt;/p&gt;
  
  &lt;p&gt;Mr Clark, the president of General Motors, states:&lt;/p&gt;
  
  &lt;blockquote&gt;
    &lt;p&gt;&amp;#8220;There is widespread sentiment in this country, our government and especially in the media that the current crisis is completely the result of bad management. It is not.&amp;#8221;&lt;/p&gt;
  &lt;/blockquote&gt;
  
  &lt;p&gt;You&amp;#8217;re right, it&amp;#8217;s not JUST management, how about the electricians who walk around the plants like lords in feudal times, making people wait on them for countless hours while they drag ass so they can come in on the weekend and make double and triple time for a job they easily could have done within their normal 40 hour week&lt;/p&gt;
  
  &lt;p&gt;How about the line workers who threaten newbies with all kinds of scare tactics for putting out too many parts on a shift and for being too productive (mustn&amp;#8217;t expose the lazy bums who have been getting overpaid for decades for their horrific underproduction, must we?!?) Do you really not know about this stuff?!?&lt;/p&gt;
  
  &lt;p&gt;How about this great sentiment abridged from Mr. Clarke&amp;#8217;s sad plea:&lt;/p&gt;
  
  &lt;blockquote&gt;
    &lt;p&gt;&amp;#8220;Over the last few years we have closed the quality and efficiency gaps with our competitors.&amp;#8221;&lt;/p&gt;
  &lt;/blockquote&gt;
  
  &lt;p&gt;What the hell has Detroit been doing for the last 40 years?!?&lt;/p&gt;
  
  &lt;p&gt;Did we really JUST wake up to the gaps in quality and efficiency between us and them?&lt;/p&gt;
  
  &lt;ul&gt;
  &lt;li&gt;&lt;p&gt;The K car vs. the Accord?&lt;/p&gt;&lt;/li&gt;
  &lt;li&gt;&lt;p&gt;The Pinto vs. the Civic?!?&lt;/p&gt;&lt;/li&gt;
  &lt;/ul&gt;
  
  &lt;p&gt;Do I need to go on?&lt;/p&gt;
  
  &lt;p&gt;We are living through the inevitable outcome of the actions of the United States auto industry for decades.&lt;/p&gt;
  
  &lt;p&gt;Time to pay for your sins, Detroit .&lt;/p&gt;
  
  &lt;p&gt;I attended an economic summit last week where a brilliant economist, Alan Beaulieu surprised the crowd when he said he would not have given the banks a penny of &amp;#8220;bailout money&amp;#8221;. Yes, he said, this would cause short term problems, but despite what people like George Bush and Troy Clark would have us believe, the sun would in fact rise the next day and something else would happen. Where there had been greedy and sloppy banks, new efficient ones would pop up. That is how a free market system works. It does work if we would let it work!&lt;/p&gt;
  
  &lt;p&gt;But for some reason we are now deciding that the rest of the world is right and that capitalism doesn&amp;#8217;t work; that we need the government to step in and &amp;#8220;save us&amp;#8221;. Save us, hell we&amp;#8217;re nationalizing and unfortunately too many of this once fine nation&amp;#8217;s citizens don&amp;#8217;t even have a clue that this is what&amp;#8217;s really happening but they sure can tell you the stats on their favorite sports teams yeah THAT&amp;#8217;S important.&lt;/p&gt;
  
  &lt;p&gt;Does it occur to ANYONE that the &amp;#8220;competition&amp;#8221; has been producing vehicles, EXTREMELY PROFITABLY, for decades now in this country?&amp;#8230;&lt;/p&gt;
  
  &lt;p&gt;How can that be???&lt;/p&gt;
  
  &lt;p&gt;Let&amp;#8217;s see - -&lt;/p&gt;
  
  &lt;ul&gt;
  &lt;li&gt;&lt;p&gt;Fuel efficient -&lt;/p&gt;&lt;/li&gt;
  &lt;li&gt;&lt;p&gt;Listening to customers -&lt;/p&gt;&lt;/li&gt;
  &lt;li&gt;&lt;p&gt;Investing in the proper tooling and automation for the long haul -&lt;/p&gt;&lt;/li&gt;
  &lt;li&gt;&lt;p&gt;Not being too complacent or arrogant to listen to Dr W Edwards Deming 4 decades ago -&lt;/p&gt;&lt;/li&gt;
  &lt;li&gt;&lt;p&gt;Ever increased productivity through quality, lean and six sigma plans -&lt;/p&gt;&lt;/li&gt;
  &lt;li&gt;&lt;p&gt;Treating vendors like strategic partners, rather than like &amp;#8220;the enemy&amp;#8221; -&lt;/p&gt;&lt;/li&gt;
  &lt;li&gt;&lt;p&gt;Efficient front and back offices -&lt;/p&gt;&lt;/li&gt;
  &lt;li&gt;&lt;p&gt;Non union environment&lt;/p&gt;&lt;/li&gt;
  &lt;/ul&gt;
  
  &lt;p&gt;Again, I could go on and on, but I really wouldn&amp;#8217;t be telling anyone anything they really don&amp;#8217;t already know in their hearts&lt;/p&gt;
  
  &lt;p&gt;I have six children, so I am not unfamiliar with the concept of wanting someone to bail you out of a mess that you have gotten yourself into. My children do this on a weekly, if not daily basis, as I did at their age. I do for them what my parents did for me (one of their greatest gifts, by the way). I make them stand on their own two feet and accept the consequences of their actions and work them through.&lt;/p&gt;
  
  &lt;p&gt;Radical concept, huh?&lt;/p&gt;
  
  &lt;p&gt;Am I there for them in the wings? Of course but only until such time as they need to be fully on their own as adults&lt;/p&gt;
  
  &lt;p&gt;I don&amp;#8217;t want to oversimplify a complex situation, but there certainly are unmistakable parallels here between the proper role of parenting and government.&lt;/p&gt;
  
  &lt;p&gt;Detroit and the United States need to pay for their sins.&lt;/p&gt;
  
  &lt;p&gt;Bad news people, it&amp;#8217;s coming whether we like it or not.&lt;/p&gt;
  
  &lt;p&gt;The newly elected Messiah really doesn&amp;#8217;t have a magic wand big enough to &amp;#8220;make it all go away&amp;#8221; I laughed as I heard Obama &amp;#8220;reeling it back in&amp;#8221; almost immediately after the vote count was tallied &amp;#8220;we might not do it in a year or in four&amp;#8221;! Where was that kind of talk when he was RUNNING for the office&lt;/p&gt;
  
  &lt;p&gt;Stop trying to put off the inevitable!&lt;/p&gt;
  
  &lt;p&gt;That house in Florida really isn&amp;#8217;t worth $750,000!&lt;/p&gt;
  
  &lt;p&gt;People who jump across a border really don&amp;#8217;t deserve free health care benefits!&lt;/p&gt;
  
  &lt;p&gt;That job driving that forklift for the big 3 really isn&amp;#8217;t worth $85,000 a year!&lt;/p&gt;
  
  &lt;p&gt;That couple whose combined income is less than $50,000 really shouldn&amp;#8217;t be living in that $485,000 home!&lt;/p&gt;
  
  &lt;p&gt;Let the market correct itself people, it will. Yes it will be painful, but it&amp;#8217;s gonna be painful either way, and the bright side of my proposal is that on the other side of it is a nation that appreciates what is has and doesn&amp;#8217;t live beyond its means and gets back to basics and redevelops the work ethic that made it the greatest nation in the history of the world and probably turns back to God.&lt;/p&gt;
  
  &lt;p&gt;Sorry, don&amp;#8217;t cut my head off. I&amp;#8217;m just the messenger sharing with you the &amp;#8220;bad news&amp;#8221;&lt;/p&gt;
  
  &lt;p&gt;Gregory J Knox&lt;br /&gt;
  President&lt;br /&gt;
  Knox Machinery, Inc.&lt;br /&gt;
  Franklin, Ohio 45005&lt;/p&gt;
&lt;/blockquote&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Learning Perl basics in the Fedora Classroom ... by me!</title>
		<link href="http://fozzolog.fozzilinymoo.org/tech/2009/03/learning-perl-basics-in-the-fedora-classroom-by-me.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/tech//1.1646</id>
		<updated>2009-03-06T05:15:46+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;Hey y&amp;#8217;all, I&amp;#8217;ve volunteered to teach in the &lt;a href=&quot;https://fedoraproject.org/wiki/Communicate/IRC/Classroom&quot;&gt;Fedora Classroom&lt;/a&gt; this Saturday (7 Mar 2009). The &lt;em&gt;Fedora Classroom&lt;/em&gt; is an &lt;a href=&quot;http://en.wikipedia.org/wiki/Internet_Relay_Chat&quot;&gt;IRC&lt;/a&gt;-based classroom environment. &lt;/p&gt;

&lt;p&gt;So, at 3pm MST (22:00 UTC), anyone can participate by logging in to &lt;code&gt;#fedora-classroom&lt;/code&gt; on &lt;code&gt;irc.freenode.net&lt;/code&gt; and I, &lt;code&gt;fozzmoo&lt;/code&gt;, will be doing a 1-hour presentation on &lt;em&gt;Perl basics&lt;/em&gt;. &lt;/p&gt;

&lt;p&gt;I&amp;#8217;ve been digging through old presentations and workshops notes from when I used to do all day Perl workshops at &lt;a href=&quot;http://www.usu.edu/&quot;&gt;USU&lt;/a&gt; for the &lt;a href=&quot;http://fslc.usu.edu/&quot;&gt;USU Free Software and Linux Club&lt;/a&gt; to see what I can distill down into a 1-hour presentation. If there&amp;#8217;s enough interest and response, we&amp;#8217;ll see about turning this into a regular thing.&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/tech/</uri>
		</author>
		<source>
			<title type="html">tech</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/tech/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/tech//1</id>
			<updated>2009-12-03T23:15:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">A response to the &quot;wiz bang&quot; question</title>
		<link href="http://fozzolog.fozzilinymoo.org/tech/2009/03/a-response-to-the-wiz-bang-question.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/tech//1.1645</id>
		<updated>2009-03-03T17:25:11+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;(Ryan Byrd)[http://www.ryanbyrd.net/techramble/] blogged recently with a (programming interview question)[http://www.ryanbyrd.net/techramble/2009/03/03/programming-interview-question-of-the-day/] that I thought I&amp;#8217;d take a stab at in Perl.&lt;/p&gt;

&lt;p&gt;The question is as follows:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;when passed in a number that is evenly divisible by 3, return &amp;#8220;wiz&amp;#8221;&lt;/li&gt;
&lt;li&gt;when passed in a number that is evenly divisible by 5, return &amp;#8220;bang&amp;#8221;&lt;/li&gt;
&lt;li&gt;when passed in a number that is evenly divisible by both 3 and 5, return &amp;#8220;wiz bang&amp;#8221;&lt;/li&gt;
&lt;li&gt;otherwise, return the number passed in&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;My solution exploits Perl&amp;#8217;s list type to store potential output as a queue of sorts.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;sub function {
    my $num = shift;
    my @output = ();
    unless($num % 3) {    push @output, &quot;wiz&quot;; }
    unless($num % 5 ) {    push @output, &quot;bang&quot;; }
    if(@output) {   return join ' ', @output; }
    return $num; 
}
&lt;/code&gt;&lt;/pre&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/tech/</uri>
		</author>
		<source>
			<title type="html">tech</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/tech/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/tech//1</id>
			<updated>2009-12-03T23:15:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">More on 'Cap and Trade' nonsense</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/03/more-on-cap-and-trade-nonsense.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1644</id>
		<updated>2009-03-03T06:01:15+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;I just returned from vacationing with my family in California, a state that
is hurting terribly right now economically and is also a &amp;#8220;leader&amp;#8221; among
states in the fight against global warming. While vacationing, we spoke
with a few locals and just about all had personal stories to tell about the
economic perils of the state. One older couple described how one of their
sons had been laid off from his job and wasn&amp;#8217;t enjoying being &amp;#8220;Mr. Mom.&amp;#8221;
Another couple told us a story of gettign IOUs from the state in place of a
state tax refund.&lt;/p&gt;

&lt;p&gt;In a previous post, I presented the notion that &amp;#8220;cap and trade&amp;#8221;
legislation was, in reality, a tax on businesses. Proponents of cap and
trade have argued it is &lt;em&gt;not&lt;/em&gt; a tax because the revenue from the purchases
of carbon credits (the permits required to emit the restricted materials)
does not go to the government. But, it&amp;#8217;s just the same to the business- a
penalty they must pay which is calculated more or less as a portion of
their overall production. &lt;/p&gt;

&lt;p&gt;Politicians like to say things like &amp;#8220;This isn&amp;#8217;t a tax on the individual.
This is a tax on corporations.&amp;#8221; A lot of people buy into that, but people
who understand how business works realize a tax on business results in a
burden on individuals because businesses aren&amp;#8217;t going to eat the cost of
those taxes &amp;#8212; they&amp;#8217;re going to pass it on to the consumer. Cap and trade
is no different. &lt;/p&gt;

&lt;p&gt;Over the last couple of years, there has been talk about a carbon tax
instead of cap and trade. This &lt;em&gt;would&lt;/em&gt; be a literal tax and would provide
revenue to the government from companies that emit over the prescribed
capped levels. Either way, it&amp;#8217;s still an additional cost on production for
companies that are already struggling in today&amp;#8217;s tough economy and
operating in a country with some of the highest corporate tax rates in the
the world. &lt;/p&gt;

&lt;p&gt;What do large companies do when the cost of operations in a region is high?
They do what many &amp;#8220;evil&amp;#8221; American companies do: they move operations to
a region where operations can be done under more friendly terms. Case in
point: California. Increasing regulations, taxes, and red tape have
prompted  California employers to relocate to other more business-friendly
regions over the last decade. The result: A recent headline indicates
unemployment numbers in California around ten percent!&lt;/p&gt;

&lt;p&gt;Finally, here&amp;#8217;s some food for thought: American companies, whether out of
principle or because of the intimidation of the Environmental Protection
Agency, generally conduct the cleanest operations in their industry,
worldwide. This doesn&amp;#8217;t surprise me after I see automotive manufacturers
repeatedly include verbiage in their marketing about how little energy they
use, how much recycled material they use, or how much they do to offset
their impact on the environment. &lt;/p&gt;

&lt;p&gt;If you buy into the idea of global warming gradually destroying our planet,
you should realize that almost all regulatory schemes like cap and trade
are based on older, flawed models like Kyoto.  If these regulation schemes
force companies to move operations to regions with less cost/regulation or
force manufacturers to purchase their raw goods from producers in other
countries, the overall impact to the planet probably isn&amp;#8217;t going to change.
Countries with inexpensive labor costs like China, India, Russia and others
have practically no incentive to regulate their impact on the environment whatsoever.&lt;/p&gt;

&lt;p&gt;The best policy, both for our economy and for the good of the planet (if
you&amp;#8217;re an alarmist) is to promote production in the United States where we
do things clean, efficiently, and under a watchful eye. &lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">It's coming, folks. Cap and Trade for everyone.</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/02/its-coming-folks-cap-and-trade-for-everyone.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1643</id>
		<updated>2009-02-24T09:59:17+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;&lt;img src=&quot;http://fozzolog.fozzilinymoo.org/images/govt_wtf-200x300.png&quot; align=&quot;left&quot; width=&quot;200&quot; height=&quot;300&quot; alt=&quot;Govt WTF?!&quot; title=&quot;Govt WTF?!&quot; /&gt; I was skimming articles on 
&lt;a href=&quot;http://www.realclearpolitics.com/&quot;&gt;Real Clear Politics&lt;/a&gt; and saw a couple
talking about the monster issue conservative talk radio was sounding the alarms
about during the 2008 election: &lt;em&gt;Cap And Trade&lt;/em&gt;. &lt;/p&gt;

&lt;p&gt;What is &amp;#8220;Cap and Trade,&amp;#8221; exactly? Well, at it&amp;#8217;s most basic level,
it&amp;#8217;s a tax on companies that produce carbon dioxide emissions. At a closer
level, it is a system by which companies, industries, and even states and
countries purchase and carbon credits on an open market. But, in the end,
it&amp;#8217;s a tax, because when everything is said and done, the revenue generated
by cap and trade transactions goes to&amp;#8230; well, nobody really talks about
where it goes, but it goes to some government account.&lt;/p&gt;

&lt;p&gt;There&amp;#8217;s an obvious similarity between cap and trade and the SCHIP
legislation recently signed by President Obama: the government maneuvers
itself into a situation where it is actually encouraging the bad behavior
it was supposedly trying to discourage.&lt;/p&gt;

&lt;p&gt;In the case of SCHIP, the legislation signed calls for a large tax increase on 
cigarette and other tobacco product purchases. The rationale here is that
the increased fee will create a burden on those in society that purchase
these unhealthy products and, therefore, will encourage them to stop
engaging in behavior like smoking. The money collected from these taxes is
funnelled into programs to guarantee health insurance for children. &lt;/p&gt;

&lt;p&gt;If you haven&amp;#8217;t figured it out already, while legislators called this tax
increase a penalty on smokers that should decrease the number of smokers,
they actually want &lt;strong&gt;more&lt;/strong&gt; smokers in order to fund SCHIP!&lt;/p&gt;

&lt;p&gt;It&amp;#8217;s will be just the same with cap and trade legislation. Replace a
person smoking cigarettes with a company that produces carbon dioxide
emissions as part of their operations and you&amp;#8217;ve got the same thing. The
money collected from this scheme will be funnelled to some program or group
of programs that are then dependent upon companies doing something
government really does not want them to do.&lt;/p&gt;

&lt;p&gt;The conflict of interest here is interesting, but to muddy the waters more,
it seems apparent, to me anyway, that the urgency of addressing carbon dioxide 
emissions is still far from settled. &lt;/p&gt;

&lt;p&gt;In one article I read, &lt;a href=&quot;http://www.motherjones.com/environment/2009/02/10-ways-trade&quot;&gt;10 Ways To Trade
Up&lt;/a&gt; by Kevin
Drum with &lt;a href=&quot;http://www.motherjones.com/&quot;&gt;Mother Jones&lt;/a&gt;, Drum compares cap
and trade ideas to the 1970 Clean Air Act and uses it as a proof of cap and
trade&amp;#8217;s inevitable success.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;We found out in 1990, when the Clean Air Act was modified to address acid rain pollution caused by sulfur dioxide from coal-fired power plants. Instead of requiring every plant to install a specific cleanup technology or meet a specific emission rate, the epa simply set a nationwide cap on the total volume of SO&lt;sup&gt;2&lt;/sup&gt; emissions and required power plants to own a permit for each ton of SO&lt;sup&gt;2&lt;/sup&gt; they emitted. Each plant was allocated a certain number of permits, and if a plant reduced its emissions to the point where it didn&amp;#8217;t need all its permits, it could sell them to the highest bidder.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The problem &lt;em&gt;I&lt;/em&gt; have with this comparison is the &amp;#8220;well, duh!&amp;#8221; assumption that there&amp;#8217;s 
nothing wrong with comparing carbon dioxide to sulfur dioxide. They&amp;#8217;re
both bad for the environment, one might say. &lt;/p&gt;

&lt;p&gt;The problem is that sulfur dioxide is a poisonous gas that can be used to
produce sulfuric acid in the atmosphere. Sulfur dioxide has been &lt;a href=&quot;http://www.atsdr.cdc.gov/toxprofiles/phs116.html&quot;&gt;well
documented&lt;/a&gt; to cause a
wide variety of health issues in humans and animals. Carbon dioxide, not so
much. In fact, carbon dioxide has been shown, time and time again, to
improve the production of plant life and has little or no effect on humans. &lt;/p&gt;

&lt;p&gt;It should also be mentioned here that carbon dioxide accounts for anywhere
from one tenth of a percent to one percent of all the greenhouse gases in
the atmosphere (the evil, nasty water vapor being the largest constituent
of these insidious chemicals bent on destroying life on earth.)&lt;/p&gt;

&lt;p&gt;The global warming alarmists claim rising carbon dioxide levels in the
Earth&amp;#8217;s atmosphere are to blame for seemingly corresponding rising global
temperatures. This is intriguing until you match up temperature
fluctuations on Earth with temperatures on other planets in our solar
system and match that to solar energy output from our sun. &lt;/p&gt;

&lt;p&gt;As silly as it may seem to create an ellaborate trading market (to veil a
taxation scheme) to plunder companies for generating a mostly harmless gas
into the atmosphere, it&amp;#8217;s very likely it will happen. President Obama has
been consistent in statements about environmental policy and the &amp;#8220;rightful
place&amp;#8221; of science. &lt;/p&gt;

&lt;p&gt;Drum writes, &amp;#8220;The backbone of (President Obama&amp;#8217;s) climate policy is actually an ambitious program (Cap and Trade) that, if done right, will reduce greenhouse gases and raise desperately needed revenue&amp;#8212;and, most important of all, has a fighting chance of making it through the congressional sausage factory in one piece.&amp;#8221;&lt;/p&gt;

&lt;p&gt;The country and the world seem to be slowly waking up, however. Most of the
online comments to the Mother Jones article seem to be indicative of this
as most of them decry global warming alarmism and question the logistics of
cap and trade legislation.&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Thoughts on diabetes in a disaster</title>
		<link href="http://fozzolog.fozzilinymoo.org/general/2009/02/thoughts-on-diabetes-in-a-disaster.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/general//3.1642</id>
		<updated>2009-02-23T10:19:15+00:00</updated>
		<content type="html" xml:lang="en-us">&lt;p&gt;This last Friday, &lt;a href=&quot;http://www.glennbeck.com/&quot;&gt;Glenn Beck&lt;/a&gt;&amp;#8217;s TV show on 
&lt;a href=&quot;http://www.foxnews.com/&quot;&gt;FOX News&lt;/a&gt; involved wargaming worst-case scenarios
five years into the future. There was a lot of talk about hyperinflation,
world-wide jumps in unemployment, and increasing disenfranchisement and
distrust of the government.&lt;/p&gt;

&lt;p&gt;Being a Mormon, I&amp;#8217;ve heard all my life about how we should prepare for
tough times by building up food storage for your family and having tools and
supplies that can help you weather tough times.&lt;/p&gt;

&lt;p&gt;But what about diabetics like myself or other people whose lives depend on
regular doses of medication? In a major disaster, it&amp;#8217;s possible your
neighborhood pharmacy is not going to be able to get resupplied and it might
not even be open or accessible. &lt;/p&gt;

&lt;p&gt;I&amp;#8217;m fairly certain my health insurance plan won&amp;#8217;t cover my purchasing extra
insulin and other supplies to stock-up in case of a disaster. I&amp;#8217;d probably
have to pay out-of-pocket to stockpile these items and then rotate through
them with supplies my insurance company will cover so I always have a
couple weeks or a couple months extra. &lt;/p&gt;

&lt;p&gt;Another problem diabetics and others may have to consider is how to keep
medicines like insulin stored at recommended temperatures. If a disaster
results in loss of power and/or heating fuel, keeping stored insulin cold
(and not frozen) can be a challenge.  &lt;/p&gt;

&lt;p&gt;I also should make sure I have a good supply of hearing aid batteries so
people can talk to me when we&amp;#8217;re all living off wheat stores and stale
water. :-)&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/general/</uri>
		</author>
		<source>
			<title type="html">general</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/general/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/general//3</id>
			<updated>2010-02-20T09:00:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Perl Basics: Using DBI</title>
		<link href="http://fozzolog.fozzilinymoo.org/tech/2009/02/perl-basics-using-dbi.html"/>
		<id>tag:fozzolog,2009:/tech//1.1641</id>
		<updated>2009-02-23T04:27:31+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;Working with databases is something programmers, especially Web
programmers, often need to do. Most (reputable) database backends provide a
way to use Structured Query Language (SQL) queries to interact with the
database. That&amp;#8217;s usually where the similarity ends. Working with MS SQL
Server, Oracle, and MySQL databases typically means you must acquire
connection libraries unique to a specific database backend to interact with
a database with SQL. &lt;/p&gt;

&lt;p&gt;Since we&amp;#8217;re talking about Perl, let&amp;#8217;s use
&lt;a href=&quot;http://www.postgresql.org/&quot;&gt;PostgreSQL&lt;/a&gt; as an example. There is a CPAN
module called &lt;a href=&quot;http://search.cpan.org/~mergl/pgsql_perl5-1.9.0/Pg.pm&quot;&gt;Pg&lt;/a&gt;
that gives you a set of subroutines for interacting directly with a
PostgreSQL database backend. &lt;/p&gt;

&lt;p&gt;Here is the example usage from the &lt;code&gt;Pg&lt;/code&gt; POD:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;use Pg;
my $conn = Pg::connectdb(&quot;dbname=template1&quot;);
my $res  = $conn-&amp;gt;exec(&quot;SELECT * from pg_user&quot;);
while (@row = $res-&amp;gt;fetchrow) {
    print join(&quot; &quot;, @row);
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;If you wrote a whole application using this &lt;code&gt;Pg&lt;/code&gt; module and then someone
came along and said, &amp;#8220;Hey, I like your application, but we use MySQL,&amp;#8221;
you&amp;#8217;d probably plant your face into your palm pretty hard.&lt;/p&gt;

&lt;h2&gt;DBI&lt;/h2&gt;

&lt;p&gt;In the 1990s, &lt;a href=&quot;http://blog.timbunce.org/about/&quot;&gt;Tim Bunce&lt;/a&gt; contributed the
&lt;a href=&quot;http://search.cpan.org/~timb/DBI/DBI.pm&quot;&gt;DBI&lt;/a&gt; module to
&lt;a href=&quot;http://www.cpan.org/&quot;&gt;CPAN&lt;/a&gt;. &lt;code&gt;DBI&lt;/code&gt; is &lt;em&gt;database abstraction layer&lt;/em&gt; meaning
that it sits between your applications and any database backend and gives
you (the programmer) a generic set of facilities for interacting with
databases.&lt;/p&gt;

&lt;p&gt;Examine at how the &lt;code&gt;Pg&lt;/code&gt; example could be accomplished using &lt;code&gt;DBI&lt;/code&gt;:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;use DBI;
my $dbh = DBI-&amp;gt;connect('dbi:Pg:dbname=template');
my $sth = $dbh-&amp;gt;prepare('SELECT * FROM pg_user');
my $rv = $sth-&amp;gt;execute;
while(my @row = $sth-&amp;gt;fetchrow_array) {
    print join(' ', @row;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;The first thing to notice here is the &lt;code&gt;DBI-&amp;gt;connect()&lt;/code&gt; line. In many cases,
this line is the only one you would need to change to migrate a DBI
application from one database backend to another. The first parameter
passed to the &lt;code&gt;connect()&lt;/code&gt; function is a &lt;em&gt;DBI Data Source Name&lt;/em&gt; &amp;#8212; or DSN.&lt;/p&gt;

&lt;p&gt;Some examples of DSNs that you may use with DBI:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;dbi:mysql:database=shoppinglist;host=db1&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;dbi:Pg:dbname=bookshelf;host=192.168.1.22;port=5432&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;dbi:SQLite:dbname=/var/db/addrbook.db&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;dbi:CSV:f_dir=/home/joe/csvdb&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;dbi:Oracle:host=oracle;sid=oracle&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;DBD modules&lt;/h2&gt;

&lt;p&gt;The interface from &lt;code&gt;DBI&lt;/code&gt; to each specific database backend is provided by
&lt;em&gt;DBI Drivers&lt;/em&gt; or &lt;code&gt;DBD&lt;/code&gt; modules. In addition to drivers for most common
database backends, there are some unusual and unique drivers as well such
as &lt;code&gt;DBD::CSV&lt;/code&gt; which provides the means to use SQL queries to interact with
data in comma-separated values text files. &lt;/p&gt;

&lt;h2&gt;Stop worrying about quoting&lt;/h2&gt;

&lt;p&gt;One thing that typically comes up when working with non-DBI database interaction
methods is worrying about value quoting. SQL requires that column values be
quoted with single-quote characters unless the value is a number. For
example:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;INSERT INTO TABLE friend (first_name, last_name, age) 
VALUES ('Joe', 'Smith', 15);
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;This is, of course, assuming the &lt;code&gt;age&lt;/code&gt; column is an integer. Think about zip
codes. The person who designed the schema for the database you&amp;#8217;re working
with might have made the assumption that a zip code would always be a
5-digit number and therefore defined the &lt;code&gt;zipcode&lt;/code&gt; as an integer type.
Another person might have considered the possibility of zip+5 zip codes and
defined the column as &lt;code&gt;VARCHAR(10)&lt;/code&gt; and values would therefore need to be
quoted inside single quotes. &lt;/p&gt;

&lt;p&gt;Fortunately, if you use &lt;code&gt;DBI&lt;/code&gt; properly, you won&amp;#8217;t have to worry about
quoting because you can use &lt;em&gt;placeholders&lt;/em&gt; and &lt;em&gt;bind values&lt;/em&gt; in query
strings. See the example below:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;my $sth = $dbh-&amp;gt;prepare('INSERT INTO friend (first_name, last_name, age) 
VALUES (?, ?, ?)');
my $rv = $sth-&amp;gt;execute( $first_name, $last_name, $age);
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;The question marks in the &lt;code&gt;prepare()&lt;/code&gt; call are placeholders and the
parameters passed to &lt;code&gt;execute()&lt;/code&gt; are the corresponding bind values.&lt;/p&gt;

&lt;p&gt;One of the reasons &lt;code&gt;DBI&lt;/code&gt; uses a &lt;code&gt;prepare()&lt;/code&gt; call followed by an &lt;code&gt;execute()&lt;/code&gt;
call instead of one call to execute a query is so you can &lt;em&gt;reuse&lt;/em&gt; a
&lt;em&gt;prepared&lt;/em&gt; query with multiple bind values. Notice this example which reads
from a CSV file and populates a database table:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;my $sth = $dbh-&amp;gt;prepare('INSERT INTO friend (first_name, last_name, age) 
VALUES (?, ?, ?)');

while(&amp;lt;CSV&amp;gt;) {
    my ($first_name, $last_name, $age) = split /,/;
    my $rv = $sth-&amp;gt;execute( $first_name, $last_name, $age);
}
&lt;/code&gt;&lt;/pre&gt;

&lt;h2&gt;Fetching data&lt;/h2&gt;

&lt;p&gt;In the first example above which showed how the &lt;code&gt;Pg&lt;/code&gt; module interacted with
a PostgreSQL database backend, the &lt;code&gt;fetchrow()&lt;/code&gt; call returned an array of
values in a row of results. This is fairly limited and by no means provides
the result data in all the ways a programmer would to use it. For example,
one glaringly absent piece of information is the field names.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;DBI&lt;/code&gt; provides multiple calls for fetching result data. Below is an example
of the &lt;code&gt;fetchall_hashref()&lt;/code&gt; call which gives you access to all rows in a
result as a referenced hash.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;my $sth = $dbh-&amp;gt;prepare('SELECT * FROM friends');
my $rv = $sth-&amp;gt;execute;
my $friend_hash = $sth-&amp;gt;fetchall_hashref('id');
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;For simple queries like this, it may makes sense to use &lt;code&gt;DBI&lt;/code&gt;&amp;#8217;s
&lt;code&gt;selectall_hashref()&lt;/code&gt; call, which results in even fewer lines of code:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;my $friend_hash = $dbh-&amp;gt;selectall_hashref(
    'SELECT * FROM friends', 'id');
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;The resulting hashref, when dumped using &lt;code&gt;Data::Dumper&lt;/code&gt; might look like
this:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;$VAR1 = {
      '1' =&amp;gt; {
               'id' =&amp;gt; 1,
               'age' =&amp;gt; 15,
               'last_name' =&amp;gt; 'Smith',
               'first_name' =&amp;gt; 'Joe'
             },
      '3' =&amp;gt; {
               'id' =&amp;gt; 3,
               'age' =&amp;gt; 33,
               'last_name' =&amp;gt; 'Jansen',
               'first_name' =&amp;gt; 'Stuart'
             },
      '2' =&amp;gt; {
               'id' =&amp;gt; 2,
               'age' =&amp;gt; 25,
               'last_name' =&amp;gt; 'Johnson',
               'first_name' =&amp;gt; 'Roger'
             }
    };
&lt;/code&gt;&lt;/pre&gt;

&lt;h2&gt;In conclusion&lt;/h2&gt;

&lt;p&gt;This short article only scratches the surface on &lt;code&gt;DBI&lt;/code&gt;, but it hopefully
gives the reader an idea of the power and flexibility provided by this
valuable CPAN module.&lt;/p&gt;

&lt;p&gt;For those who are looking for more indepth information
&lt;a href=&quot;http://www.ora.com/&quot;&gt;O&amp;#8217;Reilly and Associates&lt;/a&gt; has published a fine book on
&lt;code&gt;DBI&lt;/code&gt;, co-written by Tim Bunce,
&lt;em&gt;&lt;a href=&quot;http://oreilly.com/catalog/9781565926998/&quot;&gt;Programming the Perl DBI&lt;/a&gt;&lt;/em&gt;
which is highly recommended. And then there&amp;#8217;s always the &lt;code&gt;DBI&lt;/code&gt; PODs: Type
&lt;code&gt;perldoc DBI&lt;/code&gt; after/if you&amp;#8217;ve got &lt;code&gt;DBI&lt;/code&gt; installed on your system.&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/tech/</uri>
		</author>
		<source>
			<title type="html">tech</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/tech/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/tech//1</id>
			<updated>2009-12-03T23:15:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Is a &quot;Taxpayer Revolt&quot; imminent?</title>
		<link href="http://fozzolog.fozzilinymoo.org/politics/2009/02/is-a-taxpayer-revolt-imminent.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/politics//2.1640</id>
		<updated>2009-02-22T04:22:49+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;&lt;img src=&quot;http://fozzolog.fozzilinymoo.org/images/govt_wtf-200x300.png&quot; alt=&quot;Govt WTF?!&quot; title=&quot;Govt WTF?!&quot; align=&quot;left&quot; /&gt;
I recently received a couple e-mail messages suggesting that our government has crossed a mighty threshold and that it was time for us, as concerned citizens, to take action to express our displeasure with policies architected to bury current and future taxpayers in unprecedented amounts of debt. These e-mail messages suggested the solution was getting a large group of people to simply refuse to pay their federal income taxes.&lt;/p&gt;

&lt;p&gt;The logic here is that without tax revenue, the federal government would be unable to fund programs like those in the recent &amp;#8220;Stimulus Package.&amp;#8221; Plus, what better way to let elected leaders know you&amp;#8217;re not happy with the direction they&amp;#8217;re taking the country than by pulling the plug on the very means they have to do those things?&lt;/p&gt;

&lt;p&gt;I&amp;#8217;m not sure I agree with this suggestion. It&amp;#8217;s an intriguing suggestion, but it&amp;#8217;s a risky move for obvious reasons. If you don&amp;#8217;t get enough people to go along with it, then you&amp;#8217;re asking to be fined and penalized by the IRS. On the other hand, if you do get enough people to go along with it, it would be virtually impossible for the government to go after all those who refuse to pay. &lt;/p&gt;

&lt;p&gt;I did a quick Google search to see what kind of &amp;#8220;chatter&amp;#8221; there is online about such a tax revolt. There&amp;#8217;s a little background talk about it, but mostly people are organizing protests against tax hikes and the Obama &amp;#8220;stimulus.&amp;#8221; &lt;/p&gt;

&lt;p&gt;If the Obama &amp;#8220;Stimulus&amp;#8221; is just the beginning of similar policy shifts to come, we may very well begin seeing items in the news like this and it will be interesting to see how the administration responds. Will they step back and find peaceful solutions or will we be looking at incidents reminiscent of &lt;a href=&quot;http://en.wikipedia.org/wiki/Ruby_Ridge&quot;&gt;Ruby Ridge, ID&lt;/a&gt; and the &lt;a href=&quot;http://en.wikipedia.org/wiki/Branch_Davidian_Massacre&quot;&gt;Branch Davidian compound&lt;/a&gt; in Waco, TX?&lt;/p&gt;

&lt;p&gt;In slightly unrelated news, it is interesting to see how quickly terms like &amp;#8220;flat tax&amp;#8221; and &amp;#8220;fair tax&amp;#8221; have all but disappeared from the public radar since President Obama took office. &lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/politics/</uri>
		</author>
		<source>
			<title type="html">politics</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/politics/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/politics//2</id>
			<updated>2009-12-05T05:00:04+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Change affects everyone</title>
		<link href="http://fozzolog.fozzilinymoo.org/general/2009/02/change-affects-everyone.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/general//3.1639</id>
		<updated>2009-02-21T11:13:23+00:00</updated>
		<content type="html" xml:lang="en-us">I just noticed that a couple sites that aggregate from my blog feeds got dumped on, big-time because my moving blogs modified the &quot;updated&quot; field for all blog entries. As a result, it would appear to the aggregators that while my blog entries have been posted over the last eight years or so, I just updated them in the last week... so you should take notice.&lt;br /&gt;&lt;br /&gt;Sorry!&lt;br /&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/general/</uri>
		</author>
		<source>
			<title type="html">general</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/general/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/general//3</id>
			<updated>2010-02-20T09:00:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Mourning a tragic passing</title>
		<link href="http://fozzolog.fozzilinymoo.org/general/2009/02/mourning-a-tragic-passing.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/general//3.1638</id>
		<updated>2009-02-21T10:43:27+00:00</updated>
		<content type="html" xml:lang="en-us">&lt;p&gt;This is a little late coming, but now that I have my blogs all split out, I'm getting caught up on things.&lt;/p&gt;&lt;p&gt;Nearly two weeks ago, on Sunday, 8 February, I found out a good friend had died in an automobile accident in Orem, UT. Friends and family rallied online, sharing consolation, stories, and memories on Facebook, and on a &lt;a href=&quot;http://rememberingadrianne.blogspot.com/&quot;&gt;blog set up in her honor&lt;/a&gt;. Even she and I had only really been friends for four and a half months, we had spent a lot of time online chatting with each other about this, that, the other, and that other thing and since I save transcript logs of every chat I engage in, those conversations were, in a sense, immortalized. &lt;br /&gt;&lt;/p&gt;&lt;p&gt;While others she knew had memories of her smiles, her beautiful blue eyes, her fashion sense, and other attributes you would notice by being around her, I mostly had text conversations. &lt;br /&gt;&lt;/p&gt;&lt;p&gt;So, I went through my chat logs and pulled out a few excerpts that I felt really demonstrated her personality and I sent that to the person who was maintaining the blog set up for her remembrance. I have include that below, titled &quot;Four and a half months.&quot;&lt;/p&gt;&lt;b&gt;&lt;font&gt;&lt;u&gt;Four and a half months&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;&lt;/font&gt;&lt;/b&gt;

&lt;span class=&quot;mt-enclosure mt-enclosure-image&quot;&gt;&lt;img alt=&quot;Adrianne McBride&quot; src=&quot;http://fozzolog.fozzilinymoo.org/general/2009/02/21/n501469774_1426074_926.jpg&quot; class=&quot;mt-image-right&quot; height=&quot;364&quot; width=&quot;265&quot; /&gt;&lt;/span&gt;&lt;p&gt;Adrianne McBride died in a tragic automobile accident on the
morning of Sunday, 8 February 2009 at the age of 23. At the funeral
services held in her honor today, family members recalled her sweet
spirit, off-the-charts passion and zeal, her clever wit, her love for
shoes and shopping with her mother, and her insatiable love of
writing, socializing, romanticizing, and pondering the mysteries of
life. &lt;/p&gt;
&lt;p&gt;I almost never knew this young woman. It was only through my
friend Chadd that we knew each other. She worked with Chadd at
BIO-West in Logan as an assistant to the editorial department. I
don't know exactly what it was she did there, but I know one of her
responsibilities was helping with desktop IT support. She was
responsible for maintaining the BIO-West website content using
applications I had developed years before for BIO-West. Chadd had
told me a few things about Adrianne, but it wasn't until I helped her
navigate the ropes of the content management system for the BIO-West
website that our friendship began. &lt;/p&gt;
&lt;p&gt;Chadd had sent me to her blog months before, so I knew she was
somewhat of an &quot;English geek&quot; and I can definitely relate to a
person who blogs, so I already knew we'd probably get along. Chadd
also warned me about her opinions... perhaps that should be
&quot;OPINIONS.&quot; &lt;/p&gt;
&lt;p&gt;As time went on, I coined a nickname for Adrianne: Violet. I
called her Violet because she was spending a lot of time online in
&quot;invisible mode,&quot; meaning she was online, but unless she was
chatting with you, you wouldn't know she was online. I think she went
invisible because she needed to get stuff done and didn't want to all
her friends chatting with her. Sometimes, however, it was
specifically because of some guy she liked. &lt;/p&gt;
&lt;p&gt;Anyway, I called her Violet because tha's the name of the
daughter from the animation film &quot;The Incredibles.&quot; One of
Violet's powers is invisibility. Adrianne seemed flattered that I
coined a nickname for her and shared nicknames with me others had
given her.&lt;/p&gt;
&lt;p&gt;It's funny that, when I think back, Violet/Adrianne and I were
only physically in the same room with each other a handful of times -
maybe three or four times. Those were when I travelled to Logan to do
work onsite at BIO-West. On one occasion, Chadd, Adrianne, Chadd's
oldest daughter, and I went to lunch at a Japanese restaurant in
Logan. I think it was Adrianne's first time eating sushi. She was
cautious but determined to do it. &lt;/p&gt;
&lt;p&gt;As I search back through the history of my friendship with
Adrianne, I'm shocked at how short the friendship actually was: four
and a half months! Adrianne made me her friend on Facebook on Tuesday,
30 September 2008
at 12:58 p.m. We had exchanged e-mail messages for about a month
prior to that about the BIO-West website, but once we became
&quot;friends,&quot; the topics of our e-mail and online conversations
became, well, less professional. &lt;/p&gt;
&lt;p&gt;As I sift through my chat logs and watch how our friendship
unfolded, I'm embarrassed, to say the least. Some of our early
conversations consisted of me going on and on about myself and her
issuing one word responses here and there. Others bordered on
inappropriate (my fault). Yet, in spite of all that, she stuck with
it and, eventually, she began sharing all kinds of personal things
with me and, I think, began looking forward to our chats rather than
tolerating them. Having heard or read what others have said about
her, I think this just goes to reinforce that she was very accepting
and forgiving person. &lt;/p&gt;
&lt;p&gt;Reading back through these, I can now see wonderful
characteristics in her that I never fully acknowledged before. It's a
pity we seem to gloss over or fail to notice these things in people
until it's too late. In some ways, we barely knew each other, yet she
was very concerned about my feelings. She would apologize for
bothering, irritating, or annoying me and usually I hadn't even
realized a situation had transpired in which I might have had that
reaction. She was so sincere and empathetic!&lt;/p&gt;
&lt;p&gt;Like I said, she and I spent a generous amount of time talking
about her dating life (or lack thereof), relationships, relationship
strategies, etc. I'm not going to include much of that here, but
Adrianne seemed to just need someone to bounce things off of, it
seems. &lt;/p&gt;
&lt;p&gt;Our first Google Talk chat lasted about 20 minutes. Here's an
excerpt toward the end of it:&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#16569e&quot;&gt;(05:29:01
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; Did
you ever use the VMS system at USU?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:29:18
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; That
was &quot;the&quot; e-mail system when I was in school
there.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:29:29 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt;
No, I never used it.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:29:44 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
My wife and I met chatting on that system back
in 1993.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:30:02 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt;
Chadd and I use IM quite frequently regarding work stuffs. And it's
nice because then we don't have to talk out loud and bother
people.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:30:30 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Yeah- when Chadd talks outloud, it tends to
bother a lot of people. ;-)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:30:31
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; They had
chat in 1993?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:30:35 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
It wasn't like this.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:30:40
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; it
wasn't graphical.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:30:44 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
It was all text-based.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:30:46
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; Actually,
when &lt;b&gt;I&lt;/b&gt; talk out loud it tends to bother people. :)&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:30:57
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; And
it was only with other people who were using the same
system.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:31:07 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I've got to run. I'll be back in 15-20
min&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:31:18 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt;
Alright&lt;/p&gt;
&lt;p&gt;Already, we can see Adrianne was armed and ready with
her wit and sense of humor.&lt;/p&gt;
&lt;p&gt;About 90 minutes later, we chatted again. This time,
about television shows. A barrage of opinions flew across at me.
Anyone who knew Adrianne knows her opinions on television, movies,
etc. and has probably been exposed to this barrage on multiple
occasions because she never seemed to tire of espousing her opinions.&lt;/p&gt;

&lt;p&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:12:09
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; I
was watching Sarah Connor do her wild thang.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:12:19
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; I hear that
show might get canceled.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:12:27 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Ah well. &lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:12:41
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; That
would suck.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:12:52 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
but it seems like all the shows I get into get
canceled&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:13:00 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt;
Were you into Firefly?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:13:04 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; Arrested
Development?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:13:09 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt;
Veronica Mars?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:13:13 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I was into Firefly, VM&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:13:15
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; Buffy,
Angel.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:13:32 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Star Trek: Enterprise.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:13:46
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; Not
so much Arrested Development... but I've had people tell me I'd
really dig it.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:13:54 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; It's quite
great.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:13:54 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
But yeah- I've got box sets of them
all.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:14:50 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Are you into Heroes?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:15:31
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt;
Nope&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:15:44 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Good show.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:15:53
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; I hear it
took a pretty steep turn down, though&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:16:01
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; But
I'm not impressed with this season.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:16:59
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; Last
season, the only shows I watched devotedly were The Office and 30
Rock.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:17:00 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I would hate to be a writer for
television.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:17:18 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt;
My girl crush on Kate Walsh led me to watch Private Practice every
now and again&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:17:30 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I'm not at all familiar with that.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:17:42
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; This season
I'm going to continue the ritual from last season, and now I'm hooked
on Pushing Daisies&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:17:45 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
My brother-in-law, whom I work with, is a big
fan of 30 Rock.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:17:46 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; So, 3 shows.
Not bad.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:17:56 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt;
The Office is my favorite show, um, ever.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:17:59
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; I've
been told I'd like The Office.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:18:03
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; I
like Steve Carrel.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:18:04 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; But 30 Rock has
more laughs per episode&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:18:39 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; Do you like
Alec Baldwin?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:18:44 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I watch Smallville... and I don't know why
anymore.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:18:46 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
No, not really.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:18:53
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; I
don't care for him very much as a person.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:18:57
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; He's
a half-decent actor.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:19:07 PM)
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; I
liked him in Hunt For Red October.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:19:19
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; Can't
think of any other films I saw hiim in that I liked.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:19:33
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; I
thought Harrison Ford was a better Jack Ryan anyway.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:19:53
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; A
friend of mine got me into SportsNight.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:20:08
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; Another
show that got an early cancellation.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:20:12
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; Same
with Studio 60.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:20:21 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Same writer/producer.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:20:40
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; Have you
seen Glengarry Glen Ross?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:20:41 PM)
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; Sorkin
did The West Wing, which I never watched.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:20:47
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; Yes.
A couple times. Good show.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:20:49
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Dammit.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:20:58
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; That's one
of Alec's best.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:21:04 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Oh yeah- I guess it was.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:21:07
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; He's
seriously one of the funniest men EVER.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:21:11
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; And 30 Rock
makes use of that.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:21:12 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I liked Spacey better in that show.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:21:18
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; Mmm,
Spacey.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:21:23 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt;
He's my old man crush&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:21:25 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Heh.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:21:29
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; American
Beauty?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:21:30 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt;
I saw him on Broadway last year&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:21:46
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; I
think I saw American Beauty in the theater (in Logan) like... 5
times.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:21:46 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt;
American Beauty is amazing.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:21:59 PM)
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; I
don't think I've seen anything in the theater that many
times.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:22:00 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt;
I wish I could've seen it in theatres&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:22:07
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; Yeah-
you were like 12. :)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:22:16 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; 1999?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:22:18
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; I was
14.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:22:20 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Uhm... Close.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:22:23
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt;
lol&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:23:19 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Yeah- great movie. Great writing. Great
direction and just plain awesome cinematography.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:23:30
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt;
Yes.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:23:47 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt;
Pretty damn close to flawless&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:23:55 PM)
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; I
think a lot of that comes from the fact the director was a Broadway
director who was doing his first film.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:24:04
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; Sam
Mendes.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:24:12 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt;
He's a lucky man.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:24:35 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt;
I liked Road to Perdition, too, but not Jarhead.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:24:56
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; (He's
married to Kate Winslet, so Sam Mendes = lucky.)&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:25:05
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; When
it came out, it was controversial because of drugs, sex, incest, all
that crap.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:25:15 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Yes. Lucky. &lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:25:19
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; Wow.
I just saw her in...&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:25:21 PM)
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; What
was it...&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:25:25 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt;
Eternal Sunshine?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:25:30 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Yeah.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:25:34
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt;
Amazing.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:25:38 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
And she had not a single hint of an
accent.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:25:46 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
That was a decent show.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:25:53
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; She made me
think about coloring my hair that Raggedy Ann red.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:26:00
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; And then I
realized, um, bad idea for me.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:26:01 PM)
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; Probably
the first decent show from Netflix in probably 4-5.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:26:12
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt; Ahh,
netflix.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:26:18 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt;
I'm addicted, and I blame Chadd.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:26:21
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; heh
heh.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:26:28 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I blame Chadd for a lot of my personal
problems.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(07:26:32 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Andrianne:&lt;/b&gt;&lt;/font&gt;
lol!&lt;/p&gt;
&lt;p&gt;Adrianne then shared with me her growing frustration
with living in Logan. All her friends had gotten married and were
starting families, she said. Nonetheless, she said she liked Logan
&quot;even if dating is a suckhole here.&quot;&lt;/p&gt;
&lt;p&gt;&quot;Men, for a multitude of reasons, are emasculated
and wimpy,&quot; she said. &quot;They aren't aggressive. If people even
make friends with the opposite gender, they `hang
out.´&lt;/p&gt;
&lt;p&gt;The next time we chatted was 5 days later on Monday,
6 October 2008. I had just returned from taking a certification exam
in Phoenix (which I passed) and was concerned about the future of my
job. I had purchased some books on leadership and organizational
skills to prepare for the forthcoming changes in my life I saw
written on the proverbial wall. 
&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(12:01:29
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt; Isn't it a
shaky time to think about getting a new job?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:01:38
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;I'm
contractually obligated to stay at KnowledgeBlue until Jan
1.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:01:48 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I know very little about the IT job market, so I could be way
off.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:01:50 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
You're right. It's not a
great time to be doing that.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:02:00
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; Utah,
of course, fares better than the rest of the nation.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:02:49
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt; In general,
or with IT?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:02:55 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
in general.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:03:09
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; because
our economy is in much better shape than the rest of the
country.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:06:17 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt; If only our
average income was higher...&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:06:43 PM)
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; Sure.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:07:44
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt; See, I have
this theory.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:07:57 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
oh?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:12:15
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt; Sorry -- I
had to get the phone for a second&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:12:55
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt; I think
that, in order to make things fair, designer clothing should have
pricing akin to that of housing.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:14:01
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt; See, a pair
of Christian Louboutins (running from $600-$3000) are much less
expensive to a New Yorker who makes more on average. Sure, they spend
more on living and other expenses in general, but a pair of $700
shoes to them is more like a pair of $1500 shoes to me.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:14:04
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt; If that
makes sense...&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:15:36 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
$700 shoes? What? Do
they make you fly or something?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:16:23
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
No.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:16:38 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
They're just gorgeous, handmade Italian shoes. Mmmmm.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:22:28
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt; They used to
be in the $300-$1500 range, but the prices have been steadily rising
for the last 5 years or so&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:38:52 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt; Everyone has
their &quot;thing&quot; that they like to dream about and sometimes
splurge on, right?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:39:09 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
My friends of the male persuasion love spending boatloads on home
theatre setups.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:39:58 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
My &quot;thing&quot; is designer shoes (generally Christian
Louboutins) and Diane von Furstenberg dresses. Le sigh.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:43:08
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt; I have a
feeling you probably like to splurge on fancy-shmancy computer
toys&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:59:22 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I guess so.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:59:46
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt; Except
I'm married... so splurge isn't really allowed to be part of my
vocabulary.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:12:18 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt; It
isn't?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:12:30 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Not really.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:12:39
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt; Never
ever?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:12:40 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Plus, my wife is all
sensible and stuff.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:12:51
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt; I think
people can still be sensible and splurge.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:12:55
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt; It's all
about balance.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:12:55 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
She buys shoes a lot
more than I do, tho.&lt;/p&gt;
&lt;p&gt;Ahh,
the next of Adrianne's passions is unveiled: Shoes. And not just any
shoes... tall, expensive shoes.&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(01:16:55
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I'm all about the towers.&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#16569e&quot;&gt;(01:17:22
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
good. Makes your butt look good too. :)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:17:52
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
That's what they say.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:18:32 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://i24.ebayimg.com/05/i/001/08/b8/e16c_1.JPG&quot;&gt;http://i24.ebayimg.com/05/i/001/08/b8/e16c_1.JPG&lt;/a&gt;&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:18:52
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
This was my first pair of Christian Louboutins. If high heels make
your butt look good, then I'm set for life with those
babies.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:19:40 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Oh boy. Those look like they disfigure your feet.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:22:20
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
No way.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:23:45 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
They're spectacular.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:23:58 PM)
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Cool.
&lt;p&gt;I
still chuckle when I read what happened next in the exchange. I was
working on some programming in another window but accidentally typed
&quot;:q!&quot; into the conversation window instead.&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#16569e&quot;&gt;(01:24:19
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
:q!&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#16569e&quot;&gt;(01:24:23 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
woops. wrong window.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:25:32 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
What in the world is :q!&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:25:33
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:25:43 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Heh heh.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:25:52 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
That's the command to forcefully exit the vim text editor.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:26:10
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
It looks like a weird emoticon.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:26:15
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Yeah. It does.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:26:42 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Like someone smoking from a bong or something. :)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:27:00
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
You said it. :)
&lt;p&gt;The
next time Adrianne and I chatted, she decided to let me me in on a
secret.&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(05:18:38
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Can you keep a secret?&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(05:18:43 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
As in, tell NO ONE.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:18:48 PM)
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Not even Chadd?!&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:18:52 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Not even Chadd.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:18:57 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Okay. I'll do it.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:18:59 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
(not tell Chadd)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:19:02 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Lol&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:19:18 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
You're pregnant?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:19:22 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I just saw Juno on Friday&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:19:27
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
It was better than I thought it would be.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:19:40
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Um, that would require having sex or using in-vitro.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:19:50
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I have never engaged in neither of those things.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:19:55
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Both have been known to happen from time to time.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:20:03
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
So, it's not within the realm of impossible.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:20:11
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
So, safe to say my eggo is not preggo.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:20:15
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
hee hee.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:20:17 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
:)&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:20:23 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
What a plethora of quotables.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:20:31
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I know, and I love every minute of it.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:20:49
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
My tastes lean toward hipster-y cutesy. What can I say?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:21:18
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
And I have a, um, possibly illegal crush on Michael Cera.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:21:28
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
heh. it had a Napoleon Dynamite vibe to it too, with the music, the
&quot;I'm not popular&quot; characters, and the ruralness of
it.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:22:36 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Except that it was approximately 5,208,639 times better. In my
opinion, anyway.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:22:54 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I think it was better, yeah.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:23:16
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Well, except I think the cinematography was more beautiful in
ND.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:23:22 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Some of those shots are to die for.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:23:42
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
The story of Juno is certainly better. :)&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:24:01
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
They both have a nice supply of quotables... but Juno's quotables are
more sophisticated.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:24:41 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Agreed.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:24:51 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Secret:&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:24:54 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
oh yeah.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:24:57 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Your secret.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:25:06 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
So, one of the veg techs told me that BIO-WEST is going to open an
office in SLC. I want to relocate.
&lt;p&gt;That
was the first time I knew she was thinking of leaving Logan.&lt;/p&gt;
&lt;p&gt;On
Tuesday, 7 October, she told me she'd been on the phone with a boy
for a couple of hours.&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#16569e&quot;&gt;(10:40:57
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
So, what have you been yakkin about this evening? Anything
interesting?&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(10:41:47 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Yeah. It was almost like a first date over the phone.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:42:26
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Who was the other participant?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:42:42
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
He's a friend of a friend&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:42:55
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Is he... &lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:43:06 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Does he have those qualities that are important to you?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:43:12
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Is he aggressive?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:43:29 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Smart?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:43:40 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Complimentary? ;-)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:44:03 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Well, he added me as a friend on facebook shortly after our mutual
friend got a facebook account&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:44:11
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
And then he started chatting with me today&lt;br /&gt;
&lt;font color=&quot;#062585&quot;&gt;(10:44:17
PM) &lt;/font&gt;&lt;font color=&quot;#062585&quot;&gt;&lt;b&gt;***Fozz&lt;/b&gt;&lt;/font&gt;
signs onto fb&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:44:30 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
And he gave me his number and told me to text him since he had to go
to class&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:44:40 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
flirty text messages ensued&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:44:46
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
And after class, he called and we talked for two hours.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:45:12
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
And I'm supposed to text him now that I'm home, but I don't know what
to say&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:46:06 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
You know what I always say in those cases?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:46:10
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
&quot;Meow.&quot;&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:46:14 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I don't know why.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:46:19 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Lol&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:46:28 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I don't know...I don't want to freak him out.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:46:45
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Maybe I'm overthinking it. Perhaps a simple &quot;Hey :)&quot; would
do&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:46:47 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
You could pretend you &quot;accidentally&quot; text'd him.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:47:01
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Bwahaha. I totally used to do that when I was, oh, 19
&lt;p&gt;We
ended up spent a lot of time over the next three months analyzing
(and re-analyzing) the interactions between Adrianne and this boy.&lt;/p&gt;
&lt;p&gt;The
rest of the chat excerpts that follow are roughly chronological from
early October until the end of January.&lt;/p&gt;
&lt;p&gt;Here's
a random amusing excerpt from a conversation on Wednesday, 8 October:&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(11:44:13
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I feel weird.&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#16569e&quot;&gt;(11:49:04 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I can't confirm that.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(11:49:25 AM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
:) It's okay. I don't need any confirmation.
&lt;p&gt;In our discussions about dating and
relationships, I shared some bits of a book I had read called &quot;The
Two-Step.&quot; Here's the first time I told her about it.&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(10:11:37
AM)&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt; &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
You know, I've gone so long without dating that I'm not sure I really
know how to start something anymore. I am definitely good at getting
back into the losing sleep to converse part of it.&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#16569e&quot;&gt;(10:11:57
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
okay.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:13:48 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
At what point does all the flirting become...reality?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:13:49
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
okay what?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:14:11 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I dunno. Didn't know what else to say.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:14:43
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
you're married&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:14:44 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Flirting ?= reality... I dunno... when you're face-to-face.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:14:45
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
You've done that dance&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:14:55 AM)
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I still do the dance. It's called the 2-step. &lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:15:01
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
it's the only way to stay married.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:15:29
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
This is probably some really great metaphor that I don't get because
I'm not a dancer. At all.
&lt;p&gt;Adrianne was, of course, anxious to know
what I thought of one of her favorite films and what I thought of the
green dress!&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(09:51:05
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Did you like Atonement?&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#16569e&quot;&gt;(09:51:13 PM)
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Not as much as I hoped I would.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(09:51:13
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
And is that green dress not the most amazing thing EVER?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(09:51:49
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
It is a nice period costume.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(09:52:05
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Unfortunately, I'm not a big Kiera fan&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(09:52:18
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
lol&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(09:52:20 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
If it was worn by someone slightly more... meaty.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(09:52:25
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I don't know...&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(09:52:30 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
It makes me wish I was all bony&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(09:52:41
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
stuff that low cut looks sexy on flat girls and tranny on busty
ones&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(09:52:43 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Yeah- I don't like that anorexic look.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(09:53:09
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I thought she looked better in Atonement than any other film I've
seen her in.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(09:53:31 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
But I'm a sucker for that period look. Almost a 50s pin-up
look.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(09:53:48 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I freaking love the pin-up look.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(09:53:53
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
:)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(09:54:00 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I love high waisted pencil skirts&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(09:54:34
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I love all the swing dresses and garden party gowns
&lt;p&gt;I just have to say, the non sequitur nature
of so many of our conversations is fun to read now.&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(10:51:06
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Dag, yo.&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#16569e&quot;&gt;(10:51:10 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Dag?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:51:42 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I think &quot;Dag, yo&quot; is from Teen Girl Squad&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:51:50
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
which is what?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:52:42 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
a segment on &lt;a class=&quot;moz-txt-link-abbreviated&quot; href=&quot;http://www.homestarrunner.com/&quot;&gt;www.homestarrunner.com&lt;/a&gt;&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:52:48
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Oh.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:52:54 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I've only watched SB&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:52:56 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I watched it in high school&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:55:57
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
What's your favorite strongbad?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:56:58
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Hmmm...&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:57:03 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Children's Book&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:57:18 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I'll have to watch that one again.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(11:02:40
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Sorry, I had to reset my router&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(11:02:48
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I love it when you talk dirty like that.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(11:03:01
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
wtf?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(11:03:05 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
hee hee.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(11:03:20 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Not many girls know how to talk about resetting their
routers.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(11:03:36 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
True&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(11:04:15 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
&quot;I had to like push this blue thing on this gray thing and wait
for the red thing to do its.... thing.&quot;&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(11:04:21
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Heh
&lt;p&gt;This immediately transitioned into a
conversation about boots. She definitely loved to talk about her
footwear.&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(11:06:41
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I wish I was rich:
&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://www.zappos.com/n/p/dp/42455175/c/38010.html&quot;&gt;http://www.zappos.com/n/p/dp/42455175/c/38010.html&lt;/a&gt;&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#16569e&quot;&gt;(11:07:35
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Hmmm. What would I wish for richness for...&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(11:08:28
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I could find several more things to wish for richness for,&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(11:08:38
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
but right now I'm thinking about buying some sexy boots.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(11:08:58
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
The only boots I have are Wellies and (ugh) Uggs.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(11:09:11
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I'm happy with my Docs.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(11:09:28 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I want heeled boots&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(11:09:44 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
And not those cheesy chunky-heeled ones that most girls my age have
had since they were 16.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(11:10:28 PM)
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Oh, you want some boots you can gouge someone's cheek with.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(11:10:42
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Got it.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(11:10:56 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Yeah, essentially&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(11:11:50 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
On the non-boot side of things, I'd also like these:
&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://shop.nordstrom.com/S/3008482/0%7E2376778%7E6017238?mediumthumbnail=Y&amp;amp;origin=category&amp;amp;searchtype=&amp;amp;pbo=6017238&amp;amp;P=1&quot;&gt;http://shop.nordstrom.com/S/3008482/0~2376778~6017238?mediumthumbnail=Y&amp;amp;origin=category&amp;amp;searchtype=&amp;amp;pbo=6017238&amp;amp;P=1&lt;/a&gt;&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(11:12:07
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Whoops:
&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://shop.nordstrom.com/S/2994292?refsid=236954_1&amp;amp;refcat=0%7E2376778%7E2372808%7E2372949%7E2372953&amp;amp;SourceID=1&amp;amp;SlotID=1&amp;amp;origin=related&quot;&gt;http://shop.nordstrom.com/S/2994292?refsid=236954_1&amp;amp;refcat=0~2376778~2372808~2372949~2372953&amp;amp;SourceID=1&amp;amp;SlotID=1&amp;amp;origin=related&lt;/a&gt;&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(11:12:38
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
ok&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(11:12:49 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Not too expensive.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(11:13:12 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Nah, but I have a $25 gift card to Nordstrom's
&lt;p&gt;Many times, Adrianne would post the
strangest Facebook statuses.&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#16569e&quot;&gt;(04:23:16
PM)&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt; &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Diabetes is for lovers?&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(04:23:22 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
lol&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(04:23:22 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
What's that crap?!&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(04:23:30 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
That's what David Sedaris wrote in my book last night.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(04:23:36
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Who the crap is that?\&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(04:23:47 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
One of my favorite writers EVER.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(04:24:13
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
EVER?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(04:24:14 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Wow.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(04:24:17 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I mean, WOW.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(04:25:00 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Yeah.
&lt;p&gt;Adrianne's decision to leave a job she loved
and move back to the Salt Lake area was something she really
struggled with. It's interesting to me that she never really
struggled what decision she felt was the right one to make, but more
how to live with that decision.&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(12:36:15
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I feel wretched.&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#16569e&quot;&gt;(12:36:46 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I felt wretched about 2.5 hours ago.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:36:52
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I still feel semi-wretched.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:37:12
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I feel like I've been smacked upside the face with a pillowcase full
of bricks.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:37:16 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Why?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:38:46 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Or do you know why?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:39:31 AM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Because I don't want to quit BIO-WEST.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:39:38
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Okay.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:39:43 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
But it's the only thing keeping me in Logan&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:39:57
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
You know...&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:40:04 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I know they have people who work remote...&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:40:09
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Just one.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:40:13 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Does Melissa Stamp still work in SLC?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:40:18
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Yeah&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:40:24 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
But she's not a lowly editorial/IT person&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:40:45
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
So, what's got you down on Cache Valley?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:40:46
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I mean, I'll talk to Sandra about the possibility of helming the SLC
office if there's a need for that&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:40:52
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I hate the winter here&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:40:57 AM)
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Oh. me too.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:41:01 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I mean, the winter'&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:41:06 AM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
All my friends are graduating, getting married, having babies,
leaving.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:41:07 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I mean, the winter's aren't that great in SL, either.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:41:13
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
But at least I'd be near things&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:41:16
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Yeah.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:41:31 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I miss out on a lot of things in SLC that I regret&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:41:47
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
And I know this is a lame thing to say&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:41:52
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Would you move back in with your parents?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:41:55
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
But really? I &lt;b&gt;hate&lt;/b&gt;
that I don't have a dating life.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:42:07
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Oh, heavens no. No no no. I'm also looking at apartments down
there&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:42:33 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I wish I could live in someone's basement or something&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:42:40
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
But stuff like that is hard to come by&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:42:41
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
:)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:42:47 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I have friends who do that&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:42:49
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
OTOH, in Logan, everyone's got a basement.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:42:54
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
(for rent)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:43:00 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
They prefer it because they don't have to have roommates.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:43:08
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Yeah, but I need to get out of here.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:43:09
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
BAD.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:44:30 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
It was really hard for me to leave Logan.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:45:51
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
It's going to be hard for me, too&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:46:02
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
But for the last few weeks, I've felt like I need to&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:46:31
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I'm going to pray and fast about it tomorrow.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:46:40
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
that's a good idea.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:46:45 AM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
And it's weird, because I feel like I already know the
answer.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:46:46 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
My wife would say to do that.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:46:52
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I never think about doing that.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:47:20
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I think you're supposed to make your decision (which you sound pretty
solid on) and then get reassurance through prayer.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:48:19
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I'll ask around to see if anyone has a room or a basement
available.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:48:20 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
And I reeeeeally hope I don't cry when I talk to Sandra.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:48:44
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I've been so torn up over the whole situation that I feel like my
tear ducts are in a constant state of vomit.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:48:52
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Not pleasant.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:49:25 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
No.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:49:35 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
My mom called me today and I just couldn't stop crying.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:49:37
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
It was horrible.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:50:02 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
but, yeah, if you're not in school and not &quot;hitched,&quot; it
can be tough to exist in Logan. The place can be sorely
depressing.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:50:15 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I went through a few periods like that.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:50:26
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
That was when i was in school... &lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:50:54
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
so I'd take off for a couple quarters (we were on quarters back then,
not semesters), work in SL for a while or just be depressed in SL for
a while.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:51:06 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I just never imagined that I would come to hate this place so
much&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:51:07 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
What did your mom say? Good relationship with your mom?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:51:16
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Very&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:51:26 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
She thinks I need to pray about it&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:51:31
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
But she also thinks I need to get out of Logan&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:51:56
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I wish my sister had never moved to Cache Valley.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:52:10
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
But, I can't really say that...&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:52:22
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
because if she hadn't moved to Cache Valley, I wouldn't be where I
am.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:52:30 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I wouldn't have gone to USU.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:52:34
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
May not have gone to college.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:52:42
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I wouldn't have met my wife.&lt;br /&gt;
...&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:54:16
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Yeah, I stayed because I had good work&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:54:34
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
And the more I laught at those who look down their nose at me because
I choose to live &quot;in the city.&quot; heh heh.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:55:22
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Well, I'll help any way I can/&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:55:39
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I'm sure Sandra and Chadd will try to work something out with you if
you need it.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:55:49 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I'm still scared to bring it up at all&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:55:57
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Because I'm perfectly happy with my job&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:56:09
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
But not the place I live&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:56:32
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Would you be willing to drive up to Logan a couple days a
week?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:57:38 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
The thought isn't ideal.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:57:45
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
But with gas reimbursement, I'd live with it.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:58:48
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I do have places I can stay up here.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:01:00
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I should try to go to bed.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:01:11
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Let me know what happens if we don't chat again before
then.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:01:22 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Alrighty&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:01:27 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Chin... UP!&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:01:33 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
:) Okay.
&lt;p&gt;Here's another fun, amusing gem to read.&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#16569e&quot;&gt;(06:13:39
PM)&lt;/font&gt;&lt;/p&gt;&lt;font color=&quot;#16569e&quot;&gt;
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I need to move all my personal stuff off the Iodynamics servers...
just in case.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(06:13:53
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
&lt;a href=&quot;http://www.sonsofnothing.com/&quot;&gt;http://www.sonsofnothing.com/&lt;/a&gt;
is huge.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(06:14:27
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Looks like 2.6GB&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(06:15:12
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Psh, that's chump space.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(06:15:19
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
For a website?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(06:16:39
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Well, you'd know that better than me.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(06:17:07
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
But we have employees here at BIO-WEST who move more than that
regularly for GIS use.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(06:17:16
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Sure.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(06:17:59
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
So I was just being a smartass. I do that from time to time.
:)&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(06:18:05
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
NO!&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(06:18:11
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
That's not true!&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(06:18:16
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
NOoooOOoooOOOOoooo!&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(06:18:19
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
That's IMPOSSIBLE!&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(06:18:20
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Heh&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(06:18:25
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I know. It's a shocker.
&lt;p&gt;This snippet is a perfect example of
Adrianne's occasional self-deprecation, but she handles it with such
style!&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(02:30:51
PM)&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt; &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Well, I am REALLY pathetic.&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(02:30:56
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
So I'm just one step away from that.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:31:04
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Which still puts me in the pathetic area.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(02:31:08
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
pfft.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:35:37 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
What?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(02:36:53 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Well, telling people you're pathetic. That doesn't help!&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:37:18
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I'm only admitting it to you. :)
&lt;p&gt;Would you find it amazing that Adrianne had
things to say about musical artists?&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(04:27:41
PM)&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt; &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
LOL&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(04:27:50 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Every boy I know likes Smashing Pumpkins.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(04:27:56
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Well, that's an exaggerations&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(04:27:59
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
*exaggeration&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(04:28:03 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
But most of my BFs have.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(04:28:10
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Which is fine; I love 'em.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(04:28:52
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Isn't the band like... disbanded&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(04:29:17
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
They reformed a couple of years ago, minus James Iha.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(04:29:34
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Which, on one hand, is a terrible shame. I'm not sure they'll ever
generate new material as well without him.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(04:30:03
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
On the other hand, Billy Corgan is a lyrical genius, so I'm all for
his reappearance in the musical arena.
&lt;p&gt;Usually, Adrianne didn't really express much
of an interest in discussing politics even though it was a hot topic
in October-November 2008. In this chat before the 2008 election,
Adrianne told me she was just not going to vote. &lt;/p&gt;

&lt;p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(12:14:39
AM)&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt; &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I'm not going to complain about what happens&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(12:14:46
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
That's not how I am&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:15:02 AM)
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Do you know who John Stossel is?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:15:03
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
So when people tell me I won't be able to complain, I just say,
&quot;okay.&quot;&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:15:05 AM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
no&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:15:19 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
He's a reporter for ABC's 20/20 program.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:15:28
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
He did this report about a month ago...&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:15:52
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
where he went to one of these &quot;rock the vote&quot; type
concerts... where they were encouraging all these young people to be
politically active, campaign, and vote.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:16:18
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
and he asked a bunch of these kids who were there- simple questions
about our government.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:16:34 AM)
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
A handful could answer the questions, but the majority could
not.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:16:46 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
It was funny and sad at the same time.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:17:01
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
&quot;What is Roe v. Wade?&quot; &quot;That's like a black person...
and a white person?&quot;&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:17:15
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Stuff like that.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:17:17 AM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
sad.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:17:33 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Stossel suggested that maybe we should NOT be encouraging these
people to vote.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:17:43 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
that their vote would, in fact, be bad for our country.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:17:57
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
lol&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:17:59 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Yeah&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:18:45 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I swear, the stupid vote is huge this year.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:19:02
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Yep&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:19:03 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Ah well.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:19:13 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Aren't you glad I'm not contributing?!&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:19:19
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Heh heh. no!&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:19:19 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
:)
&lt;p&gt;Here's a random little nugget that makes me
smile.&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(02:19:40
PM)&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt; &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
If I'm Violet, who are you?&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#16569e&quot;&gt;(02:19:52
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Not sure.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(02:20:18 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Sully? :)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:20:35 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
That's a different movie!
&lt;p&gt;Did you know Adrianne loved to talk about
movies? Yeah! Really!&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#062585&quot;&gt;(12:16:55
AM) &lt;/font&gt;&lt;font color=&quot;#062585&quot;&gt;&lt;b&gt;***Fozz&lt;/b&gt;&lt;/font&gt;
hums rocky music.&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(12:18:15 AM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Turns out, I've never seen Rocky.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:18:29
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Oh dear.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:18:38 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I've avoided it my whole life due to people making stupid, &quot;yo,
Adrian!&quot; comments to me since I was approximately 12.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:18:47
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
That's worth a Saturday afternoon alone.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:19:10
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Talia Shire is adorable in that movie.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:20:50
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Huh. Well, maybe some day.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:21:01
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
It won an oscar.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:21:08 AM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
so?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:21:11 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
lo&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:21:12 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
*lol&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:21:24 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Yeah- that doesn't mean squat anymore, does it?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:21:49
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
academy went downhill in the late 90s.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:21:51
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
not really, no.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:22:15 AM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
The day that Good Will Hunting lost Best Picture to Titanic...that
was when it officially jumped out the window.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:22:21
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
heh heh.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:22:34 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I was just thinking that Titanic won- that wasn't so bad.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:22:41
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
It was a fine film.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:22:47 AM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
But not better than GWH.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:22:51
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I saw GWH with my mom.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:22:55 AM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
awkward.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:22:56 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
that was tough.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:22:58 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
yeah.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:23:02 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
That was f-in hard!&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:23:05 AM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
My brother had to watch it for a class&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:23:08
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
he's 17&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:23:15 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I volunteered to watch it with him&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:23:21
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I think my mom was relieved&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:23:32
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
though she'd never admit it because she always lectures me about
rated R movies&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:24:09 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
And then there was the LOTR fiasco.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:25:01
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
You should come over when I get the theater finished! &lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:26:20
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Can I bring my boyfriend?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:26:24
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Sure.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:26:30 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
lol&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:26:32 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
(you have one?)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:26:36 AM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Nope.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:26:39 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
working on it, though.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:26:44 AM)
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
(If not, I've got a blow-up one you can use.)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:27:11
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Eek.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:28:00 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
You eeker.
&lt;p&gt;If there's one thing Adrianne could not
understand was why people liked the Twilight series of books or the
Twilight film that came out in November 2008. I had so much fun
giving her crap about that and observing the results.&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#16569e&quot;&gt;(10:10:59
AM)&lt;/font&gt;&lt;/p&gt;&lt;font color=&quot;#16569e&quot;&gt;
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
heh heh. you should read CVZ's daughter's status updates today on
FB&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:11:21
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
&lt;a href=&quot;http://www.facebook.com/profile.php?id=1537805786&amp;amp;ref=nf&quot;&gt;Gretchen
VanZanten&lt;/a&gt; can die happy because Twilight is everything she wanted
and more!!!&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:11:26
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Barfy barf.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:11:48
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
&lt;a href=&quot;http://www.facebook.com/profile.php?id=1537805786&quot;&gt;Gretchen
VanZanten&lt;/a&gt; at 2:44am November 21Yeah I know what I want for
christmas! Somma those cullen boys! Holy crows they were so so so
hot! Meeting the Cullens was the best scene ever!!&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:15:47
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Was she joking?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(10:15:54
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Hell no.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(10:16:15
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Yikes.
&lt;p&gt;Random nugget:&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(07:13:47
PM)&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt; &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Yo.&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(07:13:57 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Sorry about earlier...I hope I didn't seem insensitive.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:31:41
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
You suck!&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:31:43 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
;-)&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(07:31:50 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
What happened earlier?
&lt;p&gt;This random nugget was as Adrianne was
getting ready to leave Logan for Salt Lake. She had a date planned.&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(05:45:13
PM)&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt; &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Wahoo!&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(05:50:17 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Man, I'm actually going to be able to leave by 6:00 tonight. That
makes me so happy&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:50:30 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Wheeee&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:51:08 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I'm so giddy right now. What's wrong with me?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:55:44
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Welp, I'm leaving.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:55:54 PM)
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Welp!&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:56:14 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Welp indeed.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:57:23 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Bye!&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:57:33 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Have fun storming the castle!
&lt;p&gt;We worked together on an e-mail migration
project for BIO-West and occasionally Adrianne would need my help
resolving some issues. We had fun even when we were chatting about
geeky tech stuff.&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(01:52:44
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Um...can I bug you?&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(01:52:51 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I mean, I'm sure I'm more than capable.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:53:00
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
yeah- you do it all the time. What's stopping you now?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:53:29
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
This time I'm being polite. :)&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:53:40
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Sup?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:53:47 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
mcheney&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:53:57 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
gets this error upon webmail login&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:54:00
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
OpenWebMail ERROR&lt;br /&gt;
Couldn't create /home/mcheney/.openwebmail/db
(Permission denied)&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:56:04 PM)
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Corrected.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:58:40 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Thank you muchly!&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:59:01 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
And I made sure that problem doesn't exist on any other accounts (it
doesn't)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:59:53 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
My hero.&lt;br /&gt;
&lt;font color=&quot;#062585&quot;&gt;(02:00:26 PM) &lt;/font&gt;&lt;font color=&quot;#062585&quot;&gt;&lt;b&gt;***Fozz&lt;/b&gt;&lt;/font&gt;
puts his hands on his hips and looks off to his right as his cape
flaps behind him.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:00:41 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Heh.
&lt;p&gt;Adrianne finally had plans in place for her
move back to Salt Lake and she was excited about it.&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#16569e&quot;&gt;(01:21:24
PM)&lt;/font&gt;&lt;/p&gt;&lt;font color=&quot;#16569e&quot;&gt;
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
So, what is up?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:21:30
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Did you find a place to plunk?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:21:34
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Did you find a place to labor?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:21:45
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Did you find someone to plunk with?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:24:20
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
plunk?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:24:34
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
plunk.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:25:04
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Um, live?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:25:11
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
live. yeah.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:25:33
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I'll be crashing with the parentals until I find something&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:07:39
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
and I did find a place to labor&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(02:07:50
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Where?!&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:08:23
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
You can't repeat any of this, by the way&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:08:28
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I haven't told anyone at BIO-WEST yet.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(02:08:31
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
heh. okay.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(02:08:34
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Promise.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:08:37
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Swear on your life.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:08:37
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Swear on Linux!&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(02:08:43
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I SWEAR ON TUX!&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:08:48
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
tux?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(02:08:50
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Tux!&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(02:09:05
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
&lt;a href=&quot;http://en.wikipedia.org/wiki/Tux&quot;&gt;http://en.wikipedia.org/wiki/Tux&lt;/a&gt;&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:09:32
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Aw, he's so cute.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:10:24
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I got a job at my dad's office&lt;br /&gt;
&lt;font color=&quot;#062585&quot;&gt;(02:10:31
PM) &lt;/font&gt;&lt;font color=&quot;#062585&quot;&gt;&lt;b&gt;***Fozz&lt;/b&gt;&lt;/font&gt;
gasps&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(02:10:34
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
WHat does your dad do?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:12:49
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Well, he's the general agent for National Life of Vermont&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:12:53
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
but he has his own company in the same suite&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:12:59
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
and that would be Sovereign Financial&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(02:13:06
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Investments?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:13:12
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
yeah&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(02:13:13
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Where is his office?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:13:19
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
downtown SLC&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(02:13:24
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
And what will you be doing?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:13:33
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Tech writing, marketing&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:13:38
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
updating website stuff&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(02:13:41
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
cool.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:13:44
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
There's so much to do up there&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(02:13:54
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Well, let me know if you need some outside IT consulting.
:)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:14:00
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
You know I will!&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(02:14:04
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Linux file server, etc. :)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:14:05
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I won't be working with him, really.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:14:12
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I'll be working with the office manager&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:14:16
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
she loves me, though. :)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:14:34
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
when she found out I was moving here, she asked him to find out if I
was interested in working with her&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(02:14:42
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
nice.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:14:46
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
and he was a little concerned with the whole nepotism thing&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:14:51
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
and she said she didn't care one bit.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:14:52
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
lol&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:26:12
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
So, yeah.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:26:23
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I'm not saying anything here until after I get my Christmas
bonus.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(02:37:47
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
:)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:38:08
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
What?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(02:38:11
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Can you blame me?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(02:38:14
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
nope.
&lt;p&gt;It was time to tease Adrianne about Twilight
again.&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#16569e&quot;&gt;(12:53:47
AM)&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt; &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I went to Twilight last night.&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#16569e&quot;&gt;(12:53:49
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
:)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:53:51 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
BARF.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:53:52 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
(finally)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:54:02 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
seriously, I don't want to talk about that.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:54:09
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Well made show, but definitely made for those who read and enjoyed
the books.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:54:24 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
BARF.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:54:25 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
(Unlike Harry Potter - I couldn't stand the book(s), but enjoyed the
films)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:54:47 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I'm this close to logging off...&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:55:07
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
But anyway- I saw a trailer for Confessions Of A Shopaholic&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:55:12
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Thought of you and your shoe thing.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:55:35
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
turns out you're not the first person to tell me that...&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:55:35
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
lol
&lt;p&gt;The following is part of a conversation
where she was analyzing a dating &quot;conundrum&quot; with me.&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#16569e&quot;&gt;(04:59:29
PM)&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt; &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
heh heh.&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(05:01:07 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
what?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:01:22 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Let me see.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:01:27 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
&quot;heh heh.&quot;&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:02:07 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
what are you &quot;heh heh&quot;ing?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:03:05
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
you being all... &lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:03:11 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
waity.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:03:12 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
prudish?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:03:19 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Oooh. You're a walking thesaurus!&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:03:48
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
you're a walking smartass.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:03:48
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
lol&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(05:03:52 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
heh heh.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(05:07:50 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
admit it -- that was good
&lt;p&gt;This one still cracks me up.&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(09:26:01
AM)&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt; &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
can you do me a humongous favor?&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#16569e&quot;&gt;(09:26:14
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I dunno. '&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(09:26:17 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Maybe&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(09:26:24 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
can you call my cell phone?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(09:26:30
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I can't find it&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(09:26:32 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Heh.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(09:26:34 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Sure.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(09:27:28 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
crap&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(09:27:33 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I can hear it somewhere.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(09:28:06
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
got it&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(09:28:08 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Thanks!&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(09:28:11 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
K.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(09:28:13 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
np
&lt;p&gt;Random nugget!&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#16569e&quot;&gt;(04:08:06
PM)&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt; &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Sup wit yew?&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(04:16:44 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
just wrapping up as much as I can at BeeDub&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(04:20:35
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
k.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(04:23:29 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
crazy, isn't it?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(04:23:37 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
yes. crazy.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(04:35:14 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I feel weird!&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(04:35:25 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Well, you look funny too.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(04:35:33
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
;-)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(04:45:31 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
thank you.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(04:45:52 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
;-) ;-) ;-)&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(04:46:07 PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
what's with your winkiness?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(04:47:01
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
something in my eye.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(04:54:57 PM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
...okay...
&lt;p&gt;Maybe it was because she was an English
snob, but Adrianne didn't like me going into phonetic-spelling mode
this time. Then we talked about her moving to Salt Lake.&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#16569e&quot;&gt;(12:40:44
AM)&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt; &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
So... Chuptoo?&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#16569e&quot;&gt;(12:40:45 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Yat?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:41:10 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
yat?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:41:23 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Yat?!&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:41:25 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Say it.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:41:29 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
hey you. Yat?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:41:49 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
&quot;Where are you at?&quot;&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:41:58
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Chadoon?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:42:06 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
oh boy&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:42:18 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I'm sitting in bed with my laptop&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:42:27
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
In SLC or Loogun?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:42:34 AM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
Logan&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:42:42 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
When you moovun?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:42:55 AM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
pleeeeease stop.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:43:04 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
wha?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:43:12 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
and to answer your question, tomorrow and friday&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:43:34
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Got everything all taken care of?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:43:40
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
with what?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:43:43 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
the move.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:44:42 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
heavens no&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:44:48 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
haven't done hardly anyting&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:44:50
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
*anything&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:45:36 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I tried to motivate myself to pack when I got home&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:45:42
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
but one of my friends came over and we watched a movie.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:45:52
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
What movie?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:45:59 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
that I won't say&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:46:05 AM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
because it's embarrassing&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:46:08
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Wyzat?&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:46:13 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
because it's a stupid movie&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(12:46:16
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
heh heh.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:46:19 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
and yet, I laughed a lot&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(12:46:23
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I'd even seen it before...
&lt;p&gt;I learned early on that Adrianne &lt;/p&gt;&lt;b&gt;LOVED&lt;/b&gt;
&quot;30 Rock&quot; and &lt;b&gt;LOVED&lt;/b&gt;&lt;span&gt;
Tina Fey. What cracks me up about this, however, is her reaction when
I said I didn't have an opinion about Will Ferrell. Chadd shared a
story with me where she did almost the exact same thing to him when
he didn't care for a band she asked him about.&lt;/span&gt;
&lt;p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(01:10:32
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
reason number eleventy billion why I love Tina Fey:
&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://www.tvsquad.com/2009/01/12/so-about-those-internet-commenters-tina-fey-mentioned-video/&quot;&gt;http://www.tvsquad.com/2009/01/12/so-about-those-internet-commenters-tina-fey-mentioned-video/&lt;/a&gt;&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#16569e&quot;&gt;(01:12:19
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
That dress is a little... extreme.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:13:03
AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
you don't like it?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:13:26 AM)
&lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
It's a little extreme. &lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:14:07 AM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
did you watch the video?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:14:14
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
yes&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:15:23 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
I love her.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:15:35 AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Yeah. &lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:17:11 AM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
How do you feel about Will Ferrell?&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(01:17:35
AM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I'm ambivalent.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(01:17:45 AM)
&lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
nevermind then
&lt;p&gt;I think this is the only time Adrianne asked
&lt;/p&gt;&lt;b&gt;my &lt;/b&gt;&lt;span&gt;opinion
about politics and not the other way around. And then... she zinged
me.&lt;/span&gt;
&lt;p&gt;&lt;font color=&quot;#a82f2f&quot;&gt;(09:44:25
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
your thoughts on the newest bailout?&lt;br /&gt;
&lt;/p&gt;&lt;font color=&quot;#16569e&quot;&gt;(09:44:33
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Pfft.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(09:44:52 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
Only 3% is meant to be spent this year.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(09:44:59
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
I'm not sure how that's supposed to help the economy.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(09:45:14
PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
In fact, hardly any of it seems like economic stimulus at
all.&lt;br /&gt;
&lt;font color=&quot;#16569e&quot;&gt;(09:45:23 PM) &lt;/font&gt;&lt;font color=&quot;#16569e&quot;&gt;&lt;b&gt;Fozz:&lt;/b&gt;&lt;/font&gt;
It's just a bunch of huge pork.&lt;br /&gt;
&lt;font color=&quot;#a82f2f&quot;&gt;(09:47:25
PM) &lt;/font&gt;&lt;font color=&quot;#a82f2f&quot;&gt;&lt;b&gt;Adrianne:&lt;/b&gt;&lt;/font&gt;
that's what she said.
&lt;p&gt;I only knew Adrianne as a friend for about
four and a half months before her death. That's about as long as I
spent doing a college internship back in 1997 and I can't remember
most of the names of the people I worked then, but I highly doubt
I'll ever forget or stop missing the chats with Ms. Adrianne McBride.&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/general/</uri>
		</author>
		<source>
			<title type="html">general</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/general/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/general//3</id>
			<updated>2010-02-20T09:00:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Schizoblog!</title>
		<link href="http://fozzolog.fozzilinymoo.org/general/2009/02/schizoblog.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2009:/general//3.1636</id>
		<updated>2009-02-21T09:51:55+00:00</updated>
		<content type="html" xml:lang="en-us">&lt;p&gt;I have been blogging off and on since 2001. You might even say I was blogging before that because I was posting stuff to my personal website before the word &amp;#8220;blog&amp;#8221; meant anything, starting probably in 1994.&lt;/p&gt;

&lt;p&gt;I suppose it&amp;#8217;s a significant milestone when you realize one blog isn&amp;#8217;t enough.&lt;/p&gt;

&lt;p&gt;Now I have &lt;strong&gt;three&lt;/strong&gt;. &lt;/p&gt;

&lt;p&gt;I have split the entries in my archive (whew) into three separate &lt;a href=&quot;http://www.moveabletype.org/&quot;&gt;MoveableType&lt;/a&gt; blogs pertaining to politics, tech, and general (everything else). But, to accomodate people who are used to coming to the Fozzolog to see everything, I&amp;#8217;ve set up a &lt;a href=&quot;http://www.planetplanet.org/&quot;&gt;Planet aggregator&lt;/a&gt; that parses the syndication feeds from the three blogs and displays a summary of sorts of everything that&amp;#8217;s on those individual blogs. &lt;/p&gt;

&lt;p&gt;The Planet page is at the same URL the Fozzolog has been at for years: &lt;a href=&quot;http://www.fozzilinymoo.org/Fozzolog/&quot;&gt;http://www.fozzilinymoo.org/Fozzolog/&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The new blogs are at the following URLs:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Tech Fozzolog: &lt;a href=&quot;http://fozzolog.fozzilinymoo.org/tech/&quot;&gt;http://fozzolog.fozzilinymoo.org/tech/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Politics Fozzolog: &lt;a href=&quot;http://fozzolog.fozzilinymoo.org/politics/&quot;&gt;http://fozzolog.fozzilinymoo.org/politics/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;General Fozzolog: &lt;a href=&quot;http://fozzolog.fozzilinymoo.org/general/&quot;&gt;http://fozzolog.fozzilinymoo.org/general/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/general/</uri>
		</author>
		<source>
			<title type="html">general</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/general/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/general//3</id>
			<updated>2010-02-20T09:00:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Book review: Leadership and Self Deception</title>
		<link href="http://fozzolog.fozzilinymoo.org/general/2008/10/-leadership-and-self-deception.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2008:/general//3.1635</id>
		<updated>2009-02-19T01:48:25+00:00</updated>
		<content type="html" xml:lang="en-us">&lt;a href=&quot;http://www.goodreads.com/book/show/180463.Leadership_and_Self_Deception_Getting_Out_of_the_Box?utm_medium=api&amp;amp;utm_source=blog_review&quot;&gt;&lt;img alt=&quot;Leadership and Self Deception: Getting Out of the Box&quot; src=&quot;http://photo.goodreads.com/books/1172487064m/180463.jpg&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://www.goodreads.com/book/show/180463.Leadership_and_Self_Deception_Getting_Out_of_the_Box?utm_medium=api&amp;amp;utm_source=blog_review&quot;&gt;Leadership and Self Deception: Getting Out of the Box&lt;/a&gt; by &lt;a href=&quot;http://www.goodreads.com/author/show/828.Arbinger_Institute&quot;&gt;Arbinger Institute&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
  &lt;a href=&quot;http://www.goodreads.com/review/show/34809334?utm_medium=api&amp;amp;utm_source=blog_review&quot;&gt;&lt;h3&gt;My review&lt;/h3&gt;&lt;/a&gt;
  rating: 5 of 5 stars&lt;br /&gt;Wow. What an amazing, enlightening, inspiring book. 
&lt;br /&gt;
&lt;br /&gt;I've never read a book that seems targeted at business management technique or strategy that read like a novel. While the plot of this novel is a bit shallow, it makes the material so much easier to read and absorb. 
&lt;br /&gt;
&lt;br /&gt;As I read this book, it occurred to me the authors are really saying the key to all productive relationships is humility. But, that's just too vague of a concept (and would make for a much shorter book), so they broke it down into cause and effect discussions from multiple angles to demonstrate evidence of its truthfulness.
&lt;br /&gt;
&lt;br /&gt;I can't help feeling the urge to purchase a copy of this book for every one in my family and those I work with. It's that profound.
  &lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.goodreads.com/review/list/1024334?utm_medium=api&amp;amp;utm_source=blog_review&quot;&gt;View all my reviews on GoodReads.com.&lt;/a&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/general/</uri>
		</author>
		<source>
			<title type="html">general</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/general/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/general//3</id>
			<updated>2010-02-20T09:00:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Book review: &quot;Breaking Dawn&quot; by Stephenie Meyer</title>
		<link href="http://fozzolog.fozzilinymoo.org/general/2008/08/book-review-breaking-dawn-by-s.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2008:/general//3.1634</id>
		<updated>2009-02-19T01:48:25+00:00</updated>
		<content type="html" xml:lang="en-us">&lt;p&gt;Unlike many people I know, mostly women for some reason, I didn't
go to a August 2nd midnight release party for Stephenie Meyer's
latest book, &quot;Breaking Dawn&quot;. No, I just pre-ordered it on
Amazon and checked for its arrival every day starting on August 2nd. It
didn't arrive until the 6th or 7th, those jerks!&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;http://stepheniemeyer.com/img/bdcover.jpg&quot; alt=&quot;Breaking Dawn&quot; title=&quot;Breaking Dawn&quot; align=&quot;left&quot; height=&quot;350&quot; hspace=&quot;10&quot; vspace=&quot;10&quot; width=&quot;229&quot; /&gt;
This is the fourth book in Stephenie Meyer's &lt;em&gt;Twilight&lt;/em&gt; series
and it apparently ends the series as we know it. Meyer has hinted we may
see some followup books that may repeat the stories in the previous books,
but from a different character's perspective. I think the soil is
fertile also for future books about other characters from the stories.

&lt;/p&gt;&lt;p&gt;So, I liked this book. I think I could have liked it a lot more, but
after three amazing, best-selling novels, my theory is Stephenie Meyer knew she
didn't have to work that hard. As a result of her laziness, the story isn't as
imaginative as the first three and the writing isn't as rich.&lt;/p&gt;

&lt;p&gt;That being said, I have to admit Stephenie Meyer could write 750 pages
of Bella Swan walking alone on a dirt road thinking to herself and
I'd just lap it all up with glee. For the most part, I love the
characters in the Twilight series, especially Bella, and could tolerate a
lot of stuff as long as Stephenie Meyer writes about Bella.&lt;/p&gt;



&lt;p&gt;A couple days after the book was released, my wife told me that one of
her coworkers told her they'd seen where someone had fashioned a message using plastic
cups in the chain link fencing on a highway overpass that read &quot;Bella
dies!&quot;&lt;/p&gt;

&lt;p&gt;Well, that kind of spoiled it for me!&lt;/p&gt;

&lt;p&gt;This being a vampire story, however, death isn't necessarily the
end of a character's story. While I'm sure the sight of that
plastic cup message caused a lot of people's hearts to skip a beat, I
don't think it's really that big of a spoiler.&lt;/p&gt;

&lt;p&gt;The Twilight series is aimed at young adults, but &quot;Breaking
Dawn&quot; is definitely more of an adult book. than your standard young adult novel. While the adult themes are vague
and lacking in the details you might find in a trashy paperback romance
novel, this probably isn't a book I'd recommend to anyone under
15.&lt;/p&gt;

&lt;p&gt;That being said, I think Stephenie did a marvelous job of writing more
mature material without necessarily offending too many of her
virtue-obsessed readers (Meyer is Mormon and has a significant Mormon
readership).&lt;/p&gt;

&lt;p&gt;There were a few points in the book where I found myself closing the
book and mouthing &quot;Holy ****!&quot; because I couldn't believe
what I had just read. While some of the other reviews I've read indicated they
thought the story was very predictable, I guess I fell right into it and
lapped it up so much I didn't see what others plainly saw coming.&lt;/p&gt;

&lt;p&gt;I didn't like what happens to Jacob in this book, but I'm
not sure what Meyer could have done differently. Maybe she could have let
him have what he wanted (Bella) and then kill him. Yeah! No, I can't
see her doing that.&lt;/p&gt;&lt;p&gt;I also didn't like the way Charlie was handled. It seemed... too easy.&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;The &quot;monsters&quot; in &quot;Breaking Dawn&quot; seemed a lot
less frightning, with a couple exceptions, than in the previous books and
my theory on that goes back to Meyer's unfortunate laziness. Just
about every monster-character seems to embody civility and control, unlike
in previous stories. That is a bit of a let-down because I found the
contrast of behavior between the monsters, the humans, and the exceptional
monsters to be a major component of the stories. In Breaking Dawn, not so
much. Even the amazing, spectacular, &quot;monstrous&quot; things that
happen to Bella are conveniently downplayed and controlled like
they're no big deal.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;a href=&quot;http://www.amazon.com/Breaking-Dawn-Twilight-Saga-Book/dp/031606792X/&quot;&gt;Buy your copy today at Amazon!&lt;/a&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/general/</uri>
		</author>
		<source>
			<title type="html">general</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/general/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/general//3</id>
			<updated>2010-02-20T09:00:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Making a difference in people's lives</title>
		<link href="http://fozzolog.fozzilinymoo.org/general/2008/08/making-a-difference-in-peoples.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2008:/general//3.1633</id>
		<updated>2009-02-19T01:48:25+00:00</updated>
		<content type="html" xml:lang="en-us">&lt;p&gt;How often do you make a difference in other people's lives? I
often feel I don't make much of a difference in anyone's lives,
mostly because I often seem to be on auto-pilot, tending to my own affairs
and minding my own business. Some people, on the other hand, make it their
life's work to help others in need.&lt;/p&gt;

&lt;p&gt;I'm not suggesting that we should all beat ourselves up for not
being more charitable or supportive, but I would like to share something I
did that I know will help someone out who is a tough spot. The good news is
that you can do the same exact thing!&lt;/p&gt;

&lt;h3&gt;Monica Ramos and Patty Compean&lt;/h3&gt;

&lt;p&gt;I don't think many people have heard the story of Monica Ramos and
Patty Compean. Their husbands are serving time in prison, currently in
solitary confinement. I believe they were unfairly convicted and sentenced
for crimes they did not commit. &lt;/p&gt;

&lt;p&gt;I first heard about this story on the radio and &lt;a href=&quot;http://www.glennbeck.com/&quot; target=&quot;_new&quot;&gt;Glenn Beck&lt;/a&gt; has talked a
lot about it. However, don't be misled into believing this is a
conservative or Republican issue. No, this is an American issue and a case
where the government has conspired against its own people.&lt;/p&gt;

&lt;p&gt;You can read the story that landed &lt;a href=&quot;http://en.wikipedia.org/wiki/Ignacio_Ramos&quot; target=&quot;_new&quot;&gt;Ignacio
Ramos&lt;/a&gt; and &lt;a href=&quot;http://en.wikipedia.org/wiki/Jose_Compean&quot; target=&quot;_new&quot;&gt;Jose Compean&lt;/a&gt; in jail on Wikipedia or a number of other
sites. The short version of the story is this: Ramos and Compean were
border guards working the US-Mexico border in Texas. In 2005, they were in
pursuit of a drug smuggler who fled after they stopped his van (which was
full of drugs). There was a shot fired, and the smuggler ran away. While it
appeared no one got hurt, the smuggler was apparently struck in the
buttock with the bullet. Later, the US government granted the smuggler
immunity for his testimony against Compean and Ramos on charges they
covered up the shooting and acted out of order. The immunity included a
border crossing pass and while the trial was underway, the smuggler was
apprehended again with a another load of drugs, but let go because he had
immunity. In addition, it appears the US government paid for medical
treatment for his gunshot wound.&lt;/p&gt;

&lt;p&gt;After Ramos and Compean were sentenced to prison, their attorneys, of
course, filed appeals. Meanwhile, members of congress, talk radio
personalities, and concerned individuals in Texas and around the country,
started digging up as much information as they could about the case. It was
revealed the US district attorney that prosecuted the case lied repeatedly
about the evidence and the circumstances surrounding the case. During the
trial, he requested and was granted that information about the drug
smuggler would be sealed so that the jury would not discover he had been
caught smuggling a second load of drugs since the original incident.&lt;/p&gt;

&lt;p&gt;The appeal was finally read by a panel of the 5th circuit court of
appeals about five months ago. Those in attendance of the hearings said the
judges were very concerned that the case was mishandled and chastised the
prosecuting attorneys for prosecuting on ridiculous charges, and generally
bungling the case so badly. However, five months later, just a week or two
ago, the court upheld the sentences and only dropped minor charges against
the men.&lt;/p&gt;

&lt;p&gt;Many believe these men are political prisoners and that the fault goes
clear to the White House. The US attorney general has longtime ties with
Alberto Gonzales and President George W. Bush. Congress and others have
asked President Bush to commute or pardon these men who were just trying to
do their jobs as border guards, but he has done nothing and has said
nothing.&lt;/p&gt;

&lt;p&gt;Others believe the Mexican government is involved as well. Why? I
don't know.&lt;/p&gt;

&lt;p&gt;It is terrible that these men are in prison, but many don't
realize the suffering their families have been going through.  Both men are
married and have children. These families no longer have a primary
breadwinner and must deal with the stress and emotional trauma of having a
loved unjustly imprisoned. &lt;/p&gt;

&lt;p&gt;It probably goes without saying, Monica Ramos and Patty Compean are
hurting-- financially, mentally, emotionally, and otherwise.&lt;/p&gt;

&lt;p&gt;A local talk radio host in Houston set up a fundraiser to help these
families and word got to Glenn Beck. He had both women on his radio show
last week and asked one how much her rent was that she was struggling to
pay. She told him it was $11,000 or so for the year. Glenn told her he
would be writing her a personal check for $11,000 and would write one in
the same amount for the other family.&lt;/p&gt;

&lt;p&gt;I've followed this story for months and was heartbroken to hear
that the families were struggling. One of the women said her son had been
persecuted at school and that is one of the reasons they had moved. I was
ready to donate some money myself even before Glenn announced his
donation.&lt;/p&gt;

&lt;p&gt;So, today, I wrote two checks. One to Patty Compean and one to Monica
Ramos. I don't have the kind of money Glenn Beck does, but I sent
fifty dollars and I'm sure it will help with something. Hopefully, I
can make this a regular thing, sending a little money every month. I hope
many others are doing the same thing. These families will suffer regardless
of how much money people send because they can't be with the
husbands/fathers they love, but the money will help make it just a little
easier.&lt;/p&gt;

&lt;p&gt;If you are touched as I have been, you can send a donation as well. Edd
Henndee, one of the talk radio hosts in Houston, is collecting the
donations and delivering them to the families. He asks that people make out
two separate checks, one to Monica Ramos, one to Patty Compean, and mail
them to:&lt;/p&gt;

&lt;blockquote class=&quot;quotedexcerpt&quot;&gt;
Edd Henndee&lt;br /&gt;
Taste of Texas&lt;br /&gt;
10505 Katy Freeway&lt;br /&gt;
Houston, Texas 77024
&lt;/blockquote&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/general/</uri>
		</author>
		<source>
			<title type="html">general</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/general/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/general//3</id>
			<updated>2010-02-20T09:00:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Maya and Lucy start school</title>
		<link href="http://fozzolog.fozzilinymoo.org/general/2008/07/maya-and-lucy-start-school.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2008:/general//3.1632</id>
		<updated>2009-02-19T01:48:25+00:00</updated>
		<content type="html" xml:lang="en-us">&lt;p&gt;Maya and Lucy started school today. Our neighborhood elementary school,
Foothills Elementary, is on a year-round schedule, so that is why
they're starting so early compared to traditional schools. Maya
started fifth grade and Lucy started second grade. Eli will be starting
kindergarten, but he'll be on a traditional schedule as he is
attending an all-day kindergarten program provided by our day care
provider.&lt;/p&gt;

&lt;p&gt;Christine went with the girls to school this morning and took a camera,
but it had dead batteries, so I went this afternoon and got some pictures
after school. You can see those at &amp;lt;&lt;a href=&quot;http://picasaweb.google.com/fozzmoo/MayaAndLucyStartSchool2008/&quot; target=&quot;_new&quot;&gt;http://picasaweb.google.com/fozzmoo/MayaAndLucyStartSchool2008/&lt;/a&gt;&amp;gt; or enjoy the embedded slideshow below.&lt;/p&gt;

&lt;div align=&quot;center&quot;&gt;
    
    &lt;/div&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/general/</uri>
		</author>
		<source>
			<title type="html">general</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/general/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/general//3</id>
			<updated>2010-02-20T09:00:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Weird illness</title>
		<link href="http://fozzolog.fozzilinymoo.org/general/2008/07/weird-illness.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2008:/general//3.1631</id>
		<updated>2009-02-19T01:48:25+00:00</updated>
		<content type="html" xml:lang="en-us">&lt;p&gt;This last weekend, I came down with some kind of weird sickness. I woke
up Saturday morning, showered, got dressed, and was about to eat a bowl of
cereal when I suddenly felt very fatigued. I ate my cereal and then layed 
down and fell asleep. A couple hours later, I woke up and had a salad
Christine made for me. The salad wasn&amp;rsquo;t very appetizing (it should
have been) and I was again very tired, so I went back to sleep. I slept
most of the rest of the day, only getting up for short amounts of time and
then resuming my slumber.&lt;/p&gt;

&lt;p&gt;Sunday morning, I woke up, showered, and went back to bed. I slept until
about 2 in the afternoon. When I got up then, I finally felt I had some
energy and I&amp;rsquo;ve been up ever since (blogging like mad, by the looks
of it.)&lt;/p&gt;

&lt;p&gt;My two daughters have had these one-day stomach &amp;ldquo;flu&amp;rdquo; things
this last week, but my sickness didn&amp;rsquo;t seem to be gastrointenstinal.
It just seemed to be more... just tired. I had a headache that seemed to be
worse when I moved around, but no fever and no distinct pain anywhere else
in my body. Very odd.&lt;/p&gt;

&lt;p&gt;Hopefully it&amp;rsquo;s past and I can resume normal life.&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/general/</uri>
		</author>
		<source>
			<title type="html">general</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/general/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/general//3</id>
			<updated>2010-02-20T09:00:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Book review: Freakonomics</title>
		<link href="http://fozzolog.fozzilinymoo.org/general/2008/07/book-review-freakonomics.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2008:/general//3.1630</id>
		<updated>2009-02-19T01:48:25+00:00</updated>
		<content type="html" xml:lang="en-us">&lt;p&gt;I've been wanting to read &lt;em&gt;Freakonomics&lt;/em&gt; for many months
and I think I've picked it up at a bookstore or grocery store at
&lt;em&gt;least&lt;/em&gt; a half dozen times without purchasing it. Finally, a week
or so ago, I got it.&lt;/p&gt;

&lt;p&gt;I guess I'll add yet-another voice to the choir that resounds
there is not a unifying theme to this book. But, that's only a minor
complaint.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;http://cdn.harpercollins.com/harperimages/isbn/medium/2/9780061234002.jpg&quot; alt=&quot;Freakonomics&quot; title=&quot;Freakonomics&quot; align=&quot;left&quot; height=&quot;150&quot; hspace=&quot;10&quot; vspace=&quot;10&quot; width=&quot;101&quot; /&gt;&lt;em&gt;Freakonomics&lt;/em&gt; is written by award-winning economist &lt;a href=&quot;http://pricetheory.uchicago.edu/levitt/home.html&quot; target=&quot;_new&quot;&gt;Steven
Levitt&lt;/a&gt; and award-winning author &lt;a href=&quot;http://stephenjdubner.com/&quot; target=&quot;_new&quot;&gt;Stephen J. Dubner&lt;/a&gt;. Without really knowing these two guys
very well, I got the impression the end result (the book) is a combination
of Levitt's geeky love of statistics and causal relationships and
Dubner's pop-culture awareness. Either way, it's pretty good
writing. &lt;/p&gt;

&lt;p&gt;The book examines a number of surprising statistical relationships in
unusual fields of study. For example, the first chapter asks, &quot;What
do schoolteachers and sumo-wrestlers have in common?&quot; Yes. What?
    I've been wondering that since I was 10... not.&lt;/p&gt;

&lt;p&gt;Each chapter asks an unusual question and then proceeds to break down
the evidence until it arrives at the answer- and it's usually not
one you expect.&lt;/p&gt;

&lt;p&gt;Most people, when they think of economics or statistics, they
immediately grab a pillow and a cup of warm milk. This book, on the other
hand, is not a sleep-inducer. While there are a small number of data tables
given, the reader does not need to dive into the data to understand what
the authors are presenting. In fact, in the one case where data was used
more heavily, the authors broke the data down row by row to explain their
position.&lt;/p&gt;

&lt;p&gt;I found myself reading the chapter on children's names
(&quot;Would a Roshanda by any Other Name Smell as Sweet?&quot;) out loud
to my family because its findings (and predictions) were just fascinating
to everyone. &lt;/p&gt;

&lt;p&gt;The treatments on crime (&quot;Why Do Drug Dealers Still Live with
Their Moms?&quot; and &quot;Where Have All The Criminals Gone?&quot;)
really do an excellent job of making swiss cheese of what we call
&quot;conventional wisdom.&quot; Whether the results Levitt got from his
studies are completely true or not, I think these chapters could be
required reading for all kids because it really inspired me to wonder how
much of what believe is factually true?&lt;/p&gt;

&lt;p&gt;My biggest complaint about this book is that it ended too quickly. The
edition I bought is the &quot;revised and expanded&quot; edition, which
means the authors have reorganized the main chapters and have added some
additional materail at the end of the book which includes articles written
for the New York Times in conjunction with the book and a smattering of
blog postings. While the extra material was somewhat interesting, I still
felt the book was just too dang short!&lt;/p&gt;

&lt;p&gt;Stephen Dubner's website states that he is working on another
Freakonomics book with Levitt. I hope the next one is bigger because I
think they've only touched the tip of the iceberg here.&lt;/p&gt;

&lt;p&gt;In the extra material, the authors write a bit about &quot;peak
oil&quot; and some of the problems with the theory from an
economist's perspective. I hope they give this subject much more
attention in their next book considering the price of oil was only about
$60/barrel when they wrote about it and has since peaked at nearly
$150/barrel since then.&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/general/</uri>
		</author>
		<source>
			<title type="html">general</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/general/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/general//3</id>
			<updated>2010-02-20T09:00:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Shatner vs Beck</title>
		<link href="http://fozzolog.fozzilinymoo.org/general/2008/06/shatner-vs-beck.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2008:/general//3.1627</id>
		<updated>2009-02-19T01:48:24+00:00</updated>
		<content type="html" xml:lang="en-us">&lt;p&gt;Wow!&lt;/p&gt;

&lt;p&gt;About a month ago, my hero &lt;a href=&quot;http://www.glennbeck.com/&quot; target=&quot;_new&quot;&gt;Glenn Beck&lt;/a&gt; had actor, writer, artist, etc. &lt;a href=&quot;http://en.wikipedia.org/wiki/William_Shatner&quot; target=&quot;_new&quot;&gt;William
Shatner&lt;/a&gt; on his television program for an hour-long interview. I missed
it and didn't record it so I was very pleased to find out it was
re-run this last Friday and got snagged on my DVR.&lt;/p&gt;

&lt;p&gt;Wow!&lt;/p&gt;&lt;span class=&quot;mt-enclosure mt-enclosure-image&quot;&gt;&lt;img alt=&quot;gb_ws-300x196.jpg&quot; src=&quot;http://fozzolog.fozzilinymoo.org/images/gb_ws-300x196.jpg&quot; class=&quot;mt-image-center&quot; height=&quot;196&quot; width=&quot;300&quot; /&gt;&lt;/span&gt;

&lt;p&gt;That interview was just amazing and, surprisingly, contained almost no
Star Trek content whatsoever. There were some clips from Star Trek shown
when they were talking about Shatner's reputation for
&quot;overacting&quot; but that's about it.&lt;/p&gt;

&lt;p&gt;What did they talk about for an hour if not Star Trek? Some politics,
some philosophy, some Shatner history, and alcoholism (Shatner's third
wife suffered from alcoholism and it ended up claiming her life.) &lt;/p&gt;

&lt;p&gt;Maybe I enjoyed it so much because it was just an almost-informal hour
of discussion between two of my favorite people.&lt;/p&gt;

&lt;p&gt;It looks like some dude on YouTube has done the honors of capturing the
entire hour in six parts. At least he a real job of capturing the video and
didn't just smack a Flip video camera in front of the TV like
I've seen some people do!&lt;/p&gt;

&lt;p&gt;Here are the obligatory links:&lt;/p&gt;

&lt;ul&gt;
    &lt;li&gt;&lt;a href=&quot;http://youtube.com/watch?v=dJayjQZP5Rw&quot; target=&quot;_new&quot;&gt;Glenn Beck &amp;amp; William Shatner - Part 1&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;http://youtube.com/watch?v=PA2xn35NpdA&quot; target=&quot;_new&quot;&gt;Glenn Beck &amp;amp; William Shatner - Part 2&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;http://youtube.com/watch?v=KdQwnRavnIE&quot; target=&quot;_new&quot;&gt;Glenn Beck &amp;amp; William Shatner - Part 3&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;http://youtube.com/watch?v=nuhq-QQZoHc&quot; target=&quot;_new&quot;&gt;Glenn Beck &amp;amp; William Shatner - Part 4&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;http://youtube.com/watch?v=QoFRJ4faUMg&quot; target=&quot;_new&quot;&gt;Glenn Beck &amp;amp; William Shatner - Part 5&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;http://youtube.com/watch?v=xpgEbEp_gRY&quot; target=&quot;_new&quot;&gt;Glenn Beck &amp;amp; William Shatner - Part 6&lt;/a&gt;&lt;/li&gt;

&lt;/ul&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/general/</uri>
		</author>
		<source>
			<title type="html">general</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/general/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/general//3</id>
			<updated>2010-02-20T09:00:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Holy cow! Glenn Beck's coming to Utah (and 350 other places)!</title>
		<link href="http://fozzolog.fozzilinymoo.org/general/2008/06/holy-cow-glenn-becks-coming-to.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2008:/general//3.1626</id>
		<updated>2009-02-19T01:48:24+00:00</updated>
		<content type="html" xml:lang="en-us">&lt;p&gt;Get ready to be sick, twisted and freakay! Glenn Beck is coming to a
&quot;buttload&quot; of movie theaters around the country on July 17 when
his Dallas, TX live comedy stage show performance will be simulcast in HD
nationwide to participating theaters.&lt;/p&gt;&lt;span class=&quot;mt-enclosure mt-enclosure-image&quot;&gt;&lt;img alt=&quot;christine_glenn_doran-300x169.jpg&quot; src=&quot;http://fozzolog.fozzilinymoo.org/images/christine_glenn_doran-300x169.jpg&quot; class=&quot;mt-image-center&quot; height=&quot;169&quot; width=&quot;300&quot; /&gt;&lt;/span&gt;

&lt;p&gt;Take it from someone who's seen Mr. Beck on stage a few times
before, met him in-person, listens to radio show daily, and can't
stop yakking about how Right he is... you won't want to miss this.
Take your family, but make sure you invite someone who wouldn't
normally go. You'll enjoy watching them pick their lower jaw up off
the floor and wish they had worn Depends undergarments.&lt;/p&gt;

&lt;p&gt;Tickets for this amazingly sick and twisted event go on sale a week from
the day I'm writing this: Friday, 20 June 2008.&lt;/p&gt;

&lt;div align=&quot;center&quot;&gt;

&lt;/div&gt;

&lt;p&gt;For more information, go here: &lt;a href=&quot;http://www.glennbeck.com/content/articles/article/198/11224/&quot; target=&quot;_new&quot;&gt;http://www.glennbeck.com/content/articles/article/198/11224/&lt;/a&gt;.&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/general/</uri>
		</author>
		<source>
			<title type="html">general</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/general/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/general//3</id>
			<updated>2010-02-20T09:00:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">&quot;John Adams&quot; by David McCullough</title>
		<link href="http://fozzolog.fozzilinymoo.org/general/2008/06/john-adams-by-david-mccullough.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2008:/general//3.1625</id>
		<updated>2009-02-19T01:48:24+00:00</updated>
		<content type="html" xml:lang="en-us">&lt;p&gt;I purchased a copy of &quot;&lt;a href=&quot;http://www.amazon.com/John-Adams-David-McCullough/dp/141657588X&quot; target=&quot;_new&quot;&gt;John Adams&lt;/a&gt;&quot; by David McCullough at a local
grocery store a couple months ago and finally finished it this last week.
The book was first released in 2001 but, since then, the HBO television
network has produced an award-winning mini-series based on the book and a repackaged reissue
of the book was released..&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;http://www.simonsays.com/assets/isbn/141657588X/C_141657588X.jpg&quot; alt=&quot;John
Adams&quot; title=&quot;John Adams&quot; align=&quot;right&quot; height=&quot;250&quot; hspace=&quot;10&quot; vspace=&quot;10&quot; width=&quot;165&quot; /&gt;
I was very intrigued by John Adams after reading
about him in the Joseph Ellis history narrative &quot;Founding
Brothers.&quot; What intrigued me
most was his steadfast relationship with his wife Abigail and his on-again,
off-again friendship with Thomas Jefferson.&lt;/p&gt;

&lt;p&gt;&quot;John Adams&quot; peels away another layer and reveals an
incredible amount of detail about the man and his roles in the early years
of our country.&lt;/p&gt;

&lt;p&gt;What impressed me most in the book was how relatively
&quot;solid&quot; Adams was in his beliefs and his philosophies. Around
the time he was elected the second president of the United States, there
was a great amount of fervor within those involved in politics them to
rally around political parties. Adams' political philosophy probably
made him more of a federalist than a republican, but he refused to
affiliate with either of the predominant movements at that time. This made
him both popular and unpopular with both parties, but gave him a tremendous
amount of freedom as president to do what he felt was right. Reading about
this demonstrated to me just how counterproductive a two-party system can
be, especially for executive-branch candidates. &lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;http://www.whitehouse.gov/history/presidents/images/ja2.gif&quot; alt=&quot;John Adams&quot; title=&quot;John Adams&quot; align=&quot;left&quot; height=&quot;262&quot; hspace=&quot;10&quot; vspace=&quot;10&quot; width=&quot;193&quot; /&gt;So much of Adams' political beliefs are needed today. He was a
frugal, sensible man who didn't see politics and public service as a
life of celebrity or extravagance. He never felt he was above anyone else
as was demonstrated by his pitching in to help fight fires when they broke
out while he was in office. It's amazing to me to imagine the
president of the United States standing in a chain line passing buckets of
water down so that a burning building could be extinguished. Today it would
be called a &quot;publicity event&quot; or some such nonsense.&lt;/p&gt;

&lt;p&gt;When I finished the last chapter of the book, which covered Adams'
death and the services and recognition paid to him afterwards, I
couldn't help but cry for a couple of minutes. After reading the
book, which contains hundreds of excerpts of letters and speeches from
Adams, I felt I had made some progress toward knowing the man. While I knew
from the beginning he had died almost 200 years ago, reaching that part of
the book and realizing everything he had done, said, and influenced in the
89 years of his life hit me like a pile of bricks. We owe a large debt of
gratitude to this man.&lt;/p&gt;&lt;p&gt;In related news, the HBO miniseries (which I have not seen) is coming out on DVD this Tuesday, June 10, 2008. You can get it &lt;a href=&quot;http://www.amazon.com/John-Adams-Miniseries-Paul-Giamatti/dp/B000WGWQG8/&quot;&gt;from Amazon.com&lt;/a&gt;.&lt;br /&gt;&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/general/</uri>
		</author>
		<source>
			<title type="html">general</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/general/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/general//3</id>
			<updated>2010-02-20T09:00:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Using open source tools to capture my favorite radio program audio stream</title>
		<link href="http://fozzolog.fozzilinymoo.org/general/2008/06/using-open-source-tools-to-cap.html"/>
		<id>tag:fozzolog.fozzilinymoo.org,2008:/general//3.1624</id>
		<updated>2009-02-19T01:48:24+00:00</updated>
		<content type="html" xml:lang="en-us">&lt;p&gt;Listen to any kind of syndicated talk radio program and you'll
usually hear about some companion website the program has. Usually,
there are a handful of free things you can get on a program's
website, but many of these sites have a pay-to-play members' area
where the really good content is. This includes MP3 downloads of the shows,
access to live audio and/or video streams, special behind-the-scenes
content, forums, desktop backgrounds, etc. &lt;/p&gt;

&lt;p&gt;The MP3 downloads are very convenient for people who don't have
the luxury of sitting in front of a radio (or driving a car) for a solid
three hours while a radio program is broadcast (with advertisements).
It's also a boon for people who find radio advertisements annoying.&lt;/p&gt;

&lt;p&gt;The only problem with the MP3 downloads is that theme music and produced
portions of the program can not, by law, be included in the MP3 file
because otherwise the MP3 would be a copyright violation.&lt;/p&gt;

&lt;p&gt;Live streams, on the other hand, are not subject to the above described
restriction because they're like a broadcast in nature. They're
not a time-shift of the original program. So, if you listen to the live
stream or even listen to a pre-recorded program as a stream, music and
produced segments may be included.&lt;/p&gt;

&lt;p&gt;I listen to the &lt;a href=&quot;http://www.glennbeck.com/&quot; target=&quot;_new&quot;&gt;Glenn
Beck&lt;/a&gt; radio program quite often. I used to download the MP3 files to
listen to in the car, but it got annoying everytime Glenn and his producers
would put together a segment like &quot;Sportscasters at the 2031
animal-human hybrid baseball games&quot;, or &quot;&lt;a href=&quot;http://www.youtube.com/watch?v=sKc0iQ4jnUY&quot; target=&quot;_new&quot;&gt;The History Of the
Democratic Superdelegates&lt;/a&gt;&quot; and I would hear Glenn say,
&quot;Listen to this... [pause] Oh man! That was great! Wasn't that
great, Stu? Oh yeah! Alright! Dan? Wasn't that just the best? Yeah.
Oh yeah.&quot;&lt;/p&gt;

&lt;p&gt;I decided I needed to figure out how to &lt;em&gt;save&lt;/em&gt; a stream.&lt;/p&gt;

&lt;p&gt;I knew it was possible. Lots of software applications exist for any
operating systems that will convert audio from a live stream into a static
WAV file or similar. The open source program &lt;a href=&quot;http://www.mplayerhq.hu/&quot; target=&quot;_new&quot;&gt;mplayer&lt;/a&gt; is one such
example.&lt;/p&gt;

&lt;h3&gt;Breaking it down&lt;/h3&gt;

&lt;p&gt;First of all, I needed to figure out how the stream content made its way
to my computer.&lt;/p&gt;

&lt;p&gt;After I've logged into the Glenn Beck website as an
&lt;em&gt;Insider&lt;/em&gt;, I can click a link to listen to a stream of a particular
hour of the program (or the whole program) in Windows Media format or
RealAudio format. I figured I'd have better luck extracting the audio
from the Windows Media format, so I went that route. Instead of just
clicking the link and letting my web browser find some program that could
handle the content, I saved the content to a file and then looked at the
file.&lt;/p&gt;

&lt;p&gt;The file it saved was a fairly straightforward XML file that looked
something like this:&lt;/p&gt;

&lt;blockquote class=&quot;code_excerpt&quot;&gt;
    &lt;pre&gt;&amp;lt;ASX VERSION=&quot;3.0&quot;&amp;gt;
  &amp;lt;TITLE&amp;gt;Glenn Beck&amp;lt;/TITLE&amp;gt;
  &amp;lt;AUTHOR&amp;gt;Premiere Radio Networks&amp;lt;/AUTHOR&amp;gt;
  &amp;lt;COPYRIGHT&amp;gt;Copyright 2008&amp;lt;/COPYRIGHT&amp;gt;

 &amp;lt;ENTRY&amp;gt;

    &amp;lt;TITLE&amp;gt;Glenn Beck 1&amp;lt;/TITLE&amp;gt;

    &amp;lt;AUTHOR&amp;gt;Premiere Radio Networks&amp;lt;/AUTHOR&amp;gt;

    &amp;lt;COPYRIGHT&amp;gt;Copyright 2008&amp;lt;/COPYRIGHT&amp;gt;
 

    &amp;lt;REF HREF=&quot;mms://a0011.v67134.c6713.g.vm.akamaistream.net/7/0011/6713/v08060322/glennbeck.download.akamai.com/6713/_!/shows/2008/06/03/GLENNBECKWIN20080603.WMA?auth=blahblahblahblahblah&quot; /&amp;gt;

    &amp;lt;REF HREF=&quot;http://a0011.v67134.c6713.g.vm.akamaistream.net/7/0011/6713/v08060322/glennbeck.download.akamai.com/6713/_!/shows/2008/06/03/GLENNBECKWIN20080603.WMA?auth=blahblahblahblahblahblah
  &amp;lt;/ENTRY&amp;gt;

  &amp;lt;ENTRY&amp;gt;

    &amp;lt;TITLE&amp;gt;Glenn Beck 2&amp;lt;/TITLE&amp;gt;

    &amp;lt;AUTHOR&amp;gt;Premiere Radio Networks&amp;lt;/AUTHOR&amp;gt;

    &amp;lt;COPYRIGHT&amp;gt;Copyright 2008&amp;lt;/COPYRIGHT&amp;gt;

    

    &amp;lt;REF HREF=&quot;mms://a0011.v67134.c6713.g.vm.akamaistream.net/7/0011/6713/v08060322/glennbeck.download.akamai.com/6713/_!/shows/2008/06/03/GLENNBECKWIN20080603_CLIP01.WMA?auth=blahblahblahblahblahblah&quot; /&amp;gt;

    &amp;lt;REF HREF=&quot;http://a0011.v67134.c6713.g.vm.akamaistream.net/7/0011/6713/v08060322/glennbeck.download.akamai.com/6713/_!/shows/2008/06/03/GLENNBECKWIN20080603_CLIP01.WMA?auth=blahblahblahblahandblah&quot; /&amp;gt;

  &amp;lt;/ENTRY&amp;gt;
&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt;...and so on.&lt;/p&gt;

&lt;p&gt;This XML defines the &lt;a href=&quot;http://en.wikipedia.org/wiki/Microsoft_Media_Services&quot; target=&quot;_new&quot;&gt;MMS&lt;/a&gt; URLs for each segment of the show. There are several
segments each hour. These individual MMS URLs are what I needed to feed to
the application that was going to convert the audio stream to a file. In my
case, I decided to use &lt;tt&gt;mplayer&lt;/tt&gt; because it's just &lt;strong&gt;so
good&lt;/strong&gt; at everything it does!&lt;/p&gt;

&lt;p&gt;The command line for doing the stream-to-file conversion looks like
this:&lt;/p&gt;


&lt;blockquote class=&quot;code_excerpt&quot;&gt;
    &lt;pre&gt;mplayer -vc null -vo null -ao pcm:fast:file=dumpfile.wav \
    'mms://a0011.v67134.c6713.g.vm.akamaistream.net/blahblahblah...'&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt;The real magic in the above command is where I use &lt;tt&gt;-ao pcm&lt;/tt&gt; to
tell &lt;tt&gt;mplayer&lt;/tt&gt; to use the PCM file writer audio output driver
(instead of sending the audio to my speakers). &lt;/p&gt;

&lt;p&gt;This gives me a WAV file which I'll want to convert to an MP3 or
Ogg-Vorbis file. &lt;/p&gt;

&lt;p&gt;To convert a WAV file generated by the &lt;tt&gt;mplayer&lt;/tt&gt; command above to
an MP3 file, I use the open source &lt;tt&gt;&lt;a href=&quot;http://lame.sf.net/&quot; target=&quot;_new&quot;&gt;lame&lt;/a&gt;&lt;/tt&gt; tool:&lt;/p&gt;

&lt;blockquote class=&quot;code_excerpt&quot;&gt;
&lt;pre&gt;lame -mf -q2 dumpfile.wav GlennBeck.mp3&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt;Or, convert it to Ogg-Vorbis (the completely open and
better-sounding-than-MP3 lossy audio codec):&lt;/p&gt;

&lt;blockquote class=&quot;code_excerpt&quot;&gt;
&lt;pre&gt;oggenc -q2 --downmix -o GlennBeck.ogg dumpfile.wav&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt;I've now covered the basic mechanical components of converting an
audio stream into an MP3 or Ogg-Vorbis file. Next I automate it all.&lt;/p&gt;

&lt;h3&gt;Automation&lt;/h3&gt;

&lt;p&gt;Because I'm a long-time &lt;a href=&quot;http://www.perl.org/&quot; target=&quot;_new&quot;&gt;Perl&lt;/a&gt; junkie, I investigated
how I could use a Perl script to act as the glue between the components and
get the whole process of capturing a stream and converting it to MP3 or
Ogg-Vorbis.&lt;/p&gt;

&lt;p&gt;In the above walk-through, I manually logged into the Glenn Beck website
with my web browser. To really completely automate this puppy, I wanted the
script to log in for me. It didn't take me very long to figure out
the Perl CPAN module &lt;a href=&quot;http://search.cpan.org/author/PETDANCE/WWW-Mechanize-1.34/lib/WWW/Mechanize.pm&quot; target=&quot;_new&quot;&gt;&lt;tt&gt;WWW::Mechanize&lt;/tt&gt;&lt;/a&gt; was what I needed to use.&lt;/p&gt;

&lt;p&gt;&lt;tt&gt;WWW::Mechanize&lt;/tt&gt; does several handy things for the programmer.
It loads and parses web pages and can follow links, populate forms, and
other basic kinds of interaction. It keeps track of its own cookies and
session data too.&lt;/p&gt;

&lt;p&gt;To get into the Insider area of the Glenn Beck website, members must
enter their username and password on the &lt;a href=&quot;http://www.glennbeck.com/content/insider&quot; target=&quot;_new&quot;&gt;Insider login
page&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Looking at the HTML source for this page, I learned the form was named
&quot;&lt;tt&gt;aform&lt;/tt&gt;&quot;, the username field was named
&quot;&lt;tt&gt;iUName&lt;/tt&gt;&quot;, and the password field was named
&quot;&lt;tt&gt;iPassword&lt;/tt&gt;&quot;.&lt;/p&gt;

&lt;p&gt;I now had all the information I needed for &lt;tt&gt;WWW::Mechanize&lt;/tt&gt; to
log in:&lt;/p&gt;

&lt;blockquote class=&quot;code_excerpt&quot;&gt;
&lt;pre&gt;my $agent = WWW::Mechanize-&amp;gt;new(
    cookie_jar  =&amp;gt; {},
);
   
my $resp = $agent-&amp;gt;get('http://www.glennbeck.com/content/insider');
   
if($resp-&amp;gt;is_success) {
    $resp = $agent-&amp;gt;submit_form(
        form_name   =&amp;gt;  'aform',
        fields      =&amp;gt;  {   'iUName'    =&amp;gt;  'myusername',
                                'iPassword' =&amp;gt;  'shhhhhhhh!', },
        button      =&amp;gt;  'submit');&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt;Walking through the code above: First, I create the
&lt;tt&gt;WWW::Mechanize&lt;/tt&gt; object with an in-memory cookie jar (&lt;tt&gt;cookie_jar
=&amp;gt; {}&lt;/tt&gt;). Next, I use the object to &lt;tt&gt;get()&lt;/tt&gt; the log-in page. If
everything works well so far, I tell the object to find the form named
&quot;&lt;tt&gt;aform&lt;/tt&gt;&quot;, fill in the username and password fields, and
submit the form.&lt;/p&gt;

&lt;p&gt;One thing I realized as I was debugging my script was that after I logged
in on the Insider page, I was immediately redirected to another page. In
order for my script to work, it needed to follow the redirect. This was an
easy fix:&lt;/p&gt;

&lt;blockquote class=&quot;code_excerpt&quot;&gt;
&lt;pre&gt;my $agent = WWW::Mechanize-&amp;gt;new(
    cookie_jar  =&amp;gt; {},
    redirect_ok =&amp;gt; 1,
);&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt;The page I got redirected to has the links on it for the streaming
audio, so I'm exactly where I want to be if I want to capture and 
convert the latest and greatest Glenn Beck Program audio stream.&lt;/p&gt;
 
&lt;p&gt;&lt;tt&gt;WWW::Mechanize&lt;/tt&gt; can find links within the page with a variety of
methods. One of these leverages Perl's excellent support for regular
expressions. You can also search for links by the order in which they
appear. The link I'm looking for looks like this:&lt;/p&gt;

&lt;blockquote class=&quot;code_excerpt&quot;&gt;
&lt;pre&gt;&amp;lt;a href=&quot;http://www.premiereinteractive.com/cgi-bin/members.cgi?stream=shows/GLENNBECKWIN20080604&amp;amp;site=glennbeck&amp;amp;type=win_show&quot;&amp;gt;&amp;lt;img src=&quot;http://media.glennbeck.com/images/common/header_media5off.jpg&quot; name=&quot;icon5&quot; width=&quot;26&quot; height=&quot;34&quot; border=&quot;0&quot; id=&quot;icon5&quot; onMouseOver=&quot;MM_swapImage('icon5','','http://media.glennbeck.com/images/common/header_media5on.jpg',1)&quot; onMouseOut=&quot;MM_swapImgRestore()&quot; /&amp;gt;&amp;lt;/a&amp;gt;&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt;So, my script has the following:&lt;/p&gt;

&lt;blockquote class=&quot;code_excerpt&quot;&gt;
&lt;pre&gt;$link = $agent-&amp;gt;find_link( url_regex =&amp;gt; qr/${datestr}.*win_show$/);
$resp = $agent-&amp;gt;get($link);&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt;This assumes I have a scalar variable &lt;tt&gt;$datestr&lt;/tt&gt; that contains
a formatted date for the show I want to capture.&lt;/p&gt;

&lt;p&gt;Originally, I was going to use one of Perl's several XML-parsing
modules to make sense of the XML in the stream link, but in the end all I
needed was a regular expression to extract the &lt;tt&gt;mms:&lt;/tt&gt; URLs.&lt;/p&gt;


&lt;blockquote class=&quot;code_excerpt&quot;&gt;
&lt;pre&gt;my $xml = $resp-&amp;gt;decoded_content;
my (@urls) = $xml =~ m/HREF=&quot;(mms:[^&quot;]+)&quot;/msg;&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt;This gives me a list of URLs stored in &lt;tt&gt;@urls&lt;/tt&gt;. Now I just need
to feed them to &lt;tt&gt;mplayer&lt;/tt&gt;:&lt;/p&gt;

&lt;blockquote class=&quot;code_excerpt&quot;&gt;
&lt;pre&gt;$i = 1;
foreach my $u (@urls) {
    my $seq = sprintf(&quot;%02d&quot;, $i);
    my @cmd = ( 'mplayer', 
            '-vc', 'null', 
            '-vo', 'null',
            '-ao', &quot;pcm:fast:file=${datestr}-${seq}.wav&quot;, 
            $u);
    system(@cmd);
    if ($? == -1) {
        print &quot;failed to execute: $!\n&quot;;
    }
    elsif ($? &amp;amp; 127) {
        printf &quot;child died with signal %d, %s coredump\n&quot;,
        ($? &amp;amp; 127),  ($? &amp;amp; 128) ? 'with' : 'without';
    }
    else {
        printf &quot;child exited with value %d\n&quot;, $? &amp;gt;&amp;gt; 8;
    }

    $i++;
}&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt;This little ditty creates an output file for each of the segment
streams. These are named something like &lt;tt&gt;20080604-05.wav&lt;/tt&gt;. &lt;/p&gt;

&lt;p&gt;When the loop is finished, I have several WAV files sitting on the
disk. Now I need to somehow sew them all together into one big WAV file so
I can convert it to an MP3 or Ogg-Vorbis file. For this, I turn to
&lt;tt&gt;sox&lt;/tt&gt;. I decided to have the Perl script generate a shell script to
run all the &lt;tt&gt;sox&lt;/tt&gt; and &lt;tt&gt;lame&lt;/tt&gt; commands needed.&lt;/p&gt;

&lt;blockquote class=&quot;code_excerpt&quot;&gt;
&lt;pre&gt;open FH, &quot;&amp;gt;/tmp/${datestr}.sh&quot;;
foreach my $j (1..($i-1)) {
    my $seq = sprintf(&quot;%02d&quot;, $j);
    print FH 'sox ', &quot;${datestr}-${seq}.wav&quot;, &quot; -t raw - | cat &amp;gt;&amp;gt; /tmp/${datestr}.raw&quot;, &quot;\n&quot;;
}
print FH 'sox -w -s -c 1 -r 22050 ', &quot;/tmp/${datestr}.raw ${datestr}.wav\n&quot;;
print FH &quot;lame -mf -q2 ${datestr}.wav ${datestr}.mp3 &quot;;
print FH &quot;--tt \&quot;Glenn Beck Show - $datestr\&quot; &quot;;
print FH &quot;--ta \&quot;Glenn Beck\&quot; --add-id3v2\n&quot;;
close FH;
&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt;Then, I run the shell script:&lt;/p&gt;

&lt;blockquote class=&quot;code_excerpt&quot;&gt;
&lt;pre&gt;system('sh', &quot;/tmp/${datestr}.sh&quot;);&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt;Finally, I do a little cleanup:&lt;/p&gt;

&lt;blockquote class=&quot;code_excerpt&quot;&gt;
&lt;pre&gt;unlink &quot;/tmp/${datestr}.sh&quot;, &quot;/tmp/${datestr}.raw&quot;, map({&quot;${datestr}-$_.wav&quot;} (1..($i-1)));&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt;And, I'm done. There are many other ways I could have gone about
doing this, but I found a way that worked and ran with it. I'd love
to hear from people who have done something similar and how they did it.&lt;/p&gt;</content>
		<author>
			<name>Doran L. Barton</name>
			<uri>http://fozzolog.fozzilinymoo.org/general/</uri>
		</author>
		<source>
			<title type="html">general</title>
			<link rel="self" href="http://fozzolog.fozzilinymoo.org/general/atom.xml"/>
			<id>tag:fozzolog.fozzilinymoo.org,2009-02-06:/general//3</id>
			<updated>2010-02-20T09:00:05+00:00</updated>
		</source>
	</entry>

</feed>
