<?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>Randquist Rants &#187; subversion</title>
	<atom:link href="http://randquist.us/blog/tags/subversion/feed/" rel="self" type="application/rss+xml" />
	<link>http://randquist.us/blog</link>
	<description>Random ramblings of a Software Engineer and Entrepreneur.</description>
	<lastBuildDate>Tue, 24 Apr 2012 17:04:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>yafinr &#8211; Yet Another Forum (in Ruby)</title>
		<link>http://randquist.us/blog/2008/07/07/yafinr-yet-another-forum-in-ruby/</link>
		<comments>http://randquist.us/blog/2008/07/07/yafinr-yet-another-forum-in-ruby/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 09:09:22 +0000</pubDate>
		<dc:creator>CobyR</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[Confreaks]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[YELLOWPAGES.COM]]></category>

		<guid isPermaLink="false">http://www.randquist.us/blog/?p=79</guid>
		<description><![CDATA[After installing and supporting YAF.NET (http://www.yetanotherforum.net) for a couple of clients, I have decided to build another YAF, but I&#8217;ll do it in Ruby. The trips back into the land of ASP.NET and C# have been painful to say the least. So tonight I started hacking&#8230; haven&#8217;t done much of that in a while, too [...]]]></description>
			<content:encoded><![CDATA[<p>After installing and supporting YAF.NET (<a href="http://www.yetanotherforum.net" target="_blank">http://www.yetanotherforum.net</a>) for a couple of clients, I have decided to build another YAF, but I&#8217;ll do it in Ruby.  The trips back into the land of ASP.NET and C# have been painful to say the least.</p>
<p>So tonight I started hacking&#8230; haven&#8217;t done much of that in a while, too busy wrapping my head around the trappings of managing an increasing team of developers at YELLOWPAGES.COM.  So I got the latest rails, created a respository on my dreamhost account for SVN, and then realized&#8230; wait&#8230; why SVN?  Why not git?</p>
<p>I have an account on github, so in an effort not to fall too far behind I went to install git:</p>
<p>port install git-core</p>
<p>-bash: port: command not found</p>
<p>Ah yes&#8230; this is not my personal Mac, it is my YPC Mac, MacPorts has not yet been installed.  So I went out and got 1.60 of MacPorts&#8230; installed nice and easy, and started the git install.  Well I forgot the amount of time required to install git on a pretty clean Mac.  It&#8217;s still fetching bits and pieces, building ncurses as I type.</p>
<p>So tomorrow night I&#8217;ll actually through a basic site up on yafinr.randquist.us, and go from there.</p>
<p>My initial thoughts are to reverse engineer the functionality of yaf.net.  I like the product, just don&#8217;t like moding it.</p>
<p>On another note I fired off quotations (some late) to RubyNation, &#8220;Voices that Matter: Professional Ruby Conference&#8221;, and the WindyCity Rails Conf.</p>
]]></content:encoded>
			<wfw:commentRss>http://randquist.us/blog/2008/07/07/yafinr-yet-another-forum-in-ruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cleaning up the .svn directories from OS X or Linux</title>
		<link>http://randquist.us/blog/2008/03/26/cleaning-up-the-svn-directories-from-os-x-or-linux/</link>
		<comments>http://randquist.us/blog/2008/03/26/cleaning-up-the-svn-directories-from-os-x-or-linux/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 22:38:42 +0000</pubDate>
		<dc:creator>CobyR</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac Stuff]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Shell programming on Linux]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://www.randquist.us/blog/?p=60</guid>
		<description><![CDATA[Handy little command to quickly remove all those .svn subdirectories from a project. find . -type d -name .svn &#124; xargs rm -rf another alternative find . -type d -name .svn' -print0 &#124; xargs -0 rm -rdf]]></description>
			<content:encoded><![CDATA[<p>Handy little command to quickly remove all those .svn subdirectories from a project.</p>
<pre>find . -type d -name .svn | xargs rm -rf</pre>
<p>another alternative</p>
<pre>find  . -type d -name .svn' -print0 | xargs  -0 rm -rdf</pre>
]]></content:encoded>
			<wfw:commentRss>http://randquist.us/blog/2008/03/26/cleaning-up-the-svn-directories-from-os-x-or-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

