<?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>legobuff.com &#187; tools</title>
	<atom:link href="http://legobuff.com/category/geek/tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://legobuff.com</link>
	<description>husband. father. geek.</description>
	<lastBuildDate>Sat, 04 Feb 2012 14:02:31 +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>howto install subversion on bluehost</title>
		<link>http://legobuff.com/2008/09/07/howto-install-subversion-on-bluehost/</link>
		<comments>http://legobuff.com/2008/09/07/howto-install-subversion-on-bluehost/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 18:21:47 +0000</pubDate>
		<dc:creator>Jamie Wallingford</dc:creator>
				<category><![CDATA[diy]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://legobuff.com/?p=708</guid>
		<description><![CDATA[i have finally taken the time to get subversion installed and running on my bluehost account. what follows are the steps i took. these steps assume that you have ssh access and your account is on a 64-bit server. ssh &#8230; <a href="http://legobuff.com/2008/09/07/howto-install-subversion-on-bluehost/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>i have finally taken the time to get <a href="http://en.wikipedia.org/wiki/Subversion_(software)">subversion</a> installed and running on my <a href="http://www.bluehost.com/">bluehost</a> account.  what follows are the steps i took.  these steps assume that you have <a href="http://en.wikipedia.org/wiki/Secure_Shell">ssh</a> access and your account is on a 64-bit server.</p>
<p>ssh into your account and create a directory to store all of the sources:</p>
<div class="codesnip-container" >mkdir src<br />
cd src</div>
<p>next download the sources for subversion:</p>
<div class="codesnip-container" >wget http://subversion.tigris.org/downloads/subversion-1.5.2.tar.bz2<br />
wget http://subversion.tigris.org/downloads/subversion-deps-1.5.2.tar.bz2</div>
<p>untar and extract the sources:</p>
<div class="codesnip-container" >tar -xjvf subversion-1.5.2.tar.bz2<br />
tar -xjvf subversion-deps-1.5.2.tar.bz2</div>
<p>lets start with getting the dependencies configured, built and then installed:</p>
<div class="codesnip-container" >cd subversion-1.5.2<br />
cd apr<br />
./configure &#8211;enable-shared &#8211;prefix=$HOME<br />
make<br />
make install</p>
<p>cd ../apr-util<br />
./configure &#8211;enable-shared &#8211;prefix=$HOME &#8211;with-expat=builtin &#8211;with-apr=$HOME &#8211;without-berkeley-db<br />
make<br />
make install</p>
<p>cd ../neon<br />
export EXTRA_CFLAGS=&#8221;-L/usr/lib64 -fPIC&#8221;<br />
export CFLAGS=&#8221;-L/usr/lib64 -fPIC&#8221;<br />
./configure &#8211;enable-shared &#8211;prefix=$HOME &#8211;with-libs=$HOME<br />
make<br />
make install</p></div>
<p>now configure, build and install subversion:</p>
<div class="codesnip-container" >cd ..<br />
./configure &#8211;prefix=$HOME &#8211;with-apr=$HOME &#8211;with-apr-util=$HOME &#8211;with-neon=$HOME \<br />
&#8211;without-berkeley-db &#8211;without-apxs &#8211;without-apache &#8211;without-serf<br />
make<br />
make install</div>
<p>now edit your .bash_profile in the $HOME directory and replace:</p>
<div class="codesnip-container" >PATH=$PATH</div>
<p>with:</p>
<div class="codesnip-container" >PATH=$PATH:$HOME/bin</div>
<p>and save the file.  now either &#8220;<a href="http://docs.sun.com/app/docs/doc/816-5165/source-1?a=view">source</a> .bash_profile&#8221; or logout and then back in.</p>
<p>verify subversion is working:</p>
<div class="codesnip-container" >svn &#8211;version</div>
<p>and should see something similar to:</p>
<div class="codesnip-container" >svn, version 1.5.2 (r32768)<br />
   compiled Sep  7 2008, 11:55:08</p>
<p>Copyright (C) 2000-2008 CollabNet.<br />
Subversion is open source software, see http://subversion.tigris.org/<br />
This product includes software developed by CollabNet (http://www.Collab.Net/).</p>
<p>The following repository access (RA) modules are available:</p>
<p>* ra_neon : Module for accessing a repository via WebDAV protocol using Neon.<br />
  &#8211; handles &#8216;http&#8217; scheme<br />
* ra_svn : Module for accessing a repository using the svn network protocol.<br />
  &#8211; with Cyrus SASL authentication<br />
  &#8211; handles &#8216;svn&#8217; scheme<br />
* ra_local : Module for accessing a repository on local disk.<br />
  &#8211; handles &#8216;file&#8217; scheme</p></div>
<p>the following sites helped get everything installed, unfortunately none of them worked out of the box for me: <a href="http://joemaller.com/2008/01/29/how-to-install-subversion-on-a-shared-host/">site 1</a>, <a href="http://www.bluehostforum.com/showpost.php?p=51455&#038;postcount=19">site 2</a>, <a href="http://subversion.tigris.org/">site 3</a></p>
]]></content:encoded>
			<wfw:commentRss>http://legobuff.com/2008/09/07/howto-install-subversion-on-bluehost/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>all consuming</title>
		<link>http://legobuff.com/2007/11/13/all-consuming/</link>
		<comments>http://legobuff.com/2007/11/13/all-consuming/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 21:00:42 +0000</pubDate>
		<dc:creator>Jamie Wallingford</dc:creator>
				<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://legobuff.com/2007/11/13/all-consuming/</guid>
		<description><![CDATA[i was checking out binary bonsai and came across all consuming. i am now hooked. so what is all consuming? all consuming&#8217;s faq says it best&#8230; It’s a website where you can track and talk about the books, music, movies, &#8230; <a href="http://legobuff.com/2007/11/13/all-consuming/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>i was checking out <a href="http://binarybonsai.com">binary bonsai</a> and came across <a href="http://allconsuming.net/">all consuming</a>.  i am now hooked.</p>
<p>so what is all consuming?  all consuming&#8217;s faq says it best&#8230;</p>
<blockquote><p>It’s a website where you can track and talk about the books, music, movies, food and other items that interest you. You can mark a product one of three ways: I am consuming this, I have consumed this, and I intend to consume this.</p></blockquote>
<p>it may take me awhile to get what i have consumed loaded, but i think i have finally found a way to catalog my media in a reusable way.</p>
]]></content:encoded>
			<wfw:commentRss>http://legobuff.com/2007/11/13/all-consuming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

