<?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>Mike's Blog &#187; General</title>
	<atom:link href="http://www.mikeheijmans.com/category/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mikeheijmans.com</link>
	<description>A site about everything and nothing at all</description>
	<lastBuildDate>Mon, 27 Sep 2010 04:54:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Using $LOAD_PATH for better library loading in ruby</title>
		<link>http://www.mikeheijmans.com/2010/09/using-load_path-for-better-library-loading-in-ruby/</link>
		<comments>http://www.mikeheijmans.com/2010/09/using-load_path-for-better-library-loading-in-ruby/#comments</comments>
		<pubDate>Mon, 27 Sep 2010 04:54:29 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.mikeheijmans.com/?p=168</guid>
		<description><![CDATA[Today I discovered the beauty of $LOAD_PATH in ruby. Here is the problem: I created a couple of libraries for an app I&#8217;m working on and put them in a ./lib directory and they reference each other like this: ##./lib/lib-a.rb## require &#8216;lib-b&#8217; &#8230;lib does stuff with classes included in lib-b&#8230; ##./lib/lib-b.rb## require &#8216;lib-a&#8217; &#8230;lib does [...]]]></description>
			<content:encoded><![CDATA[<p>Today I discovered the beauty of $LOAD_PATH in ruby.</p>
<p><strong>Here is the problem:</strong></p>
<p>I created a couple of libraries for an app I&#8217;m working on and put them in a ./lib directory and they reference each other like this:</p>
<p>##./lib/lib-a.rb##<br />
require &#8216;lib-b&#8217;<br />
&#8230;lib does stuff with classes included in lib-b&#8230;</p>
<p>##./lib/lib-b.rb##<br />
require &#8216;lib-a&#8217;<br />
&#8230;lib does stuff with classes included in lib-a&#8230;</p>
<p>##main.rb##<br />
require &#8216;./lib/lib-a&#8217;<br />
&#8230;use lib-a which tries using lib-b&#8230;</p>
<p>Well when I&#8217;m in the top-level directory and try including one of the libraries it won&#8217;t work because lib-a.rb will look for lib-b.rb in the current directory and it doesn&#8217;t know to look in ./lib</p>
<p>If I change lib-a.rb to call require &#8216;./lib/lib-b&#8217; it will work from the main script because it knows how to get to lib-b from the top level directory.</p>
<p>The real problem is that the application is bound by that top level directory now. If I try to make a test in ./tests/test.rb like this:</p>
<p>##./tests/test.rb##<br />
require &#8216;../lib/lib-a.rb&#8217;</p>
<p>The problem is that lib-a is looking for lib-b in ./tests/lib/ because of the ./lib reference&#8230;.</p>
<p>The basic problem here is that, even though we are using relative paths, the paths are like absolute paths relative to the current directory. We need to avoid such relative paths as much as absolute paths in our code. How do we do this?</p>
<p><strong>The solution:</strong></p>
<p>The ruby require uses the global variable $LOAD_PATH to figure out where to look for libraries. $LOAD_PATH is an array of directories that you can add to to get your libraries loaded properly without any directory spec in the require statement. Here is an example:</p>
<p>##./lib/lib-a.rb##<br />
require &#8216;lib-b&#8217;</p>
<p>##./lib/lib-b.rb##<br />
require &#8216;lib-a&#8217;</p>
<p>##main.rb##<br />
$LOAD_PATH << &#8216;./lib&#8217;<br />
require &#8216;lib-a&#8217;</p>
<p>##./tests/test.rb##<br />
$LOAD_PATH << &#8216;../lib&#8217;<br />
require &#8216;lib-a&#8217;</p>
<p>This will set up the load path to be passed to everything properly so that ruby can just work its magic. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeheijmans.com/2010/09/using-load_path-for-better-library-loading-in-ruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rsync saves me again</title>
		<link>http://www.mikeheijmans.com/2009/11/rsync-saves-me-again/</link>
		<comments>http://www.mikeheijmans.com/2009/11/rsync-saves-me-again/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 16:42:12 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.mikeheijmans.com/?p=153</guid>
		<description><![CDATA[Thank you rsync for saving my ass again. I have an Apple Mac G5 that I use for running my DAW&#8217;s and music production. About a year ago I reinstalled the OS from scratch and set the partition type as Case-Sensitive. At the time I thought that was clever because I work in linux all [...]]]></description>
			<content:encoded><![CDATA[<p>Thank you rsync for saving my ass again.</p>
<p>I have an Apple Mac G5 that I use for running my DAW&#8217;s and music production. About a year ago I reinstalled the OS from scratch and set the partition type as Case-Sensitive. At the time I thought that was clever because I work in linux all day and linux is case-sensitive. Wow was that a mistake. It is amazing how much case-sensitivity causes headaches on a daily basis. Adobe Photoshop (and most other adobe products) will not install. They require case-insenstive operating systems&#8230; (case-insensitive is the default for OSX). Protools, although doesn&#8217;t require it, doesn&#8217;t seem to work correctly under a case-sensitive OS. Even iTunes has it&#8217;s share of issues. Which is where rsync saved the day for me.</p>
<p>In my iTunes library I ended up with a bunch of files that named the same, some with capital letters and some without.  For example, I have a two files in a directory named: &#8220;Coheed and Cambria &#8211; Welcome Home&#8221; and &#8220;coheed and cambria &#8211; Welcome Home&#8221;. How it got like that I will never know but it really made things tough.</p>
<p>Last week I bought a 1TB SATA drive from Fry&#8217;s and installed it in the G5. I then moved all my project files and audio files and everything important off of the main hard drive to the new one, which I of coarse formatted as case-insensitive preparing for a fresh install of OSX. Well, when I dropped the iTunes folder on the new drive it started copying only to error when it hit the Coheed directory. Because in a case-sensitive environment there were two Welcome Home files (one with capitals and one without) and in a case-insensitive env they are the same file. Needless to say the finder copy failed and I would have had to wade through 19GB of music to find where this happens and clean it up to move everything over.</p>
<p>Welcome rsync to save the day. I opened up my good &#8216;ol terminal and popped off an rsync instead:</p>
<p>rsync -av &#8211;inplace /Users/heijmans/Music/iTunes /Volumes/MusicDrive/</p>
<p>rsync is able to overwrite the files without caring and TADA! all fixed! <img src='http://www.mikeheijmans.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Thank you rsync for being so awesome.</p>
<p>Command expaination:</p>
<p>-av &#8211;inplace means:</p>
<p>a = archive: copy over everything. (there is more to it but you will need to go read the manual)</p>
<p>v = verbose: show me what you are doing</p>
<p>&#8211;inplace = inplace: don&#8217;t copy over to a temp file and then compare the source and dest. Just overwrite the dest file inplace. This is handy if you are running an rsync for the first time and there is nothing to compare. It speeds it up a bit.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeheijmans.com/2009/11/rsync-saves-me-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Resolution List 2009</title>
		<link>http://www.mikeheijmans.com/2009/01/the-resolution-list-2009/</link>
		<comments>http://www.mikeheijmans.com/2009/01/the-resolution-list-2009/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 14:35:05 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.mikeheijmans.com/?p=130</guid>
		<description><![CDATA[I have never made an official New Year&#8217;s Resolution in my life but I really have some stuff I need to do this year and I am hoping that if I write some stuff down, I can do it. So here it goes. This year I resolve to: Exercise 3 times a week. Resume morning [...]]]></description>
			<content:encoded><![CDATA[<p>I have never made an official New Year&#8217;s Resolution in my life but I really have some stuff I need to do this year and I am hoping that if I write some stuff down, I can do it. So here it goes.</p>
<p>This year I resolve to:</p>
<ul>
<li>Exercise 3 times a week.</li>
<li>Resume morning meditation</li>
<li>Pay off my credit cards</li>
<li>Finish at least one personal project that I have started</li>
<li>Write more things down so I don&#8217;t forget as much</li>
<li>Take better care of myself</li>
</ul>
<p>That&#8217;s it. Lets see how that works&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeheijmans.com/2009/01/the-resolution-list-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I want my ruby</title>
		<link>http://www.mikeheijmans.com/2008/11/i-want-my-ruby/</link>
		<comments>http://www.mikeheijmans.com/2008/11/i-want-my-ruby/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 20:04:05 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.mikeheijmans.com/2008/11/i-want-my-ruby/</guid>
		<description><![CDATA[I have been working on a jms consumer for a tibco server that can monitor and do some calculations on the fly based on what is on the bus and I am going insane. I have to write the thing in java and I want remove my eyes with a spork&#8230; I forgot how annoying [...]]]></description>
			<content:encoded><![CDATA[<p>I have been working on a jms consumer for a tibco server that can monitor and do some calculations on the fly based on what is on the bus and I am going insane. I have to write the thing in java and I want remove my eyes with a spork&#8230; I forgot how annoying static languages are and all I want is my ruby language back. Why does tibco jms have to be so java&#8230; I would settle for python at this point. I hate java.</p>
<p>public void static main(String[] args) {<br />
System.out.println(&#8220;Kill me&#8221;); }</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeheijmans.com/2008/11/i-want-my-ruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building my own Talky Boxy</title>
		<link>http://www.mikeheijmans.com/2008/10/building-my-own-talky-boxy/</link>
		<comments>http://www.mikeheijmans.com/2008/10/building-my-own-talky-boxy/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 21:19:23 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.mikeheijmans.com/2008/10/building-my-own-talky-boxy/</guid>
		<description><![CDATA[After much downtime I have been working on a new album in my head and listening to some really good new music that has inspired me at a whole new level. I hear music in my head that I cannot wait to get out and on to tape&#8230;ok the computer but still&#8230; I have decided [...]]]></description>
			<content:encoded><![CDATA[<p>After much downtime I have been working on a new album in my head and listening to some really good new music that has inspired me at a whole new level. I hear music in my head that I cannot wait to get out and on to tape&#8230;ok the computer but still&#8230; I have decided that the vocoder is not going to cut it for what I am hearing. I need a talk box. For those of you who don&#8217;t know what a talk box is I will explain. A talk box, in it&#8217;s simplist form, is a speaker that outputs sound through a tube. You then put the tube in your mouth and use your mouth to shape the sound. Most people feed the talk box with a guitar (like the Bon Jovi song) or a synthesizer (like California Love). How does someone build one you ask? Check out this site: <a href="http://www.mocheez.fr/I%20Play%20The%20Talkbox/Custom.html">http://www.mocheez.fr/I%20Play%20The%20Talkbox/Custom.html</a></p>
<p>I will post my pictures, videos, expierences, etc as I get around to doing the project. As of right now, I need to finish unpacking all my stuff; household as well as recording (Just moved to the valley of silicon). </p>
<p>Just to give an idea of what has inspired me check out these artists:<br />Squarepusher &#8211; <a href="http://www.myspace.com/akais5000"><span class="searchMonkey-displayURL">http://www.myspace.com/akais5000</span></a><br />Daft Punk &#8211; <a href="http://www.myspace.com/daftpunk">http://www.myspace.com/daftpunk</a><br />The Society of Rockets &#8211; <a href="http://www.myspace.com/thesocietyofrockets"><span class="searchMonkey-displayURL">http://www.myspace.com/thesocietyofrockets</span></a><br />Girl Talk &#8211; <a href="http://www.myspace.com/girltalk">http://www.myspace.com/girltalk</a></p>
<p>as well as the usual hardcore, metal, emo, etc influences&#8230;</p>
<p>You can find all the aforementioned music on my myspace profile playlist &#8211; <a href="http://www.myspace.com/deceptivedream">http://www.myspace.com/deceptivedream</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeheijmans.com/2008/10/building-my-own-talky-boxy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Yahoo!</title>
		<link>http://www.mikeheijmans.com/2008/06/yahoo/</link>
		<comments>http://www.mikeheijmans.com/2008/06/yahoo/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 01:21:15 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.mikeheijmans.com/?p=94</guid>
		<description><![CDATA[I am now a Yahoo! That&#8217;s right, for some of you that actually read this and don&#8217;t know, I got laid off at the end of April and in the same day got an interview for Yahoo. I mulled over my offer and interviewed at quite a few other places until I decided to take [...]]]></description>
			<content:encoded><![CDATA[<p>I am now a Yahoo! That&#8217;s right, for some of you that actually read this and don&#8217;t know, I got laid off at the end of April and in the same day got an interview for Yahoo. I mulled over my offer and interviewed at quite a few other places until I decided to take the Yahoo job. The catch is that it is in Sunnyvale <img src='http://www.mikeheijmans.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  and I can commute at 2 hours each way or move. So, I am obviously moving <img src='http://www.mikeheijmans.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>So, now that I have a job and a cube, I need things for my cube to make it nerdy-awesome. I have been putting things on my &#8220;<a href="http://www.mikeheijmans.com/gift-list/">gift list</a>&#8221; (link above ^ ) so that:</p>
<p>A) I don&#8217;t forget and have a reference to all the things that I have found, thought was cool, and wanted.</p>
<p>and</p>
<p>B) So that if any of my beloved readers/fans wants to get me something&#8230; there is a list <img src='http://www.mikeheijmans.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So check it out, you may find something that you want too <img src='http://www.mikeheijmans.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeheijmans.com/2008/06/yahoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Justin.tv!</title>
		<link>http://www.mikeheijmans.com/2008/05/justintv/</link>
		<comments>http://www.mikeheijmans.com/2008/05/justintv/#comments</comments>
		<pubDate>Wed, 21 May 2008 02:34:19 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Videography]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.mikeheijmans.com/?p=91</guid>
		<description><![CDATA[So I have been playing with Justin.tv ever since I interviewed for the position and I must admit that I am addicted. It sucks that they decided not to hire anyone for the position But hey, they got another user out of it! Justin.tv is a live webcasting website that is totally free! Like YouTube [...]]]></description>
			<content:encoded><![CDATA[<p>So I have been playing with Justin.tv ever since I interviewed for the position and I must admit that I am addicted. It sucks that they decided not to hire anyone for the position <img src='http://www.mikeheijmans.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>But hey, they got another user out of it!</p>
<p>Justin.tv is a live webcasting website that is totally free! Like YouTube for live footage. It is the most awesome up and coming application out right now. </p>
<p>You can check me out two ways&#8230; First you can click on the &#8220;<a title="Live Feed" href="http://www.mikeheijmans.com/?page_id=92">Live Feed</a>&#8221; link above or if you want to chat while I am live you can go directly to my live feed on Justin.tv by <a title="justin.tv/parabuzzle" href="http://justin.tv/parabuzzle">clicking here</a>.</p>
<p><img src="http://img.skitch.com/20080521-c6npx62hny2tey73p9qdrb9u5p.jpg" alt="JTV" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeheijmans.com/2008/05/justintv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Down to the Old Pub &#8211; Honor of St. Patty&#8217;s</title>
		<link>http://www.mikeheijmans.com/2008/03/down-to-the-old-pub-honor-of-st-pattys/</link>
		<comments>http://www.mikeheijmans.com/2008/03/down-to-the-old-pub-honor-of-st-pattys/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 00:45:25 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.mikeheijmans.com/?p=79</guid>
		<description><![CDATA[Here is a song by Stephen Lynch called Down to the Old Pub Instead&#8230;]]></description>
			<content:encoded><![CDATA[<p>Here is a song by Stephen Lynch called Down to the Old Pub Instead&#8230;</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/UhG8E2M4-DI&amp;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/UhG8E2M4-DI&amp;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeheijmans.com/2008/03/down-to-the-old-pub-honor-of-st-pattys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Things are Crazy</title>
		<link>http://www.mikeheijmans.com/2008/03/things-are-crazy/</link>
		<comments>http://www.mikeheijmans.com/2008/03/things-are-crazy/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 21:28:55 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.mikeheijmans.com/?p=78</guid>
		<description><![CDATA[The past two weeks have been nuts. I had to work last Saturday and it looks like I will be working this Saturday and Sunday! Damnit! This release cycle is nothing short of a power cycle death march. We had a few weeks to add functionality  and do yet another redesign on some stuff. It was kind [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.jambagroup.org/images/logoblack2.png" border="0" /></p>
<p>The past two weeks have been nuts. I had to work last Saturday and it looks like I will be working this Saturday and Sunday! Damnit!</p>
<p>This release cycle is nothing short of a power cycle death march. We had a few weeks to add functionality  and do yet another redesign on some stuff. It was kind of crazy to begin with but hey, add the fact that the production system has been a little spotty and you have a recipe for watching the release deadline fly right by without fail. So there is that right now. I am struggling to not die.</p>
<p>Also this past couple of weeks, I have been working towards getting better with Java. I have been reading up and experimenting in the Java realm. I want to broaden myself from Systems Admin to Software Developer&#8230; I got involved in some java projects and Sean and I have been working on a new application called JAmba. Well, mostly Sean right now but I am learning. If you want to know more about JAmba go to <a href="http://www.jambagroup.org" target="blank" title="JAmba - The JMS Ambassador">www.jambagroup.org</a> (I built the whole site&#8230;I am proud damnit). Sean and I are planning on using JAmba for the production site in this next release, provided we can work the bugs out. We hope to release the source code and the package on the JAmba site by next week for anyone to use and play with.</p>
<p>The next update comes from the little bit of personal life I have managed to sneak in to this crazy release cycle. At Karate,  as of Wednesday, I learned all four Kata I need for the test in May.  All I need to do is practice and polish and hopefully by June Lisa and I will be donning some yellow around our waist. Also, last Wednesday we had to do a birthday workout because our sensai turned 61, so we had to do 61 pushups, 61 sit-ups, 61 leglifts, 61 crunches&#8230; you get the idea. I am so sore still, though it was fun. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeheijmans.com/2008/03/things-are-crazy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What a Saturday</title>
		<link>http://www.mikeheijmans.com/2008/03/what-a-saturday/</link>
		<comments>http://www.mikeheijmans.com/2008/03/what-a-saturday/#comments</comments>
		<pubDate>Sun, 02 Mar 2008 04:02:03 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.mikeheijmans.com/?p=76</guid>
		<description><![CDATA[So this morning started out early with a Dentist appointment. Luckily it wasn&#8217;t my appointment, it was Lisa&#8217;s. So we got up and went to Oakland for her appointment. On the way there this crazy bitch in a beater car pulled out on to a 4 lane road right in to oncoming traffic. I was [...]]]></description>
			<content:encoded><![CDATA[<p>So this morning started out early with a Dentist appointment. Luckily it wasn&#8217;t my appointment, it was Lisa&#8217;s. So we got up and went to Oakland for her appointment. On the way there this crazy bitch in a beater car pulled out on to a  4 lane road right in to oncoming traffic. I was in the second lane and I had to pull in to the third lane to miss her. The worst part is that she just kept coming! So anyway, we arrived at the office promptly at 9:00. She went in and I hopped on to my laptop. I was determined to get my feet wet in java by trying to smash a bug in the techTribe app. It was simple, add search capability for the site admin to find a user using the user&#8217;s ID. It is a simple database query. Well, come to find out it is already implemented in the backend so all I had to do is create a frontend call for it and format the output. So, no java dev, but all XSL dev. Good news, I got it done before Lisa was out of her appointment&#8230;.</p>
<p>So next we decided to go to REI (Recreational Equipment Inc.) in Berkeley because they are having one of their &#8220;Garage Sales&#8221;. Basically, at REI, you can return almost anything at anytime for any reason, so when they get the used equipment, they have to get rid of it somewhere&#8230; So they have these &#8220;Members Only Garage Sales&#8221;. So we get there at like 10:00 and get tickets to get in for 11:40&#8230; That was how many people were ahead of us! So for an hour and a half we walk around the store and find plenty of fun things to keep us occupied. 11:40 rolls around and we go in. Nothing really to be had worth anything. There was a pair of almost new Evolv climbing shoes for like $40 but there were size 10 <img src='http://www.mikeheijmans.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  and I wear size 11&#8230; SUCK! Oh and there was a pair of beat up climbing shoes that said &#8220;Reason for Return: Didn&#8217;t fit quite right, didn&#8217;t notice for seven years&#8221;&#8230; LMAO, returned seven years later! Amazing! We bought some climbing chalk and left.</p>
<p>So after we left REI, it was time for lunch. Lisa and I decided on Zachary&#8217;s Pizza. The best pizza in the east bay in my opinion. I got lost trying to get there as usual but we finally got there. Oh Zachary&#8217;s Deep Dish, how I love thee! We order the Mushroom, Spinach, Chicken pizza. It was good but I think that Lisa is right when she says that deep dish needs to be a &#8220;Meat Pizza&#8221; with sausage and pepperoni and such. It really makes the hearty flavor.</p>
<p>We left Pizza heaven with bellies full and decided to go for a walk down the strip there. We went in to a shop that had awesome Buddhist items for a garden and in the home. Then we went in to a furniture shop that had no beds&#8230; hmm&#8230; Lastly there was &#8220;Rosebud Gallery&#8221;&#8230; This place was a work of art. It was a junk shop with gallery prices&#8230; what a joke. There were a lot of awesome things but it was just too expensive for what it was.</p>
<p>We left and went to Wal-Mart for some laundry detergent&#8230;but they were sold out of Roma Detergent in two different stores&#8230; am I missing something?! Sold out?! Seriously!? So we left and headed back for Alameda. On Park St, we found the Alameda Video Game Exchange. They had everything from Atari to PS3! It was awesome!</p>
<p>Lastly, we went to Fudgelato and got some awesome Gelato. I got Chocolate Hazelnut with Dark Chocolate and Lisa got something with coconut and mint. We came home and passed out!</p>
<p>What a Saturday!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeheijmans.com/2008/03/what-a-saturday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

