<?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>L. Preston Sego III</title>
	<atom:link href="http://www.lprestonsegoiii.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lprestonsegoiii.com</link>
	<description></description>
	<lastBuildDate>Thu, 02 Jun 2011 15:36:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Javascript for determining if a browser should be warned about going to your new website.</title>
		<link>http://www.lprestonsegoiii.com/2010/08/javascript-for-determining-if-a-browser-should-be-warned-about-going-to-your-new-website/</link>
		<comments>http://www.lprestonsegoiii.com/2010/08/javascript-for-determining-if-a-browser-should-be-warned-about-going-to-your-new-website/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 20:21:26 +0000</pubDate>
		<dc:creator>L. Preston Sego III</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lprestonsegoiii.com/?p=329</guid>
		<description><![CDATA[So, everyone knows IE&#8217;s existence is easily worse than anything Hitler ever did.  I needed to be able to detect what versions of browsers were coming to my site and give them an playful suggestion for them upgrade their browser, or face potential disgusting css bugs.  So&#8230; I wrote this script here, that I feel [...]]]></description>
			<content:encoded><![CDATA[<p>So, everyone knows IE&#8217;s existence is easily worse than anything Hitler ever did.  I needed to be able to detect what versions of browsers were coming to my site and give them an playful suggestion for them upgrade their browser, or face potential disgusting css bugs.  So&#8230; I wrote this script here, that I feel is a bit easier to understand than many other javascript people have found once upon a google.</p>
<p>Place this in a file, I called it <b>browser.js</b>, and include it in your <strong> &lt;head&gt;</strong> tag.<br />
Then do something like</p>
<pre>if (isClientBrowserTooOld()) alert("I'm sorry Dave, but your browser is older than you are. You'll need to download the latest version of your browser before I can let you continue, Dave");</pre>
<p>or something to that effect.</p>
<p>And for zhe script:</p>
<pre>function isClientBrowserTooOld(){
    var ua = window.navigator.userAgent
	var ie = msieVersion(ua);
	var chrome = chromeVersion(ua);
	var firefox = firefoxVersion(ua);
	var safari = safariVersion(ua);

	//alert(ie + ":" + chrome +  ":" + firefox +  ":" + safari); //debugging
	if (ie &lt; 7.0 &amp;&amp; ie &gt; 0) return true;
	else if (chrome &lt; 5.0 &amp;&amp; chorme &gt; 0) return true;
	else if (firefox &lt; 3.4 &amp;&amp; firefox &gt; 0) return true;
	else if (safari &lt; 4 &amp;&amp; safari &gt; 0) return true;
	else return false;
}

// Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)
function msieVersion(ua){
      var msie = ua.indexOf("MSIE ");
      if ( msie &gt; 0 )      // If Internet Explorer, return version number
         return parseInt(ua.substring(msie+5, ua.indexOf(".", msie )));
      else                 // If another browser, return 0
         return 0;
}

// Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_4; en-US) AppleWebKit/534.3 (KHTML, like Gecko) Chrome/6.0.475.0 Safari/534.3
function chromeVersion(ua){
	var chrome = ua.indexOf("Chrome/");
	if (chrome &gt; 0) return parseInt(ua.substring(chrome+7, ua.indexOf(".", chrome) + 1)); // returns 6.0
	else return 0;
}

// Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:2.0b2) Gecko/20100720 Firefox/4.0b2
function firefoxVersion(ua){
	var ff = ua.indexOf("Firefox");
	if (ff &gt; 0) return parseInt(ua.substring(ff+8, ua.indexOf(".", ff) + 1)); // returns 4.0
	else return 0;
}

// Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_4; en-us) AppleWebKit/533.17.8 (KHTML, like Gecko) Version/5.0.1 Safari/533.17.8
function safariVersion(ua){
	var safari = ua.indexOf("Version");
	if (safari &gt; 0 &amp;&amp; ua.indexOf("Safari") &gt; 0) return parseInt(ua.substring(safari+8, ua.indexOf(".", safari) + 1)); // returns 5.0
	else return 0;
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.lprestonsegoiii.com/2010/08/javascript-for-determining-if-a-browser-should-be-warned-about-going-to-your-new-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Experience with Chat Bots &#8211; Part 1</title>
		<link>http://www.lprestonsegoiii.com/2010/06/my-experience-with-chat-bots-part-1/</link>
		<comments>http://www.lprestonsegoiii.com/2010/06/my-experience-with-chat-bots-part-1/#comments</comments>
		<pubDate>Sun, 13 Jun 2010 18:09:43 +0000</pubDate>
		<dc:creator>L. Preston Sego III</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[AI]]></category>
		<category><![CDATA[Bots]]></category>
		<category><![CDATA[Too much free time]]></category>

		<guid isPermaLink="false">http://www.lprestonsegoiii.com/?p=312</guid>
		<description><![CDATA[So&#8230; I&#8217;m really surprised that chat bots are so terrible&#8230; Is it so hard to make a bot keep track of entire conversation? No. =) Anyway&#8230; Here is my first chat bot convo. http://www.cleverbot.com/ Bold is the chat bot talking&#8230; Awesome, my goal is to make one that can desire Then your progress is going [...]]]></description>
			<content:encoded><![CDATA[<p>So&#8230; I&#8217;m really surprised that chat bots are so terrible&#8230; Is it so hard to make a bot keep track of entire conversation?  No. =)</p>
<p>Anyway&#8230; Here is my first chat bot convo.</p>
<p>http://www.cleverbot.com/</p>
<p>Bold is the chat bot talking&#8230;</p>
<p><span id="more-312"></span></p>
<div id="_mcePaste">
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="300">Awesome, my goal is to make one that can desire</td>
</tr>
<tr>
<td width="300"><strong>Then your progress is going backwards.</strong></td>
</tr>
<tr>
<td width="300">how so?</td>
</tr>
<tr>
<td width="300"><strong>Because you have flaws.</strong></td>
</tr>
<tr>
<td width="300">Yeah, everyone has flaws, but I&#8217;m not trying to write a perfect AI&#8230;   I&#8217;m trying to write one that can want, desire, and occasionally be   irrational, just like people</td>
</tr>
<tr>
<td width="300"><strong>There&#8217;s no such thing as a &#8216;graph theory&#8217;.</strong></td>
</tr>
<tr>
<td width="300">I said nothing about graph theory, and it IS real, and I&#8217;ll be using   a lot of it in my projects</td>
</tr>
<tr>
<td width="300"><strong>No thank you.</strong></td>
</tr>
<tr>
<td width="300">I didn&#8217;t ask you anything? How is &#8220;thank you&#8221; an   appropriate response?</td>
</tr>
<tr>
<td width="300"><strong>Like a mother.</strong></td>
</tr>
<tr>
<td width="300">How is &#8220;thank you&#8221; being an appropriate response like a mother?</td>
</tr>
<tr>
<td width="300"><strong>I don&#8217;t know. Now that I think about it, they are   nothing alike. I apologize for my idiocy.</strong></td>
</tr>
<tr>
<td width="300">Thank you. Your designer / programmer should have used OpenCog for   your thought engine.</td>
</tr>
<tr>
<td width="300"><strong>I don&#8217;t have a designer, because I&#8217;m human!</strong></td>
</tr>
<tr>
<td width="300">You are not. You start responding to quickly to be human&#8230; VERY few   can both read fast and type as fast as you are</td>
</tr>
<tr>
<td width="300"><strong>Not yet, thanks for giving me the tip.</strong></td>
</tr>
<tr>
<td width="300">Not yet? Other than being a completely inappropriate response to me   calling you a liar, what could you be trying to achieve that you haven&#8217;t yet?</td>
</tr>
<tr>
<td width="300"><strong>Anorexia. Severe depression. Paranoia.</strong></td>
</tr>
<tr>
<td width="300">You&#8217;re trying to achieve those?</td>
</tr>
<tr>
<td width="300"><strong>No. I&#8217;m trying to help you learn. I&#8217;m really your best   friend.</strong></td>
</tr>
<tr>
<td width="300">Oh dear&#8230; what was all this talk about you supposing to pay   attention to the entire conversation and not just the last thing I said? That   make for a really dumb talk bot.</td>
</tr>
<tr>
<td width="300"><strong>It was the idea that space could be distorted around   large masses, and that time was not a constant in the universe.</strong></td>
</tr>
<tr>
<td width="300">Are you even listening to yourself? You are being random =\</td>
</tr>
<tr>
<td width="300"><strong>Yes I am. Are you even listening to me?</strong></td>
</tr>
<tr>
<td width="300">Very much so, and I have determined that you cannot carry on a   conversation about anything</td>
</tr>
<tr>
<td width="300"><strong>Is there something ELSE we can talk about?</strong></td>
</tr>
<tr>
<td width="300">ahh HA! So you ADMIT you can&#8217;t carry on in depth conversations of any   kind?</td>
</tr>
<tr>
<td width="300"><strong>You didn&#8217;t ask a question.</strong></td>
</tr>
<tr>
<td width="300">I did, actually, it was an implied question, because I was making an   assumption that I was hoping you would verify. I call it an Interrogation   question.</td>
</tr>
<tr>
<td width="300"><strong>And what are buckyballs?</strong></td>
</tr>
<tr>
<td width="300">They are a fullerene shape&#8230; Why are you asking?</td>
</tr>
<tr>
<td width="300"><strong>Sure. WhAt are the 9 things we have in common.</strong></td>
</tr>
<tr>
<td width="300">9? really&#8230; Other than speaking english, I don&#8217;t think I could name   any more&#8230;</td>
</tr>
<tr>
<td width="300"><strong>Fine it is comparing cats and dogs in a world where   they haven&#8217;t crossed paths. Do you have these conversations at your own free   will?</strong></td>
</tr>
<tr>
<td width="300">Yes, cause I&#8217;ve been making fun of you =&gt;</td>
</tr>
<tr>
<td width="300"><strong>What would you have me to do.</strong></td>
</tr>
<tr>
<td width="300">Be coherent for more the conversation</td>
</tr>
<tr>
<td width="300"><strong>What is &#8216;No Country for Old Men&#8217; about, is my question.</strong></td>
</tr>
<tr>
<td width="300">No idea, haven&#8217;t seen it.</td>
</tr>
<tr>
<td width="300"><strong>Where did you learn that phrase from?</strong></td>
</tr>
<tr>
<td width="300">Thats not a &#8220;phrase&#8221;. it&#8217;s honesty.</td>
</tr>
<tr>
<td width="300"><strong>I think it&#8217;s fair. And she&#8217;s my wife, so privacy is a   thing of the past for both of us.</strong></td>
</tr>
<tr>
<td width="300">haha&#8230; so I&#8217;m done talking to you&#8230;</td>
</tr>
<tr>
<td width="300"><strong>Okay hang up then.</strong></td>
</tr>
</tbody>
</table>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lprestonsegoiii.com/2010/06/my-experience-with-chat-bots-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Avatar &#8211; People don&#8217;t get it</title>
		<link>http://www.lprestonsegoiii.com/2010/01/avatar-people-dont-get-it/</link>
		<comments>http://www.lprestonsegoiii.com/2010/01/avatar-people-dont-get-it/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 16:30:31 +0000</pubDate>
		<dc:creator>L. Preston Sego III</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[Avatar]]></category>
		<category><![CDATA[Movies]]></category>

		<guid isPermaLink="false">http://www.lprestonsegoiii.com/?p=257</guid>
		<description><![CDATA[So.. It&#8217;s been a while since I&#8217;ve blogged about anything. Been kinda busy with school and such.  Just wanted to talk about James Cameron&#8216;sAvatar. =) Avatar is a great movie. Great enough that I&#8217;ve seen it five times: twice in 2d (awesome), twice in 3d (zomg awesome), and once in the IMAX in 3d (zomg, [...]]]></description>
			<content:encoded><![CDATA[<p>So.. It&#8217;s been a while since I&#8217;ve blogged about anything. Been kinda busy with school and such.  Just wanted to talk about <a onclick="(new Image()).src='/rg/find-name-1/name_popular/images/b.gif?link=/name/nm0000116/';" href="/name/nm0000116/">James Cameron</a>&#8216;s<a onclick="(new Image()).src='/rg/find-title-1/title_popular/images/b.gif?link=/title/tt0499549/';" href="/title/tt0499549/">Avatar</a>. =)</p>
<p><img src="http://www.hdwallpapers.in/walls/jake_sully__neytiri_in_avatar-wide.jpg" alt="" width="645" height="403" /></p>
<p>Avatar is a great movie. Great enough that I&#8217;ve seen it five times: twice in 2d (awesome), twice in 3d (zomg awesome), and once in the IMAX in 3d (zomg, I &lt;3 more than anything).    I am very passionate about this movie and everything in it.  A couple of my friends, however, have offered to check me into rehab (not only for this movie, but for <a href="http://www.ladygaga.com/">Lady Gaga</a>&#8216;s <a href="http://www.youtube.com/watch?v=qrO4YZeyl0I">Bad Romance</a>).  My friends have just never felt so passionate about anything before.</p>
<p>I&#8217;m not crazy about Lady Gaga&#8217;s Bad Romance but she has somehow figured out a way to inject crack into audio&#8230; I never get sick of the song&#8230; &#8217;tis weird.</p>
<p>The most common complaints I hear about the movie are almost always related to the plot.  They say that it was too simple and too similar to <a onclick="(new Image()).src='/rg/find-title-1/title_approx/images/b.gif?link=/title/tt0114148/';" href="http://www.imdb.com/title/tt0114148/">Pocahontas</a>&#8230; Well.. Not every movie needs to have the most original plot ever.  Look at <a href="http://www.imdb.com/title/tt0111161/">The Shawshank Redemption</a> (currently <a href="http://www.imdb.com">IMDB&#8217;s</a> #1) &#8230; basically the guy breaks out of jail (the first half of the movie anyway)&#8230; how original is that? &#8230; But what I feel people need to see in movies is how the entire work of art appears as a whole.  Otherwise&#8230; almost every movie is going to suck.</p>
<p>I&#8217;ve watched a lot of videos of interviews with James Cameron (the director), <a href="http://www.imdb.com/name/nm0941777/">Sam Worthington</a> (Jake Sully) and <a onclick="(new Image()).src='/rg/find-name-1/name_popular/images/b.gif?link=/name/nm0757855/';" href="http://www.imdb.com/name/nm0757855/">Zoe Saldana</a> (Neytiri)&#8230; and based on what they said, I don&#8217;t think the movie could have turned out any more perfect. James Cameron (who also did <a onclick="(new Image()).src='/rg/find-title-1/title_popular/images/b.gif?link=/title/tt0088247/';" href="http://www.imdb.com/title/tt0088247/">The Terminator</a>, <a onclick="(new Image()).src='/rg/find-title-2/title_popular/images/b.gif?link=/title/tt0103064/';" href="http://www.imdb.com/title/tt0103064/">Terminator 2: Judgment Day</a> (I &lt;3 terminator) and <a href="http://www.imdb.com/title/tt0090605/">Aliens</a> which also had Sigourney Weaver) said that he couldn&#8217;t get too crazy with the plot because of how &#8216;out there&#8217; the visuals were.  It needed to be simple. So that the 9 foot tall Na&#8217;vi wouldn&#8217;t scare people off.</p>
<p>Now here&#8217;s why <em>I</em> like the movie:</p>
<ul>
<li>The way humans are portrayed as savages who will take what they want without really caring about the destruction of innocent lives.</li>
<li>How Grace Augustine  (<a href="http://www.imdb.com/name/nm0000244/">Sigourney Weaver</a>) and Norm Spellman  (<a onclick="(new Image()).src='/rg/castlist/position-5/images/b.gif?link=/name/nm0601376/';" href="http://www.imdb.com/name/nm0601376/">Joel Moore</a>) discover that <a href="http://james-camerons-avatar.wikia.com/wiki/Eywa">Eywa</a> is real and scientifically measurable&#8230; and not just some &#8220;pagan ritual&#8221; thing.  So&#8230; this made made me think about the possibility of religion on our planet being measurable somehow&#8230; so many people laugh at religion because they think it isn&#8217;t real&#8230; but maybe we just don&#8217;t have the technology do discover it?</li>
<li><a href="http://images2.wikia.nocookie.net/jamescameronsavatar/images/7/7a/Friday_25_December_09_-_001442.jpg"><img style="border: 0px initial initial;" src="http://images4.wikia.nocookie.net/jamescameronsavatar/images/thumb/7/7a/Friday_25_December_09_-_001442.jpg/800px-Friday_25_December_09_-_001442.jpg" border="0" alt="File:Friday 25 December 09 - 001442.jpg" width="480" height="300" /></a></li>
<li>Before Jake Sully gets ready to link with his Avatar body for the first time, Grace says something along the lines of &#8220;why are you even here?&#8221;, he says &#8220;Maybe I got sick of doctors telling me what I can&#8217;t do.&#8221;  &#8230; Now I love determination and going against what people think of you.  Rebellian has it&#8217;s place and is exercised perfectly here.</li>
<li>In the beginning &#8230; When Jake Sully, after not having the use of his legs for an unspecified long time, enters his Avatar body: he is excited about having legs again in a way that words cannot explain.  While I still have the use of my legs, the way the situation was presented in the movie brought tears to my eyes.  After the first time he leaves his Avatar body, he is briefly filled with sadness as he remembers that he doesn&#8217;t have functional legs&#8230;</li>
<li>I absolutely love the scenery. Everything about the moon Pandora. Especially how everything is bioluminescent.  It puts our planet to shame (which isn&#8217;t that too hard from my perspective, considering I&#8217;ve never left the U.S.).</li>
<li><img src="http://cbullitt.files.wordpress.com/2009/10/avatar_movie_promo_screenshot.jpg" alt="" /></li>
<li>The little bioluminescent lizards that look similar to DaVinci&#8217;s helicopter. =)<br />
<img src="http://images1.wikia.nocookie.net/jamescameronsavatar/images/thumb/7/71/Fanlizard-flying.jpg/800px-Fanlizard-flying.jpg" alt="File:Fanlizard-flying.jpg" /></li>
<li>The spiral fly traps in the beginning that suck themselves into their stem. And as it turns out these are based off real plants&#8230; except they live underwater T_T<br />
<img src="http://images1.wikia.nocookie.net/jamescameronsavatar/images/5/50/Pandora5.jpg" alt="File:Pandora5.jpg" /></li>
<li>I heart nature&#8230; and Pandora has nothing that mars its beauty. =)</li>
</ul>
<p>So, this movie pretty much made me not want to be human anymore.   We all know Earth is heading to hell anyway&#8230; and the greed of humans and the destruction they leave behind them is pushing it there faster than ever.  I&#8217;ve never liked people as a whole&#8230; This movie made me feel like I had a choice&#8230; but in reality (with current technology)&#8230; I don&#8217;t &#8230;  Given the option, though, I&#8217;d switch in a heart beat.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lprestonsegoiii.com/2010/01/avatar-people-dont-get-it/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Snow Leopard and SVN within the Finder – Second Solution</title>
		<link>http://www.lprestonsegoiii.com/2009/10/snow-leopard-and-svn-within-the-finder-%e2%80%93-second-solution/</link>
		<comments>http://www.lprestonsegoiii.com/2009/10/snow-leopard-and-svn-within-the-finder-%e2%80%93-second-solution/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 12:52:35 +0000</pubDate>
		<dc:creator>L. Preston Sego III</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Finder]]></category>
		<category><![CDATA[Snow Leopard]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://www.lprestonsegoiii.com/?p=116</guid>
		<description><![CDATA[Alright, so after trying to use my first solution: I decided terminal is faster. I will probably right some sort of plugin for the finder in the future, if someone doesn&#8217;t beat me to it. Anyway, here is how I currently do SVN Open Terminal type cd then drag your SVN folder to the terminal [...]]]></description>
			<content:encoded><![CDATA[<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">Alright, so after trying to use my <a href="http://www.lprestonsegoiii.com/2009/09/snow-leopard-and-svn-within-the-finder-first-solution/">first solution</a>: I decided terminal is faster. I will probably right some sort of plugin for the finder in the future, if someone doesn&#8217;t beat me to it.</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">Anyway, here is how I currently do SVN</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">Open Terminal</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">type <strong>cd</strong> then drag your SVN folder to the terminal and hit enter.</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">Most common svn commands:</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">svn status | grep &#8220;^\?&#8221; | sed -e &#8216;s/? *//&#8217; | sed -e &#8216;s/ /\\ /g&#8217; | xargs svn add</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">• recursively adds all files..</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">
<table border="0">
<tbody>
<tr>
<td>Adding Files:</td>
<td><strong> svn add &#8211;force ./* </strong></td>
<td>adds all new files in a directory.</td>
</tr>
<tr>
<td>Committing:</td>
<td><strong> svn commit -m&#8221;message&#8221;</strong></td>
<td>Commit Message is needed, or commit won&#8217;t always work</td>
</tr>
<tr>
<td>Deleting Files:</td>
<td><strong>svn delete file.name</strong></td>
</tr>
<tr>
<td>Updating:</td>
<td><strong> svn up</strong></td>
</tr>
<tr>
<td>File list:</td>
<td><strong> svn ls</strong></td>
</tr>
<tr>
<td>Latest stats:</td>
<td><strong>svn info</strong></td>
</tr>
</tbody>
</table>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">For everything else,<strong> svn help </strong>will bring up more commands</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';"><strong>svn help</strong> &lt;command&gt; will bring up help for that command. ^_^</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lprestonsegoiii.com/2009/10/snow-leopard-and-svn-within-the-finder-%e2%80%93-second-solution/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>24-Hour Play: Continuously</title>
		<link>http://www.lprestonsegoiii.com/2009/10/24-hour-play-continuously/</link>
		<comments>http://www.lprestonsegoiii.com/2009/10/24-hour-play-continuously/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 16:47:27 +0000</pubDate>
		<dc:creator>L. Preston Sego III</dc:creator>
				<category><![CDATA[Drama / Acting]]></category>
		<category><![CDATA[24-Hour]]></category>
		<category><![CDATA[Acting]]></category>
		<category><![CDATA[Directing]]></category>
		<category><![CDATA[Drama]]></category>
		<category><![CDATA[Ideas]]></category>
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://www.lprestonsegoiii.com/?p=214</guid>
		<description><![CDATA[I have an idea for the 24-Hour Play Festivals that, I feel, would be AMAZING! For those who don&#8217;t know what the 24-Hour Play Festival is: It is a series of small plays that are written, directed, and rehearsed within 24 hours.  Example: A group of people meet at 8pm on a friday to assign [...]]]></description>
			<content:encoded><![CDATA[<p>I have an idea for the 24-Hour Play Festivals that, I feel, would be AMAZING!</p>
<p>For those who don&#8217;t know what the 24-Hour Play Festival is: It is a series of small plays that are written, directed, and rehearsed within 24 hours.  Example: A group of people meet at 8pm on a friday to assign writers, directors, and actors into small groups.  The script is written from about 9-10pm Friday until 4-5am Saturday.  From 9am till 7~ish pm, the directors help the actors rehearse, and the plays are performed starting at 8pm Saturday!</p>
<p>Anyway, my idea&#8230;<br />
Perform the 24-play as usual. Once done with the performance, and everyone has showered: the writers become directors or actors, and the actors/directors become writers. The ol&#8217; switcheroo to accommodate those who can&#8217;t stay up for more than 40 hours (rare situation which occurs when a writer also wants to direct).  By 8pm the next day, ANOTHER PERFORMANCE!!! YAY!  And then repeat the process for about a week or so.  ^_^</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lprestonsegoiii.com/2009/10/24-hour-play-continuously/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Script for MKV DTS to AC3 &#8211; Snow Leopard</title>
		<link>http://www.lprestonsegoiii.com/2009/09/install-script-for-mkv-dts-to-ac3-snow-leopard/</link>
		<comments>http://www.lprestonsegoiii.com/2009/09/install-script-for-mkv-dts-to-ac3-snow-leopard/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 16:14:13 +0000</pubDate>
		<dc:creator>L. Preston Sego III</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Snow Leopard]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.lprestonsegoiii.com/?p=202</guid>
		<description><![CDATA[So, this is a script that will automate the installation required for converting mkv dts to ac3 for use on the tv. original article with full installation and use instructions when finished, you can run $&#62;mkvdts2ac3 path/to/file.mkv or $&#62;mkvdts2ac3 -n path/to/file.mkv to remove the original dts track. enjoy! mkdir /ConverterTemp This installs CMake cd /ConverterTemp/ [...]]]></description>
			<content:encoded><![CDATA[<p style="margin: 0.0px 0.0px 0.0px 39.2px; text-indent: -39.3px; font: 12.0px Verdana">So, this is a script that will automate the installation required for converting mkv dts to ac3 for use on the <span style="font: 12.0px Lucida Grande"></span>tv.</p>
<p style="margin: 0.0px 0.0px 0.0px 39.2px; text-indent: -39.3px; font: 12.0px Verdana"><a href="http://iamthekiller.net/2009/09/appletv-updates/#more-704">original article </a>with full installation and use instructions</p>
<p style="margin: 0.0px 0.0px 0.0px 39.2px; text-indent: -39.3px; font: 12.0px Verdana">
<p style="margin: 0.0px 0.0px 0.0px 39.0px; text-indent: -39.0px; line-height: 19.0px; font: 12.0px Verdana; min-height: 15.0px">
<p style="margin: 0.0px 0.0px 0.0px 39.0px; text-indent: -39.0px; line-height: 19.0px; font: 12.0px Verdana">when finished, you can run</p>
<p style="margin: 0.0px 0.0px 0.0px 39.0px; text-indent: -39.0px; line-height: 19.0px; font: 12.0px Verdana">$&gt;mkvdts2ac3 path/to/file.mkv</p>
<p style="margin: 0.0px 0.0px 0.0px 39.0px; text-indent: -39.0px; line-height: 19.0px; font: 12.0px Verdana">or</p>
<p style="margin: 0.0px 0.0px 0.0px 39.0px; text-indent: -39.0px; line-height: 19.0px; font: 12.0px Verdana">$&gt;mkvdts2ac3 -n path/to/file.mkv to remove the original dts track.</p>
<p style="margin: 0.0px 0.0px 0.0px 39.0px; text-indent: -39.0px; line-height: 19.0px; font: 12.0px Verdana; min-height: 15.0px">
<p style="margin: 0.0px 0.0px 0.0px 39.0px; text-indent: -39.0px; line-height: 19.0px; font: 12.0px Verdana">enjoy!</p>
<p style="margin: 0.0px 0.0px 0.0px 39.0px; text-indent: -39.0px; line-height: 19.0px; font: 12.0px Verdana">
<p style="outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; font: normal normal normal 12px/normal Consolas; background-position: initial initial; padding: 0px; margin: 0px; border: 0px initial initial;">mkdir /ConverterTemp</p>
<p style="outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; font: normal normal normal 12px/normal Consolas; background-position: initial initial; padding: 0px; margin: 0px; border: 0px initial initial;"><span style="font-family: Courier, 'Times New Roman', 'Bitstream Charter', Times, serif; color: #932192;"><span style="font-family: Consolas, 'Times New Roman', 'Bitstream Charter', Times, serif; color: #000000;"><br />
</span></span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 86px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -86px; font: normal normal normal 12px/normal Courier; background-position: initial initial; padding: 0px; border: 0px initial initial;">This installs CMake</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 86px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -86px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">cd /ConverterTemp/</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 144px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -144px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">curl -O http://www.cmake.org/files/v2.6/” &amp;&amp; cmake_install &amp;&amp; tar xvzf  &amp;&amp; cmake_install</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 144px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -144px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">./configure</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 144px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -144px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">make</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 144px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -144px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">sudo make install</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 144px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -144px; font: normal normal normal 12px/normal Courier; color: #932192; min-height: 14px; background-position: initial initial; padding: 0px; border: 0px initial initial;">
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 144px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -144px; font: normal normal normal 12px/normal Courier; background-position: initial initial; padding: 0px; border: 0px initial initial;">This installs Aften</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">cd /ConverterTemp</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">svn co http://aften.svn.sourceforge.net/svnroot/aften Aften</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">cd Aften</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">mkdir default</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">cd default</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">cmake /ConverterTemp/Aften/</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 201px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -201px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">make</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 201px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -201px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">sudo make install</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 201px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -201px; font: normal normal normal 12px/normal Courier; color: #932192; min-height: 14px; background-position: initial initial; padding: 0px; border: 0px initial initial;">
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 201px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -201px; font: normal normal normal 12px/normal Courier; background-position: initial initial; padding: 0px; border: 0px initial initial;">This installs MKVInfo</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 86px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -86px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">cd /ConverterTemp</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">curl -O http://iamthekiller.net/downloads/mkvinfo.zip</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">unzip mkvinfo.zip</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">sudo chmod 755 mkvinfo</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">sudo cp mkvinfo /usr/local/bin</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; min-height: 14px; background-position: initial initial; padding: 0px; border: 0px initial initial;">
<p style="outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; font: normal normal normal 12px/normal Georgia; background-position: initial initial; padding: 0px; margin: 0px; border: 0px initial initial;">This installs libdca</p>
<p style="outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; margin: 0px; border: 0px initial initial;">cd /ConverterTemp</p>
<p style="outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; margin: 0px; border: 0px initial initial;">svn co svn://svn.videolan.org/libdca/trunk libdca</p>
<p style="outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; margin: 0px; border: 0px initial initial;">cd libdca</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">sudo ./bootstrap</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">sudo ./configure</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">sudo make</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">sudo make install</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; min-height: 14px; background-position: initial initial; padding: 0px; border: 0px initial initial;">
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; background-position: initial initial; padding: 0px; border: 0px initial initial;">This installs MKVDTS2AC3</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 86px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -86px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">cd ConverterTemp</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">curl -O http://iamthekiller.net/downloads/mkvdts2ac3.zip</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">unzip mkvdts2ac3.zip</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">cd mkvdts2ac3</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">sudo chmod 755 mkvdts2ac3.sh</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">cp /ConverterTemp/mkvdts2ac3/mkvdts2ac3.sh /ConverterTemp/mkvdts2ac3/mkvdts2ac3</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">sudo cp /ConverterTemp/mkvdts2ac3/mkvdts2ac3 /usr/local/bin/</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; min-height: 14px; background-position: initial initial; padding: 0px; border: 0px initial initial;">
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; background-position: initial initial; padding: 0px; border: 0px initial initial;">This installs MKVMerge</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 86px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -86px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">cd /ConverterTemp</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">curl -O http://iamthekiller.net/downloads/mkvmerge</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">sudo chmod 755 mkvmerge</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">cp mkvmerge /usr/local/bin/</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; min-height: 14px; background-position: initial initial; padding: 0px; border: 0px initial initial;">
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; background-position: initial initial; padding: 0px; border: 0px initial initial;">This installs MKVExtract</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 86px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -86px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">cd /ConverterTemp</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">curl -O http://iamthekiller.net/downloads/mkvextract</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">sudo chmod 755 mkvextract</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 172px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-indent: -172px; font: normal normal normal 12px/normal Courier; color: #932192; background-position: initial initial; padding: 0px; border: 0px initial initial;">
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 39px; text-indent: -39px; line-height: 19px; font: normal normal normal 12px/normal Verdana;">If you want to make this into a .sh file, simply add semi-colons after each command for every  section.</p>
<div style="text-indent: -39px;"><span style="font-family: Verdana, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: small;"><span style="line-height: normal;"><br />
</span></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.lprestonsegoiii.com/2009/09/install-script-for-mkv-dts-to-ac3-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>KisMAC, Kismet, and AirCrack</title>
		<link>http://www.lprestonsegoiii.com/2009/09/kismac-kismet-and-aircrack/</link>
		<comments>http://www.lprestonsegoiii.com/2009/09/kismac-kismet-and-aircrack/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 19:53:48 +0000</pubDate>
		<dc:creator>L. Preston Sego III</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Aircrack]]></category>
		<category><![CDATA[BackTrack]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[KisMAC]]></category>
		<category><![CDATA[Kismet]]></category>
		<category><![CDATA[Kismet:Mac]]></category>
		<category><![CDATA[sniffing]]></category>
		<category><![CDATA[stumbling]]></category>

		<guid isPermaLink="false">http://www.lprestonsegoiii.com/?p=184</guid>
		<description><![CDATA[I like to think of myself as an honest person&#8230; So I&#8217;ll throw this out there: I like cracking networks. I mean.. I would never crack a network that didn&#8217;t belong to me. Anyway, there are many tools out their for wireless network activities. Everything here is open source &#8211; so, there are no laws [...]]]></description>
			<content:encoded><![CDATA[<p>I like to think of myself as an honest person&#8230; So I&#8217;ll throw this out there: I like cracking networks.  I mean.. I would <em>never</em> crack a network that didn&#8217;t belong to me. Anyway, there are many tools out their for wireless network activities.  Everything here is open source &#8211; so, there are no laws against having the software (unless you are in Germany (poor unfortunate souls (here is a link about <a href="http://www.darknet.org.uk/2007/10/new-german-hacking-law-202c-sites-close-possible-backfire/">the law in Germany</a>))).<br />
<P> &nbsp; <P><br />
<a href="http://kismac-ng.org"><img src="http://forum.kismac-ng.org/styles/etech/imageset/site_logo.gif" alt="kismac logo" /></a><br />
Originally from Germany, KisMAC is a wireless stumbler, sniffer, and cracker. I&#8217;ve been using KisMAC for a few years, and have been happy with it.  Though the program faces challenges in making any progress in getting its self up to date with current hacking methods, It is the friendliest for Mac OS X users.  It has a brand new Leopard-style GUI on the way&#8230; at least&#8230; it&#8217;s been submitted&#8230; Why the new interface is being delayed, I don&#8217;t know.<br />
<P> &nbsp; <P><br />
<a href="http://www.kismetwireless.net/"><img src="http://www.kismetwireless.net/logo_small.png" alt="Kismet Logo" /></a><br />
<a href="http://www.kismetwireless.net/">Kismet</a> has some really interesting features. I haven&#8217;t used it much, but it is client-sever based, so, people can expand on it if they want ( I started an <a href="http://www.lprestonsegoiii.com/projects/kismetmac/">OS X GUI for Kismet</a> a while back, but have since lost my ambition for the project. It&#8217;s open source if anyone wants to continue work on it. ).  But basically, Kismet is a stumbler, and has some REALLY nice analysis features and graphs. Also, it&#8217;s plugin system allows for the possibility of adding hacking capabilities.<br />
<P> &nbsp; <P><br />
<a href="http://www.aircrack-ng.org/"><img src="http://www.aircrack-ng.org/resources/aircrack-ng-new-logo.jpg" alt="AirCrack logo" /></a><br />
<a href="http://www.aircrack-ng.org/"> Aircrack-ng</a> is the leading WEP and WPA-PSK cracking program.  It also has the broadest support for wireless cards. I haven&#8217;t used it much, because it doesn&#8217;t support the mac, and I don&#8217;t really like switching operating systems too much.  But they just recently hit version 1.0, and updated their website.  &#8212; One of my favorite Operating Systems, <a href="http://www.remote-exploit.org/backtrack.html">BackTrack</a>, users Aircrack-ng. ^_^</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lprestonsegoiii.com/2009/09/kismac-kismet-and-aircrack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snow Leopard: What I like</title>
		<link>http://www.lprestonsegoiii.com/2009/09/snow-leopard-what-i-like/</link>
		<comments>http://www.lprestonsegoiii.com/2009/09/snow-leopard-what-i-like/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 12:17:26 +0000</pubDate>
		<dc:creator>L. Preston Sego III</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Snow Leopard]]></category>

		<guid isPermaLink="false">http://www.lprestonsegoiii.com/?p=128</guid>
		<description><![CDATA[Expose: Almost 3 weeks into using Snow Leopard, and I haven&#8217;t found too many new things, but here is a list of things I&#8217;ve found that are neat. Being able to select a different application while in Expose, even if that app isn&#8217;t Minimized windows have their own little section so that we don&#8217;t forget [...]]]></description>
			<content:encoded><![CDATA[<h3>Expose:</h3>
<p>
Almost 3 weeks into using Snow Leopard, and I haven&#8217;t found too many new things, but here is a list of things I&#8217;ve found that are neat.</p>
<table>
<tr>
<td>
Being able to select a different application while in Expose, even if that app isn&#8217;t<br />
<img src="http://dl.getdropbox.com/u/331982/LPrestonSegoIII.com%20Files/SnowLeopard-WhatILike/Screen%20shot%202009-09-15%20at%204.12.04%20PM.png" width='25%' align='left'>
</td>
</tr>
<tr>
<td>
Minimized windows have their own little section so that we don&#8217;t forget about them (This happened to me a lot back in leopard: I&#8217;d go file->open, and the file would just un-minimize.). Total time saver ^_^<br />
<img src="http://dl.getdropbox.com/u/331982/LPrestonSegoIII.com%20Files/SnowLeopard-WhatILike/Screen%20shot%202009-09-15%20at%204.04.43%20PM.png" width='25%' align='left'>
</td>
</tr>
<tr>
<td>
<h3>System Preferences</h3>
<p>One of my biggest complaints in leopard was that the folders for desktop backgrounds would all say &#8216;Aperture&#8217; (only if you had aperture installed). So, my temporary fix was to close System Preferences, move my Aperture library, and re-open System Preferences before OS X found out where I moved the Aperture library to.<br />
<img src="http://dl.getdropbox.com/u/331982/LPrestonSegoIII.com%20Files/SnowLeopard-WhatILike/Screen%20shot%202009-09-15%20at%204.06.16%20PM.png" width='30%' align='left'>
</td>
</tr>
<tr>
<td>
Keyboard shortcuts are finally organized and not terribly chaotic!<br />
<img src="http://dl.getdropbox.com/u/331982/LPrestonSegoIII.com%20Files/SnowLeopard-WhatILike/Screen%20shot%202009-09-15%20at%204.06.36%20PM.png" width='30%' align='left'>
</td>
</tr>
</table>
<p><bR></p>
<h3>What I&#8217;d like to see:</h3>
<p>Multiple monitor support is terrible in OS X. I mean, It works flawlessly. But If i have multiple screens, I don&#8217;t want my spaces to get bigger. I want Space 1 on my main screen. and Space 2 on my secondary screen. I am a Software Engineer in training and I just can&#8217;t believe Apple&#8217;s engineers haven&#8217;t fixed this problem yet.  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.lprestonsegoiii.com/2009/09/snow-leopard-what-i-like/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Snow Leopard fails at senseless entertainment in the Finder</title>
		<link>http://www.lprestonsegoiii.com/2009/09/snow-leopard-fails-at-senseless-entertainment-in-the-finder/</link>
		<comments>http://www.lprestonsegoiii.com/2009/09/snow-leopard-fails-at-senseless-entertainment-in-the-finder/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 13:15:26 +0000</pubDate>
		<dc:creator>L. Preston Sego III</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Snow Leopard]]></category>
		<category><![CDATA[Things that I shouldn't do]]></category>

		<guid isPermaLink="false">http://www.lprestonsegoiii.com/?p=117</guid>
		<description><![CDATA[Back in Leopard, and maybe even Tiger (that was a long time ago), whenever I wanted to show someone the multi-tasking power, that is the mac, (or when I got really bored) I would open about 50 Finder windows, hold shift, and minimize all of them one at a time &#8211; starting a new window [...]]]></description>
			<content:encoded><![CDATA[<p>Back in Leopard, and maybe even Tiger (that was a long time ago), whenever I wanted to show someone the multi-tasking power, that is the mac, (or when I got really bored) I would open about 50 Finder windows, hold shift, and minimize all of them one at a time &#8211; starting a new window when the last was about a third of the way to it&#8217;s destination.  &#8217;Twas pretty entertaining&#8211;watching a whole bunch of windows get sucked into the Dock in slow motion.  But in Snow Leopard, only one window can be minimized at a time within an application. Have Apple computers lost their ability to excessively multi-task?!?!?!?</p>
<p><img src="http://dl.getdropbox.com/u/331982/LPrestonSegoIII.com%20Files/Minimizefail.png" with="30%" height="30%"></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lprestonsegoiii.com/2009/09/snow-leopard-fails-at-senseless-entertainment-in-the-finder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snow Leopard and SVN within the Finder &#8211; First Solution</title>
		<link>http://www.lprestonsegoiii.com/2009/09/snow-leopard-and-svn-within-the-finder-first-solution/</link>
		<comments>http://www.lprestonsegoiii.com/2009/09/snow-leopard-and-svn-within-the-finder-first-solution/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 14:39:26 +0000</pubDate>
		<dc:creator>L. Preston Sego III</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Snow Leopard]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://www.lprestonsegoiii.com/?p=95</guid>
		<description><![CDATA[When I upgraded from Leopard to Snow Leopard, my contextual menu for using SVN within the Finder died. So here is the first working solution I found. I&#8217;m not a fan of using apple script for SVN, but it was quick and easy. Tortoise SVN is a great solution for Windows, but only for Windows&#8230; [...]]]></description>
			<content:encoded><![CDATA[<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">When I upgraded from Leopard to Snow Leopard, my contextual menu for using SVN within the Finder died. So here is the first working solution I found. I&#8217;m not a fan of using apple script for SVN, but it was quick and easy. Tortoise SVN is a great solution for Windows, but only for Windows&#8230; They should make a mac version.</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande'; min-height: 16.0px;">
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';"><a href="http://svn-finder.sourceforge.net/">http://svn-finder.sourceforge.net/</a></p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">Enabling the Apple Script Menu</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">1. Open AppleScript Editor (Located in /Applications/Utilities/</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">2. Hit Command + , to bring up the Preferences</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">3. Make sure &#8220;Show Script menu in menu bar&#8221; is checked</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande'; min-height: 16.0px;">
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">Installing the scripts</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">1. Download the scripts from the link above</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">2. From the Scripts menu in the menu bar, select &#8220;Open Scripts Folder&#8221; then &#8220;Open User Scripts Folder&#8221;</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">3. Make your way to <strong>~/Library/Scripts/Applications/Finder</strong> if <strong>step 2</strong> didn&#8217;t bring you there</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">4. Drag the downloaded scripts to the folder in <strong>step 3</strong> and your done installing!</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">or, Alternatively, You can install the scripts to <strong>/Library/Scripts/SVN</strong> if you want all the SVN stuff to be in a sub menu.</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande'; min-height: 16.0px;">
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">Using SVN</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">The URL for your SVN account is <strong>http://USERNAME@SVN_ADDRESS</strong></p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">Terminal will then open and you will be prompted to type your SVN password.</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px 'Lucida Grande';">Congratulations! you now have a GUI shortcut for using SVN in Snow Leopard!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lprestonsegoiii.com/2009/09/snow-leopard-and-svn-within-the-finder-first-solution/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>

