<?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>How To Promote Music</title>
	<atom:link href="http://www.howtopromotemusic.org/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.howtopromotemusic.org</link>
	<description>How To Promote Music</description>
	<lastBuildDate>Fri, 18 May 2012 06:00:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
	

    <DIV ID="slideupfx"><div id="slideup"  style="overflow:visible; width:100%; height:50px;" class="" style="background-color:transparent">
       <p><a href="http://www.TubeToolbox.com/Upgrade.aspx?Secure=A0433"><img src="http://www.sincell.com/assets/images/affiliates/tubetoolbox_banner_468x60.gif" border="0" alt="" /></a></p>       <input type="image" src="wp-content/plugins/candybar/images/closebutton.png" name="cbos_CloseIcon" id="cbos_CloseIcon" onMouseOver="cbos.onHover()" onMouseOut="cbos.onHoverOut()" onclick="cbos.onClose()" width=32 height=32 style="opacity: 0">
  
        <p id="cbos_buttons">
    
    	      		<button onclick="cbos.onNoThanks()" id="buttonNoThanks">
        	No thanks.      		</button>
      	      	    </p>
         </div></div>



<script type="text/javascript">

var closeButton = '<p><button onclick="cbos.onClose()">close</button></p>';

jQuery.fn.slideup = function(options) {
	this.settings = {
		closeLink: 'none',
		animation: 'slide',
		height: '50' ,
        delay: 400
	}

	if(options)
		jQuery.extend(this.settings, options);

	//alert('height: ' + this.settings.height);
	//alert('delay: ' + this.settings.delay);
	if ( this.settings.animation != 'slide' && this.settings.animation != 'none' && this.settings.animation != 'fade' ) {
		alert('animation can only be set to \'slide\', \'none\' or \'fade\'');
	}
	
	var id = this.attr('id');
	settings = this.settings;

	jQuery(this).css('padding', '0').css('height', this.settings.height + 'px').css('margin', '0').css('width', '100%');
	jQuery('html').css('padding', '0 0 ' + ( this.settings.height * 1 + 50 ) + 'px 0');
	if ( typeof document.body.style.maxHeight != "undefined" ) {
		jQuery(this).css('position', 'fixed').css('bottom', '0').css('left', '0').css('z-index','99999');
	}

	//set position of close button
	jQuery("#cbos_CloseIcon").css('position', 'fixed').css('bottom', this.settings.height + 'px').css('right','0').css('height','32').css('width','32').css('z-index','999999');
			jQuery("#buttonNoThanks").css('position', 'fixed').css('bottom', (this.settings.height - (this.settings.height/3)) + 'px').css('right','0').css('z-index','999999');
			
	if ( this.settings.animation == 'slide' ) {
		//alert("sliding");
		jQuery(this).slideDown(this.settings.delay);
	}
	else if ( this.settings.animation == 'fade' ) {
		jQuery(this).fadeIn(this.settings.delay);
	}
	else {
		jQuery(this).show();
	}
	if ( this.settings.closeLink != 'none' ) {
		jQuery(this.settings.closeLink).click(function(){
			jQuery.closeslideup(id);
			return false;
		});
	}
	
	// Return jQuery to complete the chain
	return this;
};

jQuery.closeslideup = function(id) {
	this.slideup = jQuery('#' + id);
	jQuery(this.slideup).hide();
	jQuery('html').css('padding', '0');
	jQuery('body').css('overflow', 'visible'); // Change IE6 hack back
};// Open Slide Up

var cbos = 
{
  show: function() 
  {
     // only show if the cookie is NOT present
     if (! this.suppressed())
     {
		//jQuery("#cbos").slideUp('slow');
    	this.settings= {closeLink: 'none',animation: 'slide',height: 60,delay: 750  };
 	    jQuery('#slideup').slideup(this.settings);

 	    this.onHoverOut();
     }
  },

  onNoThanks: function()
  {
     // suppress for 10 years
     this.suppress(365 * 24 * 10, 'h');
     jQuery.closeslideup("slideup");
  },
  
  onAskMeLater: function()
  {
     
	this.suppress(1, 
		      's');

	jQuery("#slideup").closeslideup("slideup");
  },



  onClose: function()
  {
	  jQuery.closeslideup("slideup");
  },

  onHover: function()
  {
	  jQuery("#cbos_CloseIcon").css("opacity", 1);
  },

  onHoverOut: function()
  {
	  jQuery("#cbos_CloseIcon").css("opacity", .2);
  },


  suppress: function(delay, unit)
  {
     // now set cookie:

     var h = (unit == 'h') ? delay : 0;
     var m = (unit == 'm') ? delay : 0;
     var s = (unit == 's') ? delay : 0;
     var now = new Date().getTime();

     var date1 = new Date(now + (h*60*60*1000) + (m*60*1000) + (s*1000));
     var newCookie = "cbos_suppress=true; expires=" + date1.toGMTString() + "; path=/";
     document.cookie = newCookie;

     // second cookie (10 years)
     // because the initial and subsequent delays may be different
     var date2 = new Date(now + (10*365*24*60*60*1000));
     var newCookie2 = "cbos_seen=true; expires=" + date2.toGMTString() + "; path=/";
     document.cookie = newCookie2;
  },

  suppressed: function()
  {
     return document.cookie.indexOf("cbos_suppress=true") > -1;
  },

  // debug function:
  eraseCookie: function()
  {
     this.suppress(-1,0); // expire 1 day ago
     alert("cookie expired. hit refresh");
  }
};

setTimeout('cbos.show()', 750 );
</script>
	<item>
		<title>Bros: Nine Out of Ten Doctors Agree, and the Tenth Doctor Is the Pope</title>
		<link>http://www.howtopromotemusic.org/?p=2779</link>
		<comments>http://www.howtopromotemusic.org/?p=2779#comments</comments>
		<pubDate>Fri, 18 May 2012 06:00:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[You Fail Moments]]></category>

		<guid isPermaLink="false">http://www.howtopromotemusic.org/?p=2779</guid>
		<description><![CDATA[May is National Masturbation Month! How are YOU celebrating?]]></description>
			<content:encoded><![CDATA[</p>
<p>    <img class="event-item-lol-image" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/8f4c9_guidos-bros-douchebags-fratboys-bros-nine-out-of-ten-doctors-agree-and-the-tenth-doctor-is-the-pope.jpg" alt="guidos bros douchebags fratboys - Bros: Nine Out of Ten Doctors Agree, and the Tenth Doctor Is the Pope" height="512px" width="384px" /></p>
</p>
<p>
        <br />May is National Masturbation Month! How are YOU celebrating?</p>
<p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/failblog.wordpress.com/160694/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/8f4c9_160694" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/failblog.wordpress.com/160694/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/3d7e4_160694" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/failblog.wordpress.com/160694/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/3d7e4_160694" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/failblog.wordpress.com/160694/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/3d7e4_160694" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/failblog.wordpress.com/160694/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/3d7e4_160694" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/failblog.wordpress.com/160694/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/3d7e4_160694" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/failblog.wordpress.com/160694/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/eb136_160694" /></a> <img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/eb136_b.gif?host=failblog.org&amp;blog=2441444&amp;post=160694&amp;subd=failblog&amp;ref=&amp;feed=1" width="1" height="1" />
<div>
<a href="http://feeds.feedburner.com/~ff/failblog?a=NwnLgW7OgQw:ufSzfpKhxxg:qj6IDK7rITs"><img src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/eb136_failblog?d=qj6IDK7rITs" border="0"></img></a>
</div>
<p><img src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/eb136_NwnLgW7OgQw" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.howtopromotemusic.org/?feed=rss2&#038;p=2779</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>School of Fail: Ellen Degeneres Would Be Proud</title>
		<link>http://www.howtopromotemusic.org/?p=2778</link>
		<comments>http://www.howtopromotemusic.org/?p=2778#comments</comments>
		<pubDate>Fri, 18 May 2012 06:00:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[You Fail Moments]]></category>

		<guid isPermaLink="false">http://www.howtopromotemusic.org/?p=2778</guid>
		<description><![CDATA[Because dance-bombing your students is pretty much the coolest thing ever.]]></description>
			<content:encoded><![CDATA[</p>
<p><span></span>
</p>
<p>
        <br />Because dance-bombing your students is pretty much the coolest thing ever. </p>
<p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/failblog.wordpress.com/160690/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/04a7f_160690" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/failblog.wordpress.com/160690/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/04a7f_160690" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/failblog.wordpress.com/160690/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/04a7f_160690" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/failblog.wordpress.com/160690/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/88827_160690" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/failblog.wordpress.com/160690/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/88827_160690" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/failblog.wordpress.com/160690/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/88827_160690" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/failblog.wordpress.com/160690/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/88827_160690" /></a> <img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/88827_b.gif?host=failblog.org&amp;blog=2441444&amp;post=160690&amp;subd=failblog&amp;ref=&amp;feed=1" width="1" height="1" />
<div>
<a href="http://feeds.feedburner.com/~ff/failblog?a=bLM5MO-WvBU:ulkd2RjeYac:qj6IDK7rITs"><img src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/8f4c9_failblog?d=qj6IDK7rITs" border="0"></img></a>
</div>
<p><img src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/8f4c9_bLM5MO-WvBU" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.howtopromotemusic.org/?feed=rss2&#038;p=2778</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Autocowrecks: OK Who Gave Hulk the iPhone?</title>
		<link>http://www.howtopromotemusic.org/?p=2777</link>
		<comments>http://www.howtopromotemusic.org/?p=2777#comments</comments>
		<pubDate>Fri, 18 May 2012 06:00:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[You Fail Moments]]></category>

		<guid isPermaLink="false">http://www.howtopromotemusic.org/?p=2777</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[</p>
<p>    <img class="event-item-lol-image" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/da34d_mobile-phone-texting-autocorrect-autocowrecks-ok-who-gave-hulk-the-iphone.jpg" alt="mobile phone texting autocorrect - Autocowrecks: OK Who Gave Hulk the iPhone?" height="3200px" width="337px" /></p>
</p>
<p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/failblog.wordpress.com/160686/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/da34d_160686" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/failblog.wordpress.com/160686/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/da34d_160686" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/failblog.wordpress.com/160686/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/da34d_160686" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/failblog.wordpress.com/160686/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/7da81_160686" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/failblog.wordpress.com/160686/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/7da81_160686" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/failblog.wordpress.com/160686/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/7da81_160686" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/failblog.wordpress.com/160686/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/7da81_160686" /></a> <img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/7da81_b.gif?host=failblog.org&amp;blog=2441444&amp;post=160686&amp;subd=failblog&amp;ref=&amp;feed=1" width="1" height="1" />
<div>
<a href="http://feeds.feedburner.com/~ff/failblog?a=C91HUovv-pg:XHXsvgmTYSE:qj6IDK7rITs"><img src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/04a7f_failblog?d=qj6IDK7rITs" border="0"></img></a>
</div>
<p><img src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/04a7f_C91HUovv-pg" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.howtopromotemusic.org/?feed=rss2&#038;p=2777</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ugliest Tattoos: Warp Rarefaction</title>
		<link>http://www.howtopromotemusic.org/?p=2776</link>
		<comments>http://www.howtopromotemusic.org/?p=2776#comments</comments>
		<pubDate>Fri, 18 May 2012 06:00:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[You Fail Moments]]></category>

		<guid isPermaLink="false">http://www.howtopromotemusic.org/?p=2776</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[</p>
<p>    <img class="event-item-lol-image" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/8ec8d_funny-tattoos-ugliest-tattoos-warp-rarefaction.jpg" alt="funny tattoos - Ugliest Tattoos: Warp Rarefaction" height="604px" width="453px" /></p>
</p>
<p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/failblog.wordpress.com/160681/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/49f40_160681" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/failblog.wordpress.com/160681/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/49f40_160681" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/failblog.wordpress.com/160681/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/49f40_160681" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/failblog.wordpress.com/160681/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/49f40_160681" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/failblog.wordpress.com/160681/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/49f40_160681" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/failblog.wordpress.com/160681/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/d01ae_160681" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/failblog.wordpress.com/160681/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/d01ae_160681" /></a> <img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/d01ae_b.gif?host=failblog.org&amp;blog=2441444&amp;post=160681&amp;subd=failblog&amp;ref=&amp;feed=1" width="1" height="1" />
<div>
<a href="http://feeds.feedburner.com/~ff/failblog?a=z_xNa6ghLQ0:b2M0HhTZoQk:qj6IDK7rITs"><img src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/d01ae_failblog?d=qj6IDK7rITs" border="0"></img></a>
</div>
<p><img src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/d01ae_z_xNa6ghLQ0" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.howtopromotemusic.org/?feed=rss2&#038;p=2776</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clock Fail</title>
		<link>http://www.howtopromotemusic.org/?p=2775</link>
		<comments>http://www.howtopromotemusic.org/?p=2775#comments</comments>
		<pubDate>Fri, 18 May 2012 06:00:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[You Fail Moments]]></category>

		<guid isPermaLink="false">http://www.howtopromotemusic.org/?p=2775</guid>
		<description><![CDATA[Submitted by Casey B.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/8ec8d_clock-fail-backwards.jpg"><img class="alignnone size-full wp-image-22606" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/8ec8d_clock-fail-backwards.jpg" alt="" width="533" height="405" /></a></p>
<p>Submitted by Casey B.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.howtopromotemusic.org/?feed=rss2&#038;p=2775</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Epic Tattoo Fail</title>
		<link>http://www.howtopromotemusic.org/?p=2774</link>
		<comments>http://www.howtopromotemusic.org/?p=2774#comments</comments>
		<pubDate>Fri, 18 May 2012 06:00:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[You Fail Moments]]></category>

		<guid isPermaLink="false">http://www.howtopromotemusic.org/?p=2774</guid>
		<description><![CDATA[Submitted by Anon]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/7a815_epic-tattoo-fail-fail-heart.jpg"><img class="alignnone size-full wp-image-22598" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/7a815_epic-tattoo-fail-fail-heart.jpg" alt="" width="533" height="716" /></a></p>
<p>Submitted by Anon</p>
]]></content:encoded>
			<wfw:commentRss>http://www.howtopromotemusic.org/?feed=rss2&#038;p=2774</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Epic Sexy Fail</title>
		<link>http://www.howtopromotemusic.org/?p=2773</link>
		<comments>http://www.howtopromotemusic.org/?p=2773#comments</comments>
		<pubDate>Fri, 18 May 2012 06:00:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[You Fail Moments]]></category>

		<guid isPermaLink="false">http://www.howtopromotemusic.org/?p=2773</guid>
		<description><![CDATA[Submitted by T.T.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/69cc3_epic-sexy-fail-wtf.jpg"><img class="alignnone size-full wp-image-22594" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/69cc3_epic-sexy-fail-wtf.jpg" alt="" width="533" height="622" /></a></p>
<p>Submitted by T.T.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.howtopromotemusic.org/?feed=rss2&#038;p=2773</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sign Fail</title>
		<link>http://www.howtopromotemusic.org/?p=2772</link>
		<comments>http://www.howtopromotemusic.org/?p=2772#comments</comments>
		<pubDate>Fri, 18 May 2012 06:00:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[You Fail Moments]]></category>

		<guid isPermaLink="false">http://www.howtopromotemusic.org/?p=2772</guid>
		<description><![CDATA[Submitted by Mike P.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/fbe6e_sign-fail-nut-dip.jpg"><img class="alignnone size-full wp-image-22586" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/fbe6e_sign-fail-nut-dip.jpg" alt="" width="533" height="299" /></a></p>
<p>Submitted by Mike P.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.howtopromotemusic.org/?feed=rss2&#038;p=2772</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>After 12: Guaranteed Good Times</title>
		<link>http://www.howtopromotemusic.org/?p=2771</link>
		<comments>http://www.howtopromotemusic.org/?p=2771#comments</comments>
		<pubDate>Wed, 16 May 2012 18:00:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[You Fail Moments]]></category>

		<guid isPermaLink="false">http://www.howtopromotemusic.org/?p=2771</guid>
		<description><![CDATA[While you were out doing whatever it is haters do, the gents at Epic Meal Time were finding out new ways to help men everywhere &#8220;elevate&#8221; themselves above the competition. Goin&#8217; hard on a Friday night (no pun intended) and &#8230; <a href="http://www.howtopromotemusic.org/?p=2771">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[</p>
<p>    <img class="event-item-lol-image" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/b5b0e_party-fails-after-guaranteed-good-times.jpg" alt="Party Fails - After 12: Guaranteed Good Times" height="750px" width="500px" /></p>
</p>
<p>
        <br />While you were out doing whatever it is haters do, the gents at <a href="http://www.epicmealtime.com/" target="_blank">Epic Meal Time</a> were finding out new ways to help men everywhere &#8220;elevate&#8221; themselves above the competition.</p>
<p>Goin&#8217; hard on a Friday night (no pun intended) and you want to hit the sack with that lady friend of yours after hitting the Jack Dagnels? Then get your hands around some Old-Time Bourbon-flavored lube, and rise to the occasion. </p>
<p>Real SMART!</p>
<p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/failblog.wordpress.com/160499/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/b5b0e_160499" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/failblog.wordpress.com/160499/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/b5b0e_160499" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/failblog.wordpress.com/160499/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/2a912_160499" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/failblog.wordpress.com/160499/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/2a912_160499" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/failblog.wordpress.com/160499/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/2a912_160499" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/failblog.wordpress.com/160499/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/2a912_160499" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/failblog.wordpress.com/160499/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/c2507_160499" /></a> <img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/c2507_b.gif?host=failblog.org&amp;blog=2441444&amp;post=160499&amp;subd=failblog&amp;ref=&amp;feed=1" width="1" height="1" />
<div>
<div>
<p>Submitted by: Unknown</p>
</div>
<div>
<p>Via: <a href="http://chzb.gr/JFR1ey" rel="nofollow" target="_blank">Whiskey D*ck Lube</a></p>
</div>
</div>
<div>
<a href="http://feeds.feedburner.com/~ff/failblog?a=LkEns-owhGE:tJMNgJZ0Whg:qj6IDK7rITs"><img src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/c2507_failblog?d=qj6IDK7rITs" border="0"></img></a>
</div>
<p><img src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/c2507_LkEns-owhGE" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.howtopromotemusic.org/?feed=rss2&#038;p=2771</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FAIL Nation: Space Debris FAIL</title>
		<link>http://www.howtopromotemusic.org/?p=2770</link>
		<comments>http://www.howtopromotemusic.org/?p=2770#comments</comments>
		<pubDate>Wed, 16 May 2012 18:00:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[You Fail Moments]]></category>

		<guid isPermaLink="false">http://www.howtopromotemusic.org/?p=2770</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[</p>
<p>    <img class="event-item-lol-image" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/328cb_epic-fail-fail-nation-space-debris-fail.gif" alt="epic fail  - FAIL Nation: Space Debris FAIL" height="237px" width="300px" /></p>
</p>
<p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/failblog.wordpress.com/160557/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/328cb_160557" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/failblog.wordpress.com/160557/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/2052c_160557" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/failblog.wordpress.com/160557/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/2052c_160557" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/failblog.wordpress.com/160557/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/2052c_160557" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/failblog.wordpress.com/160557/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/2052c_160557" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/failblog.wordpress.com/160557/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/bd746_160557" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/failblog.wordpress.com/160557/"><img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/bd746_160557" /></a> <img alt="" border="0" src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/bd746_b.gif?host=failblog.org&amp;blog=2441444&amp;post=160557&amp;subd=failblog&amp;ref=&amp;feed=1" width="1" height="1" />
<div>
<a href="http://feeds.feedburner.com/~ff/failblog?a=vCXccb9JliU:Yjvd-U9iAnY:qj6IDK7rITs"><img src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/bd746_failblog?d=qj6IDK7rITs" border="0"></img></a>
</div>
<p><img src="http://www.howtopromotemusic.org/wp-content/plugins/wp-o-matic/cache/bd746_vCXccb9JliU" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.howtopromotemusic.org/?feed=rss2&#038;p=2770</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

