<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Retoreris&#039;s Blog</title>
	<atom:link href="http://retoreris.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://retoreris.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Tue, 06 Apr 2010 14:47:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='retoreris.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Retoreris&#039;s Blog</title>
		<link>http://retoreris.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://retoreris.wordpress.com/osd.xml" title="Retoreris&#039;s Blog" />
	<atom:link rel='hub' href='http://retoreris.wordpress.com/?pushpress=hub'/>
		<item>
		<title>My hints for succesfull projects</title>
		<link>http://retoreris.wordpress.com/2009/12/16/my-hints-for-succesfull-projects/</link>
		<comments>http://retoreris.wordpress.com/2009/12/16/my-hints-for-succesfull-projects/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 22:56:21 +0000</pubDate>
		<dc:creator>retoreris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://retoreris.wordpress.com/?p=56</guid>
		<description><![CDATA[I recently watched some projects fail, and as a true engineer I tried to determine what they did wrong. From those failures i deduced 3 very important lessons i want to share with everyone who reads this blog. First lesson : Work smart, not hard OR think before acting: I saw in the latest projects [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=retoreris.wordpress.com&amp;blog=9623106&amp;post=56&amp;subd=retoreris&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently watched some projects fail, and as a true engineer I tried to determine what they did wrong.</p>
<p>From those failures i deduced 3 very important lessons i want to share with everyone who reads this blog.</p>
<p>First lesson :</p>
<p><strong>Work smart, not hard OR think before acting:</strong><br />
I saw in the latest projects that many people just run in without really thinking their decisions through. When starting a project, it&#8217;s best to first just sit down and just think where you wanna go, and were you wanna be at the end of the project. Depending on that you can easily make a rough planning and get a rough idea of the things you want and need to do.</p>
<p>You might think, I already think about all the things I need to do. Yet very often i catch myself doing something without often having thought it through. Many things you take for granted and very often you just dive in and don&#8217;t think the consequences through. Some say it&#8217;s nice to be impulsive, not thinking of everything that could happen. But from experience i learned that for some small things it&#8217;s nice to be impulsive. But very often i had to conclude that if i weren&#8217;t so impulsive, my life would have been a lot easier (or at least with less annoyances ).</p>
<p>But when starting something serious and longterm, think before acting. Many project lessons teach that the sooner you correct an error, the less the cost is of the correction. The longer you wait, the higher the cost. Why? Very simple. When you start, you have endless possibilities of change, you start with a lot of freedom. But then you start to build and build, adding more and more building blocks. Look at it as a house of cards. You start with a few cards on the lowest level, and then you build it and build on it. When you are 3 levels higher and have to correct a mistake made on the first level you have 2 choices. Either you correct the error while trying not to make the house collapse or you you just dig into your house of cards, remove the affected parts of the levels and build again. Now how much effort would it have saved you if you just corrected the mistake when you were still at lvl 1.</p>
<p>So, first advice, think before act and review on a regular basis what you have achieved  (critically review to find flaws). Catching small things now saves you a lot of pain in the end.</p>
<p>Second lesson:<br />
<strong> Thing modular, think layered, think hierarchical.</strong></p>
<p>Everything in the world can be interpreted modules and interfaces between modules.<br />
To start in the spacial axis:<br />
&#8230; &gt; The universe &gt; Galaxies &gt; Solar Systems &gt; planets &gt; continents &gt; countries &gt; &#8230; &gt; molecules &gt; atoms &gt; electron + protons &gt; &#8230;<br />
And on the time axis<br />
&#8230; &gt; millennia &gt; centuries &gt; decades &gt; years &gt; months &gt; weeks &gt; days &gt; hours &gt; minutes &gt; seconds &gt; milliseconds &gt; &#8230;</p>
<p>In  a social context :<br />
inhabitants of a village &gt; inhabitants of a street &gt; inhabitants of a house &gt; adults / children &gt; individuals</p>
<p>Of course these are just a few possibilities of dividing space and time and individuals into modular and hierarchical units.  There are many possible ways to divide the world into hierarchical modules, but you catch my drift here.</p>
<p>And why do we want to do this you&#8217;re asking. Well very simple, to reduce complexity. To look at the entirity of a problem is just too much for any human to handle. So how do we manage to handle those large problems: by layering, modularizing and defining interfaces between the modules. This way you create a nice separation between blocks. Each of them can then be handled separately and with reduced complexity since you have less responsibilities in that single block.</p>
<p>There are countless examples of this approach: the more complex the problem the more important this is. From a cell phone to a orbiting satellite, from a NASA space rocket to a bike, they all exist out of modular parts. And the more complexer, the more modules there are, the larger a hierarchy should be used. In the end every problem can be separated into parts, which can be separated into parts until the solution is almost trivial.  I&#8217;m maybe oversimplifying it, but if you know how to modularize a problem, it is already half solved. Of course that does mean that half the problem is figuring out how to divide the things into modules and how to make those modules work with each other. Again, think about it at the start, think your modularization through, and have a higher chance of going your way.</p>
<p>And a third and last tip i&#8217;m gonna give is the nicest one of all i think:<br />
KISS</p>
<p><strong>Keep It Simple (&amp;/,) Stupid</strong></p>
<p>These past few months i noticed a very important fact. People very often tend to overcomplicate even the simplest of things. People make their lives needlessly complicated, projects get extended because this new highly complex feature just has to be in it.  And what does it causes: that the projects get delayed, people frustrated and money wasted because the new features and the new additions are really unnecessary and totally out of scope and out of realm of possibilities.</p>
<p>This is truly another version of the all known Occam&#8217;s razor, the simplest answer is most likely the correct answer. Do not search for needless complexity. Things are even in their simplest form quite complex so do not try to add to it.</p>
<p>Conclusion:<br />
These are the 3 main guidelines I consider necessary for completing a project of virtually any size. I hope you find these general tips useful. They do seem a bit easy, but although they seem easy, living by them is far from easy. Just like everything in the world, things are complex, but that doesn&#8217;t mean we should not try to simplify our lives and our existence here. If anything it should be a goal to keep things simple!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/retoreris.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/retoreris.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/retoreris.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/retoreris.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/retoreris.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/retoreris.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/retoreris.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/retoreris.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/retoreris.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/retoreris.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/retoreris.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/retoreris.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/retoreris.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/retoreris.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=retoreris.wordpress.com&amp;blog=9623106&amp;post=56&amp;subd=retoreris&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://retoreris.wordpress.com/2009/12/16/my-hints-for-succesfull-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33d0cdd5a77a5e27c40d8e08f7eba7bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">retoreris</media:title>
		</media:content>
	</item>
		<item>
		<title>Freedom and privacy</title>
		<link>http://retoreris.wordpress.com/2009/11/07/freedom-and-privacy/</link>
		<comments>http://retoreris.wordpress.com/2009/11/07/freedom-and-privacy/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 00:37:48 +0000</pubDate>
		<dc:creator>retoreris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://retoreris.wordpress.com/?p=54</guid>
		<description><![CDATA[Today i was reading some news again, and again i came up to some articles i had to write about. The first one is about the refusal of a teacher to be fingerprinted, the second about the scent of fear which made me think of privacy again. So, to start with the woman who refuses [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=retoreris.wordpress.com&amp;blog=9623106&amp;post=54&amp;subd=retoreris&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today i was reading some news again, and again i came up to some articles i had to write about. The first one is about the refusal of a teacher to be fingerprinted, the second about the scent of fear which made me think of privacy again.</p>
<p>So, to start with the woman who refuses to be fingerprinted. In the US, it seems that the government requires people performing certain profession to be fingerprinted. However, some woman starts quoting some little known passage from the bible and then refuse to be fingerprinted, claiming freedom of religion as enough reason not to be fingerprinted, believing that the fingerprint is the mark of the devil.</p>
<p>Now, should we allow this teacher i think it was to not be fingerprinted, and allow religions to create their own set of rules outside of the law? I wonder&#8230; This does seam to be a dangerous road to go down. To what end should a religion be allowed to interfere with the law? Is religion enough to refuse to undergo mandatory inquiries? But where is the limit, where is the end of the line which religion can&#8217;t cross?</p>
<p>Then I start thinking&#8230; if this is granted, i&#8217;m gonna start my own religion. My house is my holy ground. Only people that i want to enter are allowed, all others are in violation of my religion. So should i ever do some illegal activity in my house (definatly not saying i am) and the police knocks on my door, i can refuse them entry based on my religion. Those heathens are not welcome on my holy ground&#8230; Something else. In the recent past, there was some news about many countries negotiating a treaty about copyright enforcement. The agreement appears to be that people that download copyrighted material have to be disconnected from the internet. But my religion dictates a daily connection to the giant network we call the internet. So they&#8217;re in violation of my religion. Even stronger. My religion says that we should share all the stuff that we currently consider intellectual property. So the law is in violation of my religion, and since there is a freedom of religion, my religion wins. These are many more nice examples. What if i start adhering to the ancient religions of the south america&#8217;s with their human sacrifice. Should murder be allowed if my religion dictates it? This might be over the top. I guess i could draw the line at religions that respect the basic human rights.</p>
<p>Law is already based on religion in most if not all countries, but the Law should stand above religion in each and every case. There can be no discussion of this principle. The Law should be universal. The Law should be logic above all else. But what are logical laws.  A simple start might be the basic human rights. But i read article 3 that says all persons should be free and secure, which is a contradiction in a way. Basicly the law itself is a limitation of my liberties, so i am not entirely free. Of course free is a very general concept.</p>
<p>However we&#8217;re very far from one universal law, since at the moment we&#8217;re still all nicely divided in our little countries. The law is still a flexible concept depending on location. And the fact is that many laws are based on the religious views of the people that made the laws. Some things are allowed due to our religion, but many things aren&#8217;t. Me myself looking at my own laws, it&#8217;s a bit hard to detect typical religious laws. One possibility I already told about is the marriage. It is kind of a artificial living arangement that was locked in our society by the holy ceremony of marriage. And i doubt that many other possible forms of living together are supported by the law. Another example of this is the gay marriage. Because of religion it was impossible for gay couples to marry in most if not all countries. These days though there is some improvement on that field.</p>
<p>However, looking to other societies it is easier to detect religious based laws. Especially in Muslim countries. Many laws are based on their religion. For example many laws still exist that puts women in a weaker legal position, because of religion. Of course not only in Muslim countries this still exists, but also in many other countries.</p>
<p>The point I want to make though, is that freedom is one of the costs of justice, a cost of security. If everybody is free to do as they please, nobody is safe, nobody can live safe. By giving up some freedoms, we gain justice, we gain security. A simple example is one of the fundamental freedoms of the USA. The right to carry firearms. What if this right wouldn&#8217;t be  a right, but the right is actually limited to the government forces such as army and police. Probably the amount of firearms related deaths in the USA would be a lot lower due to the fact that there are almost no firearms in circulation. Hence, by giving up freedom, we gain security.</p>
<p>Then i move on to the second series of articles. Today i read that it is possible to detect a humans emotion by their scent. More specifically it should be possible to &#8220;smell fear&#8221;. So this is yet another way people can get information about others. One other way our privacy is compromised. Not even our feelings are private anymore.  This would have an important possible use to detect terrorists going to do a suicide bombing, and probably also students going to an exam.</p>
<p>Fact is again, the more information the government has about a person, such as his current state of emotion, the better they can prevent crime. So how much privacy should one have. If a person enters my house, what should i know about him. At least i should be allowed to know his name i guess. Maybe the place he lives, maybe who he&#8217;s married to. Probably if he&#8217;s on facebook/twitter/linkedin i can learn all this allready and more. I can learn his interests, his friends, his opinions. Something else i recently read on a news website is that the european government wants to start road toll based on the time and place you take roads. To achieve this the cars have to send their GPS location continuously to a back-end server. So in theory it should be perfectly possibly for the government to track all cars motion.  Should or shouldn&#8217;t this be allowed, i have no idea.</p>
<p>Something else i recently read was an articly about GPS tracing collars for pets, and also gps watches for children.  Basicly the idea is that we equip persons or animals with gps tracers so that we can check where they are at all time when need be. If you look at the possibilities, they are endless. No more children that can go missing, we can track &#8216;m at all time.  Also i read that some important people in risky countries have gps chips implanted to trace them in case of kidnap.  I wonder how long it&#8217;ll be before we all will have to get such a tracer.  If we&#8217;ere equipped with such a tracer, probably coupled with a personal health monitor, i think physical crimes would drop very fast. Who shot/beat/kidnapped/robbed person A: simple, check the logs and you&#8217;ll probably always have your answer. And with personal health monitoring, if something were to happen, emergency services would be notified within seconds thus possibly saving lifes.</p>
<p>So, how long till this is reality. I don&#8217;t know if it&#8217;s probable in the near future. To many privacy related issues i guess. I think though to get security, to get justice, you need correct information. And the more correct information is available about everyone, the safer we all are. But i hope you readers really start think about these things. We&#8217;re living on a wave of revelations and innovations. We can&#8217;t really stop it.  We&#8217;ll just have to try to steer a bit and see where we end up.</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/retoreris.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/retoreris.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/retoreris.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/retoreris.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/retoreris.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/retoreris.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/retoreris.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/retoreris.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/retoreris.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/retoreris.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/retoreris.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/retoreris.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/retoreris.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/retoreris.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=retoreris.wordpress.com&amp;blog=9623106&amp;post=54&amp;subd=retoreris&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://retoreris.wordpress.com/2009/11/07/freedom-and-privacy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33d0cdd5a77a5e27c40d8e08f7eba7bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">retoreris</media:title>
		</media:content>
	</item>
		<item>
		<title>What we can and cannot do</title>
		<link>http://retoreris.wordpress.com/2009/10/17/what-we-can-and-cannot-do/</link>
		<comments>http://retoreris.wordpress.com/2009/10/17/what-we-can-and-cannot-do/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 22:35:07 +0000</pubDate>
		<dc:creator>retoreris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://retoreris.wordpress.com/?p=41</guid>
		<description><![CDATA[Tonight i sit here, wondering about the elements. I&#8217;m looking at the thunder which lights up this nights sky. Listening to the wonderful sound of the rain, pouring down on the local roads and rooftops. It&#8217;s amazing if you stand still to observe it. Every drop in it&#8217;s own way is unique, even though we [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=retoreris.wordpress.com&amp;blog=9623106&amp;post=41&amp;subd=retoreris&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><!-- 		@page { size: 21cm 29.7cm; margin: 2cm } 		P { margin-bottom: 0.21cm } --></p>
<p style="margin-bottom:0;">Tonight i sit here, wondering about the elements. I&#8217;m looking at the thunder which lights up this nights sky. Listening to the wonderful sound of the rain, pouring down on the local roads and rooftops. It&#8217;s amazing if you stand still to observe it. Every drop in it&#8217;s own way is unique, even though we can barely see them. Every lightning bolt follows it&#8217;s own unique path, makes its own unique sound. Some loud, some quiet, depending on how far they are away from me.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Looking at this awesome and fearsome show of nature, you start to think. How much can or can&#8217;t I do. A few dozen years ago, no one would ever have thought that we would be able to shape the weather to our own needs. How could we interfere or control such complex mechanics as the weather. The weather has always been there, it will always remain. It might change but it&#8217;ll always be there. It is immense, all powerful, everlasting, eternal.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">And yet, here we are a few decades later. What has changed, not that much. And already we begin to be able to manipulate the weather to our own needs. Well, at least that is what the Chinese want us to believe. During the Olympic games and their national holiday a few days ago, they claimed that they manipulated the weather so it wouldn&#8217;t rain. How much of that is true and how much of that is fabricated, nobody knows.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">I remember very great people looking at the rain pouring down, and realizing how insignificant they were. Looking at the lightning and realizing how weak they were. I&#8217;m starting to look at it, and I&#8217;m starting to realize how powerful we have become. We can at this time manipulate the weather in a very limited fashion. Doesn&#8217;t it seam logical to assume that in a few decades we&#8217;ll be able to control the weather altogether?</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">And what then, what else of nature would be within our control. There is so much we can do, and yet so little. We can tell time to thousands of a second accurate, we can measure distance in the lengths of electrons, we can bend and trap light and so much more. We can visualize particles that are a hundred of the radius of a hair. And yet, there is still so much we can&#8217;t do so much that isn&#8217;t within our control. We can&#8217;t fight all diseases. We can&#8217;t instantly be transported across the globe. We can&#8217;t fly faster then a few 1000 km per hour. We can&#8217;t solve global warming. There is much we can&#8217;t do, and yet still so much we also can do.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">To go deeper into that global warming item. I&#8217;ve read and heard so much about global warming, read so many dooms-day scenario&#8217;s. Will it come to pass, who am I to say. I just know that our capabilities just increase and increase. Our understanding of the delicate balance of nature only increases with every passing day. We learn more about the way the world works, the way we ourselves work, that soon, there will be very little unknowns left. Every day we find new answers to new problems. Every day we gain some new insight into the world. What I honestly believe is by the time push comes to shove, our insight will allow us to handle what needs to be handled.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Believing in science works wonders for your peace of mind. It&#8217;s almost like believing in God, except science actually proved itself up to expectations time and again. Believing in science, is believing in ourselves. But what is science exactly. It&#8217;s very hard to define.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Apparently it comes from the Latin “scientia” which means knowledge. So science is what we know.  Practising science is expanding what we know, and applying what we know. At least this seams to be an accurate description. And what do we know? What we know is what our predecessor&#8217;s have told us, and whatever we generated ourselves. Knowledge is the idea&#8217;s of our ancestors, that they proved and since passed the critical review of countless people who crave knowledge. Knowledge is not something individual, it&#8217;s something social. Current knowledge is all the thoughts and information stored in the brains of all of us as a collective. Knowledge thus is something social.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">So in the end, what challenges can&#8217;t we handle, where lies the limit of human possibilities. Where lies the limit of what we can or cannot do. To be honest, I think we&#8217;ll go as far as we can go. We&#8217;ll try to manipulate everything, from playing with planets, till playing with quarks. What we can do, well in the end it&#8217;ll depend on the laws of physics. We can&#8217;t do what cannot be done. (yes a nice evident truth). However, it&#8217;s like some math problems. We know what can be done, but do we really know what cannot be done? We believe that certain things cannot be done. We know that certain things have not been done (at least on this planet as far as we can tell to this date). But truly know that something can not and will not be done, that is like driving through long country roads. You see the end of the road ahead, and you get closer and closer to it. But when you finally reach the end of the road, you see the end is just a turn, and the road continues for miles still.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">So, where does that leave us. Well, depends, what do you want to do. You can either just be happy with the way things are or you can try to add one to our general body of knowledge, add one to our way of understanding the world. What we can do, we known, but what we will be able to do, we can only dream. And strangely enough, what we are able to do tomorrow, we&#8217;re already dreaming today, so dream big, dream wild, dream to infinity.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/retoreris.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/retoreris.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/retoreris.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/retoreris.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/retoreris.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/retoreris.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/retoreris.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/retoreris.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/retoreris.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/retoreris.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/retoreris.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/retoreris.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/retoreris.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/retoreris.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=retoreris.wordpress.com&amp;blog=9623106&amp;post=41&amp;subd=retoreris&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://retoreris.wordpress.com/2009/10/17/what-we-can-and-cannot-do/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33d0cdd5a77a5e27c40d8e08f7eba7bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">retoreris</media:title>
		</media:content>
	</item>
		<item>
		<title>immortality</title>
		<link>http://retoreris.wordpress.com/2009/10/01/immortality/</link>
		<comments>http://retoreris.wordpress.com/2009/10/01/immortality/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 18:53:04 +0000</pubDate>
		<dc:creator>retoreris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://retoreris.wordpress.com/?p=32</guid>
		<description><![CDATA[I just said yesterday, immortality is next, and what do we read today: in 50 years we&#8217;ll all be pretty much immortal http://www.computerworld.com/s/article/9138726/Nanotech_could_make_humans_immortal_by_2040_futurist_says To sum it up: Today we&#8217;re starting to develop means to artificially combat diseases with nano technology (cancer mostly). This trend will undoubtably only increase in the coming years, till a point [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=retoreris.wordpress.com&amp;blog=9623106&amp;post=32&amp;subd=retoreris&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just said yesterday, immortality is next, and what do we read today: in 50 years we&#8217;ll all be pretty much immortal</p>
<p>http://www.computerworld.com/s/article/9138726/Nanotech_could_make_humans_immortal_by_2040_futurist_says</p>
<p>To sum it up:<br />
Today we&#8217;re starting to develop means to artificially combat diseases with nano technology (cancer mostly). This trend will undoubtably only increase in the coming years, till a point that all biological cause for dying (like diseases) will be pretty much a thing of the past. Aging might also be fixed when we really get a grasp of all the processes involved, if we don&#8217;t already.</p>
<p>So, that leaves us with an eternity to spend together. If you thought overpopulation was bad now, just wait till there is no or very little population exit.  Numbers will just keep rising and rising. Soon we will have no choice but to move some people to the oceans, the moon and maybe even mars. Wouldn&#8217;t be so big a leap to be able to build self-sustaining space ships. Since what really is necessary to survive. Nothing more and nothing less as energy.</p>
<p>Energy will be the resource of the next 100-200 years, probably mostly in the form of electricity if no better way of storing and transporting energy is discovered by then. (Who knows, maybe we can just fire compact lasers one day to transmit energy <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ).This will be the most crucial issue that needs to be figured out i think. All technology needs some form of energy provision. Nano bots need energy from somewhere, humans need it from somewhere, machines need it from somewhere. If we were to have clean and abundant energy a lot of problems would just go away. we&#8217;d be able to grow food around the clock, or at least create enough nutrients to survive.</p>
<p>Anyway, back to immortality. What would we do when we&#8217;re all immortal, we couldn&#8217;t very well keep on making children for the rest of our lives. Maybe artificial castration on nanobot implementation would be an answer. It would seem fitting, giving up your ability to create life to gain eternal life. Of course how would we repopulate the planet if something tragic were to happen. How would we survive if some global pandemic were to hit that wouldn&#8217;t be solved by our nanobots. Who knows, so many things of the future. Would be quite nice. Carry one child or even none at all and then inject yourself. You can just have sex without any fear of getting pregnant. You don&#8217;t even have to worry about STD&#8217;s etc, since your nice nano friends will just track those down and eliminate them.</p>
<p>How would our society look like in 100 years if we attain immortality. Can we still live like we do now. Can the law still work like it does now. More and more things will go automatic, so there won&#8217;t be much things that still needs humans involved, we can spend our time doing absolutely nothing but gaming and entertaining ourselves. although we would still need to have research i guess, going where no human has gone before and stuff like that.</p>
<p>Much of what is now might not be what it will be. For example, marriage. Marriage is a bond between two people to form a small entity in order to procreate and raise children, grow old together and die together. But what if the growing old and dieing part isn&#8217;t going to happen anymore.  Is there still a need for the small group of people. Why not expand it to include more people. Would be nice if the living together thing wouldn&#8217;t be something exclusive.  I once saw in a sci fy program a civilisation that were to have something very similar. Instead of just man and wife, you had men and women living together in a single household, loving each other, being close to each other. Another example is the Aiel race in the popular book series &#8220;wheel of time&#8221;. One man is allowed to have several women there (hmm, would be nice <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ).  Then i think why not expand it a bit further. Of course to extend your little household you&#8217;d have to have general unanimous consensus of all men and women in it. Only fair no.  Personally i&#8217;d like to see way more women in my personal little household, but that&#8217;s just me <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )</p>
<p>It will also be quite interesting though to see what will happen on the dark side of man . Remember, most things can much easier be used to destroy as to construct. How much easier would it be to send a flying robot the size of a bee to someone, inject him with nanobots and then just wait and watch them die without many things that can be done about it. Maybe EMP, but even that&#8230; Ow you could make it hurt so much just by keeping stimulating his pain parts in his brain. The cruel people we are.  The perfect assassination, nobody can see that it was you, since the nanobots will be a pretty common tool. Anyone who would have some programming skill might be able to make &#8216;m do stuff. So just a robot the size of a bee that will kill you. War will never be the same.</p>
<p>Conclusion, the assumptions on which we have based our entire existence are changing beneath us. The knowledge we have of the world isn&#8217;t the as it was a few decades ago, let alone a few hundred  our thousand years ago. Our values need to change and will change. There is no question there. We need to adapt to this change.</p>
<p>Things are changing. Where it will end, nobody knows. The only thing i know is that i&#8217;m here, and really trying to enjoy the ride.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/retoreris.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/retoreris.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/retoreris.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/retoreris.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/retoreris.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/retoreris.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/retoreris.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/retoreris.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/retoreris.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/retoreris.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/retoreris.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/retoreris.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/retoreris.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/retoreris.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=retoreris.wordpress.com&amp;blog=9623106&amp;post=32&amp;subd=retoreris&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://retoreris.wordpress.com/2009/10/01/immortality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33d0cdd5a77a5e27c40d8e08f7eba7bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">retoreris</media:title>
		</media:content>
	</item>
		<item>
		<title>Life without a heartbeat</title>
		<link>http://retoreris.wordpress.com/2009/09/30/life-without-a-heartbeat/</link>
		<comments>http://retoreris.wordpress.com/2009/09/30/life-without-a-heartbeat/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 19:26:27 +0000</pubDate>
		<dc:creator>retoreris</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://retoreris.wordpress.com/?p=30</guid>
		<description><![CDATA[There is something really interesting passing me by today on my daily browsing through the worlds scientific news. There now lives a person on this earth that does not have a heartbeat. http://www.technologyreview.com/biomedicine/17523 Believe it, i this is not a hoax (i think, who knows how accurate these things are, but i chose to believe [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=retoreris.wordpress.com&amp;blog=9623106&amp;post=30&amp;subd=retoreris&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There is something really interesting passing me by today on my daily browsing through the worlds scientific news. There now lives a person on this earth that does not have a heartbeat.</p>
<p>http://www.technologyreview.com/biomedicine/17523</p>
<p>Believe it, i this is not a hoax (i think, who knows how accurate these things are, but i chose to believe &#8216;m). It is thus possible for a person to have an entirely artificial heart that does exactly the same thing as our own heart. Only a few differences. One, it doesn&#8217;t beat, so you don&#8217;t have a heartbeat, and two, it can be replaced. So we&#8217;ve come to a point where your heart most likely won&#8217;t be the part that fails when you die, only a few million parts left to go <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>But this brings me to something i think about sometimes. How long will we continue to live as unaltered human beings of only flesh and blood. Today we can make these hearts, way a few years, we can make a liver and kidneys. Some more decades stomach, bit later intestines and longs. K, it might take a bit longer to just totally replace a brain, but i wonder whether there&#8217;ll be time or place when we just transplant our own consciousness into a fully artificial design.<br />
No Way, Sci fi ! Dreams! Sacrilege!.</p>
<p>Maybe Maybe.<br />
I know one thing, this evolution will continue to go on and on. How far it&#8217;ll go, who knows.<br />
Next stop, immortality !</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/retoreris.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/retoreris.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/retoreris.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/retoreris.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/retoreris.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/retoreris.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/retoreris.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/retoreris.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/retoreris.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/retoreris.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/retoreris.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/retoreris.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/retoreris.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/retoreris.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=retoreris.wordpress.com&amp;blog=9623106&amp;post=30&amp;subd=retoreris&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://retoreris.wordpress.com/2009/09/30/life-without-a-heartbeat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33d0cdd5a77a5e27c40d8e08f7eba7bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">retoreris</media:title>
		</media:content>
	</item>
		<item>
		<title>Pages</title>
		<link>http://retoreris.wordpress.com/2009/09/27/pages/</link>
		<comments>http://retoreris.wordpress.com/2009/09/27/pages/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 01:19:54 +0000</pubDate>
		<dc:creator>retoreris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://retoreris.wordpress.com/?p=27</guid>
		<description><![CDATA[I&#8217;ve added a few pages to this blog. I don&#8217;t really know how to use all the possibilites of this blog so i&#8217;ll just add pages of the things i find important and general enough that they deserve to be high up on my blog for a long time. These pages are about religion and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=retoreris.wordpress.com&amp;blog=9623106&amp;post=27&amp;subd=retoreris&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve added a few pages to this blog. I don&#8217;t really know how to use all the possibilites of this blog so i&#8217;ll just add pages of the things i find important and general enough that they deserve to be high up on my blog for a long time.</p>
<p>These pages are about religion and reasons to live and act.</p>
<p>The first page is about why believing in a deity is irrelevant for your afterlife. It doesn&#8217;t matter what you belief i think, but rather why you do the things you do. At least to be allowed into heaven.</p>
<p>The second page is about the butterfly effect and the legacy that we all leave behind.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/retoreris.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/retoreris.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/retoreris.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/retoreris.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/retoreris.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/retoreris.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/retoreris.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/retoreris.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/retoreris.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/retoreris.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/retoreris.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/retoreris.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/retoreris.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/retoreris.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=retoreris.wordpress.com&amp;blog=9623106&amp;post=27&amp;subd=retoreris&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://retoreris.wordpress.com/2009/09/27/pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33d0cdd5a77a5e27c40d8e08f7eba7bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">retoreris</media:title>
		</media:content>
	</item>
		<item>
		<title>The english/worlds language</title>
		<link>http://retoreris.wordpress.com/2009/09/23/the-englishworlds-language/</link>
		<comments>http://retoreris.wordpress.com/2009/09/23/the-englishworlds-language/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 21:52:51 +0000</pubDate>
		<dc:creator>retoreris</dc:creator>
				<category><![CDATA[The world]]></category>

		<guid isPermaLink="false">http://retoreris.wordpress.com/?p=8</guid>
		<description><![CDATA[My next post will be about the english language. This will be a post in which i try to arguement why we should all learn english. Ironically everyone of you knows english, otherwise you wouldn&#8217;t be able to read it. Many people today allready know english. I&#8217;ve travelled a bit around the world, and whenever [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=retoreris.wordpress.com&amp;blog=9623106&amp;post=8&amp;subd=retoreris&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My next post will be about the english language. This will be a post in which i try to arguement why we should all learn english. Ironically everyone of you knows english, otherwise you wouldn&#8217;t be able to read it.</p>
<p>Many people today allready know english. I&#8217;ve travelled a bit around the world, and whenever i came somewhere where they didn&#8217;t understand my native tongue, i just had to help myself with english. And the strange thing is, in most places where i came this actually worked. Granted, my experiences don&#8217;t span the globe, but i have met people from many different nations all across the world, and the best way i could communicate with them, was by using english.</p>
<p>In the ideal case, the entire world would be able to speak english and in my hope, someday they will speak english and only english. I hear all those people crying about culture allready. But remember, so many languages have existed and disappeared, some even quite recently. So what makes these languages so special in the grand scheme of things. The fact that they are used at the moment doens&#8217;t mean that they should forever be used.</p>
<p>If we trully want to be able to all live on an equal footing, we all have to speak english as our native tongue. This would allow the world to simplify so much. Only one version of all the texts of the worlds, no need for translation and re-interpretation of that translation. We would all be able to just write and say what we think, and all would be able to understand it. Granted, there might still be different dialects in the english language and different interpretation of words. But since we&#8217;re moving towards a global village, i think or would like to believe, that they would all evolve towards one interpretation of the same sentence.<br />
We lost our past, but gained a future, where whatever i say, can be understood accuratly by all. All the knowledge in the world would be at the tips of our finger, all you&#8217;d need is a single connection to our global repository of information and you&#8217;d be set. No &#8220;sorry, not for your language&#8221; or &#8220;sorry, no such version&#8221; anymore.</p>
<p>Granted, there would be a significant unemployment downside. All the translation offices in the world would have to close their doors  and the translators have to become history teachers. But on the upside, all the useless work that has to be done, disappears. Imagine what all those people could have done instead of just blindly translating one text into another. They could have helped cure cancer, or in absence of that, made more food to solve the starvation problem in the world.</p>
<p>No longer would there be any mistranslations and misinterpretation. How many wars/fights might have been fought in the past because one person didn&#8217;t understand the other, because one could hear what the other was saying. If you trully want to help peace, you have to help understanding, and which better way to improve understanding each other as to speak one language.</p>
<p>Now, why english and not chinese or french or russian or german or whatever. Well, as i allready said english is allready spoken by many people in the world. It is the de facto language of the world. All international plane trafic is done in english, most international means of travel are translated in english, the worlds knowledge repository lives and breathes in english. So why should we try to get something else. Let the selection do it&#8217;s course, let the weak languages die out and have the strongest survive, thrive and multiply.</p>
<p>So, what can we do to get to this nice goal. Honestly, i have no idea. I try to do a bit by writing meaningless posts such as this to get people to think about it. Hopefully someone will read it, and talk about it with his friends / collegues, and this idea will spread the globe. So talk about it sometimes with people. Maybe even translate this post in your local language and distribute it. I don&#8217;t know what will / should happen. I can but hope.</p>
<p>And most importantly, think about it, don&#8217;t just blindly follow what i say, but think about the ups and downs, i can only write so much in these things but it&#8217;s up to you. Think about how you want your world to look like in 20-50-100 years. Are you happy with the way it is, or do you see a better solution. I am curious to see what others think <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Maybe one day i&#8217;ll move to a site with a forum so there can be more of a discussion, but untill then the comments will have to do, if there are any readers at all out there.</p>
<p>Good night</p>
<p>retoreris</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/retoreris.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/retoreris.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/retoreris.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/retoreris.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/retoreris.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/retoreris.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/retoreris.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/retoreris.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/retoreris.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/retoreris.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/retoreris.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/retoreris.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/retoreris.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/retoreris.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=retoreris.wordpress.com&amp;blog=9623106&amp;post=8&amp;subd=retoreris&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://retoreris.wordpress.com/2009/09/23/the-englishworlds-language/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33d0cdd5a77a5e27c40d8e08f7eba7bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">retoreris</media:title>
		</media:content>
	</item>
		<item>
		<title>government secrets.</title>
		<link>http://retoreris.wordpress.com/2009/09/23/government-secrets/</link>
		<comments>http://retoreris.wordpress.com/2009/09/23/government-secrets/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 21:19:57 +0000</pubDate>
		<dc:creator>retoreris</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://retoreris.wordpress.com/?p=5</guid>
		<description><![CDATA[I read to day two very interesting news posts on wired.com, which i think is a respectable news site. It was the first time i visited the site as far as i remember, but it seamed a good source of information. The first article is about the FBI&#8217;s  National Security branch Analysis Center, NSAC which [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=retoreris.wordpress.com&amp;blog=9623106&amp;post=5&amp;subd=retoreris&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I read to day two very interesting news posts on<a title="wired.com" href="http://www.wired.com/" target="_blank"> wired.com</a>, which i think is a respectable news site. It was the first time i visited the site as far as i remember, but it seamed a good source of information. The first article is about the FBI&#8217;s  <a href="http://www.wired.com/threatlevel/2009/09/fbi-nsac/">National Security branch Analysis Center, NSAC</a> which is basicly the US governments way to spy on all people in the US, and maybe in extension soon, the world, by gathering a lot of information about them and then testing them to see if there are any &#8220;dangerous&#8221; people.</p>
<p>The second article i read was about the old sovjet doomsday project, named<a href="http://www.wired.com/politics/security/magazine/17-10/mf_deadhand?currentPage=all"> perimeter</a> or also known as dead hand. What is does is when a party would strike the old sovjet union with such force that its entire command structure would have been killed, the perimeter program would automatically shoot the USSR&#8217;s missiles to their targets, whichever target might have been pre-programmed. Probably the targets would be targets in Europe and the USA.</p>
<p>What both of these projects have in common is that they both are/were classified programs started to protect &#8220;the homeland&#8221; from impending attack. The FBI&#8217;s program though is more targetted to terrorist attack, while the sovjet project was more aimed against the old cold war rival US.</p>
<p>So, why should they keep such things a secret.  Obviously we all care about our safety. It would seam logical that the governments would tell us about their very expensive operations to keep us all safe and secure so we can all rest easyer at night. However, there is a catch in both cases.<br />
The first project impedes on the recent trend of privacy and protection of the innocent. How much should a government know about any one individual, and what should they be allowed to do with this. Obviously the more they know, the better they can do their job. If they can read a terrorists mind when he enters the country and see that he plans on killing people, well then, we can just lock him up and throw away the key (or can we, he hasn&#8217;t actually done anything :s).</p>
<p>My view on this is however, that government spying might not be a very bad thing, as long as we all know that the government is spying on us. Let&#8217;s face it, there are hundreds of sattelites in orbit, many of them used to spy upon people. Add to that all the camera&#8217;s that are used in city&#8217;s and stores (the london CCTV is a good example). We just don&#8217;t realize it or don&#8217;t really care about it. However, when something happens, it&#8217;s good to have such information. If, for example someone gets assaulted, robbed or, even worse, killed, how nice would it be if the government could just querry(ask) a database &#8220;which persons were present at time XY:AB&#8221;. Instant identification of culprits, instant arrests, instant justice !</p>
<p>But but but, i hear you all yelling, that would mean they know what i do, that would impede my liberties !!!! What liberty is that. Your liberty to kill people, to hurt people or to rob them? Or your liberty to do naughty stuff without anyone knowing about them (but which are not illegal, or shouldn&#8217;t be illegal in your opinion).  Some topic is that the people with access to the data would have too much information available to spy on other people and learn what they&#8217;re doing. But what if there was never any assault, never any robbery or killing anymore, would that be enough for you to give up your privacy in regards to the government (Off course the government and only the government should have access to this data). I&#8217;m probably missing many issues of these things, and i&#8217;d be happy to read links posted in comment if anyone ever actually reads this. But untill then, i&#8217;ll just stick to this simple opinion.</p>
<p>Of course, it seams a bit ironical that i&#8217;m talking about general knowledge if i don&#8217;t even reveal my name and location. Well, privacy is imo protecting yourself from the nutters/abusers in the society. And since this blog is available to all, it might just be best to keep certain my identity a secret to never get called / punished in the street for something i wrote here. And if you think about it, the government prolly knows who i am or at least can figure it out with some effort. Probably even some powerfull hackers or just smart people might in the end be able to figure out who i am (please don&#8217;t tell <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  ) But untill then, i like to be shrouded in the warm cloak of anonimity.</p>
<p>To move back on track, why should all this information about their programs be made available. Well, knowing that you&#8217;ll be caught is usually a pretty strong incentive to not do whichever will lead to your capture.  Or to hide it better, either will work.  But this point leads me to my second article of the soviet doomsday machine.</p>
<p>Some of you may or may not know that a mere 20 years ago there were 2 great forces in the world that were dancing with starting an all out nuclear war.  The only thing believed to keep the peace was maybe the MAD principle. The principle of Mutually Assured Destruction. However, in the 1980&#8242;s president Reagan decided to build a rocket shield for Europe and the US. This would mean that the Sovjets wouldn&#8217;t be able to strike their enemy when they were attacked. The sovjets looked at this as almost an act of war, while Reagan saw it as the ultimate peace bringing device. Because the US wouldn&#8217;t need to fear a strike from the sovjets, they were free to attack themselves to get world dominition! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . So what could the sovjets do. Either strike before the platform was active (MAD i tell you), or build a system that would allow them to strike after being hit (still MAD, if not more so). Luckily for all of us, they chose the latter, and thus perimeter was born.</p>
<p>Until then all actions by one party and reactions by the other party were always published, since it was the mutual knowledge that kept the balance.  This however wasn&#8217;t published for several reasons. The first reason given in the article was that the perimeter wasn&#8217;t supposed to be a deterrence for the outside, but a deterence for the inside. Remember that the radars etc from which the big bosses get their info aren&#8217;t always reliable,  so sometimes some random stuff like a flock of goose might seam like an attack. And since the estimated time to react was ca 15 min, it brings a lot of pressure and posibility to flinch with it. So thus they created perimeter to make sure that when they were all whiped out, there would still be something left to get back at the enemy. That way, they could just sit the possible attack out. If there was no attack, nothing happened, if there was, we were all as screwed as before. If they were attacked, the people at the rocket silo&#8217;s would get automatic clearance to launch.</p>
<p>This was certainly a reason in the past. But atm those times have past, however the system still exists, and apparently is still being updated. So why don&#8217;t we know about it. Because it would interfere with the balance of power between the nations in my opinion. That knowledge would mean that russia has something that the US doesn&#8217;t have. And since the US never got their rocket shield operational, that information would mean a significant imbalance. Also it&#8217;s probably some nice thought for the russians that they still have some power that the others don&#8217;t have or know about.</p>
<p>The third reason is that if the oposition knows about it, they will try to cancel it. One way would be to force the russians to disarm it, another to cheat it somehow.  The reason why the other would force the russians to disarm is that the system might bug and would allow some low level officer who happens to sit at the button to push it without supreme command&#8217;s conscent or a hack of the system would mean that a bad officer might launch without consent. Small note, the US believed that a low ranking US officer never would be able to send the rockets because their rockets need to be activated with launch codes. However, untill 1977, the launch code was 00000000 00000 give or take a few zero&#8217;s.  So if the knowledge is know, it might mean they would have to give it up, or lose a valuable surprise when it actually came to a war.</p>
<p>There are probably many more reasons i&#8217;m still forgetting, but this are just the ones i can come up with straight away.</p>
<p>So what would i like you all to remember from this way to long text. Remember that everyone keeps secrets. Even the people you trust to keep you safe. They will probably have to biggest secrets of all. Should we or shouldn&#8217;t we know them, a big discussion, maybe for another post. President Obama believed that we should, but believes that we shouldn&#8217;t, if i can believe/remember correctly a recent article i read on computerworld(i think). The problem is, that we don&#8217;t live in a friendly world, and knowing everything we can do against those unfriendly elements might not be the best coarse of action. Also there are probably a whole other range of practical considerations, but i only have so much space. Ask yourself, do you want to know everything that goes on in the high echelons of the world government, about all the enemies that threaten our well being and do you think it would matter if you did. Do you think you would still sleep well at night knowing all the evils that dwell our world.</p>
<p>Somewhy, i rather dream of a world without all the hatred and show of muscle of these days, without gods that needs worshipped but instead with people that accept each other and have similar values, customs and believes (which don&#8217;t involve deities) (otherwise they&#8217;d just end up fighting again). I&#8217;d like to dream of kind people that care about each other and wouldn&#8217;t dream of hurting each other, about people who are willing to think about what they do and believe, people that are not afraid to question themselves and others, and be questioned, for they should have  nothing to hide.</p>
<p>Good night</p>
<p>Retoreris</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/retoreris.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/retoreris.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/retoreris.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/retoreris.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/retoreris.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/retoreris.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/retoreris.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/retoreris.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/retoreris.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/retoreris.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/retoreris.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/retoreris.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/retoreris.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/retoreris.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=retoreris.wordpress.com&amp;blog=9623106&amp;post=5&amp;subd=retoreris&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://retoreris.wordpress.com/2009/09/23/government-secrets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33d0cdd5a77a5e27c40d8e08f7eba7bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">retoreris</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://retoreris.wordpress.com/2009/09/23/hello-world/</link>
		<comments>http://retoreris.wordpress.com/2009/09/23/hello-world/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 19:35:28 +0000</pubDate>
		<dc:creator>retoreris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[A fitting name to start a blog, hello world. Standard for the wordpress it seams, but still very appropriate to start your online writing career with a hello. For those who aren&#8217;t intimate with the concept of hello world : the concept is simple. It comes from the early days of computing. People had to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=retoreris.wordpress.com&amp;blog=9623106&amp;post=1&amp;subd=retoreris&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A fitting name to start a blog, hello world. Standard for the wordpress it seams, but still very appropriate to start your online writing career with a hello.</p>
<p>For those who aren&#8217;t intimate with the concept of hello world : the concept is simple. It comes from the early days of computing. People had to show that they were able to do something with the system,. Usually one of the simpler things to do is output text to a textbox or to the command line. And what more fitting for a new system to say then his first greating to the world. These days it is still very frequently used by starting programmers who write the hello world to get started with the new programming language.</p>
<p>Anyway, so, we come to my first greeting to the world. I guess i should tell you a bit about myself. The thing is, everything you say these days will come into a nice database (well yeah, the wordpress database) from which point on it is free for all to search and link it back to you. And very often it&#8217;ll come back to bite you. That&#8217;s why i have decided to keep the amount of personal information limited to start.</p>
<p>I&#8217;ll tell you this though. I&#8217;m a fairly young male who has studied the wonderfull art of engineering (yes, engineering is more an art in my opinion then modern day paintings, maybe more on this later), with some speciality in computer related topics. I&#8217;m from Europe, but i&#8217;m not a native english speaker. So please forgive me for my spelling mistakes and bad sentance structure sometimes.</p>
<p>My historical background is pretty straight forward. I grew up in a small fairly christian village, with the good christian values. However on a fairly young age i started to question the existance of God or any god for that matter. Yes maybe some childhood trauma might be the cause of that, but who knows <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . I still went to church often to honor my ancestors but i really didn&#8217;t believe in the whole story about the father, the son and the holy spirit.</p>
<p>But anyway, my christian background made me the man i am today,  who wants to write his vision on the world. Maybe some people will read it, maybe they won&#8217;t, who knows. One of my &#8220;believes&#8221; though is that to make a difference in this world, you have to make your idea&#8217;s known, you have to write about your idea&#8217;s and thoughts. What better way then to write them down in a blog.</p>
<p>What will i write about. It could basicly be anything that tickles my fancy, sort to say. First i&#8217;ll probably write some stuff about the some recent news facts, but i hope one day to write about my views on the world, on religion, spirituatily, politics and ethics. Probably a lot of the posts will have something to do with computers and informatics as that is one of my passions. Yes a whole heap of stuff to write about, so who knows how much i&#8217;ll end up writing. My goal by writing this is in a way to question my own view on the world, and hopefully make the readers question their view on the world too.</p>
<p>It all might seam chaotic at first. The main reason for that is that I really don&#8217;t have any master plan in writing this blog at the moment. So i&#8217;ll just make it up as i go along. Maybe someone will read this, maybe they won&#8217;t. Anyway, the writing itself is an experience worth having.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/retoreris.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/retoreris.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/retoreris.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/retoreris.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/retoreris.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/retoreris.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/retoreris.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/retoreris.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/retoreris.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/retoreris.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/retoreris.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/retoreris.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/retoreris.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/retoreris.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=retoreris.wordpress.com&amp;blog=9623106&amp;post=1&amp;subd=retoreris&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://retoreris.wordpress.com/2009/09/23/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33d0cdd5a77a5e27c40d8e08f7eba7bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">retoreris</media:title>
		</media:content>
	</item>
	</channel>
</rss>
