<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6920493576126304320</id><updated>2011-04-21T22:42:11.105-04:00</updated><category term='Object-Oriented Development'/><category term='General'/><category term='Organizational Behavior'/><category term='Blogging'/><title type='text'>Spargel Dein Reises</title><subtitle type='html'>A general blog covering topics of interest to me.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://spargeldeinreises.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6920493576126304320/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://spargeldeinreises.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Stephen Ritchie</name><uri>http://www.blogger.com/profile/13842569950658196638</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://bp0.blogger.com/_VlJfvRGaRWk/SCWmhtuv-gI/AAAAAAAAAAM/n6T936iGl9U/S220/Stephen_0261.JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>7</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6920493576126304320.post-3670518272048220619</id><published>2008-08-10T17:47:00.004-04:00</published><updated>2008-08-10T17:53:18.481-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blogging'/><title type='text'>Blogging Tip: Initial Capital</title><content type='html'>&lt;p&gt;
&lt;span class="initialcap"&gt;T&lt;/span&gt;oday I am trying to learn how to post with an initial capital letter. Apparently it does work. Now I feel like I'm really publishing something.
&lt;/p&gt;
&lt;p&gt;Thanks to Omar Abid's blog:
&lt;a href="http://omar-abid.blogspot.com/2008/07/blogger-hack-initial-caps-for-your.html"&gt;omar-abid&lt;/a&gt;
&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6920493576126304320-3670518272048220619?l=spargeldeinreises.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://spargeldeinreises.blogspot.com/feeds/3670518272048220619/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6920493576126304320&amp;postID=3670518272048220619' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6920493576126304320/posts/default/3670518272048220619'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6920493576126304320/posts/default/3670518272048220619'/><link rel='alternate' type='text/html' href='http://spargeldeinreises.blogspot.com/2008/08/blogging-tip-initial-capital.html' title='Blogging Tip: Initial Capital'/><author><name>Stephen Ritchie</name><uri>http://www.blogger.com/profile/13842569950658196638</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://bp0.blogger.com/_VlJfvRGaRWk/SCWmhtuv-gI/AAAAAAAAAAM/n6T936iGl9U/S220/Stephen_0261.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6920493576126304320.post-2365763853566876700</id><published>2008-08-04T13:34:00.008-04:00</published><updated>2008-08-09T18:25:42.070-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blogging'/><title type='text'>C# Code Formatting</title><content type='html'>&lt;p&gt;Yes! I managed to find a way to format code for my blog.&lt;/p&gt;
&lt;p&gt;Thanks to &lt;a href="http://www.manoli.net/csharpformat/"&gt;manoli.net&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Here is how it turned out:&lt;/p&gt;

&lt;div class="csharpcode" style="height: 200px; overflow: auto"&gt;
&lt;pre class="alt"&gt;&lt;span class="lnum"&gt;   1:  &lt;/span&gt;&lt;span class="rem"&gt;/*************************************************&lt;/span&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;span class="lnum"&gt;   2:  &lt;/span&gt;&lt;span class="rem"&gt;* This sample illustrates how to use an ArrayList &lt;/span&gt;&lt;/pre&gt;
&lt;pre class="alt"&gt;&lt;span class="lnum"&gt;   3:  &lt;/span&gt;&lt;span class="rem"&gt;* and a foreach loop.&lt;/span&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;span class="lnum"&gt;   4:  &lt;/span&gt;&lt;span class="rem"&gt;* (from the quickstart tutorials)&lt;/span&gt;&lt;/pre&gt;
&lt;pre class="alt"&gt;&lt;span class="lnum"&gt;   5:  &lt;/span&gt;&lt;span class="rem"&gt;**************************************************/&lt;/span&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;span class="lnum"&gt;   6:  &lt;/span&gt;&lt;span class="kwrd"&gt;using&lt;/span&gt; System;&lt;/pre&gt;
&lt;pre class="alt"&gt;&lt;span class="lnum"&gt;   7:  &lt;/span&gt;&lt;span class="kwrd"&gt;using&lt;/span&gt; System.Collections;&lt;/pre&gt;
&lt;pre&gt;&lt;span class="lnum"&gt;   8:  &lt;/span&gt; &lt;/pre&gt;
&lt;pre class="alt"&gt;&lt;span class="lnum"&gt;   9:  &lt;/span&gt;&lt;span class="kwrd"&gt;class&lt;/span&gt; ListSample&lt;/pre&gt;
&lt;pre&gt;&lt;span class="lnum"&gt;  10:  &lt;/span&gt;{&lt;/pre&gt;
&lt;pre class="alt"&gt;&lt;span class="lnum"&gt;  11:  &lt;/span&gt;    &lt;span class="kwrd"&gt;public&lt;/span&gt; &lt;span class="kwrd"&gt;static&lt;/span&gt; &lt;span class="kwrd"&gt;void&lt;/span&gt; Main(String[] args)&lt;/pre&gt;
&lt;pre&gt;&lt;span class="lnum"&gt;  12:  &lt;/span&gt;    {&lt;/pre&gt;
&lt;pre class="alt"&gt;&lt;span class="lnum"&gt;  13:  &lt;/span&gt;        &lt;span class="rem"&gt;//create the arraylist and add the items&lt;/span&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;span class="lnum"&gt;  14:  &lt;/span&gt;        ArrayList fruit = &lt;span class="kwrd"&gt;new&lt;/span&gt; ArrayList();&lt;/pre&gt;
&lt;pre class="alt"&gt;&lt;span class="lnum"&gt;  15:  &lt;/span&gt;        fruit.Add(&lt;span class="str"&gt;"Apple"&lt;/span&gt;);&lt;/pre&gt;
&lt;pre&gt;&lt;span class="lnum"&gt;  16:  &lt;/span&gt;        fruit.Add(&lt;span class="str"&gt;"Pear"&lt;/span&gt;);&lt;/pre&gt;
&lt;pre class="alt"&gt;&lt;span class="lnum"&gt;  17:  &lt;/span&gt;        fruit.Add(&lt;span class="str"&gt;"Orange"&lt;/span&gt;);&lt;/pre&gt;
&lt;pre&gt;&lt;span class="lnum"&gt;  18:  &lt;/span&gt;        fruit.Add(&lt;span class="str"&gt;"Banana"&lt;/span&gt;);&lt;/pre&gt;
&lt;pre class="alt"&gt;&lt;span class="lnum"&gt;  19:  &lt;/span&gt; &lt;/pre&gt;
&lt;pre&gt;&lt;span class="lnum"&gt;  20:  &lt;/span&gt;        &lt;span class="rem"&gt;//loop through the arraylist elements&lt;/span&gt;&lt;/pre&gt;
&lt;pre class="alt"&gt;&lt;span class="lnum"&gt;  21:  &lt;/span&gt;        &lt;span class="kwrd"&gt;foreach&lt;/span&gt; (String item &lt;span class="kwrd"&gt;in&lt;/span&gt; fruit)&lt;/pre&gt;
&lt;pre&gt;&lt;span class="lnum"&gt;  22:  &lt;/span&gt;        {&lt;/pre&gt;
&lt;pre class="alt"&gt;&lt;span class="lnum"&gt;  23:  &lt;/span&gt;            Console.WriteLine(item);&lt;/pre&gt;
&lt;pre&gt;&lt;span class="lnum"&gt;  24:  &lt;/span&gt;        }&lt;/pre&gt;
&lt;pre class="alt"&gt;&lt;span class="lnum"&gt;  25:  &lt;/span&gt;        &lt;/pre&gt;
&lt;pre&gt;&lt;span class="lnum"&gt;  26:  &lt;/span&gt;        Console.WriteLine (&lt;span class="str"&gt;"\nPress Return to exit."&lt;/span&gt;);&lt;/pre&gt;
&lt;pre class="alt"&gt;&lt;span class="lnum"&gt;  27:  &lt;/span&gt;        Console.Read();&lt;/pre&gt;
&lt;pre&gt;&lt;span class="lnum"&gt;  28:  &lt;/span&gt;    }&lt;/pre&gt;
&lt;pre class="alt"&gt;&lt;span class="lnum"&gt;  29:  &lt;/span&gt;}&lt;/pre&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6920493576126304320-2365763853566876700?l=spargeldeinreises.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://spargeldeinreises.blogspot.com/feeds/2365763853566876700/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6920493576126304320&amp;postID=2365763853566876700' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6920493576126304320/posts/default/2365763853566876700'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6920493576126304320/posts/default/2365763853566876700'/><link rel='alternate' type='text/html' href='http://spargeldeinreises.blogspot.com/2008/08/1-2-this-sample-illustrates-how-to-use.html' title='C# Code Formatting'/><author><name>Stephen Ritchie</name><uri>http://www.blogger.com/profile/13842569950658196638</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://bp0.blogger.com/_VlJfvRGaRWk/SCWmhtuv-gI/AAAAAAAAAAM/n6T936iGl9U/S220/Stephen_0261.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6920493576126304320.post-792330719242682093</id><published>2008-07-22T09:00:00.003-04:00</published><updated>2008-07-22T10:14:30.069-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Object-Oriented Development'/><title type='text'>What is a class?</title><content type='html'>&lt;p&gt;When I interview a candidate for a software developer position I often start simple; a question like "what is a class?" Often I get a perfunctory and incomplete answer like "functions and variables" and "a way to make objects" (sometimes they are much worse... way off the mark.) A few days later I will hear that the candidate wasn't happy that I asked such an "academic" question.&lt;/p&gt;
&lt;p&gt;I don't want an academic answer. I want what I so rarely get... passion, interest, the beginner's mind, the journeyman's skill, a desire to explain, a mention of encapsulation or inheritance. I'm looking for an intelligent answer.&lt;/p&gt;
&lt;p&gt;To myself I would answer something like this... "what underlies a &lt;span style="FONT-STYLE: italic"&gt;class&lt;/span&gt; in object-oriented programming is the need to manage complexity through the classification of objects, both concrete and abstract. The class serves as a template for instantiating objects with distinguishing characteristics, represented as &lt;span style="FONT-STYLE: italic"&gt;attributes&lt;/span&gt; and &lt;em&gt;methods&lt;/em&gt;. The object's &lt;u&gt;state&lt;/u&gt; is controlled by the object's &lt;em&gt;attributes&lt;/em&gt; defined in the class. The object's &lt;u&gt;behaviors&lt;/u&gt; are invoked through the &lt;span style="FONT-STYLE: italic"&gt;methods&lt;/span&gt; defined in the class. In this way the class encapsulates data and functions together in a coherent way that can represent specific entities, elements of structure, events to remember, roles, etc. Classes provide structure and organization to the program with general-specific and whole-part relationships. A classes is the DNA, if you will, of the microorganisms that inhabit the larger software ecosystem."&lt;/p&gt;
&lt;p&gt;By way of example, "I look at the objects around me and see how every Honda Civic is an instance of the same class with attributes like color, model, mileage and VIN number distinguishing each instance. When I want to pop the hood of another Civic the method is routine and familiar. My car is an instance of the specific Civic class. In turn, the Civic is a specific Car which is a specific of the generalization Vehicle. The Vehicle class has the attributes and methods that allow for things like vehicle license and registration and resale. The whole car is composed of parts, which are themselves instances of a classes. My insurance policy, a speeding ticket, a gasoline receipt are all class instances in some other structure of things-to-be-remembered. Every object instance has attributes and behaviors that are intrinsic to that class that allow for classification and structure."&lt;/p&gt;
&lt;p&gt;This is the kind of answer I'm really looking for.&lt;p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6920493576126304320-792330719242682093?l=spargeldeinreises.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://spargeldeinreises.blogspot.com/feeds/792330719242682093/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6920493576126304320&amp;postID=792330719242682093' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6920493576126304320/posts/default/792330719242682093'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6920493576126304320/posts/default/792330719242682093'/><link rel='alternate' type='text/html' href='http://spargeldeinreises.blogspot.com/2008/07/what-is-class.html' title='What is a class?'/><author><name>Stephen Ritchie</name><uri>http://www.blogger.com/profile/13842569950658196638</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://bp0.blogger.com/_VlJfvRGaRWk/SCWmhtuv-gI/AAAAAAAAAAM/n6T936iGl9U/S220/Stephen_0261.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6920493576126304320.post-7449445639810994781</id><published>2008-07-20T08:57:00.015-04:00</published><updated>2008-07-21T18:59:34.882-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Organizational Behavior'/><title type='text'>We are the Pakleds; You *are* smart!</title><content type='html'>&lt;p&gt;As one of the weary consultants on a multi-year software development project for a major lending institution I observed what became known as the “Pakled-Customer Syndrome”. The Pakleds are a race of dimwitted aliens from Star Trek: The Next Generation, which are first seen in the “Samaritan Snare” episode (summary &lt;a href="http://memory-alpha.org/en/wiki/Samaritan_Snare"&gt;here&lt;/a&gt;). They co-opt the technology of other spaceships through manipulation, brainless praise and hostage taking. Responding in good faith to the Pakled distress call the Enterprise is ensnared by the Pakled’s intractable problems and pig-headed attitude.&lt;/p&gt;&lt;p&gt;In the TNG episode, the Pakled are characterized by the repeating of a few simple phrases. When the crew attempts to engage them in a dialog about their distress (e.g. Is your ship damaged?) the response is always; “Uh-hunh.” Diagnostic inquiry and problem-solving are met with; “It is broken…. Can you make our ship go?”, “Make our ship go”, “Will our ship go now?” Any perceived progress is met with oddly enthusiastic and sycophantic praise; “He is smart”, “You are brilliant”; but this turns out to be unproductive support and belies their hidden agendas.&lt;/p&gt;&lt;p&gt;On many projects the customer can be entrenched in their own Pakled-mindset and the project is soon mired in the resulting quicksand. As organizational behavioral dysfunctions, here is what characterizes the “Pakled-Customer Syndrome”: &lt;ul&gt;&lt;li&gt;&lt;u&gt;Snare one:&lt;/u&gt; The customer takes no responsibility for understanding the problems they face: “it is broken”. Ultimately, project scope cannot be managed when there is no meeting of the minds on what are the larger tasks at hand.&lt;/li&gt;&lt;li&gt;&lt;u&gt;Snare two:&lt;/u&gt; The customer cannot participate in their own treatment. Due to many surreal disconnects too many project resources are spent teaching the customer their own business; too few project objectives are being accomplished. &lt;/li&gt;&lt;li&gt;&lt;u&gt;Snare three:&lt;/u&gt; The customer provides fake praise and misleading recognition. The project believes it is accomplishing worthy goals and that customer value is being created; it is not. &lt;/li&gt;&lt;li&gt;&lt;u&gt;Snare four:&lt;/u&gt; The customer manipulates and ties up valuable resources. The more the project starts to unravel the more the Pakled-customer latches on to your team, drawing them deeper into their dysfunction.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;At the heart of the "Pakled-Customer Syndrome" are the classic differences in expectations, especially around roles and responsiblities, that lead to conflict. In addition, there are implicit and hidden agendas which must be explicated before meaningful project progress can be made.&lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6920493576126304320-7449445639810994781?l=spargeldeinreises.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://spargeldeinreises.blogspot.com/feeds/7449445639810994781/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6920493576126304320&amp;postID=7449445639810994781' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6920493576126304320/posts/default/7449445639810994781'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6920493576126304320/posts/default/7449445639810994781'/><link rel='alternate' type='text/html' href='http://spargeldeinreises.blogspot.com/2008/07/we-are-pakleds-you-are-smart.html' title='We are the Pakleds; You *are* smart!'/><author><name>Stephen Ritchie</name><uri>http://www.blogger.com/profile/13842569950658196638</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://bp0.blogger.com/_VlJfvRGaRWk/SCWmhtuv-gI/AAAAAAAAAAM/n6T936iGl9U/S220/Stephen_0261.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6920493576126304320.post-6374964574364628071</id><published>2008-07-18T17:39:00.004-04:00</published><updated>2008-07-18T18:58:59.540-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>Energy Crisis: Solved!</title><content type='html'>We may be able to achieve thermonuclear fusion within the high temperatures of the collapsing bubbles produced during sonoluminescence. The official name for the reaction is Acoustic Inertial Confinement Fusion (AICF), which is well described in the "Bubble Fusion" Wikipedia entry (&lt;a href="http://en.wikipedia.org/wiki/Bubble_fusion"&gt;here&lt;/a&gt;).

I first heard about sonoluminescence as part of course that I took some twenty years ago called "Underwater Noise". It covered cavitation and touched upon the experimental observation that the temperatures inside the cavitation bubbles was "as hot as the center of the Sun." As the years passed and cold fusion was "announced" the thought percolated into my brain: if a hydrogen bubble underwent this extreme temperature and pressure wouldn't there be a mini-fusion reaction.

In the Wikipedia article they state: "In the March 8, 2002 issue of the peer-reviewed journal Science, Rusi P. Taleyarkhan and colleagues at the Oak Ridge National Laboratory (ORNL) reported that acoustic cavitation experiments conducted with deuterated acetone (C3D6O) showed measurements of tritium and neutron output that were consistent with the occurrence of fusion."

Further, in 2005, students of Taleyarkhan at Purdue University published evidence confirming the previous result. Today we learn that a Purdue University committee has concluded that some allegations of research misconduct by Taleyarkhan were founded. (&lt;a href="http://ap.google.com/article/ALeqM5hbS8Omxfj4Xgjo38SinPIom3k5lwD920BRF00"&gt;AP article&lt;/a&gt;). What a shame.

So, where do we stand? I, for one, believe that since sonoluminescence does achieve the temperatures and pressures found at the center of the Sun it is a plausible avenue for scientific research. We must never let one individual or group's errors stand in the way of valid scientific pursuit.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6920493576126304320-6374964574364628071?l=spargeldeinreises.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://spargeldeinreises.blogspot.com/feeds/6374964574364628071/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6920493576126304320&amp;postID=6374964574364628071' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6920493576126304320/posts/default/6374964574364628071'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6920493576126304320/posts/default/6374964574364628071'/><link rel='alternate' type='text/html' href='http://spargeldeinreises.blogspot.com/2008/07/energy-crisis-solved.html' title='Energy Crisis: Solved!'/><author><name>Stephen Ritchie</name><uri>http://www.blogger.com/profile/13842569950658196638</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://bp0.blogger.com/_VlJfvRGaRWk/SCWmhtuv-gI/AAAAAAAAAAM/n6T936iGl9U/S220/Stephen_0261.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6920493576126304320.post-7299281717689452491</id><published>2008-05-22T09:07:00.000-04:00</published><updated>2008-05-22T09:33:25.606-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>USPS to Me: Pay Online</title><content type='html'>The U.S. Postal Service taught me a valuable lesson yesterday: "Pay your bills online."

You see, when I mailed my credit card payment on Monday I had only put a 41 cent stamp on the envelope.  I had forgotten (honestly) that the post office had raised the rates to 42 cents. My post office was kind enough to return-to-sender the envelop with a quick blurb on how to fix the problem by adding the penny stamp, but I took it a different way. Why not pay the bill online? It was just the kick in the pants I needed.

After I went through the steps... I found that two of my credit cards are with the same bank and both can be paid online from my checking account. I configured payment alerts and lots of great things like the "go paperless" program.

I am now &lt;em&gt;very motivated&lt;/em&gt; to pay &lt;strong&gt;all&lt;/strong&gt; my bills online. I'd like to see if I can virtually eliminate all my snail-mail bill paying.

Thanks USPS!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6920493576126304320-7299281717689452491?l=spargeldeinreises.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://spargeldeinreises.blogspot.com/feeds/7299281717689452491/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6920493576126304320&amp;postID=7299281717689452491' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6920493576126304320/posts/default/7299281717689452491'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6920493576126304320/posts/default/7299281717689452491'/><link rel='alternate' type='text/html' href='http://spargeldeinreises.blogspot.com/2008/05/usps-to-me-pay-online.html' title='USPS to Me: Pay Online'/><author><name>Stephen Ritchie</name><uri>http://www.blogger.com/profile/13842569950658196638</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://bp0.blogger.com/_VlJfvRGaRWk/SCWmhtuv-gI/AAAAAAAAAAM/n6T936iGl9U/S220/Stephen_0261.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6920493576126304320.post-5564826621017888842</id><published>2008-05-10T09:40:00.000-04:00</published><updated>2008-05-22T09:33:25.606-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>Spargel Dein Reises</title><content type='html'>It is time for all good people to step out of the shadows and asparagus their rice.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6920493576126304320-5564826621017888842?l=spargeldeinreises.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://spargeldeinreises.blogspot.com/feeds/5564826621017888842/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6920493576126304320&amp;postID=5564826621017888842' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6920493576126304320/posts/default/5564826621017888842'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6920493576126304320/posts/default/5564826621017888842'/><link rel='alternate' type='text/html' href='http://spargeldeinreises.blogspot.com/2008/05/spargel-dein-reises.html' title='Spargel Dein Reises'/><author><name>Stephen Ritchie</name><uri>http://www.blogger.com/profile/13842569950658196638</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://bp0.blogger.com/_VlJfvRGaRWk/SCWmhtuv-gI/AAAAAAAAAAM/n6T936iGl9U/S220/Stephen_0261.JPG'/></author><thr:total>0</thr:total></entry></feed>
