<?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>phrog blog &#187; linux</title>
	<atom:link href="http://blog.phrog.org/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.phrog.org</link>
	<description>Let it snow, let it snow, let it SNOW!</description>
	<lastBuildDate>Thu, 01 Dec 2011 19:07:58 +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>Steamboat Springs Linux Users Group</title>
		<link>http://blog.phrog.org/2009/11/22/steamboat-springs-linux-users-group/</link>
		<comments>http://blog.phrog.org/2009/11/22/steamboat-springs-linux-users-group/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 00:45:30 +0000</pubDate>
		<dc:creator>phrog</dc:creator>
				<category><![CDATA[day to day]]></category>
		<category><![CDATA[geek speak]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.phrog.org/?p=243</guid>
		<description><![CDATA[A few years ago I kicked around the idea of a Steamboat Springs Linux Users Group. The domain I purchased for this project has sat quite dormant until just recently, some other Linux users in the Steamboat area have shown some interest. So, here it is.. finally.. The Steamboat Springs Linux Users Group. If you [...]]]></description>
			<content:encoded><![CDATA[<p>A few years ago I kicked around the idea of a Steamboat Springs Linux Users Group. The domain I purchased for this project has sat quite dormant until just recently, some other Linux users in the Steamboat area have shown some interest. So, here it is.. finally..  <a href="http://sslug.net">The Steamboat Springs Linux Users Group</a>. If you a Steamboat Springs local and a Linux geek also. please visit and create your login.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phrog.org/2009/11/22/steamboat-springs-linux-users-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wma2mp3 with mplayer and lame</title>
		<link>http://blog.phrog.org/2008/04/16/wma2mp3-with-mplayer-and-lame/</link>
		<comments>http://blog.phrog.org/2008/04/16/wma2mp3-with-mplayer-and-lame/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 01:23:03 +0000</pubDate>
		<dc:creator>phrog</dc:creator>
				<category><![CDATA[geek speak]]></category>
		<category><![CDATA[golf]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.phrog.org/?p=150</guid>
		<description><![CDATA[So we all have friends that have tried sharing wma files with us. here is a script to change them into mp3s! #!/bin/bash # wma2mp3 for i in *.wma do if [ -f "$i" ]; then rm -f "$i.wav" mkfifo "$i.wav" mplayer -quiet -vo null -vc dummy -af volume=0,resample=44100:0:1 -ao pcm:waveheader:file="$i.wav" "$i" &#038; dest=`echo "$i"&#124;sed [...]]]></description>
			<content:encoded><![CDATA[<p>So we all have friends that have tried sharing wma files with us. here is a script to change them into mp3s!<br />
<code><br />
#!/bin/bash<br />
# wma2mp3<br />
for i in *.wma<br />
do<br />
if [ -f "$i" ]; then<br />
rm -f "$i.wav"<br />
mkfifo "$i.wav"<br />
mplayer -quiet -vo null -vc dummy -af volume=0,resample=44100:0:1 -ao pcm:waveheader:file="$i.wav" "$i" &#038;<br />
dest=`echo "$i"|sed -e 's/wma$/mp3/'`<br />
lame -V0 -h -b 160 --vbr-new "$i.wav" "$dest"<br />
rm -f "$i.wav"<br />
fi<br />
done<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phrog.org/2008/04/16/wma2mp3-with-mplayer-and-lame/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter from the command line with tweet</title>
		<link>http://blog.phrog.org/2008/03/26/twitter-from-the-command-line-with-tweet/</link>
		<comments>http://blog.phrog.org/2008/03/26/twitter-from-the-command-line-with-tweet/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 17:59:42 +0000</pubDate>
		<dc:creator>phrog</dc:creator>
				<category><![CDATA[geek speak]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.phrog.org/2008/03/26/twitter-from-the-command-line-with-tweet/</guid>
		<description><![CDATA[This is a stupidly simple script for sending microblogs to twitter.com using curl and spell checking them with aspell along the way. it looks like this: #!/bin/bash # tweet - A command line twitter with spellcheck - me@phrog.org echo $@ > /tmp/tweet aspell -c /tmp/tweet TWIT=$(cat /tmp/tweet) curl -u USERNAME:PASSWD -d status="$TWIT" http://twitter.com/statuses/update.xml rm /tmp/tweet [...]]]></description>
			<content:encoded><![CDATA[<p>This is a stupidly simple script for sending microblogs to twitter.com using curl and spell checking them with aspell along the way. it looks like this:</p>
<p><code><br />
#!/bin/bash<br />
# tweet  - A command line twitter with spellcheck - me@phrog.org<br />
echo $@ > /tmp/tweet<br />
aspell -c /tmp/tweet<br />
TWIT=$(cat /tmp/tweet)<br />
curl -u USERNAME:PASSWD -d status="$TWIT" http://twitter.com/statuses/update.xml<br />
rm /tmp/tweet<br />
exit 0<br />
</code></p>
<p>Save the code as &#8220;tweet&#8221; and use it like this:</p>
<p><code>you@yourprompt:~$ tweet testing my tweet script</code></p>
<p>It should spit out some success xml. You just sent a tweet to twitter.</p>
<p>Of course you will need to edit the USERNAME and PASSWD to your username and password at twitter.com. If you don&#8217;t like copy and paste you can grab it as a file <a href='http://blog.phrog.org/wp-content/uploads/2008/03/tweet' title='tweet - a simple command line twitter'>here</a>. Hope you find it useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phrog.org/2008/03/26/twitter-from-the-command-line-with-tweet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>irc with irssi and a blowjob</title>
		<link>http://blog.phrog.org/2008/02/01/irc-with-irssi-and-a-blowjob/</link>
		<comments>http://blog.phrog.org/2008/02/01/irc-with-irssi-and-a-blowjob/#comments</comments>
		<pubDate>Fri, 01 Feb 2008 18:20:51 +0000</pubDate>
		<dc:creator>phrog</dc:creator>
				<category><![CDATA[geek speak]]></category>
		<category><![CDATA[golf]]></category>
		<category><![CDATA[instal notes]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[privacy]]></category>

		<guid isPermaLink="false">http://blog.phrog.org/2008/02/01/irc-with-irssi-and-a-blowjob/</guid>
		<description><![CDATA[Some install notes, thats all If you don&#8217;t know what irc is or irssi or blowjob.pl do not waste your time trying to understand this. Move along.. Don&#8217;t Waste your time. apt-get install irssi irssi-scripts Try to load blowjob in irssi /load blowjob.pl poop, im missing something. 11:06 ,--[ScriptAssist] 11:06 &#124; The perl module Crypt::CBC [...]]]></description>
			<content:encoded><![CDATA[<p>Some install notes, thats all <img src='http://blog.phrog.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><em>If you don&#8217;t know what irc is or irssi or blowjob.pl do not waste your time trying to understand this. Move along.. Don&#8217;t Waste your time.</em></p>
<p><code>apt-get install irssi irssi-scripts</code></p>
<p>Try to load blowjob in irssi</p>
<p><code>/load blowjob.pl</code></p>
<p>poop, im missing something.</p>
<p><code><br />
11:06 ,--[ScriptAssist]<br />
11:06 | The perl module Crypt::CBC is missing on your system.<br />
11:06 | Please ask your administrator about it.<br />
11:06 | You can also check CPAN via '/scriptassist cpan Crypt::CBC'.<br />
11:06 `--<Crypt::CBC>-><br />
</code></p>
<p>Guessing I need libcrypt-cbc-perl and im thinking, libcrypt-blowfish-perl</p>
<p><code>apt-get install libcrypt-cbc-perl libcrypt-blowfish-perl</code></p>
<p>Next load blowfish in irssi</p>
<p><code>/load blowjob.pl</code></p>
<p>Loaded <img src='http://blog.phrog.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Set a test key with someone your irc&#8217;ing with, and blow something.</p>
<p><code>/setkey foobar</code><br />
<code>/blow yo testing</code><br />
<code>“Ciphertext does not begin with a valid header for ’salt’</code></p>
<p>Shit still not working! Seems the script is old. It needed to be updated for the newer Crypt:CBC. I changed a couple lines and came up with this <a href='http://blog.phrog.org/wp-content/uploads/2008/02/blowjob.pl' title='Fixed blowjob.pl'><strong>fixed blowjob.pl</strong></a></p>
<p>Working now!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phrog.org/2008/02/01/irc-with-irssi-and-a-blowjob/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Anonymous browsing with tor and privoxy for linux</title>
		<link>http://blog.phrog.org/2007/10/19/anonymous-browsing-with-tor-and-privoxy-for-linux/</link>
		<comments>http://blog.phrog.org/2007/10/19/anonymous-browsing-with-tor-and-privoxy-for-linux/#comments</comments>
		<pubDate>Fri, 19 Oct 2007 19:46:13 +0000</pubDate>
		<dc:creator>phrog</dc:creator>
				<category><![CDATA[freedom]]></category>
		<category><![CDATA[geek speak]]></category>
		<category><![CDATA[instal notes]]></category>
		<category><![CDATA[anonymous]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[privacy]]></category>

		<guid isPermaLink="false">http://blog.phrog.org/2007/10/19/anonymous-browsing-with-tor-and-privoxy/</guid>
		<description><![CDATA[Someone asked me this morning about browsing the web and masking the IP of the origin. The most effective way to do this is with tor and privoxy. These are my notes on setting this up with a debian or ubuntu linux desktop. Step 1 Get the applications. apt-get install tor privoxy Step 2 Configure [...]]]></description>
			<content:encoded><![CDATA[<p>Someone asked me this morning about browsing the web and masking the IP of the origin. The most effective way to do this is with <a href="http://tor.eff.org">tor</a> and <a href="http://www.privoxy.org">privoxy</a>. These are my notes on setting this up with a debian or ubuntu linux desktop.<br />
<span id="more-94"></span></p>
<p><strong>Step 1</strong> Get the applications.<br />
<code>apt-get install tor privoxy</code></p>
<p><strong>Step 2</strong> Configure privoxy to use tor.<br />
<code> echo "forward-socks4a / localhost:9050 ." >> /etc/privoxy/config<br />
/etc/init.d/privoxy restart</code></p>
<p><strong>Step 3</strong> Configure your browser to use the proxy.</p>
<p>At this point you should have a tor enabled socks4 proxy server running on localhost port 8118. Configure your browser to use the proxy in it&#8217;s preferences. </p>
<p>If your using Firefox I would suggest getting the <a href="http://mozmonkey.com/switchproxy/">SwitchProxy</a> extension and using it to manage the different proxies you have access to. If you don&#8217;t have any other proxies to manage then I would recommend the <a href="https://torbutton.torproject.org/">Tor Button</a> extension instead, its very simple.</p>
<p><strong>Step 4</strong> Test</p>
<p>Visit <a href="http://whatismyip.com">whatismyip.com</a> or similar and confirm the IP result is not your own.</p>
<p>done.</p>
<p>I soon will be forced to do this in windows as well, I will post my results.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phrog.org/2007/10/19/anonymous-browsing-with-tor-and-privoxy-for-linux/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Ampache install notes</title>
		<link>http://blog.phrog.org/2007/10/14/ampache-install-notes/</link>
		<comments>http://blog.phrog.org/2007/10/14/ampache-install-notes/#comments</comments>
		<pubDate>Sun, 14 Oct 2007 20:29:12 +0000</pubDate>
		<dc:creator>phrog</dc:creator>
				<category><![CDATA[geek speak]]></category>
		<category><![CDATA[instal notes]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.phrog.org/2007/10/14/ampache-install-notes/</guid>
		<description><![CDATA[Today i&#8217;m installing ampache with a nerd in training on his ubuntu laptop heres the notes install required stuff sudo apt-get install apache2 php5 phpmyadmin mysql-server Go to http://localhost to see if &#8220;It Works!&#8221; if so then apache2 is running. Then try http://localhost/phpmyadmin if it loads then ya have php5 working with apache2! requirements done. [...]]]></description>
			<content:encoded><![CDATA[<p>Today i&#8217;m installing ampache with a nerd in training on his ubuntu laptop heres the notes</p>
<p>install required stuff<br />
<code>sudo apt-get install apache2 php5 phpmyadmin mysql-server</code><br />
Go to http://localhost to see if &#8220;It Works!&#8221; if so then apache2 is running.<br />
Then try http://localhost/phpmyadmin if it loads then ya have php5 working with apache2! requirements done. Let&#8217;s move on</p>
<p><span id="more-93"></span></p>
<p>make your web folders<br />
<code>mkdir ~/www<br />
mkdir ~/www/ampache<br />
cd ~/www/ampache/</code></p>
<p>get subversion<br />
<code>sudo apt-get install subversion</code></p>
<p>get ampache<br />
<code>svn checkout https://svn.ampache.org/trunk</code></p>
<p>set up a virtual host<br />
<code>jed /etc/apache2/sites-available/ampache<br />
</code><br />
create a virtualhost  similar to this and save</p>
<p><code><br />
<VirtualHost *><br />
   ServerAdmin webmaster@ladybug<br />
   DocumentRoot /home/eek/www/ampache/svn.ampache.org/trunk<br />
Options Indexes<br />
ServerName ladybug<br />
   ErrorLog /home/eek/www/ampache/svn.ampache.org/ampache-error_log<br />
   CustomLog /home/eek/www/ampache/svn.ampache.org/ampache-access_log common<br />
</VirtualHost></code></p>
<p>restart apache<br />
<code>apache2ctl restart</code></p>
<p>edit your /etc/hosts to include &#8220;ladybug&#8221;<br />
<code>echo "127.0.0.1 ladybug" >> /etc/hosts</code></p>
<p>goto http://ladybug in your browser if you get an ampache install screen..<br />
You will need to have created a mysql user and database with http://your-ip/phpmyadmin</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phrog.org/2007/10/14/ampache-install-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dell puts Ubuntu Linux on its main page.</title>
		<link>http://blog.phrog.org/2007/05/28/dell-puts-ubuntu-linux-on-its-main-page/</link>
		<comments>http://blog.phrog.org/2007/05/28/dell-puts-ubuntu-linux-on-its-main-page/#comments</comments>
		<pubDate>Mon, 28 May 2007 17:42:10 +0000</pubDate>
		<dc:creator>phrog</dc:creator>
				<category><![CDATA[day to day]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.phrog.org/2007/05/28/dell-puts-ubuntu-linux-on-its-main-page/</guid>
		<description><![CDATA[What are all you Windows computer guys going to do when everyone figures out windows sucks and you have been screwing them for years? Check out this screen shot.]]></description>
			<content:encoded><![CDATA[<p><a href='http://blog.phrog.org/2007/05/28/dell-puts-ubuntu-linux-on-its-main-page/dell-is-pushing-linux/' rel='attachment wp-att-62' title='Dell is pushing Linux'><img align="right" src='http://blog.phrog.org/wp-content/uploads/2007/05/del-ubuntu.thumbnail.jpg' alt='Dell is pushing Linux' /></a>What are all you Windows computer guys going to do when everyone figures out windows sucks and you have been screwing them for years? Check out this <a href='http://blog.phrog.org/2007/05/28/dell-puts-ubuntu-linux-on-its-main-page/dell-is-pushing-linux/' rel='attachment wp-att-62'>screen shot</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phrog.org/2007/05/28/dell-puts-ubuntu-linux-on-its-main-page/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Nymserv install notes</title>
		<link>http://blog.phrog.org/2007/05/12/nymserv-install-notes/</link>
		<comments>http://blog.phrog.org/2007/05/12/nymserv-install-notes/#comments</comments>
		<pubDate>Sun, 13 May 2007 05:47:25 +0000</pubDate>
		<dc:creator>phrog</dc:creator>
				<category><![CDATA[freedom]]></category>
		<category><![CDATA[geek speak]]></category>
		<category><![CDATA[instal notes]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[remailer]]></category>

		<guid isPermaLink="false">http://blog.phrog.org/2007/05/12/nymserv-install-notes/</guid>
		<description><![CDATA[If you know what a nymserver is then you may also know there is little or no documentation on getting one installed. Its a bitch. These are my notes from the install. They are quite brief but I figured they may be helpful if your working with nymserver.pl and are stuck on something, so I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p>If you know what a nymserver is then you may also know there is little or no documentation on getting one installed. Its a bitch. These are my notes from the install. They are quite brief but I figured they may be helpful if your working with nymserver.pl and are stuck on something, so I&#8217;m sharing.</p>
<p><span id="more-59"></span></p>
<p>Make a folder to work in.<br />
<code>mkdir Nym<br />
cd Nym</code></p>
<p>get the nymserver code from cvs</p>
<p><code>cvs -d:pserver:anonymous@nymserv.cvs.sourceforge.net:/cvsroot/nymserv login<br />
cvs -z3 -d:pserver:anonymous@nymserv.cvs.sourceforge.net:/cvsroot/nymserv co nymserv</code></p>
<p>run setup to build the pgp folder and make our keys<br />
<code>cd nymserv<br />
sh ./setup.sh</code></p>
<p>then we make sure it built the key fine<br />
<code>cd ~/Nym/pgp<br />
gpg --no-default-keyring --secret-keyring ./secring.pgp --list-secret-keys<br />
</code></p>
<p>sign and check the signature of the key<br />
<code>gpg --keyring ~/Nym/pgp/pubring.pgp --sign-key nymserverKeyID<br />
gpg  --keyring ~/Nym/pgp/pubring.pgp --list-sigs nymserverKeyID</code></p>
<p>edit the key to add send@<br />
<code> gpg --no-default-keyring --keyring ~/Nym/pgp/pubring.pgp --secret-keyring ~/Nym/pgp/secring.pgp --edit-key config@nym.whatever.net</code></p>
<p>dump the public key to a new file<br />
<code>gpg --no-default-keyring --keyring ~/Nym/pgp/pubring.pgp --armor --export nymserverKeyID &gt; sigedkey.pgp</code></p>
<p>create some stuff<br />
<code><br />
mkdir ~/Nym/users<br />
mkdir ~/Nym/queue<br />
mkdir ~/Nym/.gnupg<br />
touch ~/Nym/.gnupg/noring.gpg<br />
</code></p>
<p>create user files for admin and postmaster<br />
<code>echo my@emailaddy.not &gt; ~/Nym/users/postmaster.forward<br />
echo my@emailaddy.not &gt; ~/Nym/users/admin.forward</code></p>
<p>create a reply email<br />
<code>echo 'From: nobody@nym.whatever.net' &gt; ~/Nym/users/remailer-key.reply<br />
echo 'Subject: PGP key for nym.whatever.net' &gt;&gt; ~/Nym/users/remailer-key.reply<br />
echo '' &gt;&gt; ~Nym/users/remailer-key.reply<br />
cat ~Nym/pgp/sigedkey.pgp &gt;&gt; ~/Nym/users/remailer-key.reply<br />
cp ~/Nym/users/remailer-key.reply ~/Nym/users/help.reply<br />
</code></p>
<p>Next we edit nymserver.pl a little to set  it up for our environment check the first line to ensure it is your perl path and then edit  $HOMEDIR $HOSTNAME and so on. Most important is $NYMKEYID </p>
<p>Then set up dns and MX and added this to postfix master.cf<br />
<code>#nymserver<br />
nymserv   unix  -       n       n       -       -       pipe<br />
  flags=FR user=anon argv=/home/remailer/Nym/nymserver.pl -d ${user}<br />
</code></p>
<p>add a line to main.cf<br />
<code>relay_domains = nym.whatever.net</code></p>
<p>add a transport<br />
<code>nym.whatever.net nymserv:<br />
</code></p>
<p>hope for the best<br />
<code>postmap /etc/postfix/transport<br />
postfix reload</code><br />
Oops,had to <code>chmod 700 nymserver.pl </code><br />
and the server was missing a few things.<br />
<code> apt-get install libmd5-perl<br />
apt-get install libgnupg-interface-perl</code></p>
<p>If your mixmaster is disallowing clear text you may not receive any config requests.. if this happens add <code>--UNENCRYPTED=y</code> to the nymserver.pl mixmaster line.</p>
<p>If your postfix is configured <code>recipient_delimiter=+</code> your nym configuration confirmations will break with &#8220;User Unknown&#8221; because the cookie delimiter is also &#8220;+&#8221;. </p>
<p>Now test a bit and if it&#8217;s all good then open up finger on the firewall and add this line to your inetd.conf<br />
<code>finger	stream	tcp	nowait	remailer	/home/remailer/Nym/nymserver.pl nymserver.pl -fingerd</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phrog.org/2007/05/12/nymserv-install-notes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>etree.org mail list server upgrade</title>
		<link>http://blog.phrog.org/2007/04/03/etreeorg-mail-list-server-upgrade/</link>
		<comments>http://blog.phrog.org/2007/04/03/etreeorg-mail-list-server-upgrade/#comments</comments>
		<pubDate>Wed, 04 Apr 2007 04:27:59 +0000</pubDate>
		<dc:creator>phrog</dc:creator>
				<category><![CDATA[day to day]]></category>
		<category><![CDATA[geek speak]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.phrog.org/2007/04/03/etreeorg-mail-list-server-upgrade/</guid>
		<description><![CDATA[If your on an etree.org mailing list then you know the server has been borked for a while. Well I upgraded the server to a 1Ghz machine yesterday. you can keep an eye on it here.]]></description>
			<content:encoded><![CDATA[<p>If your on an <a href="http://etree.org">etree.org</a> mailing <a href="http://mail.etree.org">list</a> then you know the server has been borked for a while. Well I upgraded the server to a 1Ghz machine yesterday. you can keep an eye on it <a href="http://mail.etree.org/mailgraph.cgi">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phrog.org/2007/04/03/etreeorg-mail-list-server-upgrade/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Steamboat Springs Technology Commission Ready To Spend!</title>
		<link>http://blog.phrog.org/2007/03/13/steamboat-springs-technology-commission-ready-to-spend/</link>
		<comments>http://blog.phrog.org/2007/03/13/steamboat-springs-technology-commission-ready-to-spend/#comments</comments>
		<pubDate>Tue, 13 Mar 2007 17:34:00 +0000</pubDate>
		<dc:creator>phrog</dc:creator>
				<category><![CDATA[day to day]]></category>
		<category><![CDATA[geek speak]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[rant]]></category>

		<guid isPermaLink="false">http://blog.phrog.org/2007/03/13/steamboat-springs-technology-commission-ready-to-spend/</guid>
		<description><![CDATA[The tech commission is ready to spend some money. They have lots of it burning holes in pockets, Wait an idea! Let&#8217;s buy some really expensive software that will need constant spending to keep updated. Then we can spend all that tax money and everyone will feel great! This could really happen. Read this article [...]]]></description>
			<content:encoded><![CDATA[<p>The tech commission is ready to spend some money. They have lots of it burning holes in pockets, Wait an idea! Let&#8217;s buy some really expensive software that will need constant spending to keep updated. Then we can spend all that tax money and everyone will feel great! </p>
<p>This could really happen.<br />
Read <a href="http://www2.steamboatpilot.com/news/2007/mar/12/tech_commission_proposes_overhaul/">this article from the pilot</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phrog.org/2007/03/13/steamboat-springs-technology-commission-ready-to-spend/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

