<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;D0AEQn09fSp7ImA9WxNUFUQ.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816</id><updated>2009-11-07T13:08:23.365+01:00</updated><title>Pool of oblivion</title><subtitle type="html">Because the World Wide Web keeps on growing - as the universe does - chances are that most that is added to it, will be lost or forgotten.</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://ruleant.blogspot.com/" /><link rel="hub" href="http://pubsubhubbub.appspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>81</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><link rel="self" href="http://feeds.feedburner.com/poolofoblivion" type="application/atom+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><entry gd:etag="W/&quot;CUIGRXs9fCp7ImA9WxNUFU0.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-1136766647287104765</id><published>2009-11-06T11:28:00.002+01:00</published><updated>2009-11-06T11:32:04.564+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-11-06T11:32:04.564+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="programming" /><category scheme="http://www.blogger.com/atom/ns#" term="php" /><title>Checking for empty variables in PHP</title><content type="html">While writing some php code I checked for an empty string, using the &lt;i&gt;empty()&lt;/i&gt; function, but I got this error :&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;PHP Fatal error:&amp;nbsp; Can't use method return value in write context&lt;br /&gt;
&lt;/blockquote&gt;I found this very strange because I've used the &lt;i&gt;empty()&lt;/i&gt; function many times before. It turns out that the &lt;i&gt;empty()&lt;/i&gt; function &lt;a href="http://www.bala-krishna.com/php-fatal-error-fix-cant-use-method-return-value-in-write-context"&gt;can not handle the return value of a function&lt;/a&gt; or method. You can only check variables using this function.&lt;br /&gt;
&lt;br /&gt;
The solution is simple, store the return value of a function in a variable, and then check the variable with the &lt;i&gt;empty()&lt;/i&gt; function : &lt;br /&gt;
&lt;br /&gt;
&lt;b style="color: red;"&gt;wrong&lt;/b&gt;&lt;br /&gt;
&lt;blockquote&gt;if ( empty ( some_function() ) ) {&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;div style="color: lime;"&gt;&lt;b&gt;right&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;blockquote&gt;$some_variable = some_function();&lt;br /&gt;
if ( empty ( $some_variable ) ) {&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On a side note, using the &lt;i&gt;empty()&lt;/i&gt; function, is the best way to check for an empty variable, because it combines multiple checks, and works for different variable types. See &lt;a href="http://www.php.net/manual/en/function.empty.php"&gt;documentation&lt;/a&gt; for details. When relying solely on &lt;i&gt;strlen()&lt;/i&gt; or &lt;i&gt;isset()&lt;/i&gt;, you can get an unexpected result.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-1136766647287104765?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/1136766647287104765/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=1136766647287104765" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/1136766647287104765?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/1136766647287104765?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/Bb9llJkOQjo/checking-for-empty-variables-in-php.html" title="Checking for empty variables in PHP" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2009/11/checking-for-empty-variables-in-php.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0cEQHc9cSp7ImA9WxNXFUQ.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-3300141553329685714</id><published>2009-10-03T14:36:00.016+02:00</published><updated>2009-10-03T19:30:01.969+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-03T19:30:01.969+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="looking for a job" /><category scheme="http://www.blogger.com/atom/ns#" term="structure" /><category scheme="http://www.blogger.com/atom/ns#" term="insight" /><category scheme="http://www.blogger.com/atom/ns#" term="energy saving" /><category scheme="http://www.blogger.com/atom/ns#" term="UGent" /><category scheme="http://www.blogger.com/atom/ns#" term="future" /><category scheme="http://www.blogger.com/atom/ns#" term="science" /><category scheme="http://www.blogger.com/atom/ns#" term="reading" /><category scheme="http://www.blogger.com/atom/ns#" term="physics" /><category scheme="http://www.blogger.com/atom/ns#" term="math" /><title>New challenge</title><content type="html">About a year ago I started something that, a few days ago, came to a conclusion - but to be fair, it's more a milestone than a conclusion.&lt;br /&gt;In August of last year (2008), I applied for a job at Ghent University. In the months that followed I went through the selection process, and after some hurdles I got selected. In April of this year (2009), I started on my new job. And now, six months later, my trial period is over. After a very good evaluation, I was appointed to the job, starting October 1st.&lt;br /&gt;It took me over a year to get so far, but now I've reached what I was aiming for since then. But of course, this is just the start of it all. I have the rest of my life's working career ahead of me at Ghent University. And I'm still getting started, with a lot of plans to accomplish, projects to start, task being assigned, ... I'll know what to do the next few years.&lt;br /&gt;&lt;br /&gt;But now that I've reached some stability on the work front, I might think of a new challenge, some new projects to start, or some overall reorganisation of the goals and priorities in my life. I've been thinking of a few, some silly or ridiculous, others infeasible (at least on my own), or down right impossible ways to pass time:&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Find a way of solving any Rubik's cube in maximum 21 steps. The current proof says &lt;a href="http://cubezzz.homelinux.org/drupal/?q=node/view/121"&gt;maximum 22 steps&lt;/a&gt; are needed.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Write a socio-philosophical essay addressing some effects of globalism : economy, environment, politics, communication, pluralism, culture, migration.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Now that, Gianfranco Gentile, a researcher of Ghent University has discovered that &lt;a href="http://www.nature.com/nature/journal/v461/n7264/abs/nature08437.html"&gt;dark matter is needed to explain certain behavior in galaxies&lt;/a&gt;, it might be time to create a theory combining classic, relativistic and quantum mechanics together with dark matter.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Work on something revolutionary to save energy, use available energy more efficiently, not only by technology, but also by a change of mentality.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Build a &lt;a href="http://en.wikipedia.org/wiki/Render_farm"&gt;render farm&lt;/a&gt;.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Start &lt;a href="http://en.wikipedia.org/wiki/Beatboxing"&gt;beatboxing&lt;/a&gt;.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Research methods of efficiently stacking solids, and by extension, deformable solids (f.e. a sealed bag containing a liquid).&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;But some are more realistic so I'll focus on those :&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Learn to solve a &lt;a href="http://en.wikipedia.org/wiki/Rubik%27s_cube"&gt;Rubik's Cube&lt;/a&gt;. This is trivial, but I would like to find it by myself.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Pick up playing the piano again.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Read more, by which I mean : books, literature.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;Or I could just try to look for goals in my work, find a girlfriend, buy a house, get married, start a family and raise some children.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-3300141553329685714?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/3300141553329685714/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=3300141553329685714" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/3300141553329685714?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/3300141553329685714?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/eV8ICTDWnC8/new-challenge.html" title="New challenge" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2009/10/new-challenge.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A08MRXY4fip7ImA9WxVVF0Q.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-3617627948117231825</id><published>2009-03-11T20:00:00.012+01:00</published><updated>2009-03-11T20:31:24.836+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-11T20:31:24.836+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="MySQL" /><category scheme="http://www.blogger.com/atom/ns#" term="structure" /><category scheme="http://www.blogger.com/atom/ns#" term="rename multiple tables" /><category scheme="http://www.blogger.com/atom/ns#" term="programming" /><category scheme="http://www.blogger.com/atom/ns#" term="php" /><title>Rename multiple tables in MySQL database</title><content type="html">Having to rename multiple tables with a similar pattern (prefix, suffix, ...) by replacing the recurring pattern, isn't an easy task, because there is no simple function or statement for doing it, not as far as I know.&lt;br /&gt;Renaming tables like '&lt;span style="font-style:italic;"&gt;table_1234&lt;/span&gt;' and '&lt;span style="font-style:italic;"&gt;table_3456&lt;/span&gt;' to '&lt;span style="font-style:italic;"&gt;new_table_1234&lt;/span&gt;' and '&lt;span style="font-style:italic;"&gt;new_table_3456&lt;/span&gt;', is pretty straightforward in SQL:&lt;br /&gt;&lt;pre name="code" class="sql:nogutter:nocontrols"&gt;&lt;br /&gt;RENAME TABLE `database`.`table_1234`&lt;br /&gt;   TO `database`.`new_table_1234`;&lt;br /&gt;RENAME TABLE `database`.`table_3456`&lt;br /&gt;   TO `database`.`new_table_3456`;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;or in one SQL statement :&lt;br /&gt;&lt;pre name="code" class="sql:nogutter:nocontrols"&gt;&lt;br /&gt;RENAME TABLE&lt;br /&gt;   `database`.`table_1234` TO `database`.`new_table_1234`,&lt;br /&gt;   `database`.`table_3456` TO `database`.`new_table_3456`;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;But when renaming a lot of tables, this method becomes tedious and time consuming.&lt;br /&gt;&lt;br /&gt;This PHP script automates the renaming of multiple tables in a MySQL database. It lists all tables in a MySQL database, which contain a defined string pattern. The script creates and executes a series of SQL statements, which rename the table by replacing the search pattern in the original table name with another pattern in the new table name. &lt;br /&gt;&lt;br /&gt;This script can easily be modified to rename multiple databases, or when stripping the original pattern (f.e. a prefix) and adding a new pattern (f.e. a suffix) is needed.&lt;br /&gt;&lt;pre name="code" class="php:nogutter"&gt;&lt;br /&gt;&amp;lt;?php&lt;br /&gt;$db_server = "localhost";    // hostname MySQL server&lt;br /&gt;$db_username = "username";   // username MySQL server&lt;br /&gt;$db_password = "password";   // password MySQL server&lt;br /&gt;$db_name = "database";       // database name&lt;br /&gt;&lt;br /&gt;$pattern = "pattern_";          // search string&lt;br /&gt;$new_pattern = "new_pattern_";  // replacement string, &lt;br /&gt;                                // can be empty&lt;br /&gt;&lt;br /&gt;// login to MySQL server&lt;br /&gt;$link = mysql_connect( $db_server, $db_username, $db_password);&lt;br /&gt;&lt;br /&gt;if (!$link)&lt;br /&gt;{&lt;br /&gt;  die('Could not connect: ' . mysql_error());&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;// list all tables in the database containing the search pattern&lt;br /&gt;$sql = "SHOW TABLES FROM `" . $db_name . "`";&lt;br /&gt;$sql .= " LIKE '%" . $pattern . "%'";&lt;br /&gt;&lt;br /&gt;$result = mysql_query ( $sql, $link );&lt;br /&gt;if (!$result)&lt;br /&gt;{&lt;br /&gt;  die("Invalid query: " . mysql_error( $link ));&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;$renamed = 0;&lt;br /&gt;$failed = 0;&lt;br /&gt;&lt;br /&gt;while ( $row = mysql_fetch_array ($result) )&lt;br /&gt;{&lt;br /&gt;  // rename every table by replacing the search pattern &lt;br /&gt;  // with a new pattern&lt;br /&gt;  $table_name = $row[0];&lt;br /&gt;  $new_table_name = str_replace ( $pattern, $new_pattern, $table_name);&lt;br /&gt;&lt;br /&gt;  $sql = "RENAME TABLE `" . $db_name . "`.`" . $table_name . "`";&lt;br /&gt;  $sql .= " TO `" . $db_name . "`.`" . $new_table_name . "`";&lt;br /&gt;&lt;br /&gt;  $result_rename = mysql_query ( $sql, $link );&lt;br /&gt;  if ($result_rename)&lt;br /&gt;  {&lt;br /&gt;    echo "Table `" . $table_name . "` renamed to :`";&lt;br /&gt;    echo $new_table_name . "`.\n";&lt;br /&gt;    $renamed++;&lt;br /&gt;  }&lt;br /&gt;  else&lt;br /&gt;  {&lt;br /&gt;    // notify when the renaming failed and show reason why&lt;br /&gt;    echo "Renaming of table `" . $table_name . "` has failed: ";&lt;br /&gt;    echo mysql_error( $link ) . "\n";&lt;br /&gt;    $failed++;&lt;br /&gt;  }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;echo $renamed . " tables were renamed, " . $failed . " failed.\n";&lt;br /&gt;&lt;br /&gt;// close connection to MySQL server&lt;br /&gt;mysql_close( $link );&lt;br /&gt;?&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-3617627948117231825?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/3617627948117231825/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=3617627948117231825" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/3617627948117231825?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/3617627948117231825?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/aJLlr5Ygllg/rename-multiple-tables-in-mysql.html" title="Rename multiple tables in MySQL database" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">3</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2009/03/rename-multiple-tables-in-mysql.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUEGQ3k-cCp7ImA9WxVVF0s.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-9145019256376419560</id><published>2009-03-11T11:33:00.000+01:00</published><updated>2009-03-11T11:33:42.758+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-11T11:33:42.758+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="structure" /><category scheme="http://www.blogger.com/atom/ns#" term="layout" /><category scheme="http://www.blogger.com/atom/ns#" term="syntax highlighting" /><category scheme="http://www.blogger.com/atom/ns#" term="programming" /><title>Syntax Highlighting in Blogger</title><content type="html">I've added some Javascript to the template of my blog to get &lt;a href="http://code.google.com/p/syntaxhighlighter/w/list"&gt;Syntax Highlighting&lt;/a&gt; working. This means source code is formatted so it is easier to read. If it works allright, you should see an example of some highlighted php-code below. &lt;span style="font-style:italic;"&gt;(The source code is not formatted/coloured when reading this post through an RSS-feed.)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre name="code" class="php:nocontrols:nogutter"&gt;&lt;br /&gt;&amp;lt;?php&lt;br /&gt;/* Sample php code&lt;br /&gt;This code doesn't do anything at all.&lt;br /&gt;It just contains some php elements that should be formatted&lt;br /&gt;and coloured.&lt;br /&gt;*/&lt;br /&gt;&lt;br /&gt;$some_variable = "some_string";&lt;br /&gt;&lt;br /&gt;// Some comment&lt;br /&gt;$result = some_function( $some_variable );&lt;br /&gt;&lt;br /&gt;if (!$result)&lt;br /&gt;{&lt;br /&gt;  die("It doesn't work!");&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;$some_array = new array();&lt;br /&gt;&lt;br /&gt;$some_array[0] = $result;&lt;br /&gt;?&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-9145019256376419560?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/9145019256376419560/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=9145019256376419560" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/9145019256376419560?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/9145019256376419560?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/vyg9vy7NKcs/syntax-highlighting-in-blogger.html" title="Syntax Highlighting in Blogger" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2009/03/syntax-highlighting-in-blogger.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0YBRXs4eSp7ImA9WxVXFkw.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-793353309666092522</id><published>2009-02-07T14:46:00.009+01:00</published><updated>2009-02-14T13:39:14.531+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-02-14T13:39:14.531+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="universal power adaptor" /><category scheme="http://www.blogger.com/atom/ns#" term="structure" /><category scheme="http://www.blogger.com/atom/ns#" term="electricity" /><category scheme="http://www.blogger.com/atom/ns#" term="energy saving" /><title>Green Plug Universal Power Adaptor</title><content type="html">How many electronic devices do you have? A laptop, cell phone, MP3 player, external hard disc, GPS, ...&lt;br /&gt;And each of them has its own adaptor, which can only be used with a specific device and isn't compatible with your other devices.&lt;br /&gt;So you end up with several different adapters powering your devices, which results in a lot of cables that can get entangled, and which take up a lot of power plugs.&lt;br /&gt;And if an adapter breaks, you have to buy a spare one from the original manufacturer, which costs a lot.&lt;br /&gt;&lt;br /&gt;Wouldn't it be nice if there was a universal adapter for all your electronic devices?&lt;br /&gt;You would only have to take one adaptor with you, to charge your cell phone, MP3 player and laptop. If a friend or colleague forgot to take her or his adapter, he or she could easily use yours, even if he or she uses a laptop of a different brand.&lt;br /&gt;&lt;br /&gt;Actually, there is an initiative to standardize power adaptors : &lt;br /&gt;&lt;a href="http://www.iwantmygreenplug.com/"&gt;Green Plug Universal Power Adaptor&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.iwantmygreenplug.com/"&gt; &lt;br /&gt;&lt;img src="http://www.iwantmygreenplug.com/images/greenplug-widget.gif" alt="GreenPlug Universal Adapter" border="0" height="257" width="180" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-793353309666092522?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/793353309666092522/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=793353309666092522" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/793353309666092522?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/793353309666092522?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/lKjkIIbuirg/green-plug-universal-power-adaptor.html" title="Green Plug Universal Power Adaptor" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2009/02/green-plug-universal-power-adaptor.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D04NSX4_eCp7ImA9WxVSF0o.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-3945623952206714727</id><published>2009-01-12T16:56:00.003+01:00</published><updated>2009-01-12T16:59:58.040+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-01-12T16:59:58.040+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><category scheme="http://www.blogger.com/atom/ns#" term="wifi" /><title>Enabling wireless network on an Acer Aspire One in Ubuntu</title><content type="html">I just installed Kubuntu 8.10 on an Acer Aspire One. Everything seems to work fine, but the wireless network doesn't seem to work.&lt;br /&gt;Luckily I found this &lt;a href="http://ubuntuforums.org/archive/index.php/t-1014196.html"&gt;HOWTO&lt;/a&gt; on enabling the wifi.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-3945623952206714727?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/3945623952206714727/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=3945623952206714727" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/3945623952206714727?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/3945623952206714727?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/uF1UXaMFKv0/enabling-wireless-network-on-acer.html" title="Enabling wireless network on an Acer Aspire One in Ubuntu" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2009/01/enabling-wireless-network-on-acer.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0IDSX88cSp7ImA9WxRUEko.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-5802186665816223317</id><published>2008-11-21T14:26:00.007+01:00</published><updated>2008-11-21T15:59:38.179+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-11-21T15:59:38.179+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="social web" /><category scheme="http://www.blogger.com/atom/ns#" term="structure" /><category scheme="http://www.blogger.com/atom/ns#" term="semantic web" /><category scheme="http://www.blogger.com/atom/ns#" term="Open Source" /><category scheme="http://www.blogger.com/atom/ns#" term="internet" /><category scheme="http://www.blogger.com/atom/ns#" term="security" /><title>Social Web</title><content type="html">Social networking websites are becoming more and more popular, and it's number is growing. Some websites provide a unique service, while other websites seem to be more of the same.&lt;br /&gt;Some of your friends join one website while others join another, and both of them are requesting to join them on their website of choice.&lt;br /&gt;&lt;br /&gt;After a while you have an account with several of those websites, and you start to notice you are providing the same information over and over again, on every of those websites : personal details, interests, schools you attended, employers you worked for.&lt;br /&gt;And you have to (re)connect to your friends on every of those websites.&lt;br /&gt;Not to mention when something changes, for instance when you change jobs, you have to change it on every website and hope you don't forget any of them.&lt;br /&gt;&lt;br /&gt;Wouldn't it be convenient if all of the information you provide on those websites, can be shared between those websites? If you want to change something, you can do it in one place and all other social networking websites where you have an account adopt these changes automatically? If you add a friend on one website, and that friend has an account on another website where you have an account too, that this friend is added there as well?&lt;br /&gt;&lt;br /&gt;I'm not the only one &lt;a href="http://www.n2os.com/?p=58"&gt;asking the same questions&lt;/a&gt;. And it seems some effort is put into creating a Social Web, where this kind of (personal) data can be shared between (social networking) websites in a open, easy and secure way.&lt;br /&gt;These are a few of the initiatives :&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://dataportability.org/"&gt;Data Portability&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://esw.w3.org/topic/SocialWebXGCharter"&gt;Social Web Incubator Group&lt;/a&gt; (backed by &lt;a href="http://www.w3.org/"&gt;W3C&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.opensocial.org/"&gt;OpenSocial&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;A &lt;a href="http://www.ibiblio.org/hhalpin/tutorials/socweb/"&gt;recent presentation&lt;/a&gt; (June 2008) was held with an overview of these efforts and what the future will bring. Unfortunately, these efforts, for now, are quite theoretical  and about creating standards based upon existing web standards. Several protocols are proposed (&lt;a href="http://en.wikipedia.org/wiki/FOAF_%28software%29"&gt;FOAF&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/XHTML_Friends_Network"&gt;XFN&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/HCard"&gt;hCard&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/GRDDL"&gt;GRDDL&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/RDFa"&gt;RDF&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Openid"&gt;OpenID&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/OAuth"&gt;OAuth&lt;/a&gt;, &lt;a href="http://www.opensocial.org/Technical-Resources/opensocial-spec-v081/restful-protocol"&gt;REST&lt;/a&gt;, ...) to be used in this new standards.&lt;br /&gt;&lt;br /&gt;No real usable application is available at the moment, not as far as I know, but the big players (MySpace, Facebook, Google, Twitter, Netlog,  ...) are backing some of these initiatives.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-5802186665816223317?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/5802186665816223317/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=5802186665816223317" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/5802186665816223317?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/5802186665816223317?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/yHICphxdU78/social-web.html" title="Social Web" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2008/11/social-web.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkEMRH0yfyp7ImA9WxRQFUU.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-5803141949411566400</id><published>2008-10-09T21:05:00.003+02:00</published><updated>2008-10-09T21:31:25.397+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-09T21:31:25.397+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="computers" /><category scheme="http://www.blogger.com/atom/ns#" term="hardware" /><category scheme="http://www.blogger.com/atom/ns#" term="chaos" /><category scheme="http://www.blogger.com/atom/ns#" term="spare parts" /><category scheme="http://www.blogger.com/atom/ns#" term="ATI" /><title>Noisy fan</title><content type="html">I noticed a whining noise, coming out of my computer, and it turned out to be caused by the fan on my graphics card. It is about 3 years old, so the fan starts to wear and will soon stop turning, which could be disastrous for the GPU on the graphics card.&lt;br /&gt;&lt;br /&gt;So I started looking for a replacement fan on the producer's website and found this :&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="border-collapse: separate; color: rgb(51, 51, 51); font-family: Verdana; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;h1 align="left"&gt;&lt;span style="font-family:Arial;"&gt;&lt;/span&gt;&lt;/h1&gt;&lt;/span&gt;&lt;blockquote&gt;&lt;span class="Apple-style-span" style="border-collapse: separate; color: rgb(51, 51, 51); font-family: Verdana; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;h1 align="left"&gt;&lt;span style="font-family:Arial;"&gt;Noisy Fan or Fan Failure&lt;span class="Apple-converted-space"&gt; &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/h1&gt;&lt;p style="margin-top: 0px; margin-bottom: 0px;" align="left"&gt;&lt;span style="font-family:Arial;font-size:100%;"&gt;The fans on ATI graphics cards are not user replaceable parts. To avoid any complications due to any possible damage that may have been caused by the fan's failure or degraded functionality, the entire card should be replaced. If the card is currently under warranty and built by ATI, you can fill out and submit the online warranty request form at&lt;span class="Apple-converted-space"&gt; &lt;/span&gt;&lt;a href="http://www.ati.amd.com/rma" style="color: rgb(0, 153, 102);"&gt;http://www.ati.amd.com/rma&lt;/a&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;br /&gt;As I mentioned, my graphics card, a ATI Radeon 9600 XT 128MB, is 3 years old, so past warranty, but it still works fine. It seems I'll have to find a replacement fan, without help from ATI. I'm sure I'll find one, but I'm a bit upset ATI provides such a lousy service.&lt;br /&gt;&lt;br /&gt;I can understand, they want you to buy a completely new and costly graphics card that's faster and better, but maybe if you read something like this, a customer might consider buying a graphics card of another supplier next time. One that does provide spare fans. ;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-5803141949411566400?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/5803141949411566400/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=5803141949411566400" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/5803141949411566400?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/5803141949411566400?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/BDMTTBCknIA/noisy-fan.html" title="Noisy fan" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2008/10/noisy-fan.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkECQXk-cCp7ImA9WxRREUo.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-4816734453119170763</id><published>2008-09-23T14:44:00.005+02:00</published><updated>2008-09-23T14:57:40.758+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-09-23T14:57:40.758+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Open Source" /><category scheme="http://www.blogger.com/atom/ns#" term="gadget" /><category scheme="http://www.blogger.com/atom/ns#" term="RIP" /><category scheme="http://www.blogger.com/atom/ns#" term="chaos" /><title>RIP Mark Hoekstra</title><content type="html">Mark Hoekstra, a young Dutch guy, &lt;a href="http://geektechnique.org/blog/862/mark-hoekstra-has-passed-away"&gt;passed away last week&lt;/a&gt;, after suffering a heart attack. He was only 34.&lt;br /&gt;&lt;br /&gt;He hosted the &lt;a href="http://geektechnique.org/"&gt;geektechnique.org&lt;/a&gt; website, informing the world of his ongoing projects and hacking together of electronic gadgets.&lt;br /&gt;&lt;br /&gt;His death is a great loss for the Open Source and hacking community.&lt;br /&gt;&lt;br /&gt;RIP Mark Hoekstra, you will be missed.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-4816734453119170763?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/4816734453119170763/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=4816734453119170763" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/4816734453119170763?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/4816734453119170763?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/UHE2FTmkJEE/rip-mark-hoekstra.html" title="RIP Mark Hoekstra" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2008/09/rip-mark-hoekstra.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUEDQ3Yyfyp7ImA9WxdbGE0.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-5985705959587766680</id><published>2008-08-15T14:23:00.003+02:00</published><updated>2008-08-15T14:34:32.897+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-08-15T14:34:32.897+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="structure" /><category scheme="http://www.blogger.com/atom/ns#" term="insight" /><category scheme="http://www.blogger.com/atom/ns#" term="working" /><title>Dreamjob</title><content type="html">Changing jobs is always some sort of a gamble. Will I like it? Is it as described in the vacancy? Is it as I expected it to be?&lt;br /&gt;Therefor, it is important to know what you want and expect of a job.&lt;br /&gt;&lt;br /&gt;Taking my current and past job experiences in account, this is what my ideal job would look like :&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;It should have something to do with technology or IT. I enjoy creating new things, so some programming, engineering or research should be envolved.&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;I have to believe in what I'm doing or what I'm being part of. The long-term project or product should be something I can support and be commited to. Maybe some sort of Open Source project, or cutting edge technology.&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Considering my health, it is important I get enough sleep. Although I always enjoyed doing project work which involved long, irregular hours and traveling abroad, it's better for me if I can have less demanding hours.&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;I don't mind forensing, to a certain extent, but I'd like to live near where I work. Working in the same city where I live, is therefor preferrable. For a dreamjob, I would even consider relocating, even if it means going abroad.&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;The working atmosphere should be nice. Getting along with my colleagues is important as I'm around them for a major part of the day, and maybe even for a large part of my working life.&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-5985705959587766680?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/5985705959587766680/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=5985705959587766680" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/5985705959587766680?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/5985705959587766680?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/2KT6Dhs03po/dreamjob.html" title="Dreamjob" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2008/08/dreamjob.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUcMRH85fSp7ImA9WxdUGEk.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-4441550506314104292</id><published>2008-08-04T11:24:00.003+02:00</published><updated>2008-08-04T11:44:45.125+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-08-04T11:44:45.125+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="battery" /><category scheme="http://www.blogger.com/atom/ns#" term="structure" /><category scheme="http://www.blogger.com/atom/ns#" term="memory effect" /><category scheme="http://www.blogger.com/atom/ns#" term="iPod" /><category scheme="http://www.blogger.com/atom/ns#" term="retraining" /><title>Retraining batteries</title><content type="html">I've bought an Apple iPod (4G) three years ago (December 2004) and I've noticed its battery life decreasing over the years.&lt;br /&gt;&lt;br /&gt;A few months ago (March 2008) I started on a new job, for which I spend about 2-3 hours per day commuting by train, during which I listen to music on my iPod.&lt;br /&gt;When I first started, I could use my iPod for 2 days (approx. 5 hours of listening), without recharging the battery. But over the past months, the battery life increased. Last week I managed to use my iPod for 4 consecutive days (approx. 10 hours of listening), without recharging. It seems that battery memory can be 'retrained'.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-4441550506314104292?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/4441550506314104292/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=4441550506314104292" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/4441550506314104292?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/4441550506314104292?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/4n5v98Qo-mc/retraining-batteries.html" title="Retraining batteries" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2008/08/retraining-batteries.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkEMRXc_fyp7ImA9WxdUGEk.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-1410604217735241846</id><published>2008-07-16T19:44:00.007+02:00</published><updated>2008-08-04T12:11:24.947+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-08-04T12:11:24.947+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="structure" /><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><category scheme="http://www.blogger.com/atom/ns#" term="semantic web" /><category scheme="http://www.blogger.com/atom/ns#" term="to do" /><category scheme="http://www.blogger.com/atom/ns#" term="programming" /><category scheme="http://www.blogger.com/atom/ns#" term="php" /><category scheme="http://www.blogger.com/atom/ns#" term="time management" /><title>Todo list</title><content type="html">This post is a work in progress, listing things I would like to do in the near and more distant future.&lt;br /&gt;Some may be completed soon, while others will take a long time or may never be completed.&lt;br /&gt;While some items are in preparation of another item on the list, others have no set goal or defined purpose, yet. Thus, the items on this list are in no particular order :&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Learning new programming languages and improving my knowledge of the ones I'm already familiar with :&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://en.wikipedia.org/wiki/Erlang_%28programming_language%29"&gt;Erlang&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;C++&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Perl&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;Linux :&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Finish the &lt;a href="http://cross-lfs.org/"&gt;CLFS&lt;/a&gt; project for my old 486&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Upgrade to a new version of &lt;a href="http://www.linuxfromscratch.org/lfs/"&gt;LFS&lt;/a&gt; on my server&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Get my encrypted external hard drive working in linux and windows&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Learn more about the linux kernel and maybe participate in its development or that of another Open Source project&lt;br /&gt;&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;Continue work on some small PHP-projects&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Think about the feasibility of the semantic web, Turing tests, universal machines and time travel.&lt;br /&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;(Re)paint my bathroom&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Find a new hobby&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Get a girlfriend&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-1410604217735241846?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/1410604217735241846/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=1410604217735241846" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/1410604217735241846?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/1410604217735241846?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/Eqs8p1X-nGE/todo-list.html" title="Todo list" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2008/07/todo-list.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkcMR3c5fip7ImA9WxZQGEs.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-5635909135491116980</id><published>2008-02-23T15:42:00.008+01:00</published><updated>2008-02-24T16:48:06.926+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-02-24T16:48:06.926+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="looking for a job" /><category scheme="http://www.blogger.com/atom/ns#" term="birthday" /><category scheme="http://www.blogger.com/atom/ns#" term="relaxing" /><title>What a week!</title><content type="html">Last week, I did a &lt;a href="http://ruleant.blogspot.com/2008/02/selection-test.html"&gt;selection test at NMBS&lt;/a&gt;.&lt;br /&gt;Yesterday, I got the result : 13,5/20, which is enough to go to the next round. But I'm not sure I will do the interview in the next round, given recent developments.&lt;br /&gt;&lt;br /&gt;On Wednesday, I had another &lt;a href="http://ruleant.blogspot.com/2008/02/trip-to-vub-veni-vidi-vici.html"&gt;interview, this time for a job at VUB&lt;/a&gt;. Before I got home, they contacted me to announce I got the job. Since then I have made some arrangements to speed up the procedure for appointing my successor at my current job and got to an agreement with my new employer when to start working.&lt;br /&gt;&lt;br /&gt;Today is my birthday. I've received a lot of messages, for which I'm grateful.&lt;br /&gt;Tonight I will do something relaxing, going out for diner and maybe watch a film at the cinema.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-5635909135491116980?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/5635909135491116980/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=5635909135491116980" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/5635909135491116980?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/5635909135491116980?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/zBzcnmhvmoA/what-week.html" title="What a week!" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">2</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2008/02/what-week.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0UFQH0yfSp7ImA9WxZQFU4.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-6252574044681199680</id><published>2008-02-20T21:05:00.005+01:00</published><updated>2008-02-20T21:26:51.395+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-02-20T21:26:51.395+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="looking for a job" /><category scheme="http://www.blogger.com/atom/ns#" term="computers" /><category scheme="http://www.blogger.com/atom/ns#" term="structure" /><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><category scheme="http://www.blogger.com/atom/ns#" term="working" /><title>Selection test #2 : trip to VUB</title><content type="html">I went, I told them what I know and I got a job!&lt;br /&gt;&lt;br /&gt;This morning I went to Brussels, for the second time this week, for a job interview and written selection test, this time at &lt;a href="http://www.vub.ac.be/"&gt;VUB&lt;/a&gt;. The job I applied for is very similar to what I do now, i.e. system administration of linux servers.&lt;br /&gt;&lt;br /&gt;The written test, in the morning, went well, explaining some linux and digital library terms and answering some sysadmin related questions. In the afternoon, I had an interview, with more questions about linux, libraries, me and my motivation. And although I was quite nervous, it went well.&lt;br /&gt;&lt;br /&gt;On the way home, I got a call, telling me I was ranked first and congratulating me with my appointment as sysadmin.&lt;br /&gt;&lt;br /&gt;I didn't expect to hear from them so soon. I thought it would take at least a day or two, before they would let me know the outcome of their deliberation. But it didn't take that long, so I'm very excited getting that job.&lt;br /&gt;&lt;br /&gt;I have some thinking to do and arrange a few things, soon, as they would like me to start in March already.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-6252574044681199680?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/6252574044681199680/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=6252574044681199680" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/6252574044681199680?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/6252574044681199680?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/9r81y8Iztj8/trip-to-vub-veni-vidi-vici.html" title="Selection test #2 : trip to VUB" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">2</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2008/02/trip-to-vub-veni-vidi-vici.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0ADSHg6eSp7ImA9WxZQE0s.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-2259992151650232608</id><published>2008-02-18T21:43:00.009+01:00</published><updated>2008-02-18T22:22:59.611+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-02-18T22:22:59.611+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="looking for a job" /><category scheme="http://www.blogger.com/atom/ns#" term="insight" /><category scheme="http://www.blogger.com/atom/ns#" term="chaos" /><category scheme="http://www.blogger.com/atom/ns#" term="waiting" /><title>Waiting for reactions</title><content type="html">As I'm actively looking for a new job, during the last few weeks, I've send out some applications already. But after sending them, comes a very boring and nerve-wrecking stage : waiting for reactions.&lt;br /&gt;&lt;br /&gt;Some companies have a web application or a dedicated E-mail address for sending applications. Other have a good policy on handling applications. Both result in a (semi-)automatic answer, thanking you for your application, confirming your application was received or instructions on when to expect an answer (or not), or what to do when you haven't received an answer within a certain period of time.&lt;br /&gt;&lt;br /&gt;Others send out letters or E-mails thanking you for your application, but regret to have to inform the vacancy is already filled or you don't seem to satisfy all the criteria needed for the job, wishing you good look on finding a job.&lt;br /&gt;But, in case you're not suitable for the job, they never tell you why you're not fitting in. Was it something in the presentation letter? Was I too modest, or not elaborative enough? Did I write something offending? Didn't I apply to all courtesy and protocol which is needed in writing a presentation letter?&lt;br /&gt;Or do I miss some experience or education? Did they put more value in the optional prerequisites, than was laid out in the vacancy?&lt;br /&gt;I probably will never know, but it keeps me wondering.&lt;br /&gt;&lt;br /&gt;But some don't react to your application at all, which is actually quite rude. If they would just send a short message informing you don't fit in (like I mentioned in the previous paragraph), you can stop waiting for an answer. But if no reaction comes, when can you stop hoping for a reaction? &lt;br /&gt;&lt;br /&gt;But fortunately, you only need one job, so if you send out enough applications, some reach companies of the first type, resulting hopefully in a positive reaction or an invitation for further testing or an interview. And once you have a job, it doesn't matter some applications never get answered. But while you're waiting, it can be quite stressful.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-2259992151650232608?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/2259992151650232608/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=2259992151650232608" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/2259992151650232608?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/2259992151650232608?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/eN4pkt8Z_Hg/waiting-for-reactions.html" title="Waiting for reactions" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2008/02/waiting-for-reactions.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A08GQng6cCp7ImA9WxZQE0s.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-6179474498438844916</id><published>2008-02-17T15:15:00.006+01:00</published><updated>2008-02-18T22:23:43.618+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-02-18T22:23:43.618+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="looking for a job" /><category scheme="http://www.blogger.com/atom/ns#" term="structure" /><category scheme="http://www.blogger.com/atom/ns#" term="test" /><category scheme="http://www.blogger.com/atom/ns#" term="trains" /><title>Selection test #1.1</title><content type="html">Yesterday, I had to wake up early. 6:30 is early enough during the week, but on a Saturday it's even more unpleasant. The reason I had to get up this early, was because I had to be in Brussels at 9 o'clock to participate in a selection test for a new job.&lt;br /&gt;&lt;br /&gt;Despite the early time, I managed to get out of bed, take a shower and eat some breakfast. Then I headed for the train station. Because I left a little early I managed to get a train earlier, giving me more time to get a connection at Gent-Sint-Pieters, on my way to &lt;span style="font-style:italic;"&gt;Brussels South&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The building where I was expected to take the test is near &lt;span style="font-style:italic;"&gt;Brussels South&lt;/span&gt;, so I just had to cross the street to get there. Being a bit early, I had to wait in the hall, watching the other contestants arrive. At 8:50 we were let in, good thing I planned to take a train arriving at 8:30, because the next one arrived at 8:54 at the station, leaving me only minutes to locate the building, getting there and finding the entrance. &lt;br /&gt;&lt;br /&gt;Before taking the test we got an introduction about the &lt;a href="http://www.nmbs.be"&gt;company&lt;/a&gt;, the kind of work we would have to do, once employed, and an overview of the selection procedure, which was about to start a few minutes later with a written selection test.&lt;br /&gt;&lt;br /&gt;The written test was multiple choice, with 40 questions, divide in 3 categories. To discourage guessing answers, every wrong answer was penalized with 1/3 of a point. For every good answer one was awarded one point. In the end one had to score 10/20 to get to next round, which is an oral test.&lt;br /&gt;The three categories were mechanics, electricity (common knowledge) and electricity ( power or signal ). It went rather well, considering that it has been some years now since I graduated and some of my knowledge of these topics is rather dusty. And I didn't have time to review everything before the test.&lt;br /&gt;I managed to solve 28 of 40 questions, of which I'm quite certain.&lt;br /&gt;So now it's waiting for the results. The oral test is planned in two weeks, which leaves me some time to review some more of my previous courses. If you catch me with a book on electrical motors, you'll know why.&lt;br /&gt;&lt;br /&gt;BTW: Thanks to &lt;a href="http://empressnemo.blogspot.com/"&gt;Tine&lt;/a&gt;, for letting me borrow a non-programmable calculator for this test.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-6179474498438844916?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/6179474498438844916/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=6179474498438844916" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/6179474498438844916?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/6179474498438844916?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/YjXK2XYqHck/selection-test.html" title="Selection test #1.1" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2008/02/selection-test.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A08CSXo5fyp7ImA9WxZQE0s.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-6310289340584261401</id><published>2008-02-15T17:37:00.007+01:00</published><updated>2008-02-18T22:24:28.427+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-02-18T22:24:28.427+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="looking for a job" /><category scheme="http://www.blogger.com/atom/ns#" term="structure" /><title>Preparing for a new job</title><content type="html">I mentioned earlier that &lt;a href="http://ruleant.blogspot.com/2008/01/studying-ex-working-in.html"&gt;I decided to stop studying and start working again&lt;/a&gt;.&lt;br /&gt;Last month I've been looking for job opportunities, sending applications and preparing for interviews and selection tests.&lt;br /&gt;Tomorrow and next Wednesday I'm invited for selection tests. The test I'm taking tomorrow is for a technical job, which is in line with my bachelor diploma in electromechanics.&lt;br /&gt;The test and interview on Wednesday is for a systems administration job (IT), managing computers and servers running Linux. It's a bit like the job I currently have at Ghent University.&lt;br /&gt;I also made an appointment with my previous employer, to talk about a job offer.&lt;br /&gt;&lt;br /&gt;Today I decided to quit my current job by the beginning of the Easter Holidays and start working on a new job, somewhere near 1st of April. I'm hopeful to find a suitable job by then.&lt;br /&gt;&lt;br /&gt;So the next few weeks, I will be doing interviews, waiting for reactions, finding a successor for my current job at the university and finish some small projects.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-6310289340584261401?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/6310289340584261401/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=6310289340584261401" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/6310289340584261401?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/6310289340584261401?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/0i5LE1uFoOg/preparing-for-job.html" title="Preparing for a new job" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2008/02/preparing-for-job.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0UFRX49cSp7ImA9WB9aFkg.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-2554652512122973915</id><published>2008-01-06T22:05:00.000+01:00</published><updated>2008-01-06T22:33:34.069+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-01-06T22:33:34.069+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="exams" /><category scheme="http://www.blogger.com/atom/ns#" term="insight" /><category scheme="http://www.blogger.com/atom/ns#" term="working" /><title>Studying ex, working in</title><content type="html">Some close friends and family saw it coming, but I finally decided to stop studying. It's not that I'm no longer interested in physics, nor that I don't want to know more about it, but I can't bring myself to studying for exams anymore. I had a good time studying at the university and I have learned a lot over the past few years and I have met a lot of interesting people in this period, but it's time to go on and get to something else.&lt;br /&gt;&lt;br /&gt;I've been looking around for the past few days, wondering which direction to take. I'm going back to working, that's for sure, but I have nearly endless possibilities. I can go back to my previous employer or the automation industry in general, but having gained some Linux, sysadmin and web development skills during the years I've spent at the university, I might as well apply for a job in that field as well.&lt;br /&gt;I could look for a job in, or near, my hometown, but nothing is restricting me to go looking further, maybe even abroad.&lt;br /&gt;Right now I'm looking what's available and feasible on the job market, in Belgium and abroad. I've started applying and probably will begin doing interviews soon. And I will continue to do so until I find a job that's best for me.&lt;br /&gt;I'm not really in a hurry, so I can take my time evaluating the opportunities I come by and choose the most interesting one.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-2554652512122973915?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/2554652512122973915/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=2554652512122973915" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/2554652512122973915?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/2554652512122973915?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/Q-WRzTXWy8g/studying-ex-working-in.html" title="Studying ex, working in" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2008/01/studying-ex-working-in.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUQNRn47fSp7ImA9WB9XGUU.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-4659064364061137228</id><published>2007-11-13T21:34:00.000+01:00</published><updated>2007-11-13T21:56:37.005+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-11-13T21:56:37.005+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="structure" /><category scheme="http://www.blogger.com/atom/ns#" term="fun" /><category scheme="http://www.blogger.com/atom/ns#" term="physics" /><title>Growing a crystal #1</title><content type="html">Today, the professor handed out small bags with a white powder to me and my fellow students. As I mentioned &lt;a href="http://ruleant.blogspot.com/2007/09/physics-handywork.html"&gt;before&lt;/a&gt;, I have to grow a crystal from a powder, for the professor's class. And today the powder arrived so I can start growing my crystal.&lt;br /&gt;&lt;br /&gt;I went to the supermarket to get demineralised water. I can't use tap water, as this contains to much calcium and other substances that could affect the growing of the crystal.&lt;br /&gt;Back home I mixed some powder with the water and stirred until the powder was completed dissolved. The liquid is clear again.&lt;br /&gt;Then I added some more powder and mixed again, but this time not all of the powder is dissolved. That's normal as I calculated how much powder could be dissolved in the water at room temperature. By adding some more of the powder, the solution becomes saturated, thus it cannot dissolve more of the powder.&lt;br /&gt;&lt;br /&gt;By heating the water a bit, the water can dissolved more of the powder. I put the beaker in the microwave for about 40 seconds and stirred again. Now all the powder, even the excess powder, is dissolved, resulting in a clear liquid.&lt;br /&gt;&lt;br /&gt;When the water cools down to room temperature, the liquid remains clear, thus the solution contains more powder than it previously contained before heating. This means the solution is oversaturated. That is what is needed to start growing a crystal.&lt;br /&gt;&lt;br /&gt;First I need a seed crystal, so I put a thin copper wire in the oversaturated liquid, in order to let a seed crystal grow on the wire.&lt;br /&gt;&lt;br /&gt;Now I have to wait for the liquid to cool down further and let the seed crystal(s) grow. I'll check back in a few hours before I go to sleep, but I expect to see something when I wake up in the morning.&lt;br /&gt;&lt;br /&gt;(I would post some pictures of the process, but I don't have a (digital) camera, so you'll have to believe what I'm describing)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-4659064364061137228?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/4659064364061137228/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=4659064364061137228" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/4659064364061137228?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/4659064364061137228?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/KL91TlujqAg/growing-crystal.html" title="Growing a crystal #1" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2007/11/growing-crystal.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkcEQn44cCp7ImA9WB9QEk8.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-3162290034745749151</id><published>2007-10-24T13:35:00.000+02:00</published><updated>2007-10-24T14:13:23.038+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-10-24T14:13:23.038+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="fun" /><category scheme="http://www.blogger.com/atom/ns#" term="security" /><category scheme="http://www.blogger.com/atom/ns#" term="television" /><category scheme="http://www.blogger.com/atom/ns#" term="chaos" /><category scheme="http://www.blogger.com/atom/ns#" term="BBC" /><title>Spooks series 6</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.bbc.co.uk/drama/spooks/images/downloads/wallpaper/640/series6_team.jpg"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 320px;" src="http://www.bbc.co.uk/drama/spooks/images/downloads/wallpaper/640/series6_team.jpg" border="0" alt="Spooks Series 6" /&gt;&lt;/a&gt;&lt;br /&gt;A pure work of art, absolutely brilliant. That's how I would describe the new episodes of BBC drama series &lt;a href="http://www.bbc.co.uk/drama/spooks/"&gt;Spooks&lt;/a&gt;, of which series 6 started last week on BBC1.&lt;br /&gt;&lt;br /&gt;The first story spans the first two episodes. In the first episode, a threat of a fast spreading lethal virus in London is introduced. In the second episode it gets even more harsh, when MI5 decides to  abduct spies of befriended nations like USA, Russia and France and threats to infect them with the virus, to persuade them to reveal the location of the antidote. MI5 believes one of those nations manufactured the virus and must have produced an antidote as well, but are certain the only way to get them to admit this antidote exists, is by these extreme measures.&lt;br /&gt;In the end the antidote is found and all infected victims are cured, but relations with intelligence services of befriended nations are very hostile because of the abduction. And this will most definitely dominate the storyline of the next episodes. I'm really looking forward to it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-3162290034745749151?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/3162290034745749151/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=3162290034745749151" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/3162290034745749151?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/3162290034745749151?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/wSaX-G_IfKw/spooks-series-6.html" title="Spooks series 6" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2007/10/spooks-series-6.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Dk4GR3o6fyp7ImA9WB9RE0o.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-4959584016191153052</id><published>2007-10-14T16:44:00.000+02:00</published><updated>2007-10-14T17:15:26.417+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-10-14T17:15:26.417+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="insight" /><category scheme="http://www.blogger.com/atom/ns#" term="time management" /><title>Priority</title><content type="html">Some time ago, I figured out &lt;a href="http://ruleant.blogspot.com/2006/12/lack-of-time.html"&gt;I don't have enough time&lt;/a&gt; to spend on things I do, like doing and would like to do.&lt;br /&gt;I realize it is impossible to create more time, so over the past few weeks I have come to the conclusion I need to be efficient at spending the available time and give priority to important and necessary things like sleeping and working.&lt;br /&gt;As the academic year started a few weeks ago, I set a high priority to attending classes and studying as well, or this might be my last year as a student.&lt;br /&gt;All others things, apart from spending time with friends and family, get a lower priority. This means I spend little to no time on certain activities, like attending meetings and staying up to speed with all details in the news. And some things I skipped totally, like going out during the week.&lt;br /&gt;&lt;br /&gt;So the keyword in all this is priority, and acting according to it. This means I sometimes have to say no, or when I fail to do so, take the consequences by not being able to do something else.&lt;br /&gt;&lt;br /&gt;Posting on this blog is one of the low priority things. It's not that there isn't anything to post about, but I lack the time and the motivation to write about it. When I feel like it, I will post something, if not, you can check the insert with shared news items on the right side of this blog. I add items regularly when I come along something that might be of some interest.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-4959584016191153052?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/4959584016191153052/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=4959584016191153052" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/4959584016191153052?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/4959584016191153052?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/HtiLf9eEWC0/priority.html" title="Priority" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2007/10/priority.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkYCSX04eCp7ImA9WB9TGUw.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-5943189532169385160</id><published>2007-09-27T17:53:00.000+02:00</published><updated>2007-09-27T18:22:48.330+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-09-27T18:22:48.330+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="structure" /><category scheme="http://www.blogger.com/atom/ns#" term="physics" /><title>Physics : handywork</title><content type="html">In the exercises class of my &lt;a href="http://en.wikipedia.org/wiki/Crystallography"&gt;Crystallography&lt;/a&gt; course, an assignment was given : &lt;blockquote&gt;Craft a cube and bring it to class next week. It can be made of any material. You will need it to help you with the exercises.&lt;/blockquote&gt;&lt;br /&gt;So I cut a cube out of some insulation foam. But I'm not completely pleased with the result.&lt;br /&gt;First I thought of making a cube from cardboard, by drawing some squares, cutting them from the cardboard and folding them together. But I figured this cardboard cube would be crushed when transported in my backpack, so I needed some structure that's not hollow.&lt;br /&gt;Insulation foam is very light and relativily easy to sculpt, so I chose this material and started creating my cube, by measuring, cutting and sculpting. The end result looks like a cube, but not all sides are completely square. But it will do for the exercises.&lt;br /&gt;&lt;br /&gt;This course starts to become some sort of handywork class, as in a few weeks we will be instructed to grow a crystal at home, starting from a beaker containing a dissolved substance. It's all very exciting. :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-5943189532169385160?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/5943189532169385160/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=5943189532169385160" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/5943189532169385160?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/5943189532169385160?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/R7s8SCOzjew/physics-handywork.html" title="Physics : handywork" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2007/09/physics-handywork.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C04CQ3o4eCp7ImA9WB9TFEo.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-4545015570562074484</id><published>2007-09-22T16:22:00.000+02:00</published><updated>2007-09-22T16:39:22.430+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-09-22T16:39:22.430+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="archive" /><category scheme="http://www.blogger.com/atom/ns#" term="structure" /><category scheme="http://www.blogger.com/atom/ns#" term="physics" /><title>Archiving</title><content type="html">Next monday, a new academic year starts. This means : new courses and new lectures.&lt;br /&gt;So it is time to archive some of my previous courses and make room for the new ones. &lt;br /&gt;&lt;br /&gt;As it happened to be, there was still studying material of my first year Eastern Studies somewhere on a shelve. Because I won't need it anymore, I switched to physics and astronomy two years ago, I put it together in two small piles, made a list of the courses in each pile and bound them together with a string. The piles are now stored with the other archived studying material in another room.&lt;br /&gt;&lt;br /&gt;With the old material out of the way, the courses of last year, which where on my desk, now take the free spot on the shelve, as I might want to look something up during the next two semesters.&lt;br /&gt;The available space on my desk will soon be taken by the new studying material for next semester.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-4545015570562074484?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/4545015570562074484/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=4545015570562074484" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/4545015570562074484?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/4545015570562074484?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/1n-e5z5LM54/archiving.html" title="Archiving" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2007/09/archiving.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C04BRHs4cSp7ImA9WB9TE00.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-3295107727175055344</id><published>2007-09-20T17:11:00.000+02:00</published><updated>2007-09-20T17:25:55.539+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-09-20T17:25:55.539+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="shopping" /><category scheme="http://www.blogger.com/atom/ns#" term="Antwerp" /><category scheme="http://www.blogger.com/atom/ns#" term="trains" /><category scheme="http://www.blogger.com/atom/ns#" term="chaos" /><title>Shopping for clothing</title><content type="html">Today I went shopping in Antwerp, to buy some clothes. I left by train in Ghent at 13u13 and arrived in Antwerp about 45 minutes later. Then I went to 'De Meir', the biggest shopping street in Antwerp and bought the following things :&lt;br /&gt;&lt;ul&gt;&lt;li&gt;1 pair of shoelaces&lt;/li&gt;&lt;li&gt;3 trousers&lt;/li&gt;&lt;li&gt;4 T-shirts&lt;/li&gt;&lt;li&gt;3 pull-overs&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;I left again by train at 15u06.&lt;br /&gt;&lt;br /&gt;The shopping spree took me under 3 hours, to buy enough clothes to have no need to going shopping for another year.&lt;br /&gt;&lt;br /&gt;People might wonder why I went to Antwerp to buy clothes. If I would have shopped in Ghent, I might have spent even less time. The reason is simple : I like going to Antwerp once in a while, and the shop where I usually buy my clothes is bigger in Antwerp than the one in Ghent, so there are more clothes to choose from.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-3295107727175055344?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/3295107727175055344/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=3295107727175055344" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/3295107727175055344?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/3295107727175055344?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/gX04KFoYyC4/shopping-for-clothing.html" title="Shopping for clothing" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2007/09/shopping-for-clothing.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUcARH08eyp7ImA9WB5aEEo.&quot;"><id>tag:blogger.com,1999:blog-6697926294108537816.post-4834508148770219816</id><published>2007-09-06T12:59:00.000+02:00</published><updated>2007-09-06T13:10:45.373+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-09-06T13:10:45.373+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="structure" /><category scheme="http://www.blogger.com/atom/ns#" term="internet" /><category scheme="http://www.blogger.com/atom/ns#" term="Google" /><title>Search your feeds in Google Reader</title><content type="html">A long awaited &lt;a href="http://googlereader.blogspot.com/2007/09/we-found-it.html"&gt;search function is added&lt;/a&gt; to &lt;a href="http://ruleant.blogspot.com/2006/11/google-reader.html"&gt;Google Reader&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Now you can search newsfeeds you previously read. If you know you read a newsitem about something, but can't remember on which feed it appeared, just search for it in Google Reader and the post will turn up.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6697926294108537816-4834508148770219816?l=ruleant.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://ruleant.blogspot.com/feeds/4834508148770219816/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=6697926294108537816&amp;postID=4834508148770219816" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/4834508148770219816?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6697926294108537816/posts/default/4834508148770219816?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/poolofoblivion/~3/rINsbPGYaKE/search-your-feeds-in-google-reader.html" title="Search your feeds in Google Reader" /><author><name>ruleant</name><uri>http://www.blogger.com/profile/02113174187540531952</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="05952437853894864470" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ruleant.blogspot.com/2007/09/search-your-feeds-in-google-reader.html</feedburner:origLink></entry></feed>
