<?xml version='1.0' encoding='utf-8' ?>
<!--  If you are running a bot please visit this policy page outlining rules you must respect. http://www.livejournal.com/bots/  -->
<rss version='2.0' xmlns:lj='http://www.livejournal.org/rss/lj/1.0/' xmlns:media='http://search.yahoo.com/mrss/' xmlns:atom10='http://www.w3.org/2005/Atom'>
<channel>
  <title>Ian Hilt</title>
  <link>http://ihilt.livejournal.com/</link>
  <description>Ian Hilt - LiveJournal.com</description>
  <lastBuildDate>Tue, 22 Dec 2009 17:32:33 GMT</lastBuildDate>
  <generator>LiveJournal / LiveJournal.com</generator>
  <lj:journal>ihilt</lj:journal>
  <lj:journalid>17181457</lj:journalid>
  <lj:journaltype>personal</lj:journaltype>
  <atom10:link rel='hub' href='http://pubsubhubbub.appspot.com/' />
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/10705.html</guid>
  <pubDate>Tue, 22 Dec 2009 17:32:33 GMT</pubDate>
  <title>Convert VHD to VMDK</title>
  <link>http://ihilt.livejournal.com/10705.html</link>
  <description>Required programs: &lt;strong&gt;VMware Virtual Machine Importer 2&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;The purpose here is to convert a VHD file to a VMDK file and then upload it to a VMware ESXi 4.0 server.&lt;br /&gt;&lt;br /&gt;First, start the importer. Click Next.&lt;br /&gt;&lt;br /&gt;Select &lt;strong&gt;Import a standalone machine&lt;/strong&gt;. Click Next.&lt;br /&gt;&lt;br /&gt;Browse to the VMC file associated with the VHD file. Click Next.&lt;div style=&quot;margin-left: 40px;&quot;&gt;This is the stage at which the importer checks the VHD file.&amp;nbsp; If it cannot determine the OS, cannot read the filesystem, etc, then it will fail.&amp;nbsp; Check the log file for errors. &amp;nbsp;&lt;/div&gt;&lt;br /&gt;Choose&lt;strong&gt; VMware workstation virtual machine&lt;/strong&gt; as the destination. Click Next.&lt;br /&gt;&lt;br /&gt;Give the virtual machine a name and choose the destination directory.&amp;nbsp; Select &lt;strong&gt;Workstation 5.x, VMware Player 1.x and VMware Server 1&lt;/strong&gt; under &lt;strong&gt;Create this virtual machine for&lt;/strong&gt;. Click Next.&lt;br /&gt;&lt;br /&gt;In Disk Options, choose &lt;strong&gt;Create a full clone&lt;/strong&gt;, and &lt;strong&gt;Allocate all disk space now for better performance&lt;/strong&gt;.&amp;nbsp; Click Next.&lt;br /&gt;&lt;br /&gt;If all the settings look ok, click Next.&lt;br /&gt;</description>
  <comments>http://ihilt.livejournal.com/10705.html</comments>
  <category>convert</category>
  <category>virtual machine</category>
  <category>vhd</category>
  <category>vmware</category>
  <category>virtual server</category>
  <category>vmdk</category>
  <category>esxi</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/10401.html</guid>
  <pubDate>Tue, 15 Dec 2009 14:00:04 GMT</pubDate>
  <title>Deploying Webapps From Gwt to Tomcat</title>
  <link>http://ihilt.livejournal.com/10401.html</link>
  <description>This is mainly a way for me to remember what the heck I did.  YMMV.  echarts is the name of my app.&lt;br /&gt;&lt;br /&gt;On the server, do the following,&lt;ul&gt;&lt;li&gt;Install Debian 5.0&lt;/li&gt;&lt;li&gt;Install Apache Tomcat 5.5&lt;/li&gt;&lt;li&gt;Install sun-java6-jre  (This isn&apos;t absolutely necessary for most cases, but in mine it was the only way to figure out why my application was failing.)&lt;/li&gt;&lt;li&gt;Install sqljdbc4.jar in &lt;code&gt;$CATALINA_HOME/common/lib&lt;/code&gt;.  &lt;strong&gt;DO NOT&lt;/strong&gt; put this file in &lt;code&gt;$CATALINA_HOME/webapps/echarts/WEB-INF/lib&lt;/code&gt;.  It won&apos;t work.&lt;/li&gt;&lt;/ul&gt;In the &lt;code&gt;$CATALINA_HOME/conf/policy.d/04webapps.policy&lt;/code&gt; file, make the following changes.&lt;br /&gt;&lt;pre&gt;



diff --git a/04webapps.policy.orig b/04webapps.policy
index bc4f009..d738d06 100644
--- a/04webapps.policy.orig
+++ b/04webapps.policy
@@ -47,6 +47,8 @@ grant {
     permission java.lang.RuntimePermission &amp;quot;accessClassInPackage.org.apache.jasper.runtime&amp;quot;;
     permission java.lang.RuntimePermission &amp;quot;accessClassInPackage.org.apache.jasper.runtime.*&amp;quot;;
 
+    permission java.net.SocketPermission &amp;quot;databaseserver:1433&amp;quot;, &amp;quot;connect,resolve&amp;quot;;
+    permission java.lang.reflect.ReflectPermission &amp;quot;suppressAccessChecks&amp;quot;;
 };
 
 // The permissions granted to the balancer WEB-INF/classes and WEB-INF/lib directory
@@ -58,4 +60,5 @@ grant codeBase &amp;quot;file:/usr/share/tomcat5.5-webapps/balancer/-&amp;quot; {
 grant codeBase &amp;quot;file:${catalina.home}/bin/tomcat-juli.jar&amp;quot; {
        permission java.io.FilePermission &amp;quot;/usr/share/tomcat5.5-webapps/jsp-examples/WEB-INF/classes/logging.properties&amp;quot;, &amp;quot;read&amp;quot;;
        permission java.io.FilePermission &amp;quot;/usr/share/tomcat5.5-webapps/servlets-examples/WEB-INF/classes/logging.properties&amp;quot;, &amp;quot;read&amp;quot;;
+       permission java.io.FilePermission &amp;quot;/var/lib/tomcat5.5/webapps/echarts/WEB-INF/classes/logging.properties&amp;quot;, &amp;quot;read&amp;quot;;
 };
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;In &lt;code&gt;/etc/default/tomcat5.5&lt;/code&gt; uncomment the line &lt;code&gt;JAVA_HOME=/usr/lib/jvm/java-6-sun&lt;/code&gt;.&lt;br /&gt;&lt;br /&gt;That&apos;s all I can remember for now.&lt;br /&gt;</description>
  <comments>http://ihilt.livejournal.com/10401.html</comments>
  <category>gwt</category>
  <category>annoying</category>
  <category>tomcat</category>
  <category>sqlserver</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/10083.html</guid>
  <pubDate>Fri, 04 Sep 2009 01:21:46 GMT</pubDate>
  <title>Why Are We Here?</title>
  <link>http://ihilt.livejournal.com/10083.html</link>
  <description>Something funny my online math instructor said.&lt;br /&gt;&lt;br /&gt;&amp;quot;Remember, we are here to learn HOW not to get correct answers.&amp;quot;&lt;br /&gt;&lt;br /&gt;Huh.&amp;nbsp; That makes my life &lt;strong&gt;&lt;em&gt;way&lt;/em&gt;&lt;/strong&gt; easier.&lt;br /&gt;</description>
  <comments>http://ihilt.livejournal.com/10083.html</comments>
  <category>college</category>
  <category>funny</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/9920.html</guid>
  <pubDate>Wed, 02 Sep 2009 17:49:38 GMT</pubDate>
  <title>To All My Friends Out There ...</title>
  <link>http://ihilt.livejournal.com/9920.html</link>
  <description>&lt;img border=&quot;0&quot; width=&quot;399&quot; height=&quot;388&quot; alt=&quot;&quot; src=&quot;http://pics.livejournal.com/ihilt/pic/00001dqt/s320x240&quot; /&gt;&lt;br /&gt;</description>
  <comments>http://ihilt.livejournal.com/9920.html</comments>
  <category>college</category>
  <category>funny</category>
  <category>friends</category>
  <category>arguments</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/9620.html</guid>
  <pubDate>Wed, 02 Sep 2009 16:40:32 GMT</pubDate>
  <title>Scare Tactics</title>
  <link>http://ihilt.livejournal.com/9620.html</link>
  <description>A few years ago I&amp;nbsp;had a job offer for a position in technology.&amp;nbsp; Since this was what I wanted to do at the time, it seemed like a great idea.&amp;nbsp; It also seemed like a great idea because I would be getting a raise.&amp;nbsp; I interviewed and decided that it was a go from my end.&amp;nbsp; After&amp;nbsp;a few days, I thought instead of keeping it a secret (one of my beliefs is secrets are stupid), I decided to tell my boss.&amp;nbsp; This was before I&amp;nbsp;knew it would work out, so I was taking a chance.&amp;nbsp; However, I&amp;nbsp;thought that if my boss wanted to keep me, this was the time to do it.&amp;nbsp; At the time, I believed this was not, in any way, going to happen.&amp;nbsp; Let&apos;s just say wages were frozen at this point.&lt;br /&gt;&lt;br /&gt;Anyway, he said he would talk to the president.&amp;nbsp; The next day he came back with a better offer than the other company.&amp;nbsp; I was absolutely shocked.&amp;nbsp; &amp;quot;Wow,&amp;quot;&amp;nbsp;I thought, &amp;quot;they must think I&amp;nbsp;do good work here.&amp;quot;&amp;nbsp; Now, before I explain why I&amp;nbsp;think this thought of mine is wrong, please understand that I&apos;m&amp;nbsp;a realist.&amp;nbsp; I do my best to see the truth rather than focus on the negative or the positive, in other words, I do my best to stay objective.&lt;br /&gt;&lt;br /&gt;So, a few months later, I was discussing this situation with my boss.&amp;nbsp; I can&apos;t remember exactly how we arrived at this point, but he began explaining the events that transpired from his end.&amp;nbsp; Apparently he told the president, in other words, that if I left, he would have to do my job, and if he couldn&apos;t do the job, then the president would have to do it.&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Your&amp;nbsp;first reaction might be, &amp;quot;Why on earth would your boss tell you that?!&amp;nbsp; That&apos;s insane!&amp;quot;&amp;nbsp; a)&amp;nbsp;I don&apos;t know and b) I&apos;d have to agree with you.&amp;nbsp; Keep in mind this company is rather small, the president started the company over thirty years ago, and my boss was the first employee.&amp;nbsp; Still ...&lt;br /&gt;&lt;br /&gt;&amp;quot;Wow,&amp;quot;&amp;nbsp;I thought to myself, &amp;quot;glad I stayed here.&amp;quot;&amp;nbsp; &lt;em&gt;Sarcasm, sarcasm, sarcasm&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;No, my friends, yours truly is not wanted because of his skill, his intelligence, his integrity, his passion, or his leadership skills. No, he is wanted so that his boss&apos;s boss doesn&apos;t have to get his hands dirty.&amp;nbsp; Huh.&amp;nbsp; Sure you couldn&apos;t, ya know, HIRE SOMEONE ELSE!&lt;/p&gt;</description>
  <comments>http://ihilt.livejournal.com/9620.html</comments>
  <category>rants</category>
  <category>firefox</category>
  <category>friends</category>
  <category>frustrated</category>
  <category>work</category>
  <lj:security>public</lj:security>
  <lj:reply-count>1</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/9444.html</guid>
  <pubDate>Fri, 28 Aug 2009 00:38:15 GMT</pubDate>
  <title>Does the MMR Vaccine Cause Autism?</title>
  <link>http://ihilt.livejournal.com/9444.html</link>
  <description>&lt;p&gt;Recently there has been considerable controversy over whether children should be vaccinated for the measles, mumps, and rubella (MMR) viruses.&amp;nbsp; This controversy has arisen primarily from one paper written by Dr. Andrew Wakefield.&amp;nbsp; In this paper he speculates that there is a possibility the vaccine for these viruses can cause the pervasive developmental disorder (PDD) autism.&amp;nbsp; Since this paper was published, there has been a growing amount of research that has found no causal connection.&amp;nbsp; Additionally, Wakefield&amp;rsquo;s ethics concerning the supporting research have come under scrutiny.&amp;nbsp; After reviewing the statistics for the number of cases of MMR in the U.S. over the last century, it is obvious that allowing Wakefield&amp;rsquo;s paper to decrease the administration of the vaccine for MMR would be disastrous.&amp;nbsp; In summary, although some have speculated that autism is caused by the MMR vaccine, this claim is unsupported by the scientific evidence and should be discarded as a reason to withhold the MMR vaccination from children.&lt;br /&gt;&lt;br /&gt;In 1998, Dr. Andrew Wakefield, with thirteen of his colleagues, published a paper that suggested the MMR vaccine may cause autism.&amp;nbsp; In this paper Wakefield states that he and his team had identified a &amp;ldquo;chronic enterocolitis in children that may be related to neuropsychiatric dysfunction&amp;rdquo; (1998, p. 641).&amp;nbsp; In most cases, the parents of the twelve children investigated had indicated most of their children developed symptoms after the MMR vaccination had been administered (1998, p. 641).&amp;nbsp; This observation led to what Wakefield thought could be a causal link between the MMR vaccine and autism and to an international dispute over whether the MMR vaccine should be administered to young children.&lt;br /&gt;&lt;br /&gt;However, the evidence that suggests the MMR vaccine may cause autism is speculative, at best.&amp;nbsp; In 2001, DeStefano and Chen published a paper reviewing the research for this supposed connection and concluded that it was not persuasive.&amp;nbsp; Specifically, they point out that in Wakefield&amp;rsquo;s study there was no control and experiment group (p. 832), the test for causality was false (pp. 835-836), and subsequent experiments by other researchers with control and experiment groups found no correlation between the MMR vaccination and autism (p. 833).&amp;nbsp; In one particular study, 498 individuals diagnosed with autism and vaccinated with the MMR vaccine were investigated for some indication of a connection between the two (Taylor, 1999).&amp;nbsp; The conclusion was simple:&amp;nbsp; there is no connection (Taylor, 1999, p. 2029).&amp;nbsp; Even those who support the work of Wakefield agree that the connection is speculative (Hendrickson, 2002, p. 2052).&amp;nbsp; Based on these findings it&amp;rsquo;s difficult to understand how one researcher could determine a connection in 12 out of 12 cases when these other researchers were unable to find a connection in hundreds of cases.&amp;nbsp; Indeed, the entire medical community seems to be saying that there is no connection.&amp;nbsp; Finally, Andrew Wakefield was summoned for a hearing before the General Medical Council (GMC) for ethical malpractice regarding the research that supports the paper in which he suggests there is a possible causal connection between the MMR vaccine and autism (General Medical Council, n.d.).&amp;nbsp; Why would the GMC have reasonable cause to conduct this hearing?&amp;nbsp; Surely, there has to be something questionable about Wakefield&amp;rsquo;s behavior for this to occur.&amp;nbsp; If his ethical behavior is under scrutiny, perhaps his results should be as well.&amp;nbsp; In any case, the scientific community agrees that the results of Wakefield&amp;rsquo;s study and his ethical behavior are on shaky ground.&lt;br /&gt;&lt;br /&gt;This leaves one last point to be made:&amp;nbsp; not vaccinating for MMR is not worth the risk.&amp;nbsp; Of these three viruses&amp;mdash;measles, mumps, and rubella&amp;mdash;measles is the only one that is fatally dangerous.&amp;nbsp; According to A. Parker (2009), the number of reported cases of measles in the United States has decreased from 894,134 in 1941 to fewer than 150 each year since 1997.&amp;nbsp; With such a dramatic decrease in the reported cases, it is obvious the MMR vaccine works.&amp;nbsp; Sadly, measles continues to be a leading cause of death among young children worldwide (World Health Organization, 2008).&amp;nbsp; As a result, it is widely agreed among medical authorities that vaccinating for MMR must continue to maintain reduced deaths caused by the measles virus.&amp;nbsp; In fact, the American Red Cross, World Health Organization (WHO), UNICEF, and United Nations Foundation formed a partnership to reduce the number of measles related deaths worldwide (Center for Disease Control, 2009).&amp;nbsp; Autism, on the other hand, rarely, if ever, causes death.&amp;nbsp; Arguably, not vaccinating for MMR makes little sense when the consequences are considered.&lt;br /&gt;&lt;br /&gt;After reviewing the evidence and the scientific community&amp;rsquo;s collective opinion, this author has concluded that there is no credible scientific evidence to support the claim that the MMR vaccine will lead to autism.&amp;nbsp; In fact, even if the vaccine caused autism in very rare cases, not vaccinating for MMR is not worth the risk of MMR spreading through unvaccinated children and resulting in many deaths.&amp;nbsp; Therefore, the very remote possibility of causing a neuropsychiatric dysfunction, such as autism, by vaccinating children for MMR should not be used as a reason not to vaccinate for MMR.&lt;br /&gt;&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;text-align: center&quot;&gt;References&lt;/p&gt;&lt;p&gt;Center for Disease Control. (2009 May). Measles mortality reduction and regional global measles elimination - program in brief- 508 compliant. Retrieved August 24, 2009, from &lt;a href=&quot;http://www.cdc.gov/ncird/progbriefs/downloads/global-measles-elim.pdf&quot;&gt;http://www.cdc.gov/ncird/progbriefs/downloads/global-measles-elim.pdf&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;DeStefano, F. &amp;amp; Chen, R. (2001). Autism and measles-mumps-rubella vaccination: controversy laid to rest?. CNS Drugs, 15(11), 831-837. Retrieved July 28, 2009, from MEDLINE with &amp;nbsp;Full Text database.&lt;br /&gt;&lt;br /&gt;General Medical Council. (n.d.). General Medical Council Press Office. Retrieved July 30, 2009, from &lt;a href=&quot;http://www.gmcpressoffice.org.uk/apps/news/events/detail.php?key=3657&quot;&gt;http://www.gmcpressoffice.org.uk/apps/news/events/detail.php?key=3657&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Hendrickson, B. &amp;amp; Turner, J. (2002, June 15). MMR vaccination, ileal lymphoid nodular hyperplasia, and pervasive developmental disorder. The Lancet, 359(9323), 2051-2052. &amp;nbsp;Retrieved July 30, 2009, from MEDLINE with Full Text database.&lt;br /&gt;&lt;br /&gt;Parker, A. &amp;amp; Uzicanin, A. (2009). Measles (rubeola). Retrieved August 2, 2009, from &lt;a href=&quot;http://wwwn.cdc.gov/travel/yellowbook/2010/chapter-2/measles.aspx&quot;&gt;http://wwwn.cdc.gov/travel/yellowbook/2010/chapter-2/measles.aspx&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Taylor, B., Miller, E., Farrington, C. P., et al. (1999 June 12). Autism and measles, mumps, and rubella vaccine: no epidemiological evidence for a causal association. The Lancet &amp;nbsp;353(9169), 2026-2029.&lt;br /&gt;&lt;br /&gt;Wakefield, A., Murch S., Anthony A., et al. (1998). Ileal lymphoid nodular hyperplasia, non-specific colitis, and regressive developmental disorder in children. The Lancet 351(9103), 637-641.&lt;br /&gt;&lt;br /&gt;World Health Organization. (2008). Measles. Retrieved August 2, 2009, from &lt;a href=&quot;http://www.who.int/mediacentre/factsheets/fs286/en/index.html&quot;&gt;http://www.who.int/mediacentre/factsheets/fs286/en/index.html&lt;/a&gt;.&lt;/p&gt;</description>
  <comments>http://ihilt.livejournal.com/9444.html</comments>
  <category>measles</category>
  <category>vaccination</category>
  <category>mmr</category>
  <category>mumps</category>
  <category>research</category>
  <category>pdd</category>
  <category>rubella</category>
  <category>autism</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/9168.html</guid>
  <pubDate>Wed, 26 Aug 2009 21:34:11 GMT</pubDate>
  <title>The Simple Life</title>
  <link>http://ihilt.livejournal.com/9168.html</link>
  <description>&lt;br /&gt;I consider myself to be a simple person.&amp;nbsp; I hadn&apos;t realized I was a simple person until I started to take notice of other people which was around twelve years of age.&amp;nbsp; Now it is true that I &lt;em&gt;noticed&lt;/em&gt; people before I was twelve, but in much the same way as one notices a chair or foot rest.&amp;nbsp; Around this time I started to realize that people are not simple; people are complicated, much like a ball of yarn that has been unwound then tangled by a kitten is complicated.&lt;br /&gt;&lt;br /&gt;For example, take coffee.&amp;nbsp; I like to drink it black and warm.&amp;nbsp; Not scaldingly hot.&amp;nbsp; Not filled with additives.&amp;nbsp; Just coffee.&amp;nbsp; Why, you ask?&amp;nbsp; Because I just do.&amp;nbsp; See?&amp;nbsp;&amp;nbsp;Simple answer.&lt;br /&gt;&lt;br /&gt;I do think that there is an art to brewing good coffee.&amp;nbsp; I&apos;ve had great coffee and I&apos;ve had coffee that was only a hair better than drinking urine.&amp;nbsp; I suppose one could argue that this is complicated, but it doesn&apos;t mean &lt;strong&gt;I&lt;/strong&gt; have to know how to do it.&amp;nbsp; Just that somebody does, and that I get to drink it.&amp;nbsp; Nice and simple.&lt;br /&gt;&lt;br /&gt;Recently, as in five minutes ago, I perused &lt;a href=&quot;http://coffeegeek.com&quot;&gt;http://coffeegeek.com&lt;/a&gt;.&amp;nbsp; Very complicated website.&amp;nbsp; Could I find a simple, easy recipe to brew great coffee?&amp;nbsp; Didn&apos;t look long enough to find out.&lt;br /&gt;&lt;br /&gt;In essence, I suppose I think that there is a recipe for The One coffee brew.&amp;nbsp; The One will taste perfect in every way, will not need any additives, and generate long-lasting memories of the experience.&amp;nbsp; It seems people just want options so that they have options.&amp;nbsp; I don&apos;t mind options as long as I can eliminate them.</description>
  <comments>http://ihilt.livejournal.com/9168.html</comments>
  <lj:mood>focused</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/8929.html</guid>
  <pubDate>Fri, 21 Aug 2009 14:19:09 GMT</pubDate>
  <title>Educational future continued</title>
  <link>http://ihilt.livejournal.com/8929.html</link>
  <description>If I could just avoid human contact while still doing medical research, then I think it would work out.  Problem is, I don&apos;t know how I could get a degree in pathology without human contact.&lt;br /&gt;&lt;br /&gt;Can you tell I&apos;m bored with my job?</description>
  <comments>http://ihilt.livejournal.com/8929.html</comments>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/8483.html</guid>
  <pubDate>Fri, 21 Aug 2009 01:17:57 GMT</pubDate>
  <title>Follow-up to previous post about educational future</title>
  <link>http://ihilt.livejournal.com/8483.html</link>
  <description>Yea, so maybe I was on the fence before about the whole medical/pathology thing.&amp;nbsp; I am no longer.&amp;nbsp; I just tried to watch a lumbar puncture on youtube and nearly passed out.&amp;nbsp; PASSED&amp;nbsp;FREAKIN&apos; OUT.&amp;nbsp; I&apos;m a loser.&amp;nbsp; Why does that happen?&amp;nbsp; Is it genetic?&amp;nbsp; I&amp;nbsp;know my aunt following injection of any sort would pass out five to ten minutes later.&amp;nbsp; As I watched, I didn&apos;t have any negative thoughts.&amp;nbsp; I wasn&apos;t scared.&amp;nbsp; I didn&apos;t feel panicky.&amp;nbsp; I&amp;nbsp;just noticed I&amp;nbsp;started to sweat a little bit and get light-headed.&amp;nbsp; It was weird.&amp;nbsp; It must be psychological, but I wouldn&apos;t know how to counteract it since I didn&apos;t have any thoughts about it.&amp;nbsp; Maybe that&apos;s the problem ... I should think more???&amp;nbsp; In any case, I&amp;nbsp;think for now, med school is off the list of things to do.</description>
  <comments>http://ihilt.livejournal.com/8483.html</comments>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/8442.html</guid>
  <pubDate>Thu, 20 Aug 2009 01:31:11 GMT</pubDate>
  <title>My Educational Future</title>
  <link>http://ihilt.livejournal.com/8442.html</link>
  <description>&lt;br /&gt;In case you haven&apos;t heard, I&apos;m currently enrolled at &lt;a href=&quot;http://www.devry.edu/&quot;&gt;DeVry University&lt;/a&gt; in their B.S. program of&amp;nbsp;computer engineering technology.&amp;nbsp; I&apos;ve nearly completed (90%) my first two courses!&amp;nbsp; I&apos;m currently holding about 98% in both, so I&apos;m pleased.&lt;br /&gt;&lt;br /&gt;Ok, onto the topic of this post.&amp;nbsp; Apparently to my brain this wasn&apos;t enough.&amp;nbsp; Instead, it decided to remind me of my childhood dream of becoming a pathologist.&amp;nbsp; &amp;quot;That sounds like a great idea!&amp;quot;, I said.&amp;nbsp; So, I did some research into what I would need to accomplish this lofty goal.&amp;nbsp; The results look like this:&amp;nbsp; four years of a bachelor&apos;s degree, probably in biology; four years of medical school; four years doing research for a doctorate; four years in residency for my specialty, pathology.&amp;nbsp; Is it possible?&amp;nbsp; Maybe.&amp;nbsp; Would it be worth it?&amp;nbsp; Yup.&amp;nbsp; Would I&amp;nbsp;do it?&amp;nbsp;&amp;nbsp;In a heart beat.&amp;nbsp; Should I do it? Nope.&amp;nbsp; Why not? Well, that&apos;s complicated, but it boils down to these following reasons.&amp;nbsp; Currently, my life is busy.&amp;nbsp; Family, work, church, band stuff, and school work take up my time.&amp;nbsp; This makes online learning basically the only option.&amp;nbsp; Since biology would be an onsite thing, it would take some nifty maneuvering to accomplish this goal, not to mention med school.&amp;nbsp; Next there&apos;s educational reimbursement.&amp;nbsp; My employer is paying for 100% of a given course if I&amp;nbsp;receive an A for that course.&amp;nbsp; The only catch is that the degree to which the course applies has to be blessed by the president of the company.&amp;nbsp; Since the company is a contract manufacturer for electronic assembly, I don&apos;t see biology or med school entering that picture.&lt;br /&gt;&lt;br /&gt;So, I decided that if things don&apos;t pan out for computer engineering, I&apos;ll give biology a shot.&amp;nbsp; Besides, my dream job is research scientist which could be fulfilled along this computer science path.&amp;nbsp; I&apos;m also considering the master&apos;s program of electrical engineering DeVry offers, which would involve research.&lt;br /&gt;&lt;br /&gt;I guess for now I&apos;ve chosen the easier and more practical route, but I&apos;m keeping my options open.</description>
  <comments>http://ihilt.livejournal.com/8442.html</comments>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/7959.html</guid>
  <pubDate>Mon, 06 Jul 2009 18:35:27 GMT</pubDate>
  <title>Quick life evaluation</title>
  <link>http://ihilt.livejournal.com/7959.html</link>
  <description>Sometimes I wonder if I&apos;m involved in too many things ... let&apos;s check.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Taking two classes online through DeVry University&lt;/li&gt;&lt;li&gt;Working at least forty hours a week&lt;/li&gt;&lt;li&gt;Have a wife and two kids&lt;/li&gt;&lt;li&gt;Ride my bicycle at least 100 miles per week&lt;/li&gt;&lt;li&gt;Go to church&lt;/li&gt;&lt;li&gt;Play and practice with a Church Worship Band&lt;/li&gt;&lt;li&gt;Play and practice with a Math Metal band which occasionally has shows&lt;/li&gt;&lt;li&gt;Read books such as Brent Weeks&apos; Night Angel Trilogy&lt;/li&gt;&lt;/ul&gt;Nah, I&apos;m good.&lt;br /&gt;</description>
  <comments>http://ihilt.livejournal.com/7959.html</comments>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/7852.html</guid>
  <pubDate>Thu, 11 Jun 2009 15:53:11 GMT</pubDate>
  <title>First Century</title>
  <link>http://ihilt.livejournal.com/7852.html</link>
  <description>I thought I&apos;d post here news of my accomplishment of my first century ride.  Actually it ended up to be one-hundred and twenty miles.  I felt good the first sixty, which I expected since I had previously done sixty with no problems.  However that was the half-way point and I had another sixty to go.  My legs really wore out after that.  I managed to keep my speed around seventeen and eighteen miles per hour on the flats though.  My average speed turned out to be fifteen point nine which isn&apos;t bad I suppose for my first century ride.  Overall it was a blast.  The weather was absolutely perfect and I didn&apos;t have any mechanical problems.&lt;br /&gt;&lt;br /&gt;This will definitely be happening again.</description>
  <comments>http://ihilt.livejournal.com/7852.html</comments>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/7544.html</guid>
  <pubDate>Wed, 11 Mar 2009 18:19:00 GMT</pubDate>
  <title>Firefox Adobe Reader plugin</title>
  <link>http://ihilt.livejournal.com/7544.html</link>
  <description>
&lt;p&gt;If your linux distribution doesn&apos;t automagically install this plugin,
it can be a slight pain to get it working properly.  I document the
procedure I used here.&lt;/p&gt;

&lt;p&gt;Prerequisites:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;nspluginwrapper is installed&lt;/li&gt;
&lt;li&gt;acroread from &lt;a href=&quot;http://get.adobe.com/reader/&quot;&gt;http://get.adobe.com/reader/&lt;/a&gt; is
installed&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Installing acroread should have installed the nppdf.so library.  Finding
this can be troublesome.  On openSUSE 11.1 it&apos;s located here
&lt;code&gt;/opt/Adobe/Reader8/Browser/intellinux/&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Once you&apos;ve found it, go to your home directory and &lt;code&gt;cd&lt;/code&gt;
into the &lt;code&gt;.mozilla&lt;/code&gt; directory and create a
&lt;code&gt;plugins&lt;/code&gt; directory if it&apos;s not already there.  So,&lt;/p&gt;

&lt;pre&gt;
	$ cd $HOME/.mozilla
	$ mkdir plugins
&lt;/pre&gt;

&lt;p&gt;Now, create a soft link to the library.&lt;/p&gt;

&lt;pre&gt;
	$ ln -s $PATH_TO_NPPDF
&lt;/pre&gt;

&lt;p&gt;Restart firefox, and you should be able to view pdfs embedded!&lt;/p&gt;
</description>
  <comments>http://ihilt.livejournal.com/7544.html</comments>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/6775.html</guid>
  <pubDate>Sat, 07 Mar 2009 19:20:19 GMT</pubDate>
  <title>Email Posting and Auto-Formatting</title>
  <link>http://ihilt.livejournal.com/6775.html</link>
  <description>
&lt;p&gt;In the a previous entry I explained how I setup LJ and my mail client
for email posting to LJ.  If you&apos;re posting in a text only way, you have
to include the HTML tags for formatting.&lt;/p&gt;

&lt;p&gt;This is all well and good except that LJ still does Auto-Formatting
on the post.  The reason this is bad for me is that it turns any line
breaks into &amp;lt;br /&amp;gt; tags.  Thankfully, LJ makes it easy to turn
this feature off in HTML mode.  Simply use &amp;lt;lj-raw&amp;gt; before and
&amp;lt;/lj-raw&amp;gt; after the text which you want Auto-Formatting disabled.&lt;/p&gt;
</description>
  <comments>http://ihilt.livejournal.com/6775.html</comments>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/6487.html</guid>
  <pubDate>Sat, 07 Mar 2009 17:09:38 GMT</pubDate>
  <title>GPG and Live Journal Email posting</title>
  <link>http://ihilt.livejournal.com/6487.html</link>
  <description>&lt;p&gt;I&apos;ve got to say, Live Journal is &lt;strong&gt;awesome&lt;/strong&gt;!  Not only do they facilitate
posting via email, they also provide public key verification!&lt;/p&gt;

&lt;p&gt;Since I use the alpine mail client, this proved a small amount more
difficult than most clients available these days.  But no worries.&lt;/p&gt;

&lt;p&gt;Here&apos;s how I did it.&lt;/p&gt;

&lt;p&gt;A prerequisite:
&lt;div style=&quot;margin-left: 40px&quot;&gt;
You&apos;ve got to have a public key.  If generated by gpg, it
must be greater than or equal to GPG 1.2.4.&lt;/div&gt;&lt;/p&gt;

&lt;p&gt;First I uploaded my GPG public key to LJ.  To do this, I logged into my
account, went to the userinfo section, and clicked on Account.  Of the
tabs at the top, I clicked on Mobile.  Scrolling down to Email Posting,
I entered my email address from which I&apos;ll be posting and checked Send
errors? since I want any errors reported back to me.  Then I navigated
to &lt;a href=&quot;http://www.livejournal.com/manage/pubkey.bml&quot;&gt;this&lt;/a&gt; link.
I exported my public key in ascii-armored format and pasted it into the box.
LJ is now ready to accept clear signed email posts.&lt;/p&gt;

&lt;p&gt;To configure alpine, I added &lt;code&gt;/usr/bin/gpg --clearsign&lt;/code&gt; to Sending
Filters.  Then sent a test email to &lt;code&gt;ihilt+PGP@post.livejournal.com

&lt;p&gt;This, for me, is a pretty neat feature.  Let me know what you think of it!&lt;/p&gt;&lt;/code&gt;</description>
  <comments>http://ihilt.livejournal.com/6487.html</comments>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/5531.html</guid>
  <pubDate>Sat, 07 Mar 2009 01:04:23 GMT</pubDate>
  <title>First ride of the season</title>
  <link>http://ihilt.livejournal.com/5531.html</link>
  <description>&lt;p&gt;So today was the first day since November of last year that I rode my Cannondale Synapse Sport to work and back.  It was enjoyable &amp;hellip; well, pleasant &amp;hellip; mostly &amp;hellip; ok, ok:  for the first three quarters of the way to work my bronchial tube felt like it would burst into flames any second.  Other than &lt;strong&gt;that&lt;/strong&gt;, it was great.  It definitely wasn&apos;t one of my faster rides, but it was steady and strong I think.&lt;/p&gt;

&lt;p&gt;You may ask, &amp;quot;Why cycle?&amp;quot;.  Good question.  Answer:  because I like it.  It&apos;s just one of those things.  I&apos;ve tried rationalizing it (look at how much gas and wear and tear it&apos;s saving) and tried saying it was fun (Freedom and the wind in my hair), but when you strip all that away, I&apos;m left with the fact that I &lt;strong&gt;just&lt;/strong&gt; like it.  Period.  I&apos;m sure you may have something that&apos;s similar, such as a sport, collecting something, selling something, getting a little somethin&apos; somethin&apos; &amp;hellip; uh, nevermind.  Anyway, that ends this post.  Happy cycling!&lt;/p&gt;</description>
  <comments>http://ihilt.livejournal.com/5531.html</comments>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/5319.html</guid>
  <pubDate>Fri, 06 Mar 2009 03:34:14 GMT</pubDate>
  <title>cadaver and WebDAV</title>
  <link>http://ihilt.livejournal.com/5319.html</link>
  <description>&lt;p&gt;No, I&apos;m not saying that technology has anything to do with death. &lt;code&gt;cadaver&lt;/code&gt; is a command-line tool for accessing WebDAV servers reminiscent of &lt;code&gt;ftp(1)&lt;/code&gt; and &lt;code&gt;smbclient(1)&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Accessing servers is quick and painless.  Thus,&lt;/p&gt;
&lt;pre&gt;
    ihilt@sys-2:~&amp;gt; cadaver https://mydisk.se/ihilt
    Authentication required for User: ihilt on server `mydisk.se&apos;:
    Username: ihilt
    Password: 
    dav:/ihilt/&amp;gt;
&lt;/pre&gt;

&lt;p&gt;It offers a whole host of commands,&lt;/p&gt;

&lt;pre&gt;
    Available commands: 
     ls         cd         pwd        put        get        mget       mput       
     edit       less       mkcol      cat        delete     rmcol      copy       
     move       lock       unlock     discover   steal      showlocks  version    
     checkin    checkout   uncheckout history    label      propnames  chexec     
     propget    propdel    propset    search     set        open       close      
     echo       quit       unset      lcd        lls        lpwd       logout     
     help       describe   about      
    Aliases: rm=delete, mkdir=mkcol, mv=move, cp=copy, more=less, quit=exit=bye
&lt;/pre&gt;

&lt;p&gt;If you&apos;re familiar with &lt;code&gt;ftp&lt;/code&gt;, then you&apos;re already familiar with most of these commands.  Apparently, WebDAV is designed to enable access for multiple users to the same &amp;quot;collection&amp;quot; while protecting the files from being opened by more than one user at a time.  Thus the &lt;code&gt;lock&lt;/code&gt; and &lt;code&gt;unlock&lt;/code&gt; commands.  (Don&apos;t worry, it does it automatically, but gives you the option of doing it manually ... ah, the beauty of Unix.)&lt;/p&gt;

&lt;p&gt;Interestingly, &lt;code&gt;version&lt;/code&gt; allows you to setup version control for a collection.  I haven&apos;t tried this out yet, so if you do, let me know if it&apos;s useful.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;set&lt;/code&gt; allows you to set different variables controlling the experience of the &lt;code&gt;cadaver&lt;/code&gt; user.  For instance, it has an editor variable so that you can open files on the WebDAV server in your editor-of-choice.&lt;/p&gt;

&lt;p&gt;Like &lt;code&gt;ftp&lt;/code&gt;, it has the capability of using the .netrc file to automatically sign-in to machines.  However, I&apos;ve not been able to get this working.  Any tips would be great!&lt;/p&gt;

&lt;p&gt;Overall, a nice little tool, and as far as I can tell, well designed.&lt;/p&gt;</description>
  <comments>http://ihilt.livejournal.com/5319.html</comments>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/5008.html</guid>
  <pubDate>Sun, 01 Mar 2009 04:04:40 GMT</pubDate>
  <title>Firefox missing plugin annoyance</title>
  <link>http://ihilt.livejournal.com/5008.html</link>
  <description>&lt;p&gt;Have you ever &lt;strong&gt;not&lt;/strong&gt; wanted to install a particular plugin, but every time you visit a particular web page utilizing that particular plugin, firefox distracts you from why you&apos;re really there by moving the &lt;strong&gt;entire&lt;/strong&gt; page down by about a half inch?&lt;/p&gt;

&lt;p&gt;Yea, me, too.&lt;/p&gt;

&lt;p&gt;So I did something about it.  Pretty simple once I decided I&apos;d had enough.&lt;/p&gt;

&lt;p&gt;Go to the address bar and type in &amp;quot;about:config&amp;quot;.  Ignore any message about this possibly voiding your warranty, unless of course, you are more interested in that than in having a sane browser &amp;hellip; ok, didn&apos;t think so.&lt;/p&gt;

&lt;p&gt;In the filter input box, type in &amp;quot;plugin&amp;quot;.  This will filter it down to a few.  Look for &amp;quot;plugins.hide_infobar_for_missing_plugin&amp;quot;. When you find it, double-click on it, unless it already has true in the value column, which if it did, you wouldn&apos;t be upset because firefox was fiddling with your web browsing experience.  Anyway, this should do it.  Now, you can live in freedom knowing that firefox will never bother you again because you hadn&apos;t installed a particular plugin.&lt;/p&gt;

&lt;p&gt;If you want firefox to return to it&apos;s irrational previous behavior, go back through the above procedure.  This will change the value to false.&lt;/p&gt;

&lt;p&gt;As an aside, I think the drop down is useless because if firefox can&apos;t display something on the page, it replaces what would be there with a box that says something like &amp;quot;Click here to download plugin&amp;quot;.  So why the drop down??&lt;/p&gt;</description>
  <comments>http://ihilt.livejournal.com/5008.html</comments>
  <category>firefox</category>
  <category>plugin</category>
  <category>annoyance</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/4622.html</guid>
  <pubDate>Mon, 23 Feb 2009 16:25:01 GMT</pubDate>
  <title>Alpine pass file location</title>
  <link>http://ihilt.livejournal.com/4622.html</link>
  <description>In case anyone is using alpine 2.00 under open Suse 11.1 and wonders where the heck it looks for the pass file, look no further.&amp;nbsp; It&apos;s $HOME/.pinepw.&amp;nbsp; Weird, huh?&amp;nbsp; On Ubuntu 8.10 it was $HOME/.pine-passfile.&amp;nbsp; Oh well.&amp;nbsp; Hope that helps somebody.</description>
  <comments>http://ihilt.livejournal.com/4622.html</comments>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/4475.html</guid>
  <pubDate>Fri, 06 Feb 2009 03:52:41 GMT</pubDate>
  <title>Ouch ...</title>
  <link>http://ihilt.livejournal.com/4475.html</link>
  <description>&lt;p&gt;PCA gets a &lt;a href=&quot;http://www.usda.gov/wps/portal/!ut/p/_s.7_0_A/7_0_1OB?contentidonly=true&amp;amp;contentid=2009/02/0038.xml&quot;&gt;kick&lt;/a&gt; in the shorts.&lt;/p&gt;</description>
  <comments>http://ihilt.livejournal.com/4475.html</comments>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/4168.html</guid>
  <pubDate>Mon, 02 Feb 2009 03:00:55 GMT</pubDate>
  <title>Salmonella Outbreak</title>
  <link>http://ihilt.livejournal.com/4168.html</link>
  <description>An interesting twist to this story comes from a possible connection between the ConAgra salmonella contamination a couple years ago and the current PCA outbreak.&amp;nbsp; &lt;a href=&quot;http://www.newsday.com/services/newspaper/printedition/sunday/health/ny-hssalm016019896feb01,0,3403059.story&quot;&gt;This&lt;/a&gt; news article describes what could be a link between the two.&amp;nbsp; However, nothing has been confirmed and it seems the source is still PCA for the time being.&lt;br /&gt;</description>
  <comments>http://ihilt.livejournal.com/4168.html</comments>
  <lj:security>public</lj:security>
  <lj:reply-count>1</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/3906.html</guid>
  <pubDate>Wed, 28 Jan 2009 06:54:33 GMT</pubDate>
  <title>QEmu And Windows 98 SE</title>
  <link>http://ihilt.livejournal.com/3906.html</link>
  <description>In case any of you out there are wondering how to get the BIOS to work, look no further.&amp;nbsp; All your questions are answered here.&lt;br /&gt;&lt;br /&gt;First of all, you&apos;ll need a copy of the Windows 98 SE installation CD.&amp;nbsp; If you don&apos;t have that, I can&apos;t help.&lt;br /&gt;&lt;br /&gt;Do a vanilla installation.&amp;nbsp; After you&apos;ve logged in made sure everything else is working, look in the Device Manager.&amp;nbsp; The BIOS should be in fail-safe mode.&amp;nbsp; Update its driver.&amp;nbsp; When it asks whether you want to search or display drivers, select display.&amp;nbsp; Click on PCI bus.&amp;nbsp; It will complain, but let it know who&apos;s boss.&amp;nbsp; It will then reboot.&amp;nbsp; You&apos;ll probably run into a general protection fault.&amp;nbsp; This is OK.&amp;nbsp; Reboot.&amp;nbsp; From the Boot up screen, select command prompt only mode.&amp;nbsp; Then at the prompt, type &lt;strong&gt;win&lt;/strong&gt;.&amp;nbsp; This should take you into the GUI and windows should identify everything.&lt;br /&gt;&lt;br /&gt;After I&amp;nbsp;did this, some other weirdness happened.&amp;nbsp; Like, it couldn&apos;t find a bunch of files.&amp;nbsp; But I&amp;nbsp;rebooted (the salve that soothes all microsoft&apos;s ailments), and went through &amp;quot;Add New Hardware&amp;quot; wizard for the RealTek card.&lt;br /&gt;&lt;br /&gt;vnetsup.vxd, vredir.vxd, or dfs.vxd are no where to be found and when it goes into the gui, it says it can&apos;t find msnp32.dll.&amp;nbsp; Other than that, flawless.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;strong&gt;UPDATE&lt;/strong&gt;&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;I found out that re-installing Windows Client Networking fixed the above problem.&amp;nbsp; To do that, go to Control Panel -&amp;gt; Network.&amp;nbsp; Then remove Client for Windows Networking.&amp;nbsp; Reboot.&amp;nbsp; Do the same thing except add a Client.&amp;nbsp; Then from the menu, pick Microsoft on the left and client for Microsoft Networks on the right.&amp;nbsp; This should install all the missing files.&lt;br /&gt;</description>
  <comments>http://ihilt.livejournal.com/3906.html</comments>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/3641.html</guid>
  <pubDate>Mon, 26 Jan 2009 21:27:50 GMT</pubDate>
  <title>Peanut Corp.</title>
  <link>http://ihilt.livejournal.com/3641.html</link>
  <description>Interestingly, PCA removed the statement they made January 21st which indicated they hadn&apos;t been notified by a &amp;quot;regulatory agency&amp;quot;.&amp;nbsp; The link was &lt;a href=&quot;http://www.peanutcorp.com/pdf/Peanut%20Corporation%20of%20America%20Statement%201%2021%2009.pdf&quot;&gt;this&lt;/a&gt;.&amp;nbsp; It&apos;s clearly been removed.&amp;nbsp; Unfortunately I did not save a copy of the document.&amp;nbsp; I hope this means they&apos;ve received a document from the FDA and are ready to issue a statement of agreement rather than a &amp;quot;non-denial denial&amp;quot;.&lt;br /&gt;&lt;br /&gt;Thanks to Google, I was able to find an HTML version of this &lt;a href=&quot;http://74.125.47.132/search?q=cache:2NawRYEr268J:www.peanutcorp.com/pdf/Peanut%2520Corporation%2520of%2520America%2520Statement%25201%252021%252009.pdf+recall+filetype:pdf+site:www.peanutcorp.com&amp;amp;hl=en&amp;amp;ct=clnk&amp;amp;cd=4&amp;amp;gl=us&amp;amp;client=firefox-a&quot;&gt;document&lt;/a&gt;.&lt;br /&gt;</description>
  <comments>http://ihilt.livejournal.com/3641.html</comments>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/3506.html</guid>
  <pubDate>Sun, 25 Jan 2009 01:35:09 GMT</pubDate>
  <title>My Wishlist</title>
  <link>http://ihilt.livejournal.com/3506.html</link>
  <description>&lt;p&gt;In case any of you are precariously close to losing your mind because you couldn&apos;t for the life of you think of what I&apos;d like as a gift these days, ponder no longer.&lt;/p&gt;

&lt;p&gt;You may view my wish list at&lt;/p&gt;

&lt;div style=&quot;margin-left: 40px;&quot;&gt;&lt;a href=&quot;http://www.wishlistr.com/ihilt/&quot;&gt;http://www.wishlistr.com/ihilt/&lt;/a&gt;&lt;/div&gt;

&lt;p&gt;which will be updated from time to time when things are purchased or I&apos;ve fixated upon that new and exciting &amp;hellip; thing-a-muh-jig.&lt;/p&gt;

&lt;p&gt;Signing up and creating a wish list is stupendously easy, so I heartily suggest you do the same if you suspect any of your friends or family are pulling their hair out trying to discover that perfect gift for you!&lt;/p&gt;

&lt;p&gt;I&apos;ve also added this link to the right side of this page under &amp;quot;links&amp;quot;, unsurprisingly.&lt;/p&gt;</description>
  <comments>http://ihilt.livejournal.com/3506.html</comments>
  <lj:security>public</lj:security>
  <lj:reply-count>1</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://ihilt.livejournal.com/2829.html</guid>
  <pubDate>Thu, 22 Jan 2009 15:34:34 GMT</pubDate>
  <title>Peanut Corp.</title>
  <link>http://ihilt.livejournal.com/2829.html</link>
  <description>In their public statement as of January 21st 2009, Peanut Corporation of America does not make any indication that they agree with the findings of the FDA.&amp;nbsp; Their statement follows.&lt;div style=&quot;margin-left: 40px;&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;PCA continues to work with all regulatory agencies involved in this ongoing, dynamic investigation and we will address the agency&apos;s findings when they are shared with us. As we announced on January 18th, PCA issued a voluntary recall for all peanut butter and peanut paste produced on or after July 1, 2008 in our Blakely, Georgia facility.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 40px;&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;To date, we have nothing in writing from the agency that documents its findings that result from its ongoing investigation and testing onsite at our facility. We trust that at some point they will share this with us and PCA will respond accordingly. During this entire process we have continued our cooperation with federal and state officials and we have diligently worked with our customers to ensure the safety of consumers.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 40px;&quot;&gt;&amp;nbsp;&lt;/div&gt;In the first paragraph they indicate the &amp;quot;regulatory agency&amp;quot; hasn&apos;t even shared information with them.&amp;nbsp; Then they state they haven&apos;t given them anything in writing.&amp;nbsp; This leaves the reader somewhat confused.&amp;nbsp; Are they accusing the agency of not sharing information with them or not giving them a written document containing their findings?&amp;nbsp; I&apos;d have to say it&apos;s unclear from their statement.&amp;nbsp; Furthermore, the FDA indicates they have &lt;a href=&quot;http://www.fda.gov/oc/opacom/hottopics/salmonellatyph/news011909.html&quot;&gt;notified&lt;/a&gt; PCA.&lt;div style=&quot;margin-left: 40px;&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;The FDA has notified PCA that product samples                                         originating from its Blakely, Georgia (Ga.), processing plant have been tested and found positive for&lt;em&gt; Salmonella&lt;/em&gt; by laboratories in the states of Minnesota and Connecticut.&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;PCA has voluntarily taken action to stem the spread of this contaminant so they can&apos;t be faulted there, but why the complaint about not being notified in writing by the &amp;quot;regulatory agency&amp;quot;?&amp;nbsp; Whether or not this is true, it doesn&apos;t seem like a smart move since the FDA is saying they&apos;ve notified them.&lt;br /&gt;&lt;br /&gt;On the other hand, it seems PCA could be holding out for some possibility that they aren&apos;t at fault.&amp;nbsp; Their statement makes more sense from this perspective.&lt;br /&gt;&lt;br /&gt;Since they didn&apos;t specify which agency hasn&apos;t shared information with them they could be playing the ignorance game: Oh, you mean &lt;strong&gt;that&lt;/strong&gt; regulatory agency!&amp;nbsp; We meant &lt;strong&gt;this&lt;/strong&gt; regulatory agency.&lt;br /&gt;&lt;br /&gt;In any case, this is an interesting story to watch unfold.&lt;br /&gt;</description>
  <comments>http://ihilt.livejournal.com/2829.html</comments>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
</channel>
</rss>
