<?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; /dev/null</title>
	<atom:link href="http://blog.lnx.cx/category/null/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.lnx.cx</link>
	<description>not at all like a diatribe</description>
	<lastBuildDate>Mon, 02 Apr 2012 16:51:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>VNC On Fedora 14 on Linode</title>
		<link>http://blog.lnx.cx/2011/04/30/vnc-on-fedora-14-on-linode/</link>
		<comments>http://blog.lnx.cx/2011/04/30/vnc-on-fedora-14-on-linode/#comments</comments>
		<pubDate>Sat, 30 Apr 2011 05:19:26 +0000</pubDate>
		<dc:creator>Tim Bielawa</dc:creator>
				<category><![CDATA[/dev/null]]></category>

		<guid isPermaLink="false">http://blog.lnx.cx/?p=158</guid>
		<description><![CDATA[Installed and configured tigervnc on my Linode host today, had a nasty problem getting fonts to display though. After KDE had loaded only the fixed width font used by vncconfig was showing, the rest were empty squares. Here&#8217;s what didn&#8217;t work on my Fedora 14 host: xorg-x11-fonts-misc-7.2-12.fc14.noarch 1:xorg-x11-xfs-1.0.5-8.fc14.x86_64 xorg-x11-server-Xvfb-1.9.5-1.fc14.x86_64 I contribute this to my lacking [...]]]></description>
			<content:encoded><![CDATA[<p>Installed and configured tigervnc on my Linode host today, had a nasty problem getting fonts to display though. After KDE had loaded only the fixed width font used by vncconfig was showing, the rest were empty squares. Here&#8217;s what didn&#8217;t work on my Fedora 14 host:</p>
<ul>
<li>xorg-x11-fonts-misc-7.2-12.fc14.noarch</li>
<li>1:xorg-x11-xfs-1.0.5-8.fc14.x86_64</li>
<li>xorg-x11-server-Xvfb-1.9.5-1.fc14.x86_64</li>
</ul>
<p>I contribute this to my lacking of any knowledge of what fonts KDE tries to use by default. After some googling I got lucky and found this thread where someone suggests the original poster install the liberation family of fonts. That ended up being what fixed the problem for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lnx.cx/2011/04/30/vnc-on-fedora-14-on-linode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Them&#8217;s the rules (programming guidelines)</title>
		<link>http://blog.lnx.cx/2011/03/25/thems-the-rules-programming-guidelines/</link>
		<comments>http://blog.lnx.cx/2011/03/25/thems-the-rules-programming-guidelines/#comments</comments>
		<pubDate>Fri, 25 Mar 2011 06:35:40 +0000</pubDate>
		<dc:creator>Tim Bielawa</dc:creator>
				<category><![CDATA[/dev/null]]></category>

		<guid isPermaLink="false">http://blog.peopleareducks.com/?p=145</guid>
		<description><![CDATA[In the future I hope to expand on this list. In general though, strive to follow the basics of the Unix Philosophy. Law of Demeter You should only know what your close friends tell you - http://en.wikipedia.org/wiki/Law_of_Demeter Each unit should have only limited knowledge about other units: only units &#8220;closely&#8221; related to the current unit. Each [...]]]></description>
			<content:encoded><![CDATA[<p id="firstHeading">In the future I hope to expand on this list. In general though, strive to follow <a href="http://www.catb.org/~esr/writings/taoup/html/ch01s06.html">the basics of the Unix Philosophy.</a></p>
<h1>Law of Demeter</h1>
<p>You should only know what your close friends tell you - <a title="http://en.wikipedia.org/wiki/Law_of_Demeter" href="http://en.wikipedia.org/wiki/Law_of_Demeter">http://en.wikipedia.org/wiki/Law_of_Demeter</a></p>
<ul>
<li>Each unit should have only limited knowledge about other units: only units &#8220;closely&#8221; related to the current unit.</li>
<li>Each unit should only talk to its friends; don&#8217;t talk to strangers.</li>
<li>Only talk to your immediate friends.</li>
</ul>
<h1 id="firstHeading">Principle of least astonishment</h1>
<p>Boring behavior is the new exciting - <a title="http://en.wikipedia.org/wiki/Principle_of_least_astonishment" href="http://en.wikipedia.org/wiki/Principle_of_least_astonishment">http://en.wikipedia.org/wiki/Principle_of_least_astonishment</a></p>
<ul>
<li>&#8220;&#8230;when two elements of an interface conflict, or are ambiguous, the behaviour should be that which will least surprise the user&#8230;&#8221;</li>
</ul>
<h1>The &#8220;UNIX Way&#8221;</h1>
<p>(Doing) less is more - <a href="http://www.faqs.org/docs/artu/ch01s06.html">http://www.faqs.org/docs/artu/ch01s06.html</a></p>
<ul>
<li>Write programs that do one thing and do it well.</li>
</ul>
<h1>Make good with what you&#8217;re given, complain if you can&#8217;t</h1>
<p>Rule of Repair: Repair what you can — but when you must fail, fail noisily and as soon as possible <a href="http://www.catb.org/~esr/writings/taoup/html/ch01s06.html#id2878538">http://www.catb.org/~esr/writings/taoup/html/ch01s06.html#id2878538</a></p>
<ul>
<li>Be liberal in what you accept, and conservative in what you send</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.lnx.cx/2011/03/25/thems-the-rules-programming-guidelines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zone out completely</title>
		<link>http://blog.lnx.cx/2010/03/26/zone-out-completely/</link>
		<comments>http://blog.lnx.cx/2010/03/26/zone-out-completely/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 01:00:48 +0000</pubDate>
		<dc:creator>Tim Bielawa</dc:creator>
				<category><![CDATA[/dev/null]]></category>
		<category><![CDATA[Emacs]]></category>

		<guid isPermaLink="false">http://blog.peopleareducks.com/?p=128</guid>
		<description><![CDATA[While searching for modes which would help me edit bind9 configuration files I came across this mailing list post. It mentions zone-mode which ended up being great for editing the actual zone files A+. It also tipped me off to another emacs Easter Egg, M-x zone. Described thus: zone is an interactive compiled Lisp function. [...]]]></description>
			<content:encoded><![CDATA[<p>While searching for modes which would help me edit <a href="http://www.bind9.net/">bind9</a> configuration files I came across <a href="https://lists.isc.org/pipermail/bind-users/2008-September/073061.html">this mailing list post</a>. It mentions <code>zone-mode</code> which ended up being great for editing the actual zone files A+. It also tipped me off to another emacs Easter Egg, <code>M-x zone</code>. Described thus:</p>

<div class="wp_syntax"><div class="code"><pre class="listp" style="font-family:monospace;">zone is an interactive compiled Lisp function.
It is bound to &lt;menu-bar&gt; &lt;tools&gt; &lt;games&gt; &lt;zone&gt;.
(zone)
Zone out, completely.</pre></div></div>

<p>It&#8217;s basically an emacs screensaver/psychedelic ascii mode using your focused buffer for content. It obfuscates the buffer in ways which involves wrapping your code around the screen or swapping characters around, and even just turning it all into curly braces and wiggling. Press a key to undo it all. Might be a neat trick to play on a friend, but I see no other usage for this mode.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lnx.cx/2010/03/26/zone-out-completely/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DNS/LDAP</title>
		<link>http://blog.lnx.cx/2010/03/21/dnsldap/</link>
		<comments>http://blog.lnx.cx/2010/03/21/dnsldap/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 02:30:17 +0000</pubDate>
		<dc:creator>Tim Bielawa</dc:creator>
				<category><![CDATA[/dev/null]]></category>
		<category><![CDATA[DHCP]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[LDAP]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://blog.peopleareducks.com/2010/03/21/dnsldap/</guid>
		<description><![CDATA[Hopefully getting something that resembles a DNS server polling from LDAP set up tonight. I love virtual machines.]]></description>
			<content:encoded><![CDATA[<p>Hopefully getting something that resembles a DNS server polling from LDAP set up tonight. I love virtual machines.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lnx.cx/2010/03/21/dnsldap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Desktop Upgrade Tonight</title>
		<link>http://blog.lnx.cx/2010/02/19/desktop-upgrade-tonight/</link>
		<comments>http://blog.lnx.cx/2010/02/19/desktop-upgrade-tonight/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 01:28:10 +0000</pubDate>
		<dc:creator>Tim Bielawa</dc:creator>
				<category><![CDATA[/dev/null]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OMGNEWVERSION]]></category>
		<category><![CDATA[Upgrade]]></category>

		<guid isPermaLink="false">http://blog.peopleareducks.com/2010/02/19/desktop-upgrade-tonight/</guid>
		<description><![CDATA[Tonight I&#8217;m upgrading my desktop (&#8220;fridge&#8221;) from Fedora 11 to 12. For my own personal benefit I&#8217;ll be documenting the process. Things I want to take note of in particular include: which additional files must be backed up for system services like samba, my current partition map, and what process I used to perform the [...]]]></description>
			<content:encoded><![CDATA[<p>Tonight I&#8217;m upgrading my desktop (&#8220;fridge&#8221;) from Fedora 11 to 12. For my own personal benefit I&#8217;ll be documenting the process. Things I want to take note of in particular include: which additional files must be backed up for system services like samba, my current partition map, and what process I used to perform the upgrade (optical media, netboot?).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lnx.cx/2010/02/19/desktop-upgrade-tonight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Syndication</title>
		<link>http://blog.lnx.cx/2009/12/14/syndication/</link>
		<comments>http://blog.lnx.cx/2009/12/14/syndication/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 23:24:46 +0000</pubDate>
		<dc:creator>Tim Bielawa</dc:creator>
				<category><![CDATA[/dev/null]]></category>
		<category><![CDATA[Emacs]]></category>

		<guid isPermaLink="false">http://blog.peopleareducks.com/?p=111</guid>
		<description><![CDATA[Emacs related posts are now being syndicated on Planet Emacsen!]]></description>
			<content:encoded><![CDATA[<p>Emacs related posts are now being syndicated on <a href="http://planet.emacsen.org/">Planet Emacsen</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lnx.cx/2009/12/14/syndication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Because old archived logs on secure servers are pointless&#8230;</title>
		<link>http://blog.lnx.cx/2009/09/09/because-old-archived-logs-on-secure-servers-are-pointless/</link>
		<comments>http://blog.lnx.cx/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.lnx.cx/2009/09/09/because-old-archived-logs-on-secure-servers-are-pointless/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A haiku for modulus</title>
		<link>http://blog.lnx.cx/2009/09/04/a-haiku-for-modulus/</link>
		<comments>http://blog.lnx.cx/2009/09/04/a-haiku-for-modulus/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 10:27:40 +0000</pubDate>
		<dc:creator>Tim Bielawa</dc:creator>
				<category><![CDATA[/dev/null]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Even]]></category>
		<category><![CDATA[Haiku]]></category>
		<category><![CDATA[Modulus]]></category>
		<category><![CDATA[Odd]]></category>

		<guid isPermaLink="false">http://blog.peopleareducks.com/?p=79</guid>
		<description><![CDATA[I needed to know Is this Even or odd, hmm? I used modulus This is the simplest way to quickly find out if an integer is even or odd. I&#8217;m posting this because I don&#8217;t recall my programming lab TAs or professors ever mentioning this simple way to figure that out. May it save you [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>I needed to know<br />
Is this Even or odd, hmm?<br />
I used modulus</p></blockquote>
<p style="text-align: left;">This is the simplest way to quickly find out if an integer is even or odd. I&#8217;m posting this because I don&#8217;t recall my programming lab TAs or professors ever mentioning this simple way to figure that out.</p>
<p style="text-align: left;">May it save you many lines of code and time!</p>
<p style="text-align: left;"><strong>Update:</strong> Suppose I should show an exampe</p>
<blockquote>
<p style="text-align: left;">if ( (your-number % 2) == 0) { echo &#8220;that&#8217;s an even number&#8221; }</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.lnx.cx/2009/09/04/a-haiku-for-modulus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Blog</title>
		<link>http://blog.lnx.cx/2009/08/13/new-blog/</link>
		<comments>http://blog.lnx.cx/2009/08/13/new-blog/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 14:37:06 +0000</pubDate>
		<dc:creator>Tim Bielawa</dc:creator>
				<category><![CDATA[/dev/null]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://blog.peopleareducks.com/?p=3</guid>
		<description><![CDATA[We&#8217;ll probably change the name. For now it&#8217;s plain and descriptive: Yet another geeky blog. Let the acronyms fly!]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ll probably change the name. For now it&#8217;s plain and descriptive: Yet another geeky blog. Let the acronyms fly!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lnx.cx/2009/08/13/new-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

