<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">

  <title><![CDATA[Paul Roub - blahg]]></title>
  <link href="http://roub.net/blahg/atom.xml" rel="self"/>
  <link href="http://roub.net/blahg/"/>
  <updated>2012-04-28T20:45:04-04:00</updated>
  <id>http://roub.net/blahg/</id>
  <author>
    <name><![CDATA[Paul Roub]]></name>
    
  </author>
  <generator uri="http://octopress.org/">Octopress</generator>

  
  <entry>
    <title type="html"><![CDATA[Note to Self: Run Right Now.]]></title>
    <link href="http://roub.net/blahg/2012/04/03/note-to-self-run-right-now/"/>
    <updated>2012-04-03T19:33:14-04:00</updated>
    <id>http://roub.net/blahg/2012/04/03/note-to-self-run-right-now</id>
    <content type="html"><![CDATA[<p>Just got in from a nice run on a beautiful night.  Not too long, not too fast. An easy weekday run.  Almost punted and gave in to &#8220;I&#8217;m tired, there&#8217;s laundry, I&#8217;ll run in the morning.&#8221;  I&#8217;m glad I didn&#8217;t, and I&#8217;d like to remind my stupid self why, for next time.</p>

<p>You&#8217;ll be tired in the morning, too. Tired and sleepy.</p>

<p>There&#8217;s <em>always</em> laundry.</p>

<p>You&#8217;re often <em>more</em> tired after running. At night, that&#8217;s a good thing; less so in the morning.</p>

<p>You <em>like</em> running, remember? You pay money and drive places to  pin  a number on your shirt and get excited and take pictures of starting lines.</p>

<p><a href="http://www.flickr.com/photos/paulroub/6843731080/"><img src="http://farm8.staticflickr.com/7069/6843731080_ac05afc714_n.jpg" alt="walking to the starting line" /></a></p>

<p>The rice and beans and veggies and curry powder you put in <a href="http://www.amazon.com/gp/product/B004W9B94G/ref=as_li_ss_tl?ie=UTF8&amp;tag=paulroubcom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B004W9B94G" title="Roger Ebert - 'The Pot and How to Use It: The Mystery and Romance of the Rice Cooker'">the pot</a> before you left smell amazing.  All post-running food is the best food.  Remember the bananas after the last race?  Yes, you do.</p>

<p>If you&#8217;re reading this in the summer, remember that you get to jump in the pool afterwards.  I suggest bringing a mango (see above re: food).</p>

<p>&#8220;Tired legs from running&#8221; is a <em>much</em> better feeling than &#8220;stiff neck from falling asleep on the couch.&#8221;</p>

<p>When else do you get to listen to music with no other distractions?  How great is the new <a href="http://www.amazon.com/gp/product/B006ISJQBW/ref=as_li_ss_tl?ie=UTF8&amp;tag=paulroubcom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B006ISJQBW" title="Craig Finn - 'Clear Heart Full Eyes' on Amazon">Craig Finn</a>?  (correct answer: pretty great)</p>

<p>That feeling after the first mile.</p>

<p>That feeling after the second mile.</p>

<p>That feeling with one mile to go.</p>

<p>That feeling right now.</p>

<p>In Summary: Shoes on, out the door, now.</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[How to Exclude Replies from the Twitter Profile Widget]]></title>
    <link href="http://roub.net/blahg/2012/02/09/exclude-replies-from-twitter-profile-widget/"/>
    <updated>2012-02-09T16:22:56-05:00</updated>
    <id>http://roub.net/blahg/2012/02/09/exclude-replies-from-twitter-profile-widget</id>
    <content type="html"><![CDATA[<p>Should you (for some reason) visit the root page of <a href="http://roub.net/">roub.net</a>, you&#8217;ll see a collection of posts from this blog, my
work blog, Flickr photos, and other things, all collected by an aggregator named <a href="http://intertwingly.net/code/venus/">Planet Venus</a>.</p>

<p>To keep the noise level down just a bit, I decided to keep my <a href="http://twitter.com/paulroub">twitter activity</a> out of that list, and use Twitter&#8217;s
<a href="https://twitter.com/about/resources/widgets/widget_profile">Profile Widget</a> instead. It&#8217;s in the sidebar on that page.</p>

<p>That was still noisier than I wanted, though.  I didn&#8217;t need my @replies to others showing up there, but the configuration options didn&#8217;t
offer a &#8220;don&#8217;t include replies&#8221; choice. A bit of Googling led me to <a href="https://dev.twitter.com/discussions/4015">this page</a>, which noted the code needed to add a filter, without explicitly showing <em>where</em>. Reading the widget code cleared that up, but it may be less than obvious if you don&#8217;t spend your days wrangling <a href="http://json.org/">JSON</a>.</p>

<p>The widget code that Twitter provides you with includes a block that starts with:</p>

<figure class='code'><figcaption><span></span></figcaption><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
<span class='line-number'>2</span>
<span class='line-number'>3</span>
</pre></td><td class='code'><pre><code class='js'><span class='line'><span class="k">new</span> <span class="nx">TWTR</span><span class="p">.</span><span class="nx">Widget</span><span class="p">({</span>
</span><span class='line'>  <span class="nx">version</span><span class="o">:</span> <span class="mi">2</span><span class="p">,</span>
</span><span class='line'>  <span class="p">...</span>
</span></code></pre></td></tr></table></div></figure>


<p>Look for the section below that which looks something like:</p>

<figure class='code'><figcaption><span></span></figcaption><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
<span class='line-number'>2</span>
<span class='line-number'>3</span>
<span class='line-number'>4</span>
<span class='line-number'>5</span>
<span class='line-number'>6</span>
</pre></td><td class='code'><pre><code class='js'><span class='line'><span class="nx">features</span><span class="o">:</span> <span class="p">{</span>
</span><span class='line'>  <span class="nx">scrollbar</span><span class="o">:</span> <span class="kc">false</span><span class="p">,</span>
</span><span class='line'>  <span class="nx">loop</span><span class="o">:</span> <span class="kc">false</span><span class="p">,</span>
</span><span class='line'>  <span class="nx">live</span><span class="o">:</span> <span class="kc">true</span><span class="p">,</span>
</span><span class='line'>  <span class="nx">behavior</span><span class="o">:</span> <span class="s1">&#39;all&#39;</span>
</span><span class='line'><span class="p">}</span>
</span></code></pre></td></tr></table></div></figure>


<p>The exact contents will vary.  Leave them as is, and <strong>add</strong>, right after the <code>features:</code> line, the following:</p>

<figure class='code'><figcaption><span></span></figcaption><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
<span class='line-number'>2</span>
<span class='line-number'>3</span>
</pre></td><td class='code'><pre><code class='js'><span class='line'><span class="nx">filters</span><span class="o">:</span> <span class="p">{</span>
</span><span class='line'>  <span class="nx">negatives</span><span class="o">:</span> <span class="sr">/^@\w{1,20}\s/</span>
</span><span class='line'><span class="p">},</span>
</span></code></pre></td></tr></table></div></figure>


<p>The indentation doesn&#8217;t matter, but copy it verbatim otherwise.  In the example above, we end up with:</p>

<figure class='code'><figcaption><span></span></figcaption><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
<span class='line-number'>2</span>
<span class='line-number'>3</span>
<span class='line-number'>4</span>
<span class='line-number'>5</span>
<span class='line-number'>6</span>
<span class='line-number'>7</span>
<span class='line-number'>8</span>
<span class='line-number'>9</span>
</pre></td><td class='code'><pre><code class='js'><span class='line'><span class="nx">features</span><span class="o">:</span> <span class="p">{</span>
</span><span class='line'>  <span class="nx">filters</span><span class="o">:</span> <span class="p">{</span>
</span><span class='line'>    <span class="nx">negatives</span><span class="o">:</span> <span class="sr">/^@\w{1,20}\s/</span>
</span><span class='line'>  <span class="p">},</span>
</span><span class='line'>  <span class="nx">scrollbar</span><span class="o">:</span> <span class="kc">false</span><span class="p">,</span>
</span><span class='line'>  <span class="nx">loop</span><span class="o">:</span> <span class="kc">false</span><span class="p">,</span>
</span><span class='line'>  <span class="nx">live</span><span class="o">:</span> <span class="kc">true</span><span class="p">,</span>
</span><span class='line'>  <span class="nx">behavior</span><span class="o">:</span> <span class="s1">&#39;all&#39;</span>
</span><span class='line'><span class="p">}</span>
</span></code></pre></td></tr></table></div></figure>


<p>We&#8217;re telling the widget to remove any lines that start with a <code>@</code> followed by 1-20 &#8220;word&#8221; characters.  That is, anything starting with someone&#8217;s
Twitter handle &#8211; a reply.</p>

<p>That&#8217;s it.  Feel free to view the source at <a href="http://roub.net/">roub.net</a> to see it in place.</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Straps and Buttons]]></title>
    <link href="http://roub.net/blahg/2012/01/21/straps-and-butt/"/>
    <updated>2012-01-21T16:00:58-05:00</updated>
    <id>http://roub.net/blahg/2012/01/21/straps-and-butt</id>
    <content type="html"><![CDATA[<p>I recently lucked into a Takamine G-335 12-string in a well-timed eBay bid. &nbsp;I&#8217;m very happy with it, but sitting down? On stage? This will not do. But there&#8217;s just the one strap button at the butt end, and I&#8217;m not tying a strap to the headstock; that <i>maybe</i>&nbsp;looked cool on Elvis. Maybe.</p>




<p>I&#8217;d been meaning to put strap locks on my Strat, which would leave me with a spare strap button or two.</p>




<p>So:</p>




<div class="separator" style="clear: both; text-align: left;"><a href="http://flickr.com/photos/47334614@N00/6738547381" target="_blank" style="margin-bottom: 1em; margin-right: 1em;"><img src="http://farm8.static.flickr.com/7025/6738547381_073ed258e1.jpg" id="blogsy-1327186806777.0688" class="clearleft" alt="" width="500" height="333"></a></div>




<p>And then&#8230;</p>




<div class="separator" style="clear: both; text-align: left;"><a href="http://flickr.com/photos/47334614@N00/6738544755" target="_blank" style="margin-bottom: 1em; margin-right: 1em;"><img src="http://farm8.static.flickr.com/7157/6738544755_24b20be5aa.jpg" id="blogsy-1327186806806.7485" class="clearleft" alt="" width="500" height="333"></a></div>




<p>Safety first&#8230;</p>




<div class="separator" style="clear: both; text-align: left;"><a href="http://flickr.com/photos/47334614@N00/6738542307" target="_blank" style="margin-bottom: 1em; margin-right: 1em;"><img src="http://farm8.static.flickr.com/7008/6738542307_31da13cf06.jpg" id="blogsy-1327186806792.5598" class="clearleft" alt="" width="500" height="333"></a></div>




<p>Et voilà.</p>




<div class="separator" style="clear: both; text-align: left;"><a href="http://flickr.com/photos/47334614@N00/6738540063" target="_blank" style="margin-bottom: 1em; margin-right: 1em;"><img src="http://farm8.static.flickr.com/7173/6738540063_33a7d05bdb.jpg" id="blogsy-1327186806846.386" class="clearleft" alt="" width="500" height="333"></a></div>




<p>It is at this point that I realize I don&#8217;t yet have a strap for this guitar.</p>




<p>So close&#8230;</p>



]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Tools of the Trade, iPad Edition]]></title>
    <link href="http://roub.net/blahg/2011/10/02/tools-of-the-trade-ipad-edition/"/>
    <updated>2011-10-02T13:38:09-04:00</updated>
    <id>http://roub.net/blahg/2011/10/02/tools-of-the-trade-ipad-edition</id>
    <content type="html"><![CDATA[<p>If more than two people ask me about something I&#8217;m using, especially if it&#8217;s more than two people at one show, it seems worth the time to write it down.</p>




<p><img alt="Paul and Brian" src="http://roub.net/blahg/i/pb.jpg" width="500" height="413" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></p>




<p>It may look like my friend <a href="http://www.brianfranklin.com/BF/Home.html" title="Brian Franklin">Brian</a> is paying close attention, awaiting the moment when he&#8217;ll add some more harmonies. Actually, he&#8217;s looking past me, at my iPad, attached to a nearby stand.</p>




<p><img alt="Paul, Brian, iPad" src="http://roub.net/blahg/i/pbi.jpg" width="500" height="282" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></p>




<p>It&#8217;s held there by an <a href="http://www.amazon.com/gp/product/B0055CL5XE/ref=as_li_ss_tl?ie=UTF8&tag=paulroubcom-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0055CL5XE">IK Multimedia iKlip</a> mic stand mount.  There are a number of products that do this job; this is the one I happen to own, and it does its one job very well.</p>




<p><a href="http://www.amazon.com/gp/product/B0055CL5XE/ref=as_li_ss_il?ie=UTF8&tag=paulroubcom-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0055CL5XE"><img src="http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&Format=_SL110_&ASIN=B0055CL5XE&MarketPlace=US&ID=AsinImage&WS=1&tag=paulroubcom-20&ServiceVersion=20070822" style="text-align: center; display: block; margin: 0 auto 20px;"></a><img src="http://www.assoc-amazon.com/e/ir?t=paulroubcom-20&l=as2&o=1&a=B0055CL5XE&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>




<p>So why is it there? I know folks who run GarageBand onstage this way, but in my case, it&#8217;s just lyric sheets and/or setlists.  So when I need a memory jog on a new song, the occasional cover or (as sadly happened last night) when I blank on an older song of mine, it&#8217;s right there.</p>




<p>There&#8217;s any number of ways to <em>get</em> those lyrics on there, but like any good nerd, I lean toward plain text files. Something I can edit on any machine I own, view on my phone if need be, etc.</p>




<p>The app used for viewing the songs is <a href="http://itunes.apple.com/app/id363448914?mt=8">GoodReader</a>. I like that it will read almost anything I throw at it, but especially like the way it syncs with <a href="http://db.tt/fK4zN9k">Dropbox</a>.  I have a &#8220;Lyrics&#8221; folder on my laptop:</p>




<p><img alt="lyricsfolder.png" src="http://roub.net/blahg/i/lyricsfolder.png" width="415" height="357" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></p>




<p>and I&#8217;ve told GoodReader to sync that folder and its contents.  If I add a new song to that folder, it will automatically be mirrored to GoodReader.  Tap a song, and off I go:</p>




<p><a href="http://www.amazon.com/gp/product/B003HT1IK2/ref=as_li_ss_tl?ie=UTF8&tag=paulroubcom-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B003HT1IK2"><img alt="Lyrics, &quot;Disappear&quot; by Paul Roub" src="http://roub.net/blahg/i/disappear.png" width="500" height="667" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></a></p>




<p>If I&#8217;m feeling particularly grown-up and professional, I&#8217;ll &#8220;star&#8221; some of the songs ahead of time, and let GoodReader show me just those songs as something approaching a setlist:</p>




<p><img alt="set list in GoodReader" src="http://roub.net/blahg/i/setlist.png" width="430" height="833" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></p>




<p>That&#8217;s it. No more binder of lyrics for me, and I&#8217;m pretty happy about it.  I <em>do</em> recommend putting the iPad in airplane mode before your set, to avoid the temptation to tweet mid-song.</p>

]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Video from the July 11th Songwriter's Showcase]]></title>
    <link href="http://roub.net/blahg/2011/07/19/video-from-the-/"/>
    <updated>2011-07-19T14:30:02-04:00</updated>
    <id>http://roub.net/blahg/2011/07/19/video-from-the-</id>
    <content type="html"><![CDATA[<p>&#8220;Disappear&#8221;, &#8220;One Man at Best&#8221;, &#8220;The Great Unknown&#8221; and &#8220;Mind of Its Own&#8221;, live at the Broward Center for the Performing Arts.</p>




<h3>&#8220;Disappear&#8221;</h3>


<iframe width="560" height="349" src="http://www.youtube.com/embed/BYEU697rc_U?rel=0" frameborder="0" allowfullscreen></iframe>




<h3>&#8220;One Man at Best&#8221;</h3>


<iframe width="560" height="349" src="http://www.youtube.com/embed/T0r4PJWGwxk?rel=0" frameborder="0" allowfullscreen></iframe>




<h3>&#8220;The Great Unknown&#8221;</h3>


<iframe width="560" height="349" src="http://www.youtube.com/embed/OM7dRTw_WRk?rel=0" frameborder="0" allowfullscreen></iframe>




<h3>&#8220;Mind of Its Own&#8221;</h3>


<iframe width="560" height="349" src="http://www.youtube.com/embed/Y3WFe_x05e0?rel=0" frameborder="0" allowfullscreen></iframe>




<p>All four songs are from my album &#8220;Acrophobe&#8221;, available for purchase (CD or download) at <a href="http://music.paulroub.com/album/acrophobe" title="Paul Roub - Acrophobe">music.paulroub.com</a>.</p>



]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA["A Little Bit Wiser", live in the WLRN studio]]></title>
    <link href="http://roub.net/blahg/2011/07/15/a-little-bit-wiser-wlrn/"/>
    <updated>2011-07-15T14:20:41-04:00</updated>
    <id>http://roub.net/blahg/2011/07/15/a-little-bit-wiser-wlrn</id>
    <content type="html"><![CDATA[<iframe width="560" height="349" src="http://www.youtube.com/embed/CHxyUigXdTo?rel=0" frameborder="0" allowfullscreen></iframe>




<p>Had the pleasure, last Saturday, of joining Michael Stock in studio on his <a href="http://folkandacousticmusic.com/">Folk and Acoustic Music</a> show.  This is one of the songs performed therein.</p>




<p>And&#8230; uh&#8230; sorry about the sunburn. It didn&#8217;t look that bad on the radio. </p>




<p>&#8220;A Little Bit Wiser&#8221; is  <a href="http://www.amazon.com/gp/product/B003HT6XLG?ie=UTF8&tag=paulroubcom-20&linkCode=shr&camp=213733&creative=393177&creativeASIN=B003HT6XLG&ref_=sr_1_2&s=dmusic&qid=1310753689&sr=1-2" title="Paul Roub - &quot;A Little Bit Wiser&quot;">$0.89 at Amazon MP3</a> - proceeds will go towards sunscreen and common sense.</p>



]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[How to be Surprisingly Popular at Gate C9]]></title>
    <link href="http://roub.net/blahg/2011/06/22/how-to-be-surprisingly-popular-at-gate-c9/"/>
    <updated>2011-06-22T17:19:17-04:00</updated>
    <id>http://roub.net/blahg/2011/06/22/how-to-be-surprisingly-popular-at-gate-c9</id>
    <content type="html"><![CDATA[<p>(or any gate, really)</p>




<p>Have one of these in your backpack:</p>




<p><a href="http://www.amazon.com/gp/product/B0018MEBNG/ref=as_li_ss_tl?ie=UTF8&tag=paulroubcom-20&linkCode=as2&camp=217145&creative=399369&creativeASIN=B0018MEBNG" title="Outlets To Go Power Strip with USB"><img alt="Outlets To Go Power Strip with USB" src="http://roub.net/blahg/im/m2g.jpg" width="363" height="245" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></a></p>




<p>Bonus points: lend it to a Dad whose two Disneyed-out kids both want to watch videos on their run-down iPods. That guy bought me a coffee.</p>

]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Replacement Charger for Acer 1420P (PDC09) Tablet]]></title>
    <link href="http://roub.net/blahg/2011/05/29/acer-1420p-pdc-charger/"/>
    <updated>2011-05-29T15:51:40-04:00</updated>
    <id>http://roub.net/blahg/2011/05/29/acer-1420p-pdc-charger</id>
    <content type="html"><![CDATA[<p>I was lucky enough to get one of the Acer 1420P convertible tablet/netbooks at Microsoft PDC 2009. Yesterday, the AC adapter died.  Since this isn&#8217;t a model that was sold through normal channels, different find-your-adapter sites give varying answers as to what might work.</p>




<p>I picked up a <a href="http://www.amazon.com/gp/product/B001OXS6GW/ref=as_li_ss_tl?ie=UTF8&tag=paulroubcom-20&linkCode=as2&camp=217145&creative=399349&creativeASIN=B001OXS6GW" title="Buy the Rocketfish Universal Laptop/Notebook AC Adapter at amazon.com">Rocketfish Universal Adapter</a> today, since one of the tips appeared, through the packaging, to be a match.  Works like a charm, laptop is fully charged, and I have a bunch of other tips handy when something <em>else</em> dies.</p>




<p>You&#8217;ll want the MT32 tip (included), by the way.</p>

]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[I Just Received an Email from the Year 2000]]></title>
    <link href="http://roub.net/blahg/2011/05/02/i-just-received/"/>
    <updated>2011-05-02T22:19:36-04:00</updated>
    <id>http://roub.net/blahg/2011/05/02/i-just-received</id>
    <content type="html"><![CDATA[<blockquote>
<pre>From: Name Redacted &lt;nredacted@sbcglobal.net&gt;
Subject: The Domain: OpenMicNight.com</pre>
</blockquote>




<p>Using your ISP-given email? Always a good sign of a reliable business.</p>




<blockquote>
Paul,<br />
Hello, my name is <em><strong>redacted</strong></em>. I am representing the owner of the web domain OpenMicNight.com and we are interested in selling the domain.
</blockquote>




<p>A web domain? How wonderful! Oh, but&#8230; what if I wanted email, too? Is this one <em>only</em> for the web? Is that why you&#8217;re using the SBC address?</p>




<blockquote>
In a keyword search for &#8220;Open Mic Night&#8221; on Google your website came up as a related listing, 
</blockquote>




<p>I&#8217;d expect so. <a href="http://openmikes.org/">openmikes.org</a> is generally the <em>first</em> hit for things like that. Good job finding it!</p>




<blockquote>
So I wanted to see if you had any interest in purchasing the domain? 
</blockquote>




<p>So I could have the second slot, too? Also, that&#8217;s not a question.  It&#8217;s more of an 80s movie SoCal kid making a statement, if you throw a few &#8220;likes&#8221; in there.</p>




<blockquote>
 I am contacting many different parties that have an interest in the name, or spend money on marketing and ads for these specific keywords. 
</blockquote>




<p>&#8220;Dear SEO Douchebags: &#8230;&#8221;</p>




<blockquote>
A response either way would be appreciated. 
</blockquote>




<p>Wait, either way?  What were my choices? Is this a way? I&#8217;m doing this one.</p>




<blockquote>
 Thank you for your time,<br />
 Name Redacted
</blockquote>




<p>That was so nostalgic. Domain speculation. Because people type URLs into address bars these days. All the time. That would serve me better than years of content, trust, legitimate inbound links&#8230;</p>




<p>Oh, there&#8217;s more!</p>




<blockquote>
Name Redacted,  Nredacted Web Development<br />
Phone: 555-55B-R549    Email:  nredacted@sbcglobal.net
</blockquote>




<p>Wow, no hesitation at all throwing around the temporary email. And no web site, I guess &#8216;cause you&#8217;re selling your only web domain.</p>


<p>Hey, for the kids, can we get some authentic, silly, psuedo-legal spewage?</p>




<blockquote>
This message may contain confidential and/or privileged information.
</blockquote>




<p>You don&#8217;t <em>know</em>? Dude. Read it over once before clicking Send.</p>




<blockquote>
 If you are not the addressee or authorized to receive this for the addressee, you must not use, copy, disclose, or take any action based on this message or any information herein.
</blockquote>




<p>Can I delete it? Because that seems like taking an action. Is <em>asking</em> that taking action?</p>




<p>Also, how do I know if I&#8217;m authorized to receive this? What&#8217;s the chain of command?  I&#8217;m pretty sure my boss won&#8217;t care, and the dog&#8217;s utterly ambivalent. I&#8217;ll ask Twitter in a minute, I think. Gestalt authorization.</p>




<blockquote>
 If you have received this message in error, please advise the sender immediately by reply e-mail and delete this message. Thank you for your cooperation.
</blockquote>




<p>&#8220;Error&#8221; is slippery here. I certainly didn&#8217;t <em>want</em> to, or try to, receive it. And it doesn&#8217;t seem to have had the intended effect, but you got both my email and my first name right. &#8220;Whose error&#8221;? That&#8217;s what I&#8217;m trying to ask. Now I&#8217;m wondering if that should have been &#8220;who&#8217;s&#8221;. See what you&#8217;ve started?</p>




<blockquote>
P Please consider the environment before printing this e-mail.
</blockquote>




<p>I like the heartfelt stammer of the doubled &#8220;P&#8221;. I <em>did</em> consider the environment. Turned off lights in the next room, in fact. And now, I guess, I have to print the email.  You did say &#8220;p-please&#8221;.</p>

]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Quick and Dirty Record Crate Hackery]]></title>
    <link href="http://roub.net/blahg/2011/04/23/record-crate-hackery/"/>
    <updated>2011-04-23T14:12:06-04:00</updated>
    <id>http://roub.net/blahg/2011/04/23/record-crate-hackery</id>
    <content type="html"><![CDATA[<p>Less &#8220;hack&#8221; than &#8220;life support&#8221;.</p>




<p>I&#8217;ve had the same Peaches record crates since sometime in the early 90s.</p>




<p><img alt="Peaches Record Crates" src="http://roub.net/blahg/images/0%20before.jpg" width="300" height="400" class="mt-image-none"  /></p>




<p>They&#8217;re not exactly built of reinforced steel, and at this point I&#8217;m afraid they&#8217;ll cave in.</p>




<p><img alt="Swaying" src="http://roub.net/blahg/images/1%20swaying.jpg" width="400" height="300" class="mt-image-none"  /></p>




<p>Do I have any scrap plywood that might be useful?</p>




<p><img alt="Plywood leftovers" src="http://roub.net/blahg/images/2%20inventory.jpg" width="182" height="392" class="mt-image-none" style="" /></p>




<p>Yep.</p>




<p><img alt="Oddly, the width was dead-on." src="http://roub.net/blahg/images/3%20chopchopchop.jpg" width="351" height="219" class="mt-image-none" " /></p>




<p>A well-spent 10 minutes. I feel better. Now to alphabetize them&#8230;</p>




<p><img alt="All better" src="http://roub.net/blahg/4%20ta%20and%20da.jpg" width="252" height="394" class="mt-image-none" /></p>



]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA["Things Have Changed" (I Covered a Thing)]]></title>
    <link href="http://roub.net/blahg/2011/04/02/things-have-changed/"/>
    <updated>2011-04-02T16:26:05-04:00</updated>
    <id>http://roub.net/blahg/2011/04/02/things-have-changed</id>
    <content type="html"><![CDATA[<p>As has been mentioned here once or twice, part of the funding for <a href="http://cd.paulroub.com/" title="Paul Roub - Acrophobe">my CD</a> came from people who, in return for their donation, could require me to record a home demo of <em>any</em> song they chose. I could not say &#8220;no&#8221;.</p>




<p>The results have been amusingly&#8230; mixed. I may or may not release them into the wild.</p>




<p>A few of those involved actually chose songs they <em>liked</em>, rather than those that would make me regret my decision. My friend Michelle was extra-nice and asked for a Dylan tune, <a href="http://www.amazon.com/gp/product/B00137MGTM/ref=as_li_ss_tl?ie=UTF8&tag=paulroubcom-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B00137MGTM" title="Bob Dylan - Things Have Changed">&#8220;Things Have Changed&#8221;</a>.  I threw it together in about an hour last week; the lead guitar in particular is just me warming up and deciding &#8220;yeah, that actually feels good. Done.&#8221;  But people have said nice things about this, and I don&#8217;t have new originals in the pipeline just <em>yet</em>, so&#8230;</p>




<p>Here&#8217;s me, sitting at my desk, singing &#8220;Things Have Changed&#8221;:</p>


<p><audio controls="controls">
<source src="http://roub.net/blahg/archives/2011/04/02/audio/Paul%20Roub%20-%20Things%20Have%20Changed.mp3" type="audio/mpeg" />
<source src="http://roub.net/blahg/archives/2011/04/04/Paul%20Roub%20-%20Things%20Have%20Changed.ogg" type="audio/ogg" /></p>

<p><a href="http://roub.net/blahg/archives/2011/04/02/audio/Paul%20Roub%20-%20Things%20Have%20Changed.mp3">Things Have Changed</a>.</p>


<p></audio></p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA["Disappear" - now in video form!]]></title>
    <link href="http://roub.net/blahg/2011/02/10/disappear-video/"/>
    <updated>2011-02-10T19:38:28-05:00</updated>
    <id>http://roub.net/blahg/2011/02/10/disappear-video</id>
    <content type="html"><![CDATA[<p>So I had this goofy idea. And I had a friend, <a href="http://whobuddiez.com/">Mark</a>, who was capable of putting that idea into action.</p>




<p>That was last week. 7 days later, <em>this</em> shows up:</p>




<iframe title="YouTube video player" width="560" height="349" src="http://www.youtube.com/embed/75SkCmblYtk?rel=0" frameborder="0" allowfullscreen></iframe>




<p>I love that the guitar is recognizably mine. This just makes me happy.</p>



]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Gigs past and future]]></title>
    <link href="http://roub.net/blahg/2010/10/16/gigs-past-and-f/"/>
    <updated>2010-10-16T10:59:48-04:00</updated>
    <id>http://roub.net/blahg/2010/10/16/gigs-past-and-f</id>
    <content type="html"><![CDATA[<p>First of all &mdash; thanks to everyone who came out to the House of Joe and the Stage 84 / Insync with Autism benefit show. The latter, by the way, raised something like $1300. People rock sometimes, is my point. <a href="http://alexnelsonmusic.com/" title="Alex Nelson">Alex</a> and <a href="http://brianfranklin.com/BF/Home.html" title="Brian Franklin">Brian</a>, especially.</p>




<p>Next up? Been having a lot of these discussions&#8230;</p>




<p>&#8220;Hey Paul, when are you gonna be back at the Sun Shoppe?&#8221;<br />
&#8220;Now that you&#8217;re back, guess we&#8217;ll be seeing you at the Sun Shoppe, huh?&#8221;<br />
&#8220;When can we see you at the Sun Shoppe?&#8221;<br />
&#8220;Hey, Mark, can I come play at the Sun Shoppe?&#8221;<br />
&#8220;Hey, Paul, when can we get you playing here?&#8221;</p>




<p>There seems to be a general agreement that this is a very good idea.</p>




<p>So&#8230; next Saturday, 8pm until, oh, let&#8217;s say 11&#8230; I&#8217;ll be at the Sun Shoppe in Melbourne once again.</p>




<p>Will I play all of the CD and then some? Sure!<br />
Old songs I barely remember? Bet!<br />
At least one Jonathan Coulton cover? Undoubtedly!</p>




<p>It&#8217;s gonna be fun. All the more so if you&#8217;re there.</p>




<p>Saturday, October 23, 8pm</p>




<p><a href="http://www.facebook.com/profile.php?id=100000675095077">The Sun Shoppe</a><br />
540 E New Haven Ave, Melbourne, FL<br />
(downtown Melbourne, nearly across the street from the Henegar Center)</p>




<p>Want a flyer to print out and plaster hither and yon? Sure you do! <a href="http://paulroub.com/static/flyers/SunShoppe-2010-10-23.pdf">here (PDF)</a>.</p>




<p>Info on this, and all gigs, can be found at <a href="http://paulroub.com/">paulroub.com</a>.</p>



]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Please help me make no money.]]></title>
    <link href="http://roub.net/blahg/2010/06/05/please-help-me/"/>
    <updated>2010-06-05T12:52:52-04:00</updated>
    <id>http://roub.net/blahg/2010/06/05/please-help-me</id>
    <content type="html"><![CDATA[<p><a href="http://music.paulroub.com/track/mind-of-its-own"></a><p>So after a brief flurry at the beginning, sales of my CD have pretty much dropped off. Instead, lots of free downloads are happening. I like this <em>very</em> much, and I&#8217;d like to see it continue. And you can help.</p></p>

<p>If you&#8217;re reading this and haven&#8217;t yet downloaded <strong>Acrophobe</strong>, by all means head to <a href="http://music.paulroub.com/album/acrophobe" title="Paul Roub - Acrophobe">music.paulroub.com</a>, click &#8220;Download&#8221;, and enter &#8220;0&#8221; as the amount you&#8217;d like to pay.  Then download away.</p>




<p>If you like what you hear, tell your friends. That&#8217;s what this blog post is about - how to share. Sharing is good. Sharing is nice. Sharing gets the music heard, which is ultimately the point of the whole thing.</p>




<p>If you want to let your Facebook friends, your Twitter followers, etc. know about the whole CD, head over to the <a href="http://music.paulroub.com/album/acrophobe" title="Paul Roub - Acrophobe">CD page</a> and click &#8220;Share&#8221;:</p>




<p><a href="http://music.paulroub.com/album/acrophobe" title="Paul Roub - Acrophobe"><img src="http://roub.net/i/share.png" alt=" " /></a></p>




<p>Follow the instructions from there. Thanks!</p>




<p>Have a favorite song you&#8217;d like to point them to instead? Here&#8217;s how.</p>




<p>Let&#8217;s use <a href="http://music.paulroub.com/track/mind-of-its-own">&#8220;Mind of its Own&#8221;</a> as an example - I&#8217;m kind of smitten with that one at the moment.  Click on &#8220;Mind of its Own&#8221; in the tracklist:</p>




<p><a href="http://music.paulroub.com/track/mind-of-its-own" title="Paul Roub - Mind of its Own"><img src="http://roub.net/i/mind.png" alt=" " /></a></p>




<p>Then click the &#8220;Share&#8221; button on the song page. Thanks again. You rock.</p>




<p>If you, or your friends, want to know when gigs are happening, or other (occasional) updates, please either &#8220;Like&#8221; my <a href="http://www.facebook.com/paulroubmusic">Facebook fan page</a>, or head to my <a href="http://paulroub.com/">front page</a> and join the Mailing List. Or both.</p>




<p>Thanks again for helping me give stuff away.</p>

]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA["Acrophobe" CDs are Now Available]]></title>
    <link href="http://roub.net/blahg/2010/05/06/acrophobe-cds/"/>
    <updated>2010-05-06T20:58:08-04:00</updated>
    <id>http://roub.net/blahg/2010/05/06/acrophobe-cds</id>
    <content type="html"><![CDATA[<p>The &#8220;Acrophobe&#8221; CDs are here!</p>




<p>If you pre-ordered, you should have your CD by now.  If not, please <a href="http://paulroub.com/contact/">let me know</a>.</p>




<p>If you&#8217;d like to order a CD, you can order them directly from me at <a href="http://music.paulroub.com/album/acrophobe">music.paulroub.com</a> - they&#8217;re $6 plus shipping.  You can pay more if you like, but that&#8217;s up to you.  $6 is fine by me.</p>




<p>You can also order the CD at <a href="https://www.amazon.com/dp/B003HQ47S0?tag=paulroubcom-20&camp=213381&creative=390973&linkCode=as4&creativeASIN=B003HQ47S0&adid=0PT57RP09A13YMGEE5XZ&" title="Paul Roub - Acrophobe at amazon.com">amazon.com</a> if you like &mdash; although that&#8217;ll cost you more, and Amazon keeps most of it. Hint, hint.</p>

]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA["Acrophobe" is released]]></title>
    <link href="http://roub.net/blahg/2010/04/22/acrophobe-is-re/"/>
    <updated>2010-04-22T01:24:24-04:00</updated>
    <id>http://roub.net/blahg/2010/04/22/acrophobe-is-re</id>
    <content type="html"><![CDATA[<p>I wanted to say &#8220;my new CD has been released&#8221;, but I don&#8217;t <em>have</em> the CDs yet.  In a week or two, yes - but the songs? The music? Those are available right now, <a href="http://music.paulroub.com/album/acrophobe" title="Paul Roub - Acrophobe">right here</a>.</p>




<p><a href="http://music.paulroub.com/album/acrophobe" title="Paul Roub - Acrophobe"><img src="http://bandcamp.com/files/42/59/4259370809-1.jpg" alt="Paul Roub - Acrophobe" /></a></p>




<p>It&#8217;s solo, it&#8217;s acoustic, it&#8217;s essentially a live set without the audience. No overdubs, no edits. If you like what I do live, you&#8217;re in luck. If not, you&#8217;ll really, really hate it.</p>




<p>There&#8217;s a tip jar; pay what you want, or pay nothing. Seriously. Please. Free for the taking. </p>




<p>How can I do that?  First, it&#8217;s a selfish move - &#8220;free&#8221; means easy, means shareable; which means more people hear the music.  The whole point, no?</p>




<p>But more practically, I can do it because <a href="http://www.kickstarter.com/projects/paulroub/paul-roub-acrophobe-solo-acoustic-cd/backers">these people</a>?  They rock.  They&#8217;re awesome.  &#8220;Hey guys, would you pledge some money so I can make a thing?  And later, you&#8217;ll get the thing, even though it will also be free?&#8221;  Apparently, yes.  I can&#8217;t say &#8220;thanks&#8221; often enough.</p>

]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Shocked and awed.]]></title>
    <link href="http://roub.net/blahg/2010/03/13/shocked-and-awed/"/>
    <updated>2010-03-13T11:35:23-05:00</updated>
    <id>http://roub.net/blahg/2010/03/13/shocked-and-awed</id>
    <content type="html"><![CDATA[<p>It would be an understatement to say I&#8217;m overwhelmed by the response to my <a href="http://roub.net/blahg/archives/2010/03/produce-me-prod.html">call for CD funding</a> (in case you missed it, I&#8217;m recording a CD, and decided to fund the recording process through <a href="http://www.kickstarter.com/projects/paulroub/paul-roub-acrophobe-solo-acoustic-cd">pre-orders and donations</a>).</p>




<p>$1050 in one month seemed like a stretch, which is why I chose that timeframe. Deadlines work for me.  I assumed that come the last week of March, I&#8217;d be begging people to donate just a bit more, handing flyers to strangers&#8230;  Instead, the whole thing was funded 10 days in.  Friends are wonderful things, especially when they&#8217;re glad you&#8217;ve <em>finally</em> gotten off your ass and done the thing they&#8217;ve been telling you to do for years.</p>




<p>I&#8217;d love to see more people just pre-order the CD (<a href="http://www.kickstarter.com/projects/paulroub/paul-roub-acrophobe-solo-acoustic-cd">you can still do that</a>), just because the ultimate point of this is to make music and have it heard.  </p>




<p>But I <em>highly</em> recommend <a href="http://www.kickstarter.com/projects/paulroub/paul-roub-acrophobe-solo-acoustic-cd">Kickstarter&#8217;s</a> tiered rewards setup, especially the fact that you choose your own rewards. You know your audience (if you don&#8217;t, figure that out first). <a href="http://www.kickstarter.com/projects/gordonwithers/gordon-withers-pre-order-the-new-solo-cello-albu">Gordon knew</a> that music geeks (like me) would want the limited-edition vinyl.  <a href="http://www.kickstarter.com/projects/jiggsaw/produce-jiggsaws-new-ep">JigGsaw knew</a> their fans (like me) would want T-shirts and their back catalog.</p>




<p>I knew my friends would want to make me sing songs that I hate.</p>




<p>I can&#8217;t take credit for the original idea. In December, at a charity live-band karaoke, <a href="http://www.myspace.com/mikeingrammusic">Mike Ingram</a> promised to sing any song on the band&#8217;s extensive list for a donation to the cause.  Making my fellow indie-acoustic-singer-songwriter sing &#8220;9 to 5&#8221;? Worth it, and many others agreed.</p>




<p>I knew that people who had been in bands &mdash; or high school, or the workplace &mdash; with me were well aware of my <em>pointed</em> musical opinions and dislikes.  If you&#8217;ve been around me even once when Journey came on the radio, I imagine forcing &#8220;Open Arms&#8221; on me must be enticing.  </p>




<p>Know your audience.</p>




<p>Which brings me to the second interesting facet of this project, vs. any I&#8217;d done in the past: I haven&#8217;t touched my <a href="http://paulroub.com/contact/">mailing list</a> yet. Like most artists, I have a good-sized email list I&#8217;ve built up over the years.  More years than most, dating back to when I had to explain what email <em>was</em>.</p>




<p>And I know some, but by no means all, of those people. And many of those emails are out-of-date, or silently bouncing, never checked&#8230;</p>




<p>Instead, I talked about the project on Facebook (both my personal profile and my <a href="http://www.facebook.com/pages/Paul-Roub/25730424752">fan page</a>) and <a href="http://twitter.com/paulroub">Twitter</a>.  Where I know who I&#8217;m talking to &mdash; the exact same people most likely to show up at an eventual release party. The exact same people most likely to take me up on the &#8220;tell your friends&#8221; request.  And they don&#8217;t just sign up for a CD, they chime in and taunt me with song requests, rubbing hands and discussing the possibilities. These are the people who will listen as work-in-progress mixes are shared (a backers-only bonus). Feedback rocks. Feedback inspires.</p>




<p>It&#8217;s not news: conversations are better than announcements, for both sides.  I&#8217;ll have the CD soon enough, and it will be available from <a href="http://cdbaby.com/">CD Baby</a>, and for download on iTunes and elsewhere, and I will hit the mailing list, and that will be fantastic. I&#8217;m not sure it will be as fun as this part has been.</p>




<p>Now back to concentrating on the CD itself. I find myself <em>practicing</em> and thinking about guitar parts I&#8217;ve played for years. I&#8217;m more excited about my music than I&#8217;ve been in years.</p>

]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Produce me producing my product]]></title>
    <link href="http://roub.net/blahg/2010/03/01/produce-me-prod/"/>
    <updated>2010-03-01T23:34:34-05:00</updated>
    <id>http://roub.net/blahg/2010/03/01/produce-me-prod</id>
    <content type="html"><![CDATA[<p><a href="http://www.kickstarter.com/projects/paulroub/paul-roub-acrophobe-solo-acoustic-cd">I&#8217;m recording a CD</a>. Almost said &#8220;a new CD&#8221;, but where&#8217;s the old one?</p>




<p>Somehow, over the years, recording a CD of just-me-n-a-guitar has always been the next thing I was thinking about. Despite being the <em>first</em> thing, or the only thing, everyone asks for at gigs and in-between.</p>




<p>Stars are aligning, though, since I&#8217;m actually excited to do just that. Studio? Chosen and booked. Mastering and duplication? Priced. Artwork? Who knows; haven&#8217;t come to that bridge yet.  Funding?</p>




<p>Funding.  That&#8217;s where <em>you</em> come in, I hope.</p>




<p>In short: $1 or more is a helpful and appreciated boost. $10 pre-orders a CD, shipped to you and signed, as soon as one exists.  $25 gets the same plus early peeks at the tunes.  $50 lets you make me squirm, cringe, and bite my tongue as I cover the song of your choice. (you could also pick something I&#8217;d <em>enjoy</em> singing, but how&#8217;s <em>that</em> fun?)</p>




<p>If you&#8217;re unfamiliar with Kickstarter, where <a href="http://www.kickstarter.com/projects/paulroub/paul-roub-acrophobe-solo-acoustic-cd">the project</a> is living, it&#8217;s kinda awesome: you pledge what you want towards my goal.  If the goal is hit in time ($1050 by March 31st), you get charged.  I don&#8217;t hit the goal?  No charge.  All or nothing.  </p>




<p><a href="http://www.kickstarter.com/projects/paulroub/paul-roub-acrophobe-solo-acoustic-cd">Take a look</a>. Hop over to <a href="http://music.paulroub.com/">music.paulroub.com</a> and take a listen. Tell your friends via those nice little Share buttons on <a href="http://www.kickstarter.com/projects/paulroub/paul-roub-acrophobe-solo-acoustic-cd">the Kickstarter page</a>.</p>




<p>Every little bit helps; and anything you can post on your Walls and your Timelines and your Twitter Streams is <em>hugely</em> appreciated.</p>




<p>I&#8217;ve set a short schedule because I&#8217;m stoked; this is going to be good. I&#8217;m proud of it in advance.</p>

]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[How songwriting made me an Evernote fanboy]]></title>
    <link href="http://roub.net/blahg/2010/02/04/how-songwriting/"/>
    <updated>2010-02-04T13:49:45-05:00</updated>
    <id>http://roub.net/blahg/2010/02/04/how-songwriting</id>
    <content type="html"><![CDATA[<p>I know I&#8217;m at least a year late on the &#8220;babbling about <a href="http://evernote.com">Evernote</a>&#8221; train,  but here I am anyway. I knew it was a nice app, heard all sorts of rave reviews&#8230; but having it on my <a href="http://google.com/phone">phone</a> kinda changes things.</p>




<p>In particular, I think this piece of software is going to let me write more songs.  Leaving aside the question of whether this is a good or bad outcome for the world at large &mdash; as someone who (a) is a songwriter and (b) find himeself blocked more often than not &mdash; it&#8217;s certainly a win for <em>me</em>.</p>




<p>I had the germ of an idea a couple of weeks ago. A lyric, in this case. Sometimes it&#8217;s a fragment of melody, a chord progression, a theme&#8230; in any case, usually quickly forgotten. In <em>this</em>, I grabbed my phone, added a new note, titled it &#8220;Lyrics&#8221;, and added one line:</p>




<blockquote>He&#8217;s been anything but kind</blockquote>




<p>Had an inherent rhythm, suggested a lot of ways to continue. A good start. And now, I wouldn&#8217;t forget it.</p>




<p>Fast forward a couple of days, I have some ideas for more lyrics, as well as some of the tune. New Audio Note time, and I warble this little bit of ridiculousness:</p>




<p><a href="http://roub.net/i/phone-melody.mp3" rel="nofollow">humming and la-ing like an idiot</a></p>




<p>and then some chords:</p>




<p><a href="http://roub.net/i/chords.mp3" rel="nofollow">barely audible chords</a></p>




<p>Not done, maybe not good, but not forgotten. A few days after that, stuck for progress, I headed out to see <a href="http://www.myspace.com/kaylabrownmusic">Kayla Brown</a> play. Well, not <em>see</em>; I sat at the counter, out of site, and just listened. Kayla&#8217;s fantastic, I got inspired, and started free-associating lyric ideas, discussion of lyric ideas, arguments-with-myself, etc. Later, I scanned the scribblings in. Not forgotten:</p>




<p><img src="http://roub.net/i/scribbling.jpg" alt="scribble scribble"  rel="nofollow" /></p>




<p>Started to actually type out the lyrics into Evernote on my laptop (everything synchs everywhere, so all of my reference points were present).</p>




<p>Had most of the verse/chorus figured out, and recorded those to the laptop for future reference:</p>




<p><a href="http://roub.net/i/chorusverse.mp3"  rel="nofollow">almost there</a></p>




<p>Finished it up, took it out and played it, and earlier this week recorded an actual demo. Here it is:</p>




<p><a href="http://paulroub.com/static/audio/Paul%20Roub%20-%20A%20Little%20Bit%20Wiser%20-%20demo.mp3">Paul Roub - A Little Bit Wiser</a></p>




<p>What I liked about the whole process was how unobtrusive and immediate it was. Evernote was my pocket notepad that can handle sound and pictures.  The whole thing just came together so much easier than it has in the past.</p>




<p>Now watch me not write anything new for nine months.</p>




<p><strong>Update:</strong> The song in question, <a href="http://music.paulroub.com/track/a-little-bit-wiser-2">&#8220;A Little Bit Wiser&#8221;</a>, is the third track on my new CD, <a href="http://music.paulroub.com/album/acrophobe">&#8220;Acrophobe&#8221;</a>.  Seemed silly not to include the final version in this post - you can find it right <a href="http://music.paulroub.com/track/a-little-bit-wiser-2">here</a>.</p>

]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Demo: "A Little Bit Wiser"]]></title>
    <link href="http://roub.net/blahg/2010/01/31/demo-a-little-b/"/>
    <updated>2010-01-31T23:29:17-05:00</updated>
    <id>http://roub.net/blahg/2010/01/31/demo-a-little-b</id>
    <content type="html"><![CDATA[<p>Just posted a new demo, <a href="http://paulroub.com/static/audio/Paul%20Roub%20-%20A%20Little%20Bit%20Wiser%20-%20demo.mp3">&#8220;A Little Bit Wiser&#8221;</a>.  </p>




<p>This is not quite a week old, but I think I&#8217;ve mostly found it now, performance-wise. I think this will age well; finding something new every time I sing it.</p>

]]></content>
  </entry>
  
</feed>

