<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>I Drivel</title>
	<link>http://blog.justinlintz.com</link>
	<description>whatever comes to mind</description>
	<lastBuildDate>Wed, 12 Oct 2011 01:37:13 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.2.1" -->

	<item>
		<title>NRPE returning no output?</title>
		<description><![CDATA[<p>command[check_recent_core]=PLUGINPATH/check_recent_core.sh --file="$ARG1" --freshness=$ARG2$</p> <p>Spot the error? I only wasted an hour of my life and another 30 minutes of co-workers trying to figure out why I kept getting a "NRPE: No output returned from plugin" error in Nagios. The issue? $ARG1 is missing a closing &#8220;$&#8221;. *slams head on desk* </p> ]]></description>
		<link>http://blog.justinlintz.com/2011/10/nrpe-returning-no-output/</link>
			</item>
	<item>
		<title>Useful C Debug Macro</title>
		<description><![CDATA[<p>Tonight I took the plunge to get back into some more C coding. In getting my environment setup I came across a useful debugging macro. This macro will output the filename and line number every time it&#8217;s expanded. I wanted to make sure I understood how the macro was working before just copying and <span style="color:#777"> . . . &#8594; Read More: <a href="http://blog.justinlintz.com/2011/09/useful-c-debug-macro/">Useful C Debug Macro</a></span>]]></description>
		<link>http://blog.justinlintz.com/2011/09/useful-c-debug-macro/</link>
			</item>
	<item>
		<title>My Stay Puft Marshmallow Man Moment</title>
		<description><![CDATA[<p>A couple years ago I was sitting at a poker table for my final interview for a sys admin position with . It had been a long day of mentally exhausting questions, and the interview was coming to a close. The person I was interviewing with sat for a moment and pondered his next <span style="color:#777"> . . . &#8594; Read More: <a href="http://blog.justinlintz.com/2011/04/my-stay-puft-marshmallow-man-moment/">My Stay Puft Marshmallow Man Moment</a></span>]]></description>
		<link>http://blog.justinlintz.com/2011/04/my-stay-puft-marshmallow-man-moment/</link>
			</item>
	<item>
		<title>Determining my most used focal length in photos with python and dcraw</title>
		<description><![CDATA[<p>For the holidays I got a new Canon 7D camera. I&#8217;ve been saving quite a few amazon gift cards over the last year that I was previously planning on using towards purchasing the camera but thankfully Santa delivered me one. My current lens collection consists of </p> 10-22mm f/3.5-4.5 70-200mm f/4 50mm f/1.8 18-55mm <span style="color:#777"> . . . &#8594; Read More: <a href="http://blog.justinlintz.com/2010/12/determining-my-most-used-focal-length-in-photos-with-python-and-dcraw/">Determining my most used focal length in photos with python and dcraw</a></span>]]></description>
		<link>http://blog.justinlintz.com/2010/12/determining-my-most-used-focal-length-in-photos-with-python-and-dcraw/</link>
			</item>
	<item>
		<title>Python pip on Ubuntu Lucid Lynx</title>
		<description><![CDATA[<p>Lately I&#8217;ve been reading up on Django a bit in an effort to get back into programming.  It seems the preferred way of running Django is inside a virtualenv environment.  I try to stick to packages when possible for installing applications and saw that the python-virtualenv package wasn&#8217;t too far behind at version 1.4.5, <span style="color:#777"> . . . &#8594; Read More: <a href="http://blog.justinlintz.com/2010/09/python-pip-on-ubuntu-lucid-lynx/">Python pip on Ubuntu Lucid Lynx</a></span>]]></description>
		<link>http://blog.justinlintz.com/2010/09/python-pip-on-ubuntu-lucid-lynx/</link>
			</item>
	<item>
		<title>Configuring Varnish</title>
		<description><![CDATA[<p>At $WORK I&#8217;m currently working on deploying a pool of Varnish servers to sit in front of some Apache servers running Pressflow. On our current infrastructure we&#8217;ve been running Squid for the past few years with very good success , minus a hiccup or two along the way, one involving memory fragmentation (thank you <span style="color:#777"> . . . &#8594; Read More: <a href="http://blog.justinlintz.com/2010/08/configuring-varnish/">Configuring Varnish</a></span>]]></description>
		<link>http://blog.justinlintz.com/2010/08/configuring-varnish/</link>
			</item>
	<item>
		<title>Thinkpad Trackpoint sensitivity on Ubuntu</title>
		<description><![CDATA[<p>A while back I found some notes on configuring the sensitivity of my trackpoint on my Thinkpad T43 and took the time to tweak the values to get it just right. The commands were</p> /bin/echo -n 171 &#62; /sys/devices/platform/i8042/serio1/serio2/sensitivity /bin/echo -n 119 &#62; /sys/devices/platform/i8042/serio1/serio2/speed <p>In order to keep those values the same on reboot, <span style="color:#777"> . . . &#8594; Read More: <a href="http://blog.justinlintz.com/2010/06/thinkpad-trackpoint-sensitivity-on-ubuntu/">Thinkpad Trackpoint sensitivity on Ubuntu</a></span>]]></description>
		<link>http://blog.justinlintz.com/2010/06/thinkpad-trackpoint-sensitivity-on-ubuntu/</link>
			</item>
	<item>
		<title>Check for missing reverse DNS entries on network</title>
		<description><![CDATA[<p>A quick way to check your network for IPs missing reverse DNS entries&#8230;.</p> nmap -PE -sP 10.0.0.0/24 &#124; awk '{if ($2 ~ /^[[:digit:]]/ ) print $2}' ]]></description>
		<link>http://blog.justinlintz.com/2010/05/check-for-missing-reverse-dns-entries-on-network/</link>
			</item>
	<item>
		<title>Support for authorized-keys.d/</title>
		<description><![CDATA[<p>Why is there no subdir inside .ssh called authorized-keys.d where I can just throw my ssh keys and easily manage them by file name instead of having to edit the authorized-keys(2) file?</p> <p>I need to do some googling on this , a quick search yields this debian bug report on wishing for support for <span style="color:#777"> . . . &#8594; Read More: <a href="http://blog.justinlintz.com/2010/02/support-for-authorized-keys-d/">Support for authorized-keys.d/</a></span>]]></description>
		<link>http://blog.justinlintz.com/2010/02/support-for-authorized-keys-d/</link>
			</item>
	<item>
		<title>Python Quote module</title>
		<description><![CDATA[<p>Over the past couple of years I&#8217;ve been wanting to learn Python more seriously but really haven&#8217;t sat down and just done it.   I&#8217;ve written a couple of various scripts for personal and work use but always felt they weren&#8217;t coded in a &#8220;pythonic&#8221; way.  I&#8217;m now reading Learning Python (4th edition) from the <span style="color:#777"> . . . &#8594; Read More: <a href="http://blog.justinlintz.com/2010/01/python-quote-module/">Python Quote module</a></span>]]></description>
		<link>http://blog.justinlintz.com/2010/01/python-quote-module/</link>
			</item>
</channel>
</rss>

