<?xml-stylesheet type="text/xsl" href="http://latinamericangrid.org/elgg/xabriel.mojica/rss/rssstyles.xsl"?>
<rss version='2.0'   xmlns:dc='http://purl.org/dc/elements/1.1/'>
    <channel xml:base='http://latinamericangrid.org/elgg/xabriel.mojica/'>
        <title><![CDATA[Xabriel J Collazo-Mojica : Activity]]></title>
        <description><![CDATA[Activity for Xabriel J Collazo-Mojica, hosted on Latin American Grid.]]></description>
        <generator>Elgg</generator>
        <link>http://latinamericangrid.org/elgg/xabriel.mojica/</link>        
        <item>
            <title><![CDATA[PIRE 2011 is over :(]]></title>
            <link>http://latinamericangrid.org/elgg/xabriel.mojica/weblog/914.html</link>
            <guid isPermaLink="true">http://latinamericangrid.org/elgg/xabriel.mojica/weblog/914.html</guid>
            <pubDate>Thu, 25 Aug 2011 22:12:19 GMT</pubDate>
		<dc:subject><![CDATA[Lab/Workplace Environment]]></dc:subject>
            <description><![CDATA[<p>The PIRE trip to Barcelona was very fulfilling both in a professional and personal way. I had a great time at Rosa's lab, and I think we accomplished a solid piece of work. We will continue to work together to shape the effort into a paper. And of course, I also had a great, great time at Barcelona. It is a great, very livable city that offers great tourism as well as nice places to revisit when you're there in a medium term stay as I was.</p><p>This will be my last post for now. I leave you all with a picture of Rosa's Research group, and as promised before, a picture of the Marenostrum computer!</p><p>&nbsp;<img src="http://latinamericangrid.org/elgg/xabriel.mojica/files/132/4138/Rosa%27s+Lab+-+Small.jpg"  border="0" /></p><p>From left to right: Xabriel J. Collazo-Mojica, Jorge Ejarque, Ra&uuml;l Sirvent, Enric Tejedor, Javier &Aacute;lvarez, Rosa M. Badia, Roger Rafanell, and Francesc Lordan.&nbsp;</p><p>&nbsp;</p><p><img src="http://latinamericangrid.org/elgg/xabriel.mojica/files/132/4140/Marenosgtrum+-+Small.jpg"  border="0"  width="500"  height="375" />&nbsp;</p><p>That's were I run my WoW server. :)&nbsp;</p>]]></description>
        </item>
                
        <item>
            <title><![CDATA[An opportunity to publish early findings]]></title>
            <link>http://latinamericangrid.org/elgg/xabriel.mojica/weblog/907.html</link>
            <guid isPermaLink="true">http://latinamericangrid.org/elgg/xabriel.mojica/weblog/907.html</guid>
            <pubDate>Tue, 09 Aug 2011 08:23:30 GMT</pubDate>
            <description><![CDATA[We just got a great opportunity to try and publish our early results on a Symposium. But the deadline is quickly approaching. Very quickly. So please excuse me while I go in hibernate mode. See you all after the deadline.]]></description>
        </item>
                
        <item>
            <title><![CDATA[JVisualVM: a nice and simple profiler for Java]]></title>
            <link>http://latinamericangrid.org/elgg/xabriel.mojica/weblog/892.html</link>
            <guid isPermaLink="true">http://latinamericangrid.org/elgg/xabriel.mojica/weblog/892.html</guid>
            <pubDate>Mon, 25 Jul 2011 11:00:59 GMT</pubDate>
            <description><![CDATA[<p>I ran into scalability issues this week. My prototype system keeps an in-memory database of infered models from my rules. It seemed to be fine with my test cases, but when I decided to push it a little to see how it scaled, it&nbsp;<span class="Apple-style-span"  style="white-space: pre"><strong>java.lang.OutOfMemoryError</strong></span>&nbsp;on me. I had an idea of why it was happening. I was wrong. Then another idea. I was wrong again. The problem was that I was picking possibilities randomly, without data. Not a good way of doing science.</p><p>I decided I needed to profile the prototype to see where exactly my memory was being used. I was happy when I realized (after a few minutes of googling around) that I did not have to download nor configure anything. Turns out the Java 6 JDK comes with a built-in lightweight profiler called JVisualVM. So my machine already had the profiler one command away. JVisualVM uses Java's reflection API and other tricks to dynamically instrument a running Java program. Zero configuration and full profiling benefits. Nice.</p><p><img src="http://latinamericangrid.org/elgg/xabriel.mojica/files/148/4092/jvisualvm_small.png"  border="0" />&nbsp;</p><p>I profiled the memory of my prototype, and it turns out my models where huge: 7MB each. This, with a max heap size of 128MB was easily throwing my service to its knees with only 15 inference requests. To further test its behaviour, I bumped the max heap size to a more server-friendly size of 512MB. The math says I can hold around 70 models now. But clearly there was something wrong as 7MB is way too much memory for what I was doing. After looking into my project settings I realized I never turned off inference derivation logging, and that was stealing most of the memory, aorund 6.5 of those 7MB! Memory problem fixed.</p><p>A much more subtle and hard to fix problem was the CPU time performance. I was averaging 500ms per inference. But after looking at the CPU profiling from JVisualVM, I was able to pinpoint the source of most of the CPU time consumption. I was firing way too many rules. Fixing this issue took much more time than pinpointing it though. Inference time will vary with the complexity of the model and the # of rules, but for my test cases, I managed to go from that ugly 500ms to 36ms on average. I'm still getting some spikes of ~150ms, but these occur only when the current heap size is almost full. My theory here is that Java is first doing a run of the Garbage Collector before committing to giving more heap to the program. But this is a minor issue now.</p><p><img src="http://latinamericangrid.org/elgg/xabriel.mojica/files/148/4091/jvisualvm_mem_small.png"  border="0" /></p><p>I'm starting to like Java again.&nbsp;</p>]]></description>
        </item>
                
        <item>
            <title><![CDATA[Implementing RESTful services in Java]]></title>
            <link>http://latinamericangrid.org/elgg/xabriel.mojica/weblog/883.html</link>
            <guid isPermaLink="true">http://latinamericangrid.org/elgg/xabriel.mojica/weblog/883.html</guid>
            <pubDate>Mon, 18 Jul 2011 10:38:23 GMT</pubDate>
            <description><![CDATA[<p>To the benefit of my own sanity and happiness, the last few years I have been doing most of my work, both personal and academic, in Ruby. Why? Well, because it's simply beautiful, especially if you use Ruby on Rails on top of it do to web development.&nbsp;I could tell you all the horror stories about developing the simplest of the web systems in Java/Servlets/Hibernate but I won't. You already know them. And if you like sanity too, you have kept yourself away from it.</p><p>But all this time away from the Java ecosystem also kept me away from some technologies that have emerged in its community to specifically tackle the &quot;configuration hell&quot; problem Java has always had (since version 5 at least).</p><p>Java is the programming language I'm using right now for this PIRE project, as Ruby's support for Rule-systems and the like is inadequate for my tasks. But I need a way to cleanly communicate back to the other Ruby-based modules. So I was happy to find&nbsp;JSR 311, or more commonly JAX-RS, which is a definition for a set of APIs in Java to be able to implement RESTful Web services in a very nice way:</p>  <p>  <span class="Apple-style-span"  style="font-family: Monaco; font-size: 11px"><span class="s1">import</span> javax.ws.rs.GET;</span><br /> <span class="Apple-style-span"  style="font-family: Monaco; font-size: 11px"><span class="s1">import</span> javax.ws.rs.Path;</span><br /> <span class="Apple-style-span"  style="font-family: Monaco; font-size: 11px"><span class="s1">import</span> javax.ws.rs.Produces;</span><br />  <br />  <span class="Apple-style-span"  style="color:#3c00ff; font-family: Monaco; font-size: 11px"><span class="s2"  style="color:#777777">@Path</span></span><span class="Apple-style-span"  style="color:#3c00ff; font-family: Monaco; font-size: 11px"><span class="s3"  style="color:#000000">(</span></span><span class="Apple-style-span"  style="color:#3c00ff; font-family: Monaco; font-size: 11px">&quot;/helloworld&quot;)</span><br /> <span class="Apple-style-span"  style="font-family: Monaco; font-size: 11px"><span class="s1">public class</span> Example {</span><br />  <br />  &nbsp; &nbsp; <span class="Apple-style-span"  style="color:#3c00ff; font-family: Monaco; font-size: 11px"><span class="s2"  style="color:#777777">@GET</span></span><br /> &nbsp; &nbsp; <span class="Apple-style-span"  style="color:#3c00ff; font-family: Monaco; font-size: 11px"><span class="s2"  style="color:#777777">@Produces</span></span><span class="Apple-style-span"  style="color:#3c00ff; font-family: Monaco; font-size: 11px"><span class="s3"  style="color:#000000">(</span></span><span class="Apple-style-span"  style="color:#3c00ff; font-family: Monaco; font-size: 11px">&quot;text/plain&quot;)</span><br />   &nbsp; &nbsp; <span class="Apple-style-span"  style="font-family: Monaco; font-size: 11px"><span class="s1">String</span> getMessage() {</span><br /> &nbsp; &nbsp; &nbsp; &nbsp; <span class="Apple-style-span"  style="font-family: Monaco; font-size: 11px"><span class="s1">return</span> &quot;Hello World!&quot;;</span><br /> <span class="Apple-style-span"  style="font-family: Monaco; font-size: 11px">&nbsp; &nbsp; }</span><br /> <span class="Apple-style-span"  style="font-family: Monaco; font-size: 11px">}</span><br />  </p>  <p>Well, as nice as Java can be. In this Hello World example, we are using three of the annotations from JAX-RS.&nbsp;<span class="Apple-style-span"  style="color:#3c00ff; font-family: Monaco; font-size: 11px"><span class="s2"  style="color:#777777">@Path</span></span><span class="Apple-style-span"  style="color:#3c00ff; font-family: Monaco; font-size: 11px"><span class="s3"  style="color:#000000">(</span></span><span class="Apple-style-span"  style="color:#3c00ff; font-family: Monaco; font-size: 11px">&quot;/helloworld&quot;</span><span class="Apple-style-span"  style="color:#3c00ff; font-family: Monaco; font-size: 11px"><span class="s3"  style="color:#000000">)&nbsp;</span></span>specifies that, if we see that path in the URI, then the underlying implementation should route that HTTP request to the&nbsp;<span class="Apple-style-span"  style="font-family: Monaco; font-size: 11px">Example</span>&nbsp;class. The&nbsp;<span class="Apple-style-span"  style="color:#777777; font-family: Monaco; font-size: 11px">@GET</span>&nbsp;annotation specifies that the&nbsp;<span class="Apple-style-span"  style="font-family: Monaco; font-size: 11px">getMessage()</span>&nbsp;method responds to GET HTTP requests only. Finally, the&nbsp;<span class="Apple-style-span"  style="color:#3c00ff; font-family: Monaco; font-size: 11px"><span class="s2"  style="color:#777777">@Produces</span><span class="s3"  style="color:#000000">(</span>&quot;text/plain&quot;<span class="s3"  style="color:#000000">)</span></span>&nbsp;annotation specifies that we will return a response with that MIME type back.</p><p>I guess I could do the exact same thing with 2 lines of Ruby, but hey, to my surprise, it works! ... (after 2 hours of configuring all the dependencies&nbsp;<img src="http://latinamericangrid.org/elgg/mod/tinymce/lib/jscripts/tiny_mce/plugins/emotions/images/smiley-cool.gif"  border="0"  alt="Cool"  title="Cool" />&nbsp;)</p>]]></description>
        </item>
                
        <item>
            <title><![CDATA[Using rules-based systems for inference]]></title>
            <link>http://latinamericangrid.org/elgg/xabriel.mojica/weblog/870.html</link>
            <guid isPermaLink="true">http://latinamericangrid.org/elgg/xabriel.mojica/weblog/870.html</guid>
            <pubDate>Sun, 10 Jul 2011 19:03:31 GMT</pubDate>
		<dc:subject><![CDATA[International Collaborators]]></dc:subject>
		<dc:subject><![CDATA[Rules]]></dc:subject>
            <description><![CDATA[<p>Most of my posts lately have been about my travels, so I think it is time to&nbsp;write a little&nbsp;about my work. On my <a href="http://latinamericangrid.org/elgg/xabriel.mojica/weblog/826.html">first post</a> for this PIRE grant to Barcelona, I mentioned the work that my collaborators have made on the <a href="http://onlinelibrary.wiley.com/doi/10.1002/cpe.1468/full">SERA project</a>. Although we decided not to directly interface with this system, we are using the main technique&nbsp;employed in that project: A Rules-based inference system.</p><p>So how does it work? More or less like this: In a Rule-based inference system, you have some input 'facts'. For example:</p><ol><li><div>Xabriel is the son of Jose.</div></li><li><div>Jose is the son of Aurelio</div></li></ol><p>The Rule system has, well, 'rules'. These work as templates for variables that the system tries to satisfy. If a rule is satisfied, then it gets 'fired'. Lets take this example rule:</p><ul><li><div><strong>If</strong> 'person_1' is son of 'person_2', <strong>and</strong> 'person_2' is son of 'person_3', <strong>then</strong> 'person_1' is grandson of 'person_3'.</div></li></ul><p>Based on the facts above, we can match all the variables (I.e. person_1 to Xabriel, person_2 to Jose, and person_3 to Aurelio), the rule gets fired, and thus&nbsp;it infers that Xabriel is the grandson of Aurelio.</p><p>I made this example very simple, but both the facts and the rules can get arbitrarily complex. The work of a Rules-based inference system is to make the&nbsp;matches, to be always correct ('correct' according to the given facts) and to be efficient (because we don't want to wait 5 minutes to know that Xabriel is the grandson of Aurelio). Most <a href="http://en.wikipedia.org/wiki/Forward_chaining">forward-chaining</a> rule systems do&nbsp;fast inferencing&nbsp;by implementing the <a href="http://en.wikipedia.org/wiki/Rete_algorithm">RETE algorithm</a>, or a derivation of it. This algorithm was proposed by Charles L. Forgy when doing his PhD at CMU.</p><p>Now the power of this is that you can decompose a quite complex system into simpler parts and give it to a rule engine to&nbsp;infer some new facts. Think of a general graph. It is quite complex if you look at it as a whole:</p><p><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/5/5b/6n-graf.svg/200px-6n-graf.svg.png"  border="0"  width="200"  height="132"  align="middle" /></p><p>But as we now, we can decompose it into simpler relations between its members:</p><ul><li><div>&quot;1&quot; is connected to &quot;2&quot; (and viceversa)</div></li><li><div>&quot;2&quot; is connected to &quot;3&quot; (and viceversa)</div></li><li><div>etc.</div></li></ul><p>Can you see the similarity with the previous example facts? They are both describing relations. &quot;Object 1&quot;&nbsp; has &quot;relation A&quot; with &quot;Object 2&quot;. We can of course use this way of representation for a bunch of stuff. In my case, to represent Distributed Ensembles of Virtual Appliances (DEVAs). We describe DEVAs in easy to comprehend facts (I.e. &quot;Appliances&nbsp;1&nbsp;has installed Service A&quot;) and then we try to infer some&nbsp;other info from that. I&nbsp;cannot comment&nbsp;on the&nbsp;details of what we are doing, but I can say that rules do map well to our problem domain.</p>]]></description>
        </item>
                
        <item>
            <title><![CDATA[Montserrat]]></title>
            <link>http://latinamericangrid.org/elgg/xabriel.mojica/weblog/864.html</link>
            <guid isPermaLink="true">http://latinamericangrid.org/elgg/xabriel.mojica/weblog/864.html</guid>
            <pubDate>Mon, 04 Jul 2011 10:46:44 GMT</pubDate>
		<dc:subject><![CDATA[Site Seeing]]></dc:subject>
            <description><![CDATA[<div>Montserrat is a mountainous region around 45 minutes away from Barcelona city. Roughly 'Saw Mountains', it is named like that because of its saw-like pikes. It is home for the Benedictine abbey of Santa Mar&iacute;a de Montserrat. This abbey stands at 597 meters above the sea level.&nbsp;</div><div><br /></div><div><img src="http://latinamericangrid.org/elgg/xabriel.mojica/files/141/3978/Apostoles_Small.jpg"  border="0" /></div><div><br /></div><div>The abbey itself is home to &quot;La Moreneta&quot; (roughly, 'The black one'), a black virgin statue. People come to the abbey's church to see La Moreneta, and to touch the ball she has in her hand to get the blessing and/or make wish.</div><div><br /></div><div><img src="http://latinamericangrid.org/elgg/xabriel.mojica/files/141/3979/LaMoreneta_Small.jpg"  border="0" /></div><div><br /></div><div>Montserrat is also a great place to do hiking, having various routes with spectacular views. You can take a special train that takes you from the abbey to an altitude of 1000 meters! Once at the 1000 meter point, you can walk down most of the trails. Sure, you could walk uphill from the monastery, but for couch potatoes the fun is to always have potential energy on your side :)</div><div>&nbsp;</div><div><a href="http://photosynth.net/view.aspx?cid=87894bd7-9d9e-4509-97b5-96354cfae3fe">Click here</a> for a very nice panorama of Montserrat.&nbsp;</div><div>&nbsp;</div><div>I'm including a photo of the '<a href="http://www.sarapose.com/">Sara pose</a>' for a dear friend of mine.</div><div>&nbsp;</div><div><img src="http://latinamericangrid.org/elgg/xabriel.mojica/files/141/3980/SaraPose_Small.jpg"  border="0" /></div>]]></description>
        </item>
                
        <item>
            <title><![CDATA[MareNostrum and Saint John's Eve]]></title>
            <link>http://latinamericangrid.org/elgg/xabriel.mojica/weblog/855.html</link>
            <guid isPermaLink="true">http://latinamericangrid.org/elgg/xabriel.mojica/weblog/855.html</guid>
            <pubDate>Wed, 29 Jun 2011 09:14:27 GMT</pubDate>
		<dc:subject><![CDATA[Lab/Workplace Environment]]></dc:subject>
		<dc:subject><![CDATA[International Experience]]></dc:subject>
            <description><![CDATA[<p><strong>MareNostrum&nbsp;</strong></p><p>Not directly related with my research, but really interesting, is MareNostrum, Barcelona Supercomputing Centers' supercomputer. As of June 2011, it is at spot number 170 on top500.org, which ranks the 'fastest' supercomputers in the world. With 10,240 cpu cores, this computer can achieve a maximum of 63.83 Teraflops of computational power.</p><p>MareNostrum, roughly 'Our Sea' in english, is located in an odd building... a chapel! Well, not really a chapel anymore, as the Torre Girona chapel has been 'deconsecrated'. Unfortuntaely, I haven't been able to physically see the computer yet, but once I do I'll try to do one of those nifty 3D panoramas. For now, here's a public domain photo:</p>  <img src="http://www.computescotland.com/images/8z0vixQIQPQ5sYuZEtIF0ff0ad.jpg"  border="0" /><br /><br />  <p><strong>Saint Jonh's Eve</strong></p><p>I'm puertorrican. Puerto Rico has had an interesting (caotic?) history, being a colony of Spain for 400 years (and a colony of the USA for the last 113 years, but that's another post...). This events have made puertorricans adopt many cultural customs. It was nice to see how spaniards celebrate the 'V&iacute;spera de San Juan' (Saint John's Eve). Here they go at night to the beach and do picnic and drinks, and they also make bonfires. There are fireworks everywhere too.</p><p>Back in Puerto Rico, we also go to the beach, and do the drinks, but the idea of going to the beach is to, at exactly midnight, enter the water, position yourself against the sea, and throw yourself backwards seven times. If you do, you are supposed to be washing your sins, and you'll have good luck the rest of the year.</p><p>I didn't get into the water this time. Hope Fortuna, the luck Goddess, doesn't take it personal on me. :)</p>  <img src="http://latinamericangrid.org/elgg/xabriel.mojica/files/131/3942/Saint_John_Eve_Small.jpg"  border="0" />]]></description>
        </item>
                
        <item>
            <title><![CDATA[Starting the collaboration at BSC, and, by the way, "No hay pan para tanto chorizo".]]></title>
            <link>http://latinamericangrid.org/elgg/xabriel.mojica/weblog/835.html</link>
            <guid isPermaLink="true">http://latinamericangrid.org/elgg/xabriel.mojica/weblog/835.html</guid>
            <pubDate>Sun, 19 Jun 2011 19:36:34 GMT</pubDate>
		<dc:subject><![CDATA[International Experience]]></dc:subject>
		<dc:subject><![CDATA[Weekly-Report]]></dc:subject>
            <description><![CDATA[<div><strong>At the lab</strong>&nbsp;</div><div>&nbsp;</div><div>Tuesday morning I arrived at the Barcelona Supercomputing Center. Human resources greeted me, and we setup the access control. Later I met with Dr. Rosa Badia. We had a short meeting were we discussed the working environment, and she introduced me to several of my co-workers.</div><div><br /></div><div>On Wednesday, I had a meeting with the Grid Computing and Clusters Group, which works under the supervision of Dr. Badia. They presented a demo of one of their cloud computing prototypes. I also had the opportunity to do a short presentation of my work. We narrowed down the collaboration opportunities to a few possible topics. As of now, we are leaning towards &lsquo;Mapping of QoS constraints to Resource Assignment&rsquo; by using the OCCI API as an intermediary between our DEVA prototype and an interoperability system currently being developed here at BSC. Given that they have unpublished results, I cannot discuss more details for now.</div><div><br /></div><div>On Thursday and Friday, I spend most of my time reading various technical docs, including the OCCI standard, reviewing the OVF standard, and some non-published material from BSC.</div><div>&nbsp;</div><div>&nbsp;</div><div><strong>No hay pan para tanto chorizo</strong>&nbsp;</div><div>&nbsp;</div><div>An experience I would like to share is <a href="http://politica.elpais.com/politica/2011/06/19/actualidad/1308500924_100059.html">today's manifestation</a>. I was walking around Barri Gotic (The Gothic Quarter), when I bumped into a quite big dinosaur.</div>  <div><br /><img src="http://latinamericangrid.org/elgg/xabriel.mojica/files/131/3873/Dinosaur_Small.jpg"  border="0" /></div>  <div>&nbsp;</div><div>I followed the dragon all the way to Plaza Catalunya. Turns out today there was a quite big manifestation from spaniards, mostly young people, claiming a more open democracy in regards to the economical crisis. They are particularly against the recent cuts being done with the &quot;<a href="http://www.elpais.com/articulo/economia/Pacto/Euro/sale/adelante/recortes/sociales/salariales/elpepieco/20110312elpepieco_2/Tes">Pacto del Euro</a>&quot; (Euro Act). &quot;No hay pan para tanto chorizo&quot; was one of the chants (roughly &quot;There's not enough bread for so many sausages&quot;). &quot;Democracia no es votar cada 4 a&ntilde;os&quot; said one banner (&quot;Democracy is not just voting every 4 years&quot;). Here are a few pictures of the activity. By the way, the dinosaur got lost in the crowd... there were probably 50,000 people there!</div>  <div><br /><img src="http://latinamericangrid.org/elgg/xabriel.mojica/files/131/3872/19J_Small.jpg"  border="0" /></div>  <div><br /><img src="http://latinamericangrid.org/elgg/xabriel.mojica/files/131/3874/PrimerMundo_Small.jpg"  border="0" /></div>]]></description>
        </item>
                
        <item>
            <title><![CDATA[A new collaboration with the Barcelona Supercomputing Center]]></title>
            <link>http://latinamericangrid.org/elgg/xabriel.mojica/weblog/826.html</link>
            <guid isPermaLink="true">http://latinamericangrid.org/elgg/xabriel.mojica/weblog/826.html</guid>
            <pubDate>Sun, 12 Jun 2011 10:35:50 GMT</pubDate>
            <description><![CDATA[<div>Its being a while since my last post! To make it short: I've been a little busy. I managed to finish my last year of courses. While at it, the position paper for FlexiTools@SPLASH 2010 got accepted. We also got a full paper accepted at the 11th International Conference of Software Engineering and Knowledge Engineering (<a href="http://www.ksi.edu/seke/seke11.html">http://www.ksi.edu/seke/seke11.html</a>).</div><div><br /></div><div>On that last paper, we discuss a metamodel for describing Distributed Ensembles of Virtual Appliances (DEVAs) at a proper level for cloud computing users like web application developers. With such a model, we can apply black-box or white-box performance modeling to suggest and realize the models in the resources provided by various Infrastructure as a Service (IaaS) vendors.</div><div><br /></div><div>That all sounds good in paper, but we now intend to prove that it is doable. We now have a limited prototype that can take a DEVA model and launch it on Amazon EC2. But the whole purpose of having a platform-independent model is that it can be launched anywhere. For this, we have partnered with Dr. Rosa Badia and Dr. Javier Ejarque, from the Barcelona Supercomputing Center. They have proposed a system called SERA: the Semantically Enhanced Resource Allocator. We will be working on an interface between DEVAs and SERA. It should be an interesting piece of work.</div><div><br /></div><div>I've just arrived at Barcelona for this collaboration, and will start working next Tuesday. I do hope to enjoy both the work and the catalonian life. Keep checking out this blog for weekly updates. For now, enjoy this three-dimensional panoramanas from the <a href="http://photosynth.net/view.aspx?cid=e64aa27f-0205-4abe-bd79-2df3aaa7b4a6">Bas&iacute;lica de Santa Mar&iacute;a del Mar</a> and the <a href="http://photosynth.net/view.aspx?cid=a24a4a86-89b0-44e8-bcd7-d652ca3379d6">Palacio Real</a>.</div>]]></description>
        </item>
                
        <item>
            <title><![CDATA[Back at FIU and the Miami life]]></title>
            <link>http://latinamericangrid.org/elgg/xabriel.mojica/weblog/793.html</link>
            <guid isPermaLink="true">http://latinamericangrid.org/elgg/xabriel.mojica/weblog/793.html</guid>
            <pubDate>Mon, 06 Sep 2010 21:24:19 GMT</pubDate>
		<dc:subject><![CDATA[International Collaborator]]></dc:subject>
		<dc:subject><![CDATA[Project-Plan]]></dc:subject>
		<dc:subject><![CDATA[Lab/Workplace Environment]]></dc:subject>
            <description><![CDATA[<p>I made it back to Miami on Sunday August 22 at 4am. Although I will be back to my normal 9-credit load, plus all the TAing I need to do, I hope to finish the promised prototype features in the next few weeks.&nbsp;After that, we will start working on the autonomic features, as we will be targeting ICAC.</p><p>&nbsp;</p><p>For now, this will be my last post here. I'm including a picture of my last day at the lab in S&atilde;o Paulo. (Full resolution <a href="http://latinamericangrid.org/elgg/xabriel.mojica/files/100/3584/At+the+Lab.JPG">here</a>.)</p>  <img src="http://latinamericangrid.org/elgg/xabriel.mojica/files/100/3585/At+the+Lab+-+Small.jpg"  border="0" />  <p>From left to right: Felipe Meneses Besson, Alvaro H. Mamani-Aliaga, and Xabriel J. Collazo-Mojica</p>]]></description>
        </item>
        
        <item>
            <title><![CDATA[]]></title>
            <link>http://latinamericangrid.org/elgg/xabriel.mojica/files/132/4139/Marenostrum.JPG</link>
            <enclosure url="http://latinamericangrid.org/elgg/xabriel.mojica/files/132/4139/Marenostrum.JPG" length="1522052" type="image/jpeg" />
            <pubDate>Sat, 27 Aug 2011 01:15:55 GMT</pubDate>
            <description><![CDATA[]]></description>
        </item>
        <item>
            <title><![CDATA[]]></title>
            <link>http://latinamericangrid.org/elgg/xabriel.mojica/files/132/4140/Marenosgtrum+-+Small.jpg</link>
            <enclosure url="http://latinamericangrid.org/elgg/xabriel.mojica/files/132/4140/Marenosgtrum+-+Small.jpg" length="39054" type="image/jpeg" />
            <pubDate>Sat, 27 Aug 2011 01:15:55 GMT</pubDate>
            <description><![CDATA[]]></description>
        </item>
        <item>
            <title><![CDATA[]]></title>
            <link>http://latinamericangrid.org/elgg/xabriel.mojica/files/132/4137/Rosa%27s+Lab.JPG</link>
            <enclosure url="http://latinamericangrid.org/elgg/xabriel.mojica/files/132/4137/Rosa%27s+Lab.JPG" length="4958259" type="image/jpeg" />
            <pubDate>Sat, 27 Aug 2011 01:08:54 GMT</pubDate>
            <description><![CDATA[]]></description>
        </item>
        <item>
            <title><![CDATA[]]></title>
            <link>http://latinamericangrid.org/elgg/xabriel.mojica/files/132/4138/Rosa%27s+Lab+-+Small.jpg</link>
            <enclosure url="http://latinamericangrid.org/elgg/xabriel.mojica/files/132/4138/Rosa%27s+Lab+-+Small.jpg" length="42401" type="image/jpeg" />
            <pubDate>Sat, 27 Aug 2011 01:08:54 GMT</pubDate>
            <description><![CDATA[]]></description>
        </item>
        <item>
            <title><![CDATA[]]></title>
            <link>http://latinamericangrid.org/elgg/xabriel.mojica/files/148/4092/jvisualvm_small.png</link>
            <enclosure url="http://latinamericangrid.org/elgg/xabriel.mojica/files/148/4092/jvisualvm_small.png" length="96069" type="image/png" />
            <pubDate>Mon, 25 Jul 2011 11:00:21 GMT</pubDate>
            <description><![CDATA[]]></description>
        </item>
        <item>
            <title><![CDATA[]]></title>
            <link>http://latinamericangrid.org/elgg/xabriel.mojica/files/148/4089/jvisualvm.tiff</link>
            <enclosure url="http://latinamericangrid.org/elgg/xabriel.mojica/files/148/4089/jvisualvm.tiff" length="166386" type="image/tiff" />
            <pubDate>Mon, 25 Jul 2011 11:00:20 GMT</pubDate>
            <description><![CDATA[]]></description>
        </item>
        <item>
            <title><![CDATA[]]></title>
            <link>http://latinamericangrid.org/elgg/xabriel.mojica/files/148/4090/jvisualvm_mem.tiff</link>
            <enclosure url="http://latinamericangrid.org/elgg/xabriel.mojica/files/148/4090/jvisualvm_mem.tiff" length="197202" type="image/tiff" />
            <pubDate>Mon, 25 Jul 2011 11:00:20 GMT</pubDate>
            <description><![CDATA[]]></description>
        </item>
        <item>
            <title><![CDATA[]]></title>
            <link>http://latinamericangrid.org/elgg/xabriel.mojica/files/148/4091/jvisualvm_mem_small.png</link>
            <enclosure url="http://latinamericangrid.org/elgg/xabriel.mojica/files/148/4091/jvisualvm_mem_small.png" length="98290" type="image/png" />
            <pubDate>Mon, 25 Jul 2011 11:00:20 GMT</pubDate>
            <description><![CDATA[]]></description>
        </item>
        <item>
            <title><![CDATA[]]></title>
            <link>http://latinamericangrid.org/elgg/xabriel.mojica/files/141/4050/Sara_Pose.jpg</link>
            <enclosure url="http://latinamericangrid.org/elgg/xabriel.mojica/files/141/4050/Sara_Pose.jpg" length="393795" type="image/jpeg" />
            <pubDate>Mon, 18 Jul 2011 08:27:42 GMT</pubDate>
            <description><![CDATA[]]></description>
        </item>
        <item>
            <title><![CDATA[]]></title>
            <link>http://latinamericangrid.org/elgg/xabriel.mojica/files/141/4049/LaMoreneta.jpg</link>
            <enclosure url="http://latinamericangrid.org/elgg/xabriel.mojica/files/141/4049/LaMoreneta.jpg" length="594197" type="image/jpeg" />
            <pubDate>Mon, 18 Jul 2011 08:27:22 GMT</pubDate>
            <description><![CDATA[]]></description>
        </item>
    </channel>
</rss>