<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
    <channel>
        <title>Tibs Wilderness</title>
        <link>http://www.byond.com/members/Tiberath</link>
        <description>The future unfolds before your eyes.</description>
        <lastBuildDate>Sun, 08 Nov 2009 03:45:30 GMT</lastBuildDate>
        <language>en-us</language>
    
                <item>
            <title>Working around .htaccess, compelte control of the URL.</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=85257</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=85257</guid>
            <pubDate>Sat, 07 Nov 2009 07:21:34 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Tiberath?command=view_comments&amp;post=85257#comments</comments>
            
            <description>So for the past little while I was looking for a way to do clean URLs (url.com/articles/something) without resorting to .htaccess redirects for the pages.&lt;br&gt;
&lt;br&gt;
I found my every attempt in doing it using .htaccess to result in limited usability often breaking with unexpected input. Experiments on tiberath.com resulted in massive headaches until I eventually gave up on it.&lt;br&gt;
&lt;br&gt;
So I gots to thinking of how to do it another way. With a little conferring with &lt;a href='http://www.byond.com/members/MobiusEvalon'&gt;Mobius&lt;/a&gt;, we decided that PHP is a fairly strong language, and we should have no troubles parsing the URL with it.&lt;br&gt;
&lt;br&gt;
Unfortunately for us, this sacrifices a little bit of speed (negligible amounts really, but efficiency nuts will yell at us. Eh, they know exactly where they can go. Given today's computers, the milliseconds it takes to run the following functions aren't worth sacrificing the new freedom I gave myself) but makes up everything in usability.&lt;br&gt;
&lt;br&gt;
So I got to work, and with a little regex help from Mobius, came up with a solution I was happy with. Of course, anyone who isn't me will probably find the scripts useless, as I format my URL's far different than most people would normally do.&lt;br&gt;
&lt;br&gt;
For the most part, you'll find most URLs formatted something not unlike &lt;tt&gt;.com?action=account&amp;amp;page=register&lt;/tt&gt; where I'm more inclined to run through the alphabet: &lt;tt&gt;.com?a=account&amp;amp;b=register&lt;/tt&gt; only varying from this method with important things like an id number: &lt;tt&gt;.com?a=members&amp;amp;b=profile&amp;amp;id=20&lt;/tt&gt;&lt;br&gt;
&lt;br&gt;
With this in mind, I wrote the following PHP script.
&lt;div class=&quot;dmcode&quot;&gt;
&lt;table width=&quot;100%&quot; border=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;pre class=&quot;dmcode&quot;&gt;
function fix_uri($uri, $nockey = false) {
    $new_uri = array();
    $i = 97;
    foreach($uri &lt;span class=&quot;dmkeyword&quot;&gt;as&lt;/span&gt; $key) {
        &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(substr_count($key, &lt;span class=&quot;dmstring&quot;&gt;&quot;=&quot;&lt;/span&gt;)) {
            $key = explode(&lt;span class=&quot;dmstring&quot;&gt;&quot;=&quot;&lt;/span&gt;, $key);
            $new_uri[ckey($key[0])] = $nockey ? $key[1] : ckey($key[1]);
        } &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt; &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;($key) {
            $new_uri[chr($i)] = $nockey ? $key : ckey($key);
            $i++;
        }
    }
    &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; $new_uri;
}
    
function ckey($t) { 
    &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; strtolower(preg_replace(&lt;span class=&quot;dmstring&quot;&gt;'/[^a-zA-Z0-9@]/'&lt;/span&gt;,&lt;span class=&quot;dmstring&quot;&gt;''&lt;/span&gt;,$t)); 
}
&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
A quick Google search for the .htaccess code I needed resorted in this .htaccess script:
&lt;div class=&quot;dmcode&quot;&gt;
&lt;table width=&quot;100%&quot; border=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;pre class=&quot;dmcode&quot;&gt;
RewriteEngine on

&lt;span class=&quot;dmpreprocessor&quot;&gt;#Auto-redirect all pages to index.php&lt;/span&gt;
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
Effectively, all URL's are redirected to index.php. With exception to files and sub-folders. Which was a major bonus I never actually took into consideration when designing this script (and something that had pained me terrible when attempting it with .htaccess redirects).&lt;br&gt;
&lt;br&gt;
Throwing this script in my header.php (hearder.php is called before any output to the website is done, and generally only outputs stuff that are on all pages at the very bottom of the file):
&lt;div class=&quot;dmcode&quot;&gt;
&lt;table width=&quot;100%&quot; border=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;pre class=&quot;dmcode&quot;&gt;
$uri = fix_uri(preg_split(&lt;span class=&quot;dmstring&quot;&gt;'![/|?|&amp;amp;|;|$]!'&lt;/span&gt;, urldecode($_SERVER[&lt;span class=&quot;dmstring&quot;&gt;'REQUEST_URI'&lt;/span&gt;])));
$uri_a = fix_uri(preg_split(&lt;span class=&quot;dmstring&quot;&gt;'![/|?|&amp;amp;|;|$]!'&lt;/span&gt;, urldecode($_SERVER[&lt;span class=&quot;dmstring&quot;&gt;'REQUEST_URI'&lt;/span&gt;])), true);
&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
I'm given a clean URL and a complete URL. The resulting executions give me all kinds of crazy URLs to work with, effectively, something like this: &lt;a href='http://www.isorath.com/OMG/this/is/A/valid/url?that=SeEms&amp;amp;to=enJOY?working=properly!!/using/all&amp;amp;kinds=of?weird=methos;that;I;seem=to/enjoy%20doing'&gt;http://www.isorath.com/OMG/this/is/A/valid/ url?that=SeEms&amp;amp;to=enJOY?working=properly!!/using/ all&amp;amp;kinds=of?weird=methos;that;I;seem=to/enjoy doing&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
Of course, a URL would never get that big and ridiculous, but you get the idea behind it. Using my own style of formatting URLs (which is in fact, quite handy for say, &lt;i&gt;me&lt;/i&gt;, because I don't actually have to change anything in pre-existing websites (minus tiberath.com, that I did differently)), I'm able to provide incredibly clean URLs at the same time as giving myself absolutely no headaches. And if I was to say update the page and give it another division in the URL, I'd have to change absolutely nothing.&lt;br&gt;
&lt;br&gt;
The complete index.php you saw on the link above is simply this:
&lt;div class=&quot;dmcode&quot;&gt;
&lt;table width=&quot;100%&quot; border=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;pre class=&quot;dmcode&quot;&gt;
&amp;lt;?
    function fix_uri($uri, $nockey = false) {
        $new_uri = array();
        $i = 97;
        foreach($uri &lt;span class=&quot;dmkeyword&quot;&gt;as&lt;/span&gt; $key) {
            &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(substr_count($key, &lt;span class=&quot;dmstring&quot;&gt;&quot;=&quot;&lt;/span&gt;)) {
                $key = explode(&lt;span class=&quot;dmstring&quot;&gt;&quot;=&quot;&lt;/span&gt;, $key);
                $new_uri[ckey($key[0])] = $nockey ? $key[1] : ckey($key[1]);
            } &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt; &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;($key) {
                $new_uri[chr($i)] = $nockey ? $key : ckey($key);
                $i++;
            }
        }
        &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; $new_uri;
    }
    
    function ckey($t) { 
        &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; strtolower(preg_replace(&lt;span class=&quot;dmstring&quot;&gt;'/[^a-zA-Z0-9@]/'&lt;/span&gt;,&lt;span class=&quot;dmstring&quot;&gt;''&lt;/span&gt;,$t)); 
    }
    
    $uri = fix_uri(preg_split(&lt;span class=&quot;dmstring&quot;&gt;'![/|?|&amp;amp;|;|$]!'&lt;/span&gt;, urldecode($_SERVER[&lt;span class=&quot;dmstring&quot;&gt;'REQUEST_URI'&lt;/span&gt;])));
    $uri_a = fix_uri(preg_split(&lt;span class=&quot;dmstring&quot;&gt;'![/|?|&amp;amp;|;|$]!'&lt;/span&gt;, urldecode($_SERVER[&lt;span class=&quot;dmstring&quot;&gt;'REQUEST_URI'&lt;/span&gt;])), true);
        
    echo(&lt;span class=&quot;dmstring&quot;&gt;&quot;The complete URL is: &quot;&lt;/span&gt; . $_SERVER[&lt;span class=&quot;dmstring&quot;&gt;'REQUEST_URI'&lt;/span&gt;] . &lt;span class=&quot;dmstring&quot;&gt;&quot;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;The clean URL is: &amp;lt;pre&amp;gt;&quot;&lt;/span&gt; . print_r($uri, true) . &lt;span class=&quot;dmstring&quot;&gt;&quot;&amp;lt;/pre&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;The direct URL is: &amp;lt;pre&amp;gt;&quot;&lt;/span&gt; . print_r($uri_a, true) . &lt;span class=&quot;dmstring&quot;&gt;&quot;&amp;lt;/pre&amp;gt;&quot;&lt;/span&gt;);
?&amp;gt;
&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
I'm contented with this. The major setback to it I can foresee but haven't yet tested, is it might mess with Search Engine Optimisation (as technically, all pages will report as index.php). Again, I'm not particularly phased. According to my Google Analytics page, the URLs are reporting correctly, so it's possible Search Engine Optimisation will be saved (or improved if you didn't have any kind of clean URL before hand).&lt;br&gt;
&lt;br&gt;
That's all there is to it really. Anyone who uses PHP and hates the thought of .htaccess is free to use it and do as they see fit.</description>
        </item>
                <item>
            <title>Drink Pepsi, annihilate thousands!</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=85098</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=85098</guid>
            <pubDate>Wed, 04 Nov 2009 06:13:53 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Tiberath?command=view_comments&amp;post=85098#comments</comments>
            
            <description>So there's this &quot;new&quot; advertisement for Pepsi Max on television lately. I don't know if other countries get it or even if other states do, but it's pretty stupid.&lt;br&gt;
&lt;br&gt;
It starts off with a girl and a guy just getting out of bed, clearly after a one night stand. She says she's going for a shower, so he goes into the kitchen and opens the fridge. Insert bottle shot of Pepsi Max.&lt;br&gt;
&lt;br&gt;
Queue there's a knock on the door, it's the girls parents. Her being in the shower can't answer it, and given the guys look, they probably suspect she's all innocent. So naturally, he did what every guy does in such a 'difficult' situation. He drinks the Pepsi Max.&lt;br&gt;
&lt;br&gt;
Suddenly, a swat team bursts through the window, and begin to tidy the place up. Apparently they have guns that can shoot covers onto and under beds, effectively making it. Why not. So they clean the place.&lt;br&gt;
&lt;br&gt;
Cut to the woman getting out of the shower. She walks into her lounge to see the place all cleaned and her male friend on the window with one of the swat team. He makes a &quot;Call Me&quot; sign and they jump out.&lt;br&gt;
&lt;br&gt;
The stupid thing is, in the background of that shot, you can see bombs landing on all the surrounding suburb. So they've just cleaned this flat and are now laying waste to the surrounding area. I know carnage makes me want to drink Pepsi Max!&lt;br&gt;
&lt;br&gt;
(I'm lying. I'm staying with Coke. And none of that other flavour diet or zero crap.)</description>
        </item>
                <item>
            <title>Ah! November!</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=84845</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=84845</guid>
            <pubDate>Sat, 31 Oct 2009 00:18:03 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Tiberath?command=view_comments&amp;post=84845#comments</comments>
            
            <description>I have three 21st birthday parties to attend this month (one being my own!). My party on the 14th, a friends party on the 21st and another friends party on the 28th. I foresee my liver hating me.&lt;br&gt;
&lt;br&gt;
I should probably forewarn that if I have access to a computer, I'll undoubtedly post something stupid here, I always seem to.&lt;br&gt;
&lt;br&gt;
Hm, I'm going to need some cigars!</description>
        </item>
                <item>
            <title>So I finished Buso Renkin.</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=84548</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=84548</guid>
            <pubDate>Mon, 26 Oct 2009 20:41:11 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Tiberath?command=view_comments&amp;post=84548#comments</comments>
            
            <description>So I finally finished Buso Renkin. It's quite an interesting title to say the least. Luckily as the show progressed, the &lt;a href='http://www.byond.com/members/Tiberath?command=view_post&amp;amp;post=84318'&gt;problems I'd mentioned earlier&lt;/a&gt; appeared to be less noticeable, still there however.&lt;br&gt;
&lt;br&gt;
I actually found myself enjoying this title, which is completely unlike me. Normally crude humour and stupidity turn me away from shows, but that apparently hasn't been the case here. I guess it was executed well enough that it didn't bother me as much as it could have. Could have done without the absurd amount of crotch shots however...&lt;br&gt;
&lt;br&gt;
One unfortunate thing about this title however, if it gets a big enough fan base on BYOND, you could probably expect an absurd amount of games based on it. Mostly because there is a limitless potential for it. The Buso Renkin objects themselves are usable by both humans and homunculus alike, and the powers involved can only be limited by ones imagination. Hey, at least it'd be refreshing.&lt;br&gt;
&lt;br&gt;
But I'm not here to review the anime (I did that &lt;a href='http://www.tiberath.com/index.php?a=articles&amp;amp;b=reviews&amp;amp;c=anime&amp;amp;id=42'&gt;here&lt;/a&gt;), just to state that I enjoyed it.&lt;br&gt;
&lt;br&gt;
&lt;object width=&quot;425&quot; height=&quot;350&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/4IcYnLcWYYo&quot;&gt;
&lt;param name=&quot;wmode&quot; value=&quot;opaque&quot;&gt;
&lt;embed src=&quot;http://www.youtube.com/v/4IcYnLcWYYo&quot; type=&quot;application/x-shockwave-flash&quot; width=&quot;425&quot; height=&quot;350&quot; wmode=&quot;opaque&quot;&gt;&lt;/object&gt;&lt;br&gt;
&lt;br&gt;
(Speaking of which, I also finished watching Heroic Age the other day. A truly fantastic title! More on that later however.)&lt;br&gt;
&lt;br&gt;
&lt;object width=&quot;425&quot; height=&quot;350&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/l09yFzAKN6k&quot;&gt;
&lt;param name=&quot;wmode&quot; value=&quot;opaque&quot;&gt;
&lt;embed src=&quot;http://www.youtube.com/v/l09yFzAKN6k&quot; type=&quot;application/x-shockwave-flash&quot; width=&quot;425&quot; height=&quot;350&quot; wmode=&quot;opaque&quot;&gt;&lt;/object&gt;</description>
        </item>
                <item>
            <title>It's about time.</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=84392</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=84392</guid>
            <pubDate>Sat, 24 Oct 2009 07:51:30 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Tiberath?command=view_comments&amp;post=84392#comments</comments>
            
            <description>For the last few years, I've found myself wanting to drink more coffee than tea, the only problem with this was: I hated the taste of coffee.&lt;br&gt;
&lt;br&gt;
Why would someone want to drink something he clearly hates the taste of, you ask? Simple: Efficiency. Coffee is a great source of caffeine, something I've been absorbing into my body, every day, for the past fifteen years. As up until recently, I've been drinking multiple cups of tea every day for the aforementioned fifteen years, averaging from anywhere between 3 to 12 a day (during the particularly bad days the last time I quit smoking, I was going on 20 or more). Aside from tea, I had a 600ml bottle of coke every day for the last three years of my school life.&lt;br&gt;
&lt;br&gt;
(I like to think all the milk in the absurd amount of tea I drink is the reason I've never broken or so much as fractured a bone in my life. But I doubt it.)&lt;br&gt;
&lt;br&gt;
And after much trials, it's finally happened. You see, the human body is an interesting thing, apparently, you only have to suffer the taste of something you hate so many times before you get used to it, and maybe even begin to enjoy it. Of course, coffee was a foul bitter taste and that couldn't be helped.&lt;br&gt;
&lt;br&gt;
So over the past few months, I've been slowly subjecting myself to the taste of various available coffees in the house and just now, I found myself enjoying the taste of one. Hurrah. Many, many sleepless nights to come, working away in my dark corer on various projects.</description>
        </item>
                <item>
            <title>If you hadn't already told, several times, I'd probably care.</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=84318</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=84318</guid>
            <pubDate>Thu, 22 Oct 2009 23:06:39 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Tiberath?command=view_comments&amp;post=84318#comments</comments>
            
            <description>So I watched the first four episodes of &lt;a href='http://en.wikipedia.org/wiki/Buso_Renkin'&gt;Buso Renkin&lt;/a&gt; last night. I figured I might as well give it a try, I have nothing better to do with my time.&lt;br&gt;
&lt;br&gt;
Unfortunately, this title has gone to opposite way to &lt;a href='http://en.wikipedia.org/wiki/Inuyasha'&gt;Inuyasha&lt;/a&gt;. Instead of recapping every episode thus far, they decided to re-explain points that had just been explained, several times, at great length, whether you want them to or not.&lt;br&gt;
&lt;br&gt;
I'm fairly sure from the first to forth episode, they only changed every second sentence. You can make a drinking game out of this anime, every time they say &quot;that's the power of (his/my) Buso Renkin&quot;, take a shot. Unfortunately, you'd be dead from alcohol poisoning by the third episode.&lt;br&gt;
&lt;br&gt;
Don't get me wrong, I understand the need for filler, but I'd much rather listen to corny anime-themed Japanese music with a bunch of dancing girls every time they need something to bridge gaps. Sure, it has nothing to do with anything that's just happened, but it wouldn't bore me to tears, and is easier to skip without suddenly missing key plot points.&lt;br&gt;
&lt;br&gt;
Seriously, I'd prefer this for filler.&lt;br&gt;
&lt;span style='font-size: 8pt;'&gt;(Sexual References... I think)&lt;/span&gt;&lt;br&gt;
&lt;object width=&quot;425&quot; height=&quot;350&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/AgL6XoeDmcQ&quot;&gt;
&lt;param name=&quot;wmode&quot; value=&quot;opaque&quot;&gt;
&lt;embed src=&quot;http://www.youtube.com/v/AgL6XoeDmcQ&quot; type=&quot;application/x-shockwave-flash&quot; width=&quot;425&quot; height=&quot;350&quot; wmode=&quot;opaque&quot;&gt;&lt;/object&gt;&lt;br&gt;
&lt;span style='font-size: 8pt;'&gt;Yes, I'm also aware the song is Swedish.&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
Other than that small complaint, it doesn't bother me. The male protagonists inherit stupidity tends to annoy me less than your average comic relief character. Unfortunately, the comic relief character appears to be one of his friends, but I can't be certain only four episodes in. But on the plus side, the females keep referring to him as a pervert, and he's already tried to give the protagonist a porn magazine. This is a bonus.&lt;br&gt;
&lt;br&gt;
At the moment, the series can go either way. Once I've either watched it all, or at the very least, as much as I can tolerate, I'll give a better review about it.</description>
        </item>
                <item>
            <title>I've made a discovery.</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=84214</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=84214</guid>
            <pubDate>Wed, 21 Oct 2009 04:47:45 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Tiberath?command=view_comments&amp;post=84214#comments</comments>
            
            <description>A discovery of great importance. The magnitude of this discovery is amazing, I can't honestly believe it myself, but the ultimate truth has been made known: I &lt;i&gt;suck&lt;/i&gt; at &lt;a href='http://www.wikipedia.org/wiki/Guitar%20Hero%205'&gt;Guitar Hero 5&lt;/a&gt; (the first Guitar Hero I've ever played).&lt;br&gt;
&lt;br&gt;
Though, I will admit, there are some nice songs I've never heard before. &lt;a href='http://www.darklyrics.com/lyrics/darkesthour/deliverus.html#3'&gt;Demon(s)&lt;/a&gt; by &lt;a href='http://en.wikipedia.org/wiki/Darkest_Hour_%28band%29'&gt;Darkest Hour&lt;/a&gt; has become one of my new favourite songs. And another thing that surprised me about it is how much fun the game actually is. I didn't think it'd be very entertaining until I gave it a shot.</description>
        </item>
                <item>
            <title>I need to focus.</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=83583</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=83583</guid>
            <pubDate>Sat, 10 Oct 2009 06:36:31 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Tiberath?command=view_comments&amp;post=83583#comments</comments>
            
            <description>I've been brainstorming ideas for a recent project I've undertaken with the rest of &lt;a href='http://www.tibbius.com'&gt;my team&lt;/a&gt; (you'll find nothing on that site mind you, it's just a quick way to inform you which team I'm referring to), all of them are on board and are eager and willing to participate. But I'm suffering a lack of focus.&lt;br&gt;
&lt;br&gt;
My problem this time isn't &lt;a href='http://www.byond.com/members/Tiberath?command=view_post&amp;amp;post=78497'&gt;creativity&lt;/a&gt; but focus. I have the necessary materials to make my project, the knowledge to polish it, the support to get it done promptly and the team help to fill it with interesting content, but I can't seem to sit here and work on it, no matter how much I want to.&lt;br&gt;
&lt;br&gt;
I opened up a code file, and just stared at it for ten minutes. I know I can optimise and improve the already existing code in that file, but I can't bring myself to make the changes. My mind keeps wandering.&lt;br&gt;
&lt;br&gt;
The really annoying thing is, I have nothing distracting me. MSN is quiet, I'm not logged into Chatters or IU and my pager hasn't gone off in hours. But I still can't focus on the task at hand. And I'm curious to know why my mind is refusing to allow me to do something it knows I want to do.&lt;br&gt;
&lt;br&gt;
I'm not fatigued, I'm well fed, the only thing remotely atmospheric thing that bothers me is that it's a little warm in here, but it's always warm in this room and I'm used to it now.&lt;br&gt;
&lt;br&gt;
I also can't find a song I feel like listening to. I get the feeling this is contributing to my lack of focus. When I find the song that catches me in the moment, I tend to work for hours (without changing the song), but without the song, there seems to be no moving forward. I didn't think I'd associated my hobby with music this much, but it apparently appears to be the case. I've been through nearly my entire MP3 collection, but I just can't find one that captures me.&lt;br&gt;
&lt;br&gt;
Have you, my precious reader, ever had a time when you've really wanted to work on something, and no matter how much you try, can't seem to focus on the task at hand regardless of the absolute zero distractions? And if that be the case, did you manage to overcome it? If so, how?</description>
        </item>
                <item>
            <title>I just love you, BYOND. [edit]</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=82995</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=82995</guid>
            <pubDate>Wed, 30 Sep 2009 20:55:44 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Tiberath?command=view_comments&amp;post=82995#comments</comments>
            
            <description>I'd like to give a shout out to both &lt;a href='http://www.byond.com/members/darkcampainger'&gt;Dark Campainger&lt;/a&gt; for the recently purchased version of Left 4 Dead he gave me. &amp;lt;3&lt;br&gt;
&lt;br&gt;
And one to &lt;a href='http://www.byond.com/members/gotrax'&gt;Gotrax&lt;/a&gt; for a $10.00 USD donation to my &lt;a href='http://www.byond.com/hub/tiberath/servermanager'&gt;server&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
[edit 02.10.2009]&lt;br&gt;
Fanciful and Calus CoRPS both get a shout out as well for donations to the cause. &amp;lt;3&lt;br&gt;
&lt;br&gt;
Thanks guys! You rock!</description>
        </item>
                <item>
            <title>Hey kids, I'm back!</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=82952</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=82952</guid>
            <pubDate>Wed, 30 Sep 2009 05:29:40 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Tiberath?command=view_comments&amp;post=82952#comments</comments>
            
            <description>I don't think I mentioned to anyone I was going anywhere, and just sought of vanished off the internet for the last five days. Leaving all my arguments unargumented (it's a word now), my associates and peers bored (who couldn't live without my comical wit I ask of you? Nobody, that's who!) and otherwise everyone else completely unphased.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Warning: Following contains details about my weekend, if you're not interested in my life, best to just ignore it and go back to your internet surfing.&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
See, Friday it was decided that I'd head up to Geelong for a friends 21st. I got there at 7:30pm, we hit up a Mexican restaurant, then went back to his place to play &lt;i&gt;Brothers in Arms: Earned in Blood&lt;/i&gt; until about 2am, when he went to bed and I went to a mattress in an empty room, devoid of everything but sheets.&lt;br&gt;
&lt;br&gt;
In the morning (day of the Australian Football Grand Final), we awoke, played more game then his university friend rocked up and drove us to BWS (Beer, Wine and Spirits) where we bought a case of Carlton (beer) and went to her place. The 21st party we were having for my friend was in reality a Grand Final party, unless the Geelong Cats won. Either way, it was still &quot;drink beer have fun&quot; thing. A few more of their friends arrived (I was the only one from my particular social circle there, as the only other who's mutual friends with all of these people is in training camp for the RAAF), and I got pretty chatty with a cute girl studying journalism at university.&lt;br&gt;
&lt;br&gt;
I spent the majority of Saturday night with her, eventually she convinced me to hit the dance floor with her (I'm terrible at dancing) to which, I wont kiss and tell (whoops).&lt;br&gt;
&lt;br&gt;
Sunday afternoon, Sam and I went back to his place, had KFC for tea, then his Step-Father and Mother told him he was having an impromptu official 21st birthday party if we could find a place to have it, the guys we partied with on Saturday didn't mind if we had one at theirs on Monday. After that was planned, we watched &lt;i&gt;Dilbert&lt;/i&gt; for a while before I retired to my mattress in exhaustion.&lt;br&gt;
&lt;br&gt;
Monday morning his Step-Father and Mother arrived to help him move out of his place (long story), so the four of us spent from 10am to 6pm cleaning, packing and everything like that, when we proceeded to go to his impromptu 21st party. His close friends (including me) gave speeches and I found myself hanging around the same cute girly mentioned above.&lt;br&gt;
&lt;br&gt;
Tuesday, my friend was too hung over to finish doing his house move, so I did it for him 'cause I didn't drink nearly as much. There wasn't a lot to do anyway, move a bed and a table, that's it. After his Step-Father and Mother had taken off home, my friend and I remained at the house of the people who held the party. I cleaned up all the empty bottles (with help from another friend) before crashing out and waking up around five.&lt;br&gt;
&lt;br&gt;
Hung around there until 7:30pm and took the train home. Ran into my ex-girlfriend at the Warrnambool train station and had to share a bus with her, but we didn't talk, and only made eye contact once, so that wasn't as bad as it could have been.&lt;br&gt;
&lt;br&gt;
I'm really glad the Geelong Cats won the premiership though, last year they lost, one guy got 'gang-based' (he antagonised a group of burly Geelong supporters in a Hawthorn shirt) and another guy was shot (he really didn't deserve it, nor did anything to instigate it). Geelong is a very unfriendly place to be if they lose the Grand Final, but if they win, they couldn't be more pleasant (we walked on a busy road, stopping traffic, and simply yelled &quot;GO CATS&quot; and got nothing but cheers and hoots from people in the cars).</description>
        </item>
            
    </channel>
</rss>

