<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>Thoughts and Notes</title>
    <link rel="alternate" type="text/html" href="http://fugacious.org/blog/" />
    <link rel="self" type="application/atom+xml" href="http://fugacious.org/blog/atom.xml" />
    <id>tag:fugacious.org,2009-03-07:/blog//1</id>
    <updated>2009-12-04T20:24:22Z</updated>
    <subtitle>Thoughts that stick with me long enough to get written down.</subtitle>
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type 4.23-en</generator>

<entry>
    <title>CBO shows what most of us already know - tax cuts for wealthy don&apos;t increase GDP much</title>
    <link rel="alternate" type="text/html" href="http://fugacious.org/blog/#001866" />
    <id>tag:fugacious.org,2009:/blog//1.1866</id>

    <published>2009-12-04T19:59:23Z</published>
    <updated>2009-12-04T20:24:22Z</updated>

    <summary>According to the latest CBO report Estimated Impact of the American Recovery and Reinvestment Act on Employment and Economic Output as of September 2009 tax cuts for the wealthy and corporations cost the government more than the impact of those...</summary>
    <author>
        <name>Steve</name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://fugacious.org/blog/">
        <![CDATA[<p>According to the latest <span class="caps">CBO </span>report <a href="http://www.cbo.gov/ftpdocs/106xx/doc10682/11-30-ARRA.pdf">Estimated Impact of the American Recovery and Reinvestment Act on Employment and Economic Output as of September 2009</a> tax cuts for the wealthy and corporations cost the government more than the impact of those cuts increased revenue.</p>

<p>For every dollar of tax cuts for the wealthy, the <span class="caps">GDP </span>increased by $0.50.  For every dollar of tax cuts for corporations, the <span class="caps">GDP </span>increased by $0.40.</p>

<p>However, for every dollar of tax cuts for the poor, <span class="caps">GDP </span>increased by $1.70.</p>

<p>The conclusion is obvious.  Cut taxes on the poor, not the rich, to stimulate the economy.</p>

<p><b>Quick follow-up</b>: Even better than cutting taxes?  Paying benefits, like food stamps, unemployment, the like.  For every dollar, we see a $2.20 increase in <span class="caps">GDP.</span></p>]]>
        
    </content>
</entry>

<entry>
    <title>Filterchains - just another reason to love ant</title>
    <link rel="alternate" type="text/html" href="http://fugacious.org/blog/#001865" />
    <id>tag:fugacious.org,2009:/blog//1.1865</id>

    <published>2009-10-23T19:34:56Z</published>
    <updated>2009-10-23T20:10:33Z</updated>

    <summary>One of the projects I&apos;m working on is conditional publishing of DITA content using ant. Basically what I want to do is, given a list of files, build the output that is affected when those files change. We manage our...</summary>
    <author>
        <name>Steve</name>
        
    </author>
    
        <category term="XML, XSL, etc." scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://fugacious.org/blog/">
        <![CDATA[<p>One of the projects I'm working on is conditional publishing of <span class="caps">DITA </span>content using ant.  Basically what I want to do is, given a list of files, build the output that is affected when those files change.</p>

<p>We manage our files using Perforce, so the workflow is something like this:</p>


<ol>
<li>Check out files</li>
<li>Edit/modify content</li>
<li>Run conditional build</li>
<li>Review output</li>
<li>Check-in files</li>
</ol>



<p>When you check files out of Perforce, they get put into a changelist, so, to get my file list, I need to ask Perforce what files are in the changelist.  Perforce has a nice way to do that.  The command is, </p>

<pre><code> p4 opened -c &lt;changelist_number&gt;</code></pre>

<p>The problem is the output includes a bunch of information I don't want.  </p>

<p>I get lines like this:</p>

<pre><code> //doc/main/core/build/build.xml#164 - edit change 1075456 (text) by sanderson@docbuild</code></pre>

<p>what I want is</p>

<pre><code> //doc/main/core/build/build.xml</code></pre>

<p>or, even better, </p>

<pre><code> files-in-changelist=/home/sanderson/doc/main/core/build/build.xml</code></pre>

<p>That format is the format ant expects for a property files.  Property files are nice, because you can load them up and use that property in ant.</p>

<p>What to do, what to do?  In my case, I turn to ant.  If I have a build issue, someone else has probably run into it, so, I look there first.</p>

<p>Sure enough, ant has a task called <a href="http://ant.apache.org/manual/CoreTypes/filterchain.html">filterchain</a> for exactly these kinds of uses.  Here's what I wound up with:</p>

<pre><code>     &lt;target name=&quot;getFilesFromPerforceChangelist&quot; if=&quot;changelist&quot;&gt;
        &lt;property name=&quot;ant.regexp.regexpimpl&quot; value=&quot;org.apache.tools.ant.util.regexp.JakartaOroRegexp&quot;/&gt;
        &lt;exec executable=&quot;p4&quot; output=&quot;changelist.txt&quot; append=&quot;false&quot; failonerror=&quot;true&quot;&gt;
            &lt;arg value=&quot;opened&quot;/&gt;
            &lt;arg value=&quot;-c&quot;/&gt;
            &lt;arg value=&quot;${changelist}&quot;/&gt;
        &lt;/exec&gt;
        &lt;copy file=&quot;changelist.txt&quot; tofile=&quot;changelist.properties&quot;&gt;
            &lt;filterchain&gt;
                &lt;replaceregex pattern=&quot;#.*&quot; replace=&quot;,&quot;/&gt;
                &lt;replaceregex pattern=&quot;.*build&quot; replace=&quot;${basedir}&quot;/&gt;
                &lt;striplinebreaks/&gt;
                &lt;prefixlines prefix=&quot;files-in-changelist=&quot;/&gt;
            &lt;/filterchain&gt;
        &lt;/copy&gt;
    &lt;/target&gt;</code></pre>

<p>Just another reason to love ant.</p>]]>
        
    </content>
</entry>

<entry>
    <title>A Politician (granted, one from the UK) gets it</title>
    <link rel="alternate" type="text/html" href="http://fugacious.org/blog/#001864" />
    <id>tag:fugacious.org,2009:/blog//1.1864</id>

    <published>2009-10-16T18:02:20Z</published>
    <updated>2009-10-16T18:17:42Z</updated>

    <summary>George Osborne, who would become the chancellor of the Exchequer if the Conservative Party wins the next election in the UK, gets the reality of the situation they face in the UK and that we face here in the US...</summary>
    <author>
        <name>Steve</name>
        
    </author>
    
        <category term="Politics" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://fugacious.org/blog/">
        <![CDATA[<p>George Osborne, who would become the chancellor of the Exchequer if the  Conservative Party wins the next election in the <span class="caps">UK, </span>gets the reality of the situation they face in the UK and that we face here in the US - we want our government to provide us services (yes, we all do - stop driving, stop eating food you don't grow yourself, etc., if you believe otherwise), but we don't want to pay for them.</p>

<p>Osborne speaks like an adult speaking to other adults.  </p>

<p>He says he doesn't like how high taxes are, especially for the wealthy, but that's life, he doesn't want to cut those taxes until the poor aren't being asked to scrimp.</p>

<p>He tells members of his party to stop insulting government workers.</p>

<p>He proposes cuts to programs that don't work, even ones that go along with his political philosophy.</p>

<p>Nobody wants to be in charge when the retirement age is raised, but he set a timeline for doing it.  Not someday, but in 5-10 years.  If we did that, Social Security would avert the upcoming crisis everyone is afraid of.</p>

<p>Why don't our politicians treat us like adults?  We all know we can't go on this way.  We all know that the situation can't be resolved by only cutting programs or only raising taxes (if you don't know that, it's time to put aside your ideological blinders and take a good look at the way the government works).</p>

<p>See David Brooks <a href="http://www.nytimes.com/2009/10/16/opinion/16brooks.html?_r=2">op-ed piece</a> on Osborne's speech for details.</p>]]>
        
    </content>
</entry>

<entry>
    <title>Countdown on Healthcare Reform - It made me cry</title>
    <link rel="alternate" type="text/html" href="http://fugacious.org/blog/#001863" />
    <id>tag:fugacious.org,2009:/blog//1.1863</id>

    <published>2009-10-08T14:33:26Z</published>
    <updated>2009-10-08T17:09:59Z</updated>

    <summary>If you listen to this and are not moved, if you watch this and still think that health care reform is something we should do, I feel sorry for you.  Your politics have so blinded you to a compassion that is at the core of being human</summary>
    <author>
        <name>Steve</name>
        
    </author>
    
        <category term="Deep thoughts" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="Politics" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://fugacious.org/blog/">
        <![CDATA[<p>If you listen to this and are not moved, if you watch this and still think that health care reform is something we shouldn't do, I feel sorry for you.  Your politics have so blinded you to a compassion that is at the core of being human.

<div><iframe height="339" width="425" src="http://www.msnbc.msn.com/id/22425001/vp/33217219#33217219" frameborder="0" scrolling="no"></iframe><p style="font-size:11px; font-family:Arial, Helvetica, sans-serif; color: #999; margin-top: 5px; background: transparent; text-align: center; width: 425px;">Visit msnbc.com for <a style="text-decoration:none !important; border-bottom: 1px dotted #999 !important; font-weight:normal !important; height: 13px; color:#5799DB !important;" href="http://www.msnbc.msn.com">Breaking News</a>, <a href="http://www.msnbc.msn.com/id/3032507" style="text-decoration:none !important; border-bottom: 1px dotted #999 !important; font-weight:normal !important; height: 13px; color:#5799DB !important;">World News</a>, and <a href="http://www.msnbc.msn.com/id/3032072" style="text-decoration:none !important; border-bottom: 1px dotted #999 !important; font-weight:normal !important; height: 13px; color:#5799DB !important;">News about the Economy</a></p></div>
]]>
        
    </content>
</entry>

<entry>
    <title>Tom Ridge on the Rachel Maddow Show - This is the way to do it Fox News</title>
    <link rel="alternate" type="text/html" href="http://fugacious.org/blog/#001862" />
    <id>tag:fugacious.org,2009:/blog//1.1862</id>

    <published>2009-09-02T15:02:46Z</published>
    <updated>2009-09-02T16:11:31Z</updated>

    <summary>Rachel Maddow had Tom Ridge, the first head of the Department of Homeland Security agency under President Bush, on her show last night. Ms. Maddow asked some very pointed questions, but let Mr. Ridge answer them completely. She was civil,...</summary>
    <author>
        <name>Steve</name>
        
    </author>
    
        <category term="Politics" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://fugacious.org/blog/">
        <![CDATA[<p>Rachel Maddow had Tom Ridge, the first head of the Department of Homeland Security agency under President Bush, on her <a href="http://www.msnbc.msn.com/id/26315908/">show</a> last night.</p>

<p>Ms. Maddow asked some very pointed questions, but let Mr. Ridge answer them completely.  She was civil, even when his answers seemed, I thought, to be hogwash or logically untenable.</p>

<p>In the final segment, she told him, point blank, that she thinks Mr. Ridge, and the Republican Party, will never gain back any credibility on national security until they admit that invading Iraq was a mistake, one driven by policy decisions, not by poor intelligence.  Mr. Ridge didn't agree, and she let him explain why.  Repeatedly.  Without interrupting.  No one on Fox News would have allowed a guest that disagreed with the host to do that.  None of them would have treated a guest with the respect she gave Mr. Ridge.</p>

<p>Mr. Ridge knows it, too.  At the end he said so.  He said, "I really appreciate the civil way we've had this discussion.  Frankly I think we would advance the interests of our country a lot further and a lot faster if we could have discussions such as this".</p>

<p>This is the way to do it Fox News.</p>

<p>Folks, I don't care what your politics are, be civil with people that don't agree with you.  </p>

<p>Craig Newmark, said, in <a href="http://www.wired.com/entertainment/theweb/magazine/17-09/ff_craigslist?currentPage=all">Why Craigslist is Such a Mess</a> this:</p>

<blockquote><p> People are good and trustworthy and generally just concerned with getting through the day.</p></blockquote>

<p>Politics doesn't change that.  People are basically good.  We all want the world to be a better place.  Be kind and respectful to people with different opinions.  Don't yell at them because they don't agree with you.  Don't call them names (especially names like Socialist, Fascist, baby killer, Nazi, etc. that are so inflammatory they just lead to ending the discussion).  Don't judge someone as being a bad person because you don't agree with them.</p>

<p>Lest you think I'm saying this just because a Democrat is President, look back a past posts.  I believe in civility in political discourse, regardless of which party has control of the White House.</p>

<p>So, let me say it again, in closing, to try to make this point stick - I don't care what your politics are, be civil with people that don't agree with you.</p>]]>
        
    </content>
</entry>

<entry>
    <title>What Phoebe Did While Mom was At Her Retreat</title>
    <link rel="alternate" type="text/html" href="http://fugacious.org/blog/#001860" />
    <id>tag:fugacious.org,2009:/blog//1.1860</id>

    <published>2009-08-30T20:56:48Z</published>
    <updated>2009-08-30T22:16:49Z</updated>

    <summary>Click on the images for full screen fun! Well. Mommy is at a retreat, so Daddy and I decided to have some fun. We started out with a lot of playing at home. I mean, we had breakfast, and tub,...</summary>
    <author>
        <name>Steve</name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://fugacious.org/blog/">
        <![CDATA[<p>Click on the images for full screen fun!</p>

<p>Well. Mommy is at a retreat, so Daddy and I decided to have some fun.  We started out with a lot of playing at home.  I mean, we had breakfast, and tub, but the fun thing is that Dad lets me run through the sprinklers naked.  Then a nap.  I don't know why Dad thinks I need a nap, but, well, he does.  We had a good lunch, and then, Dad made me put on some clothes and we strolled down to <a href="http://habitot.org">Habitot</a>.</p>

<p>By the time I got there, I was ready for a snack, which Dad made me have in the hall.<br />
<span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://fugacious.org/blog/assets_c/2009/08/PhoebeGrabbingASnackAtHabitot-21.html" onclick="window.open('http://fugacious.org/blog/assets_c/2009/08/PhoebeGrabbingASnackAtHabitot-21.html','popup','width=1536,height=2048,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://fugacious.org/blog/assets_c/2009/08/PhoebeGrabbingASnackAtHabitot-thumb-250x333-21.jpg" width="250" height="333" alt="" class="mt-image-left" style="float: left; margin: 0 20px 20px 0;" /></a></span>He said it wasn't nice to the other kids.</p>

<p>Then we went in, and they have lots of fun stuff.  One of my favorites was playing in the water.  <span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://fugacious.org/blog/assets_c/2009/08/PhoebePlayingwithBubblesAtHabitot-15.html" onclick="window.open('http://fugacious.org/blog/assets_c/2009/08/PhoebePlayingwithBubblesAtHabitot-15.html','popup','width=1536,height=2048,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://fugacious.org/blog/assets_c/2009/08/PhoebePlayingwithBubblesAtHabitot-thumb-250x333-15.jpg" width="250" height="333" alt="" class="mt-image-left" style="float: left; margin: 0 20px 20px 0;" /></a></span>Bubbles, and buckets, and water, and, cars that you ride around in and ... It was fun!</p>

<p>Dad also pulled me around in a trailer, and I climbed around in something they call the wiggle wall, and, oh, I painted!  <span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://fugacious.org/blog/assets_c/2009/08/PhoebePaintingAtHabitot-25.html" onclick="window.open('http://fugacious.org/blog/assets_c/2009/08/PhoebePaintingAtHabitot-25.html','popup','width=1536,height=2048,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://fugacious.org/blog/assets_c/2009/08/PhoebePaintingAtHabitot-thumb-250x333-25.jpg" width="250" height="333" alt="" class="mt-image-left" style="float: left; margin: 0 20px 20px 0;" /></a></span></p>

<p>We closed the joint down, then came home.  I got a little tired.<span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://fugacious.org/blog/assets_c/2009/08/PhoebeSleepingAfterHabitot-29.html" onclick="window.open('http://fugacious.org/blog/assets_c/2009/08/PhoebeSleepingAfterHabitot-29.html','popup','width=1536,height=2048,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://fugacious.org/blog/assets_c/2009/08/PhoebeSleepingAfterHabitot-thumb-250x333-29.jpg" width="250" height="333" alt="" class="mt-image-left" style="float: left; margin: 0 20px 20px 0;" /></a></span></p>

<p>After that was dinner <span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://fugacious.org/blog/assets_c/2009/08/PhoebeEatingAfterHabitot-33.html" onclick="window.open('http://fugacious.org/blog/assets_c/2009/08/PhoebeEatingAfterHabitot-33.html','popup','width=1536,height=2048,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://fugacious.org/blog/assets_c/2009/08/PhoebeEatingAfterHabitot-thumb-250x333-33.jpg" width="250" height="333" alt="" class="mt-image-left" style="float: left; margin: 0 20px 20px 0;" /></a></span> and then an early bedtime.  I was still tired.</p>

<p>I missed Mommy, but Daddy and I had fun.</p>]]>
        
    </content>
</entry>

<entry>
    <title>Don&apos;t shop at Whole Foods if you care about health care reform</title>
    <link rel="alternate" type="text/html" href="http://fugacious.org/blog/#001853" />
    <id>tag:fugacious.org,2009:/blog//1.1853</id>

    <published>2009-08-13T18:29:45Z</published>
    <updated>2009-08-13T18:48:07Z</updated>

    <summary>John Mackey, the CEO and co-founder of Whole Foods has shot his mouth off. Again. Last time it was an anti-labor screed. Now it&apos;s a ridiculous rant against health care reform called The Whole Foods Alternative to ObamaCare. Basically his...</summary>
    <author>
        <name>Steve</name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://fugacious.org/blog/">
        <![CDATA[<p>John Mackey, the <span class="caps">CEO </span>and co-founder of Whole Foods has shot his mouth off.  Again.  Last time it was an anti-labor screed.  Now it's a ridiculous rant against health care reform called <a href="http://online.wsj.com/article/SB20001424052970204251404574342170072865070.html">The Whole Foods Alternative to ObamaCare.</a>  Basically his entire op-ed piece boils down to this "Government bad, private business good".</p>

<p>One example of how out of touch he is, he wrote, </p>

<blockquote><p>Our team members therefore spend their own health-care dollars until the annual deductible is covered (about $2,500) and the insurance plan kicks in. This creates incentives to spend the first $2,500 more carefully.</p></blockquote>

<p>In other words, he's praising a plan that rewards people for choosing not to get health care.  How can you praise a plan that encourages people not to get care when they think they need it?  It's asinine.</p>

<p>Here's another gem.</p>

<blockquote><p>Repeal all state laws which prevent insurance companies from competing across state lines. </p></blockquote>

<p>Translation, allow insurance companies to pretend to be from the state that has the fewest consumer protections.  Again, asinine, unless you are more interested in money than health care.</p>

<p>Now, while this is a great idea</p>

<blockquote><p>Finally, revise tax forms to make it easier for individuals to make a voluntary, tax-deductible donation to help the millions of people who have no insurance and aren't covered by Medicare, Medicaid or the State Children's Health Insurance Program.</p></blockquote>

<p>His reasons are completely wrong.  The reason we created social safety nets, like social security and medicare, is because charities were not meeting the needs of those that needed help, and we, compassionate people that we are, wanted to make sure that our elders weren't eating cat food and dying due to lack of health care, not because we believed people have an intrinsic right to social security or health care.</p>

<p>I won't go deeply into how flawed his arguments are about rationing.  Just think about your own experiences dealing with health care under our current system.  We have rationing, rationing that is focused on maximizing the profits of the insurance companies.  I'd be really happy if instead we rationed things on who needs a certain procedure the most, wouldn't you?</p>

<p>Of course he ends with the typical canard.  Our health care issues in this country are due to a lot of lazy, fat, smokers that don't take care of themselves.   Why should we pay for their health care?  The reality is our current health care system is so focused on after the fact care, that it contributes to our obesity rates.  Easy access to health care will decrease the obesity level and lower health care costs, as well as increasing quality of life, for millions of Americans.</p>]]>
        
    </content>
</entry>

<entry>
    <title>Republicans revisting 1993</title>
    <link rel="alternate" type="text/html" href="http://fugacious.org/blog/#001851" />
    <id>tag:fugacious.org,2009:/blog//1.1851</id>

    <published>2009-02-15T17:45:53Z</published>
    <updated>2009-02-15T19:42:52Z</updated>

    <summary>In 1993 Congressional Republican&apos;s did everything they could to keep the Clinton administration from passing their budget. In the end, Al Gore, as Vice President, had to cast a tie-breaking vote in the Senate. At the time, Republicans were full...</summary>
    <author>
        <name>Steve</name>
        
    </author>
    
        <category term="Politics" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="politics" label="politics" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="republicans" label="Republicans" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="stimulus" label="stimulus" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://fugacious.org/blog/">
        <![CDATA[<p>In 1993 Congressional Republican's did everything they could to keep the Clinton administration from passing their budget.  In the end, Al Gore, as Vice President, had to cast a tie-breaking vote in the Senate.</p>

<p>At the time, Republicans were full of predictions about how bad the economy would suffer.</p>

<p>Said <a class="zem_slink" href="http://en.wikipedia.org/wiki/Dick_Armey" title="Dick Armey" rel="wikipedia">Dick Armey</a>, the House Minority Whip,  </p>

<blockquote><p>It is a recipe for disaster.  This plan is not a recipe for more jobs.  </p></blockquote>

<p>New <a class="zem_slink" href="http://en.wikipedia.org/wiki/Newt_Gingrich" title="Newt Gingrich" rel="wikipedia">Gingrich</a>, on much the same note, said, the package would lead to "a job killing recession".</p>

<p>There are a lot of similar quotes like that.  I won't bore you by listing any more  What happened?  As has happened time and time again, exactly the opposite of what the tax cutters claim - the economy improved.  Not just a little, <a href="http://clinton5.nara.gov/WH/Accomplishments/eightyears-03.html">a lot</a>.</p>

<p>Because of their staunch resistance to the fiscal restraint of the Clinton administration, the Republicans could not accept any credit for the improved economy during those years (which is part of the reason why they changed course and went after Clinton on moral issues rather than economic issues).  </p>

<p>Now, in 2009, they are in the same situation.  The Republican's, especially those in the House, made a conscious decision to resist Obama's plan.  Not due to any belief that stimulus wasn't needed; nope, merely because of their own partisan politics.  I mean, heck, it's the largest tax cut ever!  When did Republicans start voting against tax cuts?</p>

<p>They voted against the stimulus for purely political reasons.  They know that agreeing with Obama will not gain them anything politically, and resisting him might result in political gains.  Suspect anyone that gives any other reason for voting against the package.</p>

<p><a class="zem_slink" href="http://specter.senate.gov/public/" title="Arlen Specter" rel="homepage">Arlen Specter</a>, a Republican that voted for the stimulus package, said that several other Republican's congratulated him on his courage voting for the stimulus package.  They couldn't because they were worried about the political fall-out for doing the right thing.</p>

<p>That's sad.  I hope, just like in 1993, the predictions of the Republicans are wrong.  I'm worried, though, that they aren't.  Too much is being lost to tax cuts.  Too much spending was cut out of the final bill.</p>

<p>The Republicans are putting themselves back into the same spot they were in 1993, but this time, maybe, they may have done enough damage to the package that their hopes come true.  I hope not, but the Obama administration, I think, is going to have to get busy and get some more spending packages passed.  This package seems too small and too slow.</p>


<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/1e989a33-8b39-475d-9b4f-f918789bceff/" title="Zemified by Zemanta"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=1e989a33-8b39-475d-9b4f-f918789bceff" alt="Reblog this post [with Zemanta]" /></a></div>]]>
        
    </content>
</entry>

<entry>
    <title>Review: An Unholy Alliance - Susanna Gregory</title>
    <link rel="alternate" type="text/html" href="http://fugacious.org/blog/#001850" />
    <id>tag:fugacious.org,2009:/blog//1.1850</id>

    <published>2009-02-14T23:56:11Z</published>
    <updated>2009-02-15T00:02:36Z</updated>

    <summary> I was hoping that this book, like the Brother Cadfael books the premise so resembles, would be a good bedtime book. Enjoyable, engaging, but not so much that I would stay up all night reading it. Sadly, no. I...</summary>
    <author>
        <name>Steve</name>
        
    </author>
    
        <category term="Entertainment" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="reviewsbooks" label="reviews books" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://fugacious.org/blog/">
        <![CDATA[<p><span class="mt-enclosure mt-enclosure-amazon" style="display: inline;"><a href="http://www.amazon.com/Unholy-Alliance-Matthew-Bartholomew-Chronicles/dp/0751519359%3FSubscriptionId%3D1538D9EDG5TVJTQD9M82%26tag%3Dthoughtsandno-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0751519359"><img alt="An Unholy Alliance (Matthew Bartholomew Chronicles)" src="http://images.amazon.com/images/P/0751519359.01._SCLZZZZZZZ_SX175_.jpg" class="mt-image-left" style="margin: 0pt 20px 20px 0pt; float: left;" /></a></span></p>

<p>I was hoping that this book, like the <a class="zem_slink" href="http://en.wikipedia.org/wiki/Cadfael" title="Cadfael" rel="wikipedia">Brother Cadfael</a> books the premise so resembles, would be a good bedtime book.  Enjoyable, engaging, but not so much that I would stay up all night reading it.</p>

<p>Sadly, no.  </p>

<p>I could never find myself caring about any of the characters, and the action was too slow to keep me engaged.</p>

<p>The writing was fine, not earth shattering, but appropriate for the genre (historical fiction/mystery).  The story just bored me, though, and, half way through, I stopped trying any more.</p>

<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/60975919-49c7-4f0c-901f-837a620bf028/" title="Zemified by Zemanta"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=60975919-49c7-4f0c-901f-837a620bf028" alt="Reblog this post [with Zemanta]" /></a></div>]]>
        
    </content>
</entry>

<entry>
    <title>Sam Seder and a funny anti-liberal comment on Amazon</title>
    <link rel="alternate" type="text/html" href="http://fugacious.org/blog/#001849" />
    <id>tag:fugacious.org,2009:/blog//1.1849</id>

    <published>2009-02-14T18:37:48Z</published>
    <updated>2009-02-14T18:51:46Z</updated>

    <summary>Today I learned about Sam Seder, a comedian/commentator. Here&apos;s a great clip of him talking about the inane idea that there is a &quot;War on Christmas&quot;. Anyway, while looking for more by him, I read this hilarious review on amazon...</summary>
    <author>
        <name>Steve</name>
        
    </author>
    
        <category term="Politics" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://fugacious.org/blog/">
        <![CDATA[<p>Today I learned about <a class="zem_slink" href="http://en.wikipedia.org/wiki/Sam_Seder" title="Sam Seder" rel="wikipedia">Sam Seder</a>, a comedian/commentator.  Here's a great clip of him talking about the inane idea that there is a "War on Christmas".</p>




<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/wmJGPdd899o&amp;hl=en&amp;fs=1"><param name="allowFullScreen" value="true"><param name="allowscriptaccess" value="always"><embed src="http://www.youtube.com/v/wmJGPdd899o&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object><br/>





<p>Anyway, while looking for more by him, I read this hilarious review on <a href="http://www.amazon.com/F-U-B-R-Americas-Right-Wing-Nightmare/product-reviews/0060846712/ref=cm_cr_pr_hist_1?ie=UTF8&amp;showViewpoints=0&amp;filterBy=addOneStar">amazon</a> </p>

<blockquote><p>Sam's book illuminates why Air America is a failure and why the Left and Liberalism is dieng in America. Thank God! The only followers they have "left" are the mentally ill and drug addicted.</p></blockquote>

<p>How foolish do you have to believe something like that?  I'd feel the same way if someone said that about conservatives, too.  Just because someone doesn't agree with you, doesn't mean they are mentally ill.</p>]]>
        
    </content>
</entry>

<entry>
    <title>Shocker: Republicans still telling the mouse lie</title>
    <link rel="alternate" type="text/html" href="http://fugacious.org/blog/#001848" />
    <id>tag:fugacious.org,2009:/blog//1.1848</id>

    <published>2009-02-13T23:45:04Z</published>
    <updated>2009-02-14T18:52:44Z</updated>

    <summary>Image via Wikipedia Wow. Just wow. Republican&apos;s have sunk so low these days. One Republican staffer said that one agency would spend it&apos;s share of the stimulus bill on wetlands, including protecting the habitat of a wetland mouse. That became,...</summary>
    <author>
        <name>Steve</name>
        
    </author>
    
        <category term="Politics" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://fugacious.org/blog/">
        <![CDATA[<div class="zemanta-img" style="margin: 1em; float: right; display: block; width: 212px;"><a href="http://en.wikipedia.org/wiki/Image:Debbie_Harry_-_Liar_Liar.jpg"><img src="http://upload.wikimedia.org/wikipedia/en/thumb/0/09/Debbie_Harry_-_Liar_Liar.jpg/202px-Debbie_Harry_-_Liar_Liar.jpg" alt="" liar,="" liar="" cover="" style="border: medium none ; display: block;" width="202" height="196" /></a><p class="zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://en.wikipedia.org/wiki/Image:Debbie_Harry_-_Liar_Liar.jpg">Wikipedia</a></p></div>

<p>Wow.  Just wow.  <a class="zem_slink" href="http://en.wikipedia.org/wiki/Republican_Party_%28United_States%29" title="Republican Party (United States)" rel="wikipedia">Republican</a>'s have sunk so low these days.  One Republican staffer said that one agency would spend it's share of the stimulus bill on wetlands, including protecting the habitat of a wetland mouse.  That became, </p>

<blockquote><p>When you look at some of the spending in this bill, it will do nothing about creating jobs in America. Tell me spending $50 million for a mouse in San Francisco is going to help a struggling auto worker in Ohio? </p></blockquote>

<p>and </p>

<blockquote><p>$30 billion for mice in San Francisco. Mickey Mouse is no longer the mouse with the greatest network. Now there is a San Francisco rat that has edged him out. The Democrats are spending $30 billion on rats. </p></blockquote>

<p>See these and more quotes at <a href="http://www.congressmatters.com/storyonly/2009/2/13/102933/725/384/627">Congress Matters</a></p>

<p>See the truth at <a href="http://www.mercurynews.com/ci_11696283?IADID=Search-www.mercurynews.com-www.mercurynews.com">Bay Area mouse spurs national debate over stimulus bill</a></p>


<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/386cc11a-c35f-4140-a1d3-9fe9f317961d/" title="Zemified by Zemanta"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=386cc11a-c35f-4140-a1d3-9fe9f317961d" alt="Reblog this post [with Zemanta]" /></a></div>]]>
        
    </content>
</entry>

<entry>
    <title>Another piece of the puzzle for replacing fossil fuels</title>
    <link rel="alternate" type="text/html" href="http://fugacious.org/blog/#001847" />
    <id>tag:fugacious.org,2009:/blog//1.1847</id>

    <published>2009-02-06T17:12:06Z</published>
    <updated>2009-02-06T17:57:24Z</updated>

    <summary>Image via WikipediaOslo to Run Buses On Biomethane - the biomethane is coming from their sewage treatment plants, and it&apos;s a great way to reduce dependence on fossil fuels.That&apos;s cool, but, the really cool thing is the way they got...</summary>
    <author>
        <name>Steve</name>
        
    </author>
    
        <category term="Environment" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://fugacious.org/blog/">
        <![CDATA[<div class="zemanta-img" style="margin: 1em; float: right; display: block; width: 212px;"><a href="http://commons.wikipedia.org/wiki/Image:Sporveisbussene_18jun2005.jpg"><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Sporveisbussene_18jun2005.jpg/202px-Sporveisbussene_18jun2005.jpg" alt="Oslo City Bus." style="border: medium none ; display: block;" height="165" width="202" /></a><p class="zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://commons.wikipedia.org/wiki/Image:Sporveisbussene_18jun2005.jpg">Wikipedia</a></p></div><a href="http://www.worldchanging.com/archives/009372.html">Oslo to Run Buses On Biomethane</a> - the biomethane is coming from their sewage treatment plants, and it's a great way to reduce dependence on fossil fuels.<br /><br />That's cool, but, the really cool thing is the way they got to this.&nbsp; Instead of starting with, "Let's use biodiesel in all our busses!" or "Electricity is the only way to go!", they started asking, "What resources do we have to work with?" and came up with this solution.<br /><br />That's the way we are going to replace fossil fuels - each person and organization (and I include local, state, and federal governments when I say organization) is going to have to ask the question, "What is best for me?".<br /><br />My boss recently put in solar cells to generate electricity for her house.&nbsp; She put in enough cells to generate about 25% of the power she uses every month.&nbsp; That's what works for her.<br /><br />We shouldn't try to replace fossil fuels with X, no matter what X is - we need to look at multiple solutions so that we don't find ourselves in the same situation we are now, bound to one source of energy, live or die.<br /><blockquote></blockquote>

<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/7e00911f-e308-4c94-add8-87bd1adb5b36/" title="Zemified by Zemanta"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=7e00911f-e308-4c94-add8-87bd1adb5b36" alt="Reblog this post [with Zemanta]" /></a></div>]]>
        
    </content>
</entry>

<entry>
    <title>Finally, a President that understands SCHIP and is willing to fund it</title>
    <link rel="alternate" type="text/html" href="http://fugacious.org/blog/#001846" />
    <id>tag:fugacious.org,2009:/blog//1.1846</id>

    <published>2009-02-05T00:31:29Z</published>
    <updated>2009-02-05T00:31:37Z</updated>

    <summary><![CDATA[The State Children's Health Insurance Program (SCHIP) is a very, very important health package in this country.&nbsp; The Bush administration didn't think so.&nbsp; They didn't think that 11 million kids that are covered by the program really needed help.&nbsp; Nope.&nbsp;...]]></summary>
    <author>
        <name>Steve</name>
        
    </author>
    
        <category term="Politics" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://fugacious.org/blog/">
        <![CDATA[The State Children's Health Insurance Program (SCHIP) is a very, very important health package in this country.&nbsp; The Bush administration didn't think so.&nbsp; They didn't think that 11 million kids that are covered by the program really needed help.&nbsp; Nope.&nbsp; Their parents just needed to work harder so they could pay for their own health care.<br /><br />Thank goodness we have an administration that knows better.&nbsp; Today, <a href="http://www.sfgate.com/cgi-bin/article.cgi?f=/n/a/2009/02/04/national/w001113S12.DTL&amp;feed=rss.news">President Obama signed kids' health insurance bill</a>.&nbsp; <br /><blockquote></blockquote>]]>
        
    </content>
</entry>

<entry>
    <title>Take bailout money, Obama will make you tighten your belt</title>
    <link rel="alternate" type="text/html" href="http://fugacious.org/blog/#001845" />
    <id>tag:fugacious.org,2009:/blog//1.1845</id>

    <published>2009-02-04T18:22:15Z</published>
    <updated>2009-02-04T18:22:20Z</updated>

    <summary><![CDATA[Today the Obaman administration added a provision to giving bailout money to companies.&nbsp; The provision caps the pay for senior executives in these companies to $500k.&nbsp; Who thinks this doesn't make sense?&nbsp; If your company is failing so badly that...]]></summary>
    <author>
        <name>Steve</name>
        
    </author>
    
        <category term="Politics" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://fugacious.org/blog/">
        <![CDATA[Today the Obaman administration added a provision to giving bailout money to companies.&nbsp; The provision caps the pay for senior executives in these companies to $500k.&nbsp; <br /><br />Who thinks this doesn't make sense?&nbsp; If your company is failing so badly that you need to go begging to the government for a bailout, you need to clean up your house, including limiting bonuses and excessive pay.<br /><br />The actual provision is a bit more nuanced than what I state above.&nbsp; It includes exceptions, which makes sense in some cases.&nbsp; For more details see <a href="http://www.sfgate.com/cgi-bin/article.cgi?f=/n/a/2009/02/03/national/w143727S80.DTL&amp;feed=rss.news">Obama caps executive pay tied to bailout money</a>.<blockquote></blockquote>]]>
        
    </content>
</entry>

<entry>
    <title>Stop it - the New Deal did not make the depression last longer</title>
    <link rel="alternate" type="text/html" href="http://fugacious.org/blog/#001844" />
    <id>tag:fugacious.org,2009:/blog//1.1844</id>

    <published>2009-02-01T05:20:52Z</published>
    <updated>2009-02-01T05:32:10Z</updated>

    <summary>Image via WikipediaI&apos;m so tired of hearing this nonsense. The New Deal did not prolong the Great Depression. The New Deal had an amazing impact no the economy of this country. The only time growth slowed during FDR&apos;s administration was...</summary>
    <author>
        <name>Steve</name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://fugacious.org/blog/">
        <![CDATA[<div class="zemanta-img" style="margin: 1em; float: right; display: block; width: 212px;"><a href="http://en.wikipedia.org/wiki/Image:NewDeal.jpg"><img src="http://upload.wikimedia.org/wikipedia/en/thumb/6/67/NewDeal.jpg/202px-NewDeal.jpg" alt="Top left: The Tennessee Valley Authority, part..." style="border: medium none ; display: block;" height="138" width="202" /></a><p class="zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://en.wikipedia.org/wiki/Image:NewDeal.jpg">Wikipedia</a></p></div>I'm so tired of hearing this nonsense.  The <a class="zem_slink" href="http://en.wikipedia.org/wiki/New_Deal" title="New Deal" rel="wikipedia">New Deal</a> did not prolong the <a class="zem_slink" href="http://en.wikipedia.org/wiki/Great_Depression" title="Great Depression" rel="wikipedia">Great Depression</a>.  The New Deal had an amazing impact no the economy of this country.  The only time growth slowed during <a class="zem_slink" href="http://en.wikipedia.org/wiki/Franklin_D._Roosevelt" title="Franklin D. Roosevelt" rel="wikipedia"><span class="caps">FDR</span></a>'s administration was the year he backed off on the New Deal ('37-'38) when he was convinced by others that balancing the budget was more important than continuing the New Deal policies.

<p>Look, you may not agree with everything that <span class="caps">FDR </span>did, you may not like all the policies of the New Deal, but you sound irrational when you make claims like this.  It's clearly political partisan crap.</p>

<p>When did being a Republican change from being rational to being anti-Democrat?  </p>

<p>Don't believe me?  </p>

<p>Federal Reserve chairman <a class="zem_slink" href="http://en.wikipedia.org/wiki/Ben_Bernanke" title="Ben Bernanke" rel="wikipedia">Ben Bernanke</a>, "Only with the New Deal's rehabilitation of the financial system in 1933-35 did the economy begin its slow emergence from the Great Depression." In fact, even famed conservative economist <a class="zem_slink" href="http://en.wikipedia.org/wiki/Milton_Friedman" title="Milton Friedman" rel="wikipedia">Milton Friedman</a> admitted that the New Deal's <a class="zem_slink" href="http://www.fdic.gov" title="Federal Deposit Insurance Corporation" rel="homepage">Federal Deposit Insurance Corp.</a> was "the structural change most conducive to monetary stability since ... the Civil War."</p>

<p>Or let's just read the latest Nobel Prize winner's <a href="http://www.nytimes.com/2008/11/10/opinion/10krugman.html?_r=3&amp;hp">recent column on the New Deal</a>. </p>

<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/05990a91-8e2f-44e1-b541-15d57dcdd0e2/" title="Zemified by Zemanta"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=05990a91-8e2f-44e1-b541-15d57dcdd0e2" alt="Reblog this post [with Zemanta]" /></a></div>]]>
        
    </content>
</entry>

</feed>
