<?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>cstropz.net</title>
	<atom:link href="http://cstropz.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://cstropz.net</link>
	<description>Software Consultancy, Engineering and Utilities</description>
	<lastBuildDate>Tue, 21 Feb 2012 20:23:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Verify Which Components in Padrino Project</title>
		<link>http://cstropz.net/2012/02/21/verify-which-components-in-padrino-project/</link>
		<comments>http://cstropz.net/2012/02/21/verify-which-components-in-padrino-project/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 20:23:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://cstropz.net/?p=961</guid>
		<description><![CDATA[What components were chosen by the person who created some padrino project? Go (cd command) to its root path and then: $ cat .components --- :orm: datamapper :test: rspec :mock: mocha :script: jquery :renderer: slim :stylesheet: scss For ORM datamapper &#8230; <a href="http://cstropz.net/2012/02/21/verify-which-components-in-padrino-project/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://cstropz.net/2012/02/21/verify-which-components-in-padrino-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Git Archive Analogous to an Export</title>
		<link>http://cstropz.net/2012/02/21/git-archive-analogous-to-an-export/</link>
		<comments>http://cstropz.net/2012/02/21/git-archive-analogous-to-an-export/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 17:53:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[version control]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://cstropz.net/?p=956</guid>
		<description><![CDATA[To export the HEAD of your current branch (the one with an asterisk before it, on &#8216;git branch&#8217; command&#8217;s output) in your git repository, do the following: git archive HEAD &#124; &#40;cd ~/somedir_where_to_put_it/ &#38;&#38; tar -xvf -&#41; Provided that ~/somedir_where_to_put_it &#8230; <a href="http://cstropz.net/2012/02/21/git-archive-analogous-to-an-export/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://cstropz.net/2012/02/21/git-archive-analogous-to-an-export/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript Object References</title>
		<link>http://cstropz.net/2012/02/18/javascript-object-references/</link>
		<comments>http://cstropz.net/2012/02/18/javascript-object-references/#comments</comments>
		<pubDate>Sat, 18 Feb 2012 14:52:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://cstropz.net/?p=954</guid>
		<description><![CDATA[Objects are always referenced in JavaScript. When you put such a reference as the right value of an assignment expression, what is assigned to the left value element is this reference. An object is never referenced another way in this &#8230; <a href="http://cstropz.net/2012/02/18/javascript-object-references/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://cstropz.net/2012/02/18/javascript-object-references/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby Array Methods Part 1</title>
		<link>http://cstropz.net/2012/02/15/ruby-array-methods-part-1/</link>
		<comments>http://cstropz.net/2012/02/15/ruby-array-methods-part-1/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 01:24:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://cstropz.net/?p=948</guid>
		<description><![CDATA[Check this code out: 1.9.3-p0 :001 &#62; a = &#91;1, 2, 3&#93; =&#62; &#91;1, 2, 3&#93; 1.9.3-p0 :002 &#62; a.delete&#40;2&#41; =&#62; 2 1.9.3-p0 :003 &#62; a =&#62; &#91;1, 3&#93; 1.9.3-p0 :004 &#62; a&#91;3&#93; = 4 =&#62; 4 1.9.3-p0 :005 &#62; &#8230; <a href="http://cstropz.net/2012/02/15/ruby-array-methods-part-1/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://cstropz.net/2012/02/15/ruby-array-methods-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful Shell Function pathmunge</title>
		<link>http://cstropz.net/2012/02/13/useful-shell-function-pathmunge/</link>
		<comments>http://cstropz.net/2012/02/13/useful-shell-function-pathmunge/#comments</comments>
		<pubDate>Mon, 13 Feb 2012 14:05:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[shell script]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://cstropz.net/?p=944</guid>
		<description><![CDATA[When I wrote a function that updated the PATH environment variable to include a new directory path in its set of values I had named it &#8220;addtopath&#8221;, and &#8220;addtopathhigh&#8221; when prepending such directory. I was tweaking the /etc/profile file in &#8230; <a href="http://cstropz.net/2012/02/13/useful-shell-function-pathmunge/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://cstropz.net/2012/02/13/useful-shell-function-pathmunge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sinatra Dynamic Route Handler Generation</title>
		<link>http://cstropz.net/2012/02/12/sinatra-dynamic-route-generation/</link>
		<comments>http://cstropz.net/2012/02/12/sinatra-dynamic-route-generation/#comments</comments>
		<pubDate>Sun, 12 Feb 2012 14:43:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://cstropz.net/?p=941</guid>
		<description><![CDATA[Sinatra is one really amazing, light, and productive framework. Among its many features, Sinatra allows one to define routes dinamically. See a scope binding example in the request scope section of Sinatra&#8217;s introduction page.]]></description>
		<wfw:commentRss>http://cstropz.net/2012/02/12/sinatra-dynamic-route-generation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crypt Encryption Function Usage</title>
		<link>http://cstropz.net/2012/02/10/crypto-encryption-function-usage/</link>
		<comments>http://cstropz.net/2012/02/10/crypto-encryption-function-usage/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 12:13:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[c]]></category>

		<guid isPermaLink="false">http://cstropz.net/?p=928</guid>
		<description><![CDATA[crypto(3) is a function that provides basic criptography. It is at a so basic level that for serious work other than that of generating a shadowed password on the system, it is not recommended (as per a statement in its &#8230; <a href="http://cstropz.net/2012/02/10/crypto-encryption-function-usage/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://cstropz.net/2012/02/10/crypto-encryption-function-usage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby Symbols with Spaces</title>
		<link>http://cstropz.net/2012/02/09/ruby-symbols-with-spaces/</link>
		<comments>http://cstropz.net/2012/02/09/ruby-symbols-with-spaces/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 00:00:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://cstropz.net/?p=925</guid>
		<description><![CDATA[I saw code saying &#8220;I have spaces&#8221;.to_sym to convert a String object to a symbol, but one can also use the form :&#8217;I am a symbol with spaces&#8217;. See: 1.9.3-p0 :005 &#62; :&#8217;this is a test&#8217; =&#62; :&#8221;this is a &#8230; <a href="http://cstropz.net/2012/02/09/ruby-symbols-with-spaces/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://cstropz.net/2012/02/09/ruby-symbols-with-spaces/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Command Example for useradd</title>
		<link>http://cstropz.net/2012/02/09/command-example-for-useradd/</link>
		<comments>http://cstropz.net/2012/02/09/command-example-for-useradd/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 10:22:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[servers]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[shell script]]></category>

		<guid isPermaLink="false">http://cstropz.net/?p=917</guid>
		<description><![CDATA[The useradd command is a tool that provides sysadmins with the capability of adding new users (a.k.a. logins) to the system. The generic form of the command is this: useradd -c 'COMMENT' -d 'HOME' -m -p 'CRYPT_STRING' -s 'SHELL' LOGIN &#8230; <a href="http://cstropz.net/2012/02/09/command-example-for-useradd/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://cstropz.net/2012/02/09/command-example-for-useradd/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Add CDROM or ISO Packages to Red Hat Enterprise Linux 5.7</title>
		<link>http://cstropz.net/2012/02/08/add-cdrom-or-iso-packages-to-red-hat-enterprise-linux-5-7/</link>
		<comments>http://cstropz.net/2012/02/08/add-cdrom-or-iso-packages-to-red-hat-enterprise-linux-5-7/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 18:06:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[servers]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[handy]]></category>

		<guid isPermaLink="false">http://cstropz.net/?p=910</guid>
		<description><![CDATA[Red Hat generally provides a stable Linux distribution in its currently supported releases. And one might want to only use the packages that came along with the distribution media i.e. a cdrom or an .iso file containing that cd&#8217;s image. &#8230; <a href="http://cstropz.net/2012/02/08/add-cdrom-or-iso-packages-to-red-hat-enterprise-linux-5-7/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://cstropz.net/2012/02/08/add-cdrom-or-iso-packages-to-red-hat-enterprise-linux-5-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

