<?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>Dave&#039;s Blogs</title>
	<atom:link href="http://davesblogs.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://davesblogs.net</link>
	<description></description>
	<lastBuildDate>Mon, 30 Nov 2009 13:13:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Working Around Firefox 3.5 Restricted Ports</title>
		<link>http://davesblogs.net/working-around-firefox-3-5-restricted-ports/</link>
		<comments>http://davesblogs.net/working-around-firefox-3-5-restricted-ports/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 13:16:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[System Administration]]></category>

		<guid isPermaLink="false">http://davesblogs.net/?p=227</guid>
		<description><![CDATA[

As a web developer I often use non-standard ports for web sites which I&#8217;m testing.  Firefox has recently started blocking some of these ports so this post shows how to get around this.
Type about:config in the URL area and hit enter.
Type network.security.ports.banned.override in the filter area.  Nothing will show up if you haven&#8217;t [...]]]></description>
		<wfw:commentRss>http://davesblogs.net/working-around-firefox-3-5-restricted-ports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Legacy Apache with mod_perl and mod_gzip</title>
		<link>http://davesblogs.net/installing-legacy-apache-with-mod_perl-and-mod_gzip/</link>
		<comments>http://davesblogs.net/installing-legacy-apache-with-mod_perl-and-mod_gzip/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 13:38:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[System Administration]]></category>

		<guid isPermaLink="false">http://davesblogs.net/?p=219</guid>
		<description><![CDATA[Links to software:
Apache
mod_perl
mod_gzip

Assumes you have already unpacked everything in a directory:

mkdir apache_1.3.41/src/modules/gzip
cp mod_gzip-1.3.26.1a/*.c apache_1.3.41/src/modules/gzip/
cp mod_gzip-1.3.26.1a/*.h apache_1.3.41/src/modules/gzip/
cp mod_gzip-1.3.26.1a/Makefile.tmpl apache_1.3.41/src/modules/gzip/
vim apache_1.3.41/src/modules/gzip/Makefile.tmpl
:1,$s/LIB=libgzip.\$(LIBEXT)/LIB=libgzip.a/
cd mod_perl-1.31
perl Makefile.PL APACHE_SRC=../apache_1.3.41/src DO_HTTPD=1 \
USE_APACI=1 EVERYTHING=1 APACI_ARGS='--prefix=/usr/local/apache \
--enable-module=so --enable-module=rewrite \
--activate-module=src/modules/gzip/mod_gzip.c'
make
make test
sudo make install

]]></description>
		<wfw:commentRss>http://davesblogs.net/installing-legacy-apache-with-mod_perl-and-mod_gzip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setup Static Routes In AIX 4.3</title>
		<link>http://davesblogs.net/setup-static-routes-in-aix-4-3/</link>
		<comments>http://davesblogs.net/setup-static-routes-in-aix-4-3/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 12:43:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[System Administration]]></category>

		<guid isPermaLink="false">http://davesblogs.net/?p=216</guid>
		<description><![CDATA[To add a permanent static route in AIX 4.3, add the route command in the startup file: /etc/rc.net

route add -net 192.168.15.0 -netmask 255.255.255.0 192.168.0.1
]]></description>
		<wfw:commentRss>http://davesblogs.net/setup-static-routes-in-aix-4-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compiling Perl from Source on Linux</title>
		<link>http://davesblogs.net/compiling-perl-from-source-on-linux/</link>
		<comments>http://davesblogs.net/compiling-perl-from-source-on-linux/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 13:40:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[System Administration]]></category>

		<guid isPermaLink="false">http://davesblogs.net/?p=210</guid>
		<description><![CDATA[These are the commands I use when I install Perl from source on a Linux server.

perl-5.8.9]#
./configure.gnu --prefix=/usr/local
make
make test
make install
cd /usr/bin
mv perl original.perl
ln -s /usr/local/bin/perl
mv cpan original.cpan
ln -s /usr/local/bin/cpan
mv perldoc original.perldoc
ln -s /usr/local/bin/perldoc


]]></description>
		<wfw:commentRss>http://davesblogs.net/compiling-perl-from-source-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Shorthand for Margin and Padding</title>
		<link>http://davesblogs.net/css-shorthand-for-margin-and-padding/</link>
		<comments>http://davesblogs.net/css-shorthand-for-margin-and-padding/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 13:32:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://davesblogs.net/?p=198</guid>
		<description><![CDATA[The margin and padding CSS properties allow you to specify between one and
four values. This is something I use often but find difficult to remember how it works.

With four values remember to start at the top and go clockwise around the box like so: top,right,bottom,left
padding:10px 20px 30px 40px;
top padding is 10px
right padding is 20px
bottom padding [...]]]></description>
		<wfw:commentRss>http://davesblogs.net/css-shorthand-for-margin-and-padding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Tab Support to PuTTY</title>
		<link>http://davesblogs.net/adding-tab-support-to-putty/</link>
		<comments>http://davesblogs.net/adding-tab-support-to-putty/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 01:00:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[System Administration]]></category>

		<guid isPermaLink="false">http://davesblogs.net/?p=185</guid>
		<description><![CDATA[A fellow programmer and I found this useful add-on for PuTTY to add tabs and help manage lots of open PuTTY terminals.
PuTTY Connection Manager
]]></description>
		<wfw:commentRss>http://davesblogs.net/adding-tab-support-to-putty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Console Fonts for PuTTY</title>
		<link>http://davesblogs.net/linux-console-fonts-for-putty/</link>
		<comments>http://davesblogs.net/linux-console-fonts-for-putty/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 00:57:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[System Administration]]></category>

		<guid isPermaLink="false">http://davesblogs.net/?p=182</guid>
		<description><![CDATA[I found a useful site that has Windows versions of the nice console fonts I&#8217;m used to in Linux.  I usually set the 6&#215;13 font as my default font in PuTTY.  As the author says the .fon format may not work in all Windows programs but it does seem to work nicely in PuTTY.
Linux console [...]]]></description>
		<wfw:commentRss>http://davesblogs.net/linux-console-fonts-for-putty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>gVim vimrc Config File for Windows</title>
		<link>http://davesblogs.net/gvim-vimrc-config-file-for-windows/</link>
		<comments>http://davesblogs.net/gvim-vimrc-config-file-for-windows/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 17:27:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[System Administration]]></category>

		<guid isPermaLink="false">http://davesblogs.net/?p=81</guid>
		<description><![CDATA[The _vimrc file for Windows gVim allows me to set customizations that load when gVim starts.  This saves me from having to manually set the font and colors amongst other things every time I edit a file.  Since gVim for Windows adds a nice right click menu option for opening files with Vim, I often [...]]]></description>
		<wfw:commentRss>http://davesblogs.net/gvim-vimrc-config-file-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VIMRC for Perl</title>
		<link>http://davesblogs.net/vimrc-for-perl/</link>
		<comments>http://davesblogs.net/vimrc-for-perl/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 17:09:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[System Administration]]></category>

		<guid isPermaLink="false">http://davesblogs.net/?p=116</guid>
		<description><![CDATA[Vim enhancements I use in my .vimrc to help with Perl coding:
" visual bell, no annoying beeps
set vb

" incremental search,
" highlights as you type so you know where you'll jump to
set incsearch
" ignore case when searching
set ignorecase
" but don't ignore if user types a capital letter
set smartcase

" dont use Q for Ex mode,
" this gets [...]]]></description>
		<wfw:commentRss>http://davesblogs.net/vimrc-for-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Desert Color Scheme for PuTTY</title>
		<link>http://davesblogs.net/desert-color-scheme-for-putty/</link>
		<comments>http://davesblogs.net/desert-color-scheme-for-putty/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 14:04:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[System Administration]]></category>

		<guid isPermaLink="false">http://davesblogs.net/?p=30</guid>
		<description><![CDATA[Related to my previous post on the Desert Color Scheme for XTerm I also want to put up how to get the desert color scheme into PuTTY for Windows.


 Open putty and select a saved session or the default settings and click the Load button.
Click on the Window-&#62;Colours link to the left in the Category [...]]]></description>
		<wfw:commentRss>http://davesblogs.net/desert-color-scheme-for-putty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
