<?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>Lawrence H. Leach &#187; Web Development</title>
	<atom:link href="http://www.lawrenceleach.com/category/web-dev/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lawrenceleach.com</link>
	<description>Technical Ramblings</description>
	<lastBuildDate>Thu, 17 Dec 2009 07:22:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Configuring MySQL-Python on OSX Leopard</title>
		<link>http://www.lawrenceleach.com/2008/04/30/configuring-mysql-python-on-osx-leopard/</link>
		<comments>http://www.lawrenceleach.com/2008/04/30/configuring-mysql-python-on-osx-leopard/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 18:15:47 +0000</pubDate>
		<dc:creator>Lawrence</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Site]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql-python]]></category>

		<guid isPermaLink="false">http://www.lawrenceleach.com/2008/04/30/configuring-mysql-python-on-osx-leopard/</guid>
		<description><![CDATA[At WebSight Design we try to remain technology-agnostic. (The right tool or language for the job.) Having said that, we are primarily a PHP shop. However, with the launch of the Google App Engine, we&#8217;ve been looking seriously at Python. In recent years, I have become a big fan of development frameworks so to aide [...]]]></description>
		<wfw:commentRss>http://www.lawrenceleach.com/2008/04/30/configuring-mysql-python-on-osx-leopard/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Compile / Configure Subversion w/SSL Enabled</title>
		<link>http://www.lawrenceleach.com/2008/02/15/compile-configure-subversion-ssl-enabled/</link>
		<comments>http://www.lawrenceleach.com/2008/02/15/compile-configure-subversion-ssl-enabled/#comments</comments>
		<pubDate>Fri, 15 Feb 2008 10:21:26 +0000</pubDate>
		<dc:creator>Lawrence</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[hosted subversion]]></category>
		<category><![CDATA[https]]></category>
		<category><![CDATA[neon]]></category>
		<category><![CDATA[springloops]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.lawrenceleach.com/2008/02/15/compile-configure-subversion-wssl-enabled/</guid>
		<description><![CDATA[My company: WebSight Design, uses Subversion for source and version control for all of our web development projects. We also use the amazing hosted Subversion service: Springloops. (If you ever need a Subversion deployment tool, Springloops is it!) Springloops repositories are *only* accessible via  HTTPS. In order to gain access to a repository from [...]]]></description>
		<wfw:commentRss>http://www.lawrenceleach.com/2008/02/15/compile-configure-subversion-ssl-enabled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Ruby-on-Rails Up On Ubuntu / Apache</title>
		<link>http://www.lawrenceleach.com/2007/09/20/ruby-on-ubuntu/</link>
		<comments>http://www.lawrenceleach.com/2007/09/20/ruby-on-ubuntu/#comments</comments>
		<pubDate>Fri, 21 Sep 2007 04:19:02 +0000</pubDate>
		<dc:creator>Lawrence</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[ruby-on-rails]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ronr]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web programming]]></category>

		<guid isPermaLink="false">http://www.lawrenceleach.com/2007/09/20/ruby-on-ubuntu/</guid>
		<description><![CDATA[GCC:
sudo apt-get install build-essential
Ruby &#38; Friends:
sudo apt-get install ruby1.8-dev ruby1.8 ri1.8 rdoc1.8 irb1.8 libreadline-ruby1.8 libruby1.8
*** Create Symbolic Links ***
sudo ln -s /usr/bin/ruby1.8 /usr/local/bin/rubysudo ln -s /usr/bin/ri1.8 /usr/local/bin/risudo ln -s /usr/bin/rdoc1.8 /usr/local/bin/rdocsudo ln -s /usr/bin/irb1.8 /usr/local/bin/irbZlib:wget http://www.zlib.net/zlib-1.2.3.tar.gztar -xvf zlib-1.2.3.tar.gz./configure
make
sudo make install
Install Open SSL:
sudo apt-get install openssl libssl-dev
Apache 2.2:
wget http://apache.rmplc.co.uk/httpd/httpd-2.2.4.tar.gz
tar -xvf httpd-2.2.4.tar.gz
./configure --prefix=/usr/local/apache --enable-proxy   --enable-proxy-http [...]]]></description>
		<wfw:commentRss>http://www.lawrenceleach.com/2007/09/20/ruby-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
