<?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>richardsweeney.com</title>
	<atom:link href="http://richardsweeney.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://richardsweeney.com</link>
	<description>Richard Sweeney</description>
	<lastBuildDate>Sat, 07 Jan 2012 15:50:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>JavaScript: how to select the first word(s) in a sentence</title>
		<link>http://richardsweeney.com/blog/javascript-how-to-select-the-first-words-in-a-sentence/</link>
		<comments>http://richardsweeney.com/blog/javascript-how-to-select-the-first-words-in-a-sentence/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 13:44:21 +0000</pubDate>
		<dc:creator>Richard Sweeney</dc:creator>
				<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://richardsweeney.com/?p=350</guid>
		<description><![CDATA[<p>Recently I had to figure out a way to select the first 2 words in a sentence using JavaScript. I wanted to wrap them in a class so that I could give them some additional CSS styling. I figured it&#8217;d be mad easy, but it took a little bit of head scratching until I figured out at least one way to do it.</p>
<p>I&#8217;ve got an HTML element with an ID of &#8216;niceText&#8217; that I&#8217;m looking to grab. I&#8217;ll save the ...]]></description>
			<content:encoded><![CDATA[<p>Recently I had to figure out a way to select the first 2 words in a sentence using JavaScript. I wanted to wrap them in a class so that I could give them some additional CSS styling. I figured it&#8217;d be mad easy, but it took a little bit of head scratching until I figured out at least one way to do it.</p>
<p>I&#8217;ve got an HTML element with an ID of &#8216;niceText&#8217; that I&#8217;m looking to grab. I&#8217;ll save the string as a variable called &#8216;niceText&#8217;.</p>
<pre>var niceText = $('#niceText').text();</pre>
<p>I&#8217;ll also save the opening and closing spans I&#8217;m going to wrap the text in as variables like so:</p>
<pre>var openSpan = '&lt;span class="grey"&gt;<span class="grey"><span class="grey">', closeSpan = '&lt;/span&gt;</span></span>';</pre>
<p>Next, we&#8217;ll use the native JavaScript <a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String/split">split method</a>. This makes an array out of a string &#8211; all you have to do is to specify the separator that&#8217;ll be used to divide the string. In this case the separator is a blank space, so we can write:</p>
<pre>niceText = niceText.split(' ');</pre>
<p>Our variable &#8216;niceText&#8217; is now an array of strings (go ahead and use your console to take a peek at what&#8217;s happened to our variable).</p>
<p>Next we&#8217;ll add the span to the start of the array using the <a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/unshift">unshift method</a>. It you&#8217;ve ever used the <a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/push">push method</a>, this is very similar except that it adds elements to the beginning of the array instead of to the end.</p>
<pre>niceText.unshift( openSpan );</pre>
<p>Fab. We now need to add the closing span to the array. We can do this with the <a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/splice">splice method</a>. If you&#8217;re not sure how this method works, do have a good read of the docs as it can come in super handy when performing array surgery!</p>
<p>As I want to wrap the first 2 words in my sentence, I&#8217;m going to add the closing span as the 4th item in the array. The first item is now my opening span, then comes the two opening words, then my closing span. The second value in splice indicates how many values, if any, to remove from the array. We&#8217;re not removing any, just adding, so this will be equal to 0.</p>
<pre>niceText.splice( 3, 0, closeSpan );</pre>
<p>Next I&#8217;ll turn the array back into a string using <a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/join">join</a>. Like split, join accepts a value for the separator, only this time, the separator is what will be printed between every array item. As this is just a sentence, we want to add a space between the words, so we can write:</p>
<pre>niceText = niceText.join(' ');</pre>
<p>Finally I&#8217;ll add the string to my HTML element like so:</p>
<pre>$('#niceText').html( niceText );</pre>
<p>That&#8217;s it! Here&#8217;s the whole function.</p>
<pre>jQuery( function($){

   /* Get the text of the element I'm after */
   var niceText = $('#niceText').text(),
      openSpan = '&lt;span class="grey"&gt;<span class="grey">', closeSpan = '&lt;/span&gt;</span>';

   /* Make the sentence into an array */
   niceText = niceText.split(' ');

   /* Add span to the beginning of the array */
   niceText.unshift( openSpan );

   /* Add  as the 4th value in the array */
   niceText.splice( 3, 0, closeSpan );					

   /* Turn it back into a string */
   niceText = niceText.join(' ');					

   /* Append the new HTML to the header */
   $('#niceText').html( niceText );

});</pre>
<p>If you&#8217;re not already using jQuery in your site, it might be a bit much to add it for just this tiny function! Rather, you can simply replace</p>
<pre>var niceText = $('#niceText').text();</pre>
<p>with</p>
<pre>var niceText = document.getElementById('niceText').textContent;</pre>
<p>and</p>
<pre>$('#niceText').html( niceText );</pre>
<p>with</p>
<pre>document.getElementById('niceText').innerHTML = niceText;</pre>
<p>Grand stuff. Hope it comes in useful!</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to split your WordPress posts into two columns</title>
		<link>http://richardsweeney.com/blog/how-to-split-your-wordpress-posts-into-two-columns/</link>
		<comments>http://richardsweeney.com/blog/how-to-split-your-wordpress-posts-into-two-columns/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 19:39:07 +0000</pubDate>
		<dc:creator>Richard Sweeney</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[custom post types]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://richardsweeney.com/?p=321</guid>
		<description><![CDATA[<p>The other day, whilst merrily making a website for an ensemble called Tesserae, I needed to figure out how to display my posts in 2 columns, side by side. In this case, the posts were a custom post type biographies that I used to display the various members biographies on the site.</p>
<p>It wasn&#8217;t hard to do, here&#8217;s the code I used to display half of the posts:</p>
<p>&#60;?php // Get the number of posts in the custom post type 'biographies'
$count = wp_count_posts( ...]]></description>
			<content:encoded><![CDATA[<p>The other day, whilst merrily making a website for an ensemble called <a href="http://tesserae-la.com/">Tesserae</a>, I needed to figure out how to display my posts in 2 columns, side by side. In this case, the posts were a custom post type <strong>biographies</strong> that I used to display the various members biographies on the site.</p>
<p>It wasn&#8217;t hard to do, here&#8217;s the code I used to display half of the posts:</p>
<p><code>&lt;?php // Get the number of posts in the custom post type 'biographies'<br />
$count = wp_count_posts( 'biographies' ); ?&gt;</code></p>
<p>Let&#8217;s say the total number of posts is 7.</p>
<p><code>&lt;?php // Divide the number of published posts by 2 and round up in case we get a fraction<br />
$num_biogs = ceil( $count-&gt;publish / 2 ); ?&gt;</code></p>
<p>This would give us 4. We must round up this number otherwise, we&#8217;d get 3.5 and that&#8217;s no good!</p>
<p><code>&lt;?php // Now use this number for the showposts parameter in our query<br />
$biogs = new WP_Query( 'post_type=biographies&amp;showposts=' . $num_biogs );<br />
while ( $biogs-&gt;have_posts() ) : $biogs-&gt;the_post();<br />
// the_title(); the_content(); etc<br />
endwhile; wp_reset_query(); ?&gt;<br />
</code></p>
<p>And the remaining posts:</p>
<p><code>&lt;?php // Now use the variable $num_biogs as the offset parameter in another query<br />
$biogs = new WP_Query( 'post_type=biographies&amp;showposts=-1&amp;offset=' . $num_biogs );<br />
while ( $biogs-&gt;have_posts() ) : $biogs-&gt;the_post();<br />
// the_title(); the_content(); etc<br />
endwhile; wp_reset_query(); ?&gt;</code></p>
<p>Obviously this is only the PHP, and you&#8217;re going to need some HTML there to actually use this! I just floated a couple of <strong>&lt;div&gt;</strong>s side by side, then popped the first block of code inside the left-hand <strong>&lt;div&gt;</strong> and the 2nd chunk in the 2nd <strong>&lt;div&gt;</strong>.</p>
<p>You can see the finished product at <a href="http://tesserae-la.com/who/">http://tesserae-la.com/who/</a></p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery mobile events firing multiple times and what to do about it</title>
		<link>http://richardsweeney.com/blog/jquery-mobile-events-firing-multiple-times-and-what-to-do-about-it/</link>
		<comments>http://richardsweeney.com/blog/jquery-mobile-events-firing-multiple-times-and-what-to-do-about-it/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 17:54:50 +0000</pubDate>
		<dc:creator>Richard Sweeney</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery mobile]]></category>
		<category><![CDATA[phonegap]]></category>

		<guid isPermaLink="false">http://richardsweeney.com/?p=304</guid>
		<description><![CDATA[<p>I&#8217;m currently working on my very first iPhone app. I decided I&#8217;d build it in HTML5, CSS3, JavaScript and wrap it up all cosy and warm with the amazing PhoneGap. I also decided early on to use jQuery mobile as my framework for the project, because I&#8217;m so familiar with jQuery itself. It&#8217;s been quite a ride so far and I&#8217;ve learnt a LOT!</p>
<p>I soon found out that dynamic content and jQuery mobile is not the easiest of pairings, but I ...]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m currently working on my very first iPhone app. I decided I&#8217;d build it in HTML5, CSS3, JavaScript and wrap it up all cosy and warm with the amazing <a href="http://phonegap.com">PhoneGap</a>. I also decided early on to use <a title="jQuery Mobile" href="http://jquerymobile.com">jQuery mobile</a> as my framework for the project, because I&#8217;m so familiar with jQuery itself. It&#8217;s been quite a ride so far and I&#8217;ve learnt a LOT!</p>
<p>I soon found out that dynamic content and jQuery mobile is not the easiest of pairings, but I think I&#8217;ve found a good solution to the most common problems I encountered and figured it&#8217;d be cool to share them with whomsoever might have a use for them.</p>
<p>One of the issues I found with my code early on was that on subsequent visits to a page, events would be fired an increasing number of times. What was happening was that I was binding events to the <strong>pagebeforeshow</strong> event &#8211; I though I had to this, because most of the content I was adding to the page was dynamic and would be updated on subsequent page visits. I did this:</p>
<p><code>$('#my-page').bind('pagebeforeshow', function(){<br />
&nbsp;&nbsp;// Add dynamic stuff to the page here, then...<br />
&nbsp;&nbsp;$('input').bind('change', function(){<br />
&nbsp;&nbsp;&nbsp;&nbsp;// Do something when this happens<br />
&nbsp;&nbsp;});<br />
});</code></p>
<p>This worked for the dynamic content, although I still had to remove my inserted content on <strong>pagehide</strong> as jQuery mobile saves the page in memory, which drove me to the brink of madness on more than one occasion, but hey. On <strong>change</strong>, the input event was duly triggered on my first visit to the page (and only once, as I expected), but on my second visit to the page, the event was triggered twice, then 3 times etc. Eek!</p>
<p>The solution was not difficult, it just took a while to figure out. I still added my dynamic stuff to the page using the <strong>pagebeforeshow</strong> event, but I just added the event listener for my <strong>input</strong> to <strong>pageinit</strong> instead. As most of the event listeners were bound to elements that were inserted dynamically, I had to use <strong>live</strong> instead of <strong>bind</strong>. In the end my code looks something like this:</p>
<p><code>$('#my-page').bind('pagebeforeshow', function(){<br />
&nbsp;&nbsp;// Add dynamic stuff to the page here<br />
}).bind('pageinit', function(){<br />
&nbsp;&nbsp;$('input').live('change', function(){<br />
&nbsp;&nbsp;&nbsp;&nbsp;// Do something when this happens<br />
&nbsp;&nbsp;});<br />
});</code></p>
<p>That solved it. I might detail how I add and remove dynamic content to the page using <strong>pagebeforeshow </strong>and<strong> pagehide</strong>. If it might be of use to anyone, do let me know if so!</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>A suggested fix for the dreaded FOUT</title>
		<link>http://richardsweeney.com/blog/a-suggested-fix-for-the-dreaded-fout/</link>
		<comments>http://richardsweeney.com/blog/a-suggested-fix-for-the-dreaded-fout/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 13:00:59 +0000</pubDate>
		<dc:creator>Richard Sweeney</dc:creator>
				<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://richardsweeney.com/?p=262</guid>
		<description><![CDATA[<p>As a keen typography fan I tend to rely heavily on the use of web fonts for my sites. I generally use Typekit to deliver my fonts, but it does tend to take a little while for the browser to download and display my beautiful fonts.</p>
<p>I noticed that if I simply place the typkit required script tags in the header of my site, it will block my site from loading until the font(s) have been downloaded, leaving visitors with a blank ...]]></description>
			<content:encoded><![CDATA[<p>As a keen typography fan I tend to rely heavily on the use of web fonts for my sites. I generally use <a href="http://www.typekit.com">Typekit</a> to deliver my fonts, but it does tend to take a little while for the browser to download and display my beautiful fonts.</p>
<p>I noticed that if I simply place the typkit required script tags in the header of my site, it will block my site from loading until the font(s) have been downloaded, leaving visitors with a blank screen for a second or so. With a fast connection it&#8217;s not the end of the world in my book, but recently I tried experimenting a little with how to minimize this inconvenience to the user.</p>
<p>First, I tried putting the typekit script tags in the footer of my document, instead of the header. This stopped the delay in the site from loading, but it also caused a &#8216;Flash of Un-styled Text&#8217; (or FOUT for short), where the fallback font(s) were shown as the web fonts were being downloaded. This can look really messy, especially if you&#8217;re using fonts for which there isn&#8217;t really any suitable fallback.</p>
<p>It&#8217;s a common problem and I&#8217;ve seen a couple of solutions offered, but I came up with what I think is quite an elegant solution.</p>
<p>Typekit fonts are delivered via JavaScript that provide event listeners that can tell you whether a font is active, is loading, is inactive or has been loaded. Typekit suggest a solution on their blog at <a href="http://blog.typekit.com/2010/10/29/font-events-controlling-the-fout/">http://blog.typekit.com/2010/10/29/font-events-controlling-the-fout/</a>, but the loading of your site can still be delayed as you wait for the fonts to download and if you put the script tags in your footer, you can still suffer the FOUT. Blurgh.</p>
<p>My solution is to (and bear with me here before you scream &#8216;but what if JavaScript is disabled!&#8217;) hide all the text elements in my CSS by setting their opacity to 0, so as to completely avoid any FOUT. I do this like so:</p>
<p><code>h1, h2, h3, h4, h5, h6, p, ul, ol, dl, span, a {<br />
opacity: 0;<br />
-webkit-transition: opacity 0.4s ease-in;<br />
-moz-transition: opacity 0.4s ease-in;<br />
-o-transition: opacity 0.4s ease-in;<br />
transition: opacity 0.4s ease-in;<br />
}</code></p>
<p>Obviously you may well have more elements of text that should be hidden, such as blockquotes, cites etc. I&#8217;ve also added some CSS3 transitions, so that when the web fonts have finished loading they&#8217;ll fade in smoothly (this in itself is really quite a nice effect) rather than just being spat out! I then added the following to my CSS:</p>
<p><code>.wf-active h1, .wf-active h2, .wf-active h3, .wf-active h4, .wf-active h5, .wf-active h6, .wf-active p, .wf-active ul, .wf-active ol, .wf-active dl, .wf-active span, .wf-active a {<br />
opacity: 1;<br />
}</code></p>
<p>The .wf-active class is added to the &lt;html&gt; tag of my document via JavaScript when the font has finished loading. If we set the opacity here to 1 then our web fonts will be displayed and not our fallback fonts.</p>
<p>The problem with this method is obviously that it relies on JavaScript. If users view the site with JavaScript disabled, the wf-active class <em>won&#8217;t</em> be added to the &lt;html&gt; tag and the fonts will remain invisible. My solutions is to add the following to my document head <em>after</em> our other CSS files have been included.</p>
<p><code>&lt;noscript&gt;&lt;style&gt;h1, h2, h3, h4, h5, h6, p, ul, ol, dl, span, a {<br />
opacity: 1;<br />
} &lt;/style&gt;&lt;/noscript&gt;</code></p>
<p>This will overwrite our previous declaration where we set the opacity to 0 and therefore make our fallback fonts visible to the user without JavaScript.</p>
<p>The other problem with this method if the Typekit fonts are not available, or if the browser does not support web fonts. In this case, you could also use the .wf-inactive class which Typekit adds to the &lt;html&gt; tag in either of these cases and set the opacity to 1 like so:</p>
<p><code>.wf-inactive h1, .wf-inactive h2, .wf-inactive h3, .wf-inactive h4, .wf-inactive h5, .wf-inactive h6, .wf-inactive p, .wf-inactive ul, .wf-inactive ol, .wf-inactive dl, .wf-inactive span, .wf-inactive a {<br />
opacity: 1;<br />
}</code></p>
<p>As far as I can see this pretty much covers all bases, but I may well have missed something here and am very happy to have this pointed out to me!</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy PayPal Custom Fields Plugin</title>
		<link>http://richardsweeney.com/blog/easy-paypal-custom-fields-plugin/</link>
		<comments>http://richardsweeney.com/blog/easy-paypal-custom-fields-plugin/#comments</comments>
		<pubDate>Fri, 06 May 2011 12:41:50 +0000</pubDate>
		<dc:creator>Richard Sweeney</dc:creator>
				<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://richardsweeney.com/?p=214</guid>
		<description><![CDATA[<p>I&#8217;ve just my first WordPress plugin that uses custom fields to make creating a PayPal button super-easy.</p>
<p>I wanted to learn more about PHP and the inner workings of WordPress and I also needed a solution for my clients to add PayPal functionality to their sites without having to remember complicated shortcode syntax. Whilst shortcodes in WP are a fantastic feature and are easy to implement for the developer, I find they can often confuse my clients who often can&#8217;t even ...]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just my first WordPress plugin that uses custom fields to make creating a PayPal button super-easy.</p>
<p>I wanted to learn more about PHP and the inner workings of WordPress and I also needed a solution for my clients to add PayPal functionality to their sites without having to remember complicated shortcode syntax. Whilst shortcodes in WP are a fantastic feature and are easy to implement for the developer, I find they can often confuse my clients who often can&#8217;t even find square brackets on their keyboards!</p>
<p>Having said that: In order to have full flexibility on the placement of this mystical button, you can select to insert it at the top or bottom of a post or &#8211; via a shortcode &#8211; anywhere you like in the post.</p>
<p>On the settings screen, the user can select on which type of post (including custom post types) the plugin should be displayed. It&#8217;s also possible to enter default settings which can subsequently be changed for individual posts where necessary &#8211; this might come in for sites with multiple users.</p>
<p>The button is also customizable with 2 themes to choose between (dark and light) with custom text for the button, or it&#8217;s possible to simply display a regular large or small PayPal button (either &#8216;Buy Now&#8217; or &#8216;Donate&#8217;).</p>
<p>The plugin will encrypt your PayPal username so that it can&#8217;t be harvested for spam by the evil spam robots of Mordor.</p>
<p>This plugin is created for WordPress 3.x and currently only supports &#8216;Buy Now&#8217; and &#8216;Dontate&#8217; functionality. Download it via the <a href="http://wordpress.org/extend/plugins/easy-paypal-custom-fields/">WordPress plugin repository</a>.</p>
<p>Please don&#8217;t forget to rate the plugin if you like it and if you feel generous enough to lend a few shillings towards further development I would be most grateful.</p>
<div class="paypal-form">
			<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><input type="hidden" name="cmd" value="_donations">
			<input type="hidden" name="bn" value="PP-DonationsBF:btn_donateCC_LG.gif:NonHostedGuest"><input type="submit" id="eppcf-button" class="rps-custom-theme-button rps-paypal-button-blue" value="Make a donation"><input type="hidden" name="business" value="&#116;h&#101;&#111;rb&#111;m&#97;&#110;&#64;gma&#105;l&#46;&#99;o&#109;" />
			<input type="hidden" name="amount" value="" />
			<input type="hidden" name="currency_code" value="SEK" /><input type="hidden" name="no_shipping" value="1">
			<input type="hidden" name="rm" value="2" /></form>
		</div>
<p><strong>Update: </strong>I&#8217;ve managed to fix an issue where WordPress would suddenly remove the PayPal info attached to the post and the button would disappear. I&#8217;ve updated the repository with the fixed version &#8211; if you&#8217;re using an older version I strongly recommend that you update as soon as possible!</p>
<h3>Screenshots:</h3>
<p><strong>The Options Page</strong></p>
<p><strong><img class="alignnone size-medium wp-image-228" title="screenshot-1-1" src="http://richardsweeney.com/wp-content/uploads/screenshot-1-1-445x400.jpg" alt="" width="445" height="400" /><br />
</strong></p>
<p><strong><span>Adding the button to a new post:</span></strong></p>
<p><strong><span><img class="alignnone size-medium wp-image-223" title="screenshot-2" src="http://richardsweeney.com/wp-content/uploads/screenshot-2-500x333.jpg" alt="" width="500" height="333" /><br />
</span></strong></p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>Obbligato bass instruments in 17th century Italian instrumental chamber music</title>
		<link>http://richardsweeney.com/blog/obbligato-bass-instruments-in-17th-century-italian-instrumental-chamber-music/</link>
		<comments>http://richardsweeney.com/blog/obbligato-bass-instruments-in-17th-century-italian-instrumental-chamber-music/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 13:07:45 +0000</pubDate>
		<dc:creator>Richard Sweeney</dc:creator>
				<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://richardsweeney.com/?p=202</guid>
		<description><![CDATA[<p>Today, it&#8217;s practically a given that the continuo part in 17th century Italian instrumental chamber music will be doubled by a bowed bass (or other bass) instrument. Is there any evidence to support this practise?</p>
<p>In 17th century Italian music, the continuo instrument is often unspecified, but where it is specified (for example in the books of Castello) it is the organ, and where another instrument is suggested it is the harpsichord, or spinetta.</p>
<p>Whilst I don&#8217;t think it sounds bad to have ...]]></description>
			<content:encoded><![CDATA[<p>Today, it&#8217;s practically a given that the continuo part in 17th century Italian instrumental chamber music will be doubled by a bowed bass (or other bass) instrument. Is there any evidence to support this practise?</p>
<p>In 17th century Italian music, the continuo instrument is often unspecified, but where it is specified (for example in the books of Castello) it is the organ, and where another instrument is suggested it is the harpsichord, or spinetta.</p>
<p>Whilst I don&#8217;t think it sounds <em>bad</em> to have multiple continuo instruments accompanying a sonata, I have never found any evidence to support this approach. It&#8217;s clear from surviving music that the most common continuo instrument for 17th century Italian chamber music was the organ. There is no evidence to suggest that the continuo (keyboard) part was doubled by <em>any </em>other instrument &#8211; this includes the theorbo!</p>
<h5>Evidence!</h5>
<p>I think it&#8217;s fundamentally wrong to, lacking any evidence, simply <em>assume</em> that the continuo part was doubled by any other instrument. Nonetheless, this has become an accepted part of modern practice. And it pisses me off. We shouldn&#8217;t just accept earlier assumptions about historical performance and that what we hear on recordings to be historically correct!</p>
<p>I feel that doubling the continuo part gives it undue importance for this repertoire. The continuo parts rarely if ever contain thematic material, rather serve to support the solo parts. As a continuo player myself, I know this is no &#8216;minor&#8217; role, but nor should it have too much attention drawn to itself.</p>
<p>Ok, enough already. If it is the case that the continuo part was not doubled, when <em>is</em> it appropriate to use a bowed bass instrument? The answer I believe is simply: <strong>When there is an obbligato bass part.</strong></p>
<h5>Obbligato Bass Parts</h5>
<p>There are TONS of sonatas with obbligato bass parts from the 17th century. Frescobaldi (amongst others) even writes sonatas with more than one obbligato bass part. Fontana is good example &#8211; he lists the cornetto and violin as possible soprano instruments and the bassoon, theorbo and &#8216;violino&#8217; as potential bass instruments for his sonatas. These bass instruments should only play when there exists a part for them, they are not mentioned or intended to be &#8216;continuo&#8217; instruments. In fact, no mention of any continuo instrument is made, and we can assume this to be the organ, or harpsichord.</p>
<h5>The Role of the Theorbo</h5>
<p>This is another article in itself, but I&#8217;d like to mention here that the theorbo isn&#8217;t suggested as a continuo instrument for instrumental music in Italy <em>at all</em> in the first half of the 17th century. (There are 2 exceptions, which in fact aren&#8217;t really exceptions&#8230; Rossi and Marini, where the theorbo is listed as the only bass instrument [ie. without organ]. Here however the theorbo part is both a continuo and obbligato part, equal to the other solo parts). However, the theorbo is mentioned as an obbligato bass instrument by many composers of the period including Frescobali, Uccellini, Marini, Turini, Corelli, Sanmartini, Pittoni, Cazatti, Cavalli, Guierierro etc. etc. It seems clear to me that the theorbo, whilst an unlikely continuo instrument for this repertoire, was frequently employed as an obbligato bass instrument.</p>
<h5>For what it&#8217;s worth</h5>
<p>My advice: Don&#8217;t use a bowed bass (or any other bass instrument, including the theorbo) unless there is an obbligato bass part. If you have a group with theorbo, organ and violone, find a sonata with 2 obbligato bass parts, or take it in turns to play sonatas with obbligato bass parts.</p>
<p>I must stress that my ramblings refer only to 17th century Italian instrumental chamber music. We shouldn&#8217;t apply the same rules to secular vocal music for instance, where the theorbo was a hugely popular continuo instrument and the organ was seldom used.</p>
<h5>Violone: 8 foot or 16 foot?</h5>
<p>Finally &#8211; &#8216;violone&#8217; is a really confusing term that meant different things at different times in different places. However, we can be pretty darn sure that for 17th century chamber music &#8211; including and especially for music by Biber and Schmeltzer &#8211; that &#8216;violine&#8217; implies a bass instrument that plays at 8 foot pitch. Bibers&#8217; <em>battallia</em> for instance has 2 &#8216;violine&#8217; parts, each clearly intended for an instrument that plays at 8 foot pitch. I have no doubt that 16 foot instruments existed at this time, but their role in chamber music is doubtful at best.</p>
<p>In short, if historical accuracy is your bag, I recommend not doubling the keyboard part, if not &#8211; happy doubling!</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Open historical music blog</title>
		<link>http://richardsweeney.com/blog/open-historical-music-blog/</link>
		<comments>http://richardsweeney.com/blog/open-historical-music-blog/#comments</comments>
		<pubDate>Tue, 15 Feb 2011 19:57:19 +0000</pubDate>
		<dc:creator>Richard Sweeney</dc:creator>
				<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://richardsweeney.com/?p=198</guid>
		<description><![CDATA[<p></p>
<p>I&#8217;m in the process of planning a website where people can freely share knowledge and musings on all aspects of historical performance. All would be welcome to contribute and all articles free to access for all.</p>
<p>Articles don&#8217;t have to be as strictly written as for say a masters, PHD etc and &#8216;musings&#8217; or thoughts on whatever floats your boat &#8211; as long as it relates to historical performance &#8211; would be welcome. Articles would also be freely commented upon by ...]]></description>
			<content:encoded><![CDATA[<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Lucida Sans'} p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Lucida Sans'; min-height: 15.0px} --></p>
<p>I&#8217;m in the process of planning a website where people can freely share knowledge and musings on all aspects of historical performance. All would be welcome to contribute and all articles free to access for all.</p>
<p>Articles don&#8217;t have to be as strictly written as for say a masters, PHD etc and &#8216;musings&#8217; or thoughts on whatever floats your boat &#8211; as long as it relates to historical performance &#8211; would be welcome. Articles would also be freely commented upon by all and sundry, so as to encourage healthy debate. All in all, much like my own blogging on issues relating to music.</p>
<p>Research has for too long been a closed community with limited access to information. The Internet can help to promote a more open approach, to make information freely available to everyone (which is where it belongs).</p>
<p>If you might be interested in contributing to this idea, go ahead and get in touch. I&#8217;m still in planning stage at the moment, but ideas are most welcome!</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>An 18th century theorbo</title>
		<link>http://richardsweeney.com/blog/an-18th-century-theorbo/</link>
		<comments>http://richardsweeney.com/blog/an-18th-century-theorbo/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 18:53:19 +0000</pubDate>
		<dc:creator>Richard Sweeney</dc:creator>
				<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://richardsweeney.com/?p=163</guid>
		<description><![CDATA[<p>Choosing the right continuo instrument for the job is something that I have spent a large amount of time thinking about and a revelation about a (relatively) new theorbo has prompted me to write down some of my thoughts and observations about this very subject.</p>
<p>The first lute I owned was a 13 course &#8216;baroque&#8217; lute in d minor tuning. As it was the only instrument I had in the beginning, I learnt to play both solo repertoire and continuo on ...]]></description>
			<content:encoded><![CDATA[<p>Choosing the right continuo instrument for the job is something that I have spent a large amount of time thinking about and a revelation about a (relatively) new theorbo has prompted me to write down some of my thoughts and observations about this very subject.</p>
<p>The first lute I owned was a 13 course &#8216;baroque&#8217; lute in d minor tuning. As it was the only instrument I had in the beginning, I learnt to play both solo repertoire and continuo on this lute. After a few years, I bought a small English theorbo (a meagre 78cm) that I used in Italian tuning (that is to say in A with the top 2 courses at the lower octave). A few years later I upgraded to a more realistic (or historical, depending on your degree of fanaticism) Italianate theorbo with a string length of 88cm. That was better, but on occasions, if found this instrument couldn&#8217;t really make the kind of sound I wanted, especially for 18th century repertoire.</p>
<p>I wanted something with a brighter tone, something with more <em>bite</em> than the standard theorbo. I decided what I needed was an archlute. I got one, great. Problem solved..?</p>
<h5>Old habits</h5>
<p>When I studied in London, I often read that the archlute gradually replaced the theorbo in the 18th century as the tessitura of the bass lines went progressively higher. It&#8217;s a nice idea, but it&#8217;s not exactly <em>true</em>&#8230;</p>
<p>If we look historically at where and when the archlute was really popular, we must look to Rome. In Rome we have tons of mentions of the archlute (as well as loads of obbligato parts &#8211; <em>way </em>more than we find elsewhere) in the 2nd half of the 17th and the first half 18th century, give or take a few decades. Corelli, Stradella, Colista, Lonati and many more all wrote obbligato parts for the archlute, as did Händel whilst in Rome. So why was the archlute so darn popular in just Rome of all places?!</p>
<p>It seems as though pitch is the answer. We know now that the &#8216;standard&#8217; pitch in Rome at this period was low &#8211; really low. Somewhere between A = 360 and A=392.</p>
<p>Most of the surviving Roman archlutes have really big bodies and long string lengths (somewhere between 72 &#8211; 77cm). The vast majority of the instruments people play on today have much shorter string-lengths and smaller body sizes &#8211; with good reason: with a top string (especially in gut), there is a physical limit to how the top string on a lute can be tuned before it breaks.</p>
<p>At this relatively low pitch, in order to produce any kind of decent sound on the theorbo, you need a pretty massive instrument (sure enough some of the largest surviving theorbos are indeed from Rome). Where the theorbo has many disadvantages at this lower pitch, (very long string lengths, a less bright tone, etc) the archlute on the other hand gains hugely by having a longer string length and a larger body that still remains relatively easy to play.</p>
<p>The result will be a really big lute with a big sound and plenty of bite &#8211; especially if you play with nails, which seems to have been the norm in Italy at this time (<a href="http://richardsweeney.com/blog/the-best-way-of-play/">see my earlier post about this</a>). The problem is that an archlute at this pitch is pretty useless nowadays, with our modern pitch standard of A = 415. Unless you want an archlute in F .Try playing a Händel opera on that, go on I dare you&#8230;!</p>
<h5>Tecchler</h5>
<p>The archlute I commissioned (from the very gifted Ivo Magherini) was a copy of a big Roman instrument made by D. Tecchler in 1725. Ivo and I talked a lot about trying to retain the original body size, but then, like the majority of modern copies of archlutes, we decided that it would be better to scale the whole thing down a bit. We ended up with a stopped-string length of 68cm (that worked just about ok at A = 415) and a body around the size of a French small theorbo in D. It was a great lute and certainly packed a punch.</p>
<p>Although the copy was a great one, I think that with scaling down both the body size and string length, we lost just a bit too much oomph. In fact, being perfectly honest, although the brightness of a good archlute is almost always a very pleasing sound, I&#8217;ve never really heard or played one that had enough depth or quantity of sound to compete with a theorbo.</p>
<h5>The &#8216;d minor theorbo&#8217;</h5>
<p>It was around this time that I started considering a theorbo in d minor tuning. I spoke with Ivo about potential models and we decided to take it to the max and make a copy of the beautiful and rather massive 18th century theorbo by Schelle, currently hidden away from mortals in the basement of the museum in Nüremberg.</p>
<p>The d minor theorbo is an instrument described by both Baron and Weiss. According to Weiss, this type of theorbo was identical to the Italian theorbo, with the only difference being the tuning. The tuning is identical to that of the &#8216;baroque&#8217; lute, minus the top string. The top string (d) is a single course, with unison double courses for the 2nd, 3rd &amp; 4th courses and octave courses for the 5th, 6th &amp; 7th courses (as on a &#8216;baroque&#8217; lute).</p>
<p>Then, we&#8217;re on to the big guns: the diapasons. Courses 8 &#8211; 13 (or 14) are single diapasons tuned to either GG or  even FF. My copy of the Schelle has string-lengths of 85 / 170cm, with 13 courses, but space for a 14th. 85cm is pretty much the max string-length for a top string of D at A=415.</p>
<p>The point I&#8217;m trying to make here is that I think that this is the ultimate continuo lute for 18th century music (and late 17th too!). I think it&#8217;s an excellent alternative to the archlute and an instrument that I would really encourage players to try (then you can make your own minds up!). The sound is really big, bold and bright. It really carries in ensemble, primarily thanks to the rather massive body and the bass is <em>awesome</em>, but the sound still retains the character of a lute.</p>
<p>A d minor theorbo is really just a massive lute, which is really what I reckon a big archlute should sound like. The problem if we scale them down too much, they just end up sounding like small lutes.</p>
<h5>Weiss</h5>
<p>In a letter Weiss&#8217; wrote to Mathesson regarding the lute as a continuo instrument, he remarks that the lute is well suited to accompanying solo cantatas as well as trios and quartets. He&#8217;s talking about chamber music. Weiss goes on to say that the theorbo is much better suited to playing with large ensembles as the lute can easily be overpowered. If one plays on small archlutes in larger ensembles, we won&#8217;t stand to produce much more sound that a decent &#8216;baroque&#8217; lute, which according to Weiss, just doesn&#8217;t cut the mustard. No sir.</p>
<h5>An idea for a modern, historical archlute</h5>
<p>There is one further alternative worth mentioning here, but this one is a little difficult to justify historically&#8230; What about a proper, full-sized archlute tuned as a &#8216;baroque&#8217; lute, that is to say in d minor? It&#8217;s unlikely that Roman archlutes were ever tuned in this way, but it would enable us today to play on a really big instrument and thus enjoy all the benefits!</p>
<p>Finally, if you&#8217;ve never played continuo in d minor, then you&#8217;re really missing out! It&#8217;s a fantastic, versatile tuning that may admittedly take a little getting used to, but once you&#8217;ve got your head around it, you&#8217;ll find it can cope with almost any key you can throw at it (within reason of course!).</p>
<p>Here&#8217;s a few pictures of this handsome beast!</p>
<p><img class="alignnone size-medium wp-image-172" title="Norbert 1" src="http://richardsweeney.com/wp-content/uploads/IMG_0428-298x400.jpg" alt="" width="298" height="400" /></p>
<p><img class="alignnone size-medium wp-image-175" title="Norbert 4" src="http://richardsweeney.com/wp-content/uploads/IMG_0431-298x400.jpg" alt="" width="298" height="400" /></p>
<p><img class="alignnone size-medium wp-image-173" title="Norbert 2" src="http://richardsweeney.com/wp-content/uploads/IMG_0429-298x400.jpg" alt="" width="298" height="400" /></p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>&#8216;The best way of play&#8217;</title>
		<link>http://richardsweeney.com/blog/the-best-way-of-play/</link>
		<comments>http://richardsweeney.com/blog/the-best-way-of-play/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 18:50:15 +0000</pubDate>
		<dc:creator>Richard Sweeney</dc:creator>
				<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://richardsweeney.com/?p=128</guid>
		<description><![CDATA[<p>Around 13 years ago after my end-of-year recital as a student studying classical guitar in Dublin I ceremoniously cut off the fingernails on my right hand. I had decided to become a lutenist! I preferred the music, there was more of it and the possibility of far more social music making made my choice an easy one.</p>
<p>Approximately 5 years ago, I decided let the nails on my right hand grow. Was I intending to take up the guitar once more ...]]></description>
			<content:encoded><![CDATA[<p>Around 13 years ago after my end-of-year recital as a student studying classical guitar in Dublin I ceremoniously cut off the fingernails on my right hand. I had decided to become a lutenist! I preferred the music, there was more of it and the possibility of far more social music making made my choice an easy one.</p>
<p>Approximately 5 years ago, I decided let the nails on my right hand grow. Was I intending to take up the guitar once more and shun the lute?! The answer is no &#8211; I had decided to play the lute with nails.</p>
<p>At the time I didn&#8217;t consider the controversy I would cause by this decision and even today I find there is often confusion regarding the authenticity of this approach. Like most people, I hate to be judged at all, but as someone for whom historical accuracy has always been of the utmost importance to, I didn&#8217;t want to be accused of historical heresy!</p>
<p>So, what&#8217;s the deal? Modern guitarists play with nails, lutenists don&#8217;t (or at least shouldn&#8217;t) &#8211; right?! Let&#8217;s think about that assumption for a minute: When the 20th century lute revival began, lutes were often lightly constructed and strung with very low tension strings. A modern school of lute playing evolved, where lutenists tended to play with a technique radically different to that of the modern classical guitar. Many of the pioneers of lute playing utilized a historical technique detailed in several 16th and early 17th century sources, where the thumb of the right hand is placed inside the hand (not stretched outside the fingers, like modern guitar and harp technique). The string is then plucked using the flesh of the finger only.</p>
<p><img title="lute" src="http://richardsweeney.com/wp-content/uploads/lute-344x400.jpg" alt="" width="344" height="400" /></p>
<p>In the early days of the revival, this was really what differentiated guitarists from lutenists. A generation or two later and we&#8217;re in a position to re-think the assumption that there is only one appropriate historical performance technique for the lute. Whilst the technique described above is indeed a historical technique, it is in fact only suitable for the music of the 16th and early 17th centuries and it is only one of several different historical approaches. As the lute acquired more and more strings, this technique was gradually and universally dropped in favour of the technique of playing with the right hand thumb outside of the hand which facilitated in reaching the additional bass courses &#8211; Dowland himself changed his technique to the more modern &#8216;thumb out&#8217; mid-career.</p>
<p><img class="alignnone size-medium wp-image-132" title="Rubens lute" src="http://richardsweeney.com/wp-content/uploads/Rubens-Peter-Paul-1577-1640-Man-With-Lute-ca-1610-Musee-des-Beaux-Arts-Troyes-403x400.jpg" alt="" width="403" height="400" /></p>
<p>That&#8217;s all well and good, but the question remains: Can playing the lute with nails be considered a valid historical performance technique for historical plucked string instruments?</p>
<p>In his <em>Intavolatura di Liuto e di Chitarrone</em> (1632) Alessandro Piccinini advocates the use of fingernails on the right hand. In fact, some of the advanced performance techniques he describes in his book I don&#8217;t think are really possible without fingernails. One such technique is where the nail of the index finger plucks the string back and forth alternating with the front and the back of the nail in rapid succession.</p>
<p>Francesco Corbetta, the Italian guitar teacher to the King Louis 14th of France played with fingernails. As recorded by Adam Ebert in his <em>Mémoires</em> of 1723 <em>&#8216;having had the bad fortune of breaking a nail, [Corbetta] was unable to play at the Festival with his consort&#8217;</em>. In Gaspar Sanz&#8217;s <em>Introducción de Musica sobre la guitarra</em> (1674), the licenciado S. Alfonso writes <em>&#8216;There are some who play with the nails, who ravish the senses, and others who grate the nerves&#8217;</em>. The following picture shows that yet another guitarist, Domenico Pellegrini also played with nails.</p>
<p><img class="alignnone size-full wp-image-133" title="Pellegrini" src="http://richardsweeney.com/wp-content/uploads/Pellegrini.jpeg" alt="" width="295" height="397" /></p>
<p>Thomas Mace in his Musicke&#8217;s Monument of 1676 writes <em>&#8216;…take notice, that you Strike not your Strings with your Nails, as some do, who maintain it the Best way of Play, but I do not, and for this reason ; because the Nail cannot draw so sweet a sound from a Lute, as the nibble end of the Flesh can do&#8217;</em>. Mace obviously had a preference for playing without nails, but it&#8217;s also clear that it was not uncommon to play with nails.</p>
<p>Silvius Leopold Weiss, probably the most famous lutenist of his generation, travelled to Italy in the 18th century where he both saw and undoubtably played with many Italian lutenists. In a letter to Matheson regarding the lute and theorbo Weiss writes that the archlute and theorbo in Italy are ordinarily played with nails. Weiss &#8211; like Mace &#8211; expresses a preference for playing without fingernails, adding that that when heard at close range, the archlute and theorbo played with nails can sound harsh. Regardless, the fact remains that Weiss&#8217; writings imply that it was in fact the exception and not the rule to play the theorbo and the archlute without nails in Italy in the 18th century.</p>
<p><img class="alignnone size-full wp-image-134" title="lute-nails" src="http://richardsweeney.com/wp-content/uploads/lute-nails.jpg" alt="" width="300" height="398" /></p>
<p>I want to stress a couple of things at this point. Firstly and most importantly I&#8217;m not saying that it&#8217;s more correct to use this technique that any other historically justifiable performance technique &#8211; a point already indirectly made by both Weiss and Mace! My only goal is to demonstrate that playing with nails is a valid technique for historical plucked instruments. Secondly, I think it&#8217;s worth pointing out that this playing style is very different to modern guitar technique! I was a classical guitarist for several years before I played the lute and I played with nails. I also played the lute for many years without nails, so I figure I&#8217;m qualified to compare the styles!</p>
<p>If you&#8217;d like to hear what it sounds like when I play the theorbo with nails you can have a listen to the audio samples at <a href="http://richardsweeney.com/lute/">http://richardsweeney.com/lute/</a></p>
<h4>The pros and cons.</h4>
<p>Over the past several years of playing with nails I&#8217;ve made some interesting observations. I&#8217;m not trying to persuade anyone to change their technique and I&#8217;m certainly not saying that it&#8217;s better to play with nails that without. I&#8217;m also sure that the results of changing techniques will vary for person to person, but for those of you that are interested, here are some of my experiences since I started playing with nails.</p>
<h5>The pros.</h5>
<p>1. I can play faster. The &#8216;thumb-out&#8217; technique has a reputation of being a little slower that &#8216;thumb-in&#8217;, but I can play much faster than I could before by using less of the flesh of my finger in the stroke and more of the nail in faster passages. If I employ Piccinini&#8217;s trick (actually it&#8217;s not just Piccinini&#8217;s trick really, the same technique is described in several 16th century Spanish vihuela sources too) of using the same finger to play fast passages, I can play really fast. It is however a bit difficult to control this and string crossings I find almost impossible!</p>
<p>2. I can play (a bit) louder. Using fingernails also makes the sound I produce brighter which tends to carry better in ensemble (this is all debatable I know &#8211; please remember this are just my own experiences!). Personally I find the theorbo benefits greatly from a brighter sound, but a lightly constructed lute played with nails can sound a little harsh if one is not careful. Most of my instruments are built by Ivo Magherini who doesn&#8217;t shy away from using a decent amount of wood and I think these instruments tend to sound great with nails.</p>
<p>3. I don&#8217;t get calluses on my fingers anymore! When I want to give a bit more, I can use a bit more nail and a bit less flesh thus saving my poor fingers.</p>
<p>4. Another interesting side-effect of playing with nails is that I find historical arpeggiation on the theorbo &#8211; as dictated in the theorbo books of Alessandro Piccinini and Girolamo Kapsberger &#8211; much easier to pull off with nails, in fact I would almost go so far as to say that they only really work <em>with</em> nails. This is all subjective though and may well be as a result of that nobody really takes historical arpeggiation on the theorbo seriously. Now <strong>that&#8217;s </strong>a post in waiting right there! Where I often struggled in the past to play Kaspberger&#8217;s prescribed right hand fingerings I find that they are greatly facilitated with nails. Kapsberger makes no mention of nails or lack thereof.</p>
<p>5. I find the strumming patterns of the baroque guitar to be considerably easier with nails and I also much prefer the sound now! This is all down to personal taste of course!</p>
<h5>The cons.</h5>
<p>I look ridiculous! I&#8217;m constantly ridiculed by my long-suffering 12 year old daughter Miah for polishing my nails in public (sorry Miah &#8211; such embarrassing parents..). Nails can be a pain to maintain and they can break. Once, whilst browsing through music for sale at the lute society stall at the early music exhibition in Greenwich in London I was asked if I was a curious guitarist…</p>
<p>As with every assumption regarding modern-day ideas of historical techniques, let&#8217;s not rest on the laurels of the pioneers! As historical performers it is our responsibility to question everything we hear, see or do. Let&#8217;s encourage people to find their own way and let&#8217;s learn to love and embrace the limitations of historical performance!</p>
<h4>Update:</h4>
<p>Thanks to Diego Cantalupi - <a href="http://www.diegocantalupi.it/">http://www.diegocantalupi.it/</a> &#8211; for sending me the following images of Filippo Della Casa (1737–1810).</p>
<p><img class="alignnone size-medium wp-image-155" title="dallacasa01j" src="http://richardsweeney.com/wp-content/uploads/dallacasa01j-305x400.jpg" alt="Della Casa" width="305" height="400" /> <img class="alignnone size-medium wp-image-157" title="dallacasa02" src="http://richardsweeney.com/wp-content/uploads/dallacasa02-463x400.jpg" alt="" width="370" height="320" /></p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Non-interpretation of baroque music</title>
		<link>http://richardsweeney.com/blog/non-interpretation-of-baroque-music/</link>
		<comments>http://richardsweeney.com/blog/non-interpretation-of-baroque-music/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 10:44:01 +0000</pubDate>
		<dc:creator>Richard Sweeney</dc:creator>
				<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://richardsweeney.com/?p=121</guid>
		<description><![CDATA[<p>Something I&#8217;ve been thinking about for some time is the aspect of interpretation in baroque music. Todays big stars are conductors, directors, singers and musicians &#8211; all interpreters of baroque music. But how different this is to the 18th century! There were singers and musicians who were stars of course, but the famous directors of the 18th century also wrote and performed their own music. They didn&#8217;t have to &#8216;interpret&#8217; it, they just played it!</p>
<p>With today&#8217;s famous directors and conductors ...]]></description>
			<content:encoded><![CDATA[<p>Something I&#8217;ve been thinking about for some time is the aspect of interpretation in baroque music. Todays big stars are conductors, directors, singers and musicians &#8211; all interpreters of baroque music. But how different this is to the 18th century! There were singers and musicians who were stars of course, but the famous directors of the 18th century also wrote and performed their own music. They didn&#8217;t have to &#8216;interpret&#8217; it, they just played it!</p>
<p>With today&#8217;s famous directors and conductors we hear countless different interpretations (what&#8217;s more we have recordings of these interpretations) of the same repertoire. 17th century opera in particular is, in my opinion, a real victim here to the pursuit of interpretation, where it&#8217;s almost taken for granted that directors will add extra instrumental ritornelli etc. to the existing music. In my experience Cavalli tends to suffer more than others &#8211; people particularly like to add instrumental parts to sections of recitative (one particular Belgian gentleman with a penchant for the recorder comes to mind).</p>
<p>By adding ritornelli and composing extra instrumental parts as well as by devising ever increasingly elaborate continuo scorings there seems to be a desire to create the ultimate &#8216;interpretation&#8217; of a piece of music. I even played a Händel opera once where the director had even written extra viola parts for some of the arias!</p>
<p>I think this approach is out of place in any genuine pursuit of historical performance.</p>
<p>Let&#8217;s imagine a performance of a Cavalli opera in 17th century Venice. A small wooden theatre with several singers and a band composed of 2 violins and a bass violin, 2 theorboes and 2 harpsichords (we know from records that Cavalli used on many occasions a band just like this). The violins played the ritornelli. The theorboes and harpsichords accompanied the singers who just sang the music and doubtlessly added some (bad-ass) ornamentation.</p>
<p>In other words, they just played &#8211; and sang &#8211; the music.</p>
<p>Surely the ultimate goal of the historical performer is to try to recreate the music as it was heard in its original context?! If that&#8217;s the case then why do we so rarely hear Cavalli played with appropriate instrumentation in all it&#8217;s glorious unadulterated form?</p>
<p>I guess I&#8217;m talking about a kind of interperative-minimalism here. Get the right kit, get the right technique, play the music and see what happens! Take a step back and enjoy the music for what it is. Let Cavalli speak as vividly to us today as he did in the 17th century. Let&#8217;s forget big egos and new recordings of Händel&#8217;s Messiah. Hey, let&#8217;s even forget our preconceived ideas about what the music &#8216;should&#8217; sound like!</p>
<p>Baroque music just needs good musicians to come alive &#8211; interpretation as in the 17th and 18th centuries could be added in the form of ornamentation, let&#8217;s not re-write the music to suit our ideals.</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.586 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-10 22:31:45 -->

