<?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>dmacias . org &#187; Linux</title>
	<atom:link href="http://dmacias.org/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://dmacias.org</link>
	<description>Not quite crazy not quite sane.</description>
	<lastBuildDate>Thu, 02 Feb 2012 01:25:50 +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>Playing around with Twitter API using Tweepy</title>
		<link>http://dmacias.org/2010/12/31/playing-around-with-twitter-api-using-tweepy/</link>
		<comments>http://dmacias.org/2010/12/31/playing-around-with-twitter-api-using-tweepy/#comments</comments>
		<pubDate>Fri, 31 Dec 2010 07:19:39 +0000</pubDate>
		<dc:creator>dmacias</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tweepy]]></category>
		<category><![CDATA[Twitter API]]></category>

		<guid isPermaLink="false">http://dmacias.org/2010/12/31/playing-around-with-twitter-api-using-tweepy/</guid>
		<description><![CDATA[Yes, this is the kind of stuff I find myself doing when I’m bored.&#160; Just a quick tutorial on using the Twitter python library called Tweepy.&#160; Examples include authentication, print your statuses, and print your mentions. First, you need to authenticate using OAuth as simple authentication has been disabled by Twitter.&#160; I will not repeat [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, this is the kind of stuff I find myself doing when I’m bored.&#160; Just a quick tutorial on using the Twitter python library called Tweepy.&#160; Examples include authentication, print your statuses, and print your mentions.</p>
<p>First, you need to authenticate using OAuth as simple authentication has been disabled by Twitter.&#160; I will not repeat what has already been done, <a href="http://jeffmiller.github.com/2010/05/31/twitter-from-the-command-line-in-python-using-oauth">so this is the best way to do it</a>.&#160; If you have no problems with that example, then at the end you will have a simple python script which allows you to update your status via the command line.&#160; However, the most important piece is the authentication:</p>
<div class="csharpcode">
<pre class="alt"><span class="lnum">   1:  </span>#!/usr/bin/env python</pre>
<pre><span class="lnum">   2:  </span>&#160;</pre>
<pre class="alt"><span class="lnum">   3:  </span>import sys</pre>
<pre><span class="lnum">   4:  </span>import tweepy</pre>
<pre class="alt"><span class="lnum">   5:  </span>&#160;</pre>
<pre><span class="lnum">   6:  </span>CONSUMER_KEY = <span class="str">'Your stuff'</span></pre>
<pre class="alt"><span class="lnum">   7:  </span>CONSUMER_SECRET = <span class="str">'Your stuff'</span></pre>
<pre><span class="lnum">   8:  </span>ACCESS_KEY = <span class="str">'Your stuff'</span></pre>
<pre class="alt"><span class="lnum">   9:  </span>ACCESS_SECRET = <span class="str">'Your stuff'</span></pre>
<pre><span class="lnum">  10:  </span>&#160;</pre>
<pre class="alt"><span class="lnum">  11:  </span>auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)</pre>
<pre><span class="lnum">  12:  </span>auth.set_access_token(ACCESS_KEY, ACCESS_SECRET)</pre>
<pre class="alt"><span class="lnum">  13:  </span>api = tweepy.API(auth)</pre>
</div>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>This will allow you to authenticate against Twitter and be able to work with the API.&#160; Now you can add to your python script the code below.</p>
<p>How about printing your status updates?</p>
<div class="csharpcode">
<pre class="alt"><span class="lnum">   1:  </span>statuses = tweepy.Cursor(api.user_timeline).items()</pre>
<pre><span class="lnum">   2:  </span>&#160;</pre>
<pre class="alt"><span class="lnum">   3:  </span><span class="kwrd">for</span> status <span class="kwrd">in</span> statuses:</pre>
<pre><span class="lnum">   4:  </span>        print <span class="str">&quot; &quot;</span></pre>
<pre class="alt"><span class="lnum">   5:  </span>        print status.text</pre>
</div>
<p>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
</p>
<p>How about printing your mentions?</p>
<div class="csharpcode">
<pre class="alt"><span class="lnum">   1:  </span>mymentions= tweepy.Cursor(api.mentions).items()</pre>
<pre><span class="lnum">   2:  </span>&#160;</pre>
<pre class="alt"><span class="lnum">   3:  </span><span class="kwrd">for</span> status <span class="kwrd">in</span> mymentions:</pre>
<pre><span class="lnum">   4:  </span>        print <span class="str">&quot; &quot;</span></pre>
<pre class="alt"><span class="lnum">   5:  </span>        print status.text</pre>
</div>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>&#160;</p>
<p>The <a href="http://joshthecoder.github.com/tweepy/docs/api.html?highlight=page">Tweepy API reference</a> has a ton of great information.&#160; As well as the <a href="http://apiwiki.twitter.com/w/page/22554679/Twitter-API-Documentation">Twitter API wiki</a>.</p>
<p>~david</p>
]]></content:encoded>
			<wfw:commentRss>http://dmacias.org/2010/12/31/playing-around-with-twitter-api-using-tweepy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rolled My Ankle</title>
		<link>http://dmacias.org/2008/11/22/rolled-my-ankle/</link>
		<comments>http://dmacias.org/2008/11/22/rolled-my-ankle/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 04:40:10 +0000</pubDate>
		<dc:creator>dmacias</dc:creator>
				<category><![CDATA[General News]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[injury]]></category>

		<guid isPermaLink="false">http://dmacias.org/?p=307</guid>
		<description><![CDATA[:( ~david]]></description>
			<content:encoded><![CDATA[<p>:(</p>
<p><img src="http://dmacias.org/wp-content/uploads/2008/11/image_054.jpg" alt="" title="image_054" width="500" height="666" class="aligncenter size-full wp-image-308" /></p>
<p>~david</p>
]]></content:encoded>
			<wfw:commentRss>http://dmacias.org/2008/11/22/rolled-my-ankle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving away from PHP 4 to PHP 5</title>
		<link>http://dmacias.org/2008/08/06/moving-away-from-php-4-to-php-5/</link>
		<comments>http://dmacias.org/2008/08/06/moving-away-from-php-4-to-php-5/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 12:38:05 +0000</pubDate>
		<dc:creator>dmacias</dc:creator>
				<category><![CDATA[General News]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[1and1.com]]></category>
		<category><![CDATA[php4]]></category>
		<category><![CDATA[php5]]></category>

		<guid isPermaLink="false">http://dmacias.org/?p=249</guid>
		<description><![CDATA[So, by default the good folks at 1and1 give you support for php 3-5, however 4 is the default. So, recently one of the plugins I use in my site upgraded to php 5 which forced me to continue using an older version. However, since I&#8217;m always a big sponsor of upgrade to the latest [...]]]></description>
			<content:encoded><![CDATA[<p>So, by default the good folks at 1and1 give you support for php 3-5, however 4 is the default.  So, recently one of the <a href="http://jeroensmeets.net/lastfmrecords/">plugins</a> I use in my site upgraded to php 5 which forced me to continue using an older version.  However, since I&#8217;m always a big sponsor of upgrade to the latest and greatest especially when it comes to software, I decided it was time to make the move.  Doing a little bit of google work, I ran into 1and1&#8242;s official FAQ on how to do this, which is found <a href="http://faq.1and1.com/scripting_languages_supported/php/9.html">here</a>.  However, that was not the first link which showed up in google.  This <a href="http://www.thecodecave.com/article206">guy</a> had a pretty good write up and discussion about this change and 1and1 in general.  Thanks to that .htaccess change I&#8217;m now humming along with php 5.</p>
<p>cheers,</p>
<p>david</p>
<p>08/11/2008 edit:  Funny, a day after I posted this PHP 4 support ended with the <a href="http://www.php.net/archive/2008.php#id2008-08-07-1">last release of the 4.4 branch</a>.  Perfect timing!</p>
]]></content:encoded>
			<wfw:commentRss>http://dmacias.org/2008/08/06/moving-away-from-php-4-to-php-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sun buys MySQL</title>
		<link>http://dmacias.org/2008/01/16/sun-buys-mysql/</link>
		<comments>http://dmacias.org/2008/01/16/sun-buys-mysql/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 14:44:33 +0000</pubDate>
		<dc:creator>dmacias</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[buy]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[sun]]></category>

		<guid isPermaLink="false">http://dmacias.org/2008/01/16/sun-buys-mysql/</guid>
		<description><![CDATA[Well, this pretty much sums it up. Sun Microsystems has just purchased MySQL which is interesting considering how much Sun has pushed for PostgreSQL the past. Oh well, we shall see how it goes, MySQL has some issues which need to be addressed and hopefully this move helps MySQL more than helps Sun. ~david PS: [...]]]></description>
			<content:encoded><![CDATA[<p>Well, <a href="http://blogs.mysql.com/kaj/2008/01/16/sun-acquires-mysql/">this</a> pretty much sums it up.  Sun Microsystems has just purchased MySQL which is interesting considering how much Sun has pushed for <a href="http://www.postgresql.org/">PostgreSQL</a> the past. Oh well, we shall see how it goes, MySQL has some issues which need to be addressed and hopefully this move helps MySQL more than helps Sun.</p>
<p>~david</p>
<p>PS: I love how the announcements has certain phrases in bold, I guess they are supposed to stand out:</p>
<p><strong>it may take some time to digest what this means</strong><br />
<strong>This deal is about addition, not subtraction.</strong><br />
<strong>don’t</strong><br />
<strong>MySQL grew with LAMP and MySQL without LAMP at its core is simply unimaginable.</strong><br />
<strong>Sun is a safe haven for MySQL. Sun knows Open Source</strong><br />
<strong>add</strong><br />
<strong>together</strong><br />
<strong>our founders, Michael “Monty” Widenius and David Axmark</strong><br />
<strong>I can see their heritage being in good hands at Sun.</strong><br />
<strong>are</strong><br />
<strong>I cannot imagine a more ideal buyer from a founder perspective than Sun Microsystems.</strong><br />
<strong>congratulations, MySQL users, community members, customers, partners and employees</strong></p>
<p>I feel all warm and fuzzy inside.</p>
]]></content:encoded>
			<wfw:commentRss>http://dmacias.org/2008/01/16/sun-buys-mysql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FreePBX and a Cisco 7940 Phone</title>
		<link>http://dmacias.org/2006/05/24/freepbx-and-a-cisco-7940-phone/</link>
		<comments>http://dmacias.org/2006/05/24/freepbx-and-a-cisco-7940-phone/#comments</comments>
		<pubDate>Wed, 24 May 2006 09:46:00 +0000</pubDate>
		<dc:creator>dmacias</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://dmacias.org/?p=126</guid>
		<description><![CDATA[So, it has been months since I posted something technical on my website.  For the most part it has been music stuff as well as general updates on the overall infrastructure of the site.  However, for the past month or so I've been working on getting a Cisco SIP phone working with FreePBX.  However, the problem was that I was not able to receive inbound calls.  

This was the not so descriptive error:
<pre><code>    -- Called 2000 
; my sip extension
    -- Got SIP response 400 "Bad Request" back from 192.168.1.102 
; sip reply
    -- SIP/2000-7b88 is circuit-busy 
; this cause the call to go straight to VM</code></pre>

Looking at the logs and googling for weeks on the problem, it was possible that the problem was the following:

<pre><code>    -- Executing NoOp("Zap/1-1", "Using CallerID 
""LastName FirstName   "" &#60;11234567890&#62;") in new stack</code></pre>

Please note the double quotes around my name.]]></description>
			<content:encoded><![CDATA[<p>So, it has been months since I posted something technical on my website.  For the most part it has been music stuff as well as general updates on the overall infrastructure of the site.  However, for the past month or so I&#8217;ve been working on getting a Cisco SIP phone working with FreePBX.  However, the problem was that I was not able to receive inbound calls.  </p>
<p>This was the not so descriptive error:</p>
<pre><code>    -- Called 2000
; my sip extension
    -- Got SIP response 400 "Bad Request" back from 192.168.1.102
; sip reply
    -- SIP/2000-7b88 is circuit-busy
; this cause the call to go straight to VM</code></pre>
<p>Looking at the logs and googling for weeks on the problem, it was possible that the problem was the following:</p>
<pre><code>    -- Executing NoOp("Zap/1-1", "Using CallerID
""LastName FirstName   "" &lt;11234567890&gt;") in new stack</code></pre>
<p>Please note the double quotes around my name.Now, after talking to X-Rob on the #freepbx channel, he pointed me to the extensions.conf file where the CallerID seems to be handled or generated.</p>
<p>I looked at the last commit X-Rob made and compared it to the previous one:</p>
<p>Revision 1891:</p>
<pre><code>exten =&gt; s,n,GotoIf(&#36;&#91;"&#36;{AMPUSERCIDNAME:1:2}" = ""&#93;?report)
exten =&gt; s,n,Set(CALLERID(all)="&#36;{AMPUSERCIDNAME}" &lt;&#36;{AMPUSER}&gt;)</code></pre>
<p>Revision 1900:</p>
<pre><code>exten =&gt; s,n,GotoIf(&#36;&#91;"x&#36;{AMPUSERCIDNAME:1:2}" = "x"&#93;?report)
exten =&gt; s,n,Set(CALLERID(all)=&#36;{AMPUSERCIDNAME} &lt;&#36;{AMPUSER}&gt;)</code></pre>
<p>However, this latest change still did not eliminate the double quotes from the CallerID.</p>
<p>So, I removed the quotes around the variable x and inbound calls finally worked!  Looking at the logs however I do get an unknown name for the CallerID field, but at this point I don&#8217;t really care.  I will try to work on the code and see if I can figure out the &#8220;correct&#8221; way to fix this issue, but for now I&#8217;m just happy I&#8217;m able to receive inbound calls.</p>
<p>Here is what the logs show with the &#8220;&#8221; removed from around the x:</p>
<pre><code>    -- Called 2000
; my sip ext againg
    -- SIP/2000-0e25 is ringing
; my phone ringing
    -- SIP/2000-0e25 answered Zap/1-1
; me answering the phone
</code></pre>
<p><BR><br />
Cheers</p>
]]></content:encoded>
			<wfw:commentRss>http://dmacias.org/2006/05/24/freepbx-and-a-cisco-7940-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora Core 4 and Enlightenment E17</title>
		<link>http://dmacias.org/2005/11/28/fedora-core-4-and-enlightenment-e17/</link>
		<comments>http://dmacias.org/2005/11/28/fedora-core-4-and-enlightenment-e17/#comments</comments>
		<pubDate>Tue, 29 Nov 2005 03:03:00 +0000</pubDate>
		<dc:creator>dmacias</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://dmacias.org/?p=114</guid>
		<description><![CDATA[It has been a while since I messed with a Windows Manager and I have not ran Enlightenment in ages.  So I figured I would give E17 a spin, this is what I did in order to get it up and running.]]></description>
			<content:encoded><![CDATA[<p>It has been a while since I messed with a Windows Manager and I have not ran Enlightenment in ages.  So I figured I would give E17 a spin, this is what I did in order to get it up and running.First, make sure you&#8217;ve got an update yum file with some of the latest FC4 software.  You can get one from <a href="http://www.fedorafaq.org/">here</a> or <a href="http://www.brandonhutchinson.com/Upgrading_Red_Hat_Linux_with_yum.html">here</a>.</p>
<p>Next, ensure that you have a repository for Enlightnenment you can find some <a href="http://sps.nus.edu.sg/~didierbe/index.html">here</a>.</p>
<p>Now, this might be a little tricky, but this is what I had to do.</p>
<p>I had a very basic install of FC4 with no KDE or Gnome.  Next, I did a</p>
<pre><code>yum install imlib2.i386</code></pre>
<pre><code>yum install eterm</code></pre>
<pre><code>yum install enlightenment</code></pre>
<p>After, all has been installed do a </p>
<pre><code>switchdesk enlightenment</code></pre>
<p>log out and log back in and you&#8217;re good to go.</p>
<p>~david macias</p>
]]></content:encoded>
			<wfw:commentRss>http://dmacias.org/2005/11/28/fedora-core-4-and-enlightenment-e17/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using VI to search for specific patterns</title>
		<link>http://dmacias.org/2005/04/17/using-vi-to-search-for-specific-patterns/</link>
		<comments>http://dmacias.org/2005/04/17/using-vi-to-search-for-specific-patterns/#comments</comments>
		<pubDate>Sun, 17 Apr 2005 05:53:00 +0000</pubDate>
		<dc:creator>dmacias</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://dmacias.org/?p=95</guid>
		<description><![CDATA[So this is a short little something I was working on tonight.  Yes tonight as in a saturday night.  I am a workaholic.<br /><br />Anyway, if you would like to search for the following pattern using VI or if you would like to use syntax highlighting using your own vim file.<br /><br />Patter: ##/##/##@##:##:##<br /><br />Search command:<br /><br />:/[0-9]./[0-9].{3}.@[0-9].:[0-9].:[0-9]<br /><br />or the much cooler one<br /><br />:/d./d./d.@d.:d.:d<br /><br />For all your wildcard needs, remember to refer back to the awesome VI doc site <a href="http://vimdoc.sourceforge.net/htmldoc/usr_27.html">here</a>.  Enjoy.<br /><br />~david macias]]></description>
			<content:encoded><![CDATA[<p>So this is a short little something I was working on tonight.  Yes tonight as in a saturday night.  I am a workaholic.</p>
<p>Anyway, if you would like to search for the following pattern using VI or if you would like to use syntax highlighting using your own vim file.</p>
<p>Patter: ##/##/##@##:##:##</p>
<p>Search command:</p>
<p>:/[0-9]./[0-9].{3}.@[0-9].:[0-9].:[0-9]</p>
<p>or the much cooler one</p>
<p>:/d./d./d.@d.:d.:d</p>
<p>For all your wildcard needs, remember to refer back to the awesome VI doc site <a href="http://vimdoc.sourceforge.net/htmldoc/usr_27.html">here</a>.  Enjoy.</p>
<p>~david macias</p>
]]></content:encoded>
			<wfw:commentRss>http://dmacias.org/2005/04/17/using-vi-to-search-for-specific-patterns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finally got subversion working!</title>
		<link>http://dmacias.org/2004/08/01/finally-got-subversion-working/</link>
		<comments>http://dmacias.org/2004/08/01/finally-got-subversion-working/#comments</comments>
		<pubDate>Mon, 02 Aug 2004 02:19:40 +0000</pubDate>
		<dc:creator>dmacias</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://dmacias.org/?p=72</guid>
		<description><![CDATA[I took some hacking away at this but finally I can check out my projects as well as commit any changes made!  This should make development a whole lot simpler!

~david macias

[dmacias@dmlinux project]$ svn --version
svn, version 1.0.6 (r10360)
   compiled Jul 31 2004, 10:49:38

Copyright (C) 2000-2004 CollabNet.
Subversion is open source software, see http://subversion.tigris.org/
This product includes software developed by CollabNet (http://www.Collab.Net/).

The following repository access (RA) modules are available:

* ra_dav : Module for accessing a repository via WebDAV (DeltaV) protocol.
  - handles 'http' schema
* ra_local : Module for accessing a repository on local disk.
  - handles 'file' schema
* ra_svn : Module for accessing a repository using the svn network protocol.
  - handles 'svn' schema
]]></description>
			<content:encoded><![CDATA[<p>I took some hacking away at this but finally I can check out my projects as well as commit any changes made!  This should make development a whole lot simpler!</p>
<p>~david macias</p>
<p>[dmacias@dmlinux project]$ svn &#8211;version<br />
svn, version 1.0.6 (r10360)<br />
   compiled Jul 31 2004, 10:49:38</p>
<p>Copyright (C) 2000-2004 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_dav : Module for accessing a repository via WebDAV (DeltaV) protocol.<br />
  &#8211; handles &#8216;http&#8217; schema<br />
* ra_local : Module for accessing a repository on local disk.<br />
  &#8211; handles &#8216;file&#8217; schema<br />
* ra_svn : Module for accessing a repository using the svn network protocol.<br />
  &#8211; handles &#8216;svn&#8217; schema</p>
]]></content:encoded>
			<wfw:commentRss>http://dmacias.org/2004/08/01/finally-got-subversion-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MandrakeSoft out of Chapter 11 Protection</title>
		<link>http://dmacias.org/2004/03/30/mandrakesoft-out-of-chapter-11-protection/</link>
		<comments>http://dmacias.org/2004/03/30/mandrakesoft-out-of-chapter-11-protection/#comments</comments>
		<pubDate>Tue, 30 Mar 2004 19:21:00 +0000</pubDate>
		<dc:creator>dmacias</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://dmacias.org/?p=43</guid>
		<description><![CDATA[Just saw on /., that Mandrake is out of their Chapter 11 like protection which they filed some months back.  Good to hear for my favorite linux distribution.  I have some reservations over the new Mandrake, however I will not pass any judgement until I get the official release from the MandrakeSoft store.

Support your linux companies, time is not free and their efforts are definetly appreciated.

<img width="284" height="56" src="http://www.dmacias.org/images/articles/20040330152156867_1.png" alt="">

~david macias]]></description>
			<content:encoded><![CDATA[<p>Just saw on /., that Mandrake is out of their Chapter 11 like protection which they filed some months back.  Good to hear for my favorite linux distribution.  I have some reservations over the new Mandrake, however I will not pass any judgement until I get the official release from the MandrakeSoft store.</p>
<p>Support your linux companies, time is not free and their efforts are definetly appreciated.</p>
<p><img width="284" height="56" src="http://www.dmacias.org/images/articles/20040330152156867_1.png" alt=""></p>
<p>~david macias</p>
]]></content:encoded>
			<wfw:commentRss>http://dmacias.org/2004/03/30/mandrakesoft-out-of-chapter-11-protection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To hell and back!</title>
		<link>http://dmacias.org/2004/02/09/to-hell-and-back/</link>
		<comments>http://dmacias.org/2004/02/09/to-hell-and-back/#comments</comments>
		<pubDate>Mon, 09 Feb 2004 20:18:00 +0000</pubDate>
		<dc:creator>dmacias</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://dmacias.org/?p=32</guid>
		<description><![CDATA[<pre><code>#./configure --enable-death --with-death-rope#make clean#make install</code></pre>]]></description>
			<content:encoded><![CDATA[<pre><code>
#./configure --enable-death --with-death-rope
#make clean
#make install
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://dmacias.org/2004/02/09/to-hell-and-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

