<?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>Johannes Schult</title>
	<atom:link href="http://www.jutze.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.jutze.com</link>
	<description>The world according to Jutze</description>
	<lastBuildDate>Sun, 05 Sep 2010 05:47:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Jutze 52 #36 &#8211; Funnel Cloud</title>
		<link>http://www.jutze.com/?p=914</link>
		<comments>http://www.jutze.com/?p=914#comments</comments>
		<pubDate>Sun, 05 Sep 2010 05:47:49 +0000</pubDate>
		<dc:creator>Jutze</dc:creator>
				<category><![CDATA[Jutze 52]]></category>
		<category><![CDATA[piano]]></category>
		<category><![CDATA[soft]]></category>
		<category><![CDATA[spheric]]></category>

		<guid isPermaLink="false">http://www.jutze.com/?p=914</guid>
		<description><![CDATA[This is a remnant from the time when my computer broke down. At first, I imagined the lead melody being played by a violin. But only on the piano did I find a proper way to continue the tune. This little piece of music is possibly a filler. But it&#8217;s one you can use to [...]]]></description>
			<content:encoded><![CDATA[<p>This is a remnant from the time when my computer broke down. At first, I imagined the lead melody being played by a violin. But only on the piano did I find a proper way to continue the tune. This little piece of music is possibly a filler. But it&#8217;s one you can use to meditate on life and sound quality.</p>
<p><span id="oneBitInsert_1"><object id="oneBitInsert_1" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="11" height="11" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="oneBitInsert_1" /><param name="bgcolor" value="#1ea0ff" /><param name="flashvars" value="foreColor=#ffffff&amp;analytics=false&amp;filename=http://www.jutze.com/jutze-52-36-funnelcloud.mp3" /><param name="src" value="http://www.jutze.com/wp-content/plugins/1bit/1bit.swf" /><param name="quality" value="high" /><embed id="oneBitInsert_1" type="application/x-shockwave-flash" width="11" height="11" src="http://www.jutze.com/wp-content/plugins/1bit/1bit.swf" quality="high" flashvars="foreColor=#ffffff&amp;analytics=false&amp;filename=http://www.jutze.com/jutze-52-36-funnelcloud.mp3" bgcolor="#1ea0ff" name="oneBitInsert_1"></embed></object></span> <a title="Funnel Cloud (mp3, 0.8 MB)" href="http://www.jutze.com/jutze-52-36-funnelcloud.mp3">#36 Funnel Cloud</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jutze.com/?feed=rss2&amp;p=914</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Practical tips for statisticians (part 8): centering variables using Stata and SPSS</title>
		<link>http://www.jutze.com/?p=908</link>
		<comments>http://www.jutze.com/?p=908#comments</comments>
		<pubDate>Fri, 03 Sep 2010 16:15:17 +0000</pubDate>
		<dc:creator>Jutze</dc:creator>
				<category><![CDATA[Data analysis]]></category>
		<category><![CDATA[average]]></category>
		<category><![CDATA[centered]]></category>
		<category><![CDATA[centering]]></category>
		<category><![CDATA[data management]]></category>
		<category><![CDATA[mean]]></category>
		<category><![CDATA[pasw]]></category>
		<category><![CDATA[spss]]></category>
		<category><![CDATA[stata]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[syntax]]></category>
		<category><![CDATA[variables]]></category>

		<guid isPermaLink="false">http://www.jutze.com/?p=908</guid>
		<description><![CDATA[My current research requires meta-analytic procedures where variables that contain another variable&#8217;s mean come in very handy. Centering Variables is also something very reasonable to do when analysing regressions with an interaction term between a continuous variable and a dummy variable. Centering variables sounds like an easy task. It is if you use Stata but [...]]]></description>
			<content:encoded><![CDATA[<p>My current research requires meta-analytic procedures where variables that contain another variable&#8217;s mean come in very handy. Centering Variables is also something very reasonable to do when analysing regressions with an interaction term between a continuous variable and a dummy variable.</p>
<p>Centering variables sounds like an easy task. It is if you use Stata but I found it surprisingly difficult in SPSS (unless you enter the means by hand, which is error-prone and impractible for repeated analyses). Here&#8217;s how you can calculated a variable which contains the mean of another variable (which can then easily be centered or used in whatever way one wants to).</p>
<p>Let dres be the variable of interest. The new variable containing the mean of dres (for all obversations) will be named dresavg. I also show how to create a variable containing the number of observations (ntotal). cdres will be the centered variable.</p>
<p><strong>Stata 10</strong></p>
<p>Use</p>
<p><code>. egen dresavg = mean(dres)</code></p>
<p>and you&#8217;re done! You could also use <a title="Stata help summarize" href="http://www.stata.com/help.cgi?summarize" target="_blank">summarize</a> and <a title="Stata help generate" href="http://www.stata.com/help.cgi?generate" target="_blank">generate</a> commands:</p>
<p><code>. sum dres<br />
. gen dresavg = r(mean)</code></p>
<p>If you want a variable that contains the total number of observations you can use</p>
<p><code>. gen ntotal = _N</code></p>
<p>or with the more flexible <a title="Stata help egeb" href="http://www.stata.com/help.cgi?egeb" target="_blank">egen</a> command (e.g., handy when dres has missings)</p>
<p><code>. egen ntotal = count(dres)</code></p>
<p>There are plenty ways to generate various variables containing sample statistics. As for the centered variable, use</p>
<p><code>. gen cdres = dres - dresavg</code></p>
<p>or without even generating the variable containing the mean:</p>
<p><code>. sum dres<br />
. gen cdres = dres - r(mean)</code></p>
<p><strong>PASW 18 (SPSS, you know)</strong></p>
<p>Beware, long syntax ahead. Before you despair, there&#8217;s a simpler (but less flexible) solution below. The complicated approach starts with exporting the variable mean into a new data set. This data set is then merged with the master data set; a variable containing the mean for every observation will be attached.<span id="more-908"></span></p>
<p><code>* Open the data set containing dres.<br />
* Depending on your operating system and your preferences you might have to change the paths.<br />
*.<br />
GET FILE='D:\master01.sav'.<br />
DATASET NAME master WINDOW=FRONT.<br />
*.<br />
* OMS will send (specified) output into a new file.<br />
* In this case the new file is a SPSS data set named killme.sav.<br />
* Set VIEWER = NO to omit the table being shown in the output window.<br />
*<br />
* The mean of dres is computed via DESCRIPTIVES.<br />
* NB: You can adapt the statistics, changing or adding statistics (e.g., SUM);<br />
* you might need to adapt some of the following stuff, though<br />
* (e.g., add Summe to the Mittelwert in the /KEEP option when saving).<br />
*<br />
* OMSEND will stop the sending.<br />
*.<br />
OMS<br />
/SELECT TABLES<br />
/DESTINATION FORMAT=SAV OUTFILE = 'D:\killme.sav' VIEWER = YES<br />
/IF COMMANDS = ['descriptives'] subtypes = ['descriptive statistics'].<br />
DESCRIPTIVES VARIABLES=dres<br />
/STATISTICS=MEAN.<br />
OMSEND.<br />
*.<br />
* A new data set containing the descriptive statistics has been created.<br />
* Time to close the master data set for the time being.<br />
*.<br />
DATASET CLOSE master.<br />
*.<br />
* Open the new small data set.<br />
*.<br />
GET FILE='D:\killme.sav'.<br />
DATASET NAME zwischenhalt WINDOW=FRONT.<br />
*.<br />
* I suggest you take a look at the data.<br />
* The number of interest is in the variable Mittelwert.<br />
* NB: I'm using a German version of the software; other version will give it other names.<br />
*<br />
* There's an additional line with the number of total observations<br />
* and if there's missing values maybe even more lines.<br />
* Let's get rid of them! NB: This assumes that the mean is, well not a very large negative number.<br />
* I know that's an ugly way to do it, but so far I couldn't get a statement like ~=SYSMIS(Mittelwert) working.<br />
*.<br />
FILTER OFF.<br />
USE ALL.<br />
SELECT IF (Mittelwert &gt; -66666666666).<br />
EXECUTE.<br />
*.<br />
* A (constant) key variable is required for the upcoming merging procedure.<br />
*.<br />
COMPUTE cons = 1 .<br />
EXECUTE .<br />
*.<br />
* Key variables must be sorted.<br />
*.<br />
SORT CASES BY cons(A).<br />
*.<br />
* Save the small data set, keeping only the key variable and the data of interest.<br />
* NB: Here N (i.e., the number of observations) is kept as well mirroring the Stata procedures shown above.<br />
*.<br />
SAVE OUTFILE='D:\killme.sav'<br />
/KEEP=N Mittelwert cons<br />
/COMPRESSED.<br />
*.<br />
* SPSS saves the specified data set, but the other variables remain there in the open data set.<br />
* Closing and re-opening solves this problem.<br />
*.<br />
DATASET CLOSE zwischenhalt.<br />
*.<br />
GET FILE='D:\killme.sav'.<br />
DATASET NAME zwischenhalt WINDOW=FRONT.<br />
*.<br />
* Open the master data set, as well.<br />
*.<br />
GET FILE='D:\master01.sav'.<br />
DATASET NAME master WINDOW=FRONT.<br />
*.<br />
* Add the key variable here, as well; then sort it.<br />
*.<br />
COMPUTE cons = 1 .<br />
EXECUTE .<br />
*.<br />
SORT CASES BY cons(A).<br />
*.<br />
* Now for the big one: the data set currently in front (master, here simply *) is merged with the other data set.<br />
* Using the /TABLES option allows to attach the one line of values to every line (observation) in the master data set.<br />
*.<br />
MATCH FILES /FILE=*<br />
/TABLE='zwischenhalt'<br />
/BY cons.<br />
EXECUTE.<br />
*.<br />
* Don't need the small data set anymore.<br />
*.<br />
DATASET CLOSE zwischenhalt.<br />
*.<br />
* Out of sight, but still on your computer. I'm afraid you have to manually delete it.<br />
* The file name killme suggests what to with it, eventually (a tip I got from Prof. Schnell).<br />
*<br />
* The variables that were attached have weird German names. Let's make them clearer:<br />
*.<br />
RENAME VARIABLES (N Mittelwert = ntotal dresavg).<br />
EXECUTE.<br />
*.<br />
* It doesn't hurt to label the new variables - but I assume you'd already thought of this yourself.<br />
*<br />
* Phew, now there's the variables needed for centering. So let's center!<br />
*.<br />
COMPUTE cdres = dres - cdresavg.<br />
EXECUTE.<br />
*.<br />
* There was no immediate need for save commands in the Stata examples.<br />
* For the sake of completity (and to drop the no longer needed key variable): save and close.<br />
*.<br />
SAVE OUTFILE='D:\master01.sav'<br />
/DROP=cons /COMPRESSED.<br />
*.<br />
DATASET CLOSE master.</code></p>
<p>So far, so complex. I promised an easier solution. You can (ab)use the regression command to achieve the same results in terms of mean variables. Just run a regression through the origin with dres as dependent variable and a constant as predictor. The predicted values (which are saved in a new variable specified in the last line of syntax) then correspond to the mean of dres.</p>
<p><code>COMPUTE cons = 1 .<br />
EXECUTE .<br />
*.<br />
REGRESSION<br />
/MISSING LISTWISE<br />
/STATISTICS R<br />
/CRITERIA=PIN(.05) POUT(.10)<br />
/ORIGIN<br />
/DEPENDENT dres<br />
/METHOD=ENTER cons<br />
/SAVE PRED(dresavg).<br />
*<br />
* Let's center!<br />
*.<br />
COMPUTE cdres = dres - cdresavg.<br />
EXECUTE.</code></p>
<p>A final remark to those frightened by the extensive solution with the OMS command: It should be possible to get a variable containing the number of observation by assigning case numbers, sorting, and then using the lag function (repeatedly?), but I haven&#8217;t figured out how, yet. And who knows, maybe there&#8217;s an obvious simple way I just overlooked all the time. For the time being I&#8217;m happy to have a working solution in SPSS. The easiest way is, of course, to use Stata.</p>
<p><strong>Update</strong> (an hour later): Thanks to the helpful comment below I can present another simple solution for SPSS:</p>
<p><code>COMPUTE cons = 1 .<br />
EXECUTE .<br />
*.<br />
AGGREGATE<br />
  /OUTFILE=* MODE=ADDVARIABLES<br />
  /BREAK=cons<br />
  /dresavg=MEAN(dres)<br />
  /ntotal=N.</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jutze.com/?feed=rss2&amp;p=908</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Jutze 52 #35 &#8211; Old McBiddy&#8217;s Wedding</title>
		<link>http://www.jutze.com/?p=903</link>
		<comments>http://www.jutze.com/?p=903#comments</comments>
		<pubDate>Sun, 29 Aug 2010 18:26:04 +0000</pubDate>
		<dc:creator>Jutze</dc:creator>
				<category><![CDATA[Jutze 52]]></category>
		<category><![CDATA[country]]></category>
		<category><![CDATA[old mcbiddy]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[wedding]]></category>

		<guid isPermaLink="false">http://www.jutze.com/?p=903</guid>
		<description><![CDATA[This is a nod to my dark progressive country roots. And to Old McBiddy, who&#8217;s living happily on his farm in Scotland. (O hai, video!) #35 Old McBiddy&#8217;s Wedding People came from far to see Old McBiddy&#8217;s wedding Gather in the churchyard to celebrate the day Oh what a joy it&#8217;s going to be: Old [...]]]></description>
			<content:encoded><![CDATA[<p>This is a nod to my dark progressive country roots. And to Old McBiddy, who&#8217;s living happily on his farm in Scotland. (<a title="Old McBiddy's Wedding over at YouTube" href="http://www.youtube.com/watch?v=BOp6QzE2eYo" target="_blank">O hai, video!</a>)</p>
<p><object id="oneBitInsert_1" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="11" height="11" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="oneBitInsert_1" /><param name="bgcolor" value="#1ea0ff" /><param name="flashvars" value="foreColor=#ffffff&amp;analytics=false&amp;filename=http://www.jutze.com/jutze-52-35-oldmcbiddyswedding.mp3" /><param name="src" value="http://www.jutze.com/wp-content/plugins/1bit/1bit.swf" /><param name="quality" value="high" /><embed id="oneBitInsert_1" type="application/x-shockwave-flash" width="11" height="11" src="http://www.jutze.com/wp-content/plugins/1bit/1bit.swf" quality="high" flashvars="foreColor=#ffffff&amp;analytics=false&amp;filename=http://www.jutze.com/jutze-52-35-oldmcbiddyswedding.mp3" bgcolor="#1ea0ff" name="oneBitInsert_1"></embed></object> <a title="Old McBiddy's Wedding (mp3, 0.8 MB)" href="http://www.jutze.com/jutze-52-35-oldmcbiddyswedding.mp3">#35 Old McBiddy&#8217;s Wedding</a></p>
<blockquote><p>People came from far to see Old McBiddy&#8217;s wedding<br />
Gather in the churchyard to celebrate the day<br />
Oh what a joy it&#8217;s going to be: Old McBiddy&#8217;s wedding<br />
So when he says, I do, the crowd shouts out, hooray!<br />
<strong>Now we&#8217;re going to celebrate Old McBiddy&#8217;s wedding<br />
Hurry boys, do not be late and let the music play</strong></p>
<p>Watch the people as they dance at Old McBiddy&#8217;s wedding<br />
Meanwhile Uncle Parker is getting drunk on wine<br />
<strong>Come on folks, raise your hands at Old McBiddy&#8217;s wedding<br />
Toast to the happy couple and their love divine</strong></p>
<p><em>(words and music by Johannes Schult)</em></p></blockquote>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/BOp6QzE2eYo&amp;hl=de&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/BOp6QzE2eYo&amp;hl=de&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jutze.com/?feed=rss2&amp;p=903</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.jutze.com/jutze-52-35-oldmcbiddyswedding.mp3" length="838806" type="audio/mpeg" />
		</item>
		<item>
		<title>Jutze 52 #34 &#8211; Big in Serbia</title>
		<link>http://www.jutze.com/?p=895</link>
		<comments>http://www.jutze.com/?p=895#comments</comments>
		<pubDate>Sun, 22 Aug 2010 05:10:39 +0000</pubDate>
		<dc:creator>Jutze</dc:creator>
				<category><![CDATA[Jutze 52]]></category>
		<category><![CDATA[serbia]]></category>
		<category><![CDATA[solo song]]></category>
		<category><![CDATA[tropical heat]]></category>

		<guid isPermaLink="false">http://www.jutze.com/?p=895</guid>
		<description><![CDATA[This is the first proper song I&#8217;ve recorded on my new computer. I still have a couple of digicam tracks which I&#8217;ll feature here, eventually. I had to force myself rather hard to create this particular song here. Thankfully, Russ chimed in with the suggestion to write about Tropical Heat&#8217;s popularity in Serbia. I pieced [...]]]></description>
			<content:encoded><![CDATA[<p>This is the first proper song I&#8217;ve recorded on my new computer. I still have a couple of digicam tracks which I&#8217;ll feature here, eventually. I had to force myself rather hard to create this particular song here. Thankfully, <a href="https://twitter.com/RockingJamboree/status/21506646200">Russ</a> chimed in with the suggestion to write about Tropical Heat&#8217;s popularity in Serbia. I pieced a few riffs together and assembled the lyrics on the fly, based on a few key words I had jotted down earlier. The whole thing would deserve a more elaborate song. But I only had a narrow time window this week and I was eager to experiment with the new recording software. I hope, however, that the song fits with the other 52-second songs I&#8217;ve done so far. (An epic instrumental MIDI-suite is in the works but that&#8217;s a different story &#8211; related to hybris.)</p>
<p>Želim da postanem poznata u SrbiJa.  Ugoditi pomoc mene.  Hvala.  Ljubav i palacinke!</p>
<p><span id="oneBitInsert_1"><object id="oneBitInsert_1" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="11" height="11" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><embed id="oneBitInsert_1" type="application/x-shockwave-flash" width="11" height="11"></embed></object></span></p>
<p><span> </span> <object id="oneBitInsert_1" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="11" height="11" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="oneBitInsert_1" /><param name="bgcolor" value="#1ea0ff" /><param name="flashvars" value="foreColor=#ffffff&amp;analytics=false&amp;filename=http://www.jutze.com/jutze-52-34-biginserbia.mp3" /><param name="src" value="http://www.jutze.com/wp-content/plugins/1bit/1bit.swf" /><param name="quality" value="high" /><embed id="oneBitInsert_1" type="application/x-shockwave-flash" width="11" height="11" src="http://www.jutze.com/wp-content/plugins/1bit/1bit.swf" quality="high" flashvars="foreColor=#ffffff&amp;analytics=false&amp;filename=http://www.jutze.com/jutze-52-34-biginserbia.mp3" bgcolor="#1ea0ff" name="oneBitInsert_1"></embed></object> <a title="Big in Serbia (mp3, 0.8 MB)" href="http://www.jutze.com/jutze-52-34-biginserbia.mp3">#34 Big in Serbia</a></p>
<blockquote><p>I don&#8217;t expect to become an internet superstar<br />
But I wouldn&#8217;t mind a bit more popularity<br />
<strong>I wish I was big in Serbia<br />
That people recognized me in the street<br />
I wish I was big in Serbia<br />
Just like Tropical Heat</strong></p>
<p><em>(words and music by Johannes Schult)</em></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.jutze.com/?feed=rss2&amp;p=895</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.jutze.com/jutze-52-34-biginserbia.mp3" length="838795" type="audio/mpeg" />
		</item>
		<item>
		<title>Jutze 52 #33 Regentropfen im Nordwind</title>
		<link>http://www.jutze.com/?p=892</link>
		<comments>http://www.jutze.com/?p=892#comments</comments>
		<pubDate>Sun, 15 Aug 2010 06:40:54 +0000</pubDate>
		<dc:creator>Jutze</dc:creator>
				<category><![CDATA[Jutze 52]]></category>
		<category><![CDATA[glockenspiel]]></category>
		<category><![CDATA[instrumental]]></category>
		<category><![CDATA[jig]]></category>
		<category><![CDATA[soft]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.jutze.com/?p=892</guid>
		<description><![CDATA[This little tune was written and recorded at an unlikely location: the camping ground of this year&#8217;s Headbangers Open Air. I had planned to record more tracks back home. But once I had come up with the melody I liked the sparse sound of the glockenspiel. I recorded the song with my digicam inside the [...]]]></description>
			<content:encoded><![CDATA[<p>This little tune was written and recorded at an unlikely location: the camping ground of this year&#8217;s <a title="My report over at Vampster.com (in German)" href="http://vampster.com/artikel/show/36121_HEADBANGERS-OPEN-AIR-2010-Fragmente-eines-Festivalberichts_.html">Headbangers Open Air</a>. I had planned to record more tracks back home. But once I had come up with the melody I liked the sparse sound of the glockenspiel. I recorded the song with my digicam <a title="Video over at YouTube!" href="http://www.youtube.com/watch?v=YGV3fTR55Kc" target="_blank">inside the car</a>. I had to close the windows because the first band of the day was already on stage, thrashing away. It got quite hot. So for me it&#8217;s surprising how the track sounds nothing like the circumstances under which it came into being.</p>
<p><span id="oneBitInsert_1"><object id="oneBitInsert_1" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="11" height="11" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="oneBitInsert_1" /><param name="bgcolor" value="#1ea0ff" /><param name="flashvars" value="foreColor=#ffffff&amp;analytics=false&amp;filename=http://www.jutze.com/jutze-52-33-regentropfenimnordwind.mp3" /><param name="src" value="http://www.jutze.com/wp-content/plugins/1bit/1bit.swf" /><param name="quality" value="high" /><embed id="oneBitInsert_1" type="application/x-shockwave-flash" width="11" height="11" src="http://www.jutze.com/wp-content/plugins/1bit/1bit.swf" quality="high" flashvars="foreColor=#ffffff&amp;analytics=false&amp;filename=http://www.jutze.com/jutze-52-33-regentropfenimnordwind.mp3" bgcolor="#1ea0ff" name="oneBitInsert_1"></embed></object></span> <a title="Regentropfen im Nordwind (mp3, 0.8 MB)" href="http://www.jutze.com/jutze-52-33-regentropfenimnordwind.mp3">#33 Regentropfen im Nordwind</a></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/YGV3fTR55Kc&amp;hl=de&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/YGV3fTR55Kc&amp;hl=de&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jutze.com/?feed=rss2&amp;p=892</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.jutze.com/jutze-52-33-regentropfenimnordwind.mp3" length="840903" type="audio/mpeg" />
		</item>
		<item>
		<title>Jutze 52 #32 &#8211; Hank Green Learned a New Chord</title>
		<link>http://www.jutze.com/?p=886</link>
		<comments>http://www.jutze.com/?p=886#comments</comments>
		<pubDate>Sun, 08 Aug 2010 20:04:56 +0000</pubDate>
		<dc:creator>Jutze</dc:creator>
				<category><![CDATA[Jutze 52]]></category>
		<category><![CDATA[hank green]]></category>
		<category><![CDATA[nerdfighters]]></category>
		<category><![CDATA[punk]]></category>
		<category><![CDATA[solo song]]></category>
		<category><![CDATA[three chords]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[vlogbrothers]]></category>
		<category><![CDATA[wrock]]></category>

		<guid isPermaLink="false">http://www.jutze.com/?p=886</guid>
		<description><![CDATA[This is a song about F-sharp minor (as seen in Hank&#8217;s video around 2:25). If you don&#8217;t know who Hank Green is, check out his music at DFTBA Records. &#8220;Hank Green Learned a New Chord&#8221; is yet another example for songs I hadn&#8217;t written without the 52-second constraint (and the need for brief song lyrics [...]]]></description>
			<content:encoded><![CDATA[<p>This is a song about F-sharp minor (as seen in <a title="Vlogbrothers" href="http://www.youtube.com/watch?v=tqiJtOQqQ7o" target="_blank">Hank&#8217;s video</a> around 2:25). If you don&#8217;t know who <a title="Hank Green" href="http://www.hankgreen.com" target="_blank">Hank Green</a> is, check out <a title="Hank's album So Jokes over at DFTBA Records" href="http://dftba.com/shop/products/So-Jokes-%5BCD%5D.html" target="_blank">his music at DFTBA Records</a>.</p>
<p>&#8220;Hank Green Learned a New Chord&#8221; is yet another example for songs I hadn&#8217;t written without the 52-second constraint (and the need for brief song lyrics associated with it). Once again I had to record everything with my digicam, hence the bad sound. On the bright sight, <a title="Hank Green Learned a New Chord over at YouTube" href="http://www.youtube.com/watch?v=Hl5s6GZ8iuI">you can watch me playing/recording the song</a>.</p>
<p><span id="oneBitInsert_1"><object id="oneBitInsert_1" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="11" height="11" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="oneBitInsert_1" /><param name="bgcolor" value="#1ea0ff" /><param name="flashvars" value="foreColor=#ffffff&amp;analytics=false&amp;filename=http://www.jutze.com/jutze-52-32-hankgreenlearnedanewchord.mp3" /><param name="src" value="http://www.jutze.com/wp-content/plugins/1bit/1bit.swf" /><param name="quality" value="high" /><embed id="oneBitInsert_1" type="application/x-shockwave-flash" width="11" height="11" src="http://www.jutze.com/wp-content/plugins/1bit/1bit.swf" quality="high" flashvars="foreColor=#ffffff&amp;analytics=false&amp;filename=http://www.jutze.com/jutze-52-32-hankgreenlearnedanewchord.mp3" bgcolor="#1ea0ff" name="oneBitInsert_1"></embed></object></span> <a title="Hank Green Learned a New Chord (mp3, 0.8 MB)" href="http://www.jutze.com/jutze-52-32-hankgreenlearnedanewchord.mp3">#32 Hank Green Learned a New Chord</a></p>
<blockquote><p>It was Wednesday the 21st<br />
Hank played a tune on his guitar<br />
There on the vlogbrothers channel<br />
I almost couldn&#8217;t believe what I saw<br />
<strong>It was like an epiphany<br />
Though the part was rather short<br />
It was plain for all to see<br />
Hank Green learned a new chord</strong></p>
<p>Until that day I had always thought<br />
That Hank was a Horcrux of punk<br />
A way to keep the lore of the three chord songs<br />
Safe from boy-groups and funk<br />
<strong>It was like an epiphany<br />
Though the part was rather short<br />
It was plain for all to see<br />
Hank Green learned a new chord</strong></p>
<p><em>Is he about to make the transition from wizard rock<br />
To Slytherin Jazz for the Dark Lord?<br />
Hank Green learned a new chord</em></p>
<p><em>(words and music by Johannes Schult)</em></p></blockquote>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/Hl5s6GZ8iuI&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/Hl5s6GZ8iuI&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jutze.com/?feed=rss2&amp;p=886</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.jutze.com/jutze-52-32-hankgreenlearnedanewchord.mp3" length="839235" type="audio/mpeg" />
		</item>
		<item>
		<title>Jutze 52 #31 &#8211; Rainy Day</title>
		<link>http://www.jutze.com/?p=883</link>
		<comments>http://www.jutze.com/?p=883#comments</comments>
		<pubDate>Sun, 01 Aug 2010 15:57:36 +0000</pubDate>
		<dc:creator>Jutze</dc:creator>
				<category><![CDATA[Jutze 52]]></category>
		<category><![CDATA[endor]]></category>
		<category><![CDATA[pop]]></category>
		<category><![CDATA[rain]]></category>
		<category><![CDATA[solo song]]></category>
		<category><![CDATA[star wars]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.jutze.com/?p=883</guid>
		<description><![CDATA[This is the result of my overexposure to Star Wars. In a post-&#8221;Return of the Jedi&#8221; world I can imagine guided tourist tours over the Endor battlefield. Who needs Gettysburg when you can stroll through the ruins of the shield generator? Speeder bikes available for extra charge. Yet, given the vast green forests on Endor [...]]]></description>
			<content:encoded><![CDATA[<p>This is the result of my overexposure to Star Wars. In a post-&#8221;Return of the Jedi&#8221; world I can imagine guided tourist tours over the Endor battlefield. Who needs Gettysburg when you can stroll through the ruins of the shield generator? Speeder bikes available for extra charge. Yet, given the vast green forests on Endor it must be raining rather often.</p>
<p>The lyrical idea and the main melody lay around for a while until I figured I&#8217;d use my digicam to capture me recording the individual parts. I completed the lyrics in a hurry, scrapping my otherwise favourite line &#8220;Like a rainy day on Endor with no fur to keep you warm&#8221;. The audio tracks are actually those from the camera, so please excuse the crappy quality. You can see excerpts from all five tracks in <a title="Rainy Day over at YouTube" href="http://www.youtube.com/watch?v=VNV3bTdKSdk" target="_blank">the video</a>.</p>
<p><span id="oneBitInsert_1"><object id="oneBitInsert_1" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="11" height="11" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="oneBitInsert_1" /><param name="bgcolor" value="#1ea0ff" /><param name="flashvars" value="foreColor=#ffffff&amp;analytics=false&amp;filename=http://www.jutze.com/jutze-52-31-rainyday.mp3" /><param name="src" value="http://www.jutze.com/wp-content/plugins/1bit/1bit.swf" /><param name="quality" value="high" /><embed id="oneBitInsert_1" type="application/x-shockwave-flash" width="11" height="11" src="http://www.jutze.com/wp-content/plugins/1bit/1bit.swf" quality="high" flashvars="foreColor=#ffffff&amp;analytics=false&amp;filename=http://www.jutze.com/jutze-52-31-rainyday.mp3" bgcolor="#1ea0ff" name="oneBitInsert_1"></embed></object></span> <a title="Rainy Day (mp3, 0.8 MB)" href="http://www.jutze.com/jutze-52-31-rainyday.mp3">#31 Rainy Day</a></p>
<blockquote><p>Now I&#8217;ve finally reached my aim<br />
But it really ain&#8217;t the same<br />
Without you by my side<br />
<strong>Feels like a rainy day on Endor<br />
Feels like a rainy day on Endor</strong></p>
<p>I can&#8217;t enjoy my victory<br />
Because I was too blind to see<br />
Just what you meant to me<br />
<strong>Feels like a rainy day on Endor<br />
Feels like a rainy day on Endor</strong></p>
<p><em>(words and music by Johannes Schult)</em></p></blockquote>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/VNV3bTdKSdk&amp;hl=en_US&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/VNV3bTdKSdk&amp;hl=en_US&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jutze.com/?feed=rss2&amp;p=883</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.jutze.com/jutze-52-31-rainyday.mp3" length="835028" type="audio/mpeg" />
		</item>
		<item>
		<title>Soccer Girl</title>
		<link>http://www.jutze.com/?p=880</link>
		<comments>http://www.jutze.com/?p=880#comments</comments>
		<pubDate>Sun, 25 Jul 2010 22:23:27 +0000</pubDate>
		<dc:creator>Jutze</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[fries]]></category>
		<category><![CDATA[girl]]></category>
		<category><![CDATA[pop]]></category>
		<category><![CDATA[single]]></category>
		<category><![CDATA[soccer]]></category>
		<category><![CDATA[solo song]]></category>

		<guid isPermaLink="false">http://www.jutze.com/?p=880</guid>
		<description><![CDATA[This is my new single! It consists of two short songs. Check out jutze.bandcamp.com for further song details, full-length audio samples and various download options. NB: You can download the songs for free by entering zero Euros (0.00€) when naming your price.]]></description>
			<content:encoded><![CDATA[<p>This is my new single! It consists of two short songs. Check out <a title="Soccer Girl (Single) at jutze.bandcamp.com" href="http://jutze.bandcamp.com/album/soccer-girl-single">jutze.bandcamp.com</a> for further song details, full-length audio samples and various download options. NB: You can download the songs for free by entering zero Euros (0.00€) when naming your price.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="100" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="quality" value="high" /><param name="allowScriptAccess" value="never" /><param name="allowNetworking" value="always" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#FFFFFF" /><param name="src" value="http://bandcamp.com/EmbeddedPlayer.swf/album=582739698/size=venti/bgcol=FFFFFF/linkcol=4285BB/" /><embed type="application/x-shockwave-flash" width="400" height="100" src="http://bandcamp.com/EmbeddedPlayer.swf/album=582739698/size=venti/bgcol=FFFFFF/linkcol=4285BB/" bgcolor="#FFFFFF" wmode="transparent" allownetworking="always" allowscriptaccess="never" quality="high"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jutze.com/?feed=rss2&amp;p=880</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jutze 52 #30 &#8211; Der Speckgürtel von Paderborn</title>
		<link>http://www.jutze.com/?p=870</link>
		<comments>http://www.jutze.com/?p=870#comments</comments>
		<pubDate>Sun, 25 Jul 2010 08:43:25 +0000</pubDate>
		<dc:creator>Jutze</dc:creator>
				<category><![CDATA[Jutze 52]]></category>
		<category><![CDATA[German lyrics]]></category>
		<category><![CDATA[solo song]]></category>
		<category><![CDATA[strange]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[weird]]></category>

		<guid isPermaLink="false">http://www.jutze.com/?p=870</guid>
		<description><![CDATA[This song is rather weird. #30 Der Speckgürtel von Paderborn Ein schwarzer VW-Bus hielt vor meinem Haus Und eh ich mich versah, stiegen schwarze Leute aus Der erste Vermummte hatte ein Gewehr Er legte an und schoss und mein Körper wurde schwer Getroffen! Der zweite Vermummte griff nach meinem Bein Und zu zweit hievten sie [...]]]></description>
			<content:encoded><![CDATA[<p>This song is rather <a title="Video! Der Speckgürtel von Paderborn at YouTube" href="http://www.youtube.com/watch?v=Zkm6RycGWa0" target="_blank">weird</a>.</p>
<p><span id="oneBitInsert_1"><object id="oneBitInsert_1" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="11" height="11" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="oneBitInsert_1" /><param name="bgcolor" value="#1ea0ff" /><param name="flashvars" value="foreColor=#ffffff&amp;analytics=false&amp;filename=http://www.jutze.com/jutze-52-30-derspeckguertelvonpaderborn.mp3" /><param name="src" value="http://www.jutze.com/wp-content/plugins/1bit/1bit.swf" /><param name="quality" value="high" /><embed id="oneBitInsert_1" type="application/x-shockwave-flash" width="11" height="11" src="http://www.jutze.com/wp-content/plugins/1bit/1bit.swf" quality="high" flashvars="foreColor=#ffffff&amp;analytics=false&amp;filename=http://www.jutze.com/jutze-52-30-derspeckguertelvonpaderborn.mp3" bgcolor="#1ea0ff" name="oneBitInsert_1"></embed></object></span> <a title="Der Speckgürtel von Paderborn (mp3, 0.8 MB)" href="http://www.jutze.com/jutze-52-30-derspeckguertelvonpaderborn.mp3">#30 Der Speckgürtel von Paderborn</a></p>
<blockquote><p>Ein schwarzer VW-Bus hielt vor meinem Haus<br />
Und eh ich mich versah, stiegen schwarze Leute aus<br />
Der erste Vermummte hatte ein Gewehr<br />
Er legte an und schoss und mein Körper wurde schwer<br />
Getroffen!</p>
<p>Der zweite Vermummte griff nach meinem Bein<br />
Und zu zweit hievten sie mich dann in den Bus hinein<br />
Ich verlor das Bewusstsein wie in einem schlechten Traum<br />
Und ich wachte wieder auf in einem fensterlosen Raum<br />
Gefangen!</p>
<p>Dann kam ein Mann im weißen Kittel mit Blutflecken drauf<br />
Er zerrte mich nach nebenan; ich stolperte im Lauf<br />
Ich kann nur schwer beschreiben, was daraufhin geschah<br />
Man zwickte und massierte mich und spielte danach Skat</p>
<p>Man schnürte mich auf Rollschuh und man drehte mich im Kreis<br />
Man kniff mich in mein Ohrläppchen und fragte, wie ich heiß<br />
So ging das viele Stunden und ich war total verwirrt<br />
Ich konnte nicht entfliehen; ich war allein und sie zu viert<br />
Gefangen!</p>
<p>Ich kann mich nicht erinnern, doch plötzlich war es aus<br />
Und müde lag ich auf dem Rasen hier vor meinem Haus<br />
Ich zitterte und fror und meine Kehle brannte<br />
Und dann fiel mir wieder ein, wie der Ort sich nannte<br />
Speckgürtel von Paderborn!</p>
<p><em>(words and music by Johannes Schult)</em></p></blockquote>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/Zkm6RycGWa0&amp;hl=en_US&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/Zkm6RycGWa0&amp;hl=en_US&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jutze.com/?feed=rss2&amp;p=870</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.jutze.com/jutze-52-30-derspeckguertelvonpaderborn.mp3" length="840066" type="audio/mpeg" />
		</item>
		<item>
		<title>Jutze 52 #29 &#8211; Your Smile</title>
		<link>http://www.jutze.com/?p=864</link>
		<comments>http://www.jutze.com/?p=864#comments</comments>
		<pubDate>Sun, 18 Jul 2010 08:10:15 +0000</pubDate>
		<dc:creator>Jutze</dc:creator>
				<category><![CDATA[Jutze 52]]></category>
		<category><![CDATA[acoustic]]></category>
		<category><![CDATA[gloomy]]></category>
		<category><![CDATA[smile]]></category>
		<category><![CDATA[soft]]></category>
		<category><![CDATA[solo song]]></category>

		<guid isPermaLink="false">http://www.jutze.com/?p=864</guid>
		<description><![CDATA[This is the last song I recorded on my old computer. I wanted to approach the 52 seconds of music without a regular song structure in mind. I combined various parts and slowly the track grew into what you hear now. The lyrics had no meaning at first but after tweaking a few lines a [...]]]></description>
			<content:encoded><![CDATA[<p>This is the last song I recorded on my old computer. I wanted to approach the 52 seconds of music without a regular song structure in mind. I combined various parts and slowly the track grew into what you hear now. The lyrics had no meaning at first but after tweaking a few lines a vague situation came to life. I also recorded <a title="Your Smile over at YouTube" href="http://www.youtube.com/watch?v=rgDBHX2Djp0" target="_blank">a quick video of me playing the song</a>.</p>
<p><span id="oneBitInsert_1"><object id="oneBitInsert_1" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="11" height="11" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="oneBitInsert_1" /><param name="bgcolor" value="#1ea0ff" /><param name="flashvars" value="foreColor=#ffffff&amp;analytics=false&amp;filename=http://www.jutze.com/jutze-52-29-yoursmile.mp3" /><param name="src" value="http://www.jutze.com/wp-content/plugins/1bit/1bit.swf" /><param name="quality" value="high" /><embed id="oneBitInsert_1" type="application/x-shockwave-flash" width="11" height="11" src="http://www.jutze.com/wp-content/plugins/1bit/1bit.swf" quality="high" flashvars="foreColor=#ffffff&amp;analytics=false&amp;filename=http://www.jutze.com/jutze-52-29-yoursmile.mp3" bgcolor="#1ea0ff" name="oneBitInsert_1"></embed></object></span> <a title="Your Smile (mp3, 0.8 MB)" href="http://www.jutze.com/jutze-52-29-yoursmile.mp3">#29 Your Smile</a></p>
<blockquote><p>You said goodbye with a hint of regret in your smile<br />
And finally I see that I am free<br />
Because what you meant to me<br />
Won&#8217;t bother me no more<br />
It&#8217;s all I had in store<br />
And the times we spent<br />
Trying to meet ends meet<br />
It feels so obsolete<br />
And I bleed<br />
I wonder why I liked your smile<br />
Your smile<br />
Your smile</p>
<p><em>(words and music by Johannes Schult)</em></p></blockquote>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/rgDBHX2Djp0&amp;hl=en_US&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/rgDBHX2Djp0&amp;hl=en_US&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jutze.com/?feed=rss2&amp;p=864</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.jutze.com/jutze-52-29-yoursmile.mp3" length="839211" type="audio/mpeg" />
		</item>
	</channel>
</rss>
