<?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>Technitribe &#187; Tutorials</title>
	<atom:link href="http://blog.peopleareducks.com/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.peopleareducks.com</link>
	<description>not at all like a diatribe</description>
	<lastBuildDate>Sat, 27 Mar 2010 01:00:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Because old archived logs on secure servers are pointless&#8230;</title>
		<link>http://blog.peopleareducks.com/2009/09/09/because-old-archived-logs-on-secure-servers-are-pointless/</link>
		<comments>http://blog.peopleareducks.com/2009/09/09/because-old-archived-logs-on-secure-servers-are-pointless/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 04:33:59 +0000</pubDate>
		<dc:creator>ajfarrell</dc:creator>
				<category><![CDATA[/dev/null]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://blog.peopleareducks.com/?p=83</guid>
		<description><![CDATA[Often we get Nagios alerts letting us know that your kernel is about to panic and your server is going to crash and die because read/write operations are going to FAIL MISERABLY. Obviously being a systems administrator it becomes your job to figure out what can go, what needs to stay, et al. I&#8217;ve found [...]]]></description>
			<content:encoded><![CDATA[<p>Often we get Nagios alerts letting us know that your kernel is about to panic and your server is going to crash and die because read/write operations are going to FAIL MISERABLY.</p>
<p>Obviously being a systems administrator it becomes your job to figure out what can go, what needs to stay, et al.</p>
<p>I&#8217;ve found that archived logs (logrotate) on a secure server often can be quite large. And on a low-end configuration with a server with only 40G it becomes a nuisance when you have a few Gb of data&#8230;<br />
And you all probably know this, but Tim asked when I&#8217;d blog. So&#8230; I&#8217;ll make sure!<br />
Having 40 or 50 files is a pain to manually delete. Sure, you could probably rm -f *.1 *.2 *.3 etc etc etc but that becomes too much of a pain.</p>
<p>On BSD systems there is an awesome counter called &#8216;jot&#8217;; it works exactly the opposite of the GNU command &#8216;seq&#8217;; so for a rudimentary example to remove all files it becomes a simple one liner&#8211;</p>
<ul>
<li>jot 6 1 |while read i; do rm -f *.${i};done</li>
<li>seq 1 6|while read i; do rm -f *.${i};done</li>
</ul>
<p>In Emeril fashion: BAM! You&#8217;re now out of the clear.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.peopleareducks.com/2009/09/09/because-old-archived-logs-on-secure-servers-are-pointless/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Basic Screen Tutorial</title>
		<link>http://blog.peopleareducks.com/2009/09/03/basic-screen-tutorial/</link>
		<comments>http://blog.peopleareducks.com/2009/09/03/basic-screen-tutorial/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 15:00:30 +0000</pubDate>
		<dc:creator>tbielawa</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[GNU Screen]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://blog.peopleareducks.com/?p=75</guid>
		<description><![CDATA[I wrote a basic GNU Screen tutorial a while back for my work place. I&#8217;m posting it here for the unknown masses to enjoy too. And now I present, Using GNU Screen. (DocBook Source &#38; Makefile)]]></description>
			<content:encoded><![CDATA[<p>I wrote a basic GNU Screen tutorial a while back for my work place. I&#8217;m posting it here for the unknown masses to enjoy too.</p>
<p>And now I present, <a title="Using GNU Screen" href="http://peopleareducks.com/docs/screen/">Using GNU Screen</a>. (<a title="DocBook Source to Using GNU Screen" href="http://peopleareducks.com/docs/screen/xml/">DocBook Source &amp; Makefile</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.peopleareducks.com/2009/09/03/basic-screen-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting Up An OpenGL Project Using Apple Xcode</title>
		<link>http://blog.peopleareducks.com/2009/08/31/setting-up-an-opengl-project-using-apple-xcode/</link>
		<comments>http://blog.peopleareducks.com/2009/08/31/setting-up-an-opengl-project-using-apple-xcode/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 06:50:04 +0000</pubDate>
		<dc:creator>abutcher</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[opengl]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[xcode]]></category>

		<guid isPermaLink="false">http://blog.peopleareducks.com/?p=48</guid>
		<description><![CDATA[Shaggy and I drafted this guide to setting up your OpenGL development environment in Apple Xcode for cs470 (Introduction to Computer Graphics) at WVU.  It follows you through installing Xcode and including the relevant frameworks for creating a stock C++ OpenGL project.  Shaggy formatted it in DocBook and I think the result is pretty sexy.  [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://opengl.org"><img class="alignright size-full wp-image-60" title="OpenGL" src="http://blog.peopleareducks.com/wp-content/uploads/2009/08/OpenGL_ai3.png" alt="OpenGL" width="216" height="107" /></a></p>
<p>Shaggy and I drafted this guide to setting up your OpenGL development environment in Apple Xcode for cs470 (Introduction to Computer Graphics) at WVU.  It follows you through installing Xcode and including the relevant frameworks for creating a stock C++ OpenGL project.  Shaggy formatted it in DocBook and I think the result is pretty sexy.  Try it out for yourself!</p>
<p>View the tutorial here: <a title="opengl-in-xcode" href="http://peopleareducks.com/opengl-in-xcode/">opengl-in-xcode</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.peopleareducks.com/2009/08/31/setting-up-an-opengl-project-using-apple-xcode/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Linux 101 Tutorial for LCSEE</title>
		<link>http://blog.peopleareducks.com/2009/08/30/linux-101-tutorial-for-lcsee/</link>
		<comments>http://blog.peopleareducks.com/2009/08/30/linux-101-tutorial-for-lcsee/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 03:39:20 +0000</pubDate>
		<dc:creator>tbielawa</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Introduction]]></category>
		<category><![CDATA[LCSEE]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://blog.peopleareducks.com/?p=29</guid>
		<description><![CDATA[Andrew and I put together a small Linux 101 tutorial for new CS kids in our department. We collaborated on it using google docs for the outline and then google presentation to make the actual presentation.]]></description>
			<content:encoded><![CDATA[<p>Andrew and I put together a small Linux 101 tutorial for new CS kids in <a title="Lane Department of Computer Science and Electrical Engineering" href="http://csee.wvu.edu" target="_blank">our department</a>. We collaborated on it using google docs for the outline and then google presentation to make the actual presentation.</p>
<p><iframe src="http://docs.google.com/present/embed?id=dhmh54m7_55dns6mcdp" frameborder="0" width="410" height="342"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.peopleareducks.com/2009/08/30/linux-101-tutorial-for-lcsee/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
