<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><description>“Migraine is a neurological disease that can cause a wide range of symptoms during an attack. The most commonly thought of symptom is headache.” - Dammed</description><title>My migraines</title><generator>Tumblr (3.0; @mandel)</generator><link>http://mandel.themacaque.com/</link><item><title>Improving you visual studio experience</title><description>&lt;p&gt;The mouse if cool, but it is not the user interface that an advance user should use, at least that is my opinion anyway. If you really want to rock your programming experience in your IDE you need to use the keyboard.&lt;/p&gt;
&lt;p&gt;Because I have recently being using VS a lot I though I should let people know some cool shortcuts I use:&lt;/p&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;b&gt;Navigate to definition&lt;/b&gt;&lt;/dt&gt;
&lt;dd&gt;You can press &lt;b&gt;F12&lt;/b&gt; to go to the declaration of the current selected object.&lt;/dd&gt;
&lt;dt&gt;&lt;b&gt;Toggle a break point&lt;/b&gt;&lt;/dt&gt;
&lt;dd&gt;You can create a break point by using &lt;b&gt;F9&lt;/b&gt;.&lt;/dd&gt;
&lt;dt&gt;&lt;b&gt;Go to next item in task list or search results&lt;/b&gt;&lt;/dt&gt;
&lt;dd&gt;Yo can do that by using &lt;b&gt;F8&lt;/b&gt;. This is very useful when you use the to do list a lot (whici I do ).&lt;/dd&gt;
&lt;dt&gt;&lt;b&gt;Go to previous item in task list or search results&lt;/b&gt;&lt;/dt&gt;
&lt;dd&gt;This is the same action a the above, but instead of going forward you are going blackguards. For this you can use &lt;b&gt;Shift + F8&lt;/b&gt;.&lt;/dd&gt;
&lt;dt&gt;&lt;b&gt;Start debugging&lt;/b&gt;&lt;/dt&gt;
&lt;dd&gt;You can start the debugging by pressing &lt;b&gt;F5&lt;/b&gt;
&lt;/dd&gt;
&lt;dt&gt;&lt;b&gt;Stop debugging&lt;/b&gt;&lt;/dt&gt;
&lt;dd&gt;You can stop debugging by going &lt;b&gt;Shift + F5&lt;/b&gt;
&lt;/dd&gt;
&lt;/dl&gt;
&lt;p&gt;These are just some examples. You can find a great poster &lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=e5f902a8-5bb5-4cc6-907e-472809749973&amp;displaylang=en"&gt;here&lt;/a&gt;. You should print it out and put it somewhere you can see it :)&lt;/p&gt;</description><link>http://mandel.themacaque.com/post/62275840</link><guid>http://mandel.themacaque.com/post/62275840</guid><pubDate>Sun, 30 Nov 2008 16:49:00 +0000</pubDate><category>programming</category><category>c#</category><category>VS</category><category>code</category></item><item><title>On XLT and javascript</title><description>&lt;h3&gt;The contest&lt;/h3&gt;
&lt;p&gt;First of all let me give you the contest of the problem:&lt;/p&gt;
&lt;p&gt;On one hand at work we currently are using a content managements system written in Java (whose name I’m not going give) that generates xhtml using far to many XSL transformations. On the other hand we have a .Net application that makes those xhtml pages work with existing .Net applications.&lt;/p&gt;
&lt;p&gt;From my point of view the system is not well designed, precisely because the rendering of the pages is done twice, first by the Java content manager system and later by the ASP.Net runtime.  Anyway, that i not the problem we had &lt;b&gt;right now&lt;/b&gt;.&lt;/p&gt;
&lt;p&gt;To simplify the creation of the webpage we have a component/module/widget that allows less technical people to add pure html in the page instead of letting the content system decide how to render the content. This seemed to be a good idea in case there was a more advance user that wanted to use html, but &lt;b&gt;just html&lt;/b&gt;.&lt;/p&gt;
&lt;h3&gt;The problem&lt;/h3&gt;
&lt;p&gt;The problems started when the business people (the lest technical people) wanted to add Javascripts. Ovioulsy the less tesgnical people were not adding complicated scripts, they were just copy pasting something like:&lt;/p&gt;
&lt;pre name="code" class="js"&gt;
script language="javascript" src="url"  /script 
&lt;/pre&gt;
&lt;p&gt;In our case the urls was of the form:&lt;/p&gt;
&lt;pre name="code" class="js"&gt;
javascriptUrli=number&amp;s=data
&lt;/pre&gt;
&lt;p&gt;Now this should have not been a problem, but it was…. This was actually I quite interesting bug to find out. Let met tell you the process that will be used to generate the component in the page:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Get input from user and store it in XML&lt;/li&gt;
&lt;li&gt;Perform rendering of the content using a XSLT&lt;/li&gt;
&lt;li&gt;Convert the rendering from step 2 to a ASP.Net master page using a XSLT&lt;/li&gt;
&lt;li&gt;ISS5 (yes I know…) renders the ASP.Net master page.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;After this process for some unknown reason all the &amp; char will be converted to their html representation, and this included or Javascript url converting it from:&lt;/p&gt;
&lt;code&gt;javascriptUrli=number&amp;s=data&lt;/code&gt;
&lt;p&gt;to&lt;/p&gt;
&lt;pre name="code" class="js"&gt;javascriptUrli=number&amp;amps=data&lt;/pre&gt;
&lt;p&gt;Ouch… the Javascript does not work!!!! Where is this change coming from? After looking at the XSLTs used I discovered one thing, the target of the transformation was XHTML!!!!The processor is outputting XHTML which does not support the &amp; char. Unfortunately the XSLT processor does that with everything, including Javascript.&lt;/p&gt;
&lt;h3&gt;The solution&lt;/h3&gt;
&lt;p&gt;There is a way around the problem which is clearly a HACK. All the scripts should be wrapped as if they were html/xml comments.&lt;/p&gt;
&lt;p&gt;What does this mean? Well if we used to add the javascript adding:&lt;/p&gt;
&lt;pre name="code" class="js"&gt;
script language="javascript" src="url"  /script 
&lt;/pre&gt;
&lt;p&gt;We know we should add it using a script like this&lt;/p&gt;
&lt;pre name="code" class="js"&gt;
var target = document.createElement( "script" );
target.setAttribute(“language”, “javascript”); 
target.setAttribute( "src", "url" );
document.getElementsByTagName( "body" )[0].appendChild( target ); 
&lt;/pre&gt;
&lt;p&gt; The above code should be wrapped by HTML comments tags (I cannot added them because if I do you wont see the code). If Javascript code is wrapped by HTML comments will still work but it will be ignored by the XSLT and therefore the URL won’t be changed :)&lt;/p&gt;

&lt;p&gt;Of course this will scare the shit out of a business guy. We can always make it better adding a function that does that with a URL surrounded by HTML comments.&lt;/p&gt;
&lt;h3&gt;First version&lt;/h3&gt;
&lt;p&gt;This function will do the trick:&lt;/p&gt;
&lt;pre name="code" class="js"&gt;
function add_javascript(url){
    var target = document.createElement( "script" ); 
    target.setAttribute(“language”, “javascript”); 
    target.setAttribute( "src", 
        url.replace(/(comment-start-tag)|()comment-end-tag/,””));
    document.getElementsByTagName( "body" )[0].appendChild( target );
}
&lt;/pre&gt;
&lt;p&gt;This will allows the business person to add a Javascript copy pasting:
&lt;/p&gt;
&lt;pre name="code" class="js"&gt;
add_javascript(“(comment-start-tag)url?i=23794804&amp;s=67ECA(comment-end-tag)”)
&lt;/pre&gt;
&lt;p&gt;Obviously surrounding the url with html comment tags.&lt;/p&gt;
&lt;h3&gt;Second version&lt;/h3&gt;
&lt;p&gt;Stepah saw my function and decided to improve it by using the replace method of the string object in a much cooler and elegant way:&lt;/p&gt;
&lt;pre name="code" class="js"&gt;
function add_javascript(url){
    var target = document.createElement( "script" ); 
    target.setAttribute(“language”, “javascript”); 
    target.setAttribute( "src", 
        url.replace(/(comment-start-tag)(.*)(comment-end-tag)/,’$2’));
    document.getElementsByTagName( "body" )[0].appendChild( target );
}
&lt;/pre&gt;
&lt;p&gt;I hope that know you know that is if you are using XSLT you will have problems with Javascript, but you can always use my workaround/hack :)&lt;/p&gt;
&lt;p&gt;I hope it helps&lt;/p&gt;</description><link>http://mandel.themacaque.com/post/62102285</link><guid>http://mandel.themacaque.com/post/62102285</guid><pubDate>Sat, 29 Nov 2008 10:07:00 +0000</pubDate><category>programming</category><category>code</category><category>asp.net</category><category>.net</category><category>bugs</category><category>XSLT</category></item><item><title>I have just noticed those arrows and crosses, how long has this...</title><description>&lt;img src="http://media.tumblr.com/LrEbfuwXKgsmii8mhhwxI8L5o1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;I have just noticed those arrows and crosses, how long has this &lt;strike&gt;bug&lt;/strike&gt; feature been there?</description><link>http://mandel.themacaque.com/post/61793018</link><guid>http://mandel.themacaque.com/post/61793018</guid><pubDate>Thu, 27 Nov 2008 07:23:05 +0000</pubDate><category>internet</category><category>software</category></item><item><title>New style</title><description>&lt;p&gt;I decided two days ago to change the style of the tumblr. The style right now is usuable but I do not think is yet finished. Currently it is usable an and is as the French would say “comsi comsa”. I yet have to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Make sure images and object ar centered in the posts.&lt;/li&gt;
     &lt;li&gt;Make a better top menu.&lt;/li&gt;
     &lt;li&gt;Make a better footer.&lt;/li&gt;
     &lt;li&gt;Fix the problem with the about box.&lt;/li&gt;
     &lt;li&gt;Choose a bettern font.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I’ve always felt more comfortable with code a and languages like C, C#, python and etc… So if any one of you can give me some design tips, I would greatly appreciate it :)&lt;/p&gt;</description><link>http://mandel.themacaque.com/post/61784868</link><guid>http://mandel.themacaque.com/post/61784868</guid><pubDate>Thu, 27 Nov 2008 06:12:31 +0000</pubDate><category>internet</category><category>personal</category><category>life</category></item><item><title>"Used Bluetooth headset during conference call today. Was informed later that it was clearly evident..."</title><description>“Used Bluetooth headset during conference call today. Was informed later that it was clearly evident I was sitting on a toilet during meeting”&lt;br/&gt;&lt;br/&gt; - &lt;em&gt;&lt;a href="http://twitter.com/CobraCommander"&gt;CobraCommander&lt;/a&gt;&lt;/em&gt;</description><link>http://mandel.themacaque.com/post/61632990</link><guid>http://mandel.themacaque.com/post/61632990</guid><pubDate>Wed, 26 Nov 2008 08:42:03 +0000</pubDate><category>funny</category><category>quote</category><category>internet</category></item><item><title>About time</title><description>&lt;p&gt;I have been working with a 64 bit machine running OpenSuse for a &lt;a href="http://mandel.themacaque.com/post/52507001/mysql-error-after-updating-opensuse-10-2"&gt;while&lt;/a&gt;. And I have been surfing the net using a x86 browser to be able to visit all those lame pages that use flash. But finally after reading &lt;a href="http://cameronseader.blogspot.com/2008/11/about-time-linux-64-bit-flash-player.html"&gt;this post&lt;/a&gt; I found out that the there is a 64 bit flash player for Linux, hurray!!!!!!!&lt;/p&gt;
&lt;p&gt;You can find it &lt;a href="http://labs.adobe.com/technologies/flashplayer10/"&gt;here&lt;/a&gt;.&lt;/p&gt;</description><link>http://mandel.themacaque.com/post/61448827</link><guid>http://mandel.themacaque.com/post/61448827</guid><pubDate>Tue, 25 Nov 2008 07:44:22 +0000</pubDate><category>linux</category><category>flash</category><category>internet</category><category>life</category></item><item><title>Maths joke</title><description>An infinite number of mathematicians walks into a bar. The first one orders a beer. The second one orders half a beer. The third one orders quarter of a beer. It continues that way until the bartender interrupts and says: &lt;i&gt;“You guys are all a bunch of idiots”&lt;/i&gt; and pours two beers.</description><link>http://mandel.themacaque.com/post/61446693</link><guid>http://mandel.themacaque.com/post/61446693</guid><pubDate>Tue, 25 Nov 2008 07:27:37 +0000</pubDate><category>maths</category><category>geek</category><category>funny</category><category>humor</category></item><item><title>Amsterdam</title><description>&lt;p&gt;Two weeks ago a good friend of &lt;a href="http://lemongirl.tumblr.com/"&gt;Bea&lt;/a&gt; and I was coming to Amsterdam so we decided to go and visit her. We though that Amsterdam was closer that it really is, around 250 km, took the car and went. It was a really nice day, we visited the city center, the red district and Heineken brewery which was aw… &lt;i&gt;wait for it&lt;/i&gt; some (yes, I love &lt;a href="http://www.imdb.com/title/tt0460649/"&gt;How I met your mother&lt;/a&gt;).&lt;/p&gt;
&lt;iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?saddr=Accolaystraat,+1000+Brussel,+Belgium&amp;geocode=&amp;dirflg=&amp;daddr=amsterdam&amp;f=d&amp;sll=50.843061,4.350028&amp;sspn=0.007723,0.016351&amp;ie=UTF8&amp;t=h&amp;ll=51.6034,4.722955&amp;spn=1.5408,0.76481&amp;output=embed&amp;s=AARTsJovzjTsRMWMy7NJ2N-hO9WUHM9uIQ"&gt;&lt;/iframe&gt;&lt;br/&gt;&lt;small&gt;&lt;a href="http://maps.google.com/maps?saddr=Accolaystraat,+1000+Brussel,+Belgium&amp;geocode=&amp;dirflg=&amp;daddr=amsterdam&amp;f=d&amp;sll=50.843061,4.350028&amp;sspn=0.007723,0.016351&amp;ie=UTF8&amp;t=h&amp;ll=51.6034,4.722955&amp;spn=1.5408,0.76481&amp;source=embed" style="color:#0000FF;text-align:left"&gt;View Larger Map&lt;/a&gt;&lt;/small&gt;
&lt;p&gt;Amsterdam overall is quite a good city, but I would not live in it. Don’t get me wrong, the sight seeings are great, people are nice and you have Marijuana and beer, but is not the kind of place where I would like to settle down. The city gave me a feeling of &lt;b&gt;party non-stop&lt;/b&gt; which I don’t really understand or like anymore. Maybe a couple of years ago I did not mind to go to work early in the morning and see a man on the floor cover by his own pee and vomit, but know, I really do not want to see that early in the morning when I go to work. I am sure I will be going back and will change my mind about it… anyway as usual you can find the picts at &lt;a href="http://www.flickr.com/photos/71695917@N00/sets/72157610000159624/"&gt;flickr&lt;/a&gt;.&lt;/p&gt;
&lt;a href="http://www.flickr.com/photos/71695917@N00/3057066528/" title="Amterdam 009 by mandel_macaque, on Flickr"&gt;&lt;img src="http://farm4.static.flickr.com/3151/3057066528_83d8a9a544.jpg" width="375" height="500" alt="Amterdam 009"/&gt;&lt;/a&gt;</description><link>http://mandel.themacaque.com/post/61365638</link><guid>http://mandel.themacaque.com/post/61365638</guid><pubDate>Mon, 24 Nov 2008 20:46:00 +0000</pubDate><category>life</category><category>trips</category><category>europe</category><category>images</category></item><item><title>Faking named parameters in PHP</title><description>&lt;p&gt;&lt;a href="http://tumblelog.marco.org/59195010"&gt;marco&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Here’s a short technique for faking Ruby’s cool named-parameter ability. It’s useful when you have a function that takes a lot of optional arguments, and you occasionally want to specify a few of the middle values without specifying all of the preceding values (or knowing how many there are). It also helps code readability if you’re willing to make the slight performance sacrifice — and since you’re writing in a dynamic language, that’s probably true.&lt;/p&gt;

&lt;p&gt;The function (note the use of &lt;code&gt;&lt;a href="http://www.php.net/manual/en/function.extract.php"&gt;extract&lt;/a&gt;&lt;/code&gt;):&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&lt;?php
function my_function(
    $id,
    $start = 0,
    $limit = 10,
    $filter = false,
    $include_duplicates =&gt; false,
    $optimize_fetch =&gt; false,
    $cache = false
) {
    if (is_array($id)) extract($id, EXTR_IF_EXISTS);

    /* ... */
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Calling it the old way still works perfectly fine as long as the first parameter isn’t normally supposed to be an array:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&lt;?php
my_function(1, 0, 10, false, false, false, true);
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;But imagine how helpful that is when browsing this code 6 months later. Now, compare that with calling it the new way:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&lt;?php
my_function(array('id' =&gt; 1, 'cache' =&gt; true));
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Obviously, the function can have a lot more arguments, and this approach makes a lot more sense when it does.&lt;/p&gt;

&lt;p&gt;It’d be great if PHP at least supported a compact or automatic array-literal syntax so we could avoid &lt;code&gt;array(...)&lt;/code&gt; everywhere, but &lt;a href="http://bugs.php.net/bug.php?id=35957"&gt;the developers really don’t like that idea&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This same &lt;b&gt;hack/trick&lt;/b&gt; has been used in perl for ages… but thank fully we may get named parameters in perl 6, personally I prefer to use this technique in larger projects which makes the code more self explanatory. I hate reading code like this:&lt;/p&gt;
&lt;code&gt;
&lt;pre&gt;
sub my_sub_routine($$$$){
    my first_param = @_[0];
    my second_param = @_[1];
    my third_param = @_[2];
    my fourth_param = @_[3];
}
&lt;/pre&gt;
&lt;code&gt;
&lt;p&gt;I fill bad every time I have to write things like this...&lt;/p&gt; &lt;/code&gt;&lt;/code&gt;</description><link>http://mandel.themacaque.com/post/59196833</link><guid>http://mandel.themacaque.com/post/59196833</guid><pubDate>Tue, 11 Nov 2008 19:59:00 +0000</pubDate><category>code</category><category>perl</category><category>development</category></item><item><title>Update</title><description>&lt;a href="http://www.mojojojo.org/?q=content/update"&gt;Update&lt;/a&gt;: The project is going slow but is still on its way. I’m happy to say that I expect to have all the data connections tested by this &lt;b&gt;Friday if not earlier&lt;/b&gt;. This means that I’ll be able to focus my…</description><link>http://mandel.themacaque.com/post/59196712</link><guid>http://mandel.themacaque.com/post/59196712</guid><pubDate>Tue, 11 Nov 2008 19:58:37 +0000</pubDate></item><item><title>I really want to play this game, but I’m waiting until the...</title><description>&lt;object width="400" height="322"&gt;&lt;param name="movie" value="http://www.dailymotion.com/swf/k7jlENSIWq8SmINNRc" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;param name="allowScriptAccess" value="always" /&gt;&lt;embed src="http://www.dailymotion.com/swf/k7jlENSIWq8SmINNRc" type="application/x-shockwave-flash" width="400" height="322" allowfullscreen="true" allowscriptaccess="always"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br/&gt;&lt;br/&gt;I really want to play this game, but I’m waiting until the Linux version is out :).</description><link>http://mandel.themacaque.com/post/59180452</link><guid>http://mandel.themacaque.com/post/59180452</guid><pubDate>Tue, 11 Nov 2008 17:50:54 +0000</pubDate><category>games</category><category>linux</category><category>mac</category><category>software</category></item><item><title>Bank holiday = more sight seeing</title><description>&lt;p&gt;Today is a bank holiday in most of the countries that took part in the world war, since we do not have much to do yet in Brussels, &lt;a href="http://lemongirl.tumblr.com/"&gt;Bea&lt;/a&gt; and I decided to visit the Atumium. As usual it took me several minutes to take a good picture of the place:&lt;/p&gt;
&lt;a href="http://www.flickr.com/photos/71695917@N00/3022181102/" title="Brussels 23 by mandel_macaque, on Flickr"&gt;&lt;img src="http://farm4.static.flickr.com/3285/3022181102_b3f9fd8ebf.jpg" width="450" alt="Brussels 23"/&gt;&lt;/a&gt;</description><link>http://mandel.themacaque.com/post/59148457</link><guid>http://mandel.themacaque.com/post/59148457</guid><pubDate>Tue, 11 Nov 2008 14:09:46 +0000</pubDate><category>Belgium</category><category>Brussels</category><category>pictures</category><category>pict</category><category>life</category><category>personal</category><category>Flickr</category></item><item><title>FOSDEM 2009</title><description>&lt;p&gt;I’ve just decided that I’m going to &lt;a href="http://www.fosdem.org/2009/"&gt;FOSDEM 2009&lt;/a&gt;. The easiest way to describe the event is to simple copy paste from their page:&lt;/p&gt;
&lt;p&gt;&lt;i&gt;&lt;a href="http://www.fosdem.org"&gt;FOSDEM&lt;/a&gt; is probably the most developer-oriented Free and Opensource conference, taking place in Brussels, Belgium on Saturday 7 and Sunday 8 February 2009. Apart from having many invited speakers, the conference offers developer rooms, stands and lightning talks to projects from the Free and Opensource community.

We hereby welcome proposals from projects to participate in organizing a devroom, manning a stand or holding a lightning talk.
&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;Let me know if you are going :)&lt;/p&gt;</description><link>http://mandel.themacaque.com/post/58776400</link><guid>http://mandel.themacaque.com/post/58776400</guid><pubDate>Sun, 09 Nov 2008 11:43:50 +0000</pubDate><category>development</category><category>code</category><category>meetup</category></item><item><title>First weekend in Brussels</title><description>&lt;p&gt;This is my first weekend in Brussels!!!! I truly truly needed the weekend. This has been the first week after 7 years ( the number of years I have been a student at Uni) that I have woke up every day before 6:30 and that I have worked 8 hours per day. We decided to go around and take some picts :)&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.flickr.com/photos/71695917@N00/3012275417/" title="Brussels 05 by mandel_macaque, on Flickr"&gt;&lt;img src="http://farm4.static.flickr.com/3004/3012275417_7d8bc3cde0.jpg" width="400" alt="Brussels 05"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;If you want to see al the picts I’ve taken, either you can view then through this slideshow:&lt;/p&gt;
&lt;object width="400" height="300"&gt; &lt;param name="flashvars" value="&amp;offsite=true&amp;intl_lang=en-us&amp;page_show_url=%2Fphotos%2F71695917%40N00%2Fsets%2F72157608582213182%2Fshow%2F&amp;page_show_back_url=%2Fphotos%2F71695917%40N00%2Fsets%2F72157608582213182%2F&amp;set_id=72157608582213182&amp;jump_to="&gt;
&lt;param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=61927"&gt;
&lt;param name="allowFullScreen" value="true"&gt;
&lt;embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/slideshow/show.swf?v=61927" allowfullscreen="true" flashvars="&amp;offsite=true&amp;intl_lang=en-us&amp;page_show_url=%2Fphotos%2F71695917%40N00%2Fsets%2F72157608582213182%2Fshow%2F&amp;page_show_back_url=%2Fphotos%2F71695917%40N00%2Fsets%2F72157608582213182%2F&amp;set_id=72157608582213182&amp;jump_to=" width="400" height="300"&gt;&lt;/embed&gt;&lt;/object&gt;
&lt;p&gt;Or visit my &lt;a href="http://www.flickr.com/photos/71695917@N00/"&gt;flickr page&lt;/a&gt;&lt;/p&gt;</description><link>http://mandel.themacaque.com/post/58675784</link><guid>http://mandel.themacaque.com/post/58675784</guid><pubDate>Sat, 08 Nov 2008 18:04:21 +0000</pubDate><category>Brussels</category><category>life</category><category>personal</category></item><item><title>If you are American, and did not vote, you should be ashamed</title><description>&lt;object width="400" height="336"&gt;&lt;param name="movie" value="http://www.youtube.com/v/zQ4ig6EgpAk"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/zQ4ig6EgpAk" type="application/x-shockwave-flash" width="400" height="336" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br/&gt;&lt;br/&gt;If you are American, and did not vote, you should be ashamed</description><link>http://mandel.themacaque.com/post/57959180</link><guid>http://mandel.themacaque.com/post/57959180</guid><pubDate>Tue, 04 Nov 2008 19:04:39 +0000</pubDate><category>USA</category><category>elections</category><category>America</category></item><item><title>First day at work</title><description>&lt;p&gt;Today was my first day at work and I’ve got to say, I am the geek. I am the only one in the group that uses Linux, the only one who talks about algorithms, VM improvements, using Java within .Net etc…&lt;/p&gt;
&lt;p&gt;I’ve got to say that &lt;b&gt;I love it&lt;/b&gt;, every time I start speaking and I use an acronym my manager says: “I’m lost again”. I am sure he knows far more than I do about Web servers and HTTP, but I am clearly the weird guy who worries about memory management, and all the rest. Well we’ll see how does this evolve.&lt;/p&gt;</description><link>http://mandel.themacaque.com/post/57958768</link><guid>http://mandel.themacaque.com/post/57958768</guid><pubDate>Tue, 04 Nov 2008 19:02:37 +0000</pubDate><category>work</category><category>development</category></item><item><title>U.K. last supper</title><description>&lt;p&gt;I left the U.K. 48 hours ago and Bea decided to take a picture of our last supper:&lt;/p&gt;
&lt;a href="http://www.flickr.com/photos/71695917@N00/2992381418/" title="Moving To Brussels 02 by mandel_macaque, on Flickr"&gt;&lt;img src="http://farm4.static.flickr.com/3292/2992381418_b45736e3a6.jpg" width="375" alt="Moving To Brussels 02"/&gt;&lt;/a&gt;
&lt;p&gt;Those green things between the cod and the chips are mussy peas, or at least they should be…&lt;/p&gt;</description><link>http://mandel.themacaque.com/post/57457337</link><guid>http://mandel.themacaque.com/post/57457337</guid><pubDate>Sat, 01 Nov 2008 16:43:00 +0000</pubDate><category>life</category><category>personal</category><category>food</category><category>photos</category><category>uk</category></item><item><title>Quick update</title><description>&lt;a href="http://www.mojojojo.org/?q=content/quick-update"&gt;Quick update&lt;/a&gt;: First of all I want to apologize to anyone that wanted to use the project, I know I promised that the first version was coming out soon, but I have reasons why I could not code as much as I wanted….</description><link>http://mandel.themacaque.com/post/56777779</link><guid>http://mandel.themacaque.com/post/56777779</guid><pubDate>Tue, 28 Oct 2008 17:01:24 +0000</pubDate></item><item><title>lemongirl:


British Traditional Breakfast
A muy poquito tiempo...</title><description>&lt;img src="http://media.tumblr.com/Pu5oYcoNMfksjqimVFT3mxFno1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://lemongirl.tumblr.com/post/56582617/british-traditional-breakfast-a-muy-poquito"&gt;lemongirl&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;British Traditional Breakfast&lt;/p&gt;
&lt;p&gt;A muy poquito tiempo de irme de Manchester no hago mas que pensar, esta es la ultima cerveza en este bar, esta es la ultima tal, esta es la utlima cual. Como no, entre todos esos “ultimos” que quiero recordar es este, el desayuno. Todo esto con la correspondiente taza de te y tostadas!&lt;/p&gt;
&lt;p&gt;Tengo que decir que cuando llegue a Manchester, lo unico que comia de este tipo de desayuno era el tomate, el champiñon, la salchicha y las patatas (en esta caso las patatas son como un mini pastelillo de patatas rayadas, llamadas “Hash browns”)&lt;/p&gt;
&lt;p&gt;Lo de comer el huevo frito, el bacon o las “beans” era algo impensable para mi. Pero lo cierto es que poco a poco fui probando y hoy me he comido mi primer desayuno completo YO SOLA!&lt;/p&gt;
&lt;p&gt;(la yema del huevo se la he dado a Manuel, aun no me gusta mucho) &lt;/p&gt;
&lt;p&gt;El siguiente “ultimo” de comida creo que será el fish&amp;chips, se supone que el dia 29, que nervios!&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Yes, that was probably my last &lt;a href="http://en.wikipedia.org/wiki/Full_English_breakfast"&gt;Traditional English Breakfast&lt;/a&gt; in the U.K. I’ll miss those after a good night out.&lt;/p&gt;</description><link>http://mandel.themacaque.com/post/56624150</link><guid>http://mandel.themacaque.com/post/56624150</guid><pubDate>Mon, 27 Oct 2008 20:05:02 +0000</pubDate><category>life</category><category>personal</category><category>food</category><category>UK</category></item><item><title>Ghost Town</title><description>&lt;p&gt;A couple of days a go &lt;a href="http://lemongirl.tumblr.com/"&gt;Bea&lt;/a&gt; and I decided to watch &lt;a href="http://movies.yahoo.com/movie/1809969246/info"&gt;Ghost Town&lt;/a&gt;. It was one of those evenings in which you have nothing to do and you don’t want to go out with your friends and get drunk…. I think I’m getting older, I keep finding it harder and harder to go out to get drunk, but I do get drunk in the pub without wanting.&lt;/p&gt;
&lt;p&gt;Going back to the movie, we totally recommend it, the plot is simple and you can not say it is the best movie of all time, but it is a nice movie to watch, specially in a dark gray autumn evening. Overall it has a well balance between non-pc humor and a love story, although in my opinion the ending was too cheesy for my taste.&lt;/p&gt;
&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/5CLx7XiOO_Y&amp;hl=en&amp;fs=1"&gt;
&lt;param name="allowFullScreen" value="true"&gt;
&lt;embed src="http://www.youtube.com/v/5CLx7XiOO_Y&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;</description><link>http://mandel.themacaque.com/post/56623637</link><guid>http://mandel.themacaque.com/post/56623637</guid><pubDate>Mon, 27 Oct 2008 20:00:00 +0000</pubDate><category>comedy</category><category>movies</category><category>life</category><category>recommendations</category><category>cinema</category><category>funny</category><category>personal</category></item></channel></rss>
