<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Anthropoid</title>
	<atom:link href="http://www.alex-juarez.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.alex-juarez.net</link>
	<description>by Alex Juarez</description>
	<lastBuildDate>Fri, 09 Apr 2010 12:22:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Building up a CAVE at Industrial Design (TUE)</title>
		<link>http://www.alex-juarez.net/2009/09/11/building-up-a-cave-at-industrial-design-tue/</link>
		<comments>http://www.alex-juarez.net/2009/09/11/building-up-a-cave-at-industrial-design-tue/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 16:27:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[CAVE]]></category>
		<category><![CDATA[Interaction]]></category>
		<category><![CDATA[Virtual Environments]]></category>
		<category><![CDATA[Virtual Worlds]]></category>

		<guid isPermaLink="false">http://www.alex-juarez.net/?p=101</guid>
		<description><![CDATA[During the last month or]]></description>
			<content:encoded><![CDATA[<p>During the last month or so I&#8217;ve been working hard alongside other colleagues to build up a CAVE system for a project demonstration. For those unfamiliar with what a CAVE is, let&#8217;s start by saying that CAVE is the acronym for Cave Automatic Virtual Environment (yes, recursive stuff&#8230;) which basic idea is to build up a room which walls can be turned into screens where images or video is projected (usually a coordinated representation of an environment or real/virtual scene), providing an immersive and interactive experience for the user (that&#8217;s you and me). My part on this was to figure out a relatively easy way of projecting an interactive medieval world into the walls of such an installation, circumventing the problems that usually come with it (projection alignment, synchronization, etc.)</p>
<p>Though at the moment I can&#8217;t reveal much about it (not that it&#8217;s classified or anything, but it&#8217;s not finished, nor presented to the &#8220;client&#8221; yet), I&#8217;ll show some pics of the CAVE physical installation and will keep posting on how this advances until we complete it.</p>
<p>[imageflow id="11"]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alex-juarez.net/2009/09/11/building-up-a-cave-at-industrial-design-tue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Programmer&#8217;s Journal</title>
		<link>http://www.alex-juarez.net/2009/04/21/programmers-journal-getting-xml-objects-while-using-mediawiki-api-ajax/</link>
		<comments>http://www.alex-juarez.net/2009/04/21/programmers-journal-getting-xml-objects-while-using-mediawiki-api-ajax/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 10:25:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programmer's Journal]]></category>

		<guid isPermaLink="false">http://www.alex-juarez.net/?p=96</guid>
		<description><![CDATA[Getting XML objects while using]]></description>
			<content:encoded><![CDATA[<p><strong>Getting XML objects while using Mediawiki API + AJAX</strong></p>
<p><span style="color: #ff0000;"><strong>Problem/Error</strong>:</span> Trying to obtain a <strong>responseXML</strong> object from a Mediawiki API query results in a <em>null</em> pointer. A <strong>responseText</strong> object, however, returns the HTML text just fine.</p>
<p><span style="color: #008000;"><strong>Solution</strong>:</span> What&#8217;s happening here is that Mediawiki API is responding to the AJAX request (GET or POST, it doesn&#8217;t matter) using the default format, namely, a plain text, HTML formatted version of the original XML. To obtain an XML object (or any other kind of object that Mediawiki knows, for that matter e.g. JSON), you have to explicitely tell the API in which format you require the answer. For example:</p>
<p><span id="more-96"></span></p>
<p>The following code shows a query requesting information about the main page of a mediawiki installation.</p>
<blockquote>
<pre>//JS method called from an "onClick" event
function getMainPageInfo()
{
   //start by getting an XMLHTTP object
   xmlHttp=GetXmlHttpObject();

   //make a simple check of AJAX support
   if (xmlHttp==null){
     alert ("Your browser does not support AJAX!");
     return;
   }

   //Modify the path with your own info
   var url="/mediawiki/api.php";
   var params="action=query&amp;titles=Main%20Page&amp;format=xml";

   //Send the proper header information along with the request
   xmlHttp.onreadystatechange=paintMediawikiAnswer;
   xmlHttp.open("POST", url, true);
   xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
   xmlHttp.setRequestHeader("Content-length", params.length);
   xmlHttp.setRequestHeader("Connection", "close");
   xmlHttp.send(params);
}

//Get the answer and paint it to a &lt;span&gt; element
function paintMediawikiAnswer()
{
   if (xmlHttp.readyState == 4) {
      //get the XML tree
      xmlDoc = xmlHttp.responseXML.documentElement;
      switch (xmlHttp.status) {
         // Page-not-found error
         case 404:
            alert('Error: Not Found. The requested URL could not be found.');
            break;
         default:
            // Call the desired result function
            elementRetrieved=xmlDoc.getElementsByTagName("page");
            alert("Pages received: "+elementRetrieved.length);
            break;
      }
   }
}</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.alex-juarez.net/2009/04/21/programmers-journal-getting-xml-objects-while-using-mediawiki-api-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Programmer&#8217;s Journal</title>
		<link>http://www.alex-juarez.net/2009/03/24/programmers-journal-xampp-for-linux-setup/</link>
		<comments>http://www.alex-juarez.net/2009/03/24/programmers-journal-xampp-for-linux-setup/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 11:40:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Programmer's Journal]]></category>
		<category><![CDATA[Error 2002: CAn connect to local MySQL server through socket]]></category>
		<category><![CDATA[Installation procedure]]></category>
		<category><![CDATA[XAMPP for Linux]]></category>

		<guid isPermaLink="false">http://www.alex-juarez.net/?p=91</guid>
		<description><![CDATA[XAMPP for Linux setup Today]]></description>
			<content:encoded><![CDATA[<p><em><strong>XAMPP for Linux setup</strong></em></p>
<p>Today I got XAMPP for Linux (formerly known as LAMPP) finally up and running. Here are some caveats that I encountered while completing the installation:</p>
<ol>
<li>Though the &#8220;installation&#8221; of XAMPP is supposed to be as simple as &#8220;uncompress and run&#8221; it actually needs you to take care of the right permissions for some of the folders in the installation directory. Unless you are a security freak, the best thing you can do is the following:
<ul>
<li>chmod -R 644 /opt/lampp (assumming that your installation directory is actually &#8220;/opt&#8221;)</li>
<li>chmod -R 755 /opt/lamp/htdocs (to avoid some problems with the stuff you will install inside later on)</li>
</ul>
</li>
<li>If after doing the pervious step you ever encounter the error &#8220;ERROR 2002: Can&#8217;t connect to local MySQL server through socket&#8221; when you try to start phpMyAdmin, you need to go to the folder phpMyAdmin in the XAMPP installation (/opt/lamp/phpmyadmin) and change the permissions of the file config.inc.php to &#8220;644&#8243; (chmod 644 /opt/lampp/phpmyadmin/config.inc.php). I admit that this is a weird fix, but for some reason phpMyAdmin doesn&#8217;t like other permissions than this when telling XAMPP to connect to the database and produces an even weirder error which is totally unrelated to the actual permission problem&#8230;</li>
</ol>
<p>Anyway, i&#8217;ll keep posting some other tips I find&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alex-juarez.net/2009/03/24/programmers-journal-xampp-for-linux-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VDI Award 2008</title>
		<link>http://www.alex-juarez.net/2008/12/08/vdi-award-2008/</link>
		<comments>http://www.alex-juarez.net/2008/12/08/vdi-award-2008/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 22:35:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Award]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.alex-juarez.net/?p=75</guid>
		<description><![CDATA[This year, the Association of]]></description>
			<content:encoded><![CDATA[<p>This year, the Association of German Engineers (Vereinte Deutsche Ingenieuren -VDI) decided to include my University among the candidates to obtain the award to &#8220;Best Master Thesis or Diplomarbeit of 2008&#8243;, and I was nominated as &#8220;Best Thesis from the Faculty of Informatics&#8221; by FH Bonn-Rhein-Sieg for my work on artificial surprise.</p>
<p>Competing for the prize were 11 candidates from the 3 Universities of Applied Sciences in the Köln-Bonn area. Unfortunately I didn&#8217;t win the first prize, but it was already an honor to be the only foreigner nominated to the prize, and actually had the chance to present my work to an elite group of engineers of the region.</p>
<p>The award ceremony took place at the Technologie Park in Bergisch-Gladbach (East of Köln) on the 1st. of December.</p>

<div class="ngg-galleryoverview" id="ngg-gallery-8-75">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.alex-juarez.net/2008/12/08/vdi-award-2008/?show=slide">
			[Show as slideshow]		</a>
	</div>

	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.alex-juarez.net/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=8&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-430" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.alex-juarez.net/wp-content/gallery/vdi_award_dec08/DSC01620.JPG" title=" " rel="lightbox[set_8]" >
								<img title="Alex Juarez - VDI Award" alt="Alex Juarez - VDI Award" src="http://www.alex-juarez.net/wp-content/gallery/vdi_award_dec08/thumbs/thumbs_DSC01620.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-450" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.alex-juarez.net/wp-content/gallery/vdi_award_dec08/DSC01640.JPG" title=" " rel="lightbox[set_8]" >
								<img title="Alex Juarez - VDI Award" alt="Alex Juarez - VDI Award" src="http://www.alex-juarez.net/wp-content/gallery/vdi_award_dec08/thumbs/thumbs_DSC01640.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-454" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.alex-juarez.net/wp-content/gallery/vdi_award_dec08/DSC01644.JPG" title=" " rel="lightbox[set_8]" >
								<img title="Alex Juarez - VDI Award" alt="Alex Juarez - VDI Award" src="http://www.alex-juarez.net/wp-content/gallery/vdi_award_dec08/thumbs/thumbs_DSC01644.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-455" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.alex-juarez.net/wp-content/gallery/vdi_award_dec08/DSC01645.JPG" title=" " rel="lightbox[set_8]" >
								<img title="Alex Juarez - VDI Award" alt="Alex Juarez - VDI Award" src="http://www.alex-juarez.net/wp-content/gallery/vdi_award_dec08/thumbs/thumbs_DSC01645.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-468" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.alex-juarez.net/wp-content/gallery/vdi_award_dec08/DSC01658.JPG" title=" " rel="lightbox[set_8]" >
								<img title="Alex Juarez - VDI Award" alt="Alex Juarez - VDI Award" src="http://www.alex-juarez.net/wp-content/gallery/vdi_award_dec08/thumbs/thumbs_DSC01658.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-479" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.alex-juarez.net/wp-content/gallery/vdi_award_dec08/DSC01669.JPG" title=" " rel="lightbox[set_8]" >
								<img title="Alex Juarez - VDI Award" alt="Alex Juarez - VDI Award" src="http://www.alex-juarez.net/wp-content/gallery/vdi_award_dec08/thumbs/thumbs_DSC01669.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://www.alex-juarez.net/2008/12/08/vdi-award-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some more content&#8230;</title>
		<link>http://www.alex-juarez.net/2008/12/06/some-more-content/</link>
		<comments>http://www.alex-juarez.net/2008/12/06/some-more-content/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 01:38:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.alex-juarez.net/?p=58</guid>
		<description><![CDATA[Wow... Finally I took the time to add some more content to the site, but definitely this is going much slower than I thought]]></description>
			<content:encoded><![CDATA[<p>Wow&#8230; Finally I took the time to add some more content to the site, but definitely this is going much slower than I thought. For now I added some info to the <a href="http://www.alex-juarez.net/?page_id=4" target="_self">Research</a> section, including some publications. I also added some pics to the <a href="http://www.alex-juarez.net/?page_id=2" target="_self">Photos</a> section in case you want to check them out. Finally I put out a word about <a href="http://www.alex-juarez.net/?page_id=3" target="_self">Cosmopo</a>.</p>
<p>As soon as I have some more time, I will put more interesting stuff out there&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alex-juarez.net/2008/12/06/some-more-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
