<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
><channel><title>Larmeir.com &#187; dlarmeir</title> <atom:link href="http://www.larmeir.com/author/dlarmeir/feed/" rel="self" type="application/rss+xml" /><link>http://www.larmeir.com</link> <description></description> <lastBuildDate>Sun, 22 Jan 2012 21:16:08 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Shiner Family Reunion</title><link>http://www.larmeir.com/2012/01/shiner-family-reunion/</link> <comments>http://www.larmeir.com/2012/01/shiner-family-reunion/#comments</comments> <pubDate>Sun, 22 Jan 2012 21:16:08 +0000</pubDate> <dc:creator>dlarmeir</dc:creator> <category><![CDATA[Food/Beverages]]></category><guid
isPermaLink="false">http://www.larmeir.com/?p=2039</guid> <description><![CDATA[There&#8217;s nothing that comes in the Shiner family reunion box that I don&#8217;t like. Shiner beer rocks!]]></description> <content:encoded><![CDATA[<p><a
href="http://www.larmeir.com/wp-content/uploads/2012/01/IMAG0077.jpg" rel="lightbox[2039]"><img
class="alignnone size-medium wp-image-2040" title="IMAG0077" src="http://www.larmeir.com/wp-content/uploads/2012/01/IMAG0077-300x179.jpg" alt="" width="300" height="179" /></a></p><p>There&#8217;s nothing that comes in the Shiner family reunion box that I don&#8217;t like.</p><p>Shiner beer rocks!</p> ]]></content:encoded> <wfw:commentRss>http://www.larmeir.com/2012/01/shiner-family-reunion/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to install Munin on CentOS 6 and RedHat Enterprise 6</title><link>http://www.larmeir.com/2012/01/how-to-install-munin-on-centos-6-and-redhat-enterprise-6/</link> <comments>http://www.larmeir.com/2012/01/how-to-install-munin-on-centos-6-and-redhat-enterprise-6/#comments</comments> <pubDate>Sat, 07 Jan 2012 14:06:31 +0000</pubDate> <dc:creator>dlarmeir</dc:creator> <category><![CDATA[Linux]]></category><guid
isPermaLink="false">http://www.larmeir.com/?p=2029</guid> <description><![CDATA[This guide will go over a basic installation of Munin on a CentOS 6.x or RedHat Enterprise 6.x server. Per Munin&#8217;s site &#8220;Munin is a networked resource monitoring tool that can help analyze resource trends and &#8220;what just happened to kill our performance?&#8221; problems. It is designed to be very plug and play. A default [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://www.larmeir.com/wp-content/uploads/2012/01/munin.png" rel="lightbox[2029]"><img
class="alignnone size-medium wp-image-2030" title="munin" src="http://www.larmeir.com/wp-content/uploads/2012/01/munin-300x78.png" alt="" width="300" height="78" /></a></p><p>This guide will go over a basic installation of Munin on a CentOS 6.x or RedHat Enterprise 6.x server.</p><p>Per <a
href="http://munin-monitoring.org/" target="_blank">Munin&#8217;s site</a> &#8220;Munin is a networked resource monitoring tool that can help analyze resource trends and &#8220;what just happened to kill our performance?&#8221; problems. It is designed to be very plug and play. A default installation provides a lot of graphs with almost no work<strong>.</strong>&#8221;</p><p>I personally deploy it on my own Linux systems for resource monitoring. Let&#8217;s jump into the installation:</p><p>&nbsp;</p><p>1. The first step is to install the RedHat EPEL rpm which adds the EPEL repo:</p><pre># rpm -ivh http://download.fedora.redhat.com/pub/epel/6/ppc64/epel-release-6-5.noarch.rpm</pre><p>2. Next, you&#8217;ll need to install the required packages via yum:</p><pre># yum install -y munin munin-node</pre><p>3. Once installed, we need to configure the munin-node via the /etc/munin/munin-node.conf and alter the following values:</p><pre>user root
group root</pre><p>For security reason, I like to change this to a less risky user such as apache I.e.:</p><pre>user apache
group apache</pre><p>You can also alter the listening address and port that the service runs on:</p><pre># Which address to bind to;
host *
# host 127.0.0.1

# And which port
port 4949</pre><p>I generally leave this setting alone as my servers run behind a firewall that blocks external access to the port.  If you are exposed to the internet (I&#8217;d at least run iptables) then I&#8217;d change the bind address value to 127.0.0.1</p><p>4. Now that the node is configured, the next step is to adjust the following values in /etc/munin/munin.conf:</p><pre># dbdir /var/lib/munin
# htmldir /var/www/html/munin
# logdir /var/log/munin
# rundir  /var/run/munin</pre><p>You can simply uncomment these values and adjust the htmldir accordingly dpending on where you would like the files to be generated.</p><p>Example is below:</p><pre>dbdir /var/lib/munin
htmldir /var/www/vhosts/somedomain/htdocs
logdir /var/log/munin
rundir  /var/run/munin</pre><p>The host tree should be adjusted as well:</p><pre># a simple host tree
[enter.yourservernamehere]
address 127.0.0.1
use_node_name yes</pre><p>You can set a custom name for your server where indicated above.</p><p>5. Once the munin.conf has been updated, next you&#8217;ll need to adjust the permissions on the html directory. In the example above I set my html directory to /var/www/vhosts/somedomain/htdocs so to allow munin to write to it I&#8217;ll change ownership to the correct user:</p><pre>chown munin:munin /var/www/vhosts/somedomain/htdocs</pre><p>6. Now you can start the munin daemon with the following command:</p><pre># /etc/init.d/munin-node start</pre><p>Once done you can verify the service with ps and netstat:</p><pre>#ps aux | grep munin
apache   17835  0.2  0.8 141140  8480 ?        Ss   07:51   0:00 /usr/sbin/munin-node
root     18186  0.0  0.0 103220   844 pts/0    S+   07:52   0:00 grep munin

# netstat -anp | grep munin-node
tcp        0      0 0.0.0.0:4949                0.0.0.0:*                   LISTEN      17835/munin-node</pre><p>In the example above, you can see that the daemon process is running and that it is listening on tcp port 4949.</p><p>7. Now we&#8217;ll need to use chkconfig to have the service load on startup:</p><pre># chkconfig munin-node on
# chkconfig --list | grep munin
munin-node         0:off    1:off    2:on    3:on    4:on    5:on    6:off</pre><p>That covers the basic installation process and you should be up and running. If you set the html directory to a existing website, you can access it there.</p><p>In my case, I setup a dedicated subdomain for my installation and set the html directory to the document root and setup http basic auth to prevent someone from snooping.</p><p>I&#8217;ll share my nginx configuration for those who use it:</p><pre>server {
listen      80;
server_name munin.somedomain.com;
access_log /var/www/vhosts/munin.somedomain.com/logs/access.log;
error_log /var/www/vhosts/munin.somedomain.com/logs/error.log;
rewrite_log on;
root    /var/www/vhosts/munin.somedomain.com/htdocs;
index   index.php index.html index.htm;

location  /  {
auth_basic            "Restricted";
auth_basic_user_file  /var/www/vhosts/munin.somedomain.com/auth/.htpasswd;
}

# Enable FastCGI on unix:/tmp/php-fpm.sock
location ~ \.php$ {
fastcgi_pass   unix:/tmp/php-fpm.sock;
fastcgi_index  index.php;
fastcgi_intercept_errors on;
fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
include        fastcgi_params;
}

# Deny hidden file types
location ~ /(\.ht|\.git|\.svn) {
deny  all;
}
}</pre><p>If you have any questions feel free to comment &#8211; Dustin</p> ]]></content:encoded> <wfw:commentRss>http://www.larmeir.com/2012/01/how-to-install-munin-on-centos-6-and-redhat-enterprise-6/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Happy new year!</title><link>http://www.larmeir.com/2012/01/happy-new-year/</link> <comments>http://www.larmeir.com/2012/01/happy-new-year/#comments</comments> <pubDate>Sun, 01 Jan 2012 19:54:05 +0000</pubDate> <dc:creator>dlarmeir</dc:creator> <category><![CDATA[Thoughts]]></category><guid
isPermaLink="false">http://www.larmeir.com/?p=2026</guid> <description><![CDATA[I&#8217;m really looking forward to 2012! 2011 was a great year and I have no complaints looking back. God bless everyone! - Dustin]]></description> <content:encoded><![CDATA[<p><a
href="http://www.larmeir.com/wp-content/uploads/2012/01/2012.jpg" rel="lightbox[2026]"><img
class="alignnone size-full wp-image-2027" title="2012" src="http://www.larmeir.com/wp-content/uploads/2012/01/2012.jpg" alt="" width="259" height="194" /></a></p><p>I&#8217;m really looking forward to 2012!</p><p>2011 was a great year and I have no complaints looking back.</p><p>God bless everyone!</p><p>- Dustin</p> ]]></content:encoded> <wfw:commentRss>http://www.larmeir.com/2012/01/happy-new-year/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Sneak peek at my Nginx control panel</title><link>http://www.larmeir.com/2011/12/sneak-peek-at-my-nginx-control-panel/</link> <comments>http://www.larmeir.com/2011/12/sneak-peek-at-my-nginx-control-panel/#comments</comments> <pubDate>Sat, 31 Dec 2011 02:11:24 +0000</pubDate> <dc:creator>dlarmeir</dc:creator> <category><![CDATA[Linux]]></category><guid
isPermaLink="false">http://www.larmeir.com/?p=2022</guid> <description><![CDATA[Click on the image to zoom in &#8211; This is still very alpha, very ugly, and not that fancy. I&#8217;ll keep working on it though and turn it into something more useful]]></description> <content:encoded><![CDATA[<p><a
href="http://www.larmeir.com/wp-content/uploads/2011/12/Screen-Shot-2011-12-30-at-8.16.47-PM.png" rel="lightbox[2022]"><img
class="alignnone size-medium wp-image-2023" title="Screen Shot 2011-12-30 at 8.16.47 PM" src="http://www.larmeir.com/wp-content/uploads/2011/12/Screen-Shot-2011-12-30-at-8.16.47-PM-300x186.png" alt="" width="300" height="186" /></a></p><p>Click on the image to zoom in &#8211; This is still very alpha, very ugly, and not that fancy.</p><p>I&#8217;ll keep working on it though and turn it into something more useful <img
src='http://www.larmeir.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://www.larmeir.com/2011/12/sneak-peek-at-my-nginx-control-panel/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>BattleField 3 and my ordeal on Christmas eve.</title><link>http://www.larmeir.com/2011/12/battlefield-3-and-my-ordeal-on-christmas-eve/</link> <comments>http://www.larmeir.com/2011/12/battlefield-3-and-my-ordeal-on-christmas-eve/#comments</comments> <pubDate>Wed, 28 Dec 2011 23:32:31 +0000</pubDate> <dc:creator>dlarmeir</dc:creator> <category><![CDATA[Thoughts]]></category><guid
isPermaLink="false">http://www.larmeir.com/?p=2017</guid> <description><![CDATA[&#160; I decided to go buy Battlefield 3 from Gamestop so I went there, picked up a slightly used copy, took it home, then fired it up. I was pretty excited as several friends said it was much better than Call of Duty MW3. It would not work when I tried to run it on [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://www.larmeir.com/wp-content/uploads/2011/12/batlefiled.jpg" rel="lightbox[2017]"><img
class="alignnone size-full wp-image-2018" title="batlefiled" src="http://www.larmeir.com/wp-content/uploads/2011/12/batlefiled.jpg" alt="" width="187" height="270" /></a></p><p>&nbsp;</p><p>I decided to go buy Battlefield 3 from Gamestop so I went there, picked up a slightly used copy, took it home, then fired it up. I was pretty excited as several friends said it was much better than Call of Duty MW3.</p><p>It would not work when I tried to run it on Multiplayer mode &#8211; It turns out that Gamestop is placing used games on the shelves without the activation codes being reset and not telling anyone. This means that paying customers are inconvenienced by either having to return the game or having to call EA support.</p><p>So&#8230;.. On Christmas eve, I was on the phone with EA support getting this squared away which was pretty annoying. They were very hesitant to help at first ( I completely understand due to piracy concerns) but their service was stellar and they issued me a new code.</p><p>I can&#8217;t say enough for the service that EA gave to me and it&#8217;s refreshing to see a business still giving great customer service out there.</p><p>I just <span
style="text-decoration: underline;">hope</span> Gamestop pays attention to this post and does the right thing for their customers&#8230;.</p> ]]></content:encoded> <wfw:commentRss>http://www.larmeir.com/2011/12/battlefield-3-and-my-ordeal-on-christmas-eve/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Starbucks Frappucinos</title><link>http://www.larmeir.com/2011/12/starbucks-frappucinos/</link> <comments>http://www.larmeir.com/2011/12/starbucks-frappucinos/#comments</comments> <pubDate>Sat, 24 Dec 2011 18:01:46 +0000</pubDate> <dc:creator>dlarmeir</dc:creator> <category><![CDATA[Food/Beverages]]></category><guid
isPermaLink="false">http://www.larmeir.com/?p=2014</guid> <description><![CDATA[I can never get enough of Starbucks frappucinos. Seriously, It&#8217;s like liquid crack to me LoL &#160;]]></description> <content:encoded><![CDATA[<p><a
href="http://www.larmeir.com/wp-content/uploads/2011/12/starbucks-frappuccino.jpg" rel="lightbox[2014]"><img
class="alignnone size-full wp-image-2015" title="starbucks-frappuccino" src="http://www.larmeir.com/wp-content/uploads/2011/12/starbucks-frappuccino.jpg" alt="" width="201" height="232" /></a></p><p>I can never get enough of Starbucks frappucinos. Seriously, It&#8217;s like liquid crack to me LoL</p><p>&nbsp;</p> ]]></content:encoded> <wfw:commentRss>http://www.larmeir.com/2011/12/starbucks-frappucinos/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>I want a Raspberry PI</title><link>http://www.larmeir.com/2011/12/i-want-a-raspberry-pi/</link> <comments>http://www.larmeir.com/2011/12/i-want-a-raspberry-pi/#comments</comments> <pubDate>Fri, 23 Dec 2011 12:05:57 +0000</pubDate> <dc:creator>dlarmeir</dc:creator> <category><![CDATA[Linux]]></category> <category><![CDATA[TechStuff]]></category><guid
isPermaLink="false">http://www.larmeir.com/?p=2010</guid> <description><![CDATA[I really want to get my hands on one of the raspberry PI boards for a project that I want to do with Linux. These little boards are supposed to pack quite a punch and come in at a price of just $25 -$35. Check out the board schematic below: You can get more information [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://www.larmeir.com/wp-content/uploads/2011/12/raspberpi.jpg" rel="lightbox[2010]"><img
class="alignnone size-full wp-image-2011" title="raspberpi" src="http://www.larmeir.com/wp-content/uploads/2011/12/raspberpi.jpg" alt="" width="238" height="212" /></a></p><p>I really want to get my hands on one of the raspberry PI boards for a project that I want to do with Linux.</p><p>These little boards are supposed to pack quite a punch and come in at a price of just $25 -$35.</p><p>Check out the board schematic below:</p><p><a
href="http://www.larmeir.com/wp-content/uploads/2011/12/Raspi-Model-AB-Mono-1-699x1024.png" rel="lightbox[2010]"><img
class="alignnone size-medium wp-image-2012" title="Raspi-Model-AB-Mono-1-699x1024" src="http://www.larmeir.com/wp-content/uploads/2011/12/Raspi-Model-AB-Mono-1-699x1024-204x300.png" alt="" width="204" height="300" /></a></p><p>You can get more information on these boards here: <a
href="http://www.raspberrypi.org">http://www.raspberrypi.org</a></p> ]]></content:encoded> <wfw:commentRss>http://www.larmeir.com/2011/12/i-want-a-raspberry-pi/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>La Fin Du Monde</title><link>http://www.larmeir.com/2011/12/la-fin-du-monde/</link> <comments>http://www.larmeir.com/2011/12/la-fin-du-monde/#comments</comments> <pubDate>Thu, 22 Dec 2011 15:25:33 +0000</pubDate> <dc:creator>dlarmeir</dc:creator> <category><![CDATA[Food/Beverages]]></category><guid
isPermaLink="false">http://www.larmeir.com/?p=2007</guid> <description><![CDATA[This is one of the best beers out there in my opinion. It goes down smooth as silk but is packs the punch of a heavy weight. http://www.unibroue.com/en/beers/la_fin_du_monde/]]></description> <content:encoded><![CDATA[<p>This is one of the best beers out there in my opinion. It goes down smooth as silk but is packs the punch of a heavy weight.</p><p><a
href="http://www.larmeir.com/wp-content/uploads/2011/12/findumonde_.jpg" rel="lightbox[2007]"><img
class="alignnone size-medium wp-image-2008" title="findumonde_" src="http://www.larmeir.com/wp-content/uploads/2011/12/findumonde_-282x300.jpg" alt="" width="282" height="300" /></a></p><p><a
href="http://www.unibroue.com/en/beers/la_fin_du_monde/" target="_blank">http://www.unibroue.com/en/beers/la_fin_du_monde/</a></p> ]]></content:encoded> <wfw:commentRss>http://www.larmeir.com/2011/12/la-fin-du-monde/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Ardmore Oklahoma Tornado 1995</title><link>http://www.larmeir.com/2011/12/ardmore-oklahoma-tornado-1995/</link> <comments>http://www.larmeir.com/2011/12/ardmore-oklahoma-tornado-1995/#comments</comments> <pubDate>Thu, 22 Dec 2011 15:03:28 +0000</pubDate> <dc:creator>dlarmeir</dc:creator> <category><![CDATA[Thoughts]]></category><guid
isPermaLink="false">http://www.larmeir.com/?p=1985</guid> <description><![CDATA[Having lived in tornado alley my whole life I&#8217;ve become pretty used to tornadoes spawning during thunderstorms. In fact, I&#8217;ve seen a few tornadoes up close and would be quite content to not see one again. There&#8217;s one encounter though that I will never forget, and that one was the 1995 tornado that hit Ardmore [...]]]></description> <content:encoded><![CDATA[<p>Having lived in tornado alley my whole life I&#8217;ve become pretty used to tornadoes spawning during thunderstorms. In fact, I&#8217;ve seen a few tornadoes up close and would be quite content to not see one again. There&#8217;s one encounter though that I will never forget, and that one was the 1995 tornado that hit Ardmore Oklahoma.</p><p>I was 14 at the time and was riding with my parents in their car and we were hearing reports of bad weather being all around. We stopped at a Hardees just north of Ardmore and picked up some lunch and I had ordered a fish sandwich. We just started taking off down the road when I noticed that I forgot Tartar sauce! Being a teenager, I made a big deal about this and argued with Dad until he decided to turn around. I then ran back inside Hardees to grab some tartar sauce took off down the road again and when we rolled into Ardmore just a few minutes away this is what we saw:</p><a
href='http://www.larmeir.com/2011/12/ardmore-oklahoma-tornado-1995/3747209698_d7aefed6de_o/' title='3747209698_d7aefed6de_o'><img
width="150" height="150" src="http://www.larmeir.com/wp-content/uploads/2011/12/3747209698_d7aefed6de_o-150x150.jpg" class="attachment-thumbnail" alt="3747209698_d7aefed6de_o" title="3747209698_d7aefed6de_o" /></a> <a
href='http://www.larmeir.com/2011/12/ardmore-oklahoma-tornado-1995/3746420367_c0a68c678c_o/' title='3746420367_c0a68c678c_o'><img
width="150" height="150" src="http://www.larmeir.com/wp-content/uploads/2011/12/3746420367_c0a68c678c_o-150x150.jpg" class="attachment-thumbnail" alt="3746420367_c0a68c678c_o" title="3746420367_c0a68c678c_o" /></a> <a
href='http://www.larmeir.com/2011/12/ardmore-oklahoma-tornado-1995/3746420045_fd414d3d59_o/' title='3746420045_fd414d3d59_o'><img
width="150" height="150" src="http://www.larmeir.com/wp-content/uploads/2011/12/3746420045_fd414d3d59_o-150x150.jpg" class="attachment-thumbnail" alt="3746420045_fd414d3d59_o" title="3746420045_fd414d3d59_o" /></a> <a
href='http://www.larmeir.com/2011/12/ardmore-oklahoma-tornado-1995/3746419349_1b9bebe2b3_o/' title='3746419349_1b9bebe2b3_o'><img
width="150" height="150" src="http://www.larmeir.com/wp-content/uploads/2011/12/3746419349_1b9bebe2b3_o-150x150.jpg" class="attachment-thumbnail" alt="3746419349_1b9bebe2b3_o" title="3746419349_1b9bebe2b3_o" /></a> <a
href='http://www.larmeir.com/2011/12/ardmore-oklahoma-tornado-1995/3746418995_23344729e2_o/' title='3746418995_23344729e2_o'><img
width="150" height="150" src="http://www.larmeir.com/wp-content/uploads/2011/12/3746418995_23344729e2_o-150x150.jpg" class="attachment-thumbnail" alt="3746418995_23344729e2_o" title="3746418995_23344729e2_o" /></a> <a
href='http://www.larmeir.com/2011/12/ardmore-oklahoma-tornado-1995/3746418707_8dd331bfb5_o/' title='3746418707_8dd331bfb5_o'><img
width="150" height="150" src="http://www.larmeir.com/wp-content/uploads/2011/12/3746418707_8dd331bfb5_o-150x150.jpg" class="attachment-thumbnail" alt="3746418707_8dd331bfb5_o" title="3746418707_8dd331bfb5_o" /></a> <a
href='http://www.larmeir.com/2011/12/ardmore-oklahoma-tornado-1995/3746418435_555edcb1b2_o/' title='3746418435_555edcb1b2_o'><img
width="150" height="150" src="http://www.larmeir.com/wp-content/uploads/2011/12/3746418435_555edcb1b2_o-150x150.jpg" class="attachment-thumbnail" alt="3746418435_555edcb1b2_o" title="3746418435_555edcb1b2_o" /></a> <a
href='http://www.larmeir.com/2011/12/ardmore-oklahoma-tornado-1995/3746418111_b170d00cb4_o/' title='3746418111_b170d00cb4_o'><img
width="150" height="150" src="http://www.larmeir.com/wp-content/uploads/2011/12/3746418111_b170d00cb4_o-150x150.jpg" class="attachment-thumbnail" alt="3746418111_b170d00cb4_o" title="3746418111_b170d00cb4_o" /></a> <a
href='http://www.larmeir.com/2011/12/ardmore-oklahoma-tornado-1995/3746417781_a6b6b2bebc_o/' title='3746417781_a6b6b2bebc_o'><img
width="150" height="150" src="http://www.larmeir.com/wp-content/uploads/2011/12/3746417781_a6b6b2bebc_o-150x150.jpg" class="attachment-thumbnail" alt="3746417781_a6b6b2bebc_o" title="3746417781_a6b6b2bebc_o" /></a><p>Had I not bugged the heck out of dad and went in and grabbed that tartar sauce, we would have been right in the middle of pretty powerful tornado. I remember how surreal it was to see the Uniroyal tire plant still burning, the metal guard rails on the freeway bent over like tin foil, and the debris that was all over the place. Nature is a amazing thing, but it can be pretty cruel  and on this day many people were affected.</p><p>Here&#8217;s some youtube footage of the same tornado:</p><p><iframe
src="http://www.youtube.com/embed/O1uexGdo2ZY?rel=0" frameborder="0" width="615" height="480"></iframe></p><p>I was browsing through my Flickr account today and stumbled upon this gallery which  prompted me to post this.</p><p>The images are forever burned into my mind.</p> ]]></content:encoded> <wfw:commentRss>http://www.larmeir.com/2011/12/ardmore-oklahoma-tornado-1995/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Homebrew for Mac &#8211; A must have tool for techs</title><link>http://www.larmeir.com/2011/12/homebrew-for-mac-a-must-have-tool-for-techs/</link> <comments>http://www.larmeir.com/2011/12/homebrew-for-mac-a-must-have-tool-for-techs/#comments</comments> <pubDate>Thu, 22 Dec 2011 14:26:17 +0000</pubDate> <dc:creator>dlarmeir</dc:creator> <category><![CDATA[Mac]]></category> <category><![CDATA[TechStuff]]></category><guid
isPermaLink="false">http://www.larmeir.com/?p=1982</guid> <description><![CDATA[There are a few options for using open source tools on a Mac, but my personal favorite is HomeBrew: http://mxcl.github.com/homebrew/ HomeBrew is similar to BSD&#8217;s ports and allows you to install software like NMAP or Lynx with great ease.  I highly recommend this tool for any techs who use a Mac daily. Note: In order [...]]]></description> <content:encoded><![CDATA[<p>There are a few options for using open source tools on a Mac, but my personal favorite is HomeBrew: <a
href="http://mxcl.github.com/homebrew/ " target="_blank">http://mxcl.github.com/homebrew/ </a></p><p>HomeBrew is similar to BSD&#8217;s ports and allows you to install software like NMAP or Lynx with great ease.  I highly recommend this tool for any techs who use a Mac daily.</p><p>Note: In order to use it, you will need to obtain the latest version of Xcode for your Mac: <a
href="http://developer.apple.com/technologies/tools/" target="_blank">http://developer.apple.com/technologies/tools/</a></p><p><a
href="http://www.larmeir.com/wp-content/uploads/2011/12/Screen-Shot-2011-12-22-at-8.30.56-AM.png" rel="lightbox[1982]"><img
class="alignnone size-medium wp-image-1983" title="Screen Shot 2011-12-22 at 8.30.56 AM" src="http://www.larmeir.com/wp-content/uploads/2011/12/Screen-Shot-2011-12-22-at-8.30.56-AM-300x191.png" alt="" width="300" height="191" /></a></p> ]]></content:encoded> <wfw:commentRss>http://www.larmeir.com/2011/12/homebrew-for-mac-a-must-have-tool-for-techs/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Served from: www.larmeir.com @ 2012-02-07 21:50:05 by W3 Total Cache -->
