<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description>
   
   
     join our mailing list
   * indicates required
   
   Email Address *
   
   
       
         
         
       
       
       
     Close
   
   
 
 
    try {
        var jqueryLoaded=jQuery;
        jqueryLoaded=true;
    } catch(err) {
        jqueryLoaded=false;
    }
   var fancyboxLoaded;
               //Check if a fancybox plugin is already loaded
               if($.fancybox){
        fancyboxLoaded=true;
               }
               else {
        fancyboxLoaded=false;
               }
               var head= document.getElementsByTagName('head')[0];
               var script= document.createElement('script');
    if (!jqueryLoaded) {
        script.type= 'text/javascript';
        script.src= 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js';
        head.appendChild(script);    
    }
    if (!fancyboxLoaded) {
      //Only load the CSS because the asynchronous JS might not load the script in time...
      //We'll load the script later with jQuery :)
      var fancystyle= document.createElement('link');
      fancystyle.setAttribute("rel", "stylesheet");
      fancystyle.setAttribute("type", "text/css");
      //TODO: Hey MC guys, you've gotta host this somewhere!
      fancystyle.setAttribute("href", "http://chimplr.heroku.com/js/fancybox/jquery.fancybox-1.3.4.css");
      head.appendChild(fancystyle);    
    }
 
 var fnames = new Array();var ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[2]='LNAME';ftypes[2]='text';var err_style = '';
 try{
     err_style = mc_custom_error_style;
 } catch(e){
     err_style = 'margin: 1em 0 0 0; padding: 1em 0.5em 0.5em 0.5em; background: FFEEEE none repeat scroll 0% 0%; font-weight: bold; float: left; z-index: 1; width: 80%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; color: FF0000;';
 }
 var head= document.getElementsByTagName('head')[0];
 var style= document.createElement('style');
 style.type= 'text/css';
 if (style.styleSheet) {
   style.styleSheet.cssText = '.mce_inline_error {' + err_style + '}';
 } else {
   style.appendChild(document.createTextNode('.mce_inline_error {' + err_style + '}'));
 }
 head.appendChild(style);
 $(document).ready( function($) {
    //Button below the Tumblr Controls
    //TODO: Hey MC guys, you've gotta host the image linked below somewhere!
     var newsletter_link = document.createElement('a');
     newsletter_link.setAttribute('href', '#mc_embed_signup');
     newsletter_link.setAttribute('id', 'mc-embedded-tumblr-signup');
     newsletter_link.setAttribute('style', 'border:none; position:absolute; top:26px;right:3px; z-index:9999;');
     var newsletter_image = document.createElement('img');
     newsletter_image.setAttribute('src', 'http://chimplr.heroku.com/images/newsletter.png');
     newsletter_image.setAttribute('style', 'border:none;');
     newsletter_link.appendChild(newsletter_image);
     //Append Link to body
     $('body:first').append(newsletter_link);
     var options = {
       errorClass: 'mce_inline_error',
       errorElement: 'div',
       onkeyup: function(){},
       onfocusout:function(){},
       onblur:function(){},
       invalidHandler: function(form, validator) {
         setTimeout("$.fancybox.resize();", 50);
       }
     };
   var mce_validator = $("#mc-embedded-subscribe-form").validate(options);
   options = { url: 'http://dwhates.us2.list-manage.com/subscribe/post-json?u=a79d4a595a37c32e5d7f0011b&amp;id=9c6ea17676&amp;c=?', type: 'GET', dataType: 'json', contentType: "application/json; charset=utf-8",
                 beforeSubmit: function(){
                     $('#mce_tmp_error_msg').remove();
                     $('.datefield','#mc_embed_signup').each(
                         function(){
                             var txt = 'filled';
                             var fields = new Array();
                             var i = 0;
                             $(':text', this).each(
                                 function(){
                                     fields[i] = this;
                                     i++;
                                 });
                             $(':hidden', this).each(
                                 function(){
                                   if ( fields[0].value=='MM' &amp;&amp; fields[1].value=='DD' &amp;&amp; fields[2].value=='YYYY' ){
                                     this.value = '';
                   } else if ( fields[0].value=='' &amp;&amp; fields[1].value=='' &amp;&amp; fields[2].value=='' ){
                                     this.value = '';
                   } else {
                                       this.value = fields[0].value+'/'+fields[1].value+'/'+fields[2].value;
                                   }
                                 });
                         });
                     return mce_validator.form();
                 }, 
                 success: mce_success_cb
             };
   $('#mc-embedded-subscribe-form').ajaxForm(options);
 });
 function mce_success_cb(resp){
     $('#mce-success-response').hide();
     $('#mce-error-response').hide();
     if (resp.result=="success"){
         $('#mce-'+resp.result+'-response').show();
         $('#mce-'+resp.result+'-response').html(resp.msg);
         $('#mc-embedded-subscribe-form').each(function(){
             this.reset();
             });
         $('#mc-embedded-subscribe').hide();
         $('.mc-field-group').hide();
         $('#mc-embedded-lightbox-close').show().focus();
     } else {
         var index = -1;
         var msg;
         try {
             var parts = resp.msg.split(' - ',2);
             if (parts[1]==undefined){
                 msg = resp.msg;
             } else {
                 i = parseInt(parts[0]);
                 if (i.toString() == parts[0]){
                     index = parts[0];
                     msg = parts[1];
                 } else {
                     index = -1;
                     msg = resp.msg;
                 }
             }
         } catch(e){
             index = -1;
             msg = resp.msg;
         }
         try{
             if (index== -1){
                 $('#mce-'+resp.result+'-response').show();
                 $('#mce-'+resp.result+'-response').html(msg);            
             } else {
                 err_id = 'mce_tmp_error_msg';
                 html = ' '+msg+'';
                 var input_id = '#mc_embed_signup';
                 var f = $(input_id);
                 if (ftypes[index]=='address'){
                     input_id = '#mce-'+fnames[index]+'-addr1';
                     f = $(input_id).parent().parent().get(0);
                 } else if (ftypes[index]=='date'){
                     input_id = '#mce-'+fnames[index]+'-month';
                     f = $(input_id).parent().parent().get(0);
                 } else {
                     input_id = '#mce-'+fnames[index];
                     f = $().parent(input_id).get(0);
                 }
                 if (f){
                     $(f).append(html);
                     $(input_id).focus();
                 } else {
                     $('#mce-'+resp.result+'-response').show();
                     $('#mce-'+resp.result+'-response').html(msg);
                 }
             }
         } catch(e){
             $('#mce-'+resp.result+'-response').show();
             $('#mce-'+resp.result+'-response').html(msg);
         }
     }
     $.fancybox.resize();
 }
 function initFancybox(){
   $("#mc-embedded-tumblr-signup").live('click', function(){
       $.fancybox({
         'autoDimensions'  : true,
         'width'           : 'auto',
         'height'          : 'auto',
         'href'            : $(this).attr('href'),
         'scrolling'       : 'no',
         'onComplete': function(){
         $('#mce-error-response').hide();
         $('div.mce_inline_error').hide();
         $('#mce-success-response').hide();
         $('#mce_tmp_error_msg').remove();
         $(':input','#mc-embedded-subscribe-form')
         .not(':button, :submit, :reset, :hidden')
         .val('')
         .removeAttr('checked')
         .removeAttr('selected');
         //focus first input field
         $("#mc-embedded-subscribe-form:not(.filter) :input:visible:enabled:first").focus();
         $('#mc-embedded-subscribe').show();
         $('.mc-field-group').show();
         $('#mc-embedded-lightbox-close').hide();
         }
       });
       return false;
   });
 }
 //Check wether Fancybox is loaded or not, and if not, load the sucker and initialize it
 if (!fancyboxLoaded){
   //TODO: Hey MC guys, you've gotta host this somewhere!
   $.getScript("http://chimplr.heroku.com/js/fancybox/jquery.fancybox-1.3.4.pack.js", function(){
       initFancybox();
   });
 }
 if (fancyboxLoaded) {
   initFancybox();
 }
 </description><title>Opalińska &amp; Whates</title><generator>Tumblr (3.0; @owduo)</generator><link>http://owduo.com/</link><item><title>We launched our new CD, Lumière, on Wednesday night with a...</title><description>&lt;img src="http://24.media.tumblr.com/tumblr_m1ckviHF2S1qlifxto1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;We launched our new CD, Lumière, on Wednesday night with a concert at the splendid chamber hall in Filharmonia Podkarpacka—an intimate 200-seater theatre-style venue with an exceptional acoustic. It was a real pleasure to perform there made even more so by the large, warm and welcoming audience.&lt;/p&gt;
&lt;p&gt;Thank-you once again to Ela Lewicka for compering the event and to the wonderful staff at the venue, particularly director Marta Wierzbieniec for inviting us to play.&lt;/p&gt;
&lt;p&gt;The audience were treated to post-concert ‘babeczki’ (little cupcakes) kindly supplied by our favourite café Niebieskie Migdały. It was with those tasty treats, alongside the obligatory autographing of CDs, that the evening came to a gastronomic and musically satisfying conclusion.&lt;/p&gt;
&lt;p&gt;For those who couldn’t make the concert, here’s the 15 minute edition, freshly uploaded to YouTube: &lt;a href="http://youtu.be/-EC_nuHjFEc" target="_blank"&gt;&lt;a href="http://youtu.be/-EC_nuHjFEc"&gt;http://youtu.be/-EC_nuHjFEc&lt;/a&gt;&lt;/a&gt;&lt;/p&gt;</description><link>http://owduo.com/post/19787057753</link><guid>http://owduo.com/post/19787057753</guid><pubDate>Fri, 23 Mar 2012 18:06:00 +0100</pubDate><category>cd launch</category><category>lumiere</category><category>duo</category><category>opalinska</category><category>whates</category><category>rzeszow</category><category>filharmonia</category><category>podkarpacka</category><category>niebieskie migdaly</category></item><item><title>Prep and promo is now in full swing for our CD launch concert...</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_m158zcHx9f1qlifxto1_500.jpg"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;img src="http://24.media.tumblr.com/tumblr_m158zcHx9f1qlifxto2_500.jpg"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;p&gt;Prep and promo is now in full swing for our CD launch concert this Wednesday 21st at Filharmonia Podkarpacka! with a few nice features in the press and radio already and a still more to come. Advanced copies of the CD has been very well received and we’re looking forward to hearing what other think. Talking of which…&lt;/p&gt;
&lt;p&gt;…we are happy to note that the pre-orders have now been dispatched and should be peeking through letter-boxes from New York to Tokyo any day now.&lt;/p&gt;
&lt;p&gt;Now all that remains is to play through the tunes and remind ourselves how they go…&lt;/p&gt;</description><link>http://owduo.com/post/19579397471</link><guid>http://owduo.com/post/19579397471</guid><pubDate>Mon, 19 Mar 2012 19:06:00 +0100</pubDate></item><item><title>Lumière / Opalińska &amp; Whates</title><description>&lt;p&gt;&lt;iframe frameborder="no" height="430" scrolling="no" src="http://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Fplaylists%2F1410356&amp;amp;auto_play=false&amp;amp;show_artwork=false&amp;amp;color=00b7ce" width="100%"&gt;&lt;/iframe&gt;&lt;/p&gt;
&lt;p&gt;Lumière—an engaging new album from &lt;a href="http://www.miraopalinska.com" title="Mira's website" target="_blank"&gt;Mira Opalińska&lt;/a&gt; and &lt;a href="http://www.douglaswhates.com" title="Douglas's Website." target="_blank"&gt;Douglas Whates&lt;/a&gt;. With a lightness of touch and a darkness of sound, the piano and bass duo improvise on their unique arrangements of works by classic film and world cinema composers.&lt;/p&gt;
&lt;p&gt;&lt;small&gt;&lt;img src="http://www.miraopalinska.com/img/lumiere_preview.jpg"/&gt;&lt;br/&gt;Lumière—recorded with a single stereo pair of microphones direct to 2‑track at Filharmonia Podkarpacka, Rzeszów, Poland on 29–30 October 2011. Front cover artwork by Jennifer Coates.&lt;/small&gt;&lt;/p&gt;
&lt;p&gt;Whether reinventing the familiar or unearthing unexpected gems, the duo explore these moving and expressive scores to create inspired, extraordinary music of brooding intensity.&lt;/p&gt;
&lt;p&gt;(p)2012 Natural Studio Records&lt;br/&gt;Release Date: 21 March 2012&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;amp;hosted_button_id=7RHQKDS4U28DC"&gt;&lt;img src="http://www.miraopalinska.com/img/shopping_cart.png"/&gt;&lt;/a&gt;&lt;br/&gt;&lt;a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;amp;hosted_button_id=7RHQKDS4U28DC"&gt;Click here&lt;/a&gt; to order the album for £12.50 &lt;small&gt;&lt;br/&gt;(inc. free world-wide shipping!)&lt;/small&gt;&lt;/p&gt;</description><link>http://owduo.com/post/16228683909</link><guid>http://owduo.com/post/16228683909</guid><pubDate>Sat, 21 Jan 2012 15:44:00 +0100</pubDate><category>audio</category></item><item><title>Czwartek Jazzowy
A really enjoyable night playing at Bohema on...</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_luwmu3Gdb61qlifxto1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;strong&gt;Czwartek Jazzowy&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A really enjoyable night playing at Bohema on the 17th and a first chance to perform our complete program of film music. Great audience and atmosphere. Thanks to Zygmunt and thanks to everyone who came along… looking forward to more Jazz Thursdays at Klub Bohema.&lt;/p&gt;</description><link>http://owduo.com/post/13007138850</link><guid>http://owduo.com/post/13007138850</guid><pubDate>Sat, 19 Nov 2011 12:06:00 +0100</pubDate><category>Bohema</category><category>Rzeszow</category><category>jazz thursday</category><category>jazz</category></item><item><title>A nice feature in Nowiny, 15th Nov 2011. Thanks Alina!</title><description>&lt;img src="http://24.media.tumblr.com/tumblr_lupvtunuPB1qlifxto1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;A nice feature in Nowiny, 15th Nov 2011. Thanks Alina!&lt;/p&gt;</description><link>http://owduo.com/post/12844593017</link><guid>http://owduo.com/post/12844593017</guid><pubDate>Tue, 15 Nov 2011 20:37:06 +0100</pubDate><category>interview</category><category>review</category><category>newspaper</category><category>nowiny</category></item><item><title>Soon we will present some film music at jazz place BOHEMA in...</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_lu8ssnwA8p1qlifxto1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Soon we will present some film music at jazz place BOHEMA in Rzeszów. Looking forward to seeing you there.&lt;/p&gt;</description><link>http://owduo.com/post/12417111020</link><guid>http://owduo.com/post/12417111020</guid><pubDate>Sun, 06 Nov 2011 15:12:00 +0100</pubDate></item><item><title>We’ve just recorded our album. Looking forward to...</title><description>&lt;img src="http://24.media.tumblr.com/tumblr_ltxm8dY4qZ1qlifxto1_500.jpg"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;img src="http://25.media.tumblr.com/tumblr_ltxm8dY4qZ1qlifxto2_500.jpg"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;img src="http://25.media.tumblr.com/tumblr_ltxm8dY4qZ1qlifxto3_500.jpg"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;p&gt;We’ve just recorded our album. Looking forward to listening back to all the takes…&lt;/p&gt;</description><link>http://owduo.com/post/12159121433</link><guid>http://owduo.com/post/12159121433</guid><pubDate>Mon, 31 Oct 2011 14:17:00 +0100</pubDate></item><item><title>Recording our CD!
Two days of recording booked for 29th &amp;...</title><description>&lt;img src="http://24.media.tumblr.com/tumblr_lrkvyi0dQH1qlifxto1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;strong&gt;Recording our CD!&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Two days of recording booked for 29th &amp; 30th October - Steinway D, great hall, what more could we ask for?&lt;/p&gt;</description><link>http://owduo.com/post/10246354635</link><guid>http://owduo.com/post/10246354635</guid><pubDate>Thu, 15 Sep 2011 21:11:00 +0200</pubDate></item><item><title>Ramshorn Theatre</title><description>&lt;p&gt;&lt;img align="left" src="http://media.tumblr.com/tumblr_lnd1riBTf01qk4w6q.jpg"/&gt;We recently did an enjoyable lunchtime concert in Glasgow at the Ramshorn Theatre. A really nice large and appreciative audience and another opportunity to perform our new programme. It’s a shame that the theatre has such an uncertain future; particularly as it’s one of very few venues in Glasgow of that size with a half-decent piano.&lt;/p&gt;
&lt;p&gt;Well, thanks to everyone who came along to the gig and hopefully see you all again in the not too distant future.&lt;/p&gt;</description><link>http://owduo.com/post/6803719567</link><guid>http://owduo.com/post/6803719567</guid><pubDate>Wed, 22 Jun 2011 23:57:00 +0200</pubDate><category>ramshorn</category><category>theatre</category><category>concert</category><category>jazz</category><category>piano</category><category>bass</category></item></channel></rss>

