<?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>stenyak.com &#187; en</title>
	<atom:link href="http://www.stenyak.com/archives/category/en/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stenyak.com</link>
	<description>porque a veces uno se aburre...</description>
	<lastBuildDate>Sat, 01 May 2010 08:24:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Yuki TV</title>
		<link>http://www.stenyak.com/archives/767/yuki-tv/</link>
		<comments>http://www.stenyak.com/archives/767/yuki-tv/#comments</comments>
		<pubDate>Sat, 01 May 2010 08:24:35 +0000</pubDate>
		<dc:creator>stenyak</dc:creator>
				<category><![CDATA[en]]></category>
		<category><![CDATA[es]]></category>
		<category><![CDATA[pets]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.stenyak.com/?p=767</guid>
		<description><![CDATA[Akí teneis a Yuki en vivo y en diferido! No estaba muy activa en ese momento, pero a veces se pone a dar vueltas por el sofa y no hay quien le haga una foto, así que mejor así.]]></description>
			<content:encoded><![CDATA[<p>Akí teneis a Yuki en vivo y en diferido!</p>
<p style="text-align:center"><object width="425" height="344" data="http://www.youtube.com/v/jA7F5b9BBKg&amp;hl=en&amp;fs=1&amp;color1=0xCFCFCF&amp;color2=0xEEEEEE" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true"/><param name="allowscriptaccess" value="always"/><param name="src" value="http://www.youtube.com/v/jA7F5b9BBKg&amp;hl=en&amp;fs=1&amp;color1=0xCFCFCF&amp;color2=0xEEEEEE"/><param name="allowfullscreen" value="true"></object></p>
<p>No estaba muy activa en ese momento, pero a veces se pone a dar vueltas por el sofa y no hay quien le haga una foto, así que mejor así.</p>
<div style="float:right;margin:0px 20px 0px 0px;"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="small-count" data-url="http://www.stenyak.com/archives/767/yuki-tv/"></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.stenyak.com/archives/767/yuki-tv/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Chuck Norris Facts Bash Script</title>
		<link>http://www.stenyak.com/archives/725/the-chuck-norris-facts-bash-script/</link>
		<comments>http://www.stenyak.com/archives/725/the-chuck-norris-facts-bash-script/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 23:20:10 +0000</pubDate>
		<dc:creator>stenyak</dc:creator>
				<category><![CDATA[en]]></category>
		<category><![CDATA[es]]></category>
		<category><![CDATA[chorrada]]></category>
		<category><![CDATA[computing]]></category>

		<guid isPermaLink="false">http://www.stenyak.com/?p=725</guid>
		<description><![CDATA[Pon un Chuck Norris en tu vida! O mejor aun, pon miles de Chuck Facts en tu consola! Bored STenyaK Productions presents: chuckfacts.sh! Coming this winter to a console in front of you&#8230; #!/bin/bash # check for parameters if [ -z $1 ] then echo "Please specify the destination chuck norris facts file." echo "E.g.: [...]]]></description>
			<content:encoded><![CDATA[<p>Pon un Chuck Norris en tu vida! O mejor aun, pon miles de <a href="http://en.wikipedia.org/wiki/Chuck_Norris_facts">Chuck Facts</a> en tu consola!</p>
<p style="text-align: center;"><a href="http://www.stenyak.com/archives/tag/chorrada">Bored STenyaK Productions</a> presents: chuckfacts.sh!</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-734" title="Chuck Norris for god" src="http://www.stenyak.com/wp-content/uploads/2009/12/chucknorris1.png" alt="Chuck Norris for god" width="520" height="650" /><br />
Coming this winter to a console in front of you&#8230;</p>
<pre>#!/bin/bash

# check for parameters
if [ -z $1 ]
then
    echo "Please specify the destination chuck norris facts file."
    echo "E.g.: $0 ~/.chuckfacts.txt"
    exit
fi
ffile=$1

old=0
if [ -s $ffile ]
then
    old=$(wc -l $ffile |sed "s/\s.*//g")
fi

echo -n "Getting facts pack"
# download the 170 first chuck norris pages of 4q.cc site to disk
for i in $(seq 1 170)
do
    echo -n " $i"
    # only store facts
    wget -qO - \
       "http://4q.cc/index.php?pid=listfacts&amp;person=chuck&amp;page=$i" \
        | grep "index.php?pid=fact&amp;amp;person=chuck" &gt;&gt; $ffile</pre>
<pre>done
echo ""

echo -n "Post-processing facts..."
# remove unnecessary html code
perl -pi -e "s/.*id=.{32,32}\"&gt;//g;s/&lt;\/a&gt;.*//g" $ffile

# replace most common html entities
perl -pi -e "s/&amp;quot;/\"/g" $ffile
perl -pi -e "s/&amp;amp;/&amp;/g" $ffile

# remove empty lines
perl -ni -e "print unless /pid=/" $ffile

# remove redundant lines
cat $ffile |sort |uniq &gt; /tmp/chuckfacts.tmp
mv /tmp/chuckfacts.tmp $ffile
new=$(wc -l $ffile |sed "s/\s.*//g")
echo " OK"
echo "Generated $(($new-$old)) new facts ($new in total) facts."

# show how to add a fortune-like command to bashrc
echo ""
echo "You can add this to your ~/.bashrc file:"
echo 'test -s '$ffile' &amp;&amp; cowsay -f $(ls /usr/share/cowsay/cows
      | shuf |head -1) "$(cat '$ffile' |shuf |head -1)"'</pre>
<p>Mira que no me aburro a veces ni nada eh&#8230;</p>
<div style="float:right;margin:0px 20px 0px 0px;"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="small-count" data-url="http://www.stenyak.com/archives/725/the-chuck-norris-facts-bash-script/"></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.stenyak.com/archives/725/the-chuck-norris-facts-bash-script/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s &#8220;go&#8221; simple &amp; stupid benchmark (2nd round: memspeed)</title>
		<link>http://www.stenyak.com/archives/711/googles-go-simple-stupid-benchmark-2nd-round-memspeed/</link>
		<comments>http://www.stenyak.com/archives/711/googles-go-simple-stupid-benchmark-2nd-round-memspeed/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 08:30:14 +0000</pubDate>
		<dc:creator>stenyak</dc:creator>
				<category><![CDATA[en]]></category>
		<category><![CDATA[es]]></category>
		<category><![CDATA[computing]]></category>

		<guid isPermaLink="false">http://www.stenyak.com/?p=711</guid>
		<description><![CDATA[Continued from Round 1: I/O Thanks to Juanval for the suggestion. $ cat hello.cpp &#38;&#38; g++ hello.cpp &#38;&#38; &#62; time for i in $(seq 10); do ./a.out; done int main (int argc, char** argv) { const int size = 250; int a[size],b[size],c[size]; for(int i=0;i&#60;size;++i) for(int j=0;j&#60;size;++j) for(int k=0;k&#60;size;++k) c[k]+=a[i]*b[j]; } real 0m1.041s user 0m0.944s sys [...]]]></description>
			<content:encoded><![CDATA[<p>Continued from <a href="http://www.stenyak.com/archives/697/googles-go-simple-stupid-benchmark/">Round 1: I/O</a></p>
<p>Thanks to <a href="http://hombrealto.com">Juanval</a> for the <a href="http://www.stenyak.com/archives/697/googles-go-simple-stupid-benchmark/#comments">suggestion</a>.</p>
<pre>$ cat <strong>hello.cpp</strong> &amp;&amp; g++ hello.cpp &amp;&amp;
&gt; time for i in $(seq 10); do ./a.out; done
int main (int argc, char** argv)
{
    const int size = 250;
    int a[size],b[size],c[size];
    for(int i=0;i&lt;size;++i)
        for(int j=0;j&lt;size;++j)
            for(int k=0;k&lt;size;++k)
                c[k]+=a[i]*b[j];
}
<strong>real</strong><span><strong>	</strong></span><strong>0m1.041s</strong>
<strong>user</strong><span><strong>	</strong></span><strong>0m0.944s</strong>
<strong>sys</strong><span><strong>	</strong></span><strong>0m0.020s</strong></pre>
<hr />
<pre>$ cat <strong>hello.py</strong> &amp;&amp;
&gt; time for i in $(seq 10); do python hello.py; done
size = 250
a,b,c = [0]*size, [0]*size, [0]*size
for i in a:
    for j in b:
        for k in range(0,size):
            c[k] += i*j
<strong>real</strong><span><strong>	</strong></span><strong>1m7.210s</strong>
<strong>user</strong><span><strong>	</strong></span><strong>1m4.924s</strong>
<strong>sys</strong><span><strong>	</strong></span><strong>0m0.084s</strong></pre>
<hr />
<pre>$ cat <strong>hello.go</strong> &amp;&amp; 8g hello.go &amp;&amp; 8l hello.8 &amp;&amp;
&gt; time for i in $(seq 10); do ./8.out; done
package main
func main()
{
    var a,b,c [250]int;
    for i := range a
    {
        for j := range b
        {
            for k := range c
            {
                c[k] += a[i] * b[j];
            }
        }
    }
}
<strong>real</strong><span><strong>	</strong></span><strong>0m3.000s</strong>
<strong>user</strong><span><strong>	</strong></span><strong>0m2.812s</strong>
<strong>sys</strong><span><strong>	</strong></span><strong>0m0.020s</strong></pre>
<div style="float:right;margin:0px 20px 0px 0px;"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="small-count" data-url="http://www.stenyak.com/archives/711/googles-go-simple-stupid-benchmark-2nd-round-memspeed/"></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.stenyak.com/archives/711/googles-go-simple-stupid-benchmark-2nd-round-memspeed/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s &#8220;go&#8221; simple &amp; stupid benchmark (1st round: I/O)</title>
		<link>http://www.stenyak.com/archives/697/googles-go-simple-stupid-benchmark/</link>
		<comments>http://www.stenyak.com/archives/697/googles-go-simple-stupid-benchmark/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 16:07:15 +0000</pubDate>
		<dc:creator>stenyak</dc:creator>
				<category><![CDATA[en]]></category>
		<category><![CDATA[es]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[rant]]></category>

		<guid isPermaLink="false">http://www.stenyak.com/?p=697</guid>
		<description><![CDATA[Systems programming language? They gotta be kiddin&#8230; $ cat hello.cpp &#38;&#38; g++ hello.cpp &#38;&#38; &#62; time for i in $(seq 100); do ./a.out &#62;/dev/null; done #include &#60;stdio.h&#62; int main (int argc, char** argv) { for (int i=10000;i--;) { printf("hello, world\n"); } } real 0m0.427s user 0m0.220s sys 0m0.164s $ cat hello.py &#38;&#38; &#62; time for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://golang.org">Systems programming language</a>? They gotta be kiddin&#8230;</p>
<pre>$ cat <strong>hello.cpp</strong> &amp;&amp; g++ hello.cpp &amp;&amp;
&gt; time for i in $(seq 100); do ./a.out &gt;/dev/null; done

#include &lt;stdio.h&gt;
int main (int argc, char** argv)
{
    for (int i=10000;i--;)
    {
        printf("hello, world\n");
    }
}

<strong>real</strong><span><strong> </strong></span><strong>0m0.427s
user</strong><span><strong> </strong></span><strong>0m0.220s
sys</strong><span><strong> </strong></span><strong>0m0.164s</strong></pre>
<hr />
<pre>$ cat <strong>hello.py</strong> &amp;&amp;
&gt; time for i in $(seq 100); do python hello.py &gt;/dev/null; done

for i in range(1,10001):
    print "hello, world"

<strong>real</strong><span><strong> </strong></span><strong>0m3.809s
user</strong><span><strong> </strong></span><strong>0m2.800s
sys</strong><span><strong> </strong></span><strong>0m0.724s</strong></pre>
<hr />
<pre>$ cat <strong>hello.go</strong> &amp;&amp; 8g hello.go &amp;&amp; 8l hello.8 &amp;&amp;
&gt; time for i in $(seq 100); do ./8.out &gt;/dev/null; done

package main
import "fmt"
func main()
{
    for i:=10000;i&gt;0;i--
    {
        fmt.Printf("hello, world\n")
    }
}

<strong>real</strong><span><strong> </strong></span><strong>0m7.528s
user</strong><span><strong> </strong></span><strong>0m6.388s
sys</strong><span><strong> </strong></span><strong>0m0.664s</strong></pre>
<p>Continued in <a href="http://www.stenyak.com/archives/711/googles-go-simple-stupid-benchmark-2nd-round-memspeed/">Round 2: memspeed</a></p>
<div style="float:right;margin:0px 20px 0px 0px;"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="small-count" data-url="http://www.stenyak.com/archives/697/googles-go-simple-stupid-benchmark/"></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.stenyak.com/archives/697/googles-go-simple-stupid-benchmark/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Puls, 256 bytes intro by Arriola</title>
		<link>http://www.stenyak.com/archives/680/puls-256-bytes-intro-by-arriola/</link>
		<comments>http://www.stenyak.com/archives/680/puls-256-bytes-intro-by-arriola/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 09:52:39 +0000</pubDate>
		<dc:creator>stenyak</dc:creator>
				<category><![CDATA[en]]></category>
		<category><![CDATA[es]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[holy crap]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.stenyak.com/?p=680</guid>
		<description><![CDATA[This post is twice the size of Puls]]></description>
			<content:encoded><![CDATA[<p>This post is twice the size of Puls <img src='http://www.stenyak.com/wp-includes/images/smilies/icon_eek.gif' alt='8O' class='wp-smiley' /> </p>
<p style="text-align:center"><object width="425" height="344" data="http://www.youtube.com/v/3vzcMdkvPPg&amp;hl=en&amp;fs=1&amp;color1=0xCFCFCF&amp;color2=0xEEEEEE" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true"/><param name="allowscriptaccess" value="always"/><param name="src" value="http://www.youtube.com/v/3vzcMdkvPPg&amp;hl=en&amp;fs=1&amp;color1=0xCFCFCF&amp;color2=0xEEEEEE"/><param name="allowfullscreen" value="true"></object></p>
<div style="float:right;margin:0px 20px 0px 0px;"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="small-count" data-url="http://www.stenyak.com/archives/680/puls-256-bytes-intro-by-arriola/"></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.stenyak.com/archives/680/puls-256-bytes-intro-by-arriola/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Little Big Planet  feat.  Daft Punk</title>
		<link>http://www.stenyak.com/archives/614/little-big-planet-feat-daft-punk/</link>
		<comments>http://www.stenyak.com/archives/614/little-big-planet-feat-daft-punk/#comments</comments>
		<pubDate>Sat, 16 May 2009 00:44:16 +0000</pubDate>
		<dc:creator>stenyak</dc:creator>
				<category><![CDATA[en]]></category>
		<category><![CDATA[es]]></category>
		<category><![CDATA[gaming]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.stenyak.com/?p=614</guid>
		<description><![CDATA[Hacía mucho que no posteaba nada por aquí, así que ahí va un post facilón de mítico video empotrao xD]]></description>
			<content:encoded><![CDATA[<p>Hacía mucho que no posteaba nada por aquí, así que ahí va un post facilón de mítico video empotrao xD</p>
<p style="text-align: center;"><object width="425" height="344" data="http://www.youtube.com/v/xscOOhHmGC0&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0xCFCFCF&amp;color2=0xEEEEEE" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/xscOOhHmGC0&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0xCFCFCF&amp;color2=0xEEEEEE" /><param name="allowfullscreen" value="true" /></object></p>
<div style="float:right;margin:0px 20px 0px 0px;"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="small-count" data-url="http://www.stenyak.com/archives/614/little-big-planet-feat-daft-punk/"></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.stenyak.com/archives/614/little-big-planet-feat-daft-punk/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ladies and gentlemen, may I introduce you&#8230;</title>
		<link>http://www.stenyak.com/archives/598/ladies-and-gentlemen-may-i-introduce-you/</link>
		<comments>http://www.stenyak.com/archives/598/ladies-and-gentlemen-may-i-introduce-you/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 23:53:30 +0000</pubDate>
		<dc:creator>stenyak</dc:creator>
				<category><![CDATA[en]]></category>
		<category><![CDATA[es]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[autos]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.stenyak.com/?p=598</guid>
		<description><![CDATA[Just a small vid (edited by Silverghost) of the first day of my new baby bimmer, a 118D 5d. More info, pictures and a thorough review coming soon! Un montaje (editao por Javi) del primer día del peque, mi nuevo 118D 5p. Otro dia con más tiempo le hago una review en plan, con foticos [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: right;">Just a small vid (edited by <a href="http://www.youtube.com/user/silverghost96">Silverghost</a>) of the first day of <strong>my new baby bimmer</strong>, a <strong><em>118D 5d</em></strong>. More info, pictures and a thorough review coming soon!</p>
<p>Un montaje (editao por <a href="http://www.youtube.com/user/silverghost96">Javi</a>) del primer día del peque, <strong>mi nuevo <em>118D 5p</em></strong>. Otro dia con más tiempo le hago una review en plan, con foticos y esas chorradas <img src='http://www.stenyak.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  .</p>
<p style="text-align: center;"><object width="425" height="344" data="http://www.youtube.com/v/4NKxfnew_Qs&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0xCFCFCF&amp;color2=0xEEEEEE" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/4NKxfnew_Qs&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0xCFCFCF&amp;color2=0xEEEEEE" /><param name="allowfullscreen" value="true" /></object></p>
<p style="text-align: left;">En efecto, éste es el digno sucesor elegido para el viejo <a href="http://www.stenyak.com/archives/570/y-ocurrio-lo-inexorable/">Renault 21</a>.</p>
<p style="text-align: right;">So yeah, that&#8217;s the worthy replacement for the now sadly defunct <a href="http://www.stenyak.com/archives/570/y-ocurrio-lo-inexorable/">Renault 21</a>.</p>
<div style="float:right;margin:0px 20px 0px 0px;"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="small-count" data-url="http://www.stenyak.com/archives/598/ladies-and-gentlemen-may-i-introduce-you/"></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.stenyak.com/archives/598/ladies-and-gentlemen-may-i-introduce-you/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mad oversteer</title>
		<link>http://www.stenyak.com/archives/555/mad-oversteer/</link>
		<comments>http://www.stenyak.com/archives/555/mad-oversteer/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 11:56:22 +0000</pubDate>
		<dc:creator>stenyak</dc:creator>
				<category><![CDATA[en]]></category>
		<category><![CDATA[es]]></category>
		<category><![CDATA[autos]]></category>
		<category><![CDATA[gaming]]></category>
		<category><![CDATA[motorsport]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[physics]]></category>
		<category><![CDATA[simracing]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.stenyak.com/?p=555</guid>
		<description><![CDATA[Some old vids in which I&#8217;m just the wheelman. Thanks to Darth Joules and Geert, the simracers who did the video capturing and editing (my crappy 1k ghz putter couldn&#8217;t handle all that stuff, 30 constant FPS was already a great achievement), and of course thanks to Eero Piitulainen for the excelent RBR physics (hope [...]]]></description>
			<content:encoded><![CDATA[<p>Some old vids in which I&#8217;m <em>just</em> the wheelman. Thanks to <strong>Darth Joules</strong> and <strong>Geert</strong>, the <a href="http://en.wikipedia.org/wiki/Racing_simulator">simracers</a> who did the video capturing and editing (my crappy 1k ghz putter couldn&#8217;t handle all that stuff, 30 constant FPS was already a great achievement), and of course thanks to <strong>Eero Piitulainen</strong> for the excelent <a href="http://en.wikipedia.org/wiki/Richard_Burns_Rally">RBR</a> physics (hope to see another physics engine of yours soon&#8230;).</p>
<p style="text-align: center"><object width="400" height="326" data="http://video.google.com/googleplayer.swf?docid=-8909293744085335458&amp;hl=en&amp;fs=true" type="application/x-shockwave-flash"><param name="id" value="VideoPlayback" /><param name="src" value="http://video.google.com/googleplayer.swf?docid=-8909293744085335458&amp;hl=en&amp;fs=true" /><param name="allowfullscreen" value="true" /></object></p>
<p style="text-align: center"><strong>Edit</strong>: <em>fuck, the first video&#8217;s been taken down. i&#8217;m not making any money out of this blog, you stupid record labels!</em></p>
<p style="text-align: center"><strong>Edit 2</strong><em>: yeah!! a counter-dispute and the video is back online! let&#8217;s see how long it lasts..<br />
</em></p>
<p style="text-align: center"><object width="400" height="326" data="http://video.google.com/googleplayer.swf?docid=-7915018182414882877&amp;hl=en&amp;fs=true" type="application/x-shockwave-flash"><param name="id" value="VideoPlayback" /><param name="src" value="http://video.google.com/googleplayer.swf?docid=-7915018182414882877&amp;hl=en&amp;fs=true" /><param name="allowfullscreen" value="true" /></object></p>
<p>Ahora lo que es en castellano: un par de viejos videos, de cuando solía quemar rueda (virtual) semanalmente, en este caso con <a href="http://en.wikipedia.org/wiki/Richard_Burns_Rally">RBR</a>.  Gracias a <strong>Darth Joules</strong> y <strong>Geert</strong> por la captura y edición, y <strong>Eero</strong> por el brutal motor físico que programó <em>a contrarreloj</em> para SCi y que aún hace vibrar a la comunidad. Una pena que el código se haya perdido en el limbo legal gracias a los 6 años de abandono, los Ferraris de dudosa legalidad estrellados, la mierda que salpicó a Warthog Studios por sus relaciones con cierta mafia sueca de blanqueo, las detenciones de algunos CEOs y los consiguientes enchironamientos, y weno&#8230; mejor no seguir que escribo un libro <img src='http://www.stenyak.com/wp-includes/images/smilies/icon_lol.gif' alt=':lol:' class='wp-smiley' /> </p>
<p style="text-align: center;"><em><strong>Richard Alexander Burns</strong></em></p>
<p style="text-align: center;"><em><strong>January 17, 1971 &#8211; November 25, 2005</strong></em></p>
<p style="text-align: center;"><em><strong>R.I.P. </strong></em></p>
<div style="float:right;margin:0px 20px 0px 0px;"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="small-count" data-url="http://www.stenyak.com/archives/555/mad-oversteer/"></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.stenyak.com/archives/555/mad-oversteer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Consistent Desktop UI proposal</title>
		<link>http://www.stenyak.com/archives/497/consistent-desktop-ui-proposal/</link>
		<comments>http://www.stenyak.com/archives/497/consistent-desktop-ui-proposal/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 17:44:14 +0000</pubDate>
		<dc:creator>stenyak</dc:creator>
				<category><![CDATA[en]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[rant]]></category>

		<guid isPermaLink="false">http://www.stenyak.com/?p=497</guid>
		<description><![CDATA[I&#8217;ve always been a bit particular with my desktop preferences. After using WindowMaker, Gnome+Sawfish, Ion2, WMII, Kde+Kwin, Gnome+Metacity, Compiz Fusion+AWN and testing out some more, I&#8217;ve yet to see one that fully addresses my needs. One of my main complaints is the waste of screen real estate. Both window managers and applications themselves are at [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always been <em>a bit</em> particular with my desktop preferences. After using <a href="http://www.windowmaker.info">WindowMaker</a>, <a href="http://www.gnome.org">Gnome</a>+<a href="http://sawfish.wikia.com">Sawfish</a>, <a href="http://modeemi.fi/~tuomov/ion">Ion2</a>, <a href="http://www.suckless.org/wmii">WMII</a>, <a href="http://www.kde.org">Kde</a>+<a href="http://techbase.kde.org/Projects/KWin">Kwin</a>, <a href="http://www.gnome.org">Gnome</a>+<a href="http://blogs.gnome.org/metacity/2007/12/23/start-reading-here">Metacity</a>, <a href="http://www.compiz-fusion.org">Compiz Fusion</a>+<a href="https://launchpad.net/awn">AWN</a> and testing out some more, I&#8217;ve yet to see one that fully addresses my needs.</p>
<p>One of my main complaints is the <strong>waste of screen real estate</strong>. Both <em>window managers</em> and <em>applications</em> themselves are at fault for this. The influence of Windows UI style in panels and windows has prevented most designers from getting the most out of the users&#8217; screens. <strong>Ion2</strong> is the window manager i&#8217;m currently most happy with, but it&#8217;s still not perfect if applications don&#8217;t properly cooperate, which is only possible if they follow some sort of guidelines (such as those discussed and published by the <a href="http://www.freedesktop.org">FreeDesktop project</a>).</p>
<p>This blog post shows a suggestion that could, IMHO, improve the desktop experience, although maybe at the cost of reduced usability for computer illiterates.</p>
<p>As an introduction, here&#8217;s a quickly <a href="http://www.gimp.org">gimped</a> draft of the idea I had some months ago:</p>
<p style="text-align: center;"><a href="http://www.stenyak.com/wp-content/uploads/2009/01/test-ui2.png"><img class="size-medium wp-image-500  aligncenter" title="simple UI draft" src="http://www.stenyak.com/wp-content/uploads/2009/01/test-ui2-300x184.png" alt="simple UI draft" width="300" height="184" /></a></p>
<p>The increase in usable space is obvious (well, at least to power users). The famous and ancient &#8220;title bar&#8221; is gone. We already have the window title in the so-called <em>task bar</em>, so why repeat it <strong>again</strong> using a whole horizontal bar for it? And what&#8217;s with the habit of dedicating <strong>another whole bar</strong> for 5 <em>tiny</em> application menues? Furthermore, the old <em>status bar</em> can be set to automatically hide for additional real estate (with a behaviour similar to that of Google browser <a href="http://www.google.com/chrome">Chrome</a>).</p>
<p>Most interactive widgets have been moved to the top of screen (but they might as well have been placed on the bottom or aside). Personally, I see <strong>no</strong> reason for spreading buttons all over the screen, <strong>other than following the current desktop environment trends</strong>. Having them all close together greatly <em>reduces the need to move the mouse</em>.</p>
<p>Keep in mind that the <em>tabs</em> depicted in that draft are <strong>not</strong> supposed to be <em>fullscreen-only</em>, but have a mixed <a href="http://en.wikipedia.org/wiki/Tabbed_document_interface">TDI</a> &amp; <a href="http://en.wikipedia.org/wiki/Multiple_document_interface">MDI</a> behaviour (similar to Opera but, instead, leaving the management of those <em>document</em> windows to&#8230; well, the <a href="http://en.wikipedia.org/wiki/Window_manager">window manager</a> <img src='http://www.stenyak.com/wp-includes/images/smilies/icon_rolleyes.gif' alt=':roll:' class='wp-smiley' />  ).</p>
<p>But it doesn&#8217;t stop there. While we&#8217;re at it, why not merge the ideas behind <em>desktops</em> and <em>apps</em>? Here&#8217;s the natural evolution of the original idea:</p>
<p style="text-align: center;"><a href="http://www.stenyak.com/wp-content/uploads/2009/01/test-ui4.png"><img class="size-medium wp-image-501   aligncenter" title="evolved draft" src="http://www.stenyak.com/wp-content/uploads/2009/01/test-ui4-300x184.png" alt="evolved draft" width="300" height="184" /></a></p>
<p>There, the concept of <a href="http://en.wikipedia.org/wiki/Virtual_desktop">virtual desktops</a> is applied as a way to organize tabs (instead of using yet more windows for the same application instance).</p>
<p>The key is what I&#8217;ve just decided to name <em><strong>generic-bar</strong></em>. This bar contains an &#8220;app&#8221; icon (gnome icon, firefox icon, favicon&#8230;), abstracted pager, &#8220;tabs&#8221; and applets (menues, buttons, traditional applets&#8230;) in any desired number and order. For example, in the last draft there are two generic bars: the first one contains &#8220;applications&#8221;, while the second one contains what we currently know as &#8220;tabs&#8221;. In essence, both <em>applications</em> and <em>tabs</em> would be handled <strong>the same way</strong> by the proposed desktop environment. Furthermore, this hypothetical desktop environment could handle generic-bar nesting of any depth.</p>
<p>The good thing is that this desktop proposal does not remove any functionality currently found on most desktop environment UIs, but actually adds more while freeing up even more space for your valuable applications to use.</p>
<div style="float:right;margin:0px 20px 0px 0px;"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="small-count" data-url="http://www.stenyak.com/archives/497/consistent-desktop-ui-proposal/"></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.stenyak.com/archives/497/consistent-desktop-ui-proposal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nope, not 42 this time</title>
		<link>http://www.stenyak.com/archives/441/nope-not-42-this-time/</link>
		<comments>http://www.stenyak.com/archives/441/nope-not-42-this-time/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 21:03:42 +0000</pubDate>
		<dc:creator>stenyak</dc:creator>
				<category><![CDATA[en]]></category>
		<category><![CDATA[philosophy]]></category>
		<category><![CDATA[physics]]></category>

		<guid isPermaLink="false">http://www.stenyak.com/?p=441</guid>
		<description><![CDATA[At last! After several weeks of search, I&#8217;ve finally found it: it&#8217;s a short story writen by Asimov. One of those that make you ponder about the meaning of life. A story that should be read by many a politician, in order for them to realize how moronically oxymoronic it is to talk about the [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">At last! After several weeks of search, I&#8217;ve finally found it: it&#8217;s a short story writen by <a href="http://en.wikipedia.org/wiki/Isaac_Asimov">Asimov</a>. One of those that make you ponder about <a href="http://en.wikipedia.org/wiki/Notable_phrases_from_The_Hitchhiker's_Guide_to_the_Galaxy#Answer_to_Life.2C_the_Universe_and_Everything_.2842.29">the meaning of life</a>. A story that should be read by many a politician, in order for them to realize how moronically oxymoronic it is to talk about the so called &#8220;<a href="http://globalpublicmedia.com/lectures/461">sustainable development</a>&#8221; (amongst other things).</p>
<p style="text-align: left;">I have another brain melting story waiting in the chamber, in case someone cares. It explores the idea of multiverses and how to detect nested virtual worlds. Unfortunately, I&#8217;m a bit thick with google today, so I&#8217;ll leave that for a different post.</p>
<p style="text-align: left;">Meanwhile, you can discover the answer to&#8230;</p>
<p style="text-align: left;">
<p style="text-align: center;"><strong>THE LAST QUESTION</strong></p>
<p style="text-align: center;"><a href="http://www.flickr.com/photos/blueforce4116/1398245798"><img class="size-medium wp-image-436   aligncenter" title="...and there was light." src="http://www.stenyak.com/wp-content/uploads/2008/11/universe-300x196.jpg" alt="...y se hizo la luz." width="300" height="196" /></a></p>
<p style="text-align: center;"><em>(by Isaac Asimov)</em></p>
<p style="text-align: left;">
<p>The last question was asked for the first time, half in jest, on May 21, 2061, at a time when humanity first stepped into the light. The question came about as a result of a five dollar bet over highballs, and it happened this way:</p>
<p><span id="more-441"></span></p>
<p>Alexander Adell and Bertram Lupov were two of the faithful attendants of Multivac. As well as any human beings could, they knew what lay behind the cold, clicking, flashing face &#8212; miles and miles of face &#8212; of that giant computer. They had at least a vague notion of the general plan of relays and circuits that had long since grown past the point where any single human could possibly have a firm grasp of the whole.</p>
<p>Multivac was self-adjusting and self-correcting. It had to be, for nothing human could adjust and correct it quickly enough or even adequately enough &#8212; so Adell and Lupov attended the monstrous giant only lightly and superficially, yet as well as any men could. They fed it data, adjusted questions to its needs and translated the answers that were issued. Certainly they, and all others like them, were fully entitled to share In the glory that was Multivac&#8217;s.</p>
<p>For decades, Multivac had helped design the ships and plot the trajectories that enabled man to reach the Moon, Mars, and Venus, but past that, Earth&#8217;s poor resources could not support the ships. Too much energy was needed for the long trips. Earth exploited its coal and uranium with increasing efficiency, but there was only so much of both.</p>
<p>But slowly Multivac learned enough to answer deeper questions more fundamentally, and on May 14, 2061, what had been theory, became fact.</p>
<p>The energy of the sun was stored, converted, and utilized directly on a planet-wide scale. All Earth turned off its burning coal, its fissioning uranium, and flipped the switch that connected all of it to a small station, one mile in diameter, circling the Earth at half the distance of the Moon. All Earth ran by invisible beams of sunpower.</p>
<p>Seven days had not sufficed to dim the glory of it and Adell and Lupov finally managed to escape from the public function, and to meet in quiet where no one would think of looking for them, in the deserted underground chambers, where portions of the mighty buried body of Multivac showed. Unattended, idling, sorting data with contented lazy clickings, Multivac, too, had earned its vacation and the boys appreciated that. They had no intention, originally, of disturbing it.</p>
<p>They had brought a bottle with them, and their only concern at the moment was to relax in the company of each other and the bottle.</p>
<p>&#8220;It&#8217;s amazing when you think of it,&#8221; said Adell. His broad face had lines of weariness in it, and he stirred his drink slowly with a glass rod, watching the cubes of ice slur clumsily about. &#8220;All the energy we can possibly ever use for free. Enough energy, if we wanted to draw on it, to melt all Earth into a big drop of impure liquid iron, and still never miss the energy so used. All the energy we could ever use, forever and forever and forever.&#8221;</p>
<p>Lupov cocked his head sideways. He had a trick of doing that when he wanted to be contrary, and he wanted to be contrary now, partly because he had had to carry the ice and glassware. &#8220;Not forever,&#8221; he said.</p>
<p>&#8220;Oh, hell, just about forever. Till the sun runs down, Bert.&#8221;</p>
<p>&#8220;That&#8217;s not forever.&#8221;</p>
<p>&#8220;All right, then. Billions and billions of years. Twenty billion, maybe. Are you satisfied?&#8221;</p>
<p>Lupov put his fingers through his thinning hair as though to reassure himself that some was still left and sipped gently at his own drink. &#8220;Twenty billion years isn&#8217;t forever.&#8221;</p>
<p>&#8220;Will, it will last our time, won&#8217;t it?&#8221;</p>
<p>&#8220;So would the coal and uranium.&#8221;</p>
<p>&#8220;All right, but now we can hook up each individual spaceship to the Solar Station, and it can go to Pluto and back a million times without ever worrying about fuel. You can&#8217;t do THAT on coal and uranium. Ask Multivac, if you don&#8217;t believe me.&#8221;</p>
<p>&#8220;I don&#8217;t have to ask Multivac. I know that.&#8221;</p>
<p>&#8220;Then stop running down what Multivac&#8217;s done for us,&#8221; said Adell, blazing up. &#8220;It did all right.&#8221;</p>
<p>&#8220;Who says it didn&#8217;t? What I say is that a sun won&#8217;t last forever. That&#8217;s all I&#8217;m saying. We&#8217;re safe for twenty billion years, but then what?&#8221; Lupov pointed a slightly shaky finger at the other. &#8220;And don&#8217;t say we&#8217;ll switch to another sun.&#8221;</p>
<p>There was silence for a while. Adell put his glass to his lips only occasionally, and Lupov&#8217;s eyes slowly closed. They rested.</p>
<p>Then Lupov&#8217;s eyes snapped open. &#8220;You&#8217;re thinking we&#8217;ll switch to another sun when ours is done, aren&#8217;t you?&#8221;</p>
<p>&#8220;I&#8217;m not thinking.&#8221;</p>
<p>&#8220;Sure you are. You&#8217;re weak on logic, that&#8217;s the trouble with you. You&#8217;re like the guy in the story who was caught in a sudden shower and Who ran to a grove of trees and got under one. He wasn&#8217;t worried, you see, because he figured when one tree got wet through, he would just get under another one.&#8221;</p>
<p>&#8220;I get it,&#8221; said Adell. &#8220;Don&#8217;t shout. When the sun is done, the other stars will be gone, too.&#8221;</p>
<p>&#8220;Darn right they will,&#8221; muttered Lupov. &#8220;It all had a beginning in the original cosmic explosion, whatever that was, and it&#8217;ll all have an end when all the stars run down. Some run down faster than others. Hell, the giants won&#8217;t last a hundred million years. The sun will last twenty billion years and maybe the dwarfs will last a hundred billion for all the good they are. But just give us a trillion years and everything will be dark. Entropy has to increase to maximum, that&#8217;s all.&#8221;</p>
<p>&#8220;I know all about entropy,&#8221; said Adell, standing on his dignity.</p>
<p>&#8220;The hell you do.&#8221;</p>
<p>&#8220;I know as much as you do.&#8221;</p>
<p>&#8220;Then you know everything&#8217;s got to run down someday.&#8221;</p>
<p>&#8220;All right. Who says they won&#8217;t?&#8221;</p>
<p>&#8220;You did, you poor sap. You said we had all the energy we needed, forever. You said &#8216;forever.&#8217;&#8221;</p>
<p>&#8220;It was Adell&#8217;s turn to be contrary. &#8220;Maybe we can build things up again someday,&#8221; he said.</p>
<p>&#8220;Never.&#8221;</p>
<p>&#8220;Why not? Someday.&#8221;</p>
<p>&#8220;Never.&#8221;</p>
<p>&#8220;Ask Multivac.&#8221;</p>
<p>&#8220;You ask Multivac. I dare you. Five dollars says it can&#8217;t be done.&#8221;</p>
<p>Adell was just drunk enough to try, just sober enough to be able to phrase the necessary symbols and operations into a question which, in words, might have corresponded to this: Will mankind one day without the net expenditure of energy be able to restore the sun to its full youthfulness even after it had died of old age?</p>
<p>Or maybe it could be put more simply like this: How can the net amount of entropy of the universe be massively decreased?</p>
<p>Multivac fell dead and silent. The slow flashing of lights ceased, the distant sounds of clicking relays ended.</p>
<p>Then, just as the frightened technicians felt they could hold their breath no longer, there was a sudden springing to life of the teletype attached to that portion of Multivac. Five words were printed: INSUFFICIENT DATA FOR MEANINGFUL ANSWER.</p>
<p>&#8220;No bet,&#8221; whispered Lupov. They left hurriedly.</p>
<p>By next morning, the two, plagued with throbbing head and cottony mouth, had forgotten about the incident.</p>
<p>Jerrodd, Jerrodine, and Jerrodette I and II watched the starry picture in the visiplate change as the passage through hyperspace was completed in its non-time lapse. At once, the even powdering of stars gave way to the predominance of a single bright marble-disk, centered.</p>
<p>&#8220;That&#8217;s X-23,&#8221; said Jerrodd confidently. His thin hands clamped tightly behind his back and the knuckles whitened.</p>
<p>The little Jerrodettes, both girls, had experienced the hyperspace passage for the first time in their lives and were self-conscious over the momentary sensation of inside-outness. They buried their giggles and chased one another wildly about their mother, screaming, &#8220;We&#8217;ve reached X-23 &#8212; we&#8217;ve reached X-23 &#8212; we&#8217;ve &#8212;-&#8221;</p>
<p>&#8220;Quiet, children,&#8221; said Jerrodine sharply. &#8220;Are you sure, Jerrodd?&#8221;</p>
<p>&#8220;What is there to be but sure?&#8221; asked Jerrodd, glancing up at the bulge of featureless metal just under the ceiling. It ran the length of the room, disappearing through the wall at either end. It was as long as the ship.</p>
<p>Jerrodd scarcely knew a thing about the thick rod of metal except that it was called a Microvac, that one asked it questions if one wished; that if one did not it still had its task of guiding the ship to a preordered destination; of feeding on energies from the various Sub-galactic Power Stations; of computing the equations for the hyperspacial jumps.</p>
<p>Jerrodd and his family had only to wait and live in the comfortable residence quarters of the ship.</p>
<p>Someone had once told Jerrodd that the &#8220;ac&#8221; at the end of &#8220;Microvac&#8221; stood for &#8220;analog computer&#8221; in ancient English, but he was on the edge of forgetting even that.</p>
<p>Jerrodine&#8217;s eyes were moist as she watched the visiplate. &#8220;I can&#8217;t help it. I feel funny about leaving Earth.&#8221;</p>
<p>&#8220;Why for Pete&#8217;s sake?&#8221; demanded Jerrodd. &#8220;We had nothing there. We&#8217;ll have everything on X-23. You won&#8217;t be alone. You won&#8217;t be a pioneer. There are over a million people on the planet already. Good Lord, our great grandchildren will be looking for new worlds because X-23 will be overcrowded.&#8221;</p>
<p>Then, after a reflective pause, &#8220;I tell you, it&#8217;s a lucky thing the computers worked out interstellar travel the way the race is growing.&#8221;</p>
<p>&#8220;I know, I know,&#8221; said Jerrodine miserably.</p>
<p>Jerrodette I said promptly, &#8220;Our Microvac is the best Microvac in the world.&#8221;</p>
<p>&#8220;I think so, too,&#8221; said Jerrodd, tousling her hair.</p>
<p>It was a nice feeling to have a Microvac of your own and Jerrodd was glad he was part of his generation and no other. In his father&#8217;s youth, the only computers had been tremendous machines taking up a hundred square miles of land. There was only one to a planet. Planetary ACs they were called. They had been growing in size steadily for a thousand years and then, all at once, came refinement. In place of transistors had come molecular valves so that even the largest Planetary AC could be put into a space only half the volume of a spaceship.</p>
<p>Jerrodd felt uplifted, as he always did when he thought that his own personal Microvac was many times more complicated than the ancient and primitive Multivac that had first tamed the Sun, and almost as complicated as Earth&#8217;s Planetary AC (the largest) that had first solved the problem of hyperspatial travel and had made trips to the stars possible.</p>
<p>&#8220;So many stars, so many planets,&#8221; sighed Jerrodine, busy with her own thoughts. &#8220;I suppose families will be going out to new planets forever, the way we are now.&#8221;</p>
<p>&#8220;Not forever,&#8221; said Jerrodd, with a smile. &#8220;It will all stop someday, but not for billions of years. Many billions. Even the stars run down, you know. Entropy must increase.&#8221;</p>
<p>&#8220;What&#8217;s entropy, daddy?&#8221; shrilled Jerrodette II.</p>
<p>&#8220;Entropy, little sweet, is just a word which means the amount of running-down of the universe. Everything runs down, you know, like your little walkie-talkie robot, remember?&#8221;</p>
<p>&#8220;Can&#8217;t you just put in a new power-unit, like with my robot?&#8221;</p>
<p>The stars are the power-units, dear. Once they&#8217;re gone, there are no more power-units.&#8221;</p>
<p>Jerrodette I at once set up a howl. &#8220;Don&#8217;t let them, daddy. Don&#8217;t let the stars run down.&#8221;</p>
<p>&#8220;Now look what you&#8217;ve done, &#8221; whispered Jerrodine, exasperated.</p>
<p>&#8220;How was I to know it would frighten them?&#8221; Jerrodd whispered back.</p>
<p>&#8220;Ask the Microvac,&#8221; wailed Jerrodette I. &#8220;Ask him how to turn the stars on again.&#8221;</p>
<p>&#8220;Go ahead,&#8221; said Jerrodine. &#8220;It will quiet them down.&#8221; (Jerrodette II was beginning to cry, also.)</p>
<p>Jarrodd shrugged. &#8220;Now, now, honeys. I&#8217;ll ask Microvac. Don&#8217;t worry, he&#8217;ll tell us.&#8221;</p>
<p>He asked the Microvac, adding quickly, &#8220;Print the answer.&#8221;</p>
<p>Jerrodd cupped the strip of thin cellufilm and said cheerfully, &#8220;See now, the Microvac says it will take care of everything when the time comes so don&#8217;t worry.&#8221;</p>
<p>Jerrodine said, &#8220;and now children, it&#8217;s time for bed. We&#8217;ll be in our new home soon.&#8221;</p>
<p>Jerrodd read the words on the cellufilm again before destroying it: INSUFFICIENT DATA FOR A MEANINGFUL ANSWER.</p>
<p>He shrugged and looked at the visiplate. X-23 was just ahead.</p>
<p>VJ-23X of Lameth stared into the black depths of the three-dimensional, small-scale map of the Galaxy and said, &#8220;Are we ridiculous, I wonder, in being so concerned about the matter?&#8221;</p>
<p>MQ-17J of Nicron shook his head. &#8220;I think not. You know the Galaxy will be filled in five years at the present rate of expansion.&#8221;</p>
<p>Both seemed in their early twenties, both were tall and perfectly formed.</p>
<p>&#8220;Still,&#8221; said VJ-23X, &#8220;I hesitate to submit a pessimistic report to the Galactic Council.&#8221;</p>
<p>&#8220;I wouldn&#8217;t consider any other kind of report. Stir them up a bit. We&#8217;ve got to stir them up.&#8221;</p>
<p>VJ-23X sighed. &#8220;Space is infinite. A hundred billion Galaxies are there for the taking. More.&#8221;</p>
<p>&#8220;A hundred billion is not infinite and it&#8217;s getting less infinite all the time. Consider! Twenty thousand years ago, mankind first solved the problem of utilizing stellar energy, and a few centuries later, interstellar travel became possible. It took mankind a million years to fill one small world and then only fifteen thousand years to fill the rest of the Galaxy. Now the population doubles every ten years &#8211;&#8221;</p>
<p>VJ-23X interrupted. &#8220;We can thank immortality for that.&#8221;</p>
<p>&#8220;Very well. Immortality exists and we have to take it into account. I admit it has its seamy side, this immortality. The Galactic AC has solved many problems for us, but in solving the problems of preventing old age and death, it has undone all its other solutions.&#8221;</p>
<p>&#8220;Yet you wouldn&#8217;t want to abandon life, I suppose.&#8221;</p>
<p>&#8220;Not at all,&#8221; snapped MQ-17J, softening it at once to, &#8220;Not yet. I&#8217;m by no means old enough. How old are you?&#8221;</p>
<p>&#8220;Two hundred twenty-three. And you?&#8221;</p>
<p>&#8220;I&#8217;m still under two hundred. &#8211;But to get back to my point. Population doubles every ten years. Once this Galaxy is filled, we&#8217;ll have another filled in ten years. Another ten years and we&#8217;ll have filled two more. Another decade, four more. In a hundred years, we&#8217;ll have filled a thousand Galaxies. In a thousand years, a million Galaxies. In ten thousand years, the entire known Universe. Then what?&#8221;</p>
<p>VJ-23X said, &#8220;As a side issue, there&#8217;s a problem of transportation. I wonder how many sunpower units it will take to move Galaxies of individuals from one Galaxy to the next.&#8221;</p>
<p>&#8220;A very good point. Already, mankind consumes two sunpower units per year.&#8221;</p>
<p>&#8220;Most of it&#8217;s wasted. After all, our own Galaxy alone pours out a thousand sunpower units a year and we only use two of those.&#8221;</p>
<p>&#8220;Granted, but even with a hundred per cent efficiency, we can only stave off the end. Our energy requirements are going up in geometric progression even faster than our population. We&#8217;ll run out of energy even sooner than we run out of Galaxies. A good point. A very good point.&#8221;</p>
<p>&#8220;We&#8217;ll just have to build new stars out of interstellar gas.&#8221;</p>
<p>&#8220;Or out of dissipated heat?&#8221; asked MQ-17J, sarcastically.</p>
<p>&#8220;There may be some way to reverse entropy. We ought to ask the Galactic AC.&#8221;</p>
<p>VJ-23X was not really serious, but MQ-17J pulled out his AC-contact from his pocket and placed it on the table before him.</p>
<p>&#8220;I&#8217;ve half a mind to,&#8221; he said. &#8220;It&#8217;s something the human race will have to face someday.&#8221;</p>
<p>He stared somberly at his small AC-contact. It was only two inches cubed and nothing in itself, but it was connected through hyperspace with the great Galactic AC that served all mankind. Hyperspace considered, it was an integral part of the Galactic AC.</p>
<p>MQ-17J paused to wonder if someday in his immortal life he would get to see the Galactic AC. It was on a little world of its own, a spider webbing of force-beams holding the matter within which surges of sub-mesons took the place of the old clumsy molecular valves. Yet despite it&#8217;s sub-etheric workings, the Galactic AC was known to be a full thousand feet across.</p>
<p>MQ-17J asked suddenly of his AC-contact, &#8220;Can entropy ever be reversed?&#8221;</p>
<p>VJ-23X looked startled and said at once, &#8220;Oh, say, I didn&#8217;t really mean to have you ask that.&#8221;</p>
<p>&#8220;Why not?&#8221;</p>
<p>&#8220;We both know entropy can&#8217;t be reversed. You can&#8217;t turn smoke and ash back into a tree.&#8221;</p>
<p>&#8220;Do you have trees on your world?&#8221; asked MQ-17J.</p>
<p>The sound of the Galactic AC startled them into silence. Its voice came thin and beautiful out of the small AC-contact on the desk. It said: THERE IS INSUFFICIENT DATA FOR A MEANINGFUL ANSWER.</p>
<p>VJ-23X said, &#8220;See!&#8221;</p>
<p>The two men thereupon returned to the question of the report they were to make to the Galactic Council.</p>
<p>Zee Prime&#8217;s mind spanned the new Galaxy with a faint interest in the countless twists of stars that powdered it. He had never seen this one before. Would he ever see them all? So many of them, each with its load of humanity &#8211; but a load that was almost a dead weight. More and more, the real essence of men was to be found out here, in space.</p>
<p>Minds, not bodies! The immortal bodies remained back on the planets, in suspension over the eons. Sometimes they roused for material activity but that was growing rarer. Few new individuals were coming into existence to join the incredibly mighty throng, but what matter? There was little room in the Universe for new individuals.</p>
<p>Zee Prime was roused out of his reverie upon coming across the wispy tendrils of another mind.</p>
<p>&#8220;I am Zee Prime,&#8221; said Zee Prime. &#8220;And you?&#8221;</p>
<p>&#8220;I am Dee Sub Wun. Your Galaxy?&#8221;</p>
<p>&#8220;We call it only the Galaxy. And you?&#8221;</p>
<p>&#8220;We call ours the same. All men call their Galaxy their Galaxy and nothing more. Why not?&#8221;</p>
<p>&#8220;True. Since all Galaxies are the same.&#8221;</p>
<p>&#8220;Not all Galaxies. On one particular Galaxy the race of man must have originated. That makes it different.&#8221;</p>
<p>Zee Prime said, &#8220;On which one?&#8221;</p>
<p>&#8220;I cannot say. The Universal AC would know.&#8221;</p>
<p>&#8220;Shall we ask him? I am suddenly curious.&#8221;</p>
<p>Zee Prime&#8217;s perceptions broadened until the Galaxies themselves shrunk and became a new, more diffuse powdering on a much larger background. So many hundreds of billions of them, all with their immortal beings, all carrying their load of intelligences with minds that drifted freely through space. And yet one of them was unique among them all in being the originals Galaxy. One of them had, in its vague and distant past, a period when it was the only Galaxy populated by man.</p>
<p>Zee Prime was consumed with curiosity to see this Galaxy and called, out: &#8220;Universal AC! On which Galaxy did mankind originate?&#8221;</p>
<p>The Universal AC heard, for on every world and throughout space, it had its receptors ready, and each receptor lead through hyperspace to some unknown point where the Universal AC kept itself aloof.</p>
<p>Zee Prime knew of only one man whose thoughts had penetrated within sensing distance of Universal AC, and he reported only a shining globe, two feet across, difficult to see.</p>
<p>&#8220;But how can that be all of Universal AC?&#8221; Zee Prime had asked.</p>
<p>&#8220;Most of it, &#8221; had been the answer, &#8220;is in hyperspace. In what form it is there I cannot imagine.&#8221;</p>
<p>Nor could anyone, for the day had long since passed, Zee Prime knew, when any man had any part of the making of a universal AC. Each Universal AC designed and constructed its successor. Each, during its existence of a million years or more accumulated the necessary data to build a better and more intricate, more capable successor in which its own store of data and individuality would be submerged.</p>
<p>The Universal AC interrupted Zee Prime&#8217;s wandering thoughts, not with words, but with guidance. Zee Prime&#8217;s mentality was guided into the dim sea of Galaxies and one in particular enlarged into stars.</p>
<p>A thought came, infinitely distant, but infinitely clear. &#8220;THIS IS THE ORIGINAL GALAXY OF MAN.&#8221;</p>
<p>But it was the same after all, the same as any other, and Zee Prime stifled his disappointment.</p>
<p>Dee Sub Wun, whose mind had accompanied the other, said suddenly, &#8220;And Is one of these stars the original star of Man?&#8221;</p>
<p>The Universal AC said, &#8220;MAN&#8217;S ORIGINAL STAR HAS GONE NOVA. IT IS NOW A WHITE DWARF.&#8221;</p>
<p>&#8220;Did the men upon it die?&#8221; asked Zee Prime, startled and without thinking.</p>
<p>The Universal AC said, &#8220;A NEW WORLD, AS IN SUCH CASES, WAS CONSTRUCTED FOR THEIR PHYSICAL BODIES IN TIME.&#8221;</p>
<p>&#8220;Yes, of course,&#8221; said Zee Prime, but a sense of loss overwhelmed him even so. His mind released its hold on the original Galaxy of Man, let it spring back and lose itself among the blurred pin points. He never wanted to see it again.</p>
<p>Dee Sub Wun said, &#8220;What is wrong?&#8221;</p>
<p>&#8220;The stars are dying. The original star is dead.&#8221;</p>
<p>&#8220;They must all die. Why not?&#8221;</p>
<p>&#8220;But when all energy is gone, our bodies will finally die, and you and I with them.&#8221;</p>
<p>&#8220;It will take billions of years.&#8221;</p>
<p>&#8220;I do not wish it to happen even after billions of years. Universal AC! How may stars be kept from dying?&#8221;</p>
<p>Dee sub Wun said in amusement, &#8220;You&#8217;re asking how entropy might be reversed in direction.&#8221;</p>
<p>And the Universal AC answered. &#8220;THERE IS AS YET INSUFFICIENT DATA FOR A MEANINGFUL ANSWER.&#8221;</p>
<p>Zee Prime&#8217;s thoughts fled back to his own Galaxy. He gave no further thought to Dee Sub Wun, whose body might be waiting on a galaxy a trillion light-years away, or on the star next to Zee Prime&#8217;s own. It didn&#8217;t matter.</p>
<p>Unhappily, Zee Prime began collecting interstellar hydrogen out of which to build a small star of his own. If the stars must someday die, at least some could yet be built.</p>
<p>Man considered with himself, for in a way, Man, mentally, was one. He consisted of a trillion, trillion, trillion ageless bodies, each in its place, each resting quiet and incorruptible, each cared for by perfect automatons, equally incorruptible, while the minds of all the bodies freely melted one into the other, indistinguishable.</p>
<p>Man said, &#8220;The Universe is dying.&#8221;</p>
<p>Man looked about at the dimming Galaxies. The giant stars, spendthrifts, were gone long ago, back in the dimmest of the dim far past. Almost all stars were white dwarfs, fading to the end.</p>
<p>New stars had been built of the dust between the stars, some by natural processes, some by Man himself, and those were going, too. White dwarfs might yet be crashed together and of the mighty forces so released, new stars built, but only one star for every thousand white dwarfs destroyed, and those would come to an end, too.</p>
<p>Man said, &#8220;Carefully husbanded, as directed by the Cosmic AC, the energy that is even yet left in all the Universe will last for billions of years.&#8221;</p>
<p>&#8220;But even so,&#8221; said Man, &#8220;eventually it will all come to an end. However it may be husbanded, however stretched out, the energy once expended is gone and cannot be restored. Entropy must increase to the maximum.&#8221;</p>
<p>Man said, &#8220;Can entropy not be reversed? Let us ask the Cosmic AC.&#8221;</p>
<p>The Cosmic AC surrounded them but not in space. Not a fragment of it was in space. It was in hyperspace and made of something that was neither matter nor energy. The question of its size and Nature no longer had meaning to any terms that Man could comprehend.</p>
<p>&#8220;Cosmic AC,&#8221; said Man, &#8220;How may entropy be reversed?&#8221;</p>
<p>The Cosmic AC said, &#8220;THERE IS AS YET INSUFFICIENT DATA FOR A MEANINGFUL ANSWER.&#8221;</p>
<p>Man said, &#8220;Collect additional data.&#8221;</p>
<p>The Cosmic AC said, &#8220;I WILL DO SO. I HAVE BEEN DOING SO FOR A HUNDRED BILLION YEARS. MY PREDECESSORS AND I HAVE BEEN ASKED THIS QUESTION MANY TIMES. ALL THE DATA I HAVE REMAINS INSUFFICIENT.&#8221;</p>
<p>&#8220;Will there come a time,&#8221; said Man, &#8220;when data will be sufficient or is the problem insoluble in all conceivable circumstances?&#8221;</p>
<p>The Cosmic AC said, &#8220;NO PROBLEM IS INSOLUBLE IN ALL CONCEIVABLE CIRCUMSTANCES.&#8221;</p>
<p>Man said, &#8220;When will you have enough data to answer the question?&#8221;</p>
<p>&#8220;THERE IS AS YET INSUFFICIENT DATA FOR A MEANINGFUL ANSWER.&#8221;</p>
<p>&#8220;Will you keep working on it?&#8221; asked Man.</p>
<p>The Cosmic AC said, &#8220;I WILL.&#8221;</p>
<p>Man said, &#8220;We shall wait.&#8221;</p>
<p>&#8220;The stars and Galaxies died and snuffed out, and space grew black after ten trillion years of running down.</p>
<p>One by one Man fused with AC, each physical body losing its mental identity in a manner that was somehow not a loss but a gain.</p>
<p>Man&#8217;s last mind paused before fusion, looking over a space that included nothing but the dregs of one last dark star and nothing besides but incredibly thin matter, agitated randomly by the tag ends of heat wearing out, asymptotically, to the absolute zero.</p>
<p>Man said, &#8220;AC, is this the end? Can this chaos not be reversed into the Universe once more? Can that not be done?&#8221;</p>
<p>AC said, &#8220;THERE IS AS YET INSUFFICIENT DATA FOR A MEANINGFUL ANSWER.&#8221;</p>
<p>Man&#8217;s last mind fused and only AC existed &#8212; and that in hyperspace.</p>
<p>Matter and energy had ended and with it, space and time. Even AC existed only for the sake of the one last question that it had never answered from the time a half-drunken computer ten trillion years before had asked the question of a computer that was to AC far less than was a man to Man.</p>
<p>All other questions had been answered, and until this last question was answered also, AC might not release his consciousness.</p>
<p>All collected data had come to a final end. Nothing was left to be collected.</p>
<p>But all collected data had yet to be completely correlated and put together in all possible relationships.</p>
<p>A timeless interval was spent in doing that.</p>
<p>And it came to pass that AC learned how to reverse the direction of entropy.</p>
<p>But there was now no man to whom AC might give the answer of the last question. No matter. The answer &#8212; by demonstration &#8212; would take care of that, too.</p>
<p>For another timeless interval, AC thought how best to do this. Carefully, AC organized the program.</p>
<p>The consciousness of AC encompassed all of what had once been a Universe and brooded over what was now Chaos. Step by step, it must be done.</p>
<p>And AC said, &#8220;LET THERE BE LIGHT!&#8221;</p>
<p>And there was light&#8230;</p>
<div style="float:right;margin:0px 20px 0px 0px;"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="small-count" data-url="http://www.stenyak.com/archives/441/nope-not-42-this-time/"></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.stenyak.com/archives/441/nope-not-42-this-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
