<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:media="http://search.yahoo.com/mrss/"><channel><title><![CDATA[Matthew Haeck - Raleigh NC]]></title><description><![CDATA[My name is Matthew Haeck. I'm a Full-Stack Web Developer & Experienced Graphic Designer Based in Raleigh NC.]]></description><link>https://www.matthewhaeck.com/</link><image><url>https://www.matthewhaeck.com/favicon.png</url><title>Matthew Haeck - Raleigh NC</title><link>https://www.matthewhaeck.com/</link></image><generator>Ghost 5.70</generator><lastBuildDate>Sat, 02 May 2026 15:16:22 GMT</lastBuildDate><atom:link href="https://www.matthewhaeck.com/rss/" rel="self" type="application/rss+xml"/><ttl>60</ttl><item><title><![CDATA[Creating an Encrypted USB SSH Keychain for Multiple Servers]]></title><description><![CDATA[Security conscious developers know the value of airgaps and this post walks you through constructing an encrypted USB SSH keychain for accessing multiple servers and more.]]></description><link>https://www.matthewhaeck.com/creating-an-encrypted-usb-ssh-multi-server-keychain/</link><guid isPermaLink="false">61bc36149d0c35043f252ff6</guid><dc:creator><![CDATA[Matthew Haeck]]></dc:creator><pubDate>Fri, 08 Jan 2021 10:15:00 GMT</pubDate><media:content url="https://cdn.matthewhaeck.com/2019/02/Encrypted-USB-SSH-Keychain-Matthew-Haeck.jpg" medium="image"/><content:encoded><![CDATA[
<!--kg-card-begin: html-->
<img src="https://cdn.matthewhaeck.com/2019/02/Encrypted-USB-SSH-Keychain-Matthew-Haeck.jpg" alt="Creating an Encrypted USB SSH Keychain for Multiple Servers"><p>If you&apos;re a developer with multiple computers and operating systems, it can be hard to keep track of all your SSH keys. What happens if a drive fails or a laptop goes missing? Creating a simple air gap with an old USB adds an impressive layer of security and if you take a little time to prioritize servers, you&apos;ll see a significant boost in your workflow efficiency as well. The first step to creating a secure SSH keychain is wiping your USB, so back-up everything you need, and let&apos;s get that drive scrubbed clean.</p>
<div class="uk-h6 uk-heading-line uk-margin-top uk-text-right"><span>Sections</span></div>
<div class="uk-subnav uk-subnav-pill uk-text-small uk-flex-right uk-margin-medium-bottom uk-link-muted" data-uk-margin>
<span>Erase USB w/ Disk Utility</span>
<a href="#usbcommand" title="Erase USB w/ CMD" data-uk-scroll="offset:120">Erase USB w/ CMD</a>
<a href="#encryptusb" title="Encrypt USB" data-uk-scroll="offset:120">Encrypt USB</a>
<a href="#sshkeys" title="SSH Keys" data-uk-scroll="offset:120">SSH Keys</a>
<a href="#sshconfig" title="SSH Config" data-uk-scroll="offset:120">SSH Config</a>
</div>

<span class="uk-float-right uk-margin-remove-adjacent uk-text-muted" data-uk-icon="icon:trash" data-uk-scrollspy="repeat:true;cls:uk-animation-fade"></span>
<h2 class="uk-text-lead uk-heading-divider">Erase Your USB with Disk Utility</h2>
<span data-uk-lightbox><a href="https://cdn.matthewhaeck.com/2019/03/Erase-Your-USB-with-Disk-Utility.jpg" data-caption="Erase Your USB with Disk Utility" data-alt="Erase Your USB with Disk Utility"><img src="https://cdn.matthewhaeck.com/2019/03/Erase-Your-USB-with-Disk-Utility.jpg" alt="Creating an Encrypted USB SSH Keychain for Multiple Servers" title="Erase Your USB with Disk Utility" class="uk-width-1-2@s uk-width-1-4@m uk-align-right uk-border-rounded uk-box-shadow-small"></a></span>
<p>There are two basic ways to do this - We&apos;ll start with the GUI method first, then we&apos;ll cover the command line version. If you&apos;re on Linux, the command line version should still work, with a few OS-specific tweaks. Open your Disk Utility app located in <code>/Applications/Utilities/</code> and select the flash drive on your left sidebar. You&apos;ll want to click the Erase tab at the top, give your USB drive a temporary name and select <strong>MS-DOS (FAT)</strong> format.</p>
<div class="uk-card uk-card-small uk-card-body uk-card-secondary uk-border-rounded uk-margin">
<ul class="uk-list uk-list-divider">
    <li>1) Connect your USB Key &amp; Launch Disk Utility</li>
    <li>2) Select your drive on the left hand side of Disk Utility</li>
    <li>3) Click on the &#x201C;Erase&#x201D; tab at the top of the screen</li>
    <li>4) Select <strong>MS-DOS (FAT)</strong> Format, Give Temp Name &amp; Click Erase</li>
</ul>
</div>
<p class="uk-margin-medium-bottom">If you got through those steps error-free, you now have a completely clean USB drive formatted for FAT32. Now jump down to the <strong>&quot;Encrypt a Flash Drive on Your Mac&quot;</strong> section to get this drive secured or you can skim over the <strong>&quot;Erase Your USB Using CMD&quot;</strong> section to see what is taking place behind the scenes.</p>
<!--kg-card-end: html-->

<!--kg-card-begin: html-->
<span class="uk-float-right uk-margin-remove-adjacent uk-text-muted" data-uk-icon="icon:code" data-uk-scrollspy="repeat:true;cls:uk-animation-fade"></span>
<h3 id="usbcommand" class="uk-text-lead uk-heading-divider">Erase Your USB Using CMD</h3>
<p>If you&apos;re looking to reformat your USB from the command line, start with your USB unplugged than enter <code>diskutil list</code>. This command will list connected drives, so take note of the list and see what appears after plugging your USB in (which we&apos;ll do next). In this case <strong>/dev/disk2</strong> is my unique USB identifier.</p>
<pre class="uk-margin"><code># Heres the syntax for your command
$ diskutil eraseDisk FILESYSTEM DISKNAME DISKLOCATION

# My example looks like this
$ diskutil eraseDisk FAT32 TEMPNAME /dev/disk2
</code></pre>
<p class="uk-margin-medium-bottom">Using the above syntax, I&apos;ll plug in FILESYSTEM: <strong>FAT32</strong>, DISKNAME: <strong>TEMPNAME</strong>, &amp; DISKLOCATION: <strong>/dev/disk2</strong>. If you need a different format for your USB, <a href="https://osxdaily.com/2016/08/30/erase-disk-command-line-mac/" title="How to Erase a Disk from Command Line in Mac OS X" target="_blank" rel="nofollow">this guide</a> is a good point of reference. Wiping the drive could take a minute, but once complete your <a data-uk-toggle="target: #output-one" title="Command Line Output - One">command line output</a> should look like this. Once you&apos;ve got the USB clean, it&apos;s time to encrypt that flash drive.</p>

<span class="uk-float-right uk-margin-remove-adjacent uk-text-muted" data-uk-icon="icon:lock" data-uk-scrollspy="repeat:true;cls:uk-animation-fade"></span>
<h3 id="encryptusb" class="uk-text-lead uk-heading-divider">Encrypt a Flash Drive on Your Mac</h3>
<p>Whether you used Disk Utility or Command Line, you now have a clean USB drive needing encryption. This step (like the previous) can be completed with one of those two routes, we&apos;ll start with the Disk Utility option.</p>

<span data-uk-lightbox><a href="https://cdn.matthewhaeck.com/2019/03/Encrypt-a-Flash-Drive-on-Mac.jpg" title="How to Encrypt a USB Drive with Disk Utility" data-caption="How to Encrypt a USB Drive with Disk Utility" data-alt="How to Encrypt a USB Drive with Disk Utility"><img src="https://cdn.matthewhaeck.com/2019/03/Encrypt-a-Flash-Drive-on-Mac.jpg" alt="Creating an Encrypted USB SSH Keychain for Multiple Servers" title="How to Encrypt a USB Drive with Disk Utility" class="uk-width-1-2@s uk-width-2-5@m uk-align-right uk-border-rounded uk-box-shadow-small"></a></span>

<p><strong>Disk Utility:</strong> With your drive selected, you&apos;ll want to click the partition button up top. Name your flash drive, select <strong>Mac OS Extended (Case-sensitive, Journaled, Encrypted)</strong> format, click &quot;Apply&quot;, and enter your chosen password (complex &amp; memorizable).</p>
<hr>
<p><strong>Command Line:</strong> If you&apos;d like to encrypt the USB through command line, you&apos;ll need two simple commands. The syntax of the first will look like this <code>diskutil eraseDisk JHFS+ &quot;Skeleton&quot; GPT disk2</code> and here&apos;s my <a data-uk-toggle="target: #output-two" title="Command Line Output - Two">command line output</a> for reference. This command preps the drive while the following will encrypt it. The syntax of the second command looks like this <code>diskutil cs convert disk2s2 -passphrase</code>, resulting in <a data-uk-toggle="target: #output-three" title="Command Line Output - Three">this output</a>.</p>
<hr>
<img src="https://cdn.matthewhaeck.com/2019/02/Confirm-How-to-Encrypt-a-USB-Drive.png" alt="Creating an Encrypted USB SSH Keychain for Multiple Servers" title="How to Encrypt a USB Drive - Confirm" class="uk-width-1-3@s uk-align-right uk-border-rounded uk-box-shadow-small">
<p class="uk-margin-medium-bottom"><strong>Check Your Work:</strong> The previous steps on how to encrypt a flash drive on your mac are pretty straightforward, but if you doubt the result at all you can click the flash drive&apos;s info button in Disk Utilities. Look for the line that says <strong>encrypted</strong> and as long as you see yes, we&apos;re all set to move onto the final step. Now that we have an encrypted USB, it&apos;s time to get your SSH keys in order and point your SSH config in that direction.</p>
<span class="uk-float-right uk-margin-remove-adjacent uk-text-muted" data-uk-icon="icon:server" data-uk-scrollspy="repeat:true;cls:uk-animation-fade"></span>
<h4 id="sshkeys" class="uk-text-lead uk-heading-divider">Managing Your SSH Keys</h4>
<p>This post presumes you&apos;re familiar with &quot;SSH Keys&quot;, but if you&apos;re not here&apos;s a simple definition. An SSH Key provides access like any other key, but they&apos;re generally created in pairs &amp; used to connect to servers (as always, <a href="https://en.wikipedia.org/wiki/Secure_Shell" title="Secure Shell - Wikipedia" target="_blank" rel="nofollow">Wikipedia</a> is a great place to start if you&apos;d like to learn more). On a Mac your <strong>&quot;.ssh folder&quot;</strong> will be located at the user level &amp; usually contains your SSH private keys, a config file, and &quot;known_hosts&quot; which automatically populates SSH connections your computer has made. My exact approach requires a few keys, but let&apos;s create one (named &quot;key1&quot;) so we know how that looks.</p>
<pre><code>$ ssh-keygen -t key1 -b 4096 -C &quot;email@example.com&quot;</code></pre>
<p class="uk-margin-medium-bottom">This command will generate two files in your .ssh folder, your private &amp; public key. Generally, you want to keep the private key on your laptop &amp; the public on the server you&apos;re looking to connect to. Since these keys provide server access, they&apos;re fairly valuable (even though that reality is often overlooked). My approach uses multiple levels each with its own key, so it might be handy to outline and prioritize your own situation. We&apos;ll continue this tutorial with 3 levels and our final SSH/Config should clarify how that looks.</p>

<span class="uk-float-right uk-margin-remove-adjacent uk-text-muted" data-uk-icon="icon:settings" data-uk-scrollspy="repeat:true;cls:uk-animation-fade"></span>
<h4 id="sshconfig" class="uk-text-lead uk-heading-divider">Customizing Your .ssh/config</h4>
<p>Take a quick look in your own .ssh folder to see your current setup. If you don&apos;t have one, just create a blank file named config and we can quickly run over how this file functions. It&apos;s also worth noting that users running macOS Sierra 10.12.2 or newer need to preface their SSH Config <a href="https://docs.github.com/en/github/authenticating-to-github/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent" title="Generating a SSH Key - Github" target="_blank" rel="nofollow">as shown on Github</a> in order to safely store SSH key passwords.</p>

<pre class="uk-width-1-2@s uk-width-2-5@l uk-align-right"><code>Host basicserver
    User devteam
    HostName example.com
    IdentityFile ~/.ssh/key
</code></pre>
<p class="uk-margin-medium-bottom">Let&apos;s show you the most basic host syntax looks like. Once you&apos;ve saved this config file and reloaded SSH, this block of code tells your computer what info should be included anytime you type <strong>ssh basicserver</strong> from the command prompt. In this situation, your ssh user will attempt to contact <strong>example.com</strong> as the user <strong>devteam</strong> with the SSH key located at <strong>~/.ssh/key</strong>. At its core, this is just a time-saver for devs, but when we adjust the &quot;IdentityFile&quot; to target your USB key we&apos;re creating a simple air-gap that sets up a handy requirement. If you don&apos;t have your USB plugged in, you can&apos;t access that server. The implication here is simple yet wide-ranging, for example, a stolen or broken computer is no longer a reason to panic.</p>
<p>Let&apos;s create a simple example so you can see your SSH config at work. For simplicity sake, let&apos;s say your keys have 3 levels of importance. We&apos;ll say &quot;level1&quot; is a litigious multi-million dollar client, &quot;level2&quot; connects to your personal blog &amp; &quot;level3&quot; is your Gitlab account that you use frequently and don&apos;t want on your USB key.</p>
<pre><code>Host level1
    User devteam
    HostName example.com
    IdentityFile /dev/disk2/ssh/key1
    
Host level2
    User bloguser
    HostName example.com
    IdentityFile /dev/disk2/ssh/key2
    
Host level3
    User git
    HostName gitlab.com
    IdentityFile ~/.ssh/key3
</code></pre>
<p class="uk-margin-medium-bottom">Assuming you&apos;ve created a folder called &quot;ssh&quot; on your flash drive and stored the first two keys in it, now a simple command like <code>ssh level1</code> will connect easily. You will need to enter your password once, but that will be kept in your user keychain and since the &quot;IdentityFile&quot; specification points to your encrypted USB you should feel confident this pathway cannot be easily compromised. If you&apos;d like to get even fancier with your <code>~/.ssh/config</code>, I&apos;d highly suggest consulting the <a href="https://linux.die.net/man/5/ssh_config" title="SSH Config - Open SSH" target="_blank" rel="nofollow">online documentation for ssh_config</a>. The options are numerous and pretty handy - You can specify ports, connection attempts, local environment variables, and much more.</p>

<span class="uk-float-right uk-margin-remove-adjacent uk-text-muted" data-uk-icon="icon:happy" data-uk-scrollspy="repeat:true;cls:uk-animation-fade"></span>
<div class="uk-text-lead uk-heading-divider uk-margin-medium-top">Getting the Most Out of Your Encrypted USB</div>
<p>None of these concepts are revolutionary but combined they create a fairly handy approach. I&apos;d highly suggest creating a backup key (explained below), but tossing your handy new encrypted USB ssh keychain on your house keys is ideal for my needs. If I&apos;m ever working on a project remotely, my house keys usually aren&apos;t too far away. In that same vein, here are a couple of tips I&apos;ve adopted to save you time and increase peace of mind.</p>
<ul class="uk-card uk-card-body uk-card-small uk-card-secondary uk-border-rounded uk-text-small uk-list uk-list-divider uk-margin-medium">
    <li><p><strong>Make a Duplicate:</strong>  When you have everything done, make a copy and keep it in a safe remote place (safe deposit boxes or decent hiding places are ideal)</p></li>
    <li><p><strong>Gather Important Security Files:</strong>  Now that you have a secure key, why not include other files that should be in a more secure spot. Tax records, backup codes, important login info, pgp keys, vpn configs, database backups, etc.</p></li>
</ul>
<p class="uk-text-center">I realize this approach may seem like overkill to some and potentially exploitable to others, but I&apos;ve found it to be an extremely efficient way to boost security and aid workflow. If you believe any points could use clarification or you have a few solid SSH config tricks of your own, feel free to drop me a message on Twitter. Thanks for stopping by, be sure to check out some additional posts &amp; if you&apos;ve found this at all helpful, please be sure to share on your favorite social site with the links below.</p>

<div id="output-one" data-uk-modal><div class="uk-modal-dialog uk-modal-body"><pre class="uk-margin-remove"><code>$ diskutil eraseDisk FAT32 TEMPNAME /dev/disk2
Started erase on disk2
Unmounting disk
Creating the partition map
Waiting for partitions to activate
Formatting disk2s2 as MS-DOS (FAT32) with name TEMPNAME
512 bytes per physical sector
/dev/rdisk2s2: 29589248 sectors in 1849328 FAT32 clusters (8192 bytes/cluster)
bps=512 spc=16 res=32 nft=2 mid=0xf8 spt=32 hds=255 hid=411648 drv=0x80 bsec=29618176 bspf=14448 rdcl=2 infs=1 bkbs=6
Mounting disk
Finished erase on disk2
</code></pre></div></div>

<div id="output-two" data-uk-modal><div class="uk-modal-dialog uk-modal-body"><pre class="uk-margin-remove"><code>$ diskutil eraseDisk JHFS+ &#x201C;Skeleton&#x201D; GPT disk2
Started erase on disk2
Unmounting disk
Creating the partition map
Waiting for partitions to activate
Formatting disk2s2 as Mac OS Extended (Journaled) with name TEMPNAME
Initialized /dev/rdisk2s2 as a 14 GB case-insensitive HFS Plus volume with a 8192k journal
Mounting disk
Finished erase on disk2
</code></pre></div></div>

<div id="output-three" data-uk-modal><div class="uk-modal-dialog uk-modal-body"><pre class="uk-margin-remove"><code>$ diskutil cs convert disk2s2 -passphrase
New passphrase for converted volume:
Confirm new passphrase:
Started CoreStorage operation on disk2s2 Skeleton
Resizing disk to fit Core Storage headers
Creating Core Storage Logical Volume Group
Reviewing boot support loaders
Attempting to unmount disk2s2
Switching disk2s2 to Core Storage
Waiting for Logical Volume to appear
Mounting Logical Volume
Core Storage LVG UUID: 94FED14E-2994-45AB-B0A2-1E06DC97BA32
Core Storage PV UUID: 9F5BD1F7-0ED9-4CD3-9698-DE1296333007
Core Storage LV UUID: 4CDBA2BE-0AB3-406A-AD28-3EC1D805FB9C
Core Storage disk: disk3
Finished CoreStorage operation on disk2s2 Skeleton
Encryption pending
</code></pre></div></div>
<!--kg-card-end: html-->
]]></content:encoded></item><item><title><![CDATA[Preventing S3 + Cloudfront Hotlinking w/ a WAF Firewall]]></title><description><![CDATA[Preventing Cloudfront hotlinking is workable with a WAF firewall. I’ll show you how a web application firewall works & how to customize cloudfront delivery.]]></description><link>https://www.matthewhaeck.com/preventing-s3-cloudfront-hotlinking-w-a-waf-firewall/</link><guid isPermaLink="false">61bc36149d0c35043f252ff4</guid><dc:creator><![CDATA[Matthew Haeck]]></dc:creator><pubDate>Sat, 08 Aug 2020 04:07:00 GMT</pubDate><media:content url="https://cdn.matthewhaeck.com/content/images/2016/03/Preventing_Cloudfront_Hotlinking_w_WAF_Firewall.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://cdn.matthewhaeck.com/content/images/2016/03/Preventing_Cloudfront_Hotlinking_w_WAF_Firewall.jpg" alt="Preventing S3 + Cloudfront Hotlinking w/ a WAF Firewall"><p>Hotlinking is obnoxious. Hotlinking is theft. Hotlinking is getting harder and harder to prevent. Any web developer worth their salt has run into this problem - What do you do when shady people are willing to steal your work? Keep in mind, we&apos;re not talking about open source projects or contributing to a cause - we&apos;re basically talking about a jack move. While most developers have decent options with htaccess or server config files, when it comes to using a CDN options are pretty limited. Since Cloudfront hotlinking is a battle I&apos;ve put some time into, I&apos;ll let you guys know the preventative options I&apos;ve come up with so hopefully you can avoid this annoyance on your future projects.</p>
<span class="uk-text-muted uk-align-right uk-margin-remove-adjacent" data-uk-icon="icon:life-ring" data-uk-scrollspy="repeat:true;cls:uk-animation-fade"></span>
<h2 class="uk-text-lead uk-heading-divider uk-margin-large-top">Cloudfront Hotlinking is Seriously Obnoxious</h2>
<div data-uk-lightbox><a href="https://cdn.matthewhaeck.com/content/images/2016/03/Setting-Up-a-WAF-Firewall.jpg" title="Basic WAF Firewall Setup" data-caption="Basic WAF Firewall Setup"><img src="https://cdn.matthewhaeck.com/content/images/2016/03/Setting-Up-a-WAF-Firewall.jpg" alt="Preventing S3 + Cloudfront Hotlinking w/ a WAF Firewall" title="Basic WAF Firewall Setup" class="uk-box-shadow-small uk-width-1-4@m uk-align-right"></a></div>
<p>Put briefly, hotlinking is when someone uses your image URL on their site. Some folks may think that since an image is on your server, someone else&apos;s server shouldn&apos;t be able to display it - But those people would be wrong. The truth is - if you can see the image and there aren&apos;t any preventative measures in place, anyone can use that URL for themselves. This is annoying for two main reasons - <strong>1. Someone is using an image you created</strong> and <strong>2. Someone is using your server to host it</strong>. This is basically like a car thief asking you to drop your own car off.  If you think about the worst case-scenario - What if someone builds a website displaying 5,000 of your images!?! That&apos;s gonna put a serious hurt on your server and if you&apos;re serving those files from a CDN - you&apos;re going to be pretty angry when the monthly bill arrives.</p>
<p>While it shouldn&apos;t be too difficult for CDN providers to address this on a server level, it is a step most haven&apos;t taken yet. Whether the issue is an internal conflict of interest or lack of motivation, addressing Cloudfront hotlinking has become a bit of a drag for web developers. While working on a recent project using a Cloudfront CDN we stumbled across Amazon&apos;s answer to this problem. A little Googling will show you that the <a href="https://stackoverflow.com/questions/5652962/preventing-amazon-cloudfront-hotlinking" title="Preventing Amazon Cloudfront hotlinking" target="_blank" rel="nofollow" class="uk-text-primary">word hasn&apos;t quite spread</a> yet, so I&apos;ll do a quick walkthrough on Amazon WAF and show you how to get it up and running in short time.</p>
<span class="uk-text-muted uk-align-right uk-margin-remove-adjacent" data-uk-icon="icon:rocket" data-uk-scrollspy="repeat:true;cls:uk-animation-fade"></span>
<h3 class="uk-text-lead uk-heading-divider uk-margin-large-top">Customize Cloudfront for Optimum Performance and Security</h3>
<p>The project that brought about this issue was pretty commonplace, but I&apos;ll use my own website to illustrate the steps below. I have a <a href="https://www.joomla.org/" title="Joomla! CMS" target="_blank" rel="nofollow" class="uk-text-primary">Joomla!</a> core pushing images to Amazon S3. Those images are then pushed over to <a href="https://aws.amazon.com/cloudfront/" title="Cloudfront - AWS" target="_blank" rel="nofollow" class="uk-text-primary">Cloudfront</a>, which is one of the most popular CDN options on the market. Here&apos;s the list of the requirements I had while applying this fix...</p>
<div class="uk-padding-small uk-background-muted uk-margin-medium">
<div class="uk-tile uk-tile-small uk-tile-default">
<ul class="uk-list uk-list-divider uk-text-center">
<li>We need to hold files on S3 so we can retain a custom CDN domain name</li>
<li>Those files should be pushed to a limited Cloudfront network for speedy delivery</li>
<li>All files <i>(JS/CSS/images)</i> should be reachable by Googlebot &amp; Bingbot</li>
<li>Images should be reachable by social networks so images are attached to shares</li>
</ul>
</div>
</div>
<p>For this example we&apos;re using my business website haeckdesign.com. We need the images to come from cdn.haeckdesign.com, since keeping everything under one apex domain is preferable. We need the images to be viewable to everyone, but those images shouldn&apos;t be able to be served or extracted from an external location. Just to throw another wrench in the works - We need to make sure javascript, css stylesheets, and images are crawl-able by popular search engines so we abide by all the rules and get some image results. If this were on a basic Apache server we could just run a simple <a href="https://perishablepress.com/creating-the-ultimate-htaccess-anti-hotlinking-strategy/" title="Creating the Ultimate htaccess Anti-Hotlinking Strategy - Perishable Press" target="_blank" rel="nofollow" class="uk-text-primary">match redirect</a>, but since it&apos;s off server we&apos;ve got to use Amazon&apos;s network to fix this for us - enter WAF, Amazon&apos;s Web Application Firewall.</p>
<span class="uk-text-muted uk-align-right uk-margin-remove-adjacent" data-uk-icon="icon:lock" data-uk-scrollspy="repeat:true;cls:uk-animation-fade"></span>
<h4 class="uk-text-lead uk-heading-divider uk-margin-large-top">Introducing the WAF Firewall</h4>
<p>Science proves that one easy way to sound really smart is to drop a series of acronyms... so with that in mind, let&apos;s clarify our goal. We&apos;re aiming to define a WAF ruleset to restrict an existing AWS Cloudfront, which is mirroring S3 content, optimizing our CDN distribution while ensuring white-listed access for optimal SEO performance <i>(...am I smart yet?)</i>. <strong>Back to reality</strong> - login to AWS and from the control panel, look for <a href="https://aws.amazon.com/waf/features/" title="Amazon WAF" target="_blank" rel="nofollow" class="uk-text-primary">Amazon WAF</a> on the main product menu. Once you&apos;re on the AWS WAF page it&apos;ll just take a couple of steps to get your firewall up. I&apos;d personally suggest starting by creating your string match conditions &amp; filters, but these are the basic steps then I&apos;ll cover what I did for this particular project.</p>
<div class="uk-padding-small uk-background-muted uk-margin-medium">
<div class="uk-tile uk-tile-small uk-tile-default">
<div class="uk-h4 uk-text-warning">Generating Your WAF Firewall</div>
<hr>
<ul class="uk-list uk-list-divider">
	<li><p><strong>Step One:</strong>  Determine your best filtering method. So figure out the least obtrusive way to achieve your goal.  The order does matter - so funnel your rules down like you would with Regex redirects.</p></li>
	<li><p><strong>Step Two:</strong> Create a New Web ACL. This is the umbrella that all of your rules are going to fall under. Each rule is a group of filters and each filter is a group of match conditions.</p></li>
	<li><p><strong>Step Three:</strong> Create your Rules &amp; Conditions. In this case, we used &quot;string match conditions&quot; to test response headers, but IPs and response codes can also be used to filter.</p></li>
	<li><p><strong>Step Four:</strong>  Tie your rule to your Cloudfront distribution. You can set that when creating your ACL or afterward by viewing your Cloudfront distribution, hitting edit, and clicking the WAF setting right below the title.</p></li>
	</ul>
	</div>
</div>
<div data-uk-lightbox><a href="https://cdn.matthewhaeck.com/content/images/2016/03/Create-Rules-How-Web-Application-Firewall-Works.jpg" title="Create Rule - How Web Application Firewall Works" data-caption="Create Rule - How Web Application Firewall Works"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2016/03/Create-Rules-How-Web-Application-Firewall-Works.jpg" alt="Preventing S3 + Cloudfront Hotlinking w/ a WAF Firewall" title="Create Rule - How Web Application Firewall Works" class="uk-box-shadow-small uk-width-1-4@m uk-align-right" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2016/03/Create-Rules-How-Web-Application-Firewall-Works.jpg" alt="Preventing S3 + Cloudfront Hotlinking w/ a WAF Firewall" title="Create Rule - How Web Application Firewall Works" class="uk-box-shadow-small uk-width-1-4@m uk-align-right"></noscript></a></div>
<p>Although generating a WAF firewall isn&apos;t technically difficult, it can be tricky since you need to think from a different perspective. This can take you anywhere from 5 minutes to a half-hour, but the majority of the time will be spent running through hypothetical <i>&quot;If I were a .png file...&quot;</i> kind of questions. After a little brainstorming, I came up with <i>(what I currently believe to be)</i> the most logical approach. Like most CDN users, I&apos;m pushing heavily used media from Cloudfront... this means CSS, JS, and images. This should be similar to the way Cloudfront is commonly used as a CDN for websites, but make sure you are adjusting the rules to fit the needs of your exact situation.</p>
<p>I find analogies useful when brainstorming processes, so I&apos;ve used the classic Seinfeld <strong>&quot;Soup Nazi&quot;</strong> episode to center my logic around. At the risk of sounding outlandish, here it is...   <i class="uk-text-primary">&quot;Any passerby should feel safe, but if you&apos;re going to enter the soup shop <i>(&quot;/images/&quot;)</i> and have the nerve to order Turkey Chili... You better do it right&quot;</i>. Running with this concept, I have two match criteria I&apos;ll be generating. The first match condition <i>(named SoupShop)</i> will look for URI requests that contain &quot;/images/&quot;. The second match condition <i>(named TurkeyChili)</i> checks the <strong>Header Referrer</strong> and allows requests from my website&apos;s domain name and the websites I want to get through. In this case, I whitelisted &quot;bing.com, google.com, facebook.com, pinterest.com, twitter.com, stumbleupon.com&quot;. Since I want Googlebot &amp; Bingbot to get through, I also set header &quot;useragent&quot;&apos;s containing &quot;Googlebot &amp; Bingbot&quot; through. While I&apos;m sure this isn&apos;t the most optimal approach <i>(since using <strong>&quot;query contains&quot;</strong> rarely is)</i>, this should help most developers get off to a running start.</p>
<div data-uk-lightbox><a href="https://cdn.matthewhaeck.com/content/images/2016/03/Create-ACL-How-Web-Application-Firewall-Works.jpg" title="Create ACL - How Web Application Firewall Works" data-caption="Create ACL - How Web Application Firewall Works"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2016/03/Create-ACL-How-Web-Application-Firewall-Works.jpg" alt="Preventing S3 + Cloudfront Hotlinking w/ a WAF Firewall" title="Create ACL - How Web Application Firewall Works" class="uk-box-shadow-small uk-width-1-4@m uk-align-right" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2016/03/Create-ACL-How-Web-Application-Firewall-Works.jpg" alt="Preventing S3 + Cloudfront Hotlinking w/ a WAF Firewall" title="Create ACL - How Web Application Firewall Works" class="uk-box-shadow-small uk-width-1-4@m uk-align-right"></noscript></a></div>
<p>Now to tie it all together, I create a new rule <i>(named SoupProtocol)</i> that includes both match conditions. The first step says to be restrictive of any queries on my &quot;/images/&quot; folder and the second says to allow the whitelisted domains through. Then I create a new ACL that uses the <strong>&quot;SoupProtocol&quot;</strong> filter to block queries, then defaults everything else to pass right through. Again - this may not be the exact best approach <i>(and if you know a better method, please included it in the comments)</i>, but it achieves the goals listed above and does so with minimal requirements from WAF itself.</p>
<span class="uk-text-muted uk-align-right uk-margin-remove-adjacent" data-uk-icon="icon:bookmark" data-uk-scrollspy="repeat:true;cls:uk-animation-fade"></span>
<h5 class="uk-text-lead uk-heading-divider uk-margin-large-top">Testing Your WAF Firewall</h5>
<p>Now that we have everything setup, let&apos;s make sure it&apos;s performing as needed so we can put on the finishing touches. Running a quick CURL while the firewall is distributing to Cloudfront, I expect to see a 200 for a basic image request. In this example, I request my logo with a CURL request that looks like this... </p><pre><code class="uk-display-inline uk-text-truncate">curl -I https://cdn.haeckdesign.com/images/haeck-design-logo.svg</code></pre>
<p>This curl response is exactly what you should expect from any query before putting a firewall up. In technical terms, a <em>200 response</em> means that everything is <strong>&quot;all clear&quot;</strong> on the call and response.</p>
<figure><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2016/03/Testing-Screenshot-Cloudfront-Hotlinking-WAF-Firewall-200.jpg" alt="Preventing S3 + Cloudfront Hotlinking w/ a WAF Firewall" title="200 Response - Testing WAF Firewall | Cloudfront Hotlinking" class="uk-width-1-1 uk-box-shadow-small uk-margin" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2016/03/Testing-Screenshot-Cloudfront-Hotlinking-WAF-Firewall-200.jpg" alt="Preventing S3 + Cloudfront Hotlinking w/ a WAF Firewall" title="200 Response - Testing WAF Firewall | Cloudfront Hotlinking" class="uk-width-1-1 uk-box-shadow-small uk-margin"></noscript><figcaption class="uk-thumbnail-caption">200 Response - Testing WAF Firewall</figcaption></figure>
<p>After giving WAF a few minutes to distribute itself throughout Cloudfront, I&apos;m going to run that command again. In this case, I&apos;m expecting to see a <em>403 Forbidden</em>. As you&apos;ll notice, that&apos;s just what we got. <strong>Don&apos;t celebrate yet though</strong> - All that test really means is that we got an error upon retrieval. We still need to ensure that the image is both publicly view-able and also completely accessible to the search engine bots and social networks we whitelisted earlier.</p>
<figure><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2016/03/Testing-Screenshot-Cloudfront-Hotlinking-WAF-Firewall-403.jpg" alt="Preventing S3 + Cloudfront Hotlinking w/ a WAF Firewall" title="403 Testing WAF Firewall | Cloudfront Hotlinking" class="uk-width-1-1 uk-box-shadow-small uk-margin" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2016/03/Testing-Screenshot-Cloudfront-Hotlinking-WAF-Firewall-403.jpg" alt="Preventing S3 + Cloudfront Hotlinking w/ a WAF Firewall" title="403 Testing WAF Firewall | Cloudfront Hotlinking" class="uk-width-1-1 uk-box-shadow-small uk-margin"></noscript><figcaption class="uk-thumbnail-caption">403 Response - Testing WAF Firewall</figcaption></figure>
<p>One way to ensure that it&apos;s publicly viewable is simply to visit the site yourself. After that checks out we&apos;re going to run one final curl that mimics the response the file will get when called from Googlebot. That can be achieved with the following terminal command...</p>
<pre><code class="uk-display-inline uk-text-truncate">curl --user-agent &quot;Googlebot/2.1 (+http://www.google.com/bot.html)&quot; -v &quot;https://cdn.haeckdesign.com/images/haeck-design-logo-raleigh-nc.svg&quot;</code></pre>
<p class="uk-margin-medium-bottom">As long as we see a <em>200 response</em>, we should feel safe that we&apos;ve successfully done the job. <strong>HIGH FIVE!!</strong> If you&apos;re the paranoid type, you could always submit the file to <a href="https://www.google.com/webmasters/tools/googlebot-fetch" title="Google Webmaster&apos;s Fetch as Google tool" target="_blank" rel="nofollow" class="uk-text-primary">Google Webmaster&apos;s Fetch as Google tool</a> or <a href="https://developers.facebook.com/tools/debug" title="Facebook&apos;s Linter" target="_blank" rel="nofollow" class="uk-text-primary">Facebook&apos;s Linter</a>. Everything should get through with no hassles. Once you&apos;ve completed testing your WAF firewall, you should certainly keep on an eye out for any errors being triggered in Google Webmaster or elsewhere if you use another third-party tracking tool. It may also be a good idea to check back into AWS in a couple of days to review the WAF log and make sure you&apos;re not incurring ridiculous fees by having an overactive firewall. If something does look off, don&apos;t forget that you can just log in to your Cloudfront distribution and temporarily pause your WAF filter fairly easily.</p>
<span class="uk-text-muted uk-align-right uk-margin-remove-adjacent" data-uk-icon="icon:trophy" data-uk-scrollspy="repeat:true;cls:uk-animation-fade"></span>
<h6 class="uk-text-lead uk-heading-divider">Not a Perfect Fix...  But awfully close.</h6>
<p>Patch fixes are rarely perfect and using WAF is no exception. While it does prevent hot-linking there is one notable drawback - the cost. After running WAF for a month I checked back to see the bill estimates, expecting to see a negligible cost...  <strong>I was disappointed</strong>. While it was only a buck or two, the underlying structure is what bothered me. It appears as though AWS is charging per hit - which is not ideal. That&apos;s similar to a bouncer charging you per <i>&quot;troublemaker&quot;</i> kicked out. If you run with that concept over time you&apos;ll probably notice that the focus isn&apos;t really on providing security, it&apos;s more on reporting incidents. I may be expecting too much, but we&apos;re not trying to do anything overly complicated here. That said - These are the current <a href="https://aws.amazon.com/waf/pricing/" title="WAF Rates - AWS" target="_blank" rel="nofollow" class="uk-text-primary">WAF rates</a> and Amazon has historically tended towards lowering pricing after unrolling infrastructure. I hope WAF won&apos;t be an exception to that rule. Ultimately a bucket policy setup similar to S3 might be the solution, but I do understand that the most important function of Cloudfront is providing media quickly - So worrying about restricting that should be a lower priority on the task-list.</p>
<p>One other point I&apos;d suggest keeping in mind is that some distribution tools should have access. Google, Bing, and popular social networks are the obvious ones, but if you rely on RSS readers like Flipboard or Apple News - you may want to do some testing to ensure this filter doesn&apos;t get in the way. This is a <i>&quot;case-by-case&quot;</i> thing, but I do suggest you give it a look before marking the finished.</p>
<hr class="uk-article-divider">
<p class="uk-text-center">All things considered, using WAF to prevent Cloudfront hotlinking is the best option going and certainly suitable for production use. AWS is constantly changing though, so if you have some ways to optimize this approach please feel free to include them in comments or on your favorite social. If you&apos;ve found this post useful share it with the buttons below and thanks for stopping by.</p>
<span class="uk-article-meta uk-text-warning uk-margin-top">Additional Resources</span>
<ul class="uk-subnav uk-subnav-pill">
<li><a href="https://docs.aws.amazon.com/waf/latest/developerguide/" title="Tutorials - Rate Based Blocking | AWS" target="_blank" rel="nofollow">Rate Based Blocking Tutorial | AWS</a></li>
<li><a href="https://docs.aws.amazon.com/waf/latest/developerguide/" title="Tutorials - 4xx Blocking | AWS" target="_blank" rel="nofollow">4xx Blocking Tutorial | AWS</a></li>
</ul>]]></content:encoded></item><item><title><![CDATA[Deep Thought Sounds: How Music Aids Focus & the Best Albums to Listen to While Working]]></title><description><![CDATA[This post on deep thought sounds uncovers the science behind how music aids focus and includes some of the best albums to listen to while working.]]></description><link>https://www.matthewhaeck.com/deep-thought-sounds-how-music-aids-focus-best-albums-for-working/</link><guid isPermaLink="false">61bc36149d0c35043f252ff5</guid><category><![CDATA[My Favorite Things]]></category><category><![CDATA[Random Opinions]]></category><dc:creator><![CDATA[Matthew Haeck]]></dc:creator><pubDate>Mon, 04 Nov 2019 04:47:00 GMT</pubDate><media:content url="https://cdn.matthewhaeck.com/content/images/2016/11/Deep-Thought-Sounds-How-Music-Aids-Focus-the-Best-Albums-to-Listen-to-While-Working.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://cdn.matthewhaeck.com/content/images/2016/11/Deep-Thought-Sounds-How-Music-Aids-Focus-the-Best-Albums-to-Listen-to-While-Working.jpg" alt="Deep Thought Sounds: How Music Aids Focus &amp; the Best Albums to Listen to While Working"><p>Some people doubt the intertwined human connection to music, but those people are generally idiots. While music clearly means different things to different people, ignoring that a connection exists is naive. The proper music sets the mood, triggers memories, and can boost your brainpower if managed correctly. Connecting two highly variable concepts like music and learning may seem tricky to connect, but if we break it down it&apos;s fairly scientific. The best place to start in this case would be with the toughest aspect to prove, is their a definitive scientific link between music and productivity.</p>
<span class="uk-text-muted uk-margin-remove-adjacent uk-align-right" data-uk-icon="icon:flask" data-uk-scrollspy="repeat:true; cls: uk-animation-fade"></span>
<h2 class="uk-text-lead uk-heading-divider">Establishing a Scientific Link Between Your Brain &amp; Music</h2>
<p>For me, several often overlooked tangential connections began to hint towards the connection between humans and their music. Drums appearing independently and early in civilizations across the world might start you down this line of thinking. Especially considering that notoriously left minded military leaders have embraced syncopated marching bands to keep soldiers on task for thousands of years. Slave hymns existed amongst the deep south, the Egyptian pyramids, and at the foot of the wall of China. In the modern era, it&apos;s worth citing the odd similarity between DJs commonly whispered <a href="http://www.edmnerd.com/house-music-128-bpm/" title="EDM Nerd - 128 BPM" target="_blank" rel="nofollow">Magic 128 BPM</a> and the speed of an elevated human heart rate. Relaxing music also tends to fall just below a resting heart rate. While I find these coincidences telling, they certainly aren&apos;t scientific in nature. Thankfully this topic has been addressed by <strong>Georgi Lozanov&apos;s Accelerated Learning Studies</strong>, a 2013 study well summarized in this interesting <a href="http://www.inquiriesjournal.com/articles/1657/the-impact-of-listening-to-music-on-cognitive-performance" title="The Impact of Listening to Music on Cognitive Performance | Inquiries Journal" target="_blank" rel="nofollow">Inquiries Journal</a> article. There&apos;s also a slightly lesser-known study by Brewer in a Johns Hopkins summation. Personally, my favorite white-paper on the subject is <a href="http://www.jstor.org/stable/10.1086/665048" title="Is Noise Always Bad? Exploring the Effects of Ambient Noise on Creative Cognition | JSTOR" target="_blank" rel="nofollow">Is Noise Always Bad? Exploring the Effects of Ambient Noise on Creative Cognition</a> by Ravi Mehta, Rui Zhu, and Amar Cheema. Since these studies were somewhat varied you&apos;d need to stretch to find a hard conclusion, but they <i>(and others)</i> correlate <strong>&quot;non-distracting&quot;</strong> music as a beneficial factor for improved cognitive performance. Additionally, some highly respected studies have found that music can drastically improve creativity <i>(aka &quot;Abstract Processing&quot;)</i>. I believe this quality is so commonly known that a simple messaging to an artist friend will reinforce that belief. When you set all the fancy psychoanalytical words aside, these studies state that the proper music can help concentration, cognitive endurance, and allow you to think more creatively. If you&apos;re willing to accept this theory, you may already be familiar with the buzzword commonly used to convey it... &quot;<strong>Flow</strong>&quot;. This concept has been highly advocated by Mihaly Csikszentmihalyi and is well encapsulated by a simple diagram, the <a href="https://cdn.matthewhaeck.com/content/images/2016/11/Csikszentmihalyi-Flow-Model-How-Music-Aids-Focus.jpg" data-uk-lightbox title="Csikszentmihalyi Flow Model">Csikszentmihalyi Flow Model</a>. This is a concept that has been heavily known in the creative community for years, but like many creative theories, it took a TED Talk to achieve mass acceptance.</p>
<div class="ratio-container uk-margin"><iframe src="https://embed.ted.com/talks/mihaly_csikszentmihalyi_on_flow" width="854" height="480" class="uk-box-shadow-small uk-width-1-1" allowfullscreen></iframe>
</div>
<p>After digesting this info, you may notice the one caveat that underlies it all. There is a significant difference between music and <strong>&quot;non-distracting&quot;</strong> music. Many people like attention-grabbing music, but if we&apos;re looking for the best albums to listen to while working this clearly defeats the goal. Luckily a cursory understanding of <a href="https://www.reddit.com/r/musictheory/" title="Reddit | Music Theory" target="_blank" rel="nofollow">music theory</a> allows you to decouple the two. This brings us to our next step, what qualitative elements should we be looking for in music for working?</p>
<span class="uk-text-muted uk-margin-remove-adjacent uk-align-right" data-uk-icon="icon:question" data-uk-scrollspy="repeat:true;cls:uk-animation-fade"></span>
<h3 class="uk-text-lead uk-heading-divider">What Elements Should We Look For in Good Working Music?</h3>
<p><strong>The Bad:</strong> A few genres need to be crossed off immediately... reggae, hip-hop, pop, country, funk, jazz, and rock. While I have an appreciation for all and there are always exceptions, they each have qualities that directly conflict with the ability to concentrate. Lyrics distract. Beat variations distract. Hard beginning and ends distract. Power guitars distract. Many of the things that grab your attention simply refuse to give it back. While the totality of these elements has been a formula for creating pop music in the last 20 years, these are the exact elements we need to avoid to ensure deep, prolonged, and creative thinking. So now that we&apos;ve crossed 90% of all music off the list, let&apos;s try to ID qualities and genres that are awesome for work.</p>
<hr class="uk-article-divider">
<div class="uk-panel uk-panel-box uk-panel-box-secondary uk-width-medium-1-3 uk-align-right uk-text-right"><blockquote>&quot;Music is the soil in which the spirit lives, thinks and invents.&quot;</blockquote><small>Ludwig van Beethoven</small></div>
<p><strong>The Good:</strong> It&apos;s classically understood that classical music is optimal for deep thought and while that may be impressive wordplay <i>(self-high-five)</i>, it&apos;s meant to evoke emotion that&apos;s too distracting for prolonged work. Classical music slays both firework displays and long terms of deep introspection, but we want to level out that depth and just do work. From what I&apos;ve found, the key qualities for prolonged work are a stable beat, smooth tonal transitions, and music that&apos;s towards the lower end of the wavelength. <i>Now we&apos;re getting niche, so what&apos;s left?</i> Light Jazz can be great for working and I think <strong>Muzack</strong> has capitalized on that reality, but let&apos;s assume you&apos;re not ready to shop retirement homes just yet. <strong>Lo-fi</strong> and <a href="https://en.wikipedia.org/wiki/Ambient_music" title="Ambient Music - Wikipedia" target="_blank" rel="nofollow" class="uk-text-bold">Ambient</a> are practically built for productivity. While there is a bit of variation in these genres, the general concept is - High repetition, a steady bass-driven beat, sparing use of vocals, and extended track length. The holy grail of working music is an album constructed to play as a whole - which generally means DJ mixes. We&apos;re not talking about heavy drops or Tiesto though, we want steady lounge mixes - niche genres like <strong>Mushroom Jazz</strong> or <a href="https://en.wikipedia.org/wiki/Downtempo" title="Downtempo - Wikipedia" target="_blank" rel="nofollow" class="uk-text-bold">Downtempo</a> embody these qualities to perfection.</p>
<div class="ratio-container uk-margin"><iframe width="1280" height="720" src="https://www.youtube.com/embed/dWcapC-kriY?autoplay=0" class="uk-box-shadow-small uk-width-1-1" allowfullscreen></iframe>
</div>
<span class="uk-text-muted uk-margin-remove-adjacent uk-align-right" data-uk-icon="icon:question" data-uk-scrollspy="repeat:true;cls:uk-animation-fade"></span>
<div class="uk-text-lead uk-heading-divider uk-margin-large-top">Which Albums Best Convey Those Traits?</div>
<p>So we&apos;re obviously getting into personal taste here, but I honestly believe many of these suggestions are universal. They&apos;re kid-friendly, have received a wide span of appreciation from my friends, and are still trendy enough that I&apos;m fairly sure you won&apos;t know all of them. With quite a bit of thought, this is my <strong>Favorite Albums for Working List</strong>... and if you need some background music to thumb through them, I&apos;ve included <a href="https://soundcloud.com/haeckmatic/sets/study-music" title="Study Music - Soundcloud" target="_blank" rel="nofollow">a few of their tracks</a> on this SoundCloud playlist.</p>
<span class="uk-text-muted uk-margin-remove-adjacent uk-float-right" data-uk-icon="icon:music" data-uk-scrollspy="repeat: true;cls: uk-animation-fade"></span>
<h4 class="uk-h5 uk-display-inline uk-text-muted">Favorite Albums for Working List...</h4>
<div class="uk-tile uk-tile-small uk-tile-secondary uk-padding-small uk-margin-top uk-margin-large-bottom">
	<ul class="uk-grid uk-grid-small uk-grid-match uk-text-small" data-uk-margin="margin: uk-margin-top" data-uk-grid-match="target: &gt; li &gt; .uk-panel &gt; p">
		<li class="uk-width-1-2@s uk-width-1-3@xl">
			<div class="uk-card uk-card-default uk-card-small uk-card-hover">
				<div class="uk-card-media-top"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2016/11/Little-People-Mickey-Mouse-Operation-Deep-Thought-Sounds.jpg" alt="Deep Thought Sounds: How Music Aids Focus &amp; the Best Albums to Listen to While Working" title="Little People - Micky Mouse Operation | Deep Thought Sounds" class="uk-thumbnail-expand" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2016/11/Little-People-Mickey-Mouse-Operation-Deep-Thought-Sounds.jpg" alt="Deep Thought Sounds: How Music Aids Focus &amp; the Best Albums to Listen to While Working" title="Little People - Micky Mouse Operation | Deep Thought Sounds" class="uk-thumbnail-expand"></noscript></div>
				<div class="uk-card-body">
				<div class="uk-card-title">Little People - Micky Mouse Operation</div>
				<p>Producer Laurent Clerc grew up the Swiss alps with a deep love for hip-hop and this origin story perfectly explains his creations. Mickey Mouse Operation has been one of my undercover favorites for years and 20 seconds into the first track you&apos;ll completely understand why that is. Take a simple boom-bap, interlace it with classical instrumentation, and the result is unlike anything you&apos;ve heard. Besides being great baby-making music ;), this is one of my favorites when you need a full hour of uninterrupted focus. Why this album isn&apos;t HUGE is beyond me, but it certainly is in my house.</p><div class="uk-button-group"><a href="https://geo.itunes.apple.com/us/album/mickey-mouse-operation/id180941199?at=1000lo7e&amp;mt=1&amp;app=music" class="uk-button uk-button-default uk-button-small" title="Little People - Micky Mouse Operation | iTunes" target="_blank" rel="nofollow" data-uk-icon="icon:apple">iTunes </a><a href="https://www.amazon.com/gp/product/B000S9AKUS/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B000S9AKUS&amp;linkCode=as2&amp;tag=knoidebra20-20&amp;linkId=3fb1c46a974a582387c34eccf243d9f2" class="uk-button uk-button-default uk-button-small" title="Little People - Micky Mouse Operation | Amazon" target="_blank" rel="nofollow" data-uk-icon="icon:amazon">Amazon </a></div>
			</div>
			</div>
		</li>
		<li class="uk-width-1-2@s uk-width-1-3@xl">
			<div class="uk-card uk-card-default uk-card-small uk-card-hover">
				<div class="uk-card-media-top"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2016/11/Mark-Farina-Mushroom-Jazz-7-Deep-Thought-Sounds.jpg" alt="Deep Thought Sounds: How Music Aids Focus &amp; the Best Albums to Listen to While Working" title="Mark Farina - Mushroom Jazz 7 | Deep Thought Sounds" class="uk-thumbnail-expand" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2016/11/Mark-Farina-Mushroom-Jazz-7-Deep-Thought-Sounds.jpg" alt="Deep Thought Sounds: How Music Aids Focus &amp; the Best Albums to Listen to While Working" title="Mark Farina - Mushroom Jazz 7 | Deep Thought Sounds" class="uk-thumbnail-expand"></noscript></div>
				<div class="uk-card-body">
				<div class="uk-card-title">Mark Farina - Mushroom Jazz 7</div>
				<p>Any of Mark Farina&apos;s Mushroom Jazz compilations deserve to be on my &quot;tops list&quot;, but I figured I&apos;d just include the latest and let you go from there. Mushroom Jazz is a unique genre that has remained bubbling under the mainstream for years (starting in &apos;92), but you really can&apos;t mention it without including Mark in the convo. It&apos;s a melange of downtempo, hip-hop, jazz, R&amp;B, &amp; Latin beautifully mixed into an uninterrupted hour-long set. These used to be obscure releases passed between friends (thanks again Mike!), but with the internet, you too can have awesome music... no prereq required.</p><div class="uk-button-group"><a href="https://geo.itunes.apple.com/us/album/mushroom-jazz-7/id419258259?at=1000lo7e&amp;mt=1&amp;app=music" class="uk-button uk-button-default uk-button-small" title="Mark Farina - Mushroom Jazz 7 | iTunes" target="_blank" rel="nofollow" data-uk-icon="icon:apple">iTunes </a><a href="https://www.amazon.com/gp/product/B004LXJCI8/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B004LXJCI8&amp;linkCode=as2&amp;tag=knoidebra20-20&amp;linkId=7c226438a6c93f98b07c97d72e952584" class="uk-button uk-button-default uk-button-small" title="Mark Farina - Mushroom Jazz 7 | Amazon" target="_blank" rel="nofollow" data-uk-icon="icon:amazon">Amazon </a></div>
			</div>
			</div>
		</li>	
		<li class="uk-width-1-2@s uk-width-1-3@xl">
			<div class="uk-card uk-card-default uk-card-small uk-card-hover">
				<div class="uk-card-media-top"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2016/11/B-Fleishmann-The-Humbucking-Coil-Deep-Thought-Sounds.jpg" alt="Deep Thought Sounds: How Music Aids Focus &amp; the Best Albums to Listen to While Working" title="B Fleishmann - The Humbucking Coil | Deep Thought Sounds" class="uk-thumbnail-expand" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2016/11/B-Fleishmann-The-Humbucking-Coil-Deep-Thought-Sounds.jpg" alt="Deep Thought Sounds: How Music Aids Focus &amp; the Best Albums to Listen to While Working" title="B Fleishmann - The Humbucking Coil | Deep Thought Sounds" class="uk-thumbnail-expand"></noscript></div>
				<div class="uk-card-body">
				<div class="uk-card-title">B Fleishmann - The Humbucking Coil</div>
				<p>I&apos;d like to begin this summary with a legally binding recommendation - If my life is ever made into a biopic, I want this to be the score. B. Fleischmann is an obscure German producer and his mastery of composition will bring tears to your eyes. The Humbucking Coil will drift your mind to a wonderful place and it still demands very little of your explicit attention. This 2006 gem has garnered both a special place in my heart and also prominence in my &quot;Best Albums for Working&quot; list. I&apos;m very confident that it&apos;ll the same for you.</p><a href="https://music.apple.com/us/album/the-humbucking-coil/94563354" class="uk-button uk-button-default uk-button-small" title="B Fleishmann - The Humbucking Coil | iTunes" target="_blank" rel="nofollow" data-uk-icon="icon:apple">iTunes </a><a href="https://www.amazon.com/gp/product/B000CETP7I/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B000CETP7I&amp;linkCode=as2&amp;tag=knoidebra20-20&amp;linkId=1de79357e7f5760318f4742376892399" class="uk-button uk-button-default uk-button-small" title="B Fleishmann - The Humbucking Coil | Amazon" target="_blank" rel="nofollow" data-uk-icon="icon:amazon">Amazon </a>
				</div>
			</div>
		</li>
		<li class="uk-width-1-2@s uk-width-1-3@xl">
			<div class="uk-card uk-card-default uk-card-small uk-card-hover">
				<div class="uk-card-media-top"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2016/11/XXYYXX-XXYYXX-Best-Albums-to-Listen-to-While-Working.jpg" alt="Deep Thought Sounds: How Music Aids Focus &amp; the Best Albums to Listen to While Working" title="XXYYXX - XXYYXX | Best Albums to Listen to While Working" class="uk-thumbnail-expand" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2016/11/XXYYXX-XXYYXX-Best-Albums-to-Listen-to-While-Working.jpg" alt="Deep Thought Sounds: How Music Aids Focus &amp; the Best Albums to Listen to While Working" title="XXYYXX - XXYYXX | Best Albums to Listen to While Working" class="uk-thumbnail-expand"></noscript></div>
				<div class="uk-card-body">
				<div class="uk-card-title">XXYYXX - XXYYXX <i>(Selt-Titled)</i></div>
				<p>Producers this young should not be this good. Marcel Everett has barely reached drinking age, originates from Orlando, and performs under the name XXYYXX. His spacey, ambient style is very reminiscent of Lapalux or Star Slinger, but his composition structure is quite a bit stronger in my opinion. Unlike the previous recommendations this album is built of independent tracks, but the tone is so consistent that you&apos;ll hardly notice. Great work music and hands down the number one &quot;Damn, Who is this?&quot; response in my car.</p><a href="https://geo.itunes.apple.com/us/album/xxyyxx/id1056252341?at=1000lo7e&amp;mt=1&amp;app=music" class="uk-button uk-button-default uk-button-small" title="XXYYXX - XXYYXX | iTunes" target="_blank" rel="nofollow" data-uk-icon="icon:apple">iTunes </a>
				</div>
			</div>
		</li>
		<li class="uk-width-1-2@s uk-width-1-3@xl">
			<div class="uk-card uk-card-default uk-card-small uk-card-hover">
				<div class="uk-card-media-top"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2016/11/AEIOU-Making-Music-Your-Own-Best-Albums-to-Listen-to-While-Working.jpg" alt="Deep Thought Sounds: How Music Aids Focus &amp; the Best Albums to Listen to While Working" title="AEIOU - Making Music Your Own | Best Albums to Listen to While Working" class="uk-thumbnail-expand" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2016/11/AEIOU-Making-Music-Your-Own-Best-Albums-to-Listen-to-While-Working.jpg" alt="Deep Thought Sounds: How Music Aids Focus &amp; the Best Albums to Listen to While Working" title="AEIOU - Making Music Your Own | Best Albums to Listen to While Working" class="uk-thumbnail-expand"></noscript></div>
				<div class="uk-card-body">
				<div class="uk-card-title">AEIOU - Making Music Your Own</div>
				<p>EVERYBODY loves Diplo... Now. But some of us have been fans since before Florida.... before Hollertronix even. AEIOU was an early collab from Wes highlighting rare funk 45&apos;s into a gorgeous mix. While this album is only solid work music for the true ADD crowd, it&apos;s notable for the way it breaks some of my previously mentioned rules and still manages to work for work. There are words, there are high pitched string instruments, but the transitions are so damn fluid that the album itself becomes solid for creative focus. The bonus here is the left-field track selection, but fair warning - It can be tricky to get your hands on a copy.</p><a href="https://www.discogs.com/Diplo-Tripledouble-Aeiou-Two/release/1853034" class="uk-button uk-button-default uk-button-small" title="AEIOU - Making Music Your Own | Discogs" target="_blank" rel="nofollow">Discogs</a>
                </div>
			</div>
		</li>			
		<li class="uk-width-1-2@s uk-width-1-3@xl">
			<div class="uk-card uk-card-default uk-card-small uk-card-hover">
				<div class="uk-card-media-top"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2016/11/Chet-Faker-Built-on-Glass-Best-Albums-to-Listen-to-While-Working.jpg" alt="Deep Thought Sounds: How Music Aids Focus &amp; the Best Albums to Listen to While Working" title="Chet Faker - Built on Glass | Best Albums to Listen to While Working" class="uk-thumbnail-expand" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2016/11/Chet-Faker-Built-on-Glass-Best-Albums-to-Listen-to-While-Working.jpg" alt="Deep Thought Sounds: How Music Aids Focus &amp; the Best Albums to Listen to While Working" title="Chet Faker - Built on Glass | Best Albums to Listen to While Working" class="uk-thumbnail-expand"></noscript></div>
				<div class="uk-card-body">
				<div class="uk-card-title">Chet Faker - Built on Glass</div>
				<p>While &quot;Chet Faker&quot; has hopped into my vernacular as a preferred way of identifying bearded hipsters, there&apos;s no denying the beauty of this album. This Aussie might be best known for his contextualization of &quot;No Diggity&quot;, but Built on Glass has remained t the top of both my &quot;Albums for Working&quot; and &quot;Baby Making Music&quot; lists for quite a few years Again this is a tracked album with words on almost every track, but the mellow vibe and horn-heavy treble allow you to focus on any project. This album does top out closer to 45 minutes, but is mandatory listening as far as I&apos;m concerned.</p><p></p><div class="uk-button-group"><a href="https://geo.itunes.apple.com/us/album/built-on-glass/id1127427491?at=1000lo7e&amp;mt=1&amp;app=music" class="uk-button uk-button-default uk-button-small" title="AEIOU - Making Music Your Own | iTunes" target="_blank" rel="nofollow" data-uk-icon="icon:apple">iTunes </a><a href="https://www.amazon.com/gp/product/B01HHGSD1M/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B01HHGSD1M&amp;linkCode=as2&amp;tag=knoidebra20-20&amp;linkId=d29a1787e04e024465bec2786ba5d31c" class="uk-button uk-button-default uk-button-small" title="AEIOU - Making Music Your Own | Amazon" target="_blank" rel="nofollow" data-uk-icon="icon:amazon">Amazon </a></div>
                </div>
            </div>
		</li>
		<li class="uk-width-1-2@s">
			<div class="uk-card uk-card-default uk-card-body uk-card-small uk-card-hover">
				<div class="uk-card-title">DJ Kicks - Nightmares on Wax</div>
				<p>DJ Kicks is a widely celebrated series with 10+ releases from !K7. While they&apos;re all quality listens, this mix in particular conveys what well-textured mixes can do in preserving a mood and feel. If you like Mark Farina&apos;s Mushroom Jazz series, DJ Kick&apos;s Nightmares on Wax will make a great stepping stone due to its similar trip-hop feel.</p><a href="https://www.amazon.com/gp/product/B00004Y9UU/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B00004Y9UU&amp;linkCode=as2&amp;tag=knoidebra20-20&amp;linkId=7127d4f4e71a24fd60785d3e1ea11400" class="uk-button uk-button-default uk-button-small" title="DJ Kicks - Nightmares on Wax | Amazon" target="_blank" rel="nofollow" data-uk-icon="icon:amazon">Amazon </a>
			</div>
		</li>
		<li class="uk-width-1-2@s">
			<div class="uk-card uk-card-default uk-card-body uk-card-small uk-card-hover">
				<div class="uk-card-title">Bonobo - Black Sands</div>
				<p>Bonobo is an English DJ that has recently gained some fame, mostly from his insanely well-produced remixes. His fourth studio album Black Sands has hit every mark listed above for great albums for concentrating.  This string-laden masterpiece plays well front to back and belongs in any music library.</p><div class="uk-button-group"><a href="https://geo.itunes.apple.com/us/album/black-sands/id416292276?at=1000lo7e&amp;mt=1&amp;app=music" class="uk-button uk-button-default uk-button-small" title="Bonobo - Black Sands | iTunes" target="_blank" rel="nofollow" data-uk-icon="icon:apple">iTunes </a><a href="https://www.amazon.com/gp/product/B004OO71AU/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B004OO71AU&amp;linkCode=as2&amp;tag=knoidebra20-20&amp;linkId=c0ce390bf42404b79432ace927cda2ce" class="uk-button uk-button-default uk-button-small" title="Bonobo - Black Sands | Amazon" target="_blank" rel="nofollow" data-uk-icon="icon:amazon">Amazon </a></div>
			</div>
		</li>
		<li class="uk-width-1-2@s">
			<div class="uk-card uk-card-default uk-card-body uk-card-small uk-card-hover">
				<div class="uk-card-title">Boards of Canada - Music Has the Right to Children</div>
				<p>Boards of Canada live in an ambient world. This Scotland based, England born duo has been pushing the edges of ambient music for more than a decade. There is no supergroup I&apos;d rather have bleeding through my headphones during a long trek in the snow and that also makes them ideal for enduring long projects. Any of their albums make for great work music, but Music has the Right to Children may be their most celebrated release. If you like what you hear, dig further and you&apos;ll remain happy.</p><div class="uk-button-group"><a href="https://geo.itunes.apple.com/us/album/music-has-right-to-children/id281116024?at=1000lo7e&amp;mt=1&amp;app=music" class="uk-button uk-button-default uk-button-small" title="Boards of Canada - Music Has the Right to Children | iTunes" target="_blank" rel="nofollow" data-uk-icon="icon:apple">iTunes </a><a href="https://www.amazon.com/gp/product/B001E45KZ6/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B001E45KZ6&amp;linkCode=as2&amp;tag=knoidebra20-20&amp;linkId=e30059b332f38ec3f8e7e1bf7db637c1" class="uk-button uk-button-default uk-button-small" title="Boards of Canada - Music Has the Right to Children | Amazon" target="_blank" rel="nofollow" data-uk-icon="icon:amazon">Amazon </a></div>
			</div>
		</li>
		<li class="uk-width-1-2@s">
			<div class="uk-card uk-card-default uk-card-body uk-card-small uk-card-hover">
				<div class="uk-card-title">Prefuse 73 - One Word Extinguisher</div>
				<p>Just one of several monikers, Scott Herren is one of my favorite under-celebrated west coast producers. While his tracks can exhibit abrupt cord changes, the stability of his loops make well suited for concentration. His 2003 release One Word Extinguisher is my second favorite offering, but as a conceptual &quot;break up album&quot; it relies more on melody then words - making it ideal for chasing that flow state discussed earlier. Even the vocals are chopped and looped so they become more of an instrument then point of focus.</p><div class="uk-button-group"><a href="https://geo.itunes.apple.com/us/album/one-word-extinguisher/id281216400?at=1000lo7e&amp;mt=1&amp;app=music" class="uk-button uk-button-default uk-button-small" title="Prefuse 73 - One Word Extinguisher | iTunes" target="_blank" rel="nofollow" data-uk-icon="icon:apple">iTunes </a><a href="https://www.amazon.com/gp/product/B001DX6LEW/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B001DX6LEW&amp;linkCode=as2&amp;tag=knoidebra20-20&amp;linkId=abc4047a726cf706239ee6b036b302e1" class="uk-button uk-button-default uk-button-small" title="Prefuse 73 - One Word Extinguisher | Amazon" target="_blank" rel="nofollow" data-uk-icon="icon:amazon">Amazon </a></div>
			</div>
		</li>	
	</ul>
	<small class="uk-width-1-1 uk-display-inline-block uk-margin-top uk-text-center uk-text-muted">* Album links include a tracking code for credit, but had zero effect on my choices.</small>
</div>
<span class="uk-text-muted uk-align-right" data-uk-icon="icon:link" data-uk-scrollspy="repeat:true;cls:uk-animation-fade"></span>
<div class="uk-text-lead uk-heading-divider">Running With The Music Aids Focus Concept...</div>
<p>There are now entire industries built on the previous theory. One example <a href="https://www.brain.fm/" title="Brain.fm" target="_blank" rel="nofollow">Brain.fm</a>, offers a streaming service with a homepage quote stating <i>&quot;It feels like your headphones are giving you a mild dose of Ritalin&quot;</i>. <strong>Spotify</strong> and <strong>Pandora</strong> have ever-growing playlists of &quot;Productivity Music&quot; and &quot;Albums to Listen to While Working&quot;. Like everything else mainstream, these remove your individual preferences though. It&apos;s much better to just realize that you need to reinterpret and contextualize your music for any given situation. This might seem like common sense to some folks, but there&apos;s also a kid trying to study to a top-ten hip-hop album right now that just doesn&apos;t understand why he can&apos;t concentrate like the rest of his class seems to. It just takes a small tweak of perspective and anyone can turn a subtle distraction into a tool that allows you to think more efficiently. Collecting and curating your own <strong>deep thought sounds</strong> will help you concentrate, focus, and work more effectively - Which is a universally helpful addition to everyone&apos;s tool-belt.</p>
<div class="uk-margin-large uk-panel uk-panel-header uk-panel-box uk-panel-box-secondary">
<span class="uk-text-muted uk-margin-remove-adjacent uk-align-right" data-uk-icon="icon:bookmark"></span>
<h6 class="uk-text-lead uk-heading-divider uk-text-muted">Suggested Reading</h6>
<ul class="uk-subnav uk-subnav-pill uk-text-small uk-text-center">
	<li><a href="https://www.theguardian.com/education/2016/aug/20/does-music-really-help-you-concentrate" title="Does Music Really Help You Concentrate | The Guardian" target="_blank" rel="nofollow" data-uk-icon="icon:link">Guardian: Does Music Help?</a></li>
	<li><a href="https://www.independent.co.uk/student/student-life/Studies/how-music-could-help-you-to-concentrate-while-studying-a6907341.html" title="Independant: How Music Could Help You to Concentrate While Studying | Independant" target="_blank" rel="nofollow" data-uk-icon="icon:link">Indy: Music Helps Concentration </a></li>
	<li><a href="https://lifehacker.com/the-best-sounds-for-getting-work-done-5365012" title="The Best Sounds for Getting Work Done | LifeHacker" target="_blank" rel="nofollow" data-uk-icon="icon:link">LifeHacker: Sounds for Work </a></li>
	<li><a href="https://www.amazon.com/gp/product/0061339202/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0061339202&amp;linkCode=as2&amp;tag=knoidebra20-20&amp;linkId=56f787fe3ce0fd87218c2a1a7627648d" title="Flow: The Psychology of Optimal Experience - Mihaly Csikszentmihalyi" target="_blank" rel="nofollow" data-uk-icon="icon:link">Flow - Mihaly Csikszentmihalyi </a></li>
	<li><a href="https://www.amazon.com/gp/product/0897502027/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0897502027&amp;linkCode=as2&amp;tag=knoidebra20-20&amp;linkId=482bfe61741ef6f3711a8fdaf0f975e9" title="Tao of Jeet Kune Do - Bruce Lee | Amazon Books" target="_blank" rel="nofollow" data-uk-icon="icon:link">Tao of Jeet Kune Do - Bruce Lee </a></li>
</ul>
</div>
<p class="uk-margin uk-text-center">I hope you&apos;ve found my post on Deep Thought Sounds helpful, but if you have any constructive feedback or tips on your own favorite productivity albums feel free to comment below. If you&apos;ve found this article helpful or know someone that would share it on your favorite social site and as always - Thanks for stopping by.</p>]]></content:encoded></item><item><title><![CDATA[New Favorite Thing… Smart Car Body Kits]]></title><description><![CDATA[It’s not a Micro-Machine. It’s not a Golf Cart w/ a grill. It’s a Smart Car… With a Body Kit. That's right smart car body kits.]]></description><link>https://www.matthewhaeck.com/smart-car-body-kits/</link><guid isPermaLink="false">61bc36149d0c35043f252fde</guid><category><![CDATA[My Favorite Things]]></category><category><![CDATA[Random Opinions]]></category><dc:creator><![CDATA[Matthew Haeck]]></dc:creator><pubDate>Sat, 13 Oct 2018 16:00:00 GMT</pubDate><media:content url="https://cdn.matthewhaeck.com/content/images/2015/02/mini.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://cdn.matthewhaeck.com/content/images/2015/02/mini.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits"><p>It&#x2019;s not a Micro-Machine. It&#x2019;s not a Golf Cart w/ a grill. It&#x2019;s a Smart Car, with a Body Kit, and it&apos;s kinda amazing. Smart car body kits are a clever way to make those eco-friendly cars (that we all love) look just a bit cooler. The upside of smart cars has always been obvious, but the drawbacks lurk right beneath the surface. The largest drag on the potential growth of smart cars is their look. Not all of these are real, obviously - Forced perspective, a little photoshop cropping, a motion blur, etc. The point to me is that this is an idea with demand, that could be done, and should be done. A few killer body kits could really help push the eco-car cause.</p>
<div data-uk-lightbox>
<ul class="uk-grid uk-grid-small uk-child-width-1-3@m uk-margin-medium-top" data-uk-grid data-uk-height-match="target: &gt; li &gt; div &gt; figure &gt; img">
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2013/05/smorsche.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Grey Porche Smart Car Body Kits" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2013/05/smorsche.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Grey Porche Smart Car Body Kits" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Grey Porche Smart Car Body Kits</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2013/05/smorsche.jpg" title="Grey Porche Smart Car Body Kits" data-caption="Grey Porche Smart Car Body Kits" class="uk-position-cover"></a></div></li>
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2013/05/smart-car004.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Yellow Lambo Smart Car Body Kit" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2013/05/smart-car004.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Yellow Lambo Smart Car Body Kit" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Yellow Lambo Smart Car Body Kit</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2013/05/smart-car004.jpg" title="Yellow Lambo Smart Car Body Kit" data-caption="Yellow Lambo Smart Car Body Kit" class="uk-position-cover"></a></div></li>
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/03/shelby-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Shelby  Smart Car Body Kit" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/03/shelby-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Shelby  Smart Car Body Kit" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Shelby Smart Car Body Kit</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2015/03/shelby-smart-car-body-kit.jpg" title="Shelby  Smart Car Body Kit" data-caption="Shelby  Smart Car Body Kit" class="uk-position-cover"></a></div></li>
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2013/05/custometype-s2483x1862-116414.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Jaguar e-Type Coupe Smart Car Body Kit" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2013/05/custometype-s2483x1862-116414.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Jaguar e-Type Coupe Smart Car Body Kit" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Jaguar e-Type Coupe Smart Car Body Kit</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2013/05/custometype-s2483x1862-116414.jpg" title="Jaguar e-Type Coupe Smart Car Body Kit" data-caption="Jaguar e-Type Coupe Smart Car Body Kit" class="uk-position-cover"></a></div></li>
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2014/12/audi-mini-car.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Audi RS Smart Car Body Kit" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2014/12/audi-mini-car.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Audi RS Smart Car Body Kit" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Audi RS Smart Car Body Kit</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2014/12/audi-mini-car.jpg" title="Audi RS Smart Car Body Kit" data-caption="Audi RS Smart Car Body Kit" class="uk-position-cover"></a></div></li>
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/03/vw-bus-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="VW Bus Smart Car Body Kit" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/03/vw-bus-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="VW Bus Smart Car Body Kit" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">VW Bus Smart Car Body Kit</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2015/03/vw-bus-smart-car-body-kit.jpg" title="VW Bus Smart Car Body Kit" data-caption="VW Bus Smart Car Body Kit" class="uk-position-cover"></a></div></li>
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2013/05/smart-car-body-kits-red-ferrari-look.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Vette Smart Car Body Kit" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2013/05/smart-car-body-kits-red-ferrari-look.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Vette Smart Car Body Kit" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Vette Smart Car Body Kit</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2013/05/smart-car-body-kits-red-ferrari-look.jpg" title="Vette Smart Car Body Kit" data-caption="Vette Smart Car Body Kit" class="uk-position-cover"></a></div></li>
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2013/05/smart-car-audi-kit1.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Audi SUV Smart Car Body Kits" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2013/05/smart-car-audi-kit1.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Audi SUV Smart Car Body Kits" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Audi SUV Smart Car Body Kits</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2013/05/smart-car-audi-kit1.jpg" title="Audi SUV Smart Car Body Kits" data-caption="Audi SUV Smart Car Body Kits" class="uk-position-cover"></a></div></li>
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2014/12/smart-car-design-ferrari.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Grey Ferrari Smart Car Body Kit" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2014/12/smart-car-design-ferrari.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Grey Ferrari Smart Car Body Kit" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Grey Ferrari Smart Car Body Kit</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2014/12/smart-car-design-ferrari.jpg" title="Grey Ferrari Smart Car Body Kit" data-caption="Grey Ferrari Smart Car Body Kit" class="uk-position-cover"></a></div></li>
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/03/lotus-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Lotus  Smart Car Body Kit" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/03/lotus-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Lotus  Smart Car Body Kit" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Lotus Smart Car Body Kit</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2015/03/lotus-smart-car-body-kit.jpg" title="Lotus  Smart Car Body Kit" data-caption="Lotus  Smart Car Body Kit" class="uk-position-cover"></a></div></li>
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/03/smobra-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Smobra Smart Car Body Kit" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/03/smobra-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Smobra Smart Car Body Kit" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Smobra Smart Car Body Kit</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2015/03/smobra-smart-car-body-kit.jpg" title="Smobra Smart Car Body Kit" data-caption="Smobra Smart Car Body Kit" class="uk-position-cover"></a></div></li>
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/03/r8-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Audi R8  Smart Car Body Kit" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/03/r8-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Audi R8  Smart Car Body Kit" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Audi R8 Smart Car Body Kit</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2015/03/r8-smart-car-body-kit.jpg" title="Audi R8  Smart Car Body Kit" data-caption="Audi R8  Smart Car Body Kit" class="uk-position-cover"></a></div></li>
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2013/05/minicar02gr7.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Lamborghini Countach Smart Car Body Kit" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2013/05/minicar02gr7.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Lamborghini Countach Smart Car Body Kit" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Lamborghini Countach Smart Car Body Kit</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2013/05/minicar02gr7.jpg" title="Lamborghini Countach Smart Car Body Kit" data-caption="Lamborghini Countach Smart Car Body Kit" class="uk-position-cover"></a></div></li>
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2013/05/kchengmini.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Black Benz Smart Car Body Kits" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2013/05/kchengmini.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Black Benz Smart Car Body Kits" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Black Benz Smart Car Body Kits</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2013/05/kchengmini.jpg" title="Black Benz Smart Car Body Kits" data-caption="Black Benz Smart Car Body Kits" class="uk-position-cover"></a></div></li>
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2013/05/minicar11wv3.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Cayenne Smart Car Body Kit" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2013/05/minicar11wv3.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Cayenne Smart Car Body Kit" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Cayenne Smart Car Body Kit</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2013/05/minicar11wv3.jpg" title="Cayenne Smart Car Body Kit" data-caption="Cayenne Smart Car Body Kit" class="uk-position-cover"></a></div></li>
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/03/bmw-5-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="BMW 5 Series Smart Car Body Kit" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/03/bmw-5-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="BMW 5 Series Smart Car Body Kit" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">BMW 5 Series Smart Car Body Kit</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2015/03/bmw-5-smart-car-body-kit.jpg" title="BMW 5 Series Smart Car Body Kit" data-caption="BMW 5 Series Smart Car Body Kit" class="uk-position-cover"></a></div></li>
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/03/ferrari-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Lotus Esprit Smart Car Body Kit" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/03/ferrari-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Lotus Esprit Smart Car Body Kit" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Lotus Esprit Smart Car Body Kit</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2015/03/ferrari-smart-car-body-kit.jpg" title="Lotus Esprit Smart Car Body Kit" data-caption="Lotus Esprit Smart Car Body Kit" class="uk-position-cover"></a></div></li>
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/03/smart-smeemer-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Smart Smeemer Smart Car Body Kit" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/03/smart-smeemer-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Smart Smeemer Smart Car Body Kit" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Smart Smeemer Smart Car Body Kit</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2015/03/smart-smeemer-smart-car-body-kit.jpg" title="Smart Smeemer Smart Car Body Kit" data-caption="Smart Smeemer Smart Car Body Kit" class="uk-position-cover"></a></div></li>
</ul>
<ul class="uk-grid uk-grid-small uk-child-width-1-4@m uk-margin-medium-bottom" data-uk-grid data-uk-height-match="target: &gt; li &gt; figure &gt; a &gt; img">
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/03/bmw-coupe-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="BMW Coupe Smart Car Body Kits" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/03/bmw-coupe-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="BMW Coupe Smart Car Body Kits" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">BMW Coupe Smart Car Body Kits</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2015/03/bmw-coupe-smart-car-body-kit.jpg" title="BMW Coupe Smart Car Body Kits" data-caption="BMW Coupe Smart Car Body Kits" class="uk-position-cover"></a></div></li>
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/03/delorean-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Delorean Smart Car Body Kits" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/03/delorean-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Delorean Smart Car Body Kits" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Delorean Smart Car Body Kits</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2015/03/delorean-smart-car-body-kit.jpg" title="Delorean Smart Car Body Kits" data-caption="Delorean Smart Car Body Kits" class="uk-position-cover"></a></div></li>
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/03/mustang-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Mustang Smart Car Body Kits" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/03/mustang-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="Mustang Smart Car Body Kits" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Mustang Smart Car Body Kits</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2015/03/mustang-smart-car-body-kit.jpg" title="Mustang Smart Car Body Kits" data-caption="Mustang Smart Car Body Kits" class="uk-position-cover"></a></div></li>
<li><div class="uk-inline"><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/03/tiny-getz-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="BMW Coupe Smart Car Body Kits" class="uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/03/tiny-getz-smart-car-body-kit.jpg" alt="New Favorite Thing&#x2026; Smart Car Body Kits" title="BMW Coupe Smart Car Body Kits" class="uk-box-shadow-small"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">BMW Coupe Smart Car Body Kits</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2015/03/tiny-getz-smart-car-body-kit.jpg" title="BMW Coupe Smart Car Body Kits" data-caption="BMW Coupe Smart Car Body Kits" class="uk-position-cover"></a></div></li>
</ul>
</div>
<p>Those are just a couple samples - Audi&#x2019;s, Lambos, Ferraris, Jags, Corvettes, Porches... and I&apos;ll keep this updated, hopefully w/ some manufacturers soon. I did run across a couple smart car kits at <a href="https://smartmadness.com/index.php?route=product/product&amp;path=95&amp;product_id=218" title="SmartSadness.com" target="_blank" rel="nofollow">SmartSadness.com</a>, but they don&apos;t seem to be production ready yet.</p>
<p class="uk-text-center">If you happen to run across any other impressive smart car kit pictures online, let me know in the comments. I&#x2019;ll keep a collection going because these are pretty slick looking and someone w/ fibreglass or carbon-fiber skills could make an absolute killing right now.</p>]]></content:encoded></item><item><title><![CDATA[Too Hot for TED??]]></title><description><![CDATA[This is my running collection of banned TED Talks. to make it sound edgy, we'll call it - Too Hot for TED.]]></description><link>https://www.matthewhaeck.com/too-hot-for-ted/</link><guid isPermaLink="false">61bc36149d0c35043f252fee</guid><category><![CDATA[Wisdom Quotes]]></category><dc:creator><![CDATA[Matthew Haeck]]></dc:creator><pubDate>Sat, 19 May 2018 03:45:00 GMT</pubDate><media:content url="https://cdn.matthewhaeck.com/content/images/2015/02/too-hot-for-ted.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://cdn.matthewhaeck.com/content/images/2015/02/too-hot-for-ted.jpg" alt="Too Hot for TED??"><p>Since TED is supposed to be a home for intelligent conversation, it&apos;s a little disturbing sometimes when they recall their support of a speaker. If they approved both the speaker and the topic, it seems a little punitive to disown a hard thought out speech. That&apos;s why I decided banned TED talks should have a home here... and now they do.</p>
<span class="uk-text-muted uk-margin-remove-adjacent uk-align-right" data-uk-icon="icon:youtube" data-uk-scrollspy="repeat:true; cls: uk-animation-fade"></span>
<h2 class="uk-text-lead">Currently Banned TED Talks...</h2>
<div class="uk-background-secondary uk-padding-small uk-margin uk-light">
<div class="ratio-container">
<iframe src="https://www.youtube-nocookie.com/embed/bBx2Y5HhplI?autoplay=0&amp;rel=0&amp;controls=0&amp;showinfo=0" width="1280" height="720" class="uk-box-shadow-medium uk-wwidth-1-1" allowfullscreen></iframe>
</div></div>
<div class="uk-article-lead uk-text-center uk-margin">Nick Hanauer on Inequality - <a href="https://www.npr.org/2015/02/06/379181798/how-should-we-distribute-our-wealth" title="NPR - Debate about Nick Hanauer&#x2019;s Talk" target="_blank" rel="nofollow">The Debate</a></div>
<div class="uk-background-secondary uk-padding-small uk-margin uk-light">
<div class="ratio-container">
<iframe src="https://www.youtube-nocookie.com/embed/JKHUaNAxsTg?autoplay=0&amp;rel=0&amp;controls=0&amp;showinfo=0" width="1280" height="720" class="uk-box-shadow-medium uk-width-1-1" allowfullscreen></iframe>
</div></div>
<div class="uk-article-lead uk-text-center uk-margin">Rupert Sheldrake - The Science Delusion - <a href="https://blog.ted.com/the-debate-about-rupert-sheldrakes-talk/" title="TED Blog - Debate about Rupert Sheldrake&#x2019;s Talk" target="_blank" rel="nofollow">The Debate</a></div>
<div class="uk-background-secondary uk-padding-small uk-margin uk-light">
<div class="ratio-container">
<iframe src="https://www.youtube-nocookie.com/embed/Y0c5nIvJH7w?autoplay=0&amp;rel=0&amp;controls=0&amp;showinfo=0" width="1280" height="720" class="uk-box-shadow-medium uk-width-1-1" allowfullscreen></iframe>
</div>
</div>
<div class="uk-article-lead uk-text-center uk-margin">Graham Hancock - The War on Consciousness - <a href="https://blog.ted.com/the-debate-about-graham-hancocks-talk/" title="TED Blog - Debate about Graham Hancock&#x2019;s Talk" target="_blank" rel="nofollow">The Debate</a></div>
<div class="uk-background-secondary uk-padding-small uk-margin uk-light">
<div class="ratio-container">
<iframe src="https://www.youtube-nocookie.com/embed/ci5p1OdVLAc?autoplay=0&amp;rel=0&amp;controls=0&amp;showinfo=0" width="1280" height="720" class="uk-box-shadow-medium uk-width-1-1" allowfullscreen></iframe>
</div>
</div>
<div class="uk-article-lead uk-text-center uk-margin-top uk-margin-medium-bottom">Sarah Silverman: A new perspective on the number 3000 - <a href="https://techcrunch.com/2010/02/15/the-ted-v-sarah-silverman-fight-turns-really-retarded/" title="TechCrunch - Debate about Sarah Silverman&#x2019;s Talk" target="_blank" rel="nofollow">The Debate</a></div>
<span class="uk-text-muted uk-margin-remove-adjacent uk-align-right" data-uk-icon="icon:question" data-uk-scrollspy="repeat:true; cls: uk-animation-fade"></span>
<h3 class="uk-text-lead uk-heading-divider">Know Of Any Other Banned TED Talks?</h3>
<p class="uk-text-center">If you run across any new editing done by the team over at TED, please shoot a message this way. Personally, I&apos;m a fan of thinking that <strong>no</strong> speech should be &quot;too hot&quot; for TED.</p>]]></content:encoded></item><item><title><![CDATA[The Top Benefits of Google Fiber]]></title><description><![CDATA[Become familiar with the benefits that Google Fiber allows, advantages of a fiber optic life and all the apps /  tools that will be shining soon.]]></description><link>https://www.matthewhaeck.com/top-benefits-of-google-fiber/</link><guid isPermaLink="false">61bc36149d0c35043f252ff3</guid><dc:creator><![CDATA[Matthew Haeck]]></dc:creator><pubDate>Fri, 14 Aug 2015 06:52:33 GMT</pubDate><media:content url="https://cdn.matthewhaeck.com/content/images/2015/08/top-benefits-of-google-fiber-matthew-haeck.jpg" medium="image"/><content:encoded><![CDATA[<!--kg-card-begin: markdown--><img src="https://cdn.matthewhaeck.com/content/images/2015/08/top-benefits-of-google-fiber-matthew-haeck.jpg" alt="The Top Benefits of Google Fiber"><p>Excitement around the Triangle is palatable. This is one improvement that even our embarrassingly regressive politicians won&apos;t be able to exploit or undermine. Raleigh, Durham, and Chapel-Hill are on the vanguard of a nationwide change. Not quite as early as the lucky folks of Kansas City, but on the second wave nonetheless. As Google&apos;s infrastructure begins to take form, it&apos;s a great opportunity for residents to do a little spring cleaning and become familiar with all the benefits that Google Fiber allows and the competitive advantages it will bring to our region.</p>
<h2 class="uk-text-lead uk-heading-divider uk-margin-large-top">Advantages Of A Fiber Optic Life</h2>
<figure class="uk-box-shadow-small uk-width-1-3@m uk-align-right"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/08/google-map-se-benefits-of-google-fiber.jpg" title="Google Fiber Map - SE United States" alt="The Top Benefits of Google Fiber" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/08/google-map-se-benefits-of-google-fiber.jpg" title="Google Fiber Map - SE United States" alt="The Top Benefits of Google Fiber"></noscript><figcaption class="uk-caption">Google Fiber Map - SE United States</figcaption></figure>
<p>For those rock dwellers, let&apos;s start by quickly familiarizing you with the concept. In the macro view, it may not seem as earth-shaking as my intonation may convey... but trust me - this is a game changer. <a href="https://fiber.google.com/" title="Google Fiber" target="_blank" rel="nofollow">Google&apos;s Fiber service</a> is a simple concept and one that has tossed around by our community leaders for quite some time. It just took a little forethought for a market leader to actually make the investment. The first city blessed with this investment was Kansas City in 2009 and the tech industry improvements have been well documented (<a href="https://www.kansascity.com/news/business/technology/article10441850.html" title="Kansas City Star: AT&amp;T to Match Google Fiber Speeds, Prices" target="_blank" rel="nofollow">Kansas City Star: &quot;AT&amp;T to Match Google Fiber Speeds, Prices&quot;</a>). The second round will be reaching the Triangle region of North Carolina, Austin Texas, and Provo Utah. This expanded connectivity touches numerous macro concepts, but will also do quite a bit to improve the day-to-day lives of its residents.</p>
<h3 class="uk-text-lead uk-heading-divider uk-margin-large-top">No More Media Buffering</h3>
<p>Let&apos;s start by identifying the most obvious perk we&apos;re receiving... Speed. A decade or so after the internet&apos;s genesis, users found themselves in an awkward predicament. We were all trying (and hoping) to squeeze data that was never intended to fit in phone lines, through phone lines. Imagine playing a song for a friend across the phone.. Not so clear. Now imagine trying to squeeze an HD movie through that same plumbing. That&apos;s when we were introduced to the concept of &quot;buffering&quot;. One of the most evident perks of Google Fiber will be the loss of that.</p><p>There are a few other existing software technologies that have been dragged down by buffering and will flourish in its absence. Video-based communications will be one large benefactor. Skype and Facetime are the most universally adopted, but business people relying on GoToMeeting or Cisco Teleconferencing will also be rewarded. Streaming audio and video will also take advantage of the expansion almost instantly - Meaning your Netflix, Hulu, Pandora, Spotify, iCloud, and YouTube apps will be exponentially more user-friendly.</p>
<h3 class="uk-text-lead uk-heading-divider uk-margin-large-top">True Cloud Storage</h3>
<figure class="uk-box-shadow-small uk-width-1-3@m uk-align-right"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/08/cloud-computing-benefits-of-google-fiber.jpg" alt="The Top Benefits of Google Fiber" title="True Cloud Storage" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/08/cloud-computing-benefits-of-google-fiber.jpg" alt="The Top Benefits of Google Fiber" title="True Cloud Storage"></noscript><figcaption class="uk-caption">True Cloud Storage</figcaption></figure>
<p>Cloud is more than just a buzzword, but few people really know why that is. Tech folks can explain it easily in just one word - Redundancy. &quot;Cloud Storage&quot; is based on a simple premise - If one server goes down, there should be another ready to take its place. This concept relies on the different methods of mirroring &amp; redirecting, but functionally - it just means when one server is down another takes its place. This allows a network drive to operate just like a hard drive, but it does require one thing - a fast connection. With the addition of fiber network, apps like Dropbox, iCloud, SugarSync, Box, and Google Drive are now viable options to avoid saving anything to disk.</p>
<p>Most people never think about it, but a server&#x2019;s physical location can also have a sizable effect on network speeds. Since this improvement is primarily client side it doesn&apos;t actually mean a server is any closer, but it does make them all easier (and faster) to reach. This streamlining of network traffic has a compounding effect. No matter what speeds you&apos;re dealing with, connecting to servers will now require less network bouncing to pass through. As these &quot;fast-lanes&quot; start to grow around the country, those higher speeds cause less overall network fatigue, in turn giving every internet user a faster connection. This concept is very similar to homes that produce solar energy. Not only are they requiring less power, but they&apos;re indirectly causing less regional grid stress.</p>
<h3 class="uk-text-lead uk-heading-divider uk-margin-large-top">Custom VPN Network</h3>
<figure class="uk-box-shadow-small uk-width-1-3@m uk-align-right"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/08/vpn-benefits-of-google-fiber.jpg" alt="The Top Benefits of Google Fiber" title="VPN - Benefits of Google Fibers" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/08/vpn-benefits-of-google-fiber.jpg" alt="The Top Benefits of Google Fiber" title="VPN - Benefits of Google Fibers"></noscript><figcaption class="uk-caption">VPN - Benefits of Google Fibers</figcaption></figure>
<p>Now were getting to the fun stuff - imagine being able to build your own custom VPN network. The technology is already there and it&apos;s fairly easy to learn in a day or two, but it has been relegated to the worlds of large businesses and universities because the speed hasn&apos;t been there. If you&apos;re not already familiar, think of a VPN as a tunnel from you to your network (or just read up on <a href="https://en.wikipedia.org/wiki/Virtual_private_network" title="Virtual Private Network - Wikipedia" target="_blank" rel="nofollow">Wikipedia</a> ;). The exclusivity of this connection provides the biggest perk - Security. Once the connection has been breached, the whole thing shuts down. Like an underwater tunnel - If a drop of water is detected, the whole operation is closed to the public.</p>
<p>The balance of security will always be a sliding scale, but our current state leans heavily in favor of the &quot;dark side&quot;. People are frightened of internet security... and they should be. Usable VPNs are an arrow in the quill that the public desperately needs. When you research the topic you can easily see all the benefits here, but if you&apos;re not a tech nerd just imagine confidently checking your email or logging into a credit card website from a public WiFi. Since these personal VPN servers are really just a gateway, you don&apos;t need a high-performance machine to set this up either. Any dated Gateway that is currently occupying closet space can do the job... insert gateway pun here.</p>
<h4 class="uk-text-lead uk-heading-divider uk-margin-large-top">Which Tools Really Harness the Advantages Of Fiber Optic Life?</h4>
<figure class="uk-box-shadow-small uk-width-1-3@m uk-align-right"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/08/glenwood-office-benefits-of-google-fiber.jpg" alt="The Top Benefits of Google Fiber" title="Glenwood Google Fiber Office - Raleigh, NC" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/08/glenwood-office-benefits-of-google-fiber.jpg" alt="The Top Benefits of Google Fiber" title="Glenwood Google Fiber Office - Raleigh, NC"></noscript><figcaption class="uk-caption">Google Fiber Map - SE United States</figcaption></figure>
<p>While we patiently await the infrastructure build and that great old Italian restaurant called &quot;519 South&quot; undergoes it&apos;s metamorphosis (see image), there is plenty of preliminary setups we can do. Clean off those old computers, get all your passwords updated, move your emails from POP to IMAP, take a little time to configure that SSL security&#x2026; basically, make all of those changes you temporarily put off that you promised you&apos;d come back to once you got everything working... then forgot about ;) Google also provides email updates to keep you in the loop about their timing estimates (signup here). If you&apos;re willing to upgrade your apps a bit, these are a few of our favorite services that you may want to consider (or reconsider) before the big move.</p>
<div class="uk-tile uk-tile-secondary uk-tile-small uk-margin-small">
<div class="uk-grid uk-text-center" data-uk-grid>
<ul class="uk-width-1-2@m uk-list uk-list-divider">
	<li><a href="https://www.dropbox.com/" title="Dropbox.com" target="_blank" rel="nofollow">Dropbox</a></li>
	<li><a href="https://www.icloud.com/" title="iCloud" target="_blank" rel="nofollow">iCloud</a></li>
	<li><a href="https://www1.sugarsync.com" title="SugarSync" target="_blank" rel="nofollow">SugarSync</a></li>
	<li><a href="https://www.apple.com/macos/big-sur/" title="Facetime" target="_blank" rel="nofollow">Facetime</a></li>
</ul>
<ul class="uk-width-1-2@m uk-list uk-list-divider">
	<li><a href="https://www.skype.com/en/" title="Skype" target="_blank" rel="nofollow">Skype</a></li>
	<li><a href="https://www.google.com/drive/" title="Google Drive" target="_blank" rel="nofollow">Google Drive</a></li>
	<li><a href="https://www.netflix.com/" title="Netflix" target="_blank" rel="nofollow">Netflix</a></li>
	<li><a href="https://www.box.com/" title="Box.com" target="_blank" rel="nofollow">Box</a></li>
</ul>
</div>
</div>
<h5 class="uk-text-lead uk-heading-divider uk-margin-large-top">Philosophical Underpinnings</h5>
<p>This is certainly just my opinion, but I believe antique monopolies like Time Warner and Comcast have been a drag on the overall economy for quite some time. They take a hundred dollars from us each month and offer very little in terms of progress. One additional competitor obviously doesn&apos;t fix the sector as a whole... but it is a great start. Saying that these dinosaurs are a little scared of the competition is an understatement, whether viewing the lobbying dollars they&apos;ve put up for restricting entry, their attempted powergrab that is squelched for now, or the conveniently timed &quot;higher speeds&quot; they&apos;re already advertising for. They&apos;re spokespeople till say it is a natural progression, but reading the situation as a whole - it&apos;s easy to see that they&apos;re just beginning to see the writing on the wall. The market still needs some streamlining but the days of price gouging, laughable customer service, restraining competition, and resting on an infrastructure that they never really built but are willing to charge us for could be nearing an end. That might be reading into the situation quite a bit, but it&apos;s now a possibility and I couldn&apos;t really say that just a year ago.</p>
<ul class="uk-subnav uk-subnav-pill">
	<li><a href="https://fiber.google.com" title="Google Fiber" target="_blank" rel="nofollow">Google Fiber</a></li>
	<li><a href="https://twitter.com/googlefiber" title="@GoogleFiber on Twitter" target="_blank" rel="nofollow">@GoogleFiber on Twitter</a></li>
</ul>
<p class="uk-text-small uk-text-muted uk-text-center">Thanks for stopping by.<!--kg-card-end: markdown--></p>]]></content:encoded></item><item><title><![CDATA[Hunting the Pea Island Outer Banks Coast Guard Station]]></title><description><![CDATA[Our July 4th Voyage to Pea Island Outer Banks Coast Guard Station. Complete with pics from Bodie Island Lighthouse, Hatteras, and Ocracoke Light Station.]]></description><link>https://www.matthewhaeck.com/pea-island-outer-banks-coast-guard-station/</link><guid isPermaLink="false">61bc36149d0c35043f252ff2</guid><category><![CDATA[My Favorite Things]]></category><dc:creator><![CDATA[Matthew Haeck]]></dc:creator><pubDate>Fri, 17 Jul 2015 07:33:00 GMT</pubDate><media:content url="https://cdn.matthewhaeck.com/content/images/2015/07/distant-shot-pea-island-coast-guard-station-pea-island-nc.jpg" medium="image"/><content:encoded><![CDATA[<!--kg-card-begin: markdown--><img src="https://cdn.matthewhaeck.com/content/images/2015/07/distant-shot-pea-island-coast-guard-station-pea-island-nc.jpg" alt="Hunting the Pea Island Outer Banks Coast Guard Station"><p>After spending the week in a tiny beach town called Duck, Kaeli and I decided to adventure out on the fourth to find some incredible ruins I&apos;d stumbled on a few months back.  A friend of mine from college had posted an article on Facebook under the title &quot;The 11 Strangest Abandoned Places in North Carolina&quot; <sub>[1]</sub>. After falling for the obvious clickbait, I found a gem that I&apos;d never seen before - an Outer Banks building just drowning in sand. Sand so high you needed to dig like a dog on a fence to pass through the doorways. I had a little trouble chasing down the original link, but after a little feed stalking, we found our target. After saying goodbye to her grandparents, aunt, uncle, and their family, we pointed the car south on 12 with a couple of Americanos and an insatiable commitment to finding the buried ruins and checking a few lighthouses off our list along the way.</p>
<div class="uk-inline uk-width-1-3@m uk-align-right uk-box-shadow-small" data-uk-lightbox><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/07/buried-pea-island-coast-guard-station-pea-island-nc.jpg" title="Pea Island Coast Guard Station" alt="Hunting the Pea Island Outer Banks Coast Guard Station" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/07/buried-pea-island-coast-guard-station-pea-island-nc.jpg" title="Pea Island Coast Guard Station" alt="Hunting the Pea Island Outer Banks Coast Guard Station"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-primary uk-position-bottom">Pea Island Coast Guard Station</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2015/07/buried-pea-island-coast-guard-station-pea-island-nc.jpg" title="Pea Island Coast Guard Station" data-caption="Pea Island Coast Guard Station" class="uk-position-cover"></a></div>
<p>Our Google Earth searching from the previous night didn&apos;t amount to much, but we did find the island we were aiming for - Pea Island. The caffeine started to kick in around 11 am (thankfully just as the 4th of July traffic started loosening up)  and we were booking our way south down the Outer Banks.</p>
<div class="uk-h5 uk-heading-divider uk-margin-medium-top">My Head is Like a Shark Fin</div>
<p>Although the previous week had been almost coma-level relaxing, there was a palatable <i>(yet unspoken)</i> fear of sharks anytime we were near the water. For some surely biological reason, this summer hosted an outrageous amount of shark attacks. This subconscious concern must have spooked my ADD, because something in the back of my head was reciting this appalling rap song from years ago with a chorus that cycled 4 times in a verse <i>&quot;my head is like a shark fin&quot;</i>. After struggling through conveying this hilarity, Kaeli and I had a conversation that went something like this...</p>
<blockquote class="uk-text-center uk-text-meta uk-padding-small uk-margin">Remember a few years ago there was a crappy Shark attack movie?.  Jaws?  No.  Jaws 2?  No. It was really bad. Like Carlos Mencia bad. Nicki Minaj bad.  ...was there a Jaws 3?.  No. Well, maybe. But no.  ...Samuel L Jackson was in it.   ...(silence).</blockquote>
<p>A bit of Googling garnered us a title. The 1999 <i>&quot;Not At All Classic&quot;</i> - Deep Blue Sea (<a href="https://www.imdb.com/title/tt0149261/" title="IMDB - Deep Blue Sea" target="_blank" rel="nofollow">IMDB</a>). This lead to finding a music video. The song title you ask?  LL Cool J&apos;s short-lived pop sensation &quot;Deepest Bluest <i>(My Head is Like a Shark Fin)</i>&quot;. Here&apos;s a link <a href="https://youtu.be/WkKb9OvXXvk" target="_blank" rel="nofollow" title="Deepest Bluest (My Head is Like a Shark Fin) - LL Cool J">Deepest Bluest (My Head is Like a Shark Fin)</a>. See how long you can watch it. We got to about 1:15 until are muted stares turned into angry X clicking. The next 20 minutes of the drive was filled with me obnoxiously pointing out a thing that looked like a <i>&quot;Shark Fin&quot;</i>.  The Ace Hardware logo. The top of the Outback Steakhouse.   ...sung to the chorus. Obviously. After enduring my <i>&quot;Shark Fin&quot;</i> references for what I can only assume was &quot;long enough&quot;, we put some B Fleishman on and cracked the windows so we could taste the salt air. That&apos;s when we crossed paths with our second lighthouse of the day - Bodie Lighthouse.</p>
<h2 class="uk-h5 uk-heading-divider uk-text-right uk-margin-small-bottom">Entering North Carolina&apos;s Outer Banks</h2>
<h3 class="uk-text-lead uk-heading-divider uk-margin-small">Bodie Island Lighthouse</h3>
<div class="uk-inline uk-width-1-4@m uk-align-right uk-box-shadow-small" data-uk-lightbox><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/07/bodie-island-lighthouse-bodie-island-nc.jpg" title="Bodie Island Lighthouse - Bodie Island, NC" alt="Hunting the Pea Island Outer Banks Coast Guard Station" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/07/bodie-island-lighthouse-bodie-island-nc.jpg" title="Bodie Island Lighthouse - Bodie Island, NC" alt="Hunting the Pea Island Outer Banks Coast Guard Station"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-primary uk-position-bottom">Bodie Island Lighthouse</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2015/07/bodie-island-lighthouse-bodie-island-nc.jpg" title="Bodie Island Lighthouse - Bodie Island, NC" class="uk-position-cover"></a></div>
<p>Most <i>&quot;out of towners&quot;</i> have a loose grasp of what the outer banks are like. It&apos;s much more remote then the prevalence of bumper stickers would have you believe. It&apos;s also a little confusing, because the lighthouses are <i>&quot;sound side&quot;</i>. So as you travel south, the ocean is on your left and the lighthouses your right. Although we bypassed our first lighthouse (Currituck Beach Lighthouse - <a href="https://en.wikipedia.org/wiki/Currituck_Beach_Light" title="Currituck Beach Lighthouse" target="_blank" rel="nofollow">wiki</a>), after passing through Kitty Hawk and Nags Head we decided to stop at Bodie to get a closer look. After we got all the fun facts and argued about the pronunciation a bit.  People there will tell you it&apos;s pronounced &quot;body&quot;, but I swear to god I&apos;ve only heard it pronounced &quot;Bow-Dee&quot;.  Ultimately I concluded that it&apos;s just a trick we play on northerners. We&apos;re the south. That&apos;s kinda our thing.</p>
<h3 class="uk-text-lead uk-heading-divider">Pea Island Outer Banks Coast Guard Station</h3>
<p>As we approached the Bonner Bridge I could see a structure to the left off in the distance. I attached a small map below that might help you can visualize it better. Upon crossing the bridge, there&apos;s a small pull off to your left.</p>
<div class="uk-tile uk-tile-secondary uk-tile-small uk-padding-small uk-margin-top">
<ul class="uk-thumbnav uk-child-width-1-2@s uk-child-width-1-4@m" data-uk-height-match="target: &gt; li &gt; a &gt; img" data-uk-lightbox>
<li><a href="https://cdn.matthewhaeck.com/content/images/2015/07/historic-image-pea-island-coast-guard-station.jpg" title="Historic Image - Pea Island Coast Guard Station" data-caption="Historic Image - Pea Island Coast Guard Station" class="uk-inline"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/07/historic-image-pea-island-coast-guard-station.jpg" title="Historic Image - Pea Island Coast Guard Station" alt="Hunting the Pea Island Outer Banks Coast Guard Station" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/07/historic-image-pea-island-coast-guard-station.jpg" title="Historic Image - Pea Island Coast Guard Station" alt="Hunting the Pea Island Outer Banks Coast Guard Station"></noscript><span class="uk-caption uk-overlay uk-overlay-primary uk-position-bottom">Historic - Pea Island Station</span></a></li>
<li><a href="https://cdn.matthewhaeck.com/content/images/2015/07/pea-island-station-newspaper-clipping.jpg" title="Pea Island Station - Newspaper Clipping" data-caption="Pea Island Station - Newspaper Clipping" class="uk-inline"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/07/pea-island-station-newspaper-clipping.jpg" title="Pea Island Station - Newspaper Clipping" alt="Hunting the Pea Island Outer Banks Coast Guard Station" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/07/pea-island-station-newspaper-clipping.jpg" title="Pea Island Station - Newspaper Clipping" alt="Hunting the Pea Island Outer Banks Coast Guard Station"></noscript><span class="uk-caption uk-overlay uk-overlay-primary uk-position-bottom">Newspaper Clipping</span></a></li>
<li><a href="https://cdn.matthewhaeck.com/content/images/2015/07/buried-pea-island-coast-guard-station-pea-island-nc.jpg" title="Buried Pea Island Coast Guard Station" data-caption="Buried Pea Island Coast Guard Station" class="uk-inline"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/07/buried-pea-island-coast-guard-station-pea-island-nc.jpg" title="Buried Pea Island Coast Guard Station" alt="Hunting the Pea Island Outer Banks Coast Guard Station" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/07/buried-pea-island-coast-guard-station-pea-island-nc.jpg" title="Buried Pea Island Coast Guard Station" alt="Hunting the Pea Island Outer Banks Coast Guard Station"></noscript><span class="uk-caption uk-overlay uk-overlay-primary uk-position-bottom">Buried Pea Island Station</span></a></li>
<li><a href="https://cdn.matthewhaeck.com/content/images/2015/07/bonner-bridge-pea-island-nc.jpg" title="Bonner Bridge - Pea Island, NC" data-caption="Bonner Bridge - Pea Island, NC" class="uk-inline"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/07/bonner-bridge-pea-island-nc.jpg" title="Bonner Bridge - Pea Island, NC" alt="Hunting the Pea Island Outer Banks Coast Guard Station" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/07/bonner-bridge-pea-island-nc.jpg" title="Bonner Bridge - Pea Island, NC" alt="Hunting the Pea Island Outer Banks Coast Guard Station"></noscript><span class="uk-caption uk-overlay uk-overlay-primary uk-position-bottom">Bonner Bridge - South</span></a></li>
</ul>
</div>
<h3 class="uk-h5 uk-heading-divider">Wait. The Pea Island Outer Banks Coast Guard Station is Gone?!?</h3>
<p>There&apos;s a small bay on the north side of the island and being the 4th of July, it had its fair share of visitors. What few seemed to pay attention to though was the roof-line in the distance.  If you follow the paths south, you&apos;ll come upon a beautiful beach house precariously perched on stilts and stacked lumber. After comparing the facade to our research pics, we realized that that&apos;s the house. ...but it wasn&apos;t buried. What the hell?</p>
<figure class="uk-width-1-1 uk-box-shadow-small uk-margin uk-inline" data-uk-lightbox><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/07/overhead-map-pea-island-coast-guard-station.jpg" alt="Hunting the Pea Island Outer Banks Coast Guard Station" title="Overhead Map - Pea Island Coast Guard Station" class="uk-width-1-1" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/07/overhead-map-pea-island-coast-guard-station.jpg" alt="Hunting the Pea Island Outer Banks Coast Guard Station" title="Overhead Map - Pea Island Coast Guard Station" class="uk-width-1-1"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-primary uk-position-bottom">Here are the directions, just in case you wanna check it out for yourself. <a href="https://maps.google.com/maps?q=35.767874,-75.523750&amp;hl=en&amp;gl=us" title="Google Map - Pea Island Coast Guard Station" target="_blank" rel="nofollow">https://goo.gl/maps/z8nfm</a></figcaption></figure>
<p>After doing a little research I found that the Coast Guard Station had been decommissioned some 30+ years earlier.  A little further digging showed that the station had quite a bit of history attached to it. Like so many other things in the world, the <i>&quot;fringe&quot;</i> location made it the perfect home for a sociological change. In 1880 after former slave Richard Etheridge was appointed as the keeper, Pea Island became the first life-saving station in the country to have an all-black crew. This once-neglected property has gathered enough attention to inspire an independent documentary titled <a href="https://player.vimeo.com/video/90376271" title="Rescuemen: The Story of Pea Island Lifesavers - Vimeo" target="_blank" rel="nofollow">Rescuemen: The Story of Pea Island Lifesavers</a>.</p>
<p>In 2008 funds were gathered to preserve the site. The picture I&apos;ve included below illustrates pretty clearly that raising this battered frame was no small feat. To be perfectly honest I was a little disappointed that we weren&apos;t digging through sandy ruins, but that feeling was short-lived. I realized pretty quickly that that part of my brain was clearly a bit selfish. In the big picture, how amazing is it that we were standing next to a time tested antique - a remnant of a bygone era, on the most remote chunk of the east coast, with tons of dusty history under its belt. What stood before us had weathered more hurricanes then we could imagine, the constant pressure of such an exposed environment - And yet, here it stood. Ready and almost eager to withstand another century of mother nature&apos;s abuse.</p>
<div class="uk-tile uk-tile-secondary uk-tile-small uk-padding-small uk-margin-top">
<ul class="uk-thumbnav uk-child-width-1-2@s uk-child-width-1-4@m" data-uk-height-match="target: &gt; li &gt; a &gt; img" data-uk-lightbox>
<li><a href="https://cdn.matthewhaeck.com/content/images/2015/07/distant-shot-pea-island-coast-guard-station-pea-island-nc.jpg" title="Distant Shot - Pea Island Coast Guard Station - Pea Island, NC" data-caption="Distant Shot - Pea Island Coast Guard Station - Pea Island, NC" class="uk-inline"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/07/distant-shot-pea-island-coast-guard-station-pea-island-nc.jpg" title="Distant Shot - Pea Island Coast Guard Station - Pea Island, NC" alt="Hunting the Pea Island Outer Banks Coast Guard Station" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/07/distant-shot-pea-island-coast-guard-station-pea-island-nc.jpg" title="Distant Shot - Pea Island Coast Guard Station - Pea Island, NC" alt="Hunting the Pea Island Outer Banks Coast Guard Station"></noscript><span class="uk-caption uk-overlay uk-overlay-primary uk-position-bottom">Distant Shot of CG Station</span></a></li>
<li><a href="https://cdn.matthewhaeck.com/content/images/2015/07/pea-island-outer-banks-coast-guard-station-side-pea-island-nc.jpg" title="Side | Pea Island Outer Banks Coast Guard Station - Pea Island, NC" data-caption="Side | Pea Island Outer Banks Coast Guard Station - Pea Island, NC" class="uk-inline"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/07/pea-island-outer-banks-coast-guard-station-side-pea-island-nc.jpg" title="Side | Pea Island Outer Banks Coast Guard Station - Pea Island, NC" alt="Hunting the Pea Island Outer Banks Coast Guard Station" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/07/pea-island-outer-banks-coast-guard-station-side-pea-island-nc.jpg" title="Side | Pea Island Outer Banks Coast Guard Station - Pea Island, NC" alt="Hunting the Pea Island Outer Banks Coast Guard Station"></noscript><span class="uk-caption uk-overlay uk-overlay-primary uk-position-bottom">Side | Pea Island Station</span></a></li>
<li><a href="https://cdn.matthewhaeck.com/content/images/2015/07/moving-the-pea-island-coast-guard-station.jpg" title="Moving the Pea Island Coast Guard Station" data-caption="Moving the Pea Island Coast Guard Station" class="uk-inline"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/07/moving-the-pea-island-coast-guard-station.jpg" title="Moving the Pea Island Coast Guard Station" alt="Hunting the Pea Island Outer Banks Coast Guard Station" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/07/moving-the-pea-island-coast-guard-station.jpg" title="Moving the Pea Island Coast Guard Station" alt="Hunting the Pea Island Outer Banks Coast Guard Station"></noscript><span class="uk-caption uk-overlay uk-overlay-primary uk-position-bottom">Moving | Pea Island Station</span></a></li>
<li><a href="https://cdn.matthewhaeck.com/content/images/2015/07/pea-island-outer-banks-coast-guard-station-pea-island-nc.jpg" title="Pea Island Outer Banks Coast Guard Station - Pea Island, NC" data-caption="Pea Island Outer Banks Coast Guard Station - Pea Island, NC" class="uk-inline"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/07/pea-island-outer-banks-coast-guard-station-pea-island-nc.jpg" title="Pea Island Outer Banks Coast Guard Station - Pea Island, NC" alt="Hunting the Pea Island Outer Banks Coast Guard Station" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/07/pea-island-outer-banks-coast-guard-station-pea-island-nc.jpg" title="Pea Island Outer Banks Coast Guard Station - Pea Island, NC" alt="Hunting the Pea Island Outer Banks Coast Guard Station"></noscript><span class="uk-caption uk-overlay uk-overlay-primary uk-position-bottom">Pea Island Coast Guard Station</span></a></li>
</ul>
</div>
<h4 class="uk-text-lead uk-heading-divider">Cape Hatteras Lighthouse</h4>
<div class="uk-inline uk-width-1-5@m uk-align-right uk-box-shadow-small" data-uk-lightbox><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/07/cape-hatteras-lighthouse-hatteras-island-nc.jpg" title="Cape Hatteras Lighthouse - Hatteras Island, NC" alt="Hunting the Pea Island Outer Banks Coast Guard Station" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/07/cape-hatteras-lighthouse-hatteras-island-nc.jpg" title="Cape Hatteras Lighthouse - Hatteras Island, NC" alt="Hunting the Pea Island Outer Banks Coast Guard Station"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-primary uk-position-bottom">Hatteras Lighthouse</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2015/07/cape-hatteras-lighthouse-hatteras-island-nc.jpg" title="Cape Hatteras Lighthouse - Hatteras Island, NC" data-caption="Cape Hatteras Lighthouse - Hatteras Island, NC" class="uk-position-cover"></a></div>
<p>When there&apos;s road ahead of you, it&apos;s hard to stop. And so we continued south to another relic, the old Cape Hatteras Lighthouse (<a href="https://en.wikipedia.org/wiki/Cape_Hatteras_Light" title="Cape Hatteras Lighthouse - Wikipedia" target="_blank" rel="nofollow">wiki</a>). Since it was nearing triple digits, I pushed hard to avoid walking up what appeared to be a giant tin smokestack. Thankfully Kaeli obliged. We wandered through the Tourist Center, wondered why they had apparently set up a progressive plan to move the lighthouse a few yards several times instead of just doing it once, then captured some Ingress bases and hit the road.</p>
<h4 class="uk-text-lead uk-heading-divider">Ocracoke Lighthouse</h4>
<div class="uk-inline uk-width-1-5@m uk-align-right uk-box-shadow-small" data-uk-lightbox><figure class="uk-margin-remove"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/07/ocracoke-lighthouse-obx-nc.jpg" title="Ocracoke Lighthouse - Ocracoke Island, NC" alt="Hunting the Pea Island Outer Banks Coast Guard Station" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/07/ocracoke-lighthouse-obx-nc.jpg" title="Ocracoke Lighthouse - Ocracoke Island, NC" alt="Hunting the Pea Island Outer Banks Coast Guard Station"></noscript><figcaption class="uk-caption uk-overlay uk-overlay-primary uk-position-bottom">Ocracoke Lighthouse</figcaption></figure><a href="https://cdn.matthewhaeck.com/content/images/2015/07/ocracoke-lighthouse-obx-nc.jpg" title="Ocracoke Lighthouse - Ocracoke Island, NC" data-caption="Ocracoke Lighthouse - Ocracoke Island, NC" class="uk-position-cover"></a></div>
<p>We forged ahead and quickly got to experience Kaeli&apos;s first <i>&quot;Outer Banks Barge Experience&quot;</i>.  I know it&apos;s just a small piece of the voyage, but how fun is driving your car onto a boat? Seriously. After laughing at the tourists and soaking in some amazing shorelines for ten or so minutes the foghorn sounded and we disembarked.  We were soon approaching my favorite lighthouse - Okracoke. After stopping to watch some intense kite-boarding, we passed right by an <a href="https://cdn.matthewhaeck.com/content/images/2015/07/ocracoke-horse-stable-nc.jpg" data-uk-lightbox title="Ocracoke Horse Stable - Ocracoke Island, NC">awesome little horse stable</a> right off the road.  Minutes later we arrived at the mammoth obelisk - the Ocracoke Island Lighthouse. After sneaking around back, we accidentally stumbling across the &quot;lightkeepers&quot; home <i>(our apologies  :x)</i> and decided to head out. The intense whitewash sparkling in the afternoon light urged us to continue, so we pointed the car south. Not long after we found ourselves dodging floats and drunk locals meandering along the twisted road. We came to the end of the island and since it was a holiday the barge was closed. No worries - let&apos;s see if the locals can spare a beer.</p>
<p>We parked the car and our noses led us to a great little restaurant named <a href="https://dajiorestaurant.com" title="Dajio" target="_blank" rel="nofollow">Dajio</a>. The food was amazing <i>(especially the &quot;happy hour&quot; shrimp)</i>, the deck offered us the perfect combination of shade and breeze, and Fat Tire was on tap.  What more could I ask for?  All in all, in 24hrs we had got to see an overwhelming amount of beauty, some obscure NC history, and capped it all off with drinks at sunset. If you&apos;re anywhere near Eastern North Carolina or Virginia beach - Head south. Make an adventure out of it. The Outer Banks are a tough and remote spot, but what nature has produced are a few scattered yet impeccable gems.</p>
<hr class="uk-article-divider">
<ul class="uk-list uk-list-space uk-text-center"><li>Recommended: <a href="https://en.wikipedia.org/wiki/Pea_Island_Life-Saving_Station" title="Pea Island Life Saving Station - Wikipedia" target="_blank" rel="nofollow">Pea Island Life Saving Station - Wikipedia</a></li><li>Recommended: <a href="https://www.fws.gov/refuge/pea_island/" title="FWS - Pea Island" target="_blank" rel="nofollow">FWS - Pea Island</a></li></ul><!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[Random Awesome Pictures]]></title><description><![CDATA[I keep getting random awesome pictures sent to me from my friends and folks. I’ll periodically post some of my favorites here.]]></description><link>https://www.matthewhaeck.com/random-cool-pictures/</link><guid isPermaLink="false">61bc36149d0c35043f252fdd</guid><category><![CDATA[My Favorite Things]]></category><dc:creator><![CDATA[Matthew Haeck]]></dc:creator><pubDate>Tue, 19 Aug 2014 00:13:00 GMT</pubDate><media:content url="https://cdn.matthewhaeck.com/content/images/2015/02/random.jpg" medium="image"/><content:encoded><![CDATA[<!--kg-card-begin: markdown--><img src="https://cdn.matthewhaeck.com/content/images/2015/02/random.jpg" alt="Random Awesome Pictures"><p>Like everyone else with a iPhone, I&apos;ve started to collect a few pictures that may not be suited for a social media site... but that I love nonetheless. To avoid the potential buildup of random awesome pictures sent to me from friends and family, I&apos;ve decided to drop a few of them off here. They may seem dumb, but I&apos;d just point out that you did visit a page clearly titled &quot;random awesome pictures&quot;, so I think some of the responsibility falls back on you. I&#x2019;ll periodically post updates and certainly drop a citation link if it&apos;s something particularly fun.</p>
<ul class="uk-grid uk-grid-small uk-margin-large" data-uk-grid data-uk-lightbox>
<li class="uk-width-1-2@m"><a href="https://cdn.matthewhaeck.com/content/images/2014/03/dsc_0035-2-900x544.jpg" title="Boylan Bridge - Raleigh, NC" class="uk-inline uk-width-1-1"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2014/03/dsc_0035-2-900x544.jpg" alt="Random Awesome Pictures" title="Boylan Bridge - Raleigh, NC" class="uk-width-1-1" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2014/03/dsc_0035-2-900x544.jpg" alt="Random Awesome Pictures" title="Boylan Bridge - Raleigh, NC" class="uk-width-1-1"></noscript><span class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Boylan Bridge - Raleigh, NC</span></a></li>
<li class="uk-width-1-2@m"><a href="https://cdn.matthewhaeck.com/content/images/2014/03/dsc_0235-900x602.jpg" title="La Strange - Hilarious Lead Guitarist" class="uk-inline uk-width-1-1"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2014/03/dsc_0235-900x602.jpg" alt="Random Awesome Pictures" title="La Strange - Hilarious Lead Guitarist" class="uk-width-1-1" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2014/03/dsc_0235-900x602.jpg" alt="Random Awesome Pictures" title="La Strange - Hilarious Lead Guitarist" class="uk-width-1-1"></noscript><span class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">La Strange - Hilarious Lead Guitarist</span></a></li>
<li><a href="https://cdn.matthewhaeck.com/content/images/2015/03/gr-store-kozyndan-matthew-haeck.jpg" title="GR Store - Kozyndan" class="uk-inline uk-width-1-1"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/03/gr-store-kozyndan-matthew-haeck.jpg" alt="Random Awesome Pictures" title="GR Store - Kozyndan" class="uk-width-1-1" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/03/gr-store-kozyndan-matthew-haeck.jpg" alt="Random Awesome Pictures" title="GR Store - Kozyndan" class="uk-width-1-1"></noscript><span class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">GR Store - Kozyndan</span></a></li>
<li><a href="https://cdn.matthewhaeck.com/content/images/2015/03/kozyroom-kozyndan-matthew-haeck.jpg" title="Kozyroom - Kozyndan" class="uk-inline uk-width-1-1"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/03/kozyroom-kozyndan-matthew-haeck.jpg" alt="Random Awesome Pictures" title="Kozyroom - Kozyndan" class="uk-width-1-1" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/03/kozyroom-kozyndan-matthew-haeck.jpg" alt="Random Awesome Pictures" title="Kozyroom - Kozyndan" class="uk-width-1-1"></noscript><span class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Kozyroom - Kozyndan</span></a></li>
<li><a href="https://cdn.matthewhaeck.com/content/images/2015/03/usa-chan-kozyndan-matthew-haeck.jpg" title="USA Chan - Kozyndan" class="uk-inline uk-width-1-1"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/03/usa-chan-kozyndan-matthew-haeck.jpg" title="USA Chan - Kozyndan" alt="Random Awesome Pictures" class="uk-width-1-1" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/03/usa-chan-kozyndan-matthew-haeck.jpg" alt="Random Awesome Pictures" title="USA Chan - Kozyndan" class="uk-width-1-1"></noscript><span class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">USA Chan - Kozyndan</span></a></li>
<li class="uk-width-1-2@m"><a href="https://cdn.matthewhaeck.com/content/images/2015/03/banksy-hilton-07-matthew-haeck.jpg" title="Banksy - Paris Hilton Remix CD" class="uk-inline uk-width-1-1"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/03/banksy-hilton-07-matthew-haeck.jpg" alt="Random Awesome Pictures" title="Banksy - Paris Hilton Remix CD" class="uk-width-1-1" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/03/banksy-hilton-07-matthew-haeck.jpg" alt="Random Awesome Pictures" title="Banksy - Paris Hilton Remix CD" class="uk-width-1-1"></noscript><span class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Banksy - Paris Hilton Remix CD</span></a></li>
<li class="uk-width-1-2@m"><a href="https://cdn.matthewhaeck.com/content/images/2014/03/wallace-and-grommit-graf-900x680.jpg" title="Wallace and Grommit Graffiti - Random Awesome Pictures" class="uk-inline uk-width-1-1"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2014/03/wallace-and-grommit-graf-900x680.jpg" alt="Random Awesome Pictures" title="Wallace and Grommit Graffiti - Random Awesome Pictures" class="uk-width-1-1" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2014/03/wallace-and-grommit-graf-900x680.jpg" alt="Random Awesome Pictures" title="Wallace and Grommit Graffiti - Random Awesome Pictures" class="uk-width-1-1"></noscript><span class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Wallace and Grommit Graffiti - Random Awesome Pictures</span></a></li>
<li class="uk-width-1-2@m"><a href="https://cdn.matthewhaeck.com/content/images/2014/03/dsc_0034-1-602x900.jpg" title="Wallace and Grommit Graffiti - Random Awesome Pictures" class="uk-inline uk-width-1-1"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2014/03/dsc_0034-1-602x900.jpg" alt="Random Awesome Pictures" title="Random Crazy Thoughts - Stumbled Upon" class="uk-width-1-1" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2014/03/dsc_0034-1-602x900.jpg" alt="Random Awesome Pictures" title="Random Crazy Thoughts - Stumbled Upon" class="uk-width-1-1"></noscript><span class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Random Crazy Thoughts - Stumbled Upon</span></a></li>
<li class="uk-width-1-2@m"><a href="https://cdn.matthewhaeck.com/content/images/2015/12/benito-napolean-adolph-donald.jpg" title="Benito Napolean Adolph Donald" class="uk-inline uk-width-1-1"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/12/benito-napolean-adolph-donald.jpg" alt="Random Awesome Pictures" title="Benito Napolean Adolph Donald" class="uk-width-1-1" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2015/12/benito-napolean-adolph-donald.jpg" alt="Random Awesome Pictures" title="Benito Napolean Adolph Donald" class="uk-width-1-1"></noscript><span class="uk-caption uk-overlay uk-overlay-default uk-position-bottom">Benito - Napolean - Adolph - Donald</span></a></li>
</ul>
<p class="uk-text-center">Feel free to share, just give credit to the originator of the random awesomeness. I&apos;ll include a couple of links at the bottom to cite my sources.</p><!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[Fred Rogers is My Hero - Amazing Fred Rogers Quotes (Mr Rogers Show)]]></title><description><![CDATA[Fred Rogers was a huge childhood hero of mine. I've compiled some amazing Fred Rogers quotes & Mr Rogers Show moments that convey just how amazing he was.]]></description><link>https://www.matthewhaeck.com/fred-rogers-american-hero/</link><guid isPermaLink="false">61bc36149d0c35043f252fdf</guid><category><![CDATA[Wisdom Quotes]]></category><dc:creator><![CDATA[Matthew Haeck]]></dc:creator><pubDate>Sat, 22 Feb 2014 05:28:00 GMT</pubDate><media:content url="https://cdn.matthewhaeck.com/content/images/2015/02/Fred-Rogers-is-My-Hero-Amazing-Fred-Rogers-Quotes.jpg" medium="image"/><content:encoded><![CDATA[<!--kg-card-begin: html--><img src="https://cdn.matthewhaeck.com/content/images/2015/02/Fred-Rogers-is-My-Hero-Amazing-Fred-Rogers-Quotes.jpg" alt="Fred Rogers is My Hero - Amazing Fred Rogers Quotes (Mr Rogers Show)"><p>When growing up I only really recall three people who seemed genuinely at peace. Not folks who had everything they wanted or enough money to support any cause they wanted, I mean people who seemed content with themselves. These people loomed especially large in mind because of the sharp contrast of all the wealth-worship of the 80&apos;s &amp; 90&apos;s. To begin with, Bob Ross and Shel Silverstein we&apos;re absolute game changers in my childhood. Their sheer talent and the way they made it accessible was an artistic inspiration that I&apos;m still effected by to this day. The other huge inspiration did stress the importance of imagination, but in the big picture he just seemed like a great person. That man was the star of the Mr Rogers Show on PBS, Fred Rogers.</p>
<span class="uk-text-muted uk-margin-remove-adjacent uk-align-right" data-uk-icon="icon:gamepad&#xFFFC;" data-uk-scrollspy="repeat:true; cls: uk-animation-fade"></span>
<h2 class="uk-text-lead uk-heading-divider">Young Fred Rogers...</h2>
<div class="uk-background-secondary uk-padding-small uk-margin"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/02/Young-Fred-Rogers-Mr-Rogers-Show.jpg" class="uk-width-1-1 uk-box-shadow-small" title="Fred Rogers - Quote" alt="Fred Rogers is My Hero - Amazing Fred Rogers Quotes (Mr Rogers Show)" data-uk-img><noscript><img title="Fred Rogers - Quote" alt="Fred Rogers is My Hero - Amazing Fred Rogers Quotes (Mr Rogers Show)" src="https://cdn.matthewhaeck.com/content/images/2015/02/Young-Fred-Rogers-Mr-Rogers-Show.jpg" class="uk-width-1-1 uk-box-shadow-small"></noscript><div class="uk-caption uk-light">Fred Rogers - American Hero</div></div>
<p>This formerly trained minister approached Pittsburg&apos;s WQED in 1968, because he was upset with the mindless children&apos;s programming he saw saturating television. He developed and pitched <a href="https://en.wikipedia.org/wiki/Mister_Rogers%27_Neighborhood" title="Mr Rogers Neighborhood - Wikipedia" target="_blank" rel="nofollow">Mr Rogers Neighborhood</a> himself with little experience and even wrote all of the shows music for the life of the series. That show went on to run for over 30 years nationwide, which is an absolutely incredible lifespan for a tv show. If you grew up in the 80&apos;s or 90&apos;s, you probably loved the Mr Rogers Show, but you may not be aware of all the great things he did when the cameras were off. Before highlighting those behind the scenes moves, I&apos;ve got to share some incredibly telling Fred Rogers quotes and one clip that perfectly captures his unique take on life. While picking my top 5 <a href="https://en.wikipedia.org/wiki/Fred_Rogers" title="Fred Rogers - Wikipedia" target="_blank" rel="nofollow">Fred Rogers</a> quotes was not an easy task, here are one&apos;s that stand out most in my mind.</p>
<span class="uk-text-muted uk-margin-remove-adjacent uk-align-right" data-uk-icon="icon:quote-right&#xFFFC;" data-uk-scrollspy="repeat:true; cls: uk-animation-fade"></span>
<h3 class="uk-text-lead">Five of My Favorite Fred Rogers Quotes...</h3>
<div class="uk-tile uk-tile-secondary uk-padding uk-margin uk-margin-medium-bottom">
<ul class="uk-list uk-list-divider">
<li>
<blockquote>
    <p class="uk-margin-small-bottom">&quot;When I was a boy and I would see scary things in the news, my mother would say to me, &apos;Look for the helpers. You will always find people who are helping.&apos; To this day, especially in times of &apos;disaster,&apos; I remember my mother&apos;s words, and I am always comforted by realizing that there are still so many helpers--so many caring people in this world.&quot;</p>
    <small class="uk-float-right uk-text-muted">Fred Rogers</small>
</blockquote>
</li>
<li>
<blockquote class="uk-margin-top">
    <p class="uk-margin-small-bottom">&quot;Forgiveness is a strange thing. It can sometimes be easier to forgive our enemies than our friends. It can be hardest of all to forgive people we love. Like all of life&apos;s important coping skills, the ability to forgive and the capacity to let go of resentments most likely take root very early in our lives.&quot;</p>
    <small class="uk-float-right uk-text-muted">Fred Rogers</small>
</blockquote>
</li>
<li>
<blockquote class="uk-margin-top">
    <p class="uk-margin-small-bottom">&quot;There is no normal life that is free of pain. It&apos;s the very wrestling with our problems that can be the impetus for our growth.&quot;</p>
    <small class="uk-float-right uk-text-muted">Fred Rogers</small>
</blockquote>
</li>
<li>
<blockquote class="uk-margin-top">
    <p class="uk-margin-small-bottom">&quot;We live in a world in which we need to share responsibility. It&apos;s easy to say, &apos;It&apos;s not my child, not my community, not my world, not my problem.&apos; Then there are those who see the need and respond. I consider those people my heroes.&quot;</p>
    <small class="uk-float-right uk-text-muted">Fred Rogers</small>
</blockquote>
</li>
<li>
<blockquote class="uk-margin-top">
    <p class="uk-margin-small-bottom">&quot;Discovering the truth about ourselves is a lifetime&apos;s work, but it&apos;s worth the effort.&quot;</p>
    <small class="uk-float-right uk-text-muted">Fred Rogers</small>
</blockquote>
</li>
</ul>
</div>
<span class="uk-text-muted uk-margin-remove-adjacent uk-align-right" data-uk-icon="icon:diamond" data-uk-scrollspy="repeat:true; cls: uk-animation-fade"></span>
<h4 class="uk-text-lead uk-heading-divider">Mr Rogers Knows the Streets</h4>
<p>Now you may be saying to yourself, <i>&quot;All these quotes are great, but Mr. Rogers <strong>did not</strong> keep it street&quot;</i>...  And that&apos;s where you&apos;re wrong. In the late 80&apos;s he welcomed a young B-Boy on to his program and allowed him the opportunity to show his craft to surely confused older man. In my opinion, this moment perfectly encapsulates the magic Fred Rogers brought to the world.</p>
<div class="ratio-container uk-margin"><iframe src="https://www.youtube.com/embed/Fw_GnjE-des?autoplay=0" width="1280" height="720" class="uk-box-shadow-small uk-width-1-1" allowfullscreen></iframe></div>
<p>He&apos;s not dismissive or condescending, just curious. That intense curiosity balanced with a clear respect for all of gods children coincide to make a pure environment in which both parties can learn from one another. By any stretch of the imagination this kid should be nervous, he&apos;s on tv... but he&apos;s not. Not to over-generalize, but this is what&apos;s missing from the world. I try to imagine a kid in this situation today and I can&apos;t help but think of off camera parents stressing him out, some agent insisting he plug the website, and a look of sheer terror with the camera&apos;s red light. This is a large part of what I believe is missing from the world and something we could use more of.</p>
<span class="uk-text-muted uk-margin-remove-adjacent uk-align-right" data-uk-icon="icon:thumbs-o-up" data-uk-scrollspy="repeat:true; cls: uk-animation-fade"></span>
<h5 class="uk-text-lead uk-heading-divider">More then Just the Mr Rogers Show</h5>
<p>Besides being one of my childhood heros that spoke with absolute authenticity, the other great aspect of <a href="https://en.wikipedia.org/wiki/Fred_Rogers" title="Fred Rogers - Wikipedia" target="_blank" rel="nofollow">Fred Rogers</a> was his passive stance towards violence. Like every other American child I read plenty of stories about pacifism <i>(&#x2026;mostly Gandhi and MLK stories)</i>, but you rarely see it in action. Ironically I do remember seeing plenty of real-life bombs exploding, but not a lot of pacifism or peaceful rhetoric. If you could use some positivity, <a href="https://youtu.be/fKy7ljRr0AA" title="Fred Rogers testifies before the Senate Subcommittee on Communications 1969" target="_blank" rel="nofollow">Fred Rogers testifying to Congress</a> on behalf of federal funding for childhood arts is a great place to start. He was also awarded the Presidential Medal of Freedom, a Peabody Award, four Emmys, and roughly forty honorary degrees. On off hours, he was a trained general aviation pilot, swam every morning, raised two <i>(probably adorable)</i> sons, created the <a href="https://www.fredrogerscenter.org" title="Fred Rogers Center" target="_blank" rel="nofollow">Fred Rogers Center</a>, never smoked or drank, and explained his vegetarianism by stating <i>&quot;I don&apos;t want to eat anything that has a mother&quot;</i>. While I could ramble off facts about his life, I think the largest impact was that he exposed millions of people to what a truly peaceful person is like. Before the Gulf War he even insisted on shooting a PSA letting all the children of the country know that the families overseas would be protected as much as humanly possible. While that may not be technically accurate, you have to respect the intention and I&apos;d bet my life he beat down doors to have the military promise not to make a liar of him. Seeing an adult that cared so much and was downright excited about creativity planted a seed in minds everywhere&#x2026; His impact is truly immense and immeasurable.</p>
<div class="uk-tile uk-tile-secondary uk-padding uk-text-center uk-margin">
	<p class="uk-h4">&quot;Often when you think you&apos;re at the end of something, you&apos;re at the beginning of something else.&quot;</p>
</div>
<p class="uk-text-center">While I&apos;m glad he didn&apos;t just stick to preaching, I&apos;ll bet if he were my preacher I&apos;d probably still be in church every Sunday. While the previous quotes and examples just scratch the surface, I hope you liked my favorite Fred Rogers quotes and understand why he was so damn inspirational while growing up. I think it goes without saying, but the world could use more Fred Rogers&#x2019; right now. Hopefully, there are kids right now watching Mr. Rogers Show re-runs and seeing just how powerful genuine honesty and sincerity can be. If nothing else, I&apos;m sure glad he was around while I was growing up and I&apos;m sure any kids I have will think the same.</p><!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[Meet Axiron (aka Drugs with Funny Side Effects)]]></title><description><![CDATA[Like drugs with funny side effects? Then you're probably already familiar with Axiron.]]></description><link>https://www.matthewhaeck.com/which-drug-has-the-funniest-side-effects/</link><guid isPermaLink="false">61bc36149d0c35043f252fe6</guid><category><![CDATA[Random Opinions]]></category><dc:creator><![CDATA[Matthew Haeck]]></dc:creator><pubDate>Sat, 15 Feb 2014 18:55:00 GMT</pubDate><media:content url="https://cdn.matthewhaeck.com/content/images/2015/02/drugs-1.jpg" medium="image"/><content:encoded><![CDATA[<!--kg-card-begin: markdown--><img src="https://cdn.matthewhaeck.com/content/images/2015/02/drugs-1.jpg" alt="Meet Axiron (aka Drugs with Funny Side Effects)"><p>With the nonstop growth of pharma in the US, the side effects have reached comical proportions... but which drug has the absolute funniest side effects? If you&apos;ve have seen the latest commercial for Axiron, you already know the answer to that question. If you haven&apos;t, let me give you a quick recap.</p>
<h2 class="uk-text-lead uk-heading-divider">Funniest Side Effects?  Lets Give Axiron a Shot.</h2>
<p>So, to start with Axiron cures &quot;Low-T&quot; (which is a clever way to say low testosterone). Apparently <b>Hypoandrogenism</b> actually is a disorder afflicting less then 3% of our population, but that&apos;s not the market Eli Lilly is shooting for. Their advertisements in fact suggest that 7 out of 10 men suffer from &quot;Low-T&quot;. But I suppose the legitimacy of the disorder is besides the point <i>(even though I&apos;d suggest checking it out for yourself)</i>... The real gift here though are the funniest side effects you could ever imagine.</p>
<h3 class="uk-text-lead">Now Bring on the Side Effects...</h3>
<div class="uk-background-secondary uk-margin-medium">
<ul class="uk-list uk-list-divider uk-text-center uk-padding uk-light">
<li>Enlargement of your prostate gland (increased urination)</li>
<li>Increased risk of prostate cancer</li>
<li>Lower sperm count</li>
<li>Swelling of your ankles, feet, or body</li>
<li>Enlarged or painful breasts</li>
<li>Problems breathing while you sleep (sleep apnea)</li>
<li>Blood clots in the legs</li>
<li>Skin redness or irritation</li>
<li>Increased red blood cell count</li>
<li>Headache, diarrhea, vomiting</li>
</ul>
</div>
<p>Now that list by itself would be pretty hilarious when you&apos;re considering the problem that it&apos;s attempting to address. The real kick comes in when you add the funniest side effects your family could ever be exposed if they come in contact with you... or the &quot;deodorant&quot;.</p>
<div class="uk-background-secondary uk-margin-medium">
<ul class="uk-list uk-list-divider uk-text-center uk-padding uk-light">
<li>Signs of puberty in young children</li>
<li>Enlarged penis or clitoris in children</li>
<li>Increased sex drive or aggressive behavior in children</li>
<li>Changes in body hair for grown women</li>
<li>Increase in acne for grown women</li>
</ul>
</div>
<p>How much testosterone would you need to be lacking for this trade off to be useful? Additionally - if the primary goal here is to raise sex drive, isn&apos;t it ironic that you&apos;re passing along such cruel side effects to your wife/girlfriend? I could go on and on, but I&apos;ll bit my tongue on this one... I do think things this ridiculous just show how far we&apos;ve lost our way though. No matter what it&apos;s future - Axiron truly has the funniest side effects ever.</p><!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[Data Visualization Births / Deaths]]></title><description><![CDATA[Data Visualization Births / Deaths in Real-Time is a bizarre concept, but certainly an interesting set of data.]]></description><link>https://www.matthewhaeck.com/data-visualization-births-deaths/</link><guid isPermaLink="false">61bc36149d0c35043f252fe3</guid><category><![CDATA[Fun with Numbers]]></category><dc:creator><![CDATA[Matthew Haeck]]></dc:creator><pubDate>Tue, 05 Nov 2013 04:24:00 GMT</pubDate><media:content url="https://cdn.matthewhaeck.com/content/images/2015/02/data-visualization-1.jpg" medium="image"/><content:encoded><![CDATA[<!--kg-card-begin: markdown--><img src="https://cdn.matthewhaeck.com/content/images/2015/02/data-visualization-1.jpg" alt="Data Visualization Births / Deaths"><p>Dealing with large scale data is one aspect of web development that has seen a meteoric rise lately. It leaves devs with a problem they rarely encounter - having too much content. Most designers and developers I know spend quite a bit of time prying information out of clients and utilizing a few layout tricks to make it look good. Dealing with &quot;big data&quot; leaves you in quite the opposite situation.</p>
<p>While doing some research on a recent project I ran into an interesting subset of data. Researcher Brad Lyon created a beta project titled <b>Data Visualization Births / Deaths in Real-Time</b> that displays a simulated, real-time graph of births and deaths in the US. While this information might come off as a little depressing to some, it certainly does a great job of utilizing a scientific approach to tap into a deep psychologic issue... that being our own mortality. Click the map below and take a look at some Google Drive hosted data that runs a simulation pulling US data along with associated religions.</p>
<a rel="nofollow" target="_blank" title="Data Visualization Births / Deaths Interactive Map" href="http://worldbirthsanddeaths.com/"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2013/11/data-visualization.jpg" alt="Data Visualization Births / Deaths" title="Data Visualization" class="uk-width-1-1 uk-box-shadow-small uk-margin-medium-top uk-margin-medium-bottom" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2013/11/data-visualization.jpg" alt="Data Visualization Births / Deaths" title="Data Visualization" class="uk-width-1-1 uk-box-shadow-small uk-margin-medium-top uk-margin-medium-bottom"></noscript></a>
<p>If you&apos;d like a less filtered view, <a href="https://www.nowherenearithaca.com/2013/10/visualization-of-world-births-and.html" title="World Births and Deaths, Simulated in Real-Time (Beta)" rel="nofollow" target="_blank">this post</a> also covers data visualization births / deaths on a worldwide scale. This data is obviously a simulation since pulling real world stats would require a unified data source (and good luck compiling that ;), but much credit should be given to one of the leaders in the data visualization field - Brad Lyon. It should also be noted that on this particular data set, he worked with Bill Snebold. Although it may generate a bit of anxiety, viewing this data visualization births / death simulation allows you a unique perspective and at the bare minimum is some interesting data.</p><!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[Fresh off the Boat to Huangs World - aka Who is Eddie Huang?]]></title><description><![CDATA[Who is Eddie Huang? One of the slickest cats out. From Bauhaus, to Fresh off the Boat & now in Huang's World, Eddie's a worldwide legend & here's why...]]></description><link>https://www.matthewhaeck.com/fresh-off-the-boat-eddie-huang/</link><guid isPermaLink="false">61bc36149d0c35043f252fe4</guid><category><![CDATA[Random Opinions]]></category><dc:creator><![CDATA[Matthew Haeck]]></dc:creator><pubDate>Sat, 05 Oct 2013 22:20:00 GMT</pubDate><media:content url="https://cdn.matthewhaeck.com/content/images/2015/02/Fresh-Off-The-Boat-to-Huangs-World-Who-is-Eddie-Huang.jpg" medium="image"/><content:encoded><![CDATA[<!--kg-card-begin: markdown--><img src="https://cdn.matthewhaeck.com/content/images/2015/02/Fresh-Off-The-Boat-to-Huangs-World-Who-is-Eddie-Huang.jpg" alt="Fresh off the Boat to Huangs World - aka Who is Eddie Huang?"><p>Some characters both embody and spit in the face of the American ideal. They come in many forms, but always end up drawing attention. There&apos;s no professional or educational requirement either, it really just requires authenticity, some humor, and the ability to look beyond convention. Huge figures in America have embodied these traits, names like Frank Lloyd Wright and Mark Twain spring to mind quickly. It&apos;s line of thinking that brings me to Huang&apos;s World. While he hasn&apos;t yet reached &quot;household name&quot; status, he&apos;s quickly approaching and the wide swaths of people he&apos;s met will vouch for his unique spirit. You may have already seen him on Vice or Fresh of the Boat, but let&apos;s start at the top...  Who is Eddie Huang?</p>
<span class="uk-text-muted uk-margin-remove-adjacent uk-align-right" data-uk-icon="icon:question" data-uk-scrollspy="repeat:true; cls: uk-animation-fade"></span>
<h2 class="uk-text-lead uk-heading-divider">Who is this Eddie Huang?</h2>
<p>Eddie Huang is the son of Taiwanese immigrants that stopped in DC, then setup shop in Orlando, Florida. His father founded a couple restaurants in the area, including the once widely heralded <strong>Cattleman&apos;s Ranch Steakhouse</strong>. By all accounts he was a wild child, but after buckling down a bit he attended both University of Pittsburgh and Rollins College eventually accepting a BA in English and Film. He then proceeded to obtain his JD, work on the incredibly honorable <a href="https://en.wikipedia.org/wiki/Innocence_Project" title="The Innocence Project" target="_blank" rel="nofollow">Innocence Project</a>, serve on school associations, then eventually accept a corporate law job in New York. When the financial crash began rolling in, he flipped all that knowledge into a stand up comedy career <i>(I wonder if his mom ever mentioned &quot;this is what you&apos;re doing with your law degree?&quot;)</i>. After some side slinging and printing up his own clothes label under the name &quot;Bergdorf Hoodman&quot;, he eventually found his calling back in the restaurant industry.</p>
<figure class="uk-width-1-4@s uk-align-right"><img class="uk-width-1-1 uk-box-shadow-small" alt="Fresh off the Boat to Huangs World - aka Who is Eddie Huang?" title="Baohaus - 238 East 14th St New York City NY" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/02/Baohaus-238-East-14th-St-New-York-City-NY.jpg" data-uk-img><noscript><img class="uk-width-1-1 uk-box-shadow-small" alt="Fresh off the Boat to Huangs World - aka Who is Eddie Huang?" title="Baohaus - 238 East 14th St New York City NY" src="https://cdn.matthewhaeck.com/content/images/2015/02/Baohaus-238-East-14th-St-New-York-City-NY.jpg"></noscript><figcaption class="uk-caption">Baohaus - 238 East 14th St New York City NY</figcaption></figure>
<h3 class="uk-text-lead uk-heading-divider">Fresh Off the Boat and into the Fryer</h3>
<p>In 2009 Eddie scraped together all the childhood knowledge he&apos;d obtained from his mom&apos;s kitchen and dad&apos;s restaurant <i>(where he worked as expo growing up)</i> and opened his own restaurant. This Taiwanese bun shop named BaoHaus quickly became a neighborhood staple in the lower east-side of NYC. He did eventually move to a slightly better location with an expanded menu, but the Taiwanese-braised pork belly buns <i>(known as gua-bao, hence the pun)</i> he served remained hugely popular and unique. The impending growth certainly wasn&apos;t perfect and he probably did&apos;t help himself by engaging in snarky social media beefs, insisting he keep <strong>Four-Loko</strong> on the drink menu, rushing to open a new restaurant, or grilling reviewers online... but hating a hustler for hustling is truly wasted energy. All drama aside, Eddie Huang developed a name for himself in an unquestionably cut-throat restaurant scene. While this in and of itself man not be huge when you throw in the stand up comedian experience and the law degree, you&apos;re being to construct an interesting character.</p>
<figure class="uk-width-1-4@s uk-align-right"><img class="uk-width-1-1 uk-box-shadow-small lazy" alt="Fresh off the Boat to Huangs World - aka Who is Eddie Huang?" title="Fresh Off The Boat - A Memoir by Eddie Huang" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2015/02/Fresh-Off-The-Boat-A-Memoir-Eddie-Huang.jpg" data-uk-img><noscript><img class="uk-width-1-1 uk-box-shadow-small" alt="Fresh off the Boat to Huangs World - aka Who is Eddie Huang?" title="Fresh Off The Boat - A Memoir by Eddie Huang" src="https://cdn.matthewhaeck.com/content/images/2015/02/Fresh-Off-The-Boat-A-Memoir-Eddie-Huang.jpg"></noscript><figcaption class="uk-caption">Fresh Off The Boat - A Memoir by Eddie Huang</figcaption></figure>
<div class="uk-text-lead uk-heading-divider">Now Listen Up He&apos;s Got a Story to Tell</div>
<p>After a few appearances on Vice and the Food Network, Eddie saw a chance to share his perspective with the world. In 2013 he wrapped on his book &quot;<a href="https://www.amazon.com/gp/product/0812983351/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0812983351&amp;linkCode=as2&amp;tag=knoidebra20-20&amp;linkId=da74ea65eb5ebb3af2bbd0d4b8204a91" title="Fresh off the Boat - Amazon" target="_blank" rel="nofollow">Fresh off the Boat</a>&quot;, which was released by a Random House offshoot. Coming from a relatively green author, this is an astoundingly easy read that also touches on some heavy issues. You&apos;d be hard pressed to find another book that delves into both Taiwanese cuisine and racial injustice in the prison industry. Popular chefs like Anthony Bourdain praised his unique takes, but my favorite review comes from Dwight Garner of the New York Times who called it <i>&quot;a surprisingly sophisticated memoir about race and assimilation in America&quot; and a &quot;rowdy...counterpoint&quot; to other memoirs dealing with the immigrant experience&quot;</i>. With the popularity, Hollywood came calling <i>(as they do)</i> and Eddie found himself developing an ABC sitcom of the same name. While he had to eventually hand over the reigns on the show, flipping a development deal into a show that cans two plus seasons is nothing short of remarkable. It&apos;s also worth mentioning that he has another book called &quot;<a href="https://www.amazon.com/gp/product/0812995465/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0812995465&amp;linkCode=as2&amp;tag=knoidebra20-20&amp;linkId=cc2726241b39056aec79c5af12517a36" title="Double Cup Love: On the Trail of Family, Food, and Broken Hearts in China - Amazon" target="_blank" rel="nofollow">Double Cup Love: On the Trail of Family, Food, and Broken Hearts in China</a>&quot; that I look forward to reading soon. This <a href="https://www.nytimes.com/2016/05/31/books/eddie-huang-double-cup-love-memoir.html?_r=0" title="New York Times - Eddie Huang" target="_blank" rel="nofollow">New York Times article</a> does a solid job of introducing the books concept and flushing out some of the back story. Literary notes aside, I think where you get to see Eddie in his natural state is on his Vice series now titled <strong>Huang&apos;s World.</strong></p>
<div class="ratio-container uk-margin"><iframe src="https://www.youtube-nocookie.com/embed/videoseries?list=PLnPDn1Lb79JEvKZ42CFMsV-DUuUCsx1R_&amp;autoplay=0;showinfo=0" width="1280" height="720" class="uk-box-shadow-medium uk-width-1-1" allowfullscreen></iframe></div>
<h4 class="uk-article-meta uk-text-center uk-margin-medium-bottom">Huang&apos;s World Season 2</h4>
<p>Watch one episode and you&apos;ll be hooked. Eddie weaves narratives throughout the world by discovering culture through cuisine. While he&apos;s not the only foodie to walk this line, I think he shares the title with Anthony Bourdain as the only chefs doing it well. My favorite element of the show is that he&apos;s not playing a part, he&apos;s just having his adventures funded and filmed. This is <strong>&quot;reality tv&quot;</strong> in the truest sense of the word. His production deal with ABC did force him to pull a ton of episode he&apos;d done with Vice under the name <i>&quot;Fresh off the Boat&quot;</i>, but Huang&apos;s World has picked up where he left off there pretty quickly. While any video is a matter of taste, give it a look and ask yourself <i>&#x201C;Who is Eddie Huang?&#x201D;</i>&#x2026;  He&#x2019;s an American hero, that&#x2019;s who.</p>
<span class="uk-text-muted uk-margin-remove-adjacent uk-align-right" data-uk-icon="icon:cloud" data-uk-scrollspy="repeat:true; cls: uk-animation-fade"></span>
<h5 class="uk-text-lead uk-heading-divider">Not a Saint. Never Claimed to Be.</h5>
<p>Like anything in our culture with some juice, Eddie hasn&apos;t been immune to criticism. Some say he grew up too privileged for his <i>&quot;cultural appropriation&quot;</i>, some have grilled him for word selection during an interview on Real Time With Bill Maher, and his 2013 TED Fellowship was rescinded for not showing up to all required meetings. These arguments need to be taken into perspective though, because even when you&apos;re looking to critique I believe this is just a person being authentic. Authenticity is in severe shortage in our current culture and while we enjoy being exposed to it, many folks also see it as an easy mark for criticism. Authenticity is rarely vanilla enough to be palatable to ALL people, but thats a feature not a drawback. At my core I believe authenticity deserves praise and that&apos;s one trait Eddie Huang sports in spades.</p>
<hr class="uk-article-divider">
<p class="uk-text-center">If you think my Mark Twain comparison was a stretch, I simply encourage you to keep an eye on this guy. He&apos;s proven to be someone with integrity that&apos;s not willing to trade that in for short term gains. Stay up on his videos, <a href="https://twitter.com/MrEddieHuang" title="Eddie Huang - Twitter" target="_blank" rel="nofollow">Twitter</a>, &amp; <a href="https://www.instagram.com/MrEddieHuang/" title="Eddie Huang - Instagram" target="_blank" rel="nofollow">Instagram</a>, I assure you - if you feel the way I do about encouraging unique, authentic voices... You won&apos;t be disappointed.</p><!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[Risk Board Game. Best Board Game Ever.]]></title><description><![CDATA[80's kids know the classics - Operation, Shoots and Ladders, Perfection, Battleship... but above them all - the Risk board game. Best board game ever.]]></description><link>https://www.matthewhaeck.com/risk-best-board-game-ever/</link><guid isPermaLink="false">61bc36149d0c35043f252fe7</guid><dc:creator><![CDATA[Matthew Haeck]]></dc:creator><pubDate>Thu, 19 Sep 2013 22:13:00 GMT</pubDate><media:content url="https://cdn.matthewhaeck.com/content/images/2015/02/risk.jpg" medium="image"/><content:encoded><![CDATA[<!--kg-card-begin: markdown--><img src="https://cdn.matthewhaeck.com/content/images/2015/02/risk.jpg" alt="Risk Board Game. Best Board Game Ever."><p>Any kid who grew up in the 80s-90s knows all the board game classics. Operation, Shoots and Ladders, Clue, Perfection, Yahtzee, Battleship... but above all - the Risk board game was always my favorite. The accessibility combined with the high stakes always makes for a good time. After researching the game&apos;s creation, I even found a fun ironic twist in it&apos;s creation.</p>
<span class="uk-text-muted uk-margin-remove-adjacent uk-align-right" data-uk-icon="icon:puzzle-piece" data-uk-scrollspy="repeat:true; cls: uk-animation-fade"></span>
<h2 class="uk-text-lead uk-heading-divider">Origins of the Risk Board Game</h2>
<p>My presuppositions about who would create a game like Risk were way off the mark. It wasn&apos;t a politician or diplomat, it was a Parisian director named Albert Lamorisse. You may not know his name, but many are familiar with one of his earliest works - The Red Ballon. If you like trivia, you might also know the star of that Palme d&apos;Or &amp; Oscar winning short was actually his son Pascal. In 1957 the game saw it&apos;s launch, but it wasn&apos;t an immediate success. After two years of dragging sales, Albert decided to sell his game to Parker Brothers. With a couple rule changes and a marketing push, the game took off. I searched for any ideological foundations behind Risk, but there wasn&apos;t much to find. Is it meant as a colonialist critique? Is it a warning against globalism? There&apos;s no telling. It is funny to know that a young French artist once entered a US boardroom aiming to sell them on a game of world war.</p>
<div class="uk-background-secondary uk-padding-small uk-margin-medium">
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2013/09/risk-board-game.jpg" alt="Risk Board Game. Best Board Game Ever." title="Risk Board Game Cover" class="uk-width-1-1 uk-box-shadow-small" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2013/09/risk-board-game.jpg" alt="Risk Board Game. Best Board Game Ever." title="Risk Board Game Cover" class="uk-width-1-1 uk-box-shadow-small"></noscript>
</div>
<p>Over decades the maps have changed, but the game remains unchanged. One of the best aspects has always the diplomatic options. I&apos;m sure serious players avoid this, but you could always help your nephew if they wanted to play. That seems like diplomacy at its purist. If you haven&apos;t gotten a chance to play, go pick up a copy up. The Risk Board Game can be as hard or easy as you want it to be, but it&apos;s never boring.</p><!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[What did Kyoto Achieve?  [Kyoto Infographic]]]></title><description><![CDATA[This Kyoto Infographic shows why it was the largest pollution mitigation program in the last 100 years.]]></description><link>https://www.matthewhaeck.com/what-did-kyoto-achieve/</link><guid isPermaLink="false">61bc36149d0c35043f252fe8</guid><category><![CDATA[Fun with Numbers]]></category><dc:creator><![CDATA[Matthew Haeck]]></dc:creator><pubDate>Thu, 19 Sep 2013 03:36:00 GMT</pubDate><media:content url="https://cdn.matthewhaeck.com/content/images/2015/02/kyoto.jpg" medium="image"/><content:encoded><![CDATA[<!--kg-card-begin: markdown--><img src="https://cdn.matthewhaeck.com/content/images/2015/02/kyoto.jpg" alt="What did Kyoto Achieve?  [Kyoto Infographic]"><p>Kyoto was the largest pollution mitigation program in the last 100 years... But what did it actually get done?</p>
<span class="uk-text-muted uk-margin-remove-adjacent uk-align-right" data-uk-icon="icon:file" data-uk-scrollspy="repeat:true; cls: uk-animation-fade"></span>
<h2 class="uk-text-lead uk-heading-divider">View this Kyoto Infographic</h2>
<p>This Kyoto infographic shows you a few important details. Was the U.S.&apos;s withdrawal (followed by Canada) really a good idea? Take a detailed look at this Kyoto infographic and I think you&apos;ll get a clearer picture almost immediately.</p>
<div class="uk-background-secondary uk-padding-small uk-margin-medium">
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://cdn.matthewhaeck.com/content/images/2013/09/carbon-emissions-graphic-002.jpg" alt="What did Kyoto Achieve?  [Kyoto Infographic]" class="uk-width-1-1 uk-box-shadow-small" title="Kyoto Infographic - Carbon Emissions Since Kyoto" data-uk-img><noscript><img src="https://cdn.matthewhaeck.com/content/images/2013/09/carbon-emissions-graphic-002.jpg" alt="What did Kyoto Achieve?  [Kyoto Infographic]" class="uk-width-1-1 uk-box-shadow-small" title="Kyoto Infographic - Carbon Emissions Since Kyoto"></noscript>
</div><!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[Local Farming Support with an Urban Farm]]></title><description><![CDATA[Macro problems like world hunger need "left-field" ideas but the more I think about the urban farm approach, the more advantages I seem to find.]]></description><link>https://www.matthewhaeck.com/local-farming-support/</link><guid isPermaLink="false">61bc36149d0c35043f252fea</guid><category><![CDATA[Fun with Numbers]]></category><dc:creator><![CDATA[Matthew Haeck]]></dc:creator><pubDate>Fri, 12 Apr 2013 03:33:00 GMT</pubDate><media:content url="https://cdn.matthewhaeck.com/content/images/2015/02/local-farming.jpg" medium="image"/><content:encoded><![CDATA[<!--kg-card-begin: markdown--><img src="https://cdn.matthewhaeck.com/content/images/2015/02/local-farming.jpg" alt="Local Farming Support with an Urban Farm"><p>I detest the phrase &quot;outside of the box&quot;... Maybe not as much as the word &quot;synergy&quot;, but close. Macro problems like world hunger need &quot;left-field&quot; ideas as far as I&apos;m concerned, but the more I think about this approach the more advantages I seem to find.</p>
<p>If you look at government assistance programs and you have at least half a heart, you&apos;re confronted with a problem.  Assistance programs are intended to be &quot;safety-nets&quot; - measures to protect the most vulnerable from hitting points of despair... Homelessness, hunger, shelter, medical, etc. But how do you prevent people from taking advantage of these programs?  It&apos;s a tough issue, but a cause a HUGE majority of our population would support. The only people I can think of that wouldn&apos;t support properly targeting government assistance would be the people who are currently (or simply like the idea) of exploiting it.</p>
<p>As you can probably tell, the issue I&apos;m currently considering is hunger.  How do we keep people in our community that need food... fed? Our approach so far has been to provide financial benefits to those people through basic means testing (emphasis on &quot;basic&quot;), but why haven&apos;t we considered cutting out the middle man?</p>
<div class="uk-background-secondary uk-padding uk-margin-large">
<ul class="uk-list uk-list-divider uk-light">
<li><p>From a financial standpoint, tax payers should not be providing profits to food companies for an emergency situation. Additionally, with the weak housing market - there is a surplus of available property in most metropolitan areas.</p></li>
<li><p>From a nutrition standpoint, (as with any &quot;people related&quot; problem) there are more needs in economically depressed areas. These are areas that are disproportionately filled w/ fast food establishments. To oversimplify the point - This means more tax-payer funds are directed to McDonald&apos;s then Whole Foods.</p></li>
<li><p>From an aesthetic standpoint, using an empty lot as farmland is a significant bonus. Look at home values that surround public parks if you need proof on that point.</p></li>
<li><p>From a nature standpoint, A wider variety of plants are able to thrive in well tilled soil then grass, concrete, or rubble.</p></li>
<li><p>From a community standpoint, This is a project I believe communities could take pride in. Community farms can be a symbolic representation of how much we love &quot;our own&quot;.</p></li>
<li><p>From a humanitarian standpoint, We would be giving at least a minimal amount of protection to those in need. If our neighbors in need could walk a couple blocks to grab an apple, I think they&apos;d rather do that then sit in the street with a sign. You can ask those people, but I&apos;m pretty sure you&apos;ll get that response.</p></li>
</ul>
</div>
<p>This may sound dumb or naive to some, but I think the worst you could fairly call this concept is simple. Sometimes simple ideas are nothing more, but occasionally those ideas are substantial... important... almost necessary. If we utilized the amount of money we spent on one person&apos;s unemployment insurance <i>(which I believe averages $300/week)</i>, we could have a healthy budget for a local farm. If the idea works <i>(like I think it would)</i>, we could expand funds and put some farm workers on staff. I believe you&apos;d also find a large supply of volunteers. I can tell you that I personally find growing plants <i>(even on my tiny porch)</i> very fulfilling... Soothing even.</p> <p>The only opposition I could imagine would be people who think this isn&apos;t a financially prudent idea. I understand that point, but the commitment would be so minimal. There is no negative impact on the environment if it doesn&apos;t work, just let the plants go. If it did work <i>(and that&apos;s obviously my feeling)</i>, imagine the benefit.</p><p>We would be providing healthy food to those who need it with a minimal amount financial commitment both initially and over time.  It would take no more supervision then a public park and require only a small amount of work <i>(you could even tie other government programs to a few volunteer hours a week if you wanted to expand on the concept)</i>. We can feed our community while minimizing taxpayers exposure to exploitation. It may sound &quot;over the top&quot;, but we can save lives and provide a better community for ourselves at the same time. All it requires is some ambition and I think there enough of us out there who would be happy to provide that for a chance to make our world even a bit better.</p>
<hr>
<p class="uk-text-center">I&apos;ll try to push this idea forward, all I&apos;d ask is that if you agree with this concept that you&apos;d do the same.</p><!--kg-card-end: markdown-->]]></content:encoded></item></channel></rss>