<?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>Jacob Allred &#187; Free Stuff</title>
	<atom:link href="http://www.jacoballred.com/category/free-stuff/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jacoballred.com</link>
	<description></description>
	<lastBuildDate>Fri, 30 Jul 2010 02:07:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>CloudFlare Rocks!</title>
		<link>http://www.jacoballred.com/free-stuff/cloudflare-rocks/</link>
		<comments>http://www.jacoballred.com/free-stuff/cloudflare-rocks/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 16:36:11 +0000</pubDate>
		<dc:creator>Jacob Allred</dc:creator>
				<category><![CDATA[Free Stuff]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[My Sites]]></category>
		<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://www.jacoballred.com/?p=500</guid>
		<description><![CDATA[I recently got invited to try out CloudFlare, a new free service in closed beta. I checked out the homepage and was greeted with a “Wouldn’t it be cool if your website were protected by ninjas?” header. Why, yes, that would be cool. So, not really understanding exactly what it was, I signed up and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jacoballred.com/wp-content/uploads/2010/07/cloudflare-logo.png"><img class="size-full wp-image-501 alignright" title="CloudFlare Logo" src="http://www.jacoballred.com/wp-content/uploads/2010/07/cloudflare-logo.png" alt="" width="305" height="50" /></a>I recently got invited to try out <a href="http://www.cloudflare.com">CloudFlare</a>, a new free service in closed beta. I checked out the homepage and was greeted with a “Wouldn’t it be cool if your website were protected by ninjas?” header. Why, yes, that would be cool.</p>
<p>So, not really understanding exactly what it was, I signed up and configured it for the <a href="http://www.fakenamegenerator.com">Fake Name Generator</a>.</p>
<p>After some poking around and letting it do its thing for a few days, this is what I’ve discovered it does for me:</p>
<ul>
<li><strong>Provides a free DNS management.</strong> This is included for free with many registrars, but it just so happened that the domain I’m trying this out on didn’t come with DNS management so I’ve been paying $10 a year for it. This alone makes CloudFlare worth using for me.</li>
<li><strong>Serves my content on a CDN-like intrastructure.</strong> This makes my site faster to some users, which is always a good thing.</li>
<li><strong>Caches my static content (like images and JavaScript).</strong> This dramatically reduces my server load, and makes my site faster. My LAMP server with only 1GB of RAM is currently serving about 100,000 pageviews per day <em>and</em> running millions of queries in offline processes. With CloudFlare, my load average rarely goes above 0.10.</li>
<li><strong>Blocks bad guys.</strong> This is a <em>huge</em> deal for me. Everyone and their mom thinks it is okay to scrape my site for data. Bots love to hit my site to try to find exploits. CloudFlare does a great job at identifying these people and blocking them for me, or providing a way for them to enter a captcha to prove they aren’t a bot.</li>
<li><strong>Provides geolocation data on all visitors.</strong> I haven’t started using this yet, but CloudFlare adds a request header with the visitor’s geographic location. This makes it easier to target content to visitors from certain parts of the world.</li>
<li><strong>Makes me more profitable.</strong> All around, CloudFlare has made my business more profitable. My site requires less server resources, which means I can keep my site running on my relatively cheap tiny server. Fewer bots are loading my ads, which means my click thru rates are higher, which means I get paid more. My pages respond faster, which means I’m ranked higher in the search engines, which means I get more visitors.</li>
</ul>
<p>One problem I ran into, however, is occasionally a screen scraper gets through their blocks and starts hitting my site. In the past I would use iptables to block them, but the way CloudFlare works makes that impossible (at least with my limited knowledge of iptables). CloudFlare provides a way to block a specific IP, but it can take several minutes to go into effect.</p>
<p>The solution I came up with is to use Apache to give visitor’s from the offending IP a 403 error:</p>
<pre>&lt;VirtualHost *&gt;

 SetEnvIf CF-Connecting-IP 98.17.241.185 GoAway=1

 &lt;Directory "/path/to/your/website"&gt;
 Order allow,deny
 Allow from all
 Deny from env=GoAway
 &lt;/Directory&gt;

&lt;/VirtualHost&gt;
</pre>
<p>This snippet, properly placed in the Apache config file, will cause Apache to look at a header set by CloudFlare, and if it matches the offending IP (in this case 98.17.241.185), it denies access to the site. You can add a nearly unlimited number of SetEnvIf statements to block any number of IPs.</p>
<p>Anyways, if you get an invite to CloudFlare, check it out! It is definitely worth it!</p>
<pre></pre>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.jacoballred.com/web-dev/dos-using-a-single-client/" rel="bookmark" class="crp_title">DoS using a single client</a></li><li><a href="http://www.jacoballred.com/my-sites/save-money-and-make-your-site-faster-using-a-cdn/" rel="bookmark" class="crp_title">Save money AND make your site faster using a CDN</a></li><li><a href="http://www.jacoballred.com/free-stuff/protecting-your-server-with-denyhosts/" rel="bookmark" class="crp_title">Protecting Your Server with DenyHosts</a></li><li><a href="http://www.jacoballred.com/my-sites/unexpected-traffic/" rel="bookmark" class="crp_title">Unexpected Traffic</a></li><li><a href="http://www.jacoballred.com/my-sites/php-mysql-or-mysqli/" rel="bookmark" class="crp_title">PHP: mysql or mysqli?</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.jacoballred.com/free-stuff/cloudflare-rocks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Protecting Your Server with DenyHosts</title>
		<link>http://www.jacoballred.com/free-stuff/protecting-your-server-with-denyhosts/</link>
		<comments>http://www.jacoballred.com/free-stuff/protecting-your-server-with-denyhosts/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 16:10:21 +0000</pubDate>
		<dc:creator>Jacob Allred</dc:creator>
				<category><![CDATA[Free Stuff]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jacoballred.com/?p=497</guid>
		<description><![CDATA[Yesterday I noticed my server’s load average was a bit higher than usual. Normally when this happens it mean someone is screen scraping the Fake Name Generator, so I went and started reviewing the logs trying to figure out who it was so I could block them. Disappointingly, I couldn’t find anybody that was scraping [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I noticed my server’s load average was a bit higher than usual. Normally when this happens it mean someone is screen scraping the <a href="http://www.fakenamegenerator.com">Fake Name Generator</a>, so I went and started reviewing the logs trying to figure out who it was so I could block them.</p>
<p>Disappointingly, I couldn’t find anybody that was scraping my site, which means I had to dig deeper. The next step was to use <em>top</em> to figure out what processes are stealing all my resources. To my surprise (and exceedingly great alarm) I saw that there were about a dozen <em>sshd</em> processes running. For those that are not Linux server savvy, there should not be about a dozen <em>sshd</em> processes running.</p>
<p>SSH is the protocol that Linux server admins use to connect to their servers. When connecting, an <em>sshd</em> process will run. When a dozen are showing up, that means a dozen people are connected or trying to connect, which is very very disturbing for a server like mine where I’m the only one that should ever be on it.</p>
<p>I quickly turned to the logs and found thousands of failed login attempts. Someone was trying to hack my box. Yikes!</p>
<p>I quickly used <em>iptables</em> to block the most flagrantly offending IP, but I knew that wouldn’t hold back a committed attacker. Enter my hero: <a href="http://denyhosts.sourceforge.net/">DenyHosts</a>!</p>
<p>DenyHosts is a free chunk of code written in Python that periodically scans your log files, determines if someone looks like they are trying to break in, and blocks them. If you are really paranoid then you can even have it talk to other servers to find out who is trying to hack them, so you can preemptively block the bad guys.</p>
<p>Installation and configuration literally took about 3 minutes, and is even easier to setup if you are using Ubuntu or Linux Mint because it is in the repos. As soon as I started it all the bad guys were blocked and my load averages started to drop. I highly recommend it for anyone that administers Linux servers.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.jacoballred.com/free-stuff/cloudflare-rocks/" rel="bookmark" class="crp_title">CloudFlare Rocks!</a></li><li><a href="http://www.jacoballred.com/web-dev/all-the-domains-in-the-world/" rel="bookmark" class="crp_title">All The Domains in the World</a></li><li><a href="http://www.jacoballred.com/web-dev/dos-using-a-single-client/" rel="bookmark" class="crp_title">DoS using a single client</a></li><li><a href="http://www.jacoballred.com/my-sites/save-money-and-make-your-site-faster-using-a-cdn/" rel="bookmark" class="crp_title">Save money AND make your site faster using a CDN</a></li><li><a href="http://www.jacoballred.com/linux/meld-diff/" rel="bookmark" class="crp_title">meld &gt; diff</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.jacoballred.com/free-stuff/protecting-your-server-with-denyhosts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Atrium</title>
		<link>http://www.jacoballred.com/free-stuff/open-atrium/</link>
		<comments>http://www.jacoballred.com/free-stuff/open-atrium/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 03:22:14 +0000</pubDate>
		<dc:creator>Jacob Allred</dc:creator>
				<category><![CDATA[Free Stuff]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://www.jacoballred.com/?p=382</guid>
		<description><![CDATA[I’ve recently discovered Open Atrium. I love it! Built on Drupal, this “intranet in a box” is the perfect solution for my company. These are the things I love about it: Works without a lot of configuration, but is still highly configurable in case you need it to do something special. Allows you to define [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve recently discovered <a href="http://openatrium.com/">Open Atrium</a>. I love it!</p>
<p>Built on <a href="http://www.drupal.org">Drupal</a>, this “intranet in a box” is the <em>perfect</em> solution for my company.</p>
<p><strong>These are the things I love about it:</strong></p>
<ol>
<li>Works without a lot of configuration, but is still highly configurable in case you need it to do something special.</li>
<li>Allows you to define groups and limit access to each group. This means I can have a “The Awkward Turtle” group and only allow myself and my wife (we’re the only ones working on it) to even know the group exists, and I can also have a “Creative Barcodes” group and allow myself, my wife, and our graphic designer Anthony to see it.</li>
<li>Gives you a dashboard with all of the pertinent information from all of the groups that you are a member of. You also have a group dashboard that only shows you the important information for that specific group.</li>
<li>You can, on a group-by-group basis, enable several awesome included features:
<ol>
<li>A blog</li>
<li>A notebook (sort of like a wiki)</li>
<li>A calendar (even supports iCal)</li>
<li>A case tracker (for keeping track of feature requests and bugs)</li>
<li>A shoutbox (good for microblogging)</li>
</ol>
</li>
<li>It looks great and is very easy for an end-user (or an admin) to figure it out.</li>
</ol>
<p><strong>There are, however, a few things I’m not terribly excited about:</strong></p>
<ol>
<li>Documentation is a bit lacking, but that isn’t unexpected for beta software.</li>
<li>Doesn’t work on PHP 5.3. I had to setup Apache to run both 5.3 and 5.2 to get it working. This wasn’t really surprising though, as a lot of Drupal stuff has problems with PHP 5.3.</li>
</ol>
<p>Is it perfect? Not yet, but I think someday soon it will be.</p>
<p>For an example Open Atrium site, check out their own <a href="https://community.openatrium.com/">community pages</a>.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.jacoballred.com/rants/yodlee-oncenter/" rel="bookmark" class="crp_title">Yodlee OnCenter</a></li><li><a href="http://www.jacoballred.com/free-stuff/cloudflare-rocks/" rel="bookmark" class="crp_title">CloudFlare Rocks!</a></li><li><a href="http://www.jacoballred.com/my-sites/svg-barcode-generator/" rel="bookmark" class="crp_title">SVG Barcode Generator</a></li><li><a href="http://www.jacoballred.com/free-stuff/songbird/" rel="bookmark" class="crp_title">Songbird</a></li><li><a href="http://www.jacoballred.com/electronics/verizon-xv6700/" rel="bookmark" class="crp_title">Verizon XV6700</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.jacoballred.com/free-stuff/open-atrium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle rocks!</title>
		<link>http://www.jacoballred.com/free-stuff/oracle-rocks/</link>
		<comments>http://www.jacoballred.com/free-stuff/oracle-rocks/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 01:02:02 +0000</pubDate>
		<dc:creator>Jacob Allred</dc:creator>
				<category><![CDATA[Free Stuff]]></category>
		<category><![CDATA[My Sites]]></category>

		<guid isPermaLink="false">http://www.jacoballred.com/?p=343</guid>
		<description><![CDATA[Curtis, an Oracle employee, contacted me a week or two ago to ask for permission to use data from the Fake Name Generator at Oracle. I freely license the data under both a Creative Commons license and the GPLv3. While these licenses are wonderful licenses for people working on open projects, they leave a bit [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jacoballred.com/wp-content/uploads/2010/02/IMGP3052.jpg"><img class="alignleft size-medium  wp-image-344" title="Goodies from Oracle" src="http://www.jacoballred.com/wp-content/uploads/2010/02/IMGP3052-232x300.jpg" alt="" width="232" height="300" /></a>Curtis, an <a href="http://www.oracle.com">Oracle</a> employee, contacted me a week or two ago to ask for permission to use data from the <a href="http://www.fakenamegenerator.com/order.php">Fake Name Generator</a> at Oracle. I freely license the data under both a <a href="http://creativecommons.org/licenses/by-sa/3.0/us/">Creative Commons</a> license and the <a href="http://www.gnu.org/licenses/">GPLv3</a>. While these licenses are wonderful licenses for people working on open projects, they leave a bit to be desired for closed-source commercial projects.</p>
<p>Because I like Oracle and I know they aren’t going to do anything nefarious with my data, I promptly gave Curtis and Oracle permission to use the data from the Fake Name Generator under the CC license without the “Share Alike” condition. This basically gives them permission to use it however they want as long as they give me credit.</p>
<p>As a “thank you”, Curtis sent me a couple fun goodies: an Oracle pen, hat, t-shirt, and <span style="text-decoration: line-through;">coffee</span> hot cocoa mug. I’m looking forward to the next casual Friday at work!</p>
<p>Just one more reason I love Oracle. :)</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.jacoballred.com/free-stuff/cloudflare-rocks/" rel="bookmark" class="crp_title">CloudFlare Rocks!</a></li><li><a href="http://www.jacoballred.com/my-sites/unexpected-traffic/" rel="bookmark" class="crp_title">Unexpected Traffic</a></li><li><a href="http://www.jacoballred.com/diy/jumbo-jenga/" rel="bookmark" class="crp_title">Jumbo Jenga</a></li><li><a href="http://www.jacoballred.com/linux/eureka-i-got-vpn-working-in-ubuntu/" rel="bookmark" class="crp_title">Eureka! I got VPN working in Ubuntu!</a></li><li><a href="http://www.jacoballred.com/money/conduit-toolbars/" rel="bookmark" class="crp_title">Conduit Toolbars</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.jacoballred.com/free-stuff/oracle-rocks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Songbird</title>
		<link>http://www.jacoballred.com/free-stuff/songbird/</link>
		<comments>http://www.jacoballred.com/free-stuff/songbird/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 01:56:37 +0000</pubDate>
		<dc:creator>Jacob Allred</dc:creator>
				<category><![CDATA[Free Stuff]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://www.jacoballred.com/?p=282</guid>
		<description><![CDATA[I have recently become a huge fan of Songbird, a free multi-platform media player based on Mozilla’s XULRunner. If you are anything like me, you may be asking yourself what makes Songbird special or worth your time. Why not just keep using iTunes, VLC, or Windows Media Player? Here are my reasons for choosing Songbird [...]]]></description>
			<content:encoded><![CDATA[<p>I have recently become a <em>huge</em> fan of <a href="http://getsongbird.com/">Songbird</a>, a free multi-platform media player based on Mozilla’s <a href="https://developer.mozilla.org/En/XULRunner">XULRunner</a>.</p>
<p>If you are anything like me, you may be asking yourself what makes Songbird special or worth your time. Why not just keep using iTunes, VLC, or Windows Media Player? Here are my reasons for choosing Songbird over the competition:</p>
<ul>
<li>It runs on my Windows 7 and Ubuntu 9.10 computers with the exact same interface and feature set.</li>
<li>Highly configurable playlists. For example, I can make a dynamic playlist that only shows songs that: have been rated 3 or more stars, haven’t been skipped more than 5 times, are at least 3.5 minutes long, and were produced between 1990 and 2000.</li>
<li>With a minor tweak, Songbird will save my song ratings in the MP3 file itself. This means I can put a song in my <a href="https://www.dropbox.com/referrals/NTE2NTEwNTc5">Dropbox</a>, rate it at work, and by the time I get home the rating will be there, too.</li>
<li>Speaking of tweaks, Songbird is as tweakable and configurable as Firefox. You can get extensions, themes, adjust internal settings that most people don’t care about, change how the title bar works.</li>
<li>Has an internal web browser that knows when you’re on a page with music. This means you can quickly and easily download free music from places like <a href="http://www.last.fm/">Last.fm</a> and have your new songs instantly imported into your music library.</li>
<li>Also because it has an internal web browser, I can open <a href="http://www.slacker.com">Slacker</a> or <a href="http://www.pandora.com">Pandora</a> in Songbird and save myself having an extra tab in Firefox. (Bonus: If Flash starts acting up in Ubuntu, I just have to restart Songbird and not my whole browser)</li>
</ul>
<p><span id="more-282"></span>Okay, so now you are all stoked about Songbird. You want to load it up in Ubuntu 9.10 and get grooving to your awesome Vanilla Ice collection. “Oh no,” you say to yourself, “Songbird isn’t in the Ubuntu repository!” That is where <a href="http://www.getdeb.net/welcome/">GetDeb</a> comes in.</p>
<p>GetDeb is a third-party, unofficial repository of Ubuntu packages. It allows you to get updated software for Ubuntu sooner than waiting for it to make it through the official channels, and saves you hours of trying to get random software to compile from source. I love it so much that <a href="http://www.corbanworks.com">Corban Works</a> has become a €5/month supporter.</p>
<p>Installation of GetDeb is easy and well-documented. If you aren’t a current GetDeb user, please follow the <a href="http://www.getdeb.net/updates/Ubuntu/all#how_to_install">installation instructions</a>.</p>
<p>Once GetDeb is installed, pull up the terminal and type: <strong></strong></p>
<blockquote><p><strong>sudo apt-get install songbird</strong></p></blockquote>
<p>That’s it! You now have Songbird!</p>
<p>Unless you are using Windows. Or a Mac. Or Fedora. Or some other OS. If you are one of <em>those</em> people, you’ll have to go to <a href="http://getsongbird.com/">Songbird’s site</a> and download it straight from them.</p>
<p>I recommend a few addons to make your experience better (these work on any OS!):</p>
<ul>
<li><a href="http://addons.songbirdnest.com/addon/5">Adblock Plus</a>: Blocks ads while using the browser part of Songbird.<a href="http://addons.songbirdnest.com/addon/5"> </a></li>
<li><a href="http://addons.songbirdnest.com/addon/1425">Amazon Fetcher</a>: Automatically downloads album art from Amazon.</li>
<li><a href="http://addons.songbirdnest.com/addon/42">Birdtitle</a>: Lets you configure what shows up in Songbird’s title bar (so you can, for example, have the artist and song title instead of “Songbird”).</li>
<li><a href="http://addons.songbirdnest.com/addon/1754">ubuntu-notifyOSD</a>: Ties in with Ubuntu’s notifyOSD library so you can see little bubbles in the corner of your screen whenever you change songs.</li>
<li><a href="http://addons.songbirdnest.com/addon/21">MMKeys (32-bit)</a> / <a href="http://addons.songbirdnest.com/addon/1475">MMKeys (64-bit)</a>: Makes the multimedia keys on your keyboard work. If you didn’t explicitly download the 64-bit version of Ubuntu, then you are probably using the 32-bit version. But don’t worry: if you install the wrong one it won’t break anything, it just won’t work.</li>
</ul>
<p>If you want Songbird to save your ratings in your MP3 files, then you need to make one more tweak:</p>
<ol>
<li>Open a browser tab in Songbird, then go to <strong>about:config</strong></li>
<li>Click the <strong>I’ll be careful, I promise!</strong> button</li>
<li>In the filter box, enter <strong>songbird.metadata.ratings.enableWriting</strong></li>
<li>Double-click <strong>false</strong> to change it to <strong>true</strong></li>
<li>Close the tab</li>
</ol>
<p>Oh, almost forgot! If you want Flash to work in Songbird on Ubuntu 9.10, you can run this command in terminal:</p>
<blockquote><p><strong>sudo cp /usr/lib/mozilla/plugins/* /usr/share/Songbird/plugins/</strong></p></blockquote>
<p>Do you have a Songbird tip I missed? Please leave it in the comments!</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.jacoballred.com/my-sites/my-first-firefox-add-on/" rel="bookmark" class="crp_title">My First Firefox Add-on</a></li><li><a href="http://www.jacoballred.com/linux/eureka-i-got-vpn-working-in-ubuntu/" rel="bookmark" class="crp_title">Eureka! I got VPN working in Ubuntu!</a></li><li><a href="http://www.jacoballred.com/electronics/ooooo-big-hard-drive/" rel="bookmark" class="crp_title">Ooooo.… Big hard drive.…</a></li><li><a href="http://www.jacoballred.com/web-dev/making-eclipse-for-php-useful/" rel="bookmark" class="crp_title">Making Eclipse for PHP Useful</a></li><li><a href="http://www.jacoballred.com/free-stuff/open-atrium/" rel="bookmark" class="crp_title">Open Atrium</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.jacoballred.com/free-stuff/songbird/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Be The Match Registry</title>
		<link>http://www.jacoballred.com/free-stuff/be-the-match-registry/</link>
		<comments>http://www.jacoballred.com/free-stuff/be-the-match-registry/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 15:35:47 +0000</pubDate>
		<dc:creator>Jacob Allred</dc:creator>
				<category><![CDATA[Free Stuff]]></category>

		<guid isPermaLink="false">http://www.jacoballred.com/?p=253</guid>
		<description><![CDATA[Just got an email letting me know that I’m officially part of the Be The Match Registry (formally known as the National Marrow Donor Program). I signed up a few weeks back when there was an offer to waive the normal registration costs (the offer may still be valid). After a week or so of [...]]]></description>
			<content:encoded><![CDATA[<p>Just got an email letting me know that I’m officially part of the <a href="http://www.marrow.org/"><em>Be The Match Registry</em></a> (formally known as the <em>National Marrow Donor Program</em>).</p>
<p>I signed up a few weeks back when there was an offer to <a href="http://www.fatwallet.com/forums/free-stuff/948694?highlight_key=y&amp;keyword1=marrow">waive the normal registration costs</a> (the offer may still be valid). After a week or so of waiting, a test kit arrived containing 3 swab sticks. I rubbed them in my mouth as instructed, attached the included bio-hazard label, and dropped it in the mail. A few days later I received an email letting me know that they received my swabs.</p>
<p>Then nothing for a few weeks.</p>
<p>Finally, today I received an email letting me know that I’m officially in the registry and am eligible to donate if called upon.</p>
<p>My wife <span style="text-decoration: line-through;">was</span> is a little concerned. However, the website has a <a href="http://www.marrow.org/JOIN/Myths_&amp;_Facts_about_Marrow_Don/index.html">myths about donating</a> section that clears up some of the misconceptions that many people (including myself) have about donating bone marrow.</p>
<p>For example, the actual procedure is painless due to anesthetics. No bone is removed, just the marrow. Full recovery from donating is about 3 weeks, but the worst experienced by most donators is over after a day or two. The procedure is completely free for the person donating (except for the time commitment).</p>
<p>Anyways, I’m pretty comfortable with the situation and I’m not forced to donate even if I am found to be a match, so my wife and I can cross that bridge when and if we ever come to it.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.jacoballred.com/money/ridiculous-ad-networks/" rel="bookmark" class="crp_title">Ridiculous Ad Networks</a></li><li><a href="http://www.jacoballred.com/rants/swaptree-backs-down/" rel="bookmark" class="crp_title">Swaptree backs down</a></li><li><a href="http://www.jacoballred.com/money/ssn-registry/" rel="bookmark" class="crp_title">SSN Registry</a></li><li><a href="http://www.jacoballred.com/random/connecticut/" rel="bookmark" class="crp_title">Connecticut</a></li><li><a href="http://www.jacoballred.com/goals/i-made-it/" rel="bookmark" class="crp_title">I made it!</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.jacoballred.com/free-stuff/be-the-match-registry/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A Local Vacation</title>
		<link>http://www.jacoballred.com/free-stuff/a-local-vacation/</link>
		<comments>http://www.jacoballred.com/free-stuff/a-local-vacation/#comments</comments>
		<pubDate>Thu, 28 May 2009 20:06:04 +0000</pubDate>
		<dc:creator>Jacob Allred</dc:creator>
				<category><![CDATA[Free Stuff]]></category>

		<guid isPermaLink="false">http://www.jacoballred.com/?p=80</guid>
		<description><![CDATA[I was driving home the other day when my cell phone rang. I didn’t recognize the number, but I always answer my phone. It was some lady from Colonial Crossings of Williamsburg calling to let me know I won a 2 day/1 night vacation in Williamsburg. I was like, uh, lady, I live in Williamsburg. [...]]]></description>
			<content:encoded><![CDATA[<p>I was driving home the other day when my cell phone rang. I didn’t recognize the number, but I always answer my phone. It was some lady from Colonial Crossings of Williamsburg calling to let me know I won a 2 day/1 night vacation in Williamsburg. I was like, uh, lady, I live in Williamsburg.</p>
<p>No you don’t, you live in Suffolk, she replied. I was like, no, I’m pretty sure I know where I live. I live in Williamsburg. She was like, oh, well we’ll give you $50, too. And a 3 day/2 night vacation you can use somewhere else. I was like, oh really? What do I have to do? She said I just have to listen to a 90 minute presentation about Colonial Crossings of Williamsburg.</p>
<p>Ah hah! A timeshare! Becca and I are saving for a house, so I had no fear of getting talked into purchasing, so after talking it over with her, we decided to go for it.</p>
<p>Then the “gotchas” started showing up. They required a $10 reservation fee. And $5 hotel tax (which actually ended up being $7.50, and almost $15 if we didn’t catch the billing error). The additional vacation was just another timeshare. And although we were led to believe that we’d be staying at the resort, we actually were put up in one of the shiftiest hotels in town. The carpets had dirt clumps on them, we found a child’s toy next to the bed, and the towel rack literally fell off of the wall. Shifty.</p>
<p>I later discovered (thanks to Google) that this is a sales technique. Once at the presentation, the salesperson can say somehing like, “Now, wouldn’t you rather spend your vacation here instead of a hotel?” at which point you think “wow, my hotel room really did suck” and you plop down $35,000.</p>
<p>Oh I didn’t get to the $35,000 part yet? Well, that is how much your fancy 1-week at the resort will cost. Plus quarterly maintenance fees that can go up in price without notice. Plus a yearly fee if you want the book that lets you trade your week at different resorts. Plus a few hundred dollars if you do want to trade your week at another resort. And that is just for the place you sleep. What about food? Souveniers? Admission to attractions? Trust me, it is not cheaper to buy a resort (at least not at the retail price).</p>
<p>But yes, we got our $50, so we came out ahead. I had to sign for my money, and was able to see what others got. Some were being paid as much as $120 to come listen to the presentation. I guess I should have held out for more money.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.jacoballred.com/random/new-lyrics-for-flavor-of-the-week-by-american-hi-fi/" rel="bookmark" class="crp_title">New Lyrics for Flavor of the Week by American Hi-Fi</a></li><li><a href="http://www.jacoballred.com/random/hand-held-shower-heads-rock/" rel="bookmark" class="crp_title">Hand-held shower heads rock</a></li><li><a href="http://www.jacoballred.com/goals/unemployment-negotiations/" rel="bookmark" class="crp_title">Unemployment negotiations</a></li><li><a href="http://www.jacoballred.com/random/hit-and-run/" rel="bookmark" class="crp_title">Hit and Run</a></li><li><a href="http://www.jacoballred.com/goals/cost-of-food-for-a-family-of-two/" rel="bookmark" class="crp_title">Cost of Food for a Family of Two</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.jacoballred.com/free-stuff/a-local-vacation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New ABA number search site</title>
		<link>http://www.jacoballred.com/free-stuff/new-aba-number-search-site/</link>
		<comments>http://www.jacoballred.com/free-stuff/new-aba-number-search-site/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 00:49:42 +0000</pubDate>
		<dc:creator>Jacob Allred</dc:creator>
				<category><![CDATA[Free Stuff]]></category>
		<category><![CDATA[My Sites]]></category>

		<guid isPermaLink="false">http://www.jacoballred.com/?p=54</guid>
		<description><![CDATA[I’ve launched (or rather, my company has launched) a new site that makes it easy to look up banks, routing numbers, ABA numbers, and other ABA related info. ABA Number Lookup is super easy to use and can be incredibly useful. Lets say you need your bank’s routing number, but they have a thousand help [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve launched (or rather, <a href="http://www.corbanworks.com">my company</a> has launched) a new site that makes it easy to look up banks, routing numbers, ABA numbers, and other ABA related info.</p>
<p><a href="http://abanumberlookup.com">ABA Number Lookup</a> is super easy to use and can be incredibly useful. Lets say you need your bank’s routing number, but they have a thousand help pages and the routing number is buried deep within them. Go to ABA Number Lookup, punch in the bank name, and voila! Every routing number used by the bank is displayed. An ACH services phone number for the bank if displayed as well in case you need/want to call to verify the number.</p>
<p>I am also working on a free API that will go along with the site. The API will allow you to make a query against my database for a specific ABA/routing number. If the routing number is found, it will return the appropriate bank information. If it isn’t found, then you know the number is invalid. Many places charge as much as $0.50 per query for this data! Insane, right? The data is free so we are going to provide access to the data for free, too.</p>
<p>Have a suggestion or find a problem? Please leave a comment!</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.jacoballred.com/my-sites/aba-number-lookup/" rel="bookmark" class="crp_title">ABA Number Lookup</a></li><li><a href="http://www.jacoballred.com/money/ssn-registry/" rel="bookmark" class="crp_title">SSN Registry</a></li><li><a href="http://www.jacoballred.com/my-sites/my-first-firefox-add-on/" rel="bookmark" class="crp_title">My First Firefox Add-on</a></li><li><a href="http://www.jacoballred.com/my-sites/pic-code-site/" rel="bookmark" class="crp_title">PIC Code Site</a></li><li><a href="http://www.jacoballred.com/random/weighted-randomness-using-php-and-mysql/" rel="bookmark" class="crp_title">Weighted Randomness using PHP and MySQL</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.jacoballred.com/free-stuff/new-aba-number-search-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Gift Cards</title>
		<link>http://www.jacoballred.com/money/free-gift-cards/</link>
		<comments>http://www.jacoballred.com/money/free-gift-cards/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 22:16:30 +0000</pubDate>
		<dc:creator>Jacob Allred</dc:creator>
				<category><![CDATA[Free Stuff]]></category>
		<category><![CDATA[Money]]></category>

		<guid isPermaLink="false">http://www.jacoballred.com/?p=51</guid>
		<description><![CDATA[Over the past several months I have been able to save a good amount of money by using free gift cards. NuRide According to NuRide’s website: NuRide is the nation’s largest online ridesharing community where members are rewarded for sharing rides. NuRide is free to join and free to use and is supported by sponsors [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past several months I have been able to save a good amount of money by using free gift cards.</p>
<h2>NuRide</h2>
<p>According to <a href="http://www.nuride.com">NuRide’s website</a>:</p>
<blockquote><p>NuRide is the nation’s largest online ridesharing community where members are rewarded for sharing rides. NuRide is free to join and free to use and is supported by sponsors who reward NuRide members for reducing global warming, traffic  congestion and energy consumption.</p></blockquote>
<p>Since I started using NuRide in June, I’ve received the following awards:</p>
<ul>
<li>$5 Starbucks gift card</li>
<li>$5 Starbucks gift card</li>
<li>$10 Old Navy gift card</li>
<li>$10 T.G.I. Friday’s gift card</li>
<li>$5 Burger King gift card</li>
</ul>
<p>That is <em>$35 </em>just for carpooling! That isn’t even counting the savings in wear and tear on my vehicle because I only drive every other day now.</p>
<p>In addition to the gift cards, I was entered into a drawing for a $250 gas card (I didn’t win), and am currently entered into a drawing for a $500 Visa gift card.</p>
<h2>MyPoints</h2>
<p>According to <a href="http://www.mypoints.com">Mypoints’ website</a>:</p>
<blockquote><p>Earn Points when you shop, book travel, play online games, take surveys, search the Web, and do other easy, everyday things.</p>
<p>Redeem your Points for gift cards, online certificates, gas cards, travel, dining and more– all from your favorite brands. It’s easy, fast and free!</p></blockquote>
<p>I’ve been using MyPoints since 1999, and have earned dozens of rewards without spending a dime more than I would’ve already have spent. Just in the past few months I’ve earned:</p>
<ul>
<li>$50 Wal-Mart gift card</li>
<li>$25 Wal-Mart gift card</li>
<li>$25 Wal-Mart gift card</li>
</ul>
<p>That is <em>$100</em> in free money just for going through their website when I buy stuff and for responding to emails.</p>
<h2>My Coke Rewards</h2>
<p>I started using <a href="http://www.mycokerewards.com">My Coke Rewards</a> a few months back when I started buying Fresca on a fairly regular basis. Basically, you buy Coke products (Coke, Fresca, Minute Maid juice, Poweraide…), get the code from the bottle, enter it online, and claim a reward.</p>
<p>I’ve since stopped buying soda almost entirely, but even with the few points I pick up now and then from friends and family, I’ve earned the following:</p>
<ul>
<li>Free 12-pack of Coke</li>
<li>Free 12-pack of Coke</li>
<li>$2 Subway gift card</li>
<li>$2 Subway gift card</li>
<li>$2 Subway gift card</li>
<li>$2 Subway gift card</li>
<li>$2 Subway gift card</li>
</ul>
<p>Again, that is around <em>$18 </em>of free stuff just by being slightly annoying and bugging my co-workers, fiancee, and friends to give me their bottle caps.</p>
<h2>Work</h2>
<p>At work I jokingly said that I should get a reward for performing a task that is outside of my normal job requirements. I wasn’t expecting them to actually get me anything, but they got me (and everyone else that participated in the task) a:</p>
<ul>
<li>$25 Shell gas card</li>
</ul>
<h2>Summary</h2>
<p>Individually it may not seem like a lot, but for just a tiny bit of effort I’ve managed to get around <em>$175</em> in gift cards.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.jacoballred.com/goals/saving-for-a-goal-with-smartypig/" rel="bookmark" class="crp_title">Saving for a Goal with SmartyPig</a></li><li><a href="http://www.jacoballred.com/random/free-5-gift-certificate-to-cstv-team-shops-online-store/" rel="bookmark" class="crp_title">Free $5 Gift Certificate to CSTV Team Shops online store</a></li><li><a href="http://www.jacoballred.com/goals/savings-goals/" rel="bookmark" class="crp_title">Savings Goals</a></li><li><a href="http://www.jacoballred.com/random/4th-of-july-travel-log/" rel="bookmark" class="crp_title">4th of July Travel Log</a></li><li><a href="http://www.jacoballred.com/rants/yodlee-oncenter/" rel="bookmark" class="crp_title">Yodlee OnCenter</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.jacoballred.com/money/free-gift-cards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
