<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>9thport</title>
	<link>http://9thport.net</link>
	<description>organization, programming, photography, technical news I find interesting</description>
	<lastBuildDate>Thu, 12 Jan 2012 02:13:00 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress" -->

	<item>
		<title>When having problems with Gitosis on Ubuntu</title>
		<description><![CDATA[Problems with gitosis While working on my Ubuntu server with the Gitosis default setup, I ran into some problems along the way when trying to commit some changes: Lost ability to update the gitosis-admin repository Various python errors Expected changes &#8230; <a href="http://9thport.net/2012/01/09/when-having-problems-with-gitosis-on-ubuntu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://9thport.net/2012/01/09/when-having-problems-with-gitosis-on-ubuntu/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=when-having-problems-with-gitosis-on-ubuntu</link>
			</item>
	<item>
		<title>Verifying all entries in /etc/shells are not more permissive than 755</title>
		<description><![CDATA[I wanted to make sure that all the files listed in /etc/shells were not more permissive than 755, but I kept running into a problem of trying to analyze the permissions on a file that is a link. After digging &#8230; <a href="http://9thport.net/2011/12/12/verifying-all-entries-in-etcshells-are-not-more-permissive-than-755/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://9thport.net/2011/12/12/verifying-all-entries-in-etcshells-are-not-more-permissive-than-755/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=verifying-all-entries-in-etcshells-are-not-more-permissive-than-755</link>
			</item>
	<item>
		<title>Odin&#8217;s Tipple</title>
		<description><![CDATA[Trying a bottled beer called Odin&#8217;s Tipple and it&#8217;s like nothing I have ever had!]]></description>
		<link>http://9thport.net/2011/11/30/odins-tipple/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=odins-tipple</link>
			</item>
	<item>
		<title>Taking a break</title>
		<description><![CDATA[Having a good time at lunch at an Irish pub in my hotel. Your browser does not support the video tag]]></description>
		<link>http://9thport.net/2011/11/29/taking-a-break/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=taking-a-break</link>
			</item>
	<item>
		<title>RedMine due date with offset value</title>
		<description><![CDATA[Another RedMine plugin of mine to automatically set the due date with a specified offset. So here is my github repo with the plugin necessary to fill in the due date for all projects. I have some plans to improve the plugin into &#8230; <a href="http://9thport.net/2011/11/18/redmine-due-date-with-offset-value/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://9thport.net/2011/11/18/redmine-due-date-with-offset-value/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=redmine-due-date-with-offset-value</link>
			</item>
	<item>
		<title>ColdFusion error message File Not Found</title>
		<description><![CDATA[If you are staring at a error message produced by ColdFusion that reads &#8220;File Not Found&#8221; but you know the file is available from you Linux apache service, you would be having a similar day that I had last week. &#8230; <a href="http://9thport.net/2011/10/24/coldfusion-error-message-file-not-found/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://9thport.net/2011/10/24/coldfusion-error-message-file-not-found/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=coldfusion-error-message-file-not-found</link>
			</item>
	<item>
		<title>node.js how to pipe a output from child process into a webpage</title>
		<description><![CDATA[This is a simple Node.js server that prints the output from a system command (in this example, its a tail program): // how to pipe a output from child process into a webpage // start with importing an http server &#8230; <a href="http://9thport.net/2011/10/16/how-to-pipe-a-output-from-child-process-into-a-webpage/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://9thport.net/2011/10/16/how-to-pipe-a-output-from-child-process-into-a-webpage/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-pipe-a-output-from-child-process-into-a-webpage</link>
			</item>
	<item>
		<title>node.js hello world example with simple bootstrap</title>
		<description><![CDATA[My first step into learning about Node.js and I here is my hello world example: &#160; &#160; var http = require(&#8216;http&#8217;) http.createServer(function(request, response) { console.log(&#8216;new request&#8217;); response.writeHead(200, { &#8216;Content-Type&#8217;: &#8216;text/plain&#8217; }); response.end(&#8216;Hello World!&#8217;); }).listen(4000);]]></description>
		<link>http://9thport.net/2011/10/16/node-js-hello-world-example-with-simple-bootstrap/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=node-js-hello-world-example-with-simple-bootstrap</link>
			</item>
	<item>
		<title>Unknown number? why are you calling me!?</title>
		<description><![CDATA[Just a small post about a website I just found for finding out about those mysterious phone numbers: http://whocallsme.com/]]></description>
		<link>http://9thport.net/2011/10/12/unknown-number-why-are-you-calling-me/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=unknown-number-why-are-you-calling-me</link>
			</item>
	<item>
		<title>Awk if statement for testing permissions of files and directories</title>
		<description><![CDATA[By using stat and awk, you can gather some information for passing or failing a permissions check. Below is a bash script snippet I used for checking all the home directories in /etc/passwd to make sure they are at permissions level &#8230; <a href="http://9thport.net/2011/10/12/awk-if-statement-for-testing-permissions-of-files-and-directories/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://9thport.net/2011/10/12/awk-if-statement-for-testing-permissions-of-files-and-directories/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=awk-if-statement-for-testing-permissions-of-files-and-directories</link>
			</item>
</channel>
</rss>

