<?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>The WA5PB Blog</title>
	<atom:link href="http://wa5pb.freeshell.org/motd/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://wa5pb.freeshell.org/motd</link>
	<description>Unix, Amateur Radio &#38; sundries</description>
	<lastBuildDate>Tue, 24 Apr 2012 05:32:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>The Commandline Bible program is released!</title>
		<link>http://wa5pb.freeshell.org/motd/?p=854</link>
		<comments>http://wa5pb.freeshell.org/motd/?p=854#comments</comments>
		<pubDate>Tue, 24 Apr 2012 04:57:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Spirituality]]></category>
		<category><![CDATA[Sundries]]></category>
		<category><![CDATA[Unix & Computing related]]></category>
		<category><![CDATA[*NIX]]></category>
		<category><![CDATA[Bible]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://wa5pb.freeshell.org/motd/?p=854</guid>
		<description><![CDATA[My previous post concerned a little program I wrote one evening to process a bible text file and produce a database from it using Python.   That evening project took on a life of its own, so I have removed the archive download from that blog post as it is now very obsolete.   I now introduce [...]]]></description>
			<content:encoded><![CDATA[<p>My previous post concerned a little program I wrote one evening to process a bible text file and produce a database from it using Python.   That evening project took on a life of its own, so I have removed the archive download from that blog post as it is now very obsolete.   I now introduce and release to the public my Commandline Bible program.  It is a capable bible search and study program designed for use from the Linux or Windows commandline.  Both are writen in Python and require the installation of the <a href="http://www.python.org/download/" target="_blank">Python 2x (currently 2.7.3) interpreter</a>.   The program should work fine for any Python 2.5 or later 2x installation.  In both versions, extract the archive to folder.   For Linux, run python kjv_cmdline.py at the commandline.   For Windows, run the bible.bat batch file which ensures that the needed ANSI character support is loaded and then runs the Python interpreter and the program.   Many thanks to my good friend Larry D. Barr for many suggestions and beta testing support.  This is version 1.0.  Enjoy!</p>
<p>Features:</p>
<ul>
<li>high quality KJV Pure Cambridge Edition (PCE) text is used</li>
<li>case sensitive single word or words found in series search</li>
<li>search can be for whole bible or limitied to Old Testament, New Testmant, or single Book of the Bible</li>
<li>verse display by reference</li>
<li>display of the Treasury of Scriptural Knowledge (TSK) references for verses</li>
<li>a simple ANSI color text interactive command line program not requiring any graphical interface at all</li>
<li>SQLite3 database and other associated datafiles made freely available</li>
<li>all software distributed via the free MIT lincese and other applicable free licneses</li>
<li>very low system resource usage and very fast</li>
</ul>
<p><a href="http://dl.dropbox.com/u/28301815/kjv_cmdline.zip" target="_blank">http://dl.dropbox.com/u/28301815/kjv_cmdline.zip</a></p>
<p><a href="http://dl.dropbox.com/u/28301815/kjv_cmdline.md5" target="_blank">http://dl.dropbox.com/u/28301815/kjv_cmdline.md5</a></p>
<p><a href="http://dl.dropbox.com/u/28301815/kjv_cmdline-win.zip" target="_blank">http://dl.dropbox.com/u/28301815/kjv_cmdline-win.zip</a></p>
<p><a href="http://dl.dropbox.com/u/28301815/kjv_cmdline-win.md5" target="_blank">http://dl.dropbox.com/u/28301815/kjv_cmdline-win.md5</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://wa5pb.freeshell.org/motd/?feed=rss2&#038;p=854</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using Python to create a Bible database program</title>
		<link>http://wa5pb.freeshell.org/motd/?p=850</link>
		<comments>http://wa5pb.freeshell.org/motd/?p=850#comments</comments>
		<pubDate>Tue, 10 Apr 2012 04:11:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Spirituality]]></category>
		<category><![CDATA[Sundries]]></category>
		<category><![CDATA[Unix & Computing related]]></category>
		<category><![CDATA[Bible]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Sundry]]></category>

		<guid isPermaLink="false">http://wa5pb.freeshell.org/motd/?p=850</guid>
		<description><![CDATA[The programming bug bit me this evening and I did something I have wanted to do for a really long time, write my own code to create a useable bible database.   So, I took an indexed bible text available in the public domain, wrote the code to parse it properly and then package the parsed [...]]]></description>
			<content:encoded><![CDATA[<p>The programming bug bit me this evening and I did something I have wanted to do for a really long time, write my own code to create a useable bible database.   So, I took an indexed bible text available in the public domain, wrote the code to parse it properly and then package the parsed bible into a Sqlite3 database file that can then be querried.  Basically, the heart of any bible search program.  I cannot believe how fast it runs!  That is a whole lot of text, but Python excells in the text processing domain.   The link is to an archive containing the bible text file that gets processed and the Python program.   When run, the database is created from scratch.</p>
<p>The code is Python 2.x style.   You may use this code in anyway you wish. NOTE: the following code is obsolete and has been removed.  Please see this blog post for the fully featured program!  <a href="http://wa5pb.freeshell.org/motd/?p=854" target="_blank"> http://wa5pb.freeshell.org/motd/?p=854</a></p>
<p><a href="http://dl.dropbox.com/u/28301815/kjvbible.tar.gz" target="_blank"><br />
</a>http://dl.dropbox.com/u/28301815/kjvbible.tar.gz</p>
<p>The code has good examples of:<br />
1)reading a text file, line by line<br />
2)text parsing and regular expressions<br />
3)error handling<br />
4)Sqlite3 database handling</p>
]]></content:encoded>
			<wfw:commentRss>http://wa5pb.freeshell.org/motd/?feed=rss2&#038;p=850</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My first 5k race!</title>
		<link>http://wa5pb.freeshell.org/motd/?p=846</link>
		<comments>http://wa5pb.freeshell.org/motd/?p=846#comments</comments>
		<pubDate>Sat, 31 Mar 2012 21:02:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Healthy Living]]></category>
		<category><![CDATA[Spirituality]]></category>
		<category><![CDATA[Sundries]]></category>
		<category><![CDATA[health]]></category>
		<category><![CDATA[Things I Like!]]></category>

		<guid isPermaLink="false">http://wa5pb.freeshell.org/motd/?p=846</guid>
		<description><![CDATA[To put a bow on having lost 80 pounds from a year ago this month, I ran in my first 5k race!   I ran in the Faith 5k which was a fund raiser for the Faith Lutheran Church elementary school.  They put on a very nice event using a professional timing company.   They even emailed [...]]]></description>
			<content:encoded><![CDATA[<p>To put a bow on having lost 80 pounds from a year ago this month, I ran in my first 5k race!   I ran in the Faith 5k which was a fund raiser for the <a title="Faith Lutheran Church" href="http://flc-stephenville.ctsmemberconnect.net/home-ctrl.do" target="_blank">Faith Lutheran Church</a> elementary school.  They put on a very nice event using a professional timing company.   They even emailed us our results following the race, mine are below.   I really just hoped to be able to finish the race so my result greatly surpassed my expectations.   Now I have a time to beat for my next race.   What a fun way to spend a beautiful Saturday morning in <a title="Stephenville, TX" href="http://www.stephenvilletexas.org/" target="_blank">Stephenville, Texas</a>.</p>
<p>The email I received following the race:</p>
<p><span style="font-family: Calibri;">Congratulations on finishing the Running with Faith 5K on March 31, 2012.</span></p>
<p><span style="font-family: Calibri;">There were 8 finishers in the Male 40 to 44 age group and 147 finishers in the race.</span></p>
<p><span style="font-family: Calibri;">Your overall finish place was 79 and your age group finish place was 6.  Your overall finish percentile was 54 while your age group percentile was 75.  Your time of 30:36.18 gave you a  9:52 pace per mile.</span></p>
<p><span style="font-family: Calibri;">Full results, as well as upcoming races can be found at <a href="http://www.racedayeventservices.com/" target="_blank">www.racedayeventservices.com</a>.  Be sure to like us on Facebook for up-to-date information about all local running events.</span></p>
<p><span style="font-family: Calibri;">We hope to see you again next year.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://wa5pb.freeshell.org/motd/?feed=rss2&#038;p=846</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DOS batch file to convert TIFF files to PDF</title>
		<link>http://wa5pb.freeshell.org/motd/?p=841</link>
		<comments>http://wa5pb.freeshell.org/motd/?p=841#comments</comments>
		<pubDate>Fri, 03 Feb 2012 04:06:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wa5pb.freeshell.org/motd/?p=841</guid>
		<description><![CDATA[Here is a batch file I put together today for a coworker so he could easily convert TIFF format, .tif, files to PDF, .pdf, files. The batch file is put into the system environment PATH and a shortcut is put in the user profile &#8216;Send To&#8217; folder, allowing the user to right click the .tif [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a batch file I put together today for a coworker so he could easily convert TIFF format, .tif, files to PDF, .pdf, files. The batch file is put into the system environment PATH and a shortcut is put in the user profile &#8216;Send To&#8217; folder, allowing the user to right click the .tif file and choose to send it as input to the batch file for conversion. The batch file requires the gnuwin32 utilities suite be installed and also listed in the system environment PATH. Installing these are well worth the time and effort as it freely brings the wealth of the GNU Utilities, that are the user space backbone of all Linux/Unix systems, to any Windows PC. They can be downloaded from here: <strong><a href="http://sourceforge.net/projects/getgnuwin32/files/latest/download?source=files" target="_blank">http://sourceforge.net/projects/getgnuwin32/files/latest/download?source=files</a></strong>. The particular GNU utility we levarage to do the actual TIFF to PDF conver is called, understandably, tiff2pdf. Additionally, some interesting DOS batch techniques are used in parsing the input file path and file name, and also parsing out the base file name from its file extention. These involve the use of ~nx1 and ~dx1 as seen in the batch file that follows. Learn more about these techniques at the following site, in particular item #9: <strong><a href="http://weblogs.asp.net/jgalloway/archive/2006/11/20/top-10-dos-batch-tips-yes-dos-batch.aspx" target="_blank">http://weblogs.asp.net/jgalloway/archive/2006/11/20/top-10-dos-batch-tips-yes-dos-batch.aspx</a></strong>.</p>
<p>So, here is the batch file. A DOS/GNU hybrid!</p>
<p><span style="color: #ffff00;"><strong>@echo off</strong></span><br />
<span style="color: #ffff00;"><strong> REM usage: tiff2pdf.bat my_tiff_file.tif</strong></span></p>
<p><span style="color: #ffff00;"><strong>REM get just the file name</strong></span><br />
<span style="color: #ffff00;"><strong> set file=%~nx1</strong></span></p>
<p><span style="color: #ffff00;"><strong>REM get just the working path of that file</strong></span><br />
<span style="color: #ffff00;"><strong> set file_path=%~dp1</strong></span></p>
<p><span style="color: #ffff00;"><strong>REM strip the file extension from the file name to prepare it for the processing command</strong></span><br />
<span style="color: #ffff00;"><strong> set noext=%file:~0,-4%</strong></span></p>
<p><span style="color: #ffff00;"><strong>REM call the GNU tiff2pdf utility with appropriate paramenters to convert from TIFF to PDF.</strong></span><br />
<span style="color: #ffff00;"><strong> tiff2pdf.exe %1 -o &#8220;%file_path%%noext%.pdf&#8221; -f</strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://wa5pb.freeshell.org/motd/?feed=rss2&#038;p=841</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tech Podcasts</title>
		<link>http://wa5pb.freeshell.org/motd/?p=838</link>
		<comments>http://wa5pb.freeshell.org/motd/?p=838#comments</comments>
		<pubDate>Tue, 03 Jan 2012 05:30:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wa5pb.freeshell.org/motd/?p=838</guid>
		<description><![CDATA[I have really been getting into podcasts lately, particularly tech type ones.   Here are some you might like to check out. The Linux Action Show Linux Basix Hacker Public Radio This Week in Tech Finally, I am looking into partnering with another geek buddy to produce a new podcast.  I&#8217;ll post a notice here when [...]]]></description>
			<content:encoded><![CDATA[<p>I have really been getting into podcasts lately, particularly tech type ones.   Here are some you might like to check out.</p>
<p><a title="The Linux Action Show" href="http://feeds.feedburner.com/TheLinuxActionShow" target="_blank">The Linux Action Show</a></p>
<p><a title="Linux Basix" href="http://feeds.feedburner.com/linuxbasix/mp3" target="_blank">Linux Basix</a></p>
<p><a title="Hacker Public Radio" href="http://hackerpublicradio.org/hpr_rss.php" target="_blank">Hacker Public Radio</a></p>
<p><a title="This Week in Tech" href="http://leo.am/podcasts/twit" target="_blank">This Week in Tech</a></p>
<p>Finally, I am looking into partnering with another geek buddy to produce a new podcast.  I&#8217;ll post a notice here when it is ready.</p>
]]></content:encoded>
			<wfw:commentRss>http://wa5pb.freeshell.org/motd/?feed=rss2&#038;p=838</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slackware vs. Arch Linux</title>
		<link>http://wa5pb.freeshell.org/motd/?p=834</link>
		<comments>http://wa5pb.freeshell.org/motd/?p=834#comments</comments>
		<pubDate>Mon, 19 Dec 2011 01:33:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix & Computing related]]></category>
		<category><![CDATA[*NIX]]></category>
		<category><![CDATA[ArchLinux]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Slackware]]></category>

		<guid isPermaLink="false">http://wa5pb.freeshell.org/motd/?p=834</guid>
		<description><![CDATA[I recently found an excellent article comparing Slackware and Arch Linux. http://beej.us/blog/2009/12/arch-vs-slackware/]]></description>
			<content:encoded><![CDATA[<p>I recently found an excellent article comparing Slackware and Arch Linux.</p>
<p><span style="text-decoration: underline;"><a href="http://beej.us/blog/2009/12/arch-vs-slackware/" target="_blank">http://beej.us/blog/2009/12/arch-vs-slackware/</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://wa5pb.freeshell.org/motd/?feed=rss2&#038;p=834</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bye bye Ubuntu</title>
		<link>http://wa5pb.freeshell.org/motd/?p=830</link>
		<comments>http://wa5pb.freeshell.org/motd/?p=830#comments</comments>
		<pubDate>Fri, 02 Dec 2011 03:14:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix & Computing related]]></category>
		<category><![CDATA[*NIX]]></category>
		<category><![CDATA[ArchLinux]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux Mint]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://wa5pb.freeshell.org/motd/?p=830</guid>
		<description><![CDATA[I think I am going to scrub my Ubuntu 10.04 system (the one I am typing on is Linux Mint Debian), and do another Arch Linux install.   At that point Ubuntu will have been totally jettisoned.  For an Ubuntu done better than Ubuntu, I have Linux Mint.   LM is great for an easy productive installed [...]]]></description>
			<content:encoded><![CDATA[<p>I think I am going to scrub my Ubuntu 10.04 system (the one I am typing on is Linux Mint Debian), and do another Arch Linux install.   At that point Ubuntu will have been totally jettisoned.  For an Ubuntu done better than Ubuntu, I have Linux Mint.   LM is great for an easy productive installed Linux.  However, it is so easy that it does not do much for my need for a Linux &#8220;geek&#8221; fix.  So, that is what Arch is for.  Not an easy install.  I have to actually think, read, and learn to do stuff properly on it which is why I fell in love with Linux in the first place.</p>
<p>Don&#8217;t get me wrong, I am not an Ubuntu hater.  The Ubuntu team did some really great things and set some really high bars that I think had a great influence on the entire Linux world.  However, I think they have taken a wrong turn with their emphasis on the Unity desktop and have dumbed down the system far too much.  I do appreciate their reasoning for doing this in that they want to get as many newbies and hopeless end users onto Linux and expand the user base.  I really do applaud that and wish them all the best.  However, it is just not for me.  I am a hardcore geek.  I write code.  I do geek for a living and for pleasure.  I just need something more chanenging and interesting.  Fot me comptuing is not just a means to and end, it an end unto itself.   So, of to greener pastures.  I have done Arch before, and really like it.  Even when I got stumped a few times on how to do something, I really liked it.  Linux Mint for my everyday utilitarian computing and Arch for my geek needs.  That&#8217;s where I am at now, but given time all this too will change.  I love the ever changing Linux landscape.</p>
<p>&#8211;Bill</p>
]]></content:encoded>
			<wfw:commentRss>http://wa5pb.freeshell.org/motd/?feed=rss2&#038;p=830</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GRUB2 &#8211; editing the boot menu</title>
		<link>http://wa5pb.freeshell.org/motd/?p=824</link>
		<comments>http://wa5pb.freeshell.org/motd/?p=824#comments</comments>
		<pubDate>Thu, 24 Nov 2011 15:35:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix & Computing related]]></category>
		<category><![CDATA[*NIX]]></category>
		<category><![CDATA[GRUB2]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://wa5pb.freeshell.org/motd/?p=824</guid>
		<description><![CDATA[When it comes to Linux bootloaders, I cut my teeth on LILO.   Learned that, got good at it!   But, time moves on and pretty much all the Linux distros went to GRUB.  So, learned that, got good at it, LIKED IT!   But, time moved on again.  Now most of the major distros have switched to [...]]]></description>
			<content:encoded><![CDATA[<p>When it comes to Linux bootloaders, I cut my teeth on LILO.   Learned that, got good at it!   But, time moves on and pretty much all the Linux distros went to GRUB.  So, learned that, got good at it, LIKED IT!   But, time moved on again.  Now most of the major distros have switched to GRUB2.  Granted, it did fix some problems found in GRUB, but we lost the easy-to-edit menu.lst file which was a one stop shop for configuring the boot menu in GRUB.   Typically, you would either want to manually added entries to the boot menu or to remove unneeded entries.  This much more complex in GRUB2, but not impossible.   With a little guidance, you can get back to having a boot menu done the way you want.   After some searching, I found these two articles that provide the best HOWTO info that I know of, particularly without being overly complex.  Both of these authors have done a very good job at making this understandable, and doable.  Check them out.</p>
<p>Understand the structure of GRUB2 and how to add entries:</p>
<p><a href="http://maketecheasier.com/mastering-grub-2-the-easy-way/2009/11/19" target="_blank">http://maketecheasier.com/mastering-grub-2-the-easy-way/2009/11/19</a></p>
<p>Clean up your boot menu in GRUB2 and remove unneeded entries:</p>
<p><a href="http://www.howtogeek.com/howto/17787/clean-up-the-new-ubuntu-grub2-boot-menu/" target="_blank">http://www.howtogeek.com/howto/17787/clean-up-the-new-ubuntu-grub2-boot-menu/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wa5pb.freeshell.org/motd/?feed=rss2&#038;p=824</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Save our Internet-Oppose SOPA</title>
		<link>http://wa5pb.freeshell.org/motd/?p=819</link>
		<comments>http://wa5pb.freeshell.org/motd/?p=819#comments</comments>
		<pubDate>Tue, 22 Nov 2011 03:41:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wa5pb.freeshell.org/motd/?p=819</guid>
		<description><![CDATA[Opposition to SOPA. We are in danger of losing a free American Internet. Unless you really want to enjoy internet restrictions like those in China, you need to tell your representatives in congress to oppose SOPA. Read the following and take action! http://dyn.com/sopa-what-you-should-know-why-dyn-opposes-it/ http://www.mozilla.org/sopa/]]></description>
			<content:encoded><![CDATA[<pre>Opposition to SOPA.  We are in danger of losing a free American
Internet.  Unless you really want to enjoy internet restrictions
like those in China, you need to tell your representatives in
congress to oppose SOPA.  Read the following and take action!

<strong><a href="http://dyn.com/sopa-what-you-should-know-why-dyn-opposes-it/">http://dyn.com/sopa-what-you-should-know-why-dyn-opposes-it/</a>

<a href="http://www.mozilla.org/sopa/" target="_blank">http://www.mozilla.org/sopa/</a>
</strong></pre>
]]></content:encoded>
			<wfw:commentRss>http://wa5pb.freeshell.org/motd/?feed=rss2&#038;p=819</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Private Internet</title>
		<link>http://wa5pb.freeshell.org/motd/?p=807</link>
		<comments>http://wa5pb.freeshell.org/motd/?p=807#comments</comments>
		<pubDate>Mon, 21 Nov 2011 03:39:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix & Computing related]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Things I Like!]]></category>

		<guid isPermaLink="false">http://wa5pb.freeshell.org/motd/?p=807</guid>
		<description><![CDATA[I have taken a great interest in personal privacy on the Internet. I have found some things to help accomplish that. Please comment if you know of additional resources or techniques. 1) Private email via PGP encryption: Seems to be most easily accomplished using the Thunderbird email client with the Enigmail PGP add-on. Note, you [...]]]></description>
			<content:encoded><![CDATA[<pre>I have taken a great interest in personal privacy on the Internet.
I have found some things to help accomplish that.  Please comment
if you know of additional resources or techniques.

1) Private email via PGP encryption:  Seems to be most easily
accomplished using the Thunderbird email client with the Enigmail PGP
add-on.  Note, you will need to have PGP or GPG also, installed.  This
is usually true by default on Linux systems, but on Windows you need
to install GPG4Win. <a href="http://www.gpg4win.org/" target="_blank">http://www.gpg4win.org/</a>
To obtain the Thunderbird mail client program:
<a href="https://www.mozilla.org/en-US/thunderbird/">https://www.mozilla.org/en-US/thunderbird/</a>
To obtain the Enigmail add-on:
<a href="http://enigmail.mozdev.org/home/index.php.html">http://enigmail.mozdev.org/home/index.php.html</a>
Another option is the Claws Mail client which incorporates PGP support
<a href="http://www.claws-mail.org/">http://www.claws-mail.org/</a>
A good article introducing the use of the Thunderbird email client with
the Enigmail add-on.
<a href="http://howto.cnet.com/8301-11310_39-10434684-285/want-really-secure-gmail-try-gpg-encryption/" target="_blank">http://howto.cnet.com/8301-11310_39-10434684-285/want-really-secure-gmail-try-gpg-encryption/</a>

My public key for  wa5pb19 &lt;at&gt; gmail &lt;dot&gt; com  is:
<a href="http://pgp.mit.edu:11371/pks/lookup?op=get&amp;search=0x7A4F5D66B10B68A3" target="_blank">http://pgp.mit.edu:11371/pks/lookup?op=get&amp;search=0x7A4F5D66B10B68A3</a>

2) Private surfing using the TOR browser, which is a specialized cut of
Firefox which incorporates the use of internet relays to help keep your
own internet surfing presence anonymous.
<a href="https://www.torproject.org/">https://www.torproject.org/</a>

3) Private internet searching via the DuckDuckGo search engine.  Which
can also be added as a search provider for the Firefox search bar.
<a href="https://www.duckduckgo.com/">https://www.duckduckgo.com</a>

4) Encryption of files using GPG.
<a href="http://www.linuxjournal.com/content/tech-tip-encrypt-files-gpg">http://www.linuxjournal.com/content/tech-tip-encrypt-files-gpg</a>
A good, brief intro to GPG.
<a href="http://www.madboa.com/geek/gpg-quickstart/" target="_blank">http://www.madboa.com/geek/gpg-quickstart/</a>
The official GPG documentation.
<a href="http://www.gnupg.org/documentation/" target="_blank">http://www.gnupg.org/documentation/</a>

<a href="http://rffr.de/why-encryption" target="_blank">WHY?</a>
Some people might ask, "Why? Do you have something to hide?".  To
which I respond, "No. But, why not?  Do we not have a right to privacy?".
However, it must be remembered that if we desire a right to privacy,
we much put effort into keeping our own information private.  If we
release information about ourselves, <em>intentionally or not</em>, it is no
longer private and we arguably lose the reasonable expectation of
privacy afforded by the 4th Amendment of the U.S. Constitution. The
problem arises when we unwittingly reveal information about ourselves
via the internet and other computing activities.  These resources may
help a person to avoid doing that.

From: <a href="https://en.wikipedia.org/wiki/Fourth_Amendment_to_the_United_States_Constitution#Computers_and_privacy" target="_blank">https://en.wikipedia.org/wiki/Fourth_Amendment_to_the_United_States_Constitution#Computers_and_privacy</a></pre>
<p>On March 11, 2010, the <a title="United States Court of Appeals for the Eleventh Circuit" href="https://en.wikipedia.org/wiki/United_States_Court_of_Appeals_for_the_Eleventh_Circuit">United States Court of Appeals for the Eleventh Circuit</a> ruled, in <em>Rehberg v. Paulk</em>, 598 F.3d 1268, that a person does not have a reasonable <a title="Expectation of privacy" href="https://en.wikipedia.org/wiki/Expectation_of_privacy">expectation of privacy</a> in an e-mail once any copy of the communication is delivered to a third party.<sup id="cite_ref-79"><a href="https://en.wikipedia.org/wiki/Fourth_Amendment_to_the_United_States_Constitution#cite_note-79">[80]</a></sup></p>
<p>On December 14, 2010, in <em><a title="United States v. Warshak" href="https://en.wikipedia.org/wiki/United_States_v._Warshak">United States v. Warshak</a></em>, the <a title="United States Court of Appeals for the Sixth Circuit" href="https://en.wikipedia.org/wiki/United_States_Court_of_Appeals_for_the_Sixth_Circuit">United States Court of Appeals for the Sixth Circuit</a> ruled that a person has a reasonable expectation of privacy in his emails and that the government violated Warshak&#8217;s Fourth Amendment rights by compelling his <a title="Internet service provider" href="https://en.wikipedia.org/wiki/Internet_service_provider">internet service provider</a> to turn over his emails without first obtaining a warrant based upon <a title="Probable cause" href="https://en.wikipedia.org/wiki/Probable_cause">probable cause</a>.<sup id="cite_ref-80"><a href="https://en.wikipedia.org/wiki/Fourth_Amendment_to_the_United_States_Constitution#cite_note-80">[81]</a></sup></p>
]]></content:encoded>
			<wfw:commentRss>http://wa5pb.freeshell.org/motd/?feed=rss2&#038;p=807</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I use Linux Mint</title>
		<link>http://wa5pb.freeshell.org/motd/?p=801</link>
		<comments>http://wa5pb.freeshell.org/motd/?p=801#comments</comments>
		<pubDate>Wed, 16 Nov 2011 02:07:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix & Computing related]]></category>
		<category><![CDATA[*NIX]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux Mint]]></category>
		<category><![CDATA[Things I Like!]]></category>

		<guid isPermaLink="false">http://wa5pb.freeshell.org/motd/?p=801</guid>
		<description><![CDATA[I have just realized that I have not done an Ubuntu install in &#8230; well &#8230; a long time.   And it seems that the last time there was this crazy user interface called Unity that completely, utterly, turned me off to that distribution.   With all the very many things I do like about Ubuntu, the [...]]]></description>
			<content:encoded><![CDATA[<p>I have just realized that I have not done an Ubuntu install in &#8230; well &#8230; a long time.   And it seems that the last time there was this crazy user interface called Unity that completely, utterly, turned me off to that distribution.   With all the very many things I do like about Ubuntu, the simple fact is that if I hate the interface I simply won&#8217;t use it or recommend it to others.   So, what to do?   I did do something.   I switched to Linux Mint.  Being basically build on top of the Ubuntu repositories, but with many improvements and the with the basic understanding that the application centric interface systems (like you see on the iPhone) are NOT suitable for use as a desktop environment.   All I really want is a normal desktop environment.   I did not need or WANT a new computer interface paradigm forced upon me.   I am convinced that most Linux users feel the same way.  Not only that, but I am very certain that Unity is also not the way to introduce new users to Linux.   Linux Mint has everything in it that I wanted and liked about Ubuntu, but without the terrible monstrosity of a non-dekstop called Unity and without the arrogance of thinking they know what is best for all us.  The Linux Mint developers have been committed to the needs and sensibilities of the users and that has won my loyalty.   I now tell folks that I use Linux Mint,  and I recommend it to others.</p>
<p><a href="http://www.linuxmint.com/" target="_blank">Linux Mint</a></p>
<p><a href="http://wa5pb.freeshell.org/motd/?p=702" target="_blank">Linux Mint, 2 thumbs up!</a></p>
<p><a href="http://www.opiniond.com/2011/05/5-reasons-why-unity-sucks/" target="_blank">more about Unity badness&#8230;</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://wa5pb.freeshell.org/motd/?feed=rss2&#038;p=801</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Voting ABO in 2012</title>
		<link>http://wa5pb.freeshell.org/motd/?p=797</link>
		<comments>http://wa5pb.freeshell.org/motd/?p=797#comments</comments>
		<pubDate>Tue, 15 Nov 2011 05:39:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Politics]]></category>
		<category><![CDATA[Conservatism]]></category>

		<guid isPermaLink="false">http://wa5pb.freeshell.org/motd/?p=797</guid>
		<description><![CDATA[I have been asked by quite a few people who I intend to vote for President in 2012.   I tell them all that I am voting ABO, that is Anyone But Obama.   I am really at the point that I do not believe that we can do much worse that this would be despot that [...]]]></description>
			<content:encoded><![CDATA[<p>I have been asked by quite a few people who I intend to vote for President in 2012.   I tell them all that I am voting ABO, that is <strong>Anyone But Obama.</strong>   I am really at the point that I do not believe that we can do much worse that this would be despot that now occupies the White House.  He is a Marxist, a liar and a demagogue.  So, I will vote for anyone running against him.   That means I will vote for a Republican, any Republican.   That does not mean that the eventual Republican candidate will necessarily be my all-time favorite candidate.   Likely far from it, but any of them will be vastly superior to Obama.  At this time, my favorite of the Republican candidates is Newt Gingrich.  While he does have some baggage, he is clearly the smartest and best prepared person for the office of the Presidency.   So, GO NEWT!</p>
<p><a href="http://www.newt.org" target="_blank"><span style="color: #ffff00;">http://www.newt.org</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://wa5pb.freeshell.org/motd/?feed=rss2&#038;p=797</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Steve Jobs passes away</title>
		<link>http://wa5pb.freeshell.org/motd/?p=781</link>
		<comments>http://wa5pb.freeshell.org/motd/?p=781#comments</comments>
		<pubDate>Thu, 06 Oct 2011 03:29:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sundries]]></category>
		<category><![CDATA[Unix & Computing related]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[Sundry]]></category>

		<guid isPermaLink="false">http://wa5pb.freeshell.org/motd/?p=781</guid>
		<description><![CDATA[Steve Jobs, the Thomas Edison of our day, has passed away.  He dreamed of bringing computing to the masses, and he succeeded.  But he did much, much more than that.  He brought to us a revolution.  From the Apple computer, to the Mac, to the IPod, and then the IPhone and IPad all the other [...]]]></description>
			<content:encoded><![CDATA[<p>Steve Jobs, the Thomas Edison of our day, has passed away.  He dreamed of bringing computing to the masses, and he succeeded.  But he did much, much more than that.  He brought to us a revolution.  From the Apple computer, to the Mac, to the IPod, and then the IPhone and IPad all the other the great gadgets he and his company created,  our lives have been more fun and more productive.   He founded the company, Apple, in a garage then stepped aside for a time to pursue other technical interests, such as the NeXT systems and OS.  But then he returned to Apple to rescue and revive a company that has lost its way.  Oh, but he did much more that just revive Apple.  He had the vision to embrace other technologies and put his unique touch to them.  He spearheaded the creation of wonderful personal entertainment and communications devices and then married those to computing technologies, advanced operating systems and Internet content delivery; which turned Apple into a computing, communications and internet Juggernaut.  Steve Jobs was an inventor, businessman and visionary.  Most of all, he was a great man who gave his all, and even the last of his health, in pursuit of his dreams which have enriched all our lives.</p>
<h3><span style="color: #ffff00;"><strong>Steve Jobs, RIP<br />
</strong></span></h3>
<h4><span style="color: #ffff00;"><strong>February 24, 1955 – October 5, 2011.     </strong></span></h4>
<p><span style="color: #ffff00;"><a href="http://en.wikipedia.org/wiki/Steve_jobs" target="_blank"><span style="color: #ffff00;">http://en.wikipedia.org/wiki/Steve_jobs</span></a></span></p>
<p><a href="http://wa5pb.freeshell.org/motd/wp-content/uploads/2011/10/t_hero.png"><img class="aligncenter size-full wp-image-788" title="t_hero" src="http://wa5pb.freeshell.org/motd/wp-content/uploads/2011/10/t_hero.png" alt="" width="706" height="644" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://wa5pb.freeshell.org/motd/?feed=rss2&#038;p=781</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Getting aquainted with the M1911</title>
		<link>http://wa5pb.freeshell.org/motd/?p=778</link>
		<comments>http://wa5pb.freeshell.org/motd/?p=778#comments</comments>
		<pubDate>Mon, 26 Sep 2011 04:46:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sundries]]></category>
		<category><![CDATA[Guns]]></category>

		<guid isPermaLink="false">http://wa5pb.freeshell.org/motd/?p=778</guid>
		<description><![CDATA[This is a different sort of blog post for me.  No code snippets or anything like that.   I have recently become the owner of a handgun, a M1911-A1 CS, .45 cal.  It is the short barrel, 3.5&#8243;, version of the classic M1911-A1.  While I have had other types of firearms all my life:  shotguns and [...]]]></description>
			<content:encoded><![CDATA[<p>This is a different sort of blog post for me.  No code snippets or anything like that.   I have recently become the owner of a handgun, a M1911-A1 CS, .45 cal.  It is the short barrel, 3.5&#8243;, version of the classic M1911-A1.  While I have had other types of firearms all my life:  shotguns and riffles, this is the first time I have owned a handgun.   I guess I was waiting for the kids to grow up and basically be out of the house?  Not sure if that was really the reason, but I do know that I really like this gun!  It feels great in my hand and is a size that will simplify concealed carry capabilities.  Today I went out shooting with friends who who are quite a bit more experienced with handguns than I am, one of which is a veteran with combat experience.  I sure appreciated the opportunity to learn and improve my shooting.   It was also a lot of fun!  I am going to have to do more of this.</p>
]]></content:encoded>
			<wfw:commentRss>http://wa5pb.freeshell.org/motd/?feed=rss2&#038;p=778</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Python, watermark a PDF</title>
		<link>http://wa5pb.freeshell.org/motd/?p=769</link>
		<comments>http://wa5pb.freeshell.org/motd/?p=769#comments</comments>
		<pubDate>Sun, 04 Sep 2011 04:29:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix & Computing related]]></category>
		<category><![CDATA[PDF]]></category>
		<category><![CDATA[pyPdf]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[ReportLab]]></category>

		<guid isPermaLink="false">http://wa5pb.freeshell.org/motd/?p=769</guid>
		<description><![CDATA[This blog entry shows how to use Python and two third party modules (pyPdf and ReportLab) to watermark a PDF. #This sample uses two third part modules for Python, #pyPdf &#38; ReportLab to achieve creating and placing #watermark text at angle on an existing PDF file. #This example was produced with Python 2.7 #See http://pybrary.net/pyPdf [...]]]></description>
			<content:encoded><![CDATA[<p>This blog entry shows how to use Python and two third party modules (pyPdf and ReportLab) to watermark a PDF.</p>
<pre><em>#This sample uses two third part modules for Python,
#pyPdf &amp; ReportLab to achieve creating and placing
#watermark text at angle on an existing PDF file.
#This example was produced with Python 2.7
#See http://pybrary.net/pyPdf for more informaton about pyPdf.
#See http://www.reportlab.com for more information about ReportLab. 

#Import the needed external modules and functions from pyPdf and reportlab.</em>
<strong>from pyPdf import PdfFileWriter, PdfFileReader
from reportlab.pdfgen import canvas</strong>

<em>#Use reportlab to create a PDF that will be used
#as a watermark on another PDF.</em>
<strong>c= canvas.Canvas("watermark.pdf")
c.setFont("Courier", 60)</strong>
<em>#This next setting with make the text of our
#watermark gray, nice touch for a watermark.</em>
<strong>c.setFillGray(0.5,0.5)</strong>
<em>#Set up our watermark document. Our watermark
#will be rotated 45 degrees from the direction
#of our underlying document.</em>
<strong>c.saveState()
c.translate(500,100)
c.rotate(45)
c.drawCentredString(0, 0, "A WATERMARK!")
c.drawCentredString(0, 300, "A WATERMARK!")
c.drawCentredString(0, 600, "A WATERMARK!")
c.restoreState()
c.save() </strong>
<em>
#Read in the PDF that will have the PDF applied to it.</em>
<strong>output = PdfFileWriter()
input1 = PdfFileReader(file("original_pdf.pdf", "rb"))</strong> <em>

#Just to demo this function from pyPdf.
#If the PDF has a title, this will print it out.</em>
<strong>print "title = %s" % (input1.getDocumentInfo().title)</strong>

<em>#Open up the orgininal PDF.</em>
<strong>page1 = input1.getPage(0)</strong>

<em>#Read in the file created above by ReportLab for our watermark.</em>
<strong>watermark = PdfFileReader(file("watermark.pdf", "rb"))</strong>
<em>#Apply the watermark by merging the two PDF files.</em>
<strong>page1.mergePage(watermark.getPage(0))</strong>
<em>#Send the resultant PDF to the output stream.</em>
<strong>output.addPage(page1)</strong>

<em>#Just to demo this function from pyPdf.
#Return the number of pages in the watermarked PDF.</em>
<strong>print "watermarked_pdf.pdf has %s pages." % input1.getNumPages()</strong>

<em>#write the output of our new, watermarked PDF.</em>
<strong>outputStream = file("watermarked_pdf.pdf", "wb")
output.write(outputStream)
outputStream.close()</strong></pre>
]]></content:encoded>
			<wfw:commentRss>http://wa5pb.freeshell.org/motd/?feed=rss2&#038;p=769</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Python &amp; SQLite3, demonstrating parameters</title>
		<link>http://wa5pb.freeshell.org/motd/?p=754</link>
		<comments>http://wa5pb.freeshell.org/motd/?p=754#comments</comments>
		<pubDate>Sun, 07 Aug 2011 04:55:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix & Computing related]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://wa5pb.freeshell.org/motd/?p=754</guid>
		<description><![CDATA[Python affords a great opportunity for one to learn basic SQL commands and operations by having SQLite3 built into its standard library.   To learn more, here are some links for Python&#8217;s implementation of the API and also the SQLite3 website. http://docs.python.org/library/sqlite3.html http://www.sqlite.org/index.html Here is a brief example of  creating a simple SQLite3 database in Python, [...]]]></description>
			<content:encoded><![CDATA[<p>Python affords a great opportunity for one to learn basic SQL commands and operations by having SQLite3 built into its standard library.   To learn more, here are some links for Python&#8217;s implementation of the API and also the SQLite3 website.</p>
<p><span style="color: #ffff00;"><a href="http://docs.python.org/library/sqlite3.html" target="_blank"><span style="color: #ffff00;">http://docs.python.org/library/sqlite3.html</span></a></span></p>
<p><span style="color: #ffff00;"><a href="http://www.sqlite.org/index.html" target="_blank"><span style="color: #ffff00;">http://www.sqlite.org/index.html</span></a></span></p>
<p>Here is a brief example of  creating a simple SQLite3 database in Python, performing a query against it with parameters.  The use of parameters is demonstrated in 3 ways.</p>
<p>&gt;&gt;&gt; import sqlite3<br />
&gt;&gt;&gt; conn = sqlite3.connect(&#8216;c:\sqlite3\example&#8217;)<br />
&gt;&gt;&gt; c = conn.cursor()<br />
&gt;&gt;&gt; c.execute(&#8220;&#8221;"create table contacts(client_id integer primary key, first_name text, last_name text, email text)&#8221;"&#8221;)<br />
&gt;&gt;&gt; c.execute(&#8220;&#8221;"insert into contacts values(NULL, &#8216;Bob&#8217;, &#8216;Dole&#8217;, &#8216;bob.dole@gmail.com&#8217;)&#8221;"&#8221;)<br />
&gt;&gt;&gt; conn.commit()<br />
&gt;&gt;&gt; c.execute(&#8220;&#8221;"insert into contacts values(NULL, &#8216;Tom&#8217;, &#8216;Cruz&#8217;, &#8216;tom.cruz@xenu.com&#8217;)&#8221;"&#8221;)<br />
&gt;&gt;&gt; conn.commit()</p>
<p>First parameters are passed using the ? placeholder.  The values are supplied by a collection, a list in this example.  A tuple could also be used.</p>
<p>&gt;&gt;&gt;params = ['Tom','Bob']</p>
<p>&gt;&gt;&gt; c.execute(&#8220;&#8221;"select client_id, first_name, last_name, email from contacts where first_name in (?,?)&#8221;"&#8221;, params)<br />
&gt;&gt;&gt; for i in c:<br />
print(i)</p>
<p>Second, a mapping object (dictionary) is used to supply the parameters via its keys.   This allows the parameters to be named.</p>
<p>names = {&#8220;name1&#8243;: &#8216;Bob&#8217;, &#8220;name2&#8243;:&#8217;Tom&#8217;}</p>
<p>&gt;&gt;&gt; c.execute(&#8220;&#8221;"select client_id, first_name, last_name, email from contacts where first_name in (name1,name2)&#8221;"&#8221;, names)<br />
&gt;&gt;&gt; for i in c:<br />
print(i)</p>
<p>Third, we use the built in mapping that stores information about local program variables to supply the parameters.  The locals() function is used to return the mapping information.  This allows the parameters to be simple variables, rather than members of a collection or keys in a mapping.</p>
<p>name1 = &#8216;Bob&#8217;; name2 = &#8216;Tom&#8217;</p>
<p>&gt;&gt;&gt; c.execute(&#8220;&#8221;"select client_id, first_name, last_name, email from contacts where first_name in (name1,name2)&#8221;"&#8221;, locals())<br />
&gt;&gt;&gt; for i in c:<br />
print(i)</p>
<p>All three methods produce the very same result of the query on the database:</p>
<p>(1, &#8216;Bob&#8217;, &#8216;Dole&#8217;, &#8216;bob.dole@gmail.com&#8217;)<br />
(2, &#8216;Tom&#8217;, &#8216;Cruz&#8217;, &#8216;tom.cruz@xenu.com&#8217;)<br />
&gt;&gt;&gt; c.close()</p>
<p>Additionally, remember the parameter needs to be passed to the execute() function by a collection or mapping type variable.   So, if you would like to loop through the database, say by the indices, and are using a simple integer variable in the loop, you can take that and convert it to a list variable on the fly (a list containing one element) and use that.    Like this:</p>
<pre>
out_list = []
for x in range(1,4):
    y = [x]        #here we take the integer x and use it to create the single element list y for use in c.execute()
    c.execute("""select client_id, first_name, last_name, email from contacts where client_id = :y""", y)
    for i in c:
        out_list.append(i)
print(out_list)
</pre>
]]></content:encoded>
			<wfw:commentRss>http://wa5pb.freeshell.org/motd/?feed=rss2&#038;p=754</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Mystery of Godliness</title>
		<link>http://wa5pb.freeshell.org/motd/?p=751</link>
		<comments>http://wa5pb.freeshell.org/motd/?p=751#comments</comments>
		<pubDate>Sat, 23 Jul 2011 05:27:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Spirituality]]></category>
		<category><![CDATA[Bible]]></category>
		<category><![CDATA[Religion]]></category>

		<guid isPermaLink="false">http://wa5pb.freeshell.org/motd/?p=751</guid>
		<description><![CDATA[The Mystery of Godliness by Bill Allen on Friday, July 22, 2011 at 11:58pm 1 Tim. 3:16 And without controversy great is the mystery of godliness: God was manifest in the flesh, justified in the Spirit, seen of angels, preached unto the Gentiles, believed on in the world, received up into glory. In this text, [...]]]></description>
			<content:encoded><![CDATA[<div>
<h2>The Mystery of Godliness</h2>
</div>
<div>
<div>by <a href="https://www.facebook.com/wallenpb">Bill Allen</a> on Friday, July 22, 2011 at 11:58pm</div>
</div>
<div>
<div>
<p><em><strong>1 Tim. 3:16</strong> And without controversy great is the mystery of godliness: God was  manifest in the flesh, justified in the Spirit, seen of angels, preached  unto the Gentiles, believed on in the world, received up into glory.</em></p>
<p>In this text, the source of godliness is examined.  Godliness, true  inner spiritual piety, awe and reverence towards God, which would be  truely mysterious to those who do not posess it and which are only  concerned with outward religious forms or those who fear not God, and  also mysterious to those who do posses it but are uninformed from the  gospel as to its source and therefore mysterious to both groups, is  revealed to be the One who is God manifest in the flesh, who was  justified in the Spirit, was seen of angels of both the heavenly and  earthly kinds but particularly the earthly kind as they then preached it  unto the Gentiles who then believed in this same One who was also  received up into glory.  The solution to the mystery godliness is none  other that Jesus Christ who dwells within us, giving us a new heart and  mind and is the source of true inner piety, love and devotion to God in  all fear and reverence.</p>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://wa5pb.freeshell.org/motd/?feed=rss2&#038;p=751</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>LFS 6.8 not ready for prime time!</title>
		<link>http://wa5pb.freeshell.org/motd/?p=747</link>
		<comments>http://wa5pb.freeshell.org/motd/?p=747#comments</comments>
		<pubDate>Sun, 26 Jun 2011 02:40:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix & Computing related]]></category>
		<category><![CDATA[*NIX]]></category>
		<category><![CDATA[LFS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Things I don't Like!]]></category>

		<guid isPermaLink="false">http://wa5pb.freeshell.org/motd/?p=747</guid>
		<description><![CDATA[I was in an experimenting mood today and decided to give LFS (Linux From Scratch) 6.8 a try.  It is intended to be a from the ground up Linux build system that is primarily aimed at being an educational tool.   The goal is excellent!  Sadly, LFS 6.8 is not.  I did not get very far [...]]]></description>
			<content:encoded><![CDATA[<p>I was in an experimenting mood today and decided to give<span style="color: #ffff00;"><strong> <a title="http://www.linuxfromscratch.org/" href="http://www.linuxfromscratch.org/" target="_blank">LFS (Linux From Scratch) 6.8 </a></strong></span>a try.  It is intended to be a from the ground up Linux build system that is primarily aimed at being an educational tool.   The goal is excellent!  Sadly, LFS 6.8 is not.  I did not get very far into the book before I began finding evidence that this version, suposedly the &#8220;stable&#8221; version, needs serious sanity checking.   More than once I found that the directions left me in the wrong directory.   Worse yet, the heart of the build, the GCC compiler build, fails outrageously.   I tried correcting the instructions but found that even with the paths to the files, etc. corrected it still fails.   I have sent note to the developers with what I have found and hope for some good help and feedback.   It is not beyond possibility that I made some bad mistake along the way, but I believe I was following the directions very, very carefully.   I hope the LSF effort continues and a corrected or updated version is released as it would be a wonderful teaching tool.   However, a teaching tool needs to work flawlessly if it is going to succeed in educating rather than confusing or frustrating the student.</p>
]]></content:encoded>
			<wfw:commentRss>http://wa5pb.freeshell.org/motd/?feed=rss2&#038;p=747</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ArchLinux, install file compression packages</title>
		<link>http://wa5pb.freeshell.org/motd/?p=745</link>
		<comments>http://wa5pb.freeshell.org/motd/?p=745#comments</comments>
		<pubDate>Sun, 19 Jun 2011 21:40:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix & Computing related]]></category>
		<category><![CDATA[*NIX]]></category>
		<category><![CDATA[ArchLinux]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://wa5pb.freeshell.org/motd/?p=745</guid>
		<description><![CDATA[With a base install of ArchLinux completed, you may find you still do not have all the file compression utilities installed to handle most commpression types.  Run the following to install the most common file compression packages.   Some may already be installed.   This is ok, they will just be refreshed. pacman -S tar gzip bzip2 [...]]]></description>
			<content:encoded><![CDATA[<p>With a base install of ArchLinux completed, you may find you still do not have all the file compression utilities installed to handle most commpression types.  Run the following to install the most common file compression packages.   Some may already be installed.   This is ok, they will just be refreshed.</p>
<p><span style="color: #ffff00;"><strong>pacman -S tar gzip bzip2 zip unzip unrar p7zip arj lha lzma-utils lzop</strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://wa5pb.freeshell.org/motd/?feed=rss2&#038;p=745</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xfce 4.8 missing trashcan</title>
		<link>http://wa5pb.freeshell.org/motd/?p=743</link>
		<comments>http://wa5pb.freeshell.org/motd/?p=743#comments</comments>
		<pubDate>Sun, 19 Jun 2011 21:21:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix & Computing related]]></category>
		<category><![CDATA[*NIX]]></category>
		<category><![CDATA[ArchLinux]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://wa5pb.freeshell.org/motd/?p=743</guid>
		<description><![CDATA[If you install Xfce 4.8, you may find the desktop trashcan icon is missing, even though it is selected in the desktop properties visible icons selection.   To get the trashcan icon back, install the gvfs package.]]></description>
			<content:encoded><![CDATA[<p>If you install Xfce 4.8, you may find the desktop trashcan icon is missing, even though it is selected in the desktop properties visible icons selection.   To get the trashcan icon back, install the <span style="color: #ffff00;"><strong>gvfs</strong></span> package.</p>
]]></content:encoded>
			<wfw:commentRss>http://wa5pb.freeshell.org/motd/?feed=rss2&#038;p=743</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

