<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Miguel&#039;s space</title>
	<atom:link href="http://nacenta.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nacenta.com</link>
	<description>Surfaces, many surfaces, and interaction</description>
	<lastBuildDate>Wed, 15 May 2013 15:15:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='nacenta.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/7183275308d3408d441e9ac3b6bca0fa?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Miguel&#039;s space</title>
		<link>http://nacenta.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://nacenta.com/osd.xml" title="Miguel&#039;s space" />
	<atom:link rel='hub' href='http://nacenta.com/?pushpress=hub'/>
		<item>
		<title>What and how to log in your experimental HCI software</title>
		<link>http://nacenta.com/2013/05/15/what-and-how-to-log-in-your-experimental-hci-software/</link>
		<comments>http://nacenta.com/2013/05/15/what-and-how-to-log-in-your-experimental-hci-software/#comments</comments>
		<pubDate>Wed, 15 May 2013 11:26:37 +0000</pubDate>
		<dc:creator>manacenta</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[Experimental Design]]></category>
		<category><![CDATA[Experimental Software]]></category>
		<category><![CDATA[Logging]]></category>

		<guid isPermaLink="false">http://miguelissimo.wordpress.com/?p=230</guid>
		<description><![CDATA[You have worked hard on your project. You searched the literature, learned about the methods, painstakingly designed an experiment, and have almost finished implementing the software, but&#8230; what about the logging? Most students think that logging is easy. Just write some lines on a text file. A couple of hours on the software should do, [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nacenta.com&#038;blog=20337637&#038;post=230&#038;subd=miguelissimo&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>You have worked hard on your project. You searched the literature, learned about the methods, painstakingly designed an experiment, and have almost finished implementing the software, but&#8230; what about the logging?</p>
<p>Most students think that logging is easy. Just write some lines on a text file. A couple of hours on the software should do, right? I don&#8217;t think so.</p>
<p>Experience has shown me that logging is extremely error-prone, and that paying little attention to it results in incredible loss of valuable information and time, and that most students do not realize how important doing good logging is.</p>
<p>Before I go on let me qualify a little bit what kind of logs I&#8217;m talking about. I&#8217;m referring mostly to the kind of experiment that you often see in HCI or Experimental Psychology, were there are many participants, and each participant performs many trials, possibly in multiple conditions. This is usually information that is suitably recorded in a simple format like comma separated values (CSV).</p>
<p>Let me state then my five fundamental laws of logging:</p>
<h2>1. Log everything you can</h2>
<p>Disk space is cheap, your time is expensive. Probably the most common mistake here is not to record enough information in each record because you think it is redundant and a waste of space. For example, why record today&#8217;s date in each record of each trial, if they are all the same? I tend to record the same information in each trial anyway, because it is always easy to discard info, but it takes a long time to recover data from different sources (including the name of the file, the creation date that the OS stores etc.). Don&#8217;t assume that you will remember where you are storing all that information when the time for analysis comes. Things that I tend to save in each trial record: userId, all condition values for all factors, the number of the trial with respect to the condition, the number of the trial with respect to the cell, the absolute number of the trial within the experiment (and the phase) and, of course, all the dependent variables.</p>
<p>Perhaps the only caveat to this is that all this recording should not negatively affect the performance of your program or the accuracy of the time measurements. If performance and timing accuracy is important, good strategy is to write first to memory, and only save to disk in between trials (or when timing is not an issue).</p>
<h2>2. Make your logs self-contained</h2>
<p>Name your variables wisely, and always include names on top of the file. This should be quite explanatory, and most analysis programs (e.g., SPSS) will allow you to name the variables automatically from the file. Handy and convenient. A good complementary practice is to have some comments (or a separate file) that provides an explanation of how each variable is recorded, but this requires discipline to maintain, because the logger program tends to evolve. Best to keep your measures simple.</p>
<h2>3. Debug, debug, debug</h2>
<p>Never assume that your code is recording properly. Simple visual inspection won&#8217;t cut it. I have experienced many problems that only became visible after all the experiments were recorded. The best way to avoid problems here is not only to debug, but also to use your pilots to gather realistic data, and <strong>analyze it in the same way that you will analyze the overall results from the finished study. </strong>This is not only good for your logs, it is also helpful to avoid possible flaws in your statistics (e.g., I do not believe in <a title="Discussion about a priori power analysis in wikipedia" href="http://en.wikipedia.org/wiki/Statistical_power#A_priori_vs._post_hoc_analysis">a posteriori power analysis</a>).</p>
<h2>4. Backup, backup, backup</h2>
<p>Don&#8217;t trust your hard-drive, don&#8217;t trust your experimental software. Within your program, save the data to drive as soon as you can (but take into account the comments in point 1). This will allow you to recover from failures in your software. It is actually kind of nice to code your experimental software so that you can restart it again at any given trial within the session. When the experiment is finished, the first experimenter action should be to verify that the data is in the right place, and perhaps making a copy (or send yourself the data to your gmail account &#8211; if your data is properly anonymized, of course).</p>
<h2>5. Protect yourself against confusion</h2>
<p>If something can go wrong during the experiment, it probably will. It is good practice to save the date hour and second of experimental recording in the name of the file that your program saves. This will help you prevent accidental overwrites. Similarly, try to leave as little as possible human intervention for the actual session. For example, I never trust the experimenter -often myself- to select the right name for multiple files depending on the condition. Have the software do something reasonable for you. The only thing that I often make configurable is the participant identifier, so that I can separate real trials from debugging logs.</p>
<p>Hopefully these might be useful to you some time. Write a message below if you agree/disagree or want to add some more advice!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/miguelissimo.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/miguelissimo.wordpress.com/230/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nacenta.com&#038;blog=20337637&#038;post=230&#038;subd=miguelissimo&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nacenta.com/2013/05/15/what-and-how-to-log-in-your-experimental-hci-software/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/55c053bcd592535a641e9eb8e32e543a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manacenta</media:title>
		</media:content>
	</item>
		<item>
		<title>Our mini central-european tour: Munich, Konstanz, Zurich</title>
		<link>http://nacenta.com/2013/01/30/our-mini-central-european-tour-munich-konstanz-zurich/</link>
		<comments>http://nacenta.com/2013/01/30/our-mini-central-european-tour-munich-konstanz-zurich/#comments</comments>
		<pubDate>Wed, 30 Jan 2013 14:28:43 +0000</pubDate>
		<dc:creator>manacenta</dc:creator>
				<category><![CDATA[Places]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://nacenta.com/?p=440</guid>
		<description><![CDATA[Last week, Uta and I had the chance to take a tour of three impressive labs in Germany and Switzerland. The German and Swiss hospitality cannot be overstated, but most impressive was the range of research. In Munich we visited the Media Informatics and Human-Computer Interaction Group, invited by Andreas Butz. It was really nice to see finally [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nacenta.com&#038;blog=20337637&#038;post=440&#038;subd=miguelissimo&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Last week, <a title="Uta's site" href="http://www.utahinrichs.de/" target="_blank">Uta</a> and I had the chance to take a tour of three impressive labs in Germany and Switzerland. The German and Swiss hospitality cannot be overstated, but most impressive was the range of research.<br />
<a href="http://miguelissimo.files.wordpress.com/2013/01/curve.jpg"><img class="size-thumbnail wp-image-442 alignleft" alt="curve" src="http://miguelissimo.files.wordpress.com/2013/01/curve.jpg?w=150&#038;h=112" width="150" height="112" /></a><a href="http://miguelissimo.files.wordpress.com/2013/01/public-wall-display.jpg"><img alt="public wall display" src="http://miguelissimo.files.wordpress.com/2013/01/public-wall-display.jpg?w=150&#038;h=112" width="150" height="112" /></a>In Munich we visited the <a title="LMU - media informatics and hci group" href="http://www.medien.ifi.lmu.de/" target="_blank">Media Informatics and Human-Computer Interaction Group</a>, invited by <a title="Andreas's home page" href="http://www.cip.ifi.lmu.de/~butz/" target="_blank">Andreas Butz</a>. It was really nice to see finally the curve (in the picture), among lots of other excellent research, including work by <a title="Alice Thudt's home page" href="http://alicethudt.de/" target="_blank">Alice Thudt</a>, a current collaborator of Uta.</p>
<p><em id="__mceDel"><a href="http://miguelissimo.files.wordpress.com/2013/01/collaborative-search.jpg"><img class="alignright size-thumbnail wp-image-446" alt="collaborative search" src="http://miguelissimo.files.wordpress.com/2013/01/collaborative-search.jpg?w=150&#038;h=112" width="150" height="112" /></a> <a href="http://miguelissimo.files.wordpress.com/2013/01/controlrooms2.jpg"><img class="alignright size-thumbnail wp-image-447" alt="controlrooms2" src="http://miguelissimo.files.wordpress.com/2013/01/controlrooms2.jpg?w=150&#038;h=112" width="150" height="112" /></a></em>In Konstanz, we visited the <a title="Harald Reiterer's group in Konstanz" href="http://hci.uni-konstanz.de/index.php?lang=en" target="_blank">Human-Computer Interaction</a> group led by Prof. <a title="Harald's homepage" href="http://hci.uni-konstanz.de/index.php?a=staff&amp;b=Reiterer&amp;c=contact" target="_blank">Harald Reiterer</a>. The range of research and development is very broad. A particular favorite of mine is the work on zoomable multi-display environments (the <a href="http://hci.uni-konstanz.de/downloads/zoil.pdf" target="_blank">ZOIL API</a>), and a number of other interesting experiments related to large displays.</p>
<p>Finally, we had the chance to visit <a href="http://www.ifi.uzh.ch/zpac/people/huang.html">Dr. Elaine Huang</a> and her <a title="ZPAC" href="http://www.ifi.uzh.ch/zpac.html" target="_blank">ZPAC</a> laboratory; we have strong links with this lab (including Helen, another iLab graduate), but there were many other strong research reasons to visit ZPAC; most related to me is the work by Gunnar Harboe, but it was great to learn too about projects on sustainability, cultural communication, and domestic ubicomp.</p>
<p>Naturally, I cannot make justice to everything that all these researchers do in a few lines&#8230; maybe you should just visit them too <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . We really would like to thank all our hosts for wonderful and insightful visits (special thanks to Fabian, Hans-Christian, Christian, Alice and Helen for bearing with us for so long). We are looking forward to your visits!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/miguelissimo.wordpress.com/440/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/miguelissimo.wordpress.com/440/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nacenta.com&#038;blog=20337637&#038;post=440&#038;subd=miguelissimo&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nacenta.com/2013/01/30/our-mini-central-european-tour-munich-konstanz-zurich/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/55c053bcd592535a641e9eb8e32e543a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manacenta</media:title>
		</media:content>

		<media:content url="http://miguelissimo.files.wordpress.com/2013/01/curve.jpg?w=150" medium="image">
			<media:title type="html">curve</media:title>
		</media:content>

		<media:content url="http://miguelissimo.files.wordpress.com/2013/01/public-wall-display.jpg?w=150" medium="image">
			<media:title type="html">public wall display</media:title>
		</media:content>

		<media:content url="http://miguelissimo.files.wordpress.com/2013/01/collaborative-search.jpg?w=150" medium="image">
			<media:title type="html">collaborative search</media:title>
		</media:content>

		<media:content url="http://miguelissimo.files.wordpress.com/2013/01/controlrooms2.jpg?w=150" medium="image">
			<media:title type="html">controlrooms2</media:title>
		</media:content>
	</item>
		<item>
		<title>Amazing visit to the special collections of the University of St Andrews</title>
		<link>http://nacenta.com/2012/10/17/amazing-visit-to-the-special-collections-of-the-university-of-st-andrews/</link>
		<comments>http://nacenta.com/2012/10/17/amazing-visit-to-the-special-collections-of-the-university-of-st-andrews/#comments</comments>
		<pubDate>Wed, 17 Oct 2012 17:26:46 +0000</pubDate>
		<dc:creator>manacenta</dc:creator>
				<category><![CDATA[Organizations]]></category>

		<guid isPermaLink="false">http://nacenta.com/?p=431</guid>
		<description><![CDATA[Yesterday was a busy day. We have been working with the University of St Andrews Library and the Museum of the University of St Andrews (MUSA) to put together some seminars (first, second) on the use of interactive technology in libraries and museums, and to get some exciting collaborations started. We were lucky to have [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nacenta.com&#038;blog=20337637&#038;post=431&#038;subd=miguelissimo&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[
<a href='http://nacenta.com/2012/10/17/amazing-visit-to-the-special-collections-of-the-university-of-st-andrews/imag0239/' title='IMAG0239'><img data-liked='0' data-reblogged='0' data-attachment-id="432" data-orig-file="http://miguelissimo.files.wordpress.com/2012/10/imag0239.jpg" data-orig-size="1728,2592" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;HTC Wildfire S&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1350401925&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;3.53&quot;,&quot;iso&quot;:&quot;145&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMAG0239" data-image-description="" data-medium-file="http://miguelissimo.files.wordpress.com/2012/10/imag0239.jpg?w=200" data-large-file="http://miguelissimo.files.wordpress.com/2012/10/imag0239.jpg?w=450" width="100" height="150" src="http://miguelissimo.files.wordpress.com/2012/10/imag0239.jpg?w=100&#038;h=150" class="attachment-thumbnail" alt="IMAG0239" /></a>
<a href='http://nacenta.com/2012/10/17/amazing-visit-to-the-special-collections-of-the-university-of-st-andrews/imag0240/' title='IMAG0240'><img data-liked='0' data-reblogged='0' data-attachment-id="433" data-orig-file="http://miguelissimo.files.wordpress.com/2012/10/imag0240.jpg" data-orig-size="1728,2592" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;HTC Wildfire S&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1350401935&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;3.53&quot;,&quot;iso&quot;:&quot;98&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMAG0240" data-image-description="" data-medium-file="http://miguelissimo.files.wordpress.com/2012/10/imag0240.jpg?w=200" data-large-file="http://miguelissimo.files.wordpress.com/2012/10/imag0240.jpg?w=450" width="100" height="150" src="http://miguelissimo.files.wordpress.com/2012/10/imag0240.jpg?w=100&#038;h=150" class="attachment-thumbnail" alt="IMAG0240" /></a>
<a href='http://nacenta.com/2012/10/17/amazing-visit-to-the-special-collections-of-the-university-of-st-andrews/imag0241/' title='IMAG0241'><img data-liked='0' data-reblogged='0' data-attachment-id="434" data-orig-file="http://miguelissimo.files.wordpress.com/2012/10/imag0241.jpg" data-orig-size="1728,2592" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;HTC Wildfire S&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1350402041&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;3.53&quot;,&quot;iso&quot;:&quot;132&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMAG0241" data-image-description="" data-medium-file="http://miguelissimo.files.wordpress.com/2012/10/imag0241.jpg?w=200" data-large-file="http://miguelissimo.files.wordpress.com/2012/10/imag0241.jpg?w=450" width="100" height="150" src="http://miguelissimo.files.wordpress.com/2012/10/imag0241.jpg?w=100&#038;h=150" class="attachment-thumbnail" alt="IMAG0241" /></a>
<a href='http://nacenta.com/2012/10/17/amazing-visit-to-the-special-collections-of-the-university-of-st-andrews/imag0242/' title='IMAG0242'><img data-liked='0' data-reblogged='0' data-attachment-id="435" data-orig-file="http://miguelissimo.files.wordpress.com/2012/10/imag0242.jpg" data-orig-size="1728,2592" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;HTC Wildfire S&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1350403625&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;3.53&quot;,&quot;iso&quot;:&quot;121&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMAG0242" data-image-description="" data-medium-file="http://miguelissimo.files.wordpress.com/2012/10/imag0242.jpg?w=200" data-large-file="http://miguelissimo.files.wordpress.com/2012/10/imag0242.jpg?w=450" width="100" height="150" src="http://miguelissimo.files.wordpress.com/2012/10/imag0242.jpg?w=100&#038;h=150" class="attachment-thumbnail" alt="IMAG0242" /></a>

<p>Yesterday was a busy day. We have been working with the<a title="University of St Andrews Library" href="http://www.st-andrews.ac.uk/library/"> University of St Andrews Library</a> and the <a href="http://www.st-andrews.ac.uk/musa/">Museum of the University of St Andrews</a> (MUSA) to put together some seminars (<a href="https://sachi.cs.st-andrews.ac.uk/2012/10/interactive-technologies-for-libraries-and-museums/">first</a>, <a href="https://sachi.cs.st-andrews.ac.uk/activities/workshops/interaction-and-visualisation-technologies-in-the-library-open-session/">second</a>) on the use of interactive technology in libraries and museums, and to get some exciting collaborations started. We were lucky to have very interesting speakers and, as a treat, we got to take a tour of the Special Collections. Daryl Green and Maia Sheridan showed us some amazing artifacts that we are hoping we can help make available to more people through interactive technologies in new and exciting ways. The photos show some of the amazing books (although they have all sorts of interesting artefacts). I&#8217;ll leave it to you to go to the library and found out which ones these are, but some of the stuff we saw has existed for more than 900 years!!</p>
<p>This is one of the perks of working in an institution with 600 years of history. If you like this stuff, you should not miss  the  <a href="http://standrewsrarebooks.wordpress.com/">blog of the Special Collections</a>.</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/miguelissimo.wordpress.com/431/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/miguelissimo.wordpress.com/431/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nacenta.com&#038;blog=20337637&#038;post=431&#038;subd=miguelissimo&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nacenta.com/2012/10/17/amazing-visit-to-the-special-collections-of-the-university-of-st-andrews/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/55c053bcd592535a641e9eb8e32e543a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manacenta</media:title>
		</media:content>

		<media:content url="http://miguelissimo.files.wordpress.com/2012/10/imag0239.jpg?w=100" medium="image">
			<media:title type="html">IMAG0239</media:title>
		</media:content>

		<media:content url="http://miguelissimo.files.wordpress.com/2012/10/imag0240.jpg?w=100" medium="image">
			<media:title type="html">IMAG0240</media:title>
		</media:content>

		<media:content url="http://miguelissimo.files.wordpress.com/2012/10/imag0241.jpg?w=100" medium="image">
			<media:title type="html">IMAG0241</media:title>
		</media:content>

		<media:content url="http://miguelissimo.files.wordpress.com/2012/10/imag0242.jpg?w=100" medium="image">
			<media:title type="html">IMAG0242</media:title>
		</media:content>
	</item>
		<item>
		<title>Umer graduating&#8230;</title>
		<link>http://nacenta.com/2012/08/08/umer-graduating/</link>
		<comments>http://nacenta.com/2012/08/08/umer-graduating/#comments</comments>
		<pubDate>Wed, 08 Aug 2012 16:33:01 +0000</pubDate>
		<dc:creator>manacenta</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nacenta.com/?p=426</guid>
		<description><![CDATA[Today, Umer Rashid (almost Dr. Umer Rashid) came to my office to give me a copy of his PhD thesis: Cross-display Attention Switching in Mobile Interaction with Large Displays. Great moment of pride and satisfaction for a job well done&#8230; Now it is time for Umer to leave the nest and show the world his [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nacenta.com&#038;blog=20337637&#038;post=426&#038;subd=miguelissimo&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://miguelissimo.files.wordpress.com/2012/08/img_5964.jpg"><img class="alignright size-thumbnail wp-image-427" title="IMG_5964" src="http://miguelissimo.files.wordpress.com/2012/08/img_5964.jpg?w=112&#038;h=150" alt="" width="112" height="150" /></a>Today, Umer Rashid (almost Dr. Umer Rashid) came to my office to give me a copy of his PhD thesis: Cross-display Attention Switching in Mobile Interaction with Large Displays.</p>
<p>Great moment of pride and satisfaction for a job well done&#8230; Now it is time for Umer to leave the nest and show the world his best researcher skills. Good luck in Lincoln!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/miguelissimo.wordpress.com/426/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/miguelissimo.wordpress.com/426/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nacenta.com&#038;blog=20337637&#038;post=426&#038;subd=miguelissimo&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nacenta.com/2012/08/08/umer-graduating/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/55c053bcd592535a641e9eb8e32e543a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manacenta</media:title>
		</media:content>

		<media:content url="http://miguelissimo.files.wordpress.com/2012/08/img_5964.jpg?w=112" medium="image">
			<media:title type="html">IMG_5964</media:title>
		</media:content>
	</item>
		<item>
		<title>PhD Studentship on Perceptual Gaze-contingent Displays at St Andrews (with me)</title>
		<link>http://nacenta.com/2012/07/02/phd-studentship-on-perceptual-gaze-contingent-displays-at-st-andrews-with-me/</link>
		<comments>http://nacenta.com/2012/07/02/phd-studentship-on-perceptual-gaze-contingent-displays-at-st-andrews-with-me/#comments</comments>
		<pubDate>Mon, 02 Jul 2012 08:00:03 +0000</pubDate>
		<dc:creator>manacenta</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[SACHI]]></category>
		<category><![CDATA[students]]></category>
		<category><![CDATA[University of St Andrews]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://nacenta.com/?p=416</guid>
		<description><![CDATA[I&#8217;m looking for a student to work with me in St Andrews for the next few years (fully funded). The topic is gaze-contingent displays. I&#8217;m looking for someone with a Computer Science background that has an interest in perception and visualization, and a big curiosity about human perception and what we can do to enhance [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nacenta.com&#038;blog=20337637&#038;post=416&#038;subd=miguelissimo&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://miguelissimo.files.wordpress.com/2012/06/eye.png"><img class="alignright size-thumbnail wp-image-417" title="Eye" src="http://miguelissimo.files.wordpress.com/2012/06/eye.png?w=150&#038;h=112" alt="" width="150" height="112" /></a>I&#8217;m looking for a student to work with me in St Andrews for the next few years (fully funded). The topic is gaze-contingent displays. I&#8217;m looking for someone with a Computer Science background that has an interest in perception and visualization, and a big curiosity about human perception and what we can do to enhance it. Please, visit the <a title="PhD Studentship on Perceptual Gaze-contingent Displays at St Andrews" href="http://nacenta.com/prospective-students/phd-studentship-on-perceptual-gaze-contingent-displays-at-st-andrews/">studentship offer</a>, and send me an <a href="mailto://mans@st-andrews.ac.uk">e-mail</a> if you are interested! (deadlines for the studentship are soon, so don&#8217;t delay!!).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/miguelissimo.wordpress.com/416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/miguelissimo.wordpress.com/416/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nacenta.com&#038;blog=20337637&#038;post=416&#038;subd=miguelissimo&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nacenta.com/2012/07/02/phd-studentship-on-perceptual-gaze-contingent-displays-at-st-andrews-with-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/55c053bcd592535a641e9eb8e32e543a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manacenta</media:title>
		</media:content>

		<media:content url="http://miguelissimo.files.wordpress.com/2012/06/eye.png?w=150" medium="image">
			<media:title type="html">Eye</media:title>
		</media:content>
	</item>
		<item>
		<title>Friday 6th, event with the Library (Shawna&#8217;s visit)</title>
		<link>http://nacenta.com/2012/06/28/friday-6th-event-with-the-library-shawnas-visit/</link>
		<comments>http://nacenta.com/2012/06/28/friday-6th-event-with-the-library-shawnas-visit/#comments</comments>
		<pubDate>Thu, 28 Jun 2012 14:19:31 +0000</pubDate>
		<dc:creator>manacenta</dc:creator>
				<category><![CDATA[SACHI]]></category>
		<category><![CDATA[University of St Andrews]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://nacenta.com/?p=377</guid>
		<description><![CDATA[The title is: Interaction and Visualisation Technologies in the Library &#8211; Open Session, and the idea is to bring together the people at the university that might benefit from data and visualisation support in the library. We&#8217;ll have the privilege of listening to Shawna Sadler, who I have worked with in Calgary. This is the main [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nacenta.com&#038;blog=20337637&#038;post=377&#038;subd=miguelissimo&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-378" title="geo-vizroom" src="http://miguelissimo.files.wordpress.com/2012/06/geo-vizroom.png?w=300&#038;h=169" alt="" width="300" height="169" /></p>
<p>The title is: Interaction and Visualisation Technologies in the Library &#8211; Open Session, and the idea is to bring together the people at the university that might benefit from data and visualisation support in the library. We&#8217;ll have the privilege of listening to <a href="http://library.ucalgary.ca/profiles/shawna-sadler/">Shawna Sadler</a>, who I have worked with in Calgary.</p>
<p>This is<a href="http://bit.ly/MViMlG"> the main page of the event</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/miguelissimo.wordpress.com/377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/miguelissimo.wordpress.com/377/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nacenta.com&#038;blog=20337637&#038;post=377&#038;subd=miguelissimo&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nacenta.com/2012/06/28/friday-6th-event-with-the-library-shawnas-visit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/55c053bcd592535a641e9eb8e32e543a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manacenta</media:title>
		</media:content>

		<media:content url="http://miguelissimo.files.wordpress.com/2012/06/geo-vizroom.png?w=300" medium="image">
			<media:title type="html">geo-vizroom</media:title>
		</media:content>
	</item>
		<item>
		<title>Mathias Frisch Defence (VIVA) in Magdeburg</title>
		<link>http://nacenta.com/2012/06/28/mathias-frisch-defence-viva-in-magdeburg/</link>
		<comments>http://nacenta.com/2012/06/28/mathias-frisch-defence-viva-in-magdeburg/#comments</comments>
		<pubDate>Thu, 28 Jun 2012 13:58:40 +0000</pubDate>
		<dc:creator>manacenta</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nacenta.com/?p=368</guid>
		<description><![CDATA[This week I had the honor to attend the defence of Mathias Frisch, student of Raimund Dachselt at the Otto von Guericke University in Magdeburg (now moving to the new lab in Dresden). I was very happy to review such excellent work, (in a committee that includes Prof. Reiterer, from Konstanz) but also to take [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nacenta.com&#038;blog=20337637&#038;post=368&#038;subd=miguelissimo&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>This week I had the honor to attend the defence of Mathias Frisch, student of <a href="http://isgwww.cs.uni-magdeburg.de/~dachselt/">Raimund Dachselt</a> at the<a href="http://www.uni-magdeburg.de/en/home-p-1.html"> Otto von Guericke University</a> in Magdeburg (now moving to <a href="http://mt.inf.tu-dresden.de/">the new lab in Dresden</a>). I was very happy to review <a href="http://www.informatik.uni-trier.de/~ley/db/indices/a-tree/f/Frisch:Mathias.html">such excellent work</a>, (in a committee that includes Prof. Reiterer, from Konstanz) but also to take part in the traditions of doctoral graduation. I think that it is very valuable that a doctoral graduation is approached as a festivity, and loaded with symbols of what it means to be a scholar. These include the new doctor having to wear a very heavy chain (that represents the loads awaiting in his future career),</p>
<p><a href="http://miguelissimo.files.wordpress.com/2012/06/mathias.png"><img class="size-medium wp-image-369 alignnone" title="Mathias" src="http://miguelissimo.files.wordpress.com/2012/06/mathias.png?w=144&#038;h=300" alt="" width="144" height="300" /></a></p>
<p>wearing a hat representing the knowledge of the candidate (physically and literally),</p>
<p><a href="http://miguelissimo.files.wordpress.com/2012/06/hat.png"><img class="alignnone size-full wp-image-370" title="hat" src="http://miguelissimo.files.wordpress.com/2012/06/hat.png?w=450&#038;h=348" alt="" width="450" height="348" /></a></p>
<p>being taken on a pageant through the city, escorted by a troupe of people in medieval outfits (I guess to let the town folk know that there is a new doctor around),</p>
<p><a href="http://miguelissimo.files.wordpress.com/2012/06/pageant.png"><img class="alignnone size-full wp-image-371" title="pageant" src="http://miguelissimo.files.wordpress.com/2012/06/pageant.png?w=450&#038;h=337" alt="" width="450" height="337" /></a></p>
<p>having to drink an &#8220;unusual&#8221; concoction (in this case tomato juice + coffee + salt and pepper),</p>
<p><a href="http://miguelissimo.files.wordpress.com/2012/06/concoction.png"><img class="alignnone size-full wp-image-372" title="concoction" src="http://miguelissimo.files.wordpress.com/2012/06/concoction.png?w=450&#038;h=332" alt="" width="450" height="332" /></a></p>
<p>as well as later on having to go through the &#8220;real exam&#8221;, in which the supervisor has to show knowledge and commitment for the candidate in multiple odd ways.</p>
<p><a href="http://miguelissimo.files.wordpress.com/2012/06/celebration.png"><img class="alignnone size-full wp-image-373" title="Celebration" src="http://miguelissimo.files.wordpress.com/2012/06/celebration.png?w=450&#038;h=373" alt="" width="450" height="373" /></a></p>
<p>In any case, it was a wonderful day for me, full of good HCI, fun and food. Congratulations Mathias!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/miguelissimo.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/miguelissimo.wordpress.com/368/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nacenta.com&#038;blog=20337637&#038;post=368&#038;subd=miguelissimo&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nacenta.com/2012/06/28/mathias-frisch-defence-viva-in-magdeburg/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/55c053bcd592535a641e9eb8e32e543a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manacenta</media:title>
		</media:content>

		<media:content url="http://miguelissimo.files.wordpress.com/2012/06/mathias.png?w=144" medium="image">
			<media:title type="html">Mathias</media:title>
		</media:content>

		<media:content url="http://miguelissimo.files.wordpress.com/2012/06/hat.png" medium="image">
			<media:title type="html">hat</media:title>
		</media:content>

		<media:content url="http://miguelissimo.files.wordpress.com/2012/06/pageant.png" medium="image">
			<media:title type="html">pageant</media:title>
		</media:content>

		<media:content url="http://miguelissimo.files.wordpress.com/2012/06/concoction.png" medium="image">
			<media:title type="html">concoction</media:title>
		</media:content>

		<media:content url="http://miguelissimo.files.wordpress.com/2012/06/celebration.png" medium="image">
			<media:title type="html">Celebration</media:title>
		</media:content>
	</item>
		<item>
		<title>New Alberta Contemporaries Exhibition Showcases work by Lindsay MacDonald (+ J. Brosz + S. Carpendale + me)</title>
		<link>http://nacenta.com/2012/06/20/new-alberta-contemporaries-exhibition-showcases-work-by-lindsay-macdonald-j-brosz-me/</link>
		<comments>http://nacenta.com/2012/06/20/new-alberta-contemporaries-exhibition-showcases-work-by-lindsay-macdonald-j-brosz-me/#comments</comments>
		<pubDate>Wed, 20 Jun 2012 13:12:49 +0000</pubDate>
		<dc:creator>manacenta</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[students]]></category>
		<category><![CDATA[Elevator]]></category>
		<category><![CDATA[Gaze-tracking]]></category>
		<category><![CDATA[Interactive Art]]></category>
		<category><![CDATA[Liminal Spaces]]></category>
		<category><![CDATA[Lindsay MacDonald]]></category>
		<category><![CDATA[New Media Art]]></category>

		<guid isPermaLink="false">http://nacenta.com/?p=362</guid>
		<description><![CDATA[The new Alberta Contemporaries is the inaugural exhibition of the Esker Foundation, in Calgary. The Esker foundation is the largest privately funded, non-commercial art gallery in Calgary, and Lindsay MacDonald -who I had the pleasure of working with- got invited to exhibit our collaborative piece (with John Brosz) which features an elevator that knows where you [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nacenta.com&#038;blog=20337637&#038;post=362&#038;subd=miguelissimo&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><img src="http://i4.cmail2.com/ti/r/1C/EB9/066/091427/banner.jpg" alt="The New Alberta Contemporaries 06.15 to 08.29.2012" width="570" /></p>
<p><a title="Exhibitions at the Esker foundation." href="http://eskerfoundation.com/exhibitions.html">The new Alberta Contemporaries</a> is the inaugural exhibition of the <a title="Esker Foudation." href="http://eskerfoundation.com/index.html">Esker Foundation</a>, in Calgary. The Esker foundation is the largest privately funded, non-commercial art gallery in Calgary, and <a title="Lindsay MacDonald's webspace" href="http://www.lindsaymacdonald.net/">Lindsay MacDonald</a> -who I had the pleasure of working with- got invited to exhibit our collaborative piece (with John Brosz) which features<a title="A delicate Agreement" href="http://nacenta.com/2011/04/12/a-piece-of-art-that-knows-where-youre-looking/"> an elevator that knows where you are looking at</a>. This means that besides the <a href="http://nacenta.com/2011/06/08/a-delicate-agreement-gets-an-alberta-digital-award/">prize</a> that she already got, she also got to give an artist talk at an amazing venue.</p>
<p>I was not able to attend the inauguration party, but I am incredibly happy to see Lindsay get a little bit of the attention that she deserves. I am really happy to have been able to collaborate with such talented people.</p>
<p>If you happen to be in Calgary, you might want to check the exhibition; it&#8217;s there until August 29th and it is free and open to the public.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/miguelissimo.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/miguelissimo.wordpress.com/362/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nacenta.com&#038;blog=20337637&#038;post=362&#038;subd=miguelissimo&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nacenta.com/2012/06/20/new-alberta-contemporaries-exhibition-showcases-work-by-lindsay-macdonald-j-brosz-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/55c053bcd592535a641e9eb8e32e543a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manacenta</media:title>
		</media:content>

		<media:content url="http://i4.cmail2.com/ti/r/1C/EB9/066/091427/banner.jpg" medium="image">
			<media:title type="html">The New Alberta Contemporaries 06.15 to 08.29.2012</media:title>
		</media:content>
	</item>
		<item>
		<title>Launch of the Centre for Geoinformatics at the University of St Andrews, 27 June 2012</title>
		<link>http://nacenta.com/2012/05/27/launch-of-the-centre-for-geoinformatics-at-the-university-of-st-andrews-27-june-2012/</link>
		<comments>http://nacenta.com/2012/05/27/launch-of-the-centre-for-geoinformatics-at-the-university-of-st-andrews-27-june-2012/#comments</comments>
		<pubDate>Sun, 27 May 2012 15:58:03 +0000</pubDate>
		<dc:creator>manacenta</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nacenta.com/?p=359</guid>
		<description><![CDATA[Our great colleagues at the Centre for Geoinformatics at the University of St Andrews are launching their research institute in style, with a day-workshop with a distinctively multi-disciplinary flavour. It is a free one-day event with international speakers.  See all the details here, and let them know that you want to come here before June 8th. [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nacenta.com&#038;blog=20337637&#038;post=359&#038;subd=miguelissimo&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://miguelissimo.files.wordpress.com/2012/05/capture.png"><img class="alignleft size-full wp-image-360" title="Capture" src="http://miguelissimo.files.wordpress.com/2012/05/capture.png?w=450" alt=""   /></a></p>
<p>Our great colleagues at the <a title="Geoinformatics at St Andrews" href="http://www.st-andrews.ac.uk/geoinformatics/" target="_blank">Centre for Geoinformatics</a> at the University of St Andrews are launching their research institute in style, with a day-workshop with a distinctively multi-disciplinary flavour. It is a free one-day event with international speakers.  See all the details <a title="Geoinformatics launch workshop" href="http://www.st-andrews.ac.uk/geoinformatics/wp-content/uploads/GeoinformaticsWorkshop_Leaflet.pdf" target="_blank">here</a>, and let them know that you want to come <a href="mailto://geoinformatics@st-andrews.ac.uk" target="_blank">here</a> before June 8th.</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/miguelissimo.wordpress.com/359/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/miguelissimo.wordpress.com/359/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nacenta.com&#038;blog=20337637&#038;post=359&#038;subd=miguelissimo&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nacenta.com/2012/05/27/launch-of-the-centre-for-geoinformatics-at-the-university-of-st-andrews-27-june-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/55c053bcd592535a641e9eb8e32e543a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manacenta</media:title>
		</media:content>

		<media:content url="http://miguelissimo.files.wordpress.com/2012/05/capture.png" medium="image">
			<media:title type="html">Capture</media:title>
		</media:content>
	</item>
		<item>
		<title>FatFonts now available in .ttf and .otf.</title>
		<link>http://nacenta.com/2012/05/10/fatfonts-now-available-in-ttf-and-otf/</link>
		<comments>http://nacenta.com/2012/05/10/fatfonts-now-available-in-ttf-and-otf/#comments</comments>
		<pubDate>Thu, 10 May 2012 13:40:51 +0000</pubDate>
		<dc:creator>manacenta</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[FatFonts]]></category>
		<category><![CDATA[otf]]></category>
		<category><![CDATA[ttf]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://nacenta.com/?p=354</guid>
		<description><![CDATA[FatFonts.org now contains a collection of downloadable FatFonts with instructions! This means that you can get them working, for example, in your Word, Excel, and Photoshop documents.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nacenta.com&#038;blog=20337637&#038;post=354&#038;subd=miguelissimo&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a title="The main FatFonts website" href="http://fatfonts.org" target="_blank">FatFonts.org</a> now contains a collection of downloadable FatFonts with instructions!</p>
<p>This means that you can get them working, for example, in your Word, Excel, and Photoshop documents.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/miguelissimo.wordpress.com/354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/miguelissimo.wordpress.com/354/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nacenta.com&#038;blog=20337637&#038;post=354&#038;subd=miguelissimo&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nacenta.com/2012/05/10/fatfonts-now-available-in-ttf-and-otf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/55c053bcd592535a641e9eb8e32e543a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manacenta</media:title>
		</media:content>
	</item>
	</channel>
</rss>
