<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Shlrm.org Blag &#187; Gripes</title>
	<atom:link href="http://shlrm.org/wordpress/category/gripes/feed/" rel="self" type="application/rss+xml" />
	<link>http://shlrm.org/wordpress</link>
	<description>Linux, Java, Ruby, and Politics.</description>
	<lastBuildDate>Mon, 10 Oct 2011 18:50:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Hibernate 3 Maven Plugin hbm2ddl Goal and Hate</title>
		<link>http://shlrm.org/wordpress/2011/10/10/hibernate-3-maven-plugin-hbm2ddl-goal-and-hate/</link>
		<comments>http://shlrm.org/wordpress/2011/10/10/hibernate-3-maven-plugin-hbm2ddl-goal-and-hate/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 18:50:48 +0000</pubDate>
		<dc:creator>David Kowis</dc:creator>
				<category><![CDATA[Coding!]]></category>
		<category><![CDATA[Gripes]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[maven]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://shlrm.org/wordpress/?p=492</guid>
		<description><![CDATA[What happens when your build fails because it cannot talk to the internet anymore? You have DTD issues. I detail a solution specifically for the hibernate3-maven-plugin and it's hbm2ddl goal.]]></description>
			<content:encoded><![CDATA[<p>Over the weekend the Jenkins build started failing. The error leads me to believe that someone didn&#8217;t verify their build before committing code, and that the configuration file now has a problem:</p>
<pre class="brush: text; gutter: false; first-line: 1">org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.codehaus.mojo:hibernate3-maven-plugin:2.2:hbm2ddl (create-schema) on project incident-service:
   Execution create-schema of goal org.codehaus.mojo:hibernate3-maven-plugin:2.2:hbm2ddl failed:
    Could not parse configuration: file:/var/lib/jenkins/jobs/IncidentService/workspace/target/classes/hibernate.cfg.xml</pre>
<p>Except, there were no changes to the code; nothing changed in this file, and it&#8217;s been working fine for about a month or two. The environment the build server is on changed however. It cannot get to certain parts of the internet:</p>
<pre class="brush: text; gutter: false; first-line: 1"></pre>
<pre class="brush: text; gutter: false; first-line: 1">jenkins@hudson1:~$ wget http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd
--2011-10-10 10:48:06--  http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd
Resolving www.hibernate.org... 209.132.182.21
Connecting to www.hibernate.org|209.132.182.21|:80... failed: Connection timed out.
Retrying.</pre>
<p>It&#8217;s not actually able to get to the internet to validate the DTD within that hibernate.cfg.xml file. This should not break our build. It was a source of much frustration for about 4 hours of the day. Various <a href="https://forum.hibernate.org/viewtopic.php?f=1&amp;t=949031">hibernate forums</a> were of limited help.</p>
<p>Apparently it should get it from the jar, rather than the internet, if the jar is available on the class path and the DTD matches. First our DTD was incorrect. Rectified that, and yet it still tried to get it off the internet. WTF?</p>
<p>Turns out the hibernate3-maven-plugin doesn&#8217;t include any hibernate jars when it executes.</p>
<p><a href="http://shlrm.org/wordpress/wp-content/uploads/2011/10/le-sigh.jpg"><img class="size-medium wp-image-495 alignnone" title="le sigh" src="http://shlrm.org/wordpress/wp-content/uploads/2011/10/le-sigh-300x207.jpg" alt="*le sigh*" width="300" height="207" /></a></p>
<p>Solution is to duplicate the necessary hibernate dependencies for the plugin to have the necessary DTD data available:</p>
<pre class="brush: xml; gutter: true; first-line: 1">&lt;dependencies&gt;
  &lt;!--
    Need to include the following hibernate dependencies so that it can find the DTD
    without having to get it off the internet.
  --&gt;
  &lt;dependency&gt;
    &lt;groupId&gt;org.hibernate&lt;/groupId&gt;
    &lt;artifactId&gt;hibernate-core&lt;/artifactId&gt;
    &lt;version&gt;${hibernate.version}&lt;/version&gt;
  &lt;/dependency&gt;
  &lt;dependency&gt;
    &lt;groupId&gt;org.hibernate&lt;/groupId&gt;
    &lt;artifactId&gt;hibernate-validator&lt;/artifactId&gt;
    &lt;version&gt;4.0.0.GA&lt;/version&gt;
    &lt;exclusions&gt;
      &lt;exclusion&gt;
        &lt;groupId&gt;org.slf4j&lt;/groupId&gt;
        &lt;artifactId&gt;slf4j-api&lt;/artifactId&gt;
      &lt;/exclusion&gt;
    &lt;/exclusions&gt;
  &lt;/dependency&gt;
  &lt;dependency&gt;
     &lt;groupId&gt;org.hibernate.javax.persistence&lt;/groupId&gt;
     &lt;artifactId&gt;hibernate-jpa-2.0-api&lt;/artifactId&gt;
     &lt;version&gt;1.0.0.Final&lt;/version&gt;
  &lt;/dependency&gt;
&lt;/dependencies&gt;</pre>
<p>So some context: This is to support preventing the hibernate3-maven-plugin from going to the internet to get the DTD every time it parses that hibernate.cfg.xml file. There&#8217;s no data in this file, only a shell of a hibernate.cfg.xml; just enough of a placeholder to keep the hbm2ddl Goal from failing, as we&#8217;ll eventually have it build DDL for us.</p>
<p>Content:</p>
<pre class="brush: xml; gutter: true; first-line: 1">&lt;?xml version='1.0' encoding='utf-8'?&gt;
&lt;!DOCTYPE hibernate-configuration PUBLIC
    "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
    "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"&gt;

&lt;hibernate-configuration&gt;

    &lt;session-factory&gt;
        &lt;!-- specify annotated classes here, because the hbm2ddl plugin isn't capable of searching for them :( --&gt;
    &lt;/session-factory&gt;

&lt;/hibernate-configuration&gt;</pre>
<p>Quite an irritating error for something that seems to actually do nothing. Apparently it does. Stupid XML</p>
]]></content:encoded>
			<wfw:commentRss>http://shlrm.org/wordpress/2011/10/10/hibernate-3-maven-plugin-hbm2ddl-goal-and-hate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thank you FedEx for failing to deliver a package a day early</title>
		<link>http://shlrm.org/wordpress/2011/09/14/thank-you-fedex-for-failing-to-deliver-a-package-a-day-early/</link>
		<comments>http://shlrm.org/wordpress/2011/09/14/thank-you-fedex-for-failing-to-deliver-a-package-a-day-early/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 23:44:42 +0000</pubDate>
		<dc:creator>David Kowis</dc:creator>
				<category><![CDATA[Gripes]]></category>
		<category><![CDATA[fedex]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[shipping]]></category>

		<guid isPermaLink="false">http://shlrm.org/wordpress/?p=476</guid>
		<description><![CDATA[FedEx fails to deliver a package early. Thanks.]]></description>
			<content:encoded><![CDATA[<p>I know it&#8217;s not something you have to do. But when it arrives an entire ay early, would it be that difficult to put it on the truck and deliver it?<a href="http://shlrm.org/wordpress/wp-content/uploads/2011/09/FedexFail.png"><img class="size-medium wp-image-477 alignright" title="FedexFail" src="http://shlrm.org/wordpress/wp-content/uploads/2011/09/FedexFail-300x255.png" alt="" width="300" height="255" /></a></p>
<p>Instead, it&#8217;s simply &#8220;not due for delivery,&#8221; and so you keep it. I wish I&#8217;d checked before I left work, then I could&#8217;ve gone and picked it up, because you&#8217;re too lazy to get it to my house today.</p>
<p>If you weren&#8217;t better than UPS at smashing boxes for me, I&#8217;d have shipped it UPS, and they&#8217;d have delivered it a day early.</p>
]]></content:encoded>
			<wfw:commentRss>http://shlrm.org/wordpress/2011/09/14/thank-you-fedex-for-failing-to-deliver-a-package-a-day-early/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fedora, old MaraDNS, and IPv6 == FAIL</title>
		<link>http://shlrm.org/wordpress/2011/03/05/fedora-old-maradns-and-ipv6-fail/</link>
		<comments>http://shlrm.org/wordpress/2011/03/05/fedora-old-maradns-and-ipv6-fail/#comments</comments>
		<pubDate>Sat, 05 Mar 2011 18:16:46 +0000</pubDate>
		<dc:creator>David Kowis</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[Gripes]]></category>

		<guid isPermaLink="false">http://shlrm.org/wordpress/?p=430</guid>
		<description><![CDATA[MaraDNS sucks at IPv6 until 2.0, Fedora has 1.3 (two version behind 2.0 stable). FAIL]]></description>
			<content:encoded><![CDATA[<p>Given the &#8220;end of IPv4&#8243; I decided I shouldset up IPv6 on my network and see if I can&#8217;t start doing things over that instead. Unfortunately, however, it appears that my DNS server internal to my network, <a title="Bug Comments by Author" href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525188#15">maradns, sucks at IPv6 until version 2.0</a>. Fedora has it at 1.3.something. Debian has it at 1.4. WTF Fedora?</p>
<p>I&#8217;ve been working on building MaraDNS 2.0 RPMs for Fedora 13 and 14, but I don&#8217;t know the RPM SPEC structure very well. The 2.0 version of MaraDNS has separated the authoritative resolver from the recursive resolver, which is wise. But it means I need to build a spec file that produces two RPMs. I suppose I could build a separate spec file for each one, but that doesn&#8217;t seem like the right way to do things.</p>
]]></content:encoded>
			<wfw:commentRss>http://shlrm.org/wordpress/2011/03/05/fedora-old-maradns-and-ipv6-fail/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Semantic Web</title>
		<link>http://shlrm.org/wordpress/2010/02/03/semantic-web/</link>
		<comments>http://shlrm.org/wordpress/2010/02/03/semantic-web/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 03:49:56 +0000</pubDate>
		<dc:creator>David Kowis</dc:creator>
				<category><![CDATA[Coding!]]></category>
		<category><![CDATA[Gripes]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[semantic web]]></category>

		<guid isPermaLink="false">http://shlrm.org/wordpress/?p=331</guid>
		<description><![CDATA[At work I&#8217;m dealing with this &#8220;Semantic Web&#8221; concept thingy. &#8220;Web 3.0&#8243; it is called. Frankly I don&#8217;t see the point in it yet. The goal is to have the internet also contain data to ensure that computers can find relations in the data and such, not just pages with links that people can browse. <a href='http://shlrm.org/wordpress/2010/02/03/semantic-web/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>At work I&#8217;m dealing with this &#8220;Semantic Web&#8221; concept thingy. &#8220;Web 3.0&#8243; it is called. Frankly I don&#8217;t see the point in it yet. The goal is to have the internet also contain data to ensure that computers can find relations in the data and such, not just pages with links that people can browse. One of our projects involves taking unstructured data and mining entities and relationships from it. I&#8217;ve picked up a book, the only book, on programming software to (ab)use the semantic web. So far, I am unimpressed. The source code in the book does not match the source code that you can download from the books website. And, the two different packages on the books website (one is just Chapter 2&#8242;s code, the other is all the code for the whole book) also had different code, and the &#8220;all encompassing&#8221; one was even missing the right files needed to run the code!</p>
<p>So yeah, unimpressed.</p>
]]></content:encoded>
			<wfw:commentRss>http://shlrm.org/wordpress/2010/02/03/semantic-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(Lack of)Technology Rant</title>
		<link>http://shlrm.org/wordpress/2009/08/04/lack-oftechnology-rant/</link>
		<comments>http://shlrm.org/wordpress/2009/08/04/lack-oftechnology-rant/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 19:17:50 +0000</pubDate>
		<dc:creator>David Kowis</dc:creator>
				<category><![CDATA[Coding!]]></category>
		<category><![CDATA[Gripes]]></category>
		<category><![CDATA[ANSI C]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[San Antonio]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://shlrm.org/wordpress/?p=264</guid>
		<description><![CDATA[San Antonio absolutely sucks for technology. It is just about impossible to find hard copies of references or tech books.  I know that the internet is a widely available source, but sometimes you just have to have the paper copies of things. Especially when it comes to older languages like C. ANSI C. Not C#. <a href='http://shlrm.org/wordpress/2009/08/04/lack-oftechnology-rant/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>San Antonio absolutely sucks for technology.</p>
<p>It is just about impossible to find hard copies of references or tech books.  I know that the internet is a widely available source, but sometimes you just have to have the paper copies of things. Especially when it comes to older languages like C. ANSI C. Not C#. Not Visual C.net. Not C++. Searching the internet for ANSI C tutorials (or help or examples or whatever) doesn&#8217;t net very much. (OMG PUN)</p>
<p>So I looked up a couple books based on reccomendations. There&#8217;s <a href="http://www.amazon.com/All-One-Desk-Reference-Dummies/dp/0764570692/ref=sr_1_4?ie=UTF8&amp;qid=1249410741&amp;sr=8-4">an 840 page &#8216;For Dummies&#8217; book</a> that is supposed to be quite good regarding getting into ANSI C especially coming from other languages. And then <a href="http://www.amazon.com/gp/product/0131103628/ref=cm_cr_asin_lnk">a C Reference book</a> that would be useful. Especially when getting into the more in-depth usage of C (since there&#8217;s no &#8220;javadoc&#8221; for the C libraries online, at least that I&#8217;ve been able to find.) Of course these are only available in one store up in Austin. Even the library doesn&#8217;t know anything about these books.</p>
<p>San Antonio only exists for the Spurs, the Alamo, and the Riverwalk. Oh and the Government/Military and the Medical Center. If you&#8217;re not employed in one of those things, you might be mowing the grass (and then blowing the trimmings out into the street for someone else to deal with!!! [but that's a rant for another time])</p>
<p>San Antonio Sucks.</p>
]]></content:encoded>
			<wfw:commentRss>http://shlrm.org/wordpress/2009/08/04/lack-oftechnology-rant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Need a blog software that doesn&#8217;t suck</title>
		<link>http://shlrm.org/wordpress/2009/08/04/need-a-blog-software-that-doesnt-suck/</link>
		<comments>http://shlrm.org/wordpress/2009/08/04/need-a-blog-software-that-doesnt-suck/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 13:21:47 +0000</pubDate>
		<dc:creator>David Kowis</dc:creator>
				<category><![CDATA[Gripes]]></category>

		<guid isPermaLink="false">http://shlrm.org/wordpress/?p=253</guid>
		<description><![CDATA[EDIT: Found this. That makes the code not suck. Pasting code into this thing is still a PAIN, as it doesn&#8217;t auto translate &#60;&#62;, and other evil html characters when pasting in the code block.  And you can&#8217;t simply paste all your code into the visual editor, because it&#8217;ll munch off all your formatting :( <a href='http://shlrm.org/wordpress/2009/08/04/need-a-blog-software-that-doesnt-suck/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>EDIT:<br />
Found <a href="http://www.lastengine.com/syntax-highlighter-wordpress-plugin/">this</a>. That makes the code not suck. Pasting code into this thing is still a PAIN, as it doesn&#8217;t auto translate &lt;&gt;, and other evil html characters when pasting in the code block.  And you can&#8217;t simply paste all your code into the visual editor, because it&#8217;ll munch off all your formatting :(<br />
Better but not great.</p>
<p>Original Post:</p>
<p>*sigh*</p>
<p>WordPress does almost everything well. Except pasting code. It can&#8217;t handle that #include&lt;stdlib.h&gt; is not an HTMLs.</p>
<p>So I need a blag that doesn&#8217;t suck at handling code. Searching the intertubes for source code blog doesn&#8217;t get me very far&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://shlrm.org/wordpress/2009/08/04/need-a-blog-software-that-doesnt-suck/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Irritation at Joomla</title>
		<link>http://shlrm.org/wordpress/2009/06/14/irritation-at-joomla/</link>
		<comments>http://shlrm.org/wordpress/2009/06/14/irritation-at-joomla/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 01:27:45 +0000</pubDate>
		<dc:creator>David Kowis</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Gripes]]></category>

		<guid isPermaLink="false">http://shlrm.org/wordpress/?p=239</guid>
		<description><![CDATA[Well I should've known better than to just use Joomla! for something without doing the research on it.]]></description>
			<content:encoded><![CDATA[<p>Well I should&#8217;ve known better than to just use <a href="http://www.joomla.org">Joomla!</a> for something without doing the research on it.</p>
<p>As it appears, joomla has poor user control. There&#8217;s no granulation. So the <a href="http://uberminers.shlrm.org">website I&#8217;m working on for my corporation</a> in <a href="http://www.eve-online.com">Eve Online</a> isn&#8217;t going to work in joomla. Mostly I need something simple to manage content. A <a href="http://en.wikipedia.org/wiki/Content_management_system">Content Management System</a> as it were. Joomla isn&#8217;t going to cut it. It&#8217;ll do for now, until I can find something else to manage the content.</p>
<p>My requirements aren&#8217;t horrible.</p>
<ul>
<li>Blogging type stuff &#8211; to allow corp members, who feel so inclined to post articles about their excapades</li>
<li>News type stuff -  to allow the corporation to post news entries for things that happen corp wide</li>
<li>Calendar type thinger &#8211; to allow the corporation to post events and/or due dates. I think this is probably very important because we need to be able to have deadlines posted somewhere easy for everyone to access. Helping to ensure that we don&#8217;t default on any corporation contracts.</li>
<li>Static Document management &#8211; To hold things like the Corporate bylaws (once I figure out how to write bylaws) and other official corporate documents</li>
<li>User management &#8211; I need <em>at least</em> the ability to moderate users to the site. And then a bit of permissions management within the site, so that not everyone can create events, post news, or muck with the corporate documents.</li>
</ul>
<p>So the requirements for the site aren&#8217;t too strenuous, but joomla fails miserably regarding the user management. Which pretty much breaks the entire thing.</p>
<p>Drupal might do it, but I&#8217;ve read that drupal is quite complex. I don&#8217;t particularly want to roll my own CMS, as there&#8217;s already plenty out there, and my goal isn&#8217;t to build a CMS, the goal is to build the content, which is going to be difficult enough.</p>
]]></content:encoded>
			<wfw:commentRss>http://shlrm.org/wordpress/2009/06/14/irritation-at-joomla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Should make you horribly angry</title>
		<link>http://shlrm.org/wordpress/2009/06/12/should-make-you-horribly-angry/</link>
		<comments>http://shlrm.org/wordpress/2009/06/12/should-make-you-horribly-angry/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 14:45:48 +0000</pubDate>
		<dc:creator>David Kowis</dc:creator>
				<category><![CDATA[Gripes]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[bailout]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[stimulus]]></category>

		<guid isPermaLink="false">http://shlrm.org/wordpress/?p=236</guid>
		<description><![CDATA[This is just wrong. The problem here is not that this was all done in a panic. The problem is not that there are evil people. There will always be evil people. The problem is not that it doesn&#8217;t have enough oversight. The problem is that it was done at all. This money is going <a href='http://shlrm.org/wordpress/2009/06/12/should-make-you-horribly-angry/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.marketwatch.com/story/stimulus-fraud-could-hit-50-billion?siteid=rss&amp;rss=1#mod=BOL_hps_BOL2MW">This is just wrong</a>.</p>
<p>The problem here is not that this was all done in a panic. The problem is not that there are evil people. There will always be evil people. The problem is not that it doesn&#8217;t have enough oversight.</p>
<p>The problem is that it was done at all. This money is going to be poorly managed compared to someone&#8217;s hard earned dollars. There&#8217;s no cost to these polititcians spending this money. They don&#8217;t care how the money is spent, only that it results in their being reelected next time.</p>
<p>The thing is, no one even considered the consequences of this stimulus. Well, no one in the federal government.</p>
<p>We THE PEOPLE should be very angry. We should be making this anger known to the Federal Government. They need to know that we don&#8217;t like what they&#8217;re doing. And if you do like what they&#8217;re doing, keep in mind that there&#8217;s no such thing as a free lunch. What seems good for you right now comes at what cost to others? When does that cost come around to you?</p>
]]></content:encoded>
			<wfw:commentRss>http://shlrm.org/wordpress/2009/06/12/should-make-you-horribly-angry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EPA &#8216;Cow Tax&#8217; $175 per Dairy Cow to Curb Greenhouse Gases</title>
		<link>http://shlrm.org/wordpress/2009/01/07/epa-cow-tax-175-per-dairy-cow-to-curb-greenhouse-gases/</link>
		<comments>http://shlrm.org/wordpress/2009/01/07/epa-cow-tax-175-per-dairy-cow-to-curb-greenhouse-gases/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 15:15:51 +0000</pubDate>
		<dc:creator>David Kowis</dc:creator>
				<category><![CDATA[Gripes]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[global warming]]></category>
		<category><![CDATA[tax]]></category>

		<guid isPermaLink="false">http://shlrm.org/wordpress/?p=164</guid>
		<description><![CDATA[EPA &#8216;Cow Tax&#8217; Could Charge $175 per Dairy Cow to Curb Greenhouse Gases. Yeah, lets stifle an already struggling economy by &#8220;solving&#8221; &#8220;global warming&#8221; by taxing the hell out of our staple food item. This is probably not going to result in anything but people using more soy to make their products cheaper. This has <a href='http://shlrm.org/wordpress/2009/01/07/epa-cow-tax-175-per-dairy-cow-to-curb-greenhouse-gases/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.businessandmedia.org/articles/2008/20081230165231.aspx">EPA &#8216;Cow Tax&#8217; Could Charge $175 per Dairy Cow to Curb Greenhouse Gases</a>.</p>
<p>Yeah, lets stifle an already struggling economy by &#8220;solving&#8221; &#8220;global warming&#8221; by taxing the hell out of our staple food item.</p>
<p>This is probably not going to result in anything but people using more soy to make their products cheaper. This has a significant impact to me, being allergic to soy. Via this legislation we&#8217;ll end up making all of our meat products crappier. People aren&#8217;t going to want to pay more to &#8220;solve&#8221; the &#8220;global warming&#8221; &#8220;problem&#8221; (I apologize for the excessive use of quotations.) Global warming simply hasn&#8217;t been proven well enough to enough people for this to be necessary. Not to mention that there have been cows farting up a storm for a whole lot longer than the global warming thing appeared. I hardly think this tax is going to do anything for this. &lt;/rant&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://shlrm.org/wordpress/2009/01/07/epa-cow-tax-175-per-dairy-cow-to-curb-greenhouse-gases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>$1.2T federal deficit for 2009</title>
		<link>http://shlrm.org/wordpress/2009/01/07/12t-federal-deficit-for-2009/</link>
		<comments>http://shlrm.org/wordpress/2009/01/07/12t-federal-deficit-for-2009/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 14:52:55 +0000</pubDate>
		<dc:creator>David Kowis</dc:creator>
				<category><![CDATA[Gripes]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[deficit]]></category>
		<category><![CDATA[federal]]></category>
		<category><![CDATA[government]]></category>

		<guid isPermaLink="false">http://shlrm.org/wordpress/?p=168</guid>
		<description><![CDATA[Hill aides: CBO to project $1.2T deficit for 2009 &#8211; Yahoo! Finance. That is spectacular! If my budget at home had this kind of deficit, I wouldn&#8217;t be able to eat, much less help anyone else. The only solution to this is smaller government. A dramatic reduction of government programs is needed. Shut down vast <a href='http://shlrm.org/wordpress/2009/01/07/12t-federal-deficit-for-2009/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://finance.yahoo.com/news/Hill-aides-CBO-to-project-12T-apf-13990391.html">Hill aides: CBO to project $1.2T deficit for 2009 &#8211; Yahoo! Finance</a>.</p>
<p>That is spectacular! If my budget at home had this kind of deficit, I wouldn&#8217;t be able to eat, much less help anyone else.</p>
<p>The only solution to this is smaller government. A dramatic reduction of government programs is needed. Shut down vast government bureaucracies, and make it cheaper for government to operate.</p>
<p>This country will cease to exist with a continuing deficit like this.</p>
]]></content:encoded>
			<wfw:commentRss>http://shlrm.org/wordpress/2009/01/07/12t-federal-deficit-for-2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

