<?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>A day in the life of Sin</title>
	<atom:link href="http://sindacious.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sindacious.com</link>
	<description>you seriously read this?</description>
	<lastBuildDate>Mon, 08 Mar 2010 00:05:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Plastic Beach.</title>
		<link>http://sindacious.com/2010/03/07/plastic-beach/</link>
		<comments>http://sindacious.com/2010/03/07/plastic-beach/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 00:05:14 +0000</pubDate>
		<dc:creator>Sindacious</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://sindacious.com/?p=83</guid>
		<description><![CDATA[I got the new Plastic Beach album by Gorillaz today because I've been a die-hard fan of Gorillaz for years now.
To be totally honest, it's nothing like I expected compared to their first and second album, Gorillaz and Demon Days. For those that haven't read their book, other then explaining the beginnings of Gorillaz from [...]]]></description>
			<content:encoded><![CDATA[<p>I got the new Plastic Beach album by <a href="http://gorillaz.com/">Gorillaz</a> today because I've been a die-hard fan of Gorillaz for years now.</p>
<p>To be totally honest, it's nothing like I expected compared to their first and second album, Gorillaz and Demon Days. For those that haven't read their book, other then explaining the beginnings of Gorillaz from the "band's" point of view, it did explain a lot of the ideas really where for the first two albums. The first album really didn't have a meaning, it was just music. The second album however, had meaning, while I don't want to bother to explain it, it's about the world and it's current state. The third album, I really have no idea what the meaning is, I may have to listen to the lyrics a little closer a few more times.</p>
<p>The album starts out with the music that you hear on the website (or did) introducing plastic beach. Second song I laughed about a little, Snoop Dogg rap's in "Welcome to the world of the plastic beach". Through the rest of the album there are appearances by Bashy (I really have no idea who that is), and De La Soul, which anyone that keeps up with Gorillaz, they worked with De La Soul quite a bit in their last album, Demon Days.</p>
<p>Even though I wasn't exactly overcome with this album, I did enjoy the album. My favorites are <a href="http://www.youtube.com/watch?v=h9vAOzYz-Qs">Stylo</a> and Superfast Jellyfish, and the album itself gives me a beach-like feeling.</p>
<p>I'll be looking forward to hearing the story behind the Gorillaz venture to the plastic beach.</p>
<p>I recommend this album to anyone who likes hip-hop, techno, and rap.</p>
]]></content:encoded>
			<wfw:commentRss>http://sindacious.com/2010/03/07/plastic-beach/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WILT &#8211; 1</title>
		<link>http://sindacious.com/2010/03/01/wilt-1/</link>
		<comments>http://sindacious.com/2010/03/01/wilt-1/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 04:37:01 +0000</pubDate>
		<dc:creator>Sindacious</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Sindacious.com]]></category>
		<category><![CDATA[WILT]]></category>
		<category><![CDATA[hg]]></category>
		<category><![CDATA[mercurial]]></category>

		<guid isPermaLink="false">http://sindacious.com/?p=75</guid>
		<description><![CDATA[Starting today I'm going to start a new thing here on Sindacious.com, what I learned today, inspired by this website, which is where my first will also come from.
On a (mainly) daily basis, I'll update with something I learned today, usually about coding or server related things. (EDIT: I lied, probably on a bi-weekly {or [...]]]></description>
			<content:encoded><![CDATA[<p>Starting today I'm going to start a new thing here on Sindacious.com, what I learned today, inspired by <a href="http://w-i-l-t.tumblr.com/">this</a> website, which is where my first will also come from.</p>
<p>On a (mainly) daily basis, I'll update with something I learned today, usually about coding or server related things. (<strong>EDIT:</strong> I lied, probably on a bi-weekly {or monthly, like my posts} basis, I haven't learned anything worth sharing in the last few days.)</p>
<p>So, without further babble, what I learned today, how to install <a href="http://mercurial.selenic.com/">mercurial</a> correctly on CentOS.</p>
<p>A few days back I moved all my websites from my VPS back to <a href="http://extroverthost.com">Extroverthost</a>'s web hosting server, during this time, I installed hg, but kept getting PYTHONPATH errors when using the hg command, which was a major annoyance. After hours of looking around, I finally came across the website I mentioned in the beginning, with the information I needed to fix my PYTHONPATH issue.</p>
<h2>How to install on CentOS</h2>
<p><code> wget http://mercurial.selenic.com/release/mercurial-1.4.3.tar.gz<br />
tar zxf mercurial-1.4.3.tar.gz<br />
cd mercurial-1.4.3/<br />
make (this will show you your make options, for local install, full install, etc)<br />
make &lt;option&gt;<br />
hg debuginstall<br />
</code></p>
<p>If you get a <code>PYTHONPATH</code> error when using <code>hg debuginstall</code>, put the following in your <code>.bashrc</code>:</p>
<p><code><br />
PYTHONPATH=/usr/local/lib64/python2.4/site-packages:${PYTHONPATH}<br />
export PYTHONPATH<br />
</code></p>
<p>Learned from: <a href="http://w-i-l-t.tumblr.com/post/165104796/mercurial-install-centos-5-3">http://w-i-l-t.tumblr.com/post/165104796/mercurial-install-centos-5-3</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sindacious.com/2010/03/01/wilt-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Wave</title>
		<link>http://sindacious.com/2009/12/11/google-wave/</link>
		<comments>http://sindacious.com/2009/12/11/google-wave/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 10:03:10 +0000</pubDate>
		<dc:creator>Sindacious</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[wave]]></category>

		<guid isPermaLink="false">http://sindacious.com/2009/12/11/google-wave/</guid>
		<description><![CDATA[I was invited some weeks ago, and I have 22 invites to give, leave a comment if you want an invite (with your gmail address).
Also, feel free to add me, sindakus@googlewave.com
]]></description>
			<content:encoded><![CDATA[<p>I was invited some weeks ago, and I have 22 invites to give, leave a comment if you want an invite (with your gmail address).</p>
<p>Also, feel free to add me, sindakus@googlewave.com</p>
]]></content:encoded>
			<wfw:commentRss>http://sindacious.com/2009/12/11/google-wave/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>brokenop &#8211; punishing children</title>
		<link>http://sindacious.com/2009/12/02/brokenop-punishing-children/</link>
		<comments>http://sindacious.com/2009/12/02/brokenop-punishing-children/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 03:57:46 +0000</pubDate>
		<dc:creator>Sindacious</dc:creator>
				<category><![CDATA[BrokenOp]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sindacious.com/?p=68</guid>
		<description><![CDATA[In my opinion, children these days, should be beat, and not heard.
http://brokenop.com/2009/12/02/punishing-children/
]]></description>
			<content:encoded><![CDATA[<blockquote><p><em>In my opinion, children these days, should be beat, and not heard.</em></p></blockquote>
<p><a href="http://brokenop.com/2009/12/02/punishing-children/">http://brokenop.com/2009/12/02/punishing-children/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sindacious.com/2009/12/02/brokenop-punishing-children/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>brokenop</title>
		<link>http://sindacious.com/2009/12/02/brokenop/</link>
		<comments>http://sindacious.com/2009/12/02/brokenop/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 03:17:17 +0000</pubDate>
		<dc:creator>Sindacious</dc:creator>
				<category><![CDATA[BrokenOp]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sindacious.com/?p=64</guid>
		<description><![CDATA[I'll be authoring on another blog, brokenop (broken opinion) which is a blog about opinions, started by Dro, in an attempt for him and authors (me) to make money off a blog. So read, click ads, make us money.
I'll mirror my posts their here in an excerpt form that links to the full post.
]]></description>
			<content:encoded><![CDATA[<p align="justify">I'll be authoring on another blog, <a href="http://brokenop.com/" target="_blank">brokenop</a> (broken opinion) which is a blog about opinions, started by <a href="http://oscarsandoval.com/" target="_blank">Dro</a>, in an attempt for him and authors (me) to make money off a blog. So read, click ads, make us money.</p>
<p align="justify">I'll mirror my posts their here in an excerpt form that links to the full post.</p>
]]></content:encoded>
			<wfw:commentRss>http://sindacious.com/2009/12/02/brokenop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Registering a domain?</title>
		<link>http://sindacious.com/2009/11/23/registering-a-domain/</link>
		<comments>http://sindacious.com/2009/11/23/registering-a-domain/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 03:33:54 +0000</pubDate>
		<dc:creator>Sindacious</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cheap]]></category>
		<category><![CDATA[domains]]></category>
		<category><![CDATA[extroverthost]]></category>
		<category><![CDATA[namecheap]]></category>
		<category><![CDATA[plugs]]></category>
		<category><![CDATA[shameless]]></category>

		<guid isPermaLink="false">http://sindacious.com/?p=60</guid>
		<description><![CDATA[Use NameCheap! Register your domain via this link and make me commissions! Why? I want money to pay off my domains, duh.
Also, if you're looking for vps/dedi/web hosting, check out ExtrovertHost.
Also Anicho is going to hack me SO BAD. Watch out, I might be hacked (or I might already be!)
Later.
]]></description>
			<content:encoded><![CDATA[<p>Use NameCheap! Register your domain via <a href="http://www.namecheap.com?aff=2910" target="_blank">this link</a> and make me commissions! Why? I want money to pay off my domains, duh.</p>
<p>Also, if you're looking for vps/dedi/web hosting, check out <a href="http://extroverthost.com/" target="_blank">ExtrovertHost</a>.</p>
<p>Also Anicho is going to hack me SO BAD. Watch out, I might be hacked (or I might already be!)</p>
<p>Later.</p>
]]></content:encoded>
			<wfw:commentRss>http://sindacious.com/2009/11/23/registering-a-domain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>and more to come</title>
		<link>http://sindacious.com/2009/11/08/and-more-to-come/</link>
		<comments>http://sindacious.com/2009/11/08/and-more-to-come/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 05:09:41 +0000</pubDate>
		<dc:creator>Sindacious</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Zaphyous]]></category>
		<category><![CDATA[mod_python]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[redmine]]></category>

		<guid isPermaLink="false">http://sindacious.com/?p=56</guid>
		<description><![CDATA[So, two posts today, one was my mod_python tutorial, and then there is this one is for some plugs. Today I figured out redmine (though it didn't take much figuring out, the new version fixed any issues I had last time I tried to install). As I said in the last post, I FINALLY installed [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">So, two posts today, one was my mod_python tutorial, and then there is this one is for some plugs. Today I figured out <a href="http://redmine.org/">redmine</a> (though it didn't take much figuring out, the new version fixed any issues I had last time I tried to install). As I said in the last post, I FINALLY installed <a href="http://modpython.org/">mod_python</a>, and have it working! Now I'm working on coding spunge over to python, slowly, still learning how to use GET variables with it (and haven't successfully yet..), but I like what I see so far. Anyway, back to redmine, It's up and running at <a href="http://zaphyous.com:3000/">http://zaphyous.com:3000/</a> currently it's only monitoring the imgMon project which will be a "new age" image board, in so many words, I'd link, but it currently doesn't have a site, but you can view the redmine project information on it <a href="http://zaphyous.com:3000/projects/show/imgmon" target="_blank">here</a>. Monie of <a href="http://omegahosts.com/">OmegaHosts</a>, and long time SinIRC user and staff member is leading the project, and I one of the developers. It's currently under development as of today, and will be under active development pending on Monie's schedule. Currently there is information and feature requests in <a href="http://aic.openmsl.net/wiki/index.php/IMGMON" target="_blank">this wiki article</a>, and will possibly be moved over to the redmine since it has a feature system, and would be on the project itself, rather then an unaffiliated website.</p>
<p align="justify">In other news, I'm working on my own blogging software. It'll be no WordPress, but the aim is to make it easy to modify, and have an extension system (as of right now). Currently it is PHP, however now that I have mod_python going I may decide to code it in python, though I need to learn more about PHP classes, so I may put the python stuff on hold. I'll post more about that later.</p>
<p align="justify">I really thought I'd have more to post about, but there hasn't been enough happening since my last last post, oh, and we're under a hurricane warning, yay!</p>
<p align="justify">I'll post again later if I don't die.</p>
<h3>UPDATE</h3>
<p>Ida turned into a tropical storm which will probably do hardly anything. So I won't die.</p>
]]></content:encoded>
			<wfw:commentRss>http://sindacious.com/2009/11/08/and-more-to-come/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>modpython and stuff</title>
		<link>http://sindacious.com/2009/11/08/modpython-and-stuff/</link>
		<comments>http://sindacious.com/2009/11/08/modpython-and-stuff/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 03:49:33 +0000</pubDate>
		<dc:creator>Sindacious</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sindacious.com/?p=41</guid>
		<description><![CDATA[So since I've started learning python as stated in my last post, I decided I'd start playing with mod_python. I first started looking at mod_python after emailing rupa who I know as the author of ix.io, and sprunge.us (which are both python). After he recommended either mod_wsgi or mod_python, I went with mod_python after being [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">So since I've started learning python as stated in my last post, I decided I'd start playing with <a href="http://modpython.org/" target="_blank">mod_python</a>. I first started looking at mod_python after emailing rupa who I know as the author of <a href="http://ix.io/" target="_blank">ix.io</a>, and <a href="http://sprunge.us/">sprunge.us</a> (which are both python). After he recommended either mod_wsgi or mod_python, I went with mod_python after being totally confused with mod_wsgi installation, and I personally like how mod_python works vs. mod_wsgi, and for the beginning of this article, I'm just going to put a small tutorial for debian-server users who are newbies like me when it comes to apache.</p>
<h2>1. install the packages</h2>
<p align="justify">I personally installed the packages, if you choose to install from source more power to you, but with debian's apache install, installing mods from source is slightly confusing.</p>
<p align="justify">Now, assuming you're using debian's apache package, and have python2.5+ installed, use:</p>
<p><code>$ apt-get install libapache2-mod-python</code></p>
<h2>2. load the module</h2>
<p align="justify">Now, with debian's apache package, you need to use the following commands to load the mod_python module to apache:</p>
<p><code> $ cd /etc/apache2/mods-available<br />
$ mv python.* ../mods-enabled<br />
$ /etc/init.d/apache2 restart</code></p>
<h2>3. make it work</h2>
<p align="justfy">Now, you need to <code>cd /etc/apache2/sites-enabled/</code> and do the following:</p>
<h3>/var/www</h3>
<p align="justfy">If you're using /var/www for your website(s), then use the following configuration in default (or in my case, 000-default (symlink to default in ../sites-available)):</p>
<pre>&lt;Directory /var/www/&gt;
   Options Indexes FollowSymLinks MultiViews
   AllowOverride None
   Order allow,deny
   allow from all
   AddHandler mod_python .py
   PythonHandler mod_python.publisher
   PythonDebug On
&lt;/Directory&gt;</pre>
<p align="justify">
<p align="justify">Now, I used the next method I'm about to show, but I did this anyway, just in case. Does it matter if this is in default? I don't know for sure.</p>
<h3>users</h3>
<p align="justify">This is the method I'm using, which allows to enable it for certain users, in this example I made a file called <code>james</code> in <code>sites-enabled</code> and put the following in it:</p>
<pre>DocumentRoot /home/USER/public_html/
AddHandler mod_python .py
PythonHandler mod_python.publisher
PythonDebug On</pre>
<h2>4. restart!</h2>
<p align="justify">Now, you need to restart apache with the following command:</p>
<p><code>$ /etc/init.d/apache2 restart</code></p>
<h2>5. test</h2>
<p align="justify">Now to be sure it works, create a file, testing.py in the area you enabled it for, and put the following code in it:</p>
<pre>def index():
   print "Hello world!"
</pre>
<p>If it works, you should view the file from your browser and see <code>Hello world!</code></p>
<p align="justify">Well, this is the end of this tutorial, I can't guarantee it'll work, but it did for me, and I know I was a little irritated since I couldn't find any straight forward tutorials about this, so I figured I'd make my own for someone else who may be looking around, if something is wrong with my tutorial, or anyone wants to plug theirs or others, feel free to comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://sindacious.com/2009/11/08/modpython-and-stuff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Halloween!</title>
		<link>http://sindacious.com/2009/10/31/happy-halloween/</link>
		<comments>http://sindacious.com/2009/10/31/happy-halloween/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 13:28:36 +0000</pubDate>
		<dc:creator>Sindacious</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sindacious.com/2009/10/31/happy-halloween/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" title="evil pumpkin" src="http://images2.layoutsparks.com/1/163334/evil-pumpkin-2-t5-1.gif" alt="" width="533" height="336" /></p>
]]></content:encoded>
			<wfw:commentRss>http://sindacious.com/2009/10/31/happy-halloween/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update?</title>
		<link>http://sindacious.com/2009/10/29/update/</link>
		<comments>http://sindacious.com/2009/10/29/update/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 18:45:50 +0000</pubDate>
		<dc:creator>Sindacious</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Sindacious.com]]></category>
		<category><![CDATA[irc]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[plugs]]></category>
		<category><![CDATA[Zaphyous]]></category>

		<guid isPermaLink="false">http://sindacious.com/?p=34</guid>
		<description><![CDATA[It's about time I made an update, so I've put on a new skin, added a few add-ons (that aren't really seen so much as used when I want too), and eventually I'll make my edits like on the old skin, status, WhatPulse statistics, and whatever else comes to mind. What inspired the update was [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">It's about time I made an update, so I've put on a new skin, added a few add-ons (that aren't really seen so much as used when I want too), and eventually I'll make my edits like on the old skin, status, <a href="http://whatpulse.org/">WhatPulse</a> statistics, and whatever else comes to mind. What inspired the update was mainly somehow a link got put in the top right of the other skin (with an insane margin) linking to a birth protection blog, and I could find no way to get rid of it.. so I figured a change of looks had come. After searching through <a href="http://wordpress.org/">WordPress</a>' website for a decent skin (which I was amazed at how unimpressed I was by some of the top skins) I came across the current skin you see now. Sexy, I know. I've decided I may actually start using this blog a little more often (though that is a weak promise) for development blabber and other hobbies I may take up soon. If anyone has ideas, I'm sure my faithful following will voice them like popular subscribers, james@sindacio.us, james@sindacious.com, admin@sinirc.net, james@zaphyous.com, and so on. They've contributed a lot to this site, thank you. Oh, and lets plug <a href="http://extroverthost.com/">ExtrovertHost</a>, they're the reason this and all of my stuff is on the internet.</p>
<p align="justify">Recently I've decided to take up python, I haven't learned too much, yet, though I want to start something (like a website) in python soon, just need to figure out mod_fcgi, apache and I don't know each other very well. Recently I've decided to learn how to use <a href="http://mercurial.selenic.com/">mercurial</a> version control system (did I state that correctly?) for my repositories. First I used git, then svn, but <a href="http://hstuart.dk/">hstuart</a> mad mercurial seem so much better, so I decided to learn it (I worship the stuff he bakes). Currently learning more about it. Soon to release a new pastebin which is a copy of <a href="http://sprunge.us/">sprunge.us</a>, but in php, rather then python (we plan on make it python in the distant future), it'll be released when I can buy the domain, currently it's in version one, we plan to add more to it that it doesn't have currently (currently supports paste, line numbers, and API for people without the curl command), more info on that in the future. pylon from <a href="http://additionalpylons.com/">additionalpylons</a> and I started work on that pastebin, and currently (and very slowly..) working on a logging bot in python with a web interface (which uses <a href="http://webpy.org/">webpy</a>). The idea is to make it one process- you start the bot, it starts the website and logger. This has already been achieved, now we need to work on the actual logging and user authentication. We plan on making this open source, while making a website that anyone can request the bot on any network. I'll put more information about that whenever we get around to releasing, which should be in the not so distant future now that I've stopped using <a href="http://github.com/">github</a> and started using my own repositories, we can work a little faster. Other upcoming projects include my want to make a dnsbl, this would be open source , easy to setup, and of course, used at anyones digressions. My main want to code one is to understand how dnsbl's work, and of course, planning to code it in python, so it'll be a learning experience in many ways, this will probably also be used so I can setup a personal dnsbl for my IRC network, and for use on my websites, more on that later as well.</p>
<p align="justify">I recently watched G.I. Joe and Year One (today, actually). I really actually enjoyed G.I. Joe, wasn't bad at all, it's very obvious a sequel will come. I personally never saw many of the old cartoons, so I can't say I know much about the storyline, so I'm just going by what the movie alone, and it was good. Year One, not so much. The story was alright, but I didn't get much enjoyment from watching it, though it had it's funny parts, certainly not a must watch. This was also the uncensored version, and comparing watchmen uncensored and this, I don't know what is uncensored about it, really. I think the next movie I plan to watch is Gamer, it really caught my eye. For some reason I thought it was called <strong>The Game</strong>.</p>
<p align="justify">So during the time after I saved this this morning, I watched Gamer and District 9. Gamer was alright, it had a good plot, but it wasn't much of a watch. I enjoyed District 9 quite a bit, the ending was pretty interesting, after the plot twist with the ship I wasn't sure where things would end, but it had a semi good ending, so I was happy. I thought it was interesting you only see ONE child alien in the movie though. It is a total must watch, some were not impressed, I thought it was great. Now I think I'm out of movies I'm interested in watching.</p>
<p align="justify">Today we put down California.US.SinIRC.Net. R.I.P. IT WAS A GOOD SERVER. Replaced it with LA.US.SinIRC.Net, which is in the same data center. I would have named it California, though it was convenient at the time to have both linked to migrate the users over to the new server then go ahead and kill them all off by suddenly killing off California, so LA was the new name. Growing is slow, but I'm still happy.</p>
<p align="justify">This is where I end the post of the month. I want to plug a new blog that can be accessed from my awesome blog roll <a href="http://cremastermind.com/">Cremastermind</a>, a blog about stuff nobody cares about featuring reviews about stuff nobody cares about, and other things nobody cares about. I've been told that if I decide I want to submit any material it will be published, so if I do, I'll be sure to mirror it this way as well, so my whole five readers can see it.</p>
]]></content:encoded>
			<wfw:commentRss>http://sindacious.com/2009/10/29/update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
