<?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>A blog by Nick Jaworski about that place where music, education, technology, community, and the individual intersect.


	#mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; }
	/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
	   We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */


	Need help teaching a Music Appreciation course? Sign-up to be the first to hear about Nick’s new Music Appreciation book!
* indicates required

	Email Address  *

	

	First Name 
	

	Last Name 
	

    Out of curiosity, what is your preferred book form 
    Paperback
Kindle

	
		
		
		



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';fnames[3]='MMERGE3';ftypes[3]='radio';
try {
    var jqueryLoaded=jQuery;
    jqueryLoaded=true;
} catch(err) {
    var jqueryLoaded=false;
}
var head= document.getElementsByTagName('head')[0];
if (!jqueryLoaded) {
    var script = document.createElement('script');
    script.type = 'text/javascript';
    script.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js';
    head.appendChild(script);
    if (script.readyState &amp;&amp; script.onload!==null){
        script.onreadystatechange= function () {
              if (this.readyState == 'complete') mce_preload_check();
        }    
    }
}
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'http://downloads.mailchimp.com/js/jquery.form-n-validate.js';
head.appendChild(script);
var err_style = '';
try{
    err_style = mc_custom_error_style;
} catch(e){
    err_style = '#mc_embed_signup input.mce_inline_error{border-color:#6B0505;} #mc_embed_signup div.mce_inline_error{margin: 0 0 1em 0; padding: 5px 10px; background-color:#6B0505; font-weight: bold; z-index: 1; color:#fff;}';
}
var head= document.getElementsByTagName('head')[0];
var style= document.createElement('style');
style.type= 'text/css';
if (style.styleSheet) {
  style.styleSheet.cssText = err_style;
} else {
  style.appendChild(document.createTextNode(err_style));
}
head.appendChild(style);
setTimeout('mce_preload_check();', 250);

var mce_preload_checks = 0;
function mce_preload_check(){
    if (mce_preload_checks&gt;40) return;
    mce_preload_checks++;
    try {
        var jqueryLoaded=jQuery;
    } catch(err) {
        setTimeout('mce_preload_check();', 250);
        return;
    }
    try {
        var validatorLoaded=jQuery("#fake-form").validate({});
    } catch(err) {
        setTimeout('mce_preload_check();', 250);
        return;
    }
    mce_init_form();
}
function mce_init_form(){
    jQuery(document).ready( function($) {
      var options = { errorClass: 'mce_inline_error', errorElement: 'div', onkeyup: function(){}, onfocusout:function(){}, onblur:function(){}  };
      var mce_validator = $("#mc-embedded-subscribe-form").validate(options);
      $("#mc-embedded-subscribe-form").unbind('submit');//remove the validator so we can get into beforeSubmit on the ajaxform, which then calls the validator
      options = { url: 'http://nickjaworski.us5.list-manage.com/subscribe/post-json?u=6b1e210b5e6021e1d5af2244f&amp;id=46c3702c88&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(){
                                        var bday = false;
                                        if (fields.length == 2){
                                            bday = true;
                                            fields[2] = {'value':1970};//trick birthdays into having years
                                        }
                                    	if ( fields[0].value=='MM' &amp;&amp; fields[1].value=='DD' &amp;&amp; (fields[2].value=='YYYY' || (bday &amp;&amp; fields[2].value==1970) ) ){
                                    		this.value = '';
									    } else if ( fields[0].value=='' &amp;&amp; fields[1].value=='' &amp;&amp; (fields[2].value=='' || (bday &amp;&amp; fields[2].value==1970) ) ){
                                    		this.value = '';
									    } else {
									        if (/\[day\]/.test(fields[0].name)){
    	                                        this.value = fields[1].value+'/'+fields[0].value+'/'+fields[2].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();
    	});
    } 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);
        }
    }
}

</description><title>moving forward with music.</title><generator>Tumblr (3.0; @teachingmusic)</generator><link>http://teachingmusic.tumblr.com/</link><item><title>The Book is a Go! (Music Appreciation)</title><description>I just wanted to let my happy blog visitors to know that the book is a go! Between comments I...</description><link>http://teachingmusic.tumblr.com/post/31322875131</link><guid>http://teachingmusic.tumblr.com/post/31322875131</guid><pubDate>Tue, 11 Sep 2012 00:41:00 -0500</pubDate><category>book</category><category>music appreciation</category><category>shameless plugs</category><category>feature</category></item><item><title>New Article in General Music Today</title><description>New Article in General Music Today: 
Before I forget, my article titled, “Soundwalks,...</description><link>http://teachingmusic.tumblr.com/post/31015169317</link><guid>http://teachingmusic.tumblr.com/post/31015169317</guid><pubDate>Thu, 06 Sep 2012 16:46:44 -0500</pubDate><category>publications</category><category>soundwalks</category><category>shameless plugs</category></item><item><title>That moment when imperfection is perfect.</title><description>Unless you have been frozen in some sort of cryogenic chamber since July of 2010, you&amp;#8217;ve heard...</description><link>http://teachingmusic.tumblr.com/post/30740810971</link><guid>http://teachingmusic.tumblr.com/post/30740810971</guid><pubDate>Sun, 02 Sep 2012 13:49:00 -0500</pubDate><category>recording</category><category>nerdy</category><category>katy perry</category><category>listening</category><category>visualizations</category></item><item><title>Should I write a book on Music Appreciation? (Updated)</title><description>Update (9/11/12):
After receiving a lot of feedback from a variety of places, I have already started...</description><link>http://teachingmusic.tumblr.com/post/30353324461</link><guid>http://teachingmusic.tumblr.com/post/30353324461</guid><pubDate>Mon, 27 Aug 2012 19:54:00 -0500</pubDate><category>music appreciation</category><category>book</category></item><item><title>Remix &amp; Composition Contest Reminder! (Illinois Teachers)</title><description>As the school year is starting and teachers get their school calendars in order, I wanted to remind...</description><link>http://teachingmusic.tumblr.com/post/29925066910</link><guid>http://teachingmusic.tumblr.com/post/29925066910</guid><pubDate>Tue, 21 Aug 2012 17:52:00 -0500</pubDate><category>remix</category></item><item><title>This is not a test. (It's way more fun!)</title><description>
Imagine having some video games that allowed you to teach musical concepts to students on real...</description><link>http://teachingmusic.tumblr.com/post/25054127701</link><guid>http://teachingmusic.tumblr.com/post/25054127701</guid><pubDate>Wed, 13 Jun 2012 18:36:00 -0500</pubDate><category>Presentation</category><category>GLS</category><category>games</category></item><item><title>Illinois High School Students Can/Should Remix Moby!</title><description>
Hello!
Yes! I remembered I had a blog. (I didn&amp;#8217;t really forget.)
I will get to my stack of...</description><link>http://teachingmusic.tumblr.com/post/22152982444</link><guid>http://teachingmusic.tumblr.com/post/22152982444</guid><pubDate>Mon, 30 Apr 2012 18:20:00 -0500</pubDate><category>ILMEA</category><category>remix</category><category>moby</category><category>composition</category></item><item><title>Educating the New Musician (With bonus Soundwalk article!)</title><description>
I am VERY pleased to announce that the new issue of Leading Notes is out now! 
Seriously, the...</description><link>http://teachingmusic.tumblr.com/post/17178705715</link><guid>http://teachingmusic.tumblr.com/post/17178705715</guid><pubDate>Mon, 06 Feb 2012 17:58:00 -0600</pubDate><category>Leading Notes</category><category>Soundwalks</category></item><item><title>2012 TI:ME National Conference</title><description>If you saw my presentation at the 2012 TI:ME National Conference (&amp;#8220;A Classroom Without Walls:...</description><link>http://teachingmusic.tumblr.com/post/15347262779</link><guid>http://teachingmusic.tumblr.com/post/15347262779</guid><pubDate>Thu, 05 Jan 2012 09:38:06 -0600</pubDate></item><item><title>Roll Call: What secondary general courses do you teach?</title><description>
Dearest Music Teachers of the Interwebs,
I&amp;#8217;m giving a presentation at the end of January...</description><link>http://teachingmusic.tumblr.com/post/15190420856</link><guid>http://teachingmusic.tumblr.com/post/15190420856</guid><pubDate>Mon, 02 Jan 2012 12:00:06 -0600</pubDate><category>IMEA</category><category>Help</category><category>Presentation</category><category>secondary general music</category></item><item><title>Kids are Awesome.</title><description>Last weekend, I had the opportunity to work with high school students for the first time in over a...</description><link>http://teachingmusic.tumblr.com/post/11830398893</link><guid>http://teachingmusic.tumblr.com/post/11830398893</guid><pubDate>Sun, 23 Oct 2011 14:40:12 -0500</pubDate><category>link</category><category>kids are awesome</category><category>caitlin mcgovern</category></item><item><title>Dear People of Michigan</title><description>
I had the great fortune to spend three days up at Michigan State University attending a conference...</description><link>http://teachingmusic.tumblr.com/post/11259001952</link><guid>http://teachingmusic.tumblr.com/post/11259001952</guid><pubDate>Sun, 09 Oct 2011 22:10:00 -0500</pubDate><category>presentation</category></item><item><title>"Change is Bad." (Or, "Hey! I was quoted in USA Today!")</title><description>
During my first year of teaching, I found myself frustrated after a number of rehearsals with my...</description><link>http://teachingmusic.tumblr.com/post/10989188029</link><guid>http://teachingmusic.tumblr.com/post/10989188029</guid><pubDate>Mon, 03 Oct 2011 15:12:00 -0500</pubDate><category>Advocacy</category><category>USA Today</category><category>Stick figures</category><category>Change is bad</category></item><item><title>Snap! The NYT gets it right.</title><description>
Go read this article. Do it.
Literally, my first thought after reading it was, &amp;#8220;Well, looks...</description><link>http://teachingmusic.tumblr.com/post/10202768749</link><guid>http://teachingmusic.tumblr.com/post/10202768749</guid><pubDate>Wed, 14 Sep 2011 10:06:01 -0500</pubDate><category>link</category><category>New York Times</category><category>popular music</category><category>awesomeness</category></item><item><title>Celine &amp; Me: My 6:40 appeal to music educators</title><description>



The video above is footage from my July 22nd presentation at the seventh PeckaKucha evening in...</description><link>http://teachingmusic.tumblr.com/post/9982814954</link><guid>http://teachingmusic.tumblr.com/post/9982814954</guid><pubDate>Thu, 08 Sep 2011 21:53:00 -0500</pubDate><category>PeckaKucha</category><category>celine dion</category><category>presentation</category><category>taste</category><category>feature</category></item><item><title>Seeing is Hearing: Visualizations, Music Education, and You</title><description>
This is just a quick note to recommend that my fellow music teachers take 15 minutes and watch the...</description><link>http://teachingmusic.tumblr.com/post/9599676196</link><guid>http://teachingmusic.tumblr.com/post/9599676196</guid><pubDate>Tue, 30 Aug 2011 16:32:00 -0500</pubDate><category>Audacity</category><category>video</category><category>visualizations</category></item><item><title>A Friendly PSA Concerning Our Job Titles (or "It's called being a music teacher... not a director of music.")</title><description>
The following blog post is brought to you courtesy of Nick Jaworski, Director of Blogging...</description><link>http://teachingmusic.tumblr.com/post/9469491893</link><guid>http://teachingmusic.tumblr.com/post/9469491893</guid><pubDate>Sat, 27 Aug 2011 15:52:00 -0500</pubDate><category>PSA</category></item><item><title>Of podcasts and requests</title><description>
You can stream the podcast new Leading Notes podcast (where I interview James Jordan) directly from...</description><link>http://teachingmusic.tumblr.com/post/9131016374</link><guid>http://teachingmusic.tumblr.com/post/9131016374</guid><pubDate>Fri, 19 Aug 2011 13:59:56 -0500</pubDate><category>podcast</category><category>leading notes</category><category>james jordan</category></item><item><title>Sousa in 60 Seconds</title><description>



I made the above video for an undergraduate class taught by Matthew Thibeault a few years ago...</description><link>http://teachingmusic.tumblr.com/post/8693303442</link><guid>http://teachingmusic.tumblr.com/post/8693303442</guid><pubDate>Tue, 09 Aug 2011 11:44:00 -0500</pubDate><category>Sousa</category><category>Educational</category><category>Nerdy</category></item><item><title>Glee, Teaching Music Magazine, and Me (still a music teacher)</title><description>
Real quick!
The August 2011 issue of Teaching Music Magazine is out and I have a handful of quotes...</description><link>http://teachingmusic.tumblr.com/post/8483080239</link><guid>http://teachingmusic.tumblr.com/post/8483080239</guid><pubDate>Thu, 04 Aug 2011 15:31:00 -0500</pubDate><category>Glee</category><category>MENC</category><category>Teaching Music Magazine</category><category>shameless promotion</category></item></channel></rss>
