<?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>Time Recursion</title>
	<atom:link href="http://www.timerecursion.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.timerecursion.com</link>
	<description></description>
	<lastBuildDate>Mon, 23 Aug 2010 20:35:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Beginner&#8217;s Guide: SIMPROCESS Expressions</title>
		<link>http://www.timerecursion.com/experience/beginners-guide-simprocess-expressions/</link>
		<comments>http://www.timerecursion.com/experience/beginners-guide-simprocess-expressions/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 20:17:48 +0000</pubDate>
		<dc:creator>Primož</dc:creator>
				<category><![CDATA[Experience]]></category>
		<category><![CDATA[expressions]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[SIMPROCESS]]></category>
		<category><![CDATA[simulation]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.timerecursion.com/?p=318</guid>
		<description><![CDATA[Introduction If you ever needed to model, analyze or simulate a process, there is a fairly big chance that you&#8217;ve found yourself working with something called SIMPROCESS. Since this isn&#8217;t that kind of software that can be found on everybody&#8217;s computer, you&#8217;re either a student at a University, or working in a company that wants [...]]]></description>
			<content:encoded><![CDATA[<h1>Introduction</h1>
<p>If you ever needed to model, analyze or simulate a process, there is a fairly big chance that you&#8217;ve found yourself working with something called SIMPROCESS. Since this isn&#8217;t that kind of software that can be found on everybody&#8217;s computer, you&#8217;re either a student at a University, or working in a company that wants to simulate their production cycle, for example. Now, assuming that you&#8217;re trying to simulate something a bit more complex than a donut stand, I&#8217;m quite sure you&#8217;ve been forced to use the built in Expressions, which tend to generate a myriad of illogical complications, without giving you the proper lead as to where the problem lies. Additionally, when trying to look-up the problem in the manual, you don&#8217;t find anything useful, or at best a hint that what you&#8217;re trying to do is indeed possible, but there is no explanation on how to actually do it. What is left is to either learn it by yourself through trial and error, or by reading this guide I put together, and maybe finding what you&#8217;re looking for. <span id="more-318"></span></p>
<h1>Basics</h1>
<p>Almost every object that can be placed within the simulation contains it&#8217;s own <strong>Expressions</strong> tab, which gives you further possibilities to write your own code snippets for various actions (Start/End of the simulation, Accept/Release Entity, and others) that execute when that specific action happens. The programming language used for the expressions should be powerful enough for most of the problems, but if that&#8217;s not the case, you have the possibility to include your own external scripts.</p>
<h1>Syntax</h1>
<p>Let&#8217;s start at the beginning. Simprocess Expressions is a script language, so you can forget about classes and methods right away. It comes with some inbuilt functions, that are very handy for accessing data about various Entities and processes during the simulation at specific occasions. You can find all of them on the left side of the expression view, but it takes some time to get a hold of what some of them do, and especially how to use them. This is where the validate button comes in. Click it as often as possible! It doesn&#8217;t tell you what&#8217;s wrong, but at least you know you&#8217;ve done something that won&#8217;t work.</p>
<p>Here comes the juicy part of this guide, the stuff that makes this scripting language so different and in some cases even confusing at first.</p>
<h2>Data type definition</h2>
<p>If you ever delved into a programming language, you&#8217;re probably used to start each data type definition by first declaring the data type, and then the name of the variable or constant. Well, here is the other way around.</p>
<pre>
    boozeMoney : REAL;
    boozeMoney := 10.95;
</pre>
<p>Also notice the way variable values are defined. In Simprocess = is the equivalent of == (used for comparison), while := is used for defining the value (instead of = which is more commonly used for this kind of operation).</p>
<p>Another thing you need to watch out for. When you define the value of a REAL, if it&#8217;s a rounded number, let&#8217;s say 5, always write it in the decimal representation: 5.0. The same applies to all instances where you handle real numbers.</p>
<h2>Comments</h2>
<p>One of the most important aspects of every programming language is the ability to write comments. Most languages use a common denominator for comments, the double slash // or /* comment here */, some of them however use different ones # or &#8216;, and there are programming languages that use yet another different approach. Simprocess is one of them.</p>
<pre>
    { Can't wait for the evening!!! }
</pre>
<h2>Statements</h2>
<p>As we&#8217;ve seen, curly brackets are reserved for comments, therefore we don&#8217;t use them after a statement, that is why we need to close each one with a corresponding end statement. Actually, we don&#8217;t use <strong>any</strong> kind of brackets at all! Instead we use a new line to separate the condition from the code that executes when the condition is true.</p>
<pre>
IF time = 2100
   partyMode := TRUE;
END IF
</pre>
<p>Apart from IF, there is also ELSE, ELSIF and WHILE, and probably also FOR, however I&#8217;ve never used it. In case you need to form a more complex decision making structure there is no SWITCH statement to help you, so you have to recur to the good old IF ELSIF ELSE strategy and nesting.</p>
<pre>
IF mood = "overjoyed"
   drinksOnMe := TRUE;
ELSIF mood = "furious"
   rationalBehaviour := 0;
   wreakHavoc := TRUE;
   getArrestedProbability := 78;
ELSE
   IF friendsNearby &gt; 0
       engageInChat := TRUE;
   END IF
   drink := "beer";
END IF
</pre>
<h2>Random number generator</h2>
<p>It took me quite some time to figure out this one. The manuals are not really helpful in this regard, and this functionality is not even listed anywhere. There are actually two functions, one is for integers and the other for real numbers. The setup is pretty straightforward, you just need to enter the correct <a id="aptureLink_IBR2YyGXXb" href="http://en.wikipedia.org/wiki/Distribution%20%28mathematics%29">mathematical distribution</a> and it&#8217;s parameters, and store the result in a variable of your choice.</p>
<p>If you&#8217;re looking for a random number represented as an integer, you&#8217;ll need to use a discrete distribution. And since we&#8217;re trying to make the random function as random as possible, the <a id="aptureLink_XiC7g8dj3H" href="http://en.wikipedia.org/wiki/Uniform%20distribution%20%28discrete%29">discrete uniform distribution</a> is the way to go.</p>
<pre>
    myLotteryTicket := DrawIntegerSample("Uni(0, 10)");
</pre>
<p>The same applies when you&#8217;re looking for a real number, you just have to use the appropriate function.</p>
<pre>
    luckMeter := DrawRealSample("Uni(0, 1)");
</pre>
<p>You can of course use the DrawIntegerSample and DrawRealSample function in combination with any of the other 24 mathematical distributions for other purposes and needs.</p>
<h2>Entities and Resources</h2>
<p>Whenever an Entity passes through an object, you can gather information about that specific Entity, by using predefined attributes, or by attributes you&#8217;ve specified and trigger actions based on what you learned.</p>
<p>Resources are general and follow some basic rules. There are a couple of elements that you can configure to handle resources, but if you&#8217;d like to fine tune the process, you&#8217;ll need to use the expressions.</p>
<pre>
IF Entity.Name = "Dave"
   Entity.pMoney := Entity.pMoney - 5.0;
   IncreaseCapacity("barMoney", 5.0);
ELSIF Entity.Name = "Boss"
   Entity.pMoney := Entity.pMoney + 88.0;
   DecreaseCapacity("barMoney", 88.0);
END IF
</pre>
<h2>Output</h2>
<p>When running a simulation you probably won&#8217;t ever need to use it since it has a considerably big effect on the speed of the simulation, but it comes very handy when you&#8217;re debugging.</p>
<pre>
    OUTPUT("Yeeha, this party rocks!");
</pre>
<h1>Conclusion</h1>
<p>I realize that this guide doesn&#8217;t show all aspects of the Simprocess Expressions, but I feel I&#8217;ve covered most of the topics a beginner would stumble upon when fiddling with this software. And anyway, this scripting language isn&#8217;t meant to be overused. I&#8217;ve tried building a casino simulation with a few colleagues using mostly expressions to simulate four most popular casino games (Roulette, Craps, Blackjack and Slots) including the decision making process of the clients and the simulation (scheduled to simulate 1 year) took nearly one hour to complete. Hopefully this will be useful to someone.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timerecursion.com/experience/beginners-guide-simprocess-expressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Small work&#8221;, big (bull)shit indeed</title>
		<link>http://www.timerecursion.com/maelstrom/small-work-big-bullshit-indeed/</link>
		<comments>http://www.timerecursion.com/maelstrom/small-work-big-bullshit-indeed/#comments</comments>
		<pubDate>Thu, 20 May 2010 21:48:16 +0000</pubDate>
		<dc:creator>Primož</dc:creator>
				<category><![CDATA[Maelstrom]]></category>
		<category><![CDATA[blargh]]></category>
		<category><![CDATA[parliament]]></category>
		<category><![CDATA[protests]]></category>
		<category><![CDATA[slovenia]]></category>
		<category><![CDATA[why oh why]]></category>
		<category><![CDATA[wtf]]></category>

		<guid isPermaLink="false">http://www.timerecursion.com/?p=321</guid>
		<description><![CDATA[I&#8217;m still a little shaken after watching videos, browsing through pictures and reading news and reports from yesterday&#8217;s student protest. I still cannot believe that a horde of drunken students and pupils (most of them even underage!), largely without a proper clue as to the reason of this gathering (except of course of getting drunk [...]]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://www.timerecursion.com/wp-content/gallery/malo-delo/parliament.jpg" title="" class="shutterset_singlepic36" >
	<img class="ngg-singlepic ngg-left" src="http://www.timerecursion.com/wp-content/gallery/cache/36__200x_parliament.jpg" alt="The Parliament" title="The Parliament" />
</a>
I&#8217;m still a little shaken after watching videos, browsing through pictures and reading news and reports from yesterday&#8217;s student protest. I still cannot believe that a horde of drunken students and pupils (most of them even underage!), largely without a proper clue as to the reason of this gathering (except of course of getting drunk and having a day off), did so much damage to the Parliament, hurt many policemen who bravely stood in their way and left a myriad of garbage lying around.<span id="more-321"></span></p>
<p>
<a href="http://www.timerecursion.com/wp-content/gallery/malo-delo/rioting.jpg" title="" class="shutterset_singlepic37" >
	<img class="ngg-singlepic ngg-left" src="http://www.timerecursion.com/wp-content/gallery/cache/37__200x_rioting.jpg" alt="Rioting" title="Rioting" />
</a>
If it wasn&#8217;t obvious to some people before, it&#8217;s painfully evident now that there is something awfully wrong with these youngsters, and our society as a whole, which permits riots like this to happen. I wouldn&#8217;t say anything if this would be a protest against a dictatorship, or against a law or some other kind of enforcement that would hinder our human rights, or in any other way endanger our rights and lives. But this? This was a protest against a law that would actually benefit many students (both life/injury and payment insurance, recognition of work experience, earlier start of pension accumulation) and allocate more money for scholarships! Yes, it has it&#8217;s downsides, but they mostly affect the Student organisations of Slovenia and those that are now reaping big profits from the field of the Student work. And what&#8217;s more, the law hasn&#8217;t even been wrapped up yet and sent into the National Assembly for vote! The talks with the Student organisation of Slovenia were still open!</p>
<p>
<a href="http://www.timerecursion.com/wp-content/gallery/malo-delo/rioting2.jpg" title="" class="shutterset_singlepic38" >
	<img class="ngg-singlepic ngg-left" src="http://www.timerecursion.com/wp-content/gallery/cache/38__200x_rioting2.jpg" alt="Rioting" title="Rioting" />
</a>
Going out, shouting <em>&#8220;f**k the government&#8221;</em>, littering Ljubljana and throwing objects at the police and the Parliament and even setting fires for something like this is just insane and stupid. It throws a bad light on the student population as a whole, discredits those that try to make some progress with peaceful protests and talks and renders all the previous efforts meaningless. Not to mention that now <a href="http://www.facebook.com/group.php?gid=115162861858675" target="_blank">everybody is talking only about this shameful event</a> and not about the very issues the protest was organised for.</p>
<p>And seriously, making so much damage to the parliament? For Christ&#8217;s sake, it&#8217;s only 19 years since we&#8217;ve achieved our independence, and kids of those who fought for our freedom go and deface the very symbol of it?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timerecursion.com/maelstrom/small-work-big-bullshit-indeed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s all about wood and nature</title>
		<link>http://www.timerecursion.com/experience/its-all-about-wood-and-nature/</link>
		<comments>http://www.timerecursion.com/experience/its-all-about-wood-and-nature/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 19:39:58 +0000</pubDate>
		<dc:creator>Primož</dc:creator>
				<category><![CDATA[Experience]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[coal]]></category>
		<category><![CDATA[drawing]]></category>
		<category><![CDATA[eyes]]></category>
		<category><![CDATA[IMWe]]></category>
		<category><![CDATA[pastels]]></category>
		<category><![CDATA[portraits]]></category>
		<category><![CDATA[yeeha]]></category>

		<guid isPermaLink="false">http://www.timerecursion.com/?p=287</guid>
		<description><![CDATA[A few days ago I posted an article about my trip to Rieneck to the IMWe event, but that&#8217;s not all I have to share from that wonderful meeting. During the week I was participating in the Art workshop, where I discovered that my drawing skills aren&#8217;t so bad after all. Here are some of [...]]]></description>
			<content:encoded><![CDATA[
<a href="http://www.timerecursion.com/wp-content/gallery/drawings/primoz-bevk-eyes2.jpg" title="Technique: pencils, coal and pastels / smudging (using fingers)" class="shutterset_singlepic16" >
	<img class="ngg-singlepic ngg-left" src="http://www.timerecursion.com/wp-content/gallery/cache/16_watermark_200x_primoz-bevk-eyes2.jpg" alt="Primož Bevk - Eyes" title="Primož Bevk - Eyes" />
</a>
A few days ago I posted an article about my <a href="http://www.timerecursion.com/experience/imwe-2010/" target="_blank">trip to Rieneck to the IMWe event</a>, but that&#8217;s not all I have to share from that wonderful meeting. During the week I was participating in the Art workshop, where I discovered that my drawing skills aren&#8217;t so bad after all. Here are some of the drawings I did during this time, which I feel have come out quite nicely.</p>
<p>Enjoy!</p>
<p style="text-align: center;"><span id="more-287"></span></p>
<p style="text-align: center;">
<a href="http://www.timerecursion.com/wp-content/gallery/drawings/primoz-bevk-portrait1.jpg" title="Technique: pencils, coal and pastels / smudging (using fingers)" class="shutterset_singlepic17" >
	<img class="ngg-singlepic" src="http://www.timerecursion.com/wp-content/gallery/cache/17_watermark_500x_primoz-bevk-portrait1.jpg" alt="Primož Bevk - Brown eyed girl" title="Primož Bevk - Brown eyed girl" />
</a>

<p style="text-align: center;">
<a href="http://www.timerecursion.com/wp-content/gallery/drawings/primoz-bevk-eye1.jpg" title="Technique: pencils and coal / smudging (using fingers)" class="shutterset_singlepic15" >
	<img class="ngg-singlepic" src="http://www.timerecursion.com/wp-content/gallery/cache/15_watermark_500x_primoz-bevk-eye1.jpg" alt="Primož Bevk - Eye" title="Primož Bevk - Eye" />
</a>
</p>
<p style="text-align: center;">
<a href="http://www.timerecursion.com/wp-content/gallery/drawings/primoz-bevk-tower-window.jpg" title="Technique: pencils and coal / smudging (using fingers)" class="shutterset_singlepic18" >
	<img class="ngg-singlepic" src="http://www.timerecursion.com/wp-content/gallery/cache/18_watermark_500x_primoz-bevk-tower-window.jpg" alt="Primož Bevk - Tower" title="Primož Bevk - Tower" />
</a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timerecursion.com/experience/its-all-about-wood-and-nature/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IMWe 2010</title>
		<link>http://www.timerecursion.com/experience/imwe-2010/</link>
		<comments>http://www.timerecursion.com/experience/imwe-2010/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 08:37:35 +0000</pubDate>
		<dc:creator>Primož</dc:creator>
				<category><![CDATA[Experience]]></category>
		<category><![CDATA[Maelstrom]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[Germany]]></category>
		<category><![CDATA[IMWe]]></category>
		<category><![CDATA[scouts]]></category>
		<category><![CDATA[world]]></category>
		<category><![CDATA[yeeha]]></category>

		<guid isPermaLink="false">http://www.timerecursion.com/?p=284</guid>
		<description><![CDATA[This year I gave myself the best birthday present ever. I took a week off and went to the Internationale Musische Werkstatt (IMWe) in Rieneck, Germany. Initially I had some thoughts about whether or not should I go, but in the end I grabbed the opportunity and departed. And this was, without any doubt, one [...]]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://www.timerecursion.com/wp-content/gallery/general/imwe_2010_group.jpg" title="" class="shutterset_singlepic14" >
	<img class="ngg-singlepic ngg-left" src="http://www.timerecursion.com/wp-content/gallery/cache/14_watermark_550x_imwe_2010_group.jpg" alt="imwe_2010_group" title="imwe_2010_group" />
</a>
This year I gave myself the best birthday present ever. I took a week off and went to the Internationale Musische Werkstatt (IMWe) in Rieneck, Germany.</p>
<p>Initially I had some thoughts about whether or not should I go, but in the end I grabbed the opportunity and departed. And this was, without any doubt, one of the best decisions in my life. I had so much fun, met many new wonderful friends and scouts from all over Europe. It was a week filled with various captivating activities, interesting discussions and chats, and many great moments spent together with other scouts. Simply an amazing experience.<span id="more-284"></span></p>
<p>It&#8217;s only a few days since I returned home from IMWe, but I&#8217;m already filled with sadness and sorrow for not being able to be with my new friends. Now I understand why people keep returning to Rieneck for years and why aren&#8217;t many new faces at this event each year.</p>
<p>This is such a fantastic experience, that is much much more than just a plain international scout gathering. IMWe is a family, which I feel being part of now as well. That&#8217;s why I&#8217;m already impatiently counting the days towards IMWe 2011, which is sadly still far in the future. Well, let&#8217;s hope there will be a reunion somewhere in the vicinity, which I&#8217;ll be able to join.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timerecursion.com/experience/imwe-2010/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Uncle Tony watched the stars</title>
		<link>http://www.timerecursion.com/maelstrom/uncle-tony-watched-the-stars/</link>
		<comments>http://www.timerecursion.com/maelstrom/uncle-tony-watched-the-stars/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 18:36:11 +0000</pubDate>
		<dc:creator>Primož</dc:creator>
				<category><![CDATA[Maelstrom]]></category>
		<category><![CDATA[creativity]]></category>
		<category><![CDATA[fire]]></category>
		<category><![CDATA[poem]]></category>
		<category><![CDATA[poetry]]></category>
		<category><![CDATA[rhymes]]></category>
		<category><![CDATA[stars]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[Uncle Tony]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.timerecursion.com/?p=278</guid>
		<description><![CDATA[I&#8217;ve recently realised it&#8217;s been a long&#8230; heck no, it&#8217;s been a downright dirty and awfully enormous amount of time since I&#8217;ve written a poem. To tell the truth, I haven&#8217;t ever tried writing poetry in English before, but there was a phase during the elementary school during which I was doing this at an [...]]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://www.timerecursion.com/wp-content/gallery/general/sugar-stars-assorted.jpg" title="" class="shutterset_singlepic13" >
	<img class="ngg-singlepic ngg-left" src="http://www.timerecursion.com/wp-content/gallery/cache/13__200x_sugar-stars-assorted.jpg" alt="sugar-stars-assorted" title="sugar-stars-assorted" />
</a>
I&#8217;ve recently realised it&#8217;s been a long&#8230; heck no, it&#8217;s been a downright dirty and awfully enormous amount of time since I&#8217;ve written a poem. To tell the truth, I haven&#8217;t ever tried writing poetry in English before, but there was a phase during the elementary school during which I was doing this at an almost weekly basis (in Slovenian language of course). Now, I&#8217;m no poet, and I&#8217;m fully aware that most of the &#8220;rhymes&#8221; I scribble on paper are only good for providing a faster combustion of the cellulose when setting a fire, but I do get some sudden inspirational flashes that contain a hint of wit I feel it&#8217;s worth sharing.</p>
<p>As it happens, there was an occasion last week, when I suddenly felt (out of boredom) that I need to write a poem about a guy that likes to watch the stars. Since the title might imply that this song is boring, I must disappoint you, this is not the case (well, at least I laughed when writing it), and I feel obliged to warn you, that it&#8217;s not a song to be read to children as a lullaby.<img title="More..." src="http://www.timerecursion.com/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /></p>
<p><span id="more-278"></span></p>
<p style="text-align: center;"><strong>Uncle Tony watched the stars</strong></p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><em>Uncle Tony watched the stars,</em></p>
<p style="text-align: center;"><em>while out shopping, or stealing cars.</em></p>
<p style="text-align: center;"><em>Looking up with an intensive gaze,</em></p>
<p style="text-align: center;"><em>his voice was clear, his eyes ablaze.</em></p>
<p style="text-align: center;"><em><br />
</em></p>
<p style="text-align: center;"><em>Uncle Tony watched the stars,</em></p>
<p style="text-align: center;"><em>drinking whiskey in classy bars.</em></p>
<p style="text-align: center;"><em>Racing &#8217;round in his pickup truck,</em></p>
<p style="text-align: center;"><em>with loaded guns, and explosives packed.</em></p>
<p style="text-align: center;"><em><br />
</em></p>
<p style="text-align: center;"><em>Uncle Tony watched the stars,</em></p>
<p style="text-align: center;"><em>shooting people, starting wars.</em></p>
<p style="text-align: center;"><em>Walking around in his Cowboy attire,</em></p>
<p style="text-align: center;"><em>leaving mayhem and a ball of fire.</em></p>
<p style="text-align: center;"><em><br />
</em></p>
<p style="text-align: center;"><em>Uncle Tony watched the stars,</em></p>
<p style="text-align: center;"><em>chased by the police in their fastest cars.</em></p>
<p style="text-align: center;"><em>With two helicopters right behind,</em></p>
<p style="text-align: center;"><em>a ray of hope for the humankind.</em></p>
<p style="text-align: center;"><em><br />
</em></p>
<p style="text-align: center;"><em>Uncle Tony watched the stars,</em></p>
<p style="text-align: center;"><em>from his cell, through iron bars.</em></p>
<p style="text-align: center;"><em>Heavily guarded in his prison,</em></p>
<p style="text-align: center;"><em>will he change and see the reason?</em></p>
<p style="text-align: center;"><em><br />
</em></p>
<p style="text-align: center;"><em>Uncle Tony watched the stars,</em></p>
<p style="text-align: center;"><em>his mind unchanged, still wishing wars.</em></p>
<p style="text-align: center;"><em>Until the end of the great debate,</em></p>
<p style="text-align: center;"><em>to decide upon his sorry fate.</em></p>
<p style="text-align: center;"><em><br />
</em></p>
<p style="text-align: center;"><em>Uncle Tony watched the stars,</em></p>
<p style="text-align: center;"><em>on a spaceship, bound for mars.</em></p>
<p style="text-align: center;"><em>Where he could see the stars up-close,</em></p>
<p style="text-align: center;"><em>he shed a tear, and blew his nose.</em></p>
<p style="text-align: center;"><em>He finally got for what he craved,</em></p>
<p style="text-align: center;"><em>everyone happy, our existence saved.</em></p>
<p style="text-align: left;">
<p style="text-align: left;">Well, looks like you safely battled your way through this unusually large page. Congratulations! I guess you&#8217;re probably wondering who uncle Tony is? The answer is quite simple, no-one. At least no-one from the real world. And why uncle? Because it sounded better than &#8220;some guy Tony&#8221;. Now who is uncle Tony in my fictional world, well&#8230; that is to be discovered in some future song.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timerecursion.com/maelstrom/uncle-tony-watched-the-stars/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Not so Yummy Pie</title>
		<link>http://www.timerecursion.com/on-the-net/not-so-yummy-pie/</link>
		<comments>http://www.timerecursion.com/on-the-net/not-so-yummy-pie/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 15:09:04 +0000</pubDate>
		<dc:creator>Primož</dc:creator>
				<category><![CDATA[On the Net]]></category>
		<category><![CDATA[akismet]]></category>
		<category><![CDATA[blargh]]></category>
		<category><![CDATA[no ham]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[time recursion]]></category>
		<category><![CDATA[yummy pie]]></category>

		<guid isPermaLink="false">http://www.timerecursion.com/?p=266</guid>
		<description><![CDATA[I follow the Akismet spam statistic of Time Recursion and empty the spam bin quite regularly (about twice a week), mostly because I hate being welcomed to my Dashboard by the message: &#8220;You have 79 new spam comments&#8221; and because I secretly hope that Akismet made a mistake and I did receive a comment with [...]]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://www.timerecursion.com/wp-content/gallery/general/akismet.jpg" title="" class="shutterset_singlepic12" >
	<img class="ngg-singlepic ngg-left" src="http://www.timerecursion.com/wp-content/gallery/cache/12_watermark_550x_akismet.jpg" alt="akismet" title="akismet" />
</a>
I follow the Akismet spam statistic of Time Recursion and empty the spam bin quite regularly (about twice a week), mostly because I hate being welcomed to my Dashboard by the message: &#8220;You have 79 new spam comments&#8221; and because I secretly hope that Akismet made a mistake and I did receive a comment with some content. Sadly I&#8217;m mostly wrong, and this plug-in really does a wonderful job.<span id="more-266"></span></p>
<p>But it really makes you think, how is such a disproportionate ratio between legitimate comments and spam even possible? Especially when you take into account that most of those spam messages (approximately 60% in my case) are not made by bots, but from real people that try to bring traffic to their own website. I understand that my website is quite attractive for advertising through comments since Time Recursion is a do-follow website, but guys, come on! At least write something that&#8217;s related to the post you&#8217;re commenting! If you&#8217;ll insert your website address in the Website field, you&#8217;ll still get the PR juice and if the content of your comment is related to the article I&#8217;ll approve that comment without hesitation, you can be sure of that. After all, I&#8217;m always eager to get some feedback on what I write.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timerecursion.com/on-the-net/not-so-yummy-pie/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A mirror, hammer and a string</title>
		<link>http://www.timerecursion.com/maelstrom/a-mirror-hammer-and-a-string/</link>
		<comments>http://www.timerecursion.com/maelstrom/a-mirror-hammer-and-a-string/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 17:22:58 +0000</pubDate>
		<dc:creator>Primož</dc:creator>
				<category><![CDATA[Maelstrom]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[cards]]></category>
		<category><![CDATA[guitar]]></category>
		<category><![CDATA[magic the gathering]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[reflection]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[stories]]></category>
		<category><![CDATA[sunshine]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[uni]]></category>
		<category><![CDATA[yeeha]]></category>

		<guid isPermaLink="false">http://www.timerecursion.com/?p=255</guid>
		<description><![CDATA[These days I rarely take time to think, theorize, or simply reflect on current problems and my decisions&#8230; reflect&#8230; such a nice word that embraces both time and space. It actually means &#8220;to recreate&#8221; and review. Well, right now I happen to have time to do this. To review things and realign my ambitions and [...]]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://www.timerecursion.com/wp-content/gallery/general/reflection.jpg" title="" class="shutterset_singlepic11" >
	<img class="ngg-singlepic ngg-left" src="http://www.timerecursion.com/wp-content/gallery/cache/11_watermark_200x_reflection.jpg" alt="reflection" title="reflection" />
</a>
These days I rarely take time to think, theorize, or simply reflect on current problems and my decisions&#8230; reflect&#8230; such a nice word that embraces both time and space. It actually means &#8220;to recreate&#8221; and review. Well, right now I happen to have time to do this. To review things and realign my ambitions and plans. Even the weather is appropriate, warm and sunny, a completely different situation compared to the past weekend, and the ambient, music and the tea I&#8217;m drinking, make all of this easier and pleasant.</p>
<p>Yesterday I was suddenly struck by an urge to grab my guitar and play some music. The thing is, my guitar&#8217;s at home, so I borrowed one from one of my friends for a short time. It&#8217;s funny though, I&#8217;ve never felt the need or such a strong desire to play this instrument before. It was always either because I had to practice, or because I didn&#8217;t have anything better to do. This time it was the other way around. And it still is, so I&#8217;m quite anxious to come home this Thursday and put my hands on my guitar. Might aswell take some time to learn to play some new songs.<span id="more-255"></span></p>
<p>And let&#8217;s not forget about the upcoming holidays! Oh, yeah, I foresee some good things will happen during the next week and a half. If nothing else, I won&#8217;t have much work for my university, and I&#8217;ll finally be able to go to a Magic: the Gathering session with my friends. I can&#8217;t believe it&#8217;s been more than a month since we last played MTG, plus, there&#8217;s a couple of stories I&#8217;ve been planning to write and publish on my blog since this summer, but haven&#8217;t got around doing it. Maybe I&#8217;ll finish writing them this time, we&#8217;ll see.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timerecursion.com/maelstrom/a-mirror-hammer-and-a-string/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>From darkness to light</title>
		<link>http://www.timerecursion.com/maelstrom/from-darkness-to-light/</link>
		<comments>http://www.timerecursion.com/maelstrom/from-darkness-to-light/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 13:01:34 +0000</pubDate>
		<dc:creator>Primož</dc:creator>
				<category><![CDATA[Maelstrom]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[blackout]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[light]]></category>
		<category><![CDATA[talkhost]]></category>

		<guid isPermaLink="false">http://www.timerecursion.com/?p=215</guid>
		<description><![CDATA[Guess what? Time Recursion is back! After more than two weeks of complete darkness, the blog is finally lit up. Litterarily, almost like a Christmass tree. My old hosting provider, Talkhost, has ended it&#8217;s free hosting program, so I had to find another one.  It&#8217;s quite sad, really, because in all those years, starting in [...]]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://www.timerecursion.com/wp-content/gallery/general/rays-of-sun.jpg" title="" class="shutterset_singlepic1" >
	<img class="ngg-singlepic ngg-left" src="http://www.timerecursion.com/wp-content/gallery/cache/1_watermark_200x_rays-of-sun.jpg" alt="rays-of-sun" title="rays-of-sun" />
</a>
Guess what? Time Recursion is back! After more than two weeks of complete darkness, the blog is finally lit up. Litterarily, almost like a Christmass tree. My old hosting provider, Talkhost, has ended it&#8217;s free hosting program, so I had to find another one.  It&#8217;s quite sad, really, because in all those years, starting in the middle of August 2004 (that was even before Time Recursion was created), the Talkhost users and staff have become like a second family to me. Regretfully, as you can see, Time Recursion is far from it&#8217;s former shape. I didn&#8217;t have a recent backup, and all I could find was a month old database dump, so all the pictures in the previously posted articles are missing. I&#8217;ll try and find them again, but I fear it&#8217;s going to be an impossible task (except for the ones I took myself). Unless a spark of luck shines in my direction and the Talkhost owner contacts me back with the backup. But that&#8217;s a bit optimistic at this time, I guess.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timerecursion.com/maelstrom/from-darkness-to-light/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to safeguard your gadgets: Introduction</title>
		<link>http://www.timerecursion.com/maelstrom/how-to-safeguard-your-gadgets-introduction/</link>
		<comments>http://www.timerecursion.com/maelstrom/how-to-safeguard-your-gadgets-introduction/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 19:26:13 +0000</pubDate>
		<dc:creator>Primož</dc:creator>
				<category><![CDATA[Maelstrom]]></category>
		<category><![CDATA[cellphone]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[retrieval]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[theft]]></category>
		<category><![CDATA[theft protection]]></category>

		<guid isPermaLink="false">http://www.timerecursion.com/?p=213</guid>
		<description><![CDATA[Nowadays we&#8217;ve become quite dependant on various electronic gadgetry, and there is hardly a day, that we don&#8217;t text, call, or in any other way contact somebody, look up for various information, or simply play around with our multi-functional cellphone, mp3, laptop or who-knows what else. Because of lightning fast advancements in high-technology, most of [...]]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://www.timerecursion.com/wp-content/gallery/general/iphone-ok.png" title="" class="shutterset_singlepic23" >
	<img class="ngg-singlepic ngg-left" src="http://www.timerecursion.com/wp-content/gallery/cache/23_watermark_200x_iphone-ok.png" alt="iphone-ok" title="iphone-ok" />
</a>
Nowadays we&#8217;ve become quite dependant on various electronic gadgetry, and there is hardly a day, that we don&#8217;t text, call, or in any other way contact somebody, look up for various information, or simply play around with our multi-functional cellphone, mp3, laptop or who-knows what else. Because of lightning fast advancements in high-technology, most of this gadgets pose with a colorful palette of options and features (which are mostly without any practical value, but do help us shovel away more time, trying to figure out what to do with them), luring us into entrusting them with more of our personal data and thus making themselves even more indispensable.</p>
<p>This is good in a way, since we have instant access to almost everything we need wherever we go, but what happens if we loose, misplace, or God forbid, someone steals our precious cellphone? In that case my friends, we&#8217;re on a roller-coaster that has a stinky pond as a final stop, in other words, we&#8217;d be better off losing our wallet.</p>
<p><span id="more-213"></span>But fear not, not everything is lost. Thankfully there exist programs that&#8217;ll help you find your lost/stolen electronic property and possibly even bring the thieves to justice. How do they work? Most smart phones have GPS technology, which can be used in conjunctions with the retrieval software to send information about the device&#8217;s location. If that&#8217;s not the case, it&#8217;s possible to define the phone&#8217;s location through signal strength analysis from the few nearest stations. It&#8217;s less precise, but nonetheless very helpful. But what about flash drives, cameras or even laptops? It gets a bit harder with those, but essentially, you receive the IP address of the computer they&#8217;ve been connected to, with which you can (usually it&#8217;s the police who does that), if you get a permit, obtain the postal address of the person it was used by at that time.</p>
<p>Most of such services require an annual fee to use their software, but there are some other alternatives you might want to consider as well. For example, <a href="http://juststolen.net/" target="_blank">JustStolen</a> is a service set up by a group of police officers, that offers you a place to store your gadget&#8217;s serial identification number, which makes the process of finding the owner of stolen property quicker and easier.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timerecursion.com/maelstrom/how-to-safeguard-your-gadgets-introduction/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Water, I need water!</title>
		<link>http://www.timerecursion.com/maelstrom/water-i-need-water/</link>
		<comments>http://www.timerecursion.com/maelstrom/water-i-need-water/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 13:56:29 +0000</pubDate>
		<dc:creator>Primož</dc:creator>
				<category><![CDATA[Maelstrom]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[concept]]></category>
		<category><![CDATA[guitar]]></category>
		<category><![CDATA[hot]]></category>
		<category><![CDATA[mladi.net]]></category>
		<category><![CDATA[symfony]]></category>
		<category><![CDATA[thinking]]></category>
		<category><![CDATA[water]]></category>

		<guid isPermaLink="false">http://www.timerecursion.com/?p=209</guid>
		<description><![CDATA[The rain has softly passed our soil during night time, but just barely decreased the temperature and increased the unbearable humidity. The lack of a proper air conditioner only adds to the alarmingly high level of boredness and at the same time, the wish for doing nothing at all all day. On the bright side, [...]]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://www.timerecursion.com/wp-content/gallery/general/water.jpg" title="" class="shutterset_singlepic24" >
	<img class="ngg-singlepic ngg-left" src="http://www.timerecursion.com/wp-content/gallery/cache/24_watermark_200x_water.jpg" alt="water" title="water" />
</a>
The rain has softly passed our soil during night time, but just barely decreased the temperature and increased the unbearable humidity. The lack of a proper air conditioner only adds to the alarmingly high level of boredness and at the same time, the wish for doing nothing at all all day.</p>
<p>On the bright side, I&#8217;ve finally sweeped off the dust off my guitar and started practicing again. After almost two years of hiatus I&#8217;m actually pleasantly surprised that I still remember all chords that I knew before and can find most of their scales without having to look them up. There is one downside though. My fingers aren&#8217;t used to the metallic strings of my acoustic guitar anymore, so the progress is quite slow. It&#8217;ll also take some time to regain my previous agility in changing chords and staying in rhythm, which is proving to be quite a pain in the ass right now.</p>
<p><span id="more-209"></span>The moving of mladi.net from lunarpages to a more reliable host is also something that is giving some variety and dynamics to this summer. Apparently it&#8217;ll be up to me to come up with a good design to replace the current one and to better reflect our movement to a completely new platform as well. I haven&#8217;t really done much web designing in my life, the one so far (planthefuture.info) sucks, and the promised redesign of Time Recursion appears to be stuck somewhere on an expedition in Himalaya, wearing only shorts, a t-shirt and some old, holey All-Star shoes. Though the concept I came up with so far, looks quite good in retrospect to everything else I&#8217;ve made up to now.</p>
<p>Oh, and there&#8217;s also &#8220;getting familiar with php-symfony&#8221; on my to-do list, so I can help my buddy with the new platform for the website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timerecursion.com/maelstrom/water-i-need-water/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
