<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2196143045740676662</id><updated>2012-02-16T13:10:03.908+01:00</updated><category term='interface'/><category term='dragdrop'/><category term='postgresql'/><category term='excel'/><category term='introduction'/><category term='jdbc'/><category term='javascript'/><category term='svg'/><category term='java'/><category term='ajax'/><category term='proximity matrix'/><category term='graphics'/><category term='cardsorting'/><category term='performance'/><category term='tomcat'/><category term='netsorting'/><category term='statistics'/><category term='pca'/><category term='kmeans'/><title type='text'>Netsorting</title><subtitle type='html'>news and infos about &lt;a href="http://www.netsorting.com"&gt;netsorting&lt;/a&gt;, the &lt;a href="http://www.cardsorting.info/cardsorting/index.html"&gt;online card sorting tool&lt;/a&gt;</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://netsorting.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2196143045740676662/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://netsorting.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Stefano Bussolon</name><uri>http://www.blogger.com/profile/04059841461842016579</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp3.blogger.com/_IESy7EAzurU/SFKbd5fc-BI/AAAAAAAAAAM/FOoNOr877hY/S220/stefano_2007_10.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2196143045740676662.post-8732343096294695217</id><published>2008-10-29T17:44:00.000+01:00</published><updated>2008-10-29T18:09:52.331+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='performance'/><category scheme='http://www.blogger.com/atom/ns#' term='java'/><category scheme='http://www.blogger.com/atom/ns#' term='postgresql'/><category scheme='http://www.blogger.com/atom/ns#' term='jdbc'/><title type='text'>PreparedStatement performance improvement</title><content type='html'>Sometimes, when saving the results of a cardsorting, Netsorting seems to slow down dramatically. The application has to save tens of records on the database, and the problem could be related to the performances of this operation.&lt;br /&gt;&lt;br /&gt;I therefore decided to implement a PreparedStatement version of the INSERT.&lt;br /&gt;&lt;br /&gt;Before changing the call, however, I decide to test the difference in the performances.&lt;br /&gt;&lt;br /&gt;I compared 3 versions of the database call.&lt;br /&gt;&lt;br /&gt;The first was the old one, where statement.execute (sql) was used.&lt;br /&gt;The second method used a PreparedStatement and the PreparedStatement.execute() call.&lt;br /&gt;The third version used the same PreparedStatement, but using the bash version.&lt;br /&gt;&lt;br /&gt;I tested it inserting, for each method, 1000 rows. The results are the follows:&lt;br /&gt;statement.execute (sql) * 1000: 837 millisec&lt;br /&gt;PreparedStatement.execute() * 1000: 625 millisec&lt;br /&gt;PreparedStatement.addBatch() * 1000: 186 millisec&lt;br /&gt;&lt;br /&gt;The performance gain is quite impressive, and I therefore decided to implement it.&lt;br /&gt;&lt;br /&gt;The code example of the third version&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;String psql = "INSERT INTO CSANSWER VALUES (nextval('CSANSWER_ID'),?,?,?,?,?);";&lt;br /&gt;csaps = connection.prepareStatement(psql);&lt;br /&gt;....&lt;br /&gt;connection.setAutoCommit(false);&lt;br /&gt;for () {&lt;br /&gt;     csaps.setInt(1, getTestId());&lt;br /&gt;     csaps.setInt(2, getQuestionnaireId());   &lt;br /&gt;     csaps.setInt(3, getId());&lt;br /&gt;     csaps.setInt(4, itemid);&lt;br /&gt;     csaps.setInt(5, groupid);&lt;br /&gt;     csaps.addBatch();&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;csaps.executeBatch();&lt;br /&gt;connection.commit();&lt;br /&gt;connection.setAutoCommit(true);&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;Useful links:&lt;br /&gt;&lt;a href="http://java.sun.com/j2se/1.3/docs/guide/jdbc/spec2/jdbc2.1.frame6.html"&gt;Batch Updates&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.roseindia.net/jdbc/jdbc-mysql/PreparedStatementBatchUpdate.shtml"&gt;Prepared Statement With Batch Update&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2196143045740676662-8732343096294695217?l=netsorting.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://netsorting.blogspot.com/feeds/8732343096294695217/comments/default' title='Commenti sul post'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2196143045740676662&amp;postID=8732343096294695217' title='0 Commenti'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2196143045740676662/posts/default/8732343096294695217'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2196143045740676662/posts/default/8732343096294695217'/><link rel='alternate' type='text/html' href='http://netsorting.blogspot.com/2008/10/preparedstatement-performance.html' title='PreparedStatement performance improvement'/><author><name>Stefano Bussolon</name><uri>http://www.blogger.com/profile/04059841461842016579</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp3.blogger.com/_IESy7EAzurU/SFKbd5fc-BI/AAAAAAAAAAM/FOoNOr877hY/S220/stefano_2007_10.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2196143045740676662.post-8314638192365257503</id><published>2008-07-24T14:29:00.000+02:00</published><updated>2008-10-29T18:14:19.719+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='performance'/><category scheme='http://www.blogger.com/atom/ns#' term='java'/><category scheme='http://www.blogger.com/atom/ns#' term='tomcat'/><title type='text'>tomcat or httpd?</title><content type='html'>java is slow, c++ is fast.&lt;br /&gt;Tomcat is slow, httpd is fast.&lt;br /&gt;Right?&lt;br /&gt;Probably not.&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;First off, I'm bias in favor of Tomcat. Based on these results, I can state with confidence Tomcat 5.5.4 has made great strides since Tomcat 3.3. Tomcat 5.5.4 is faster, more reliable and more efficient than previous releases. For those who wonder “can tomcat handle static files?” My opinion is yes. If you only have a single server co-located at an ISP and can't afford a dedicated image server, Tomcat will work just fine. For sites that need high performance/high availability, the&lt;br /&gt;best option is to setup dedicated Apache2 for the static files. This setup allows tomcat to focus on generating dynamic content, instead of clogging the network IO. Hopefully these results help dispell the myth that Tomcat 5.5.4 can't handle static files efficiently.&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;a href="http://tomcat.apache.org/articles/benchmark_summary.pdf "&gt;tomcat benchmark summary&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;Running the test on a quiet network five times, with the ab commands running in a different order to balance out any caching issues, I got the following:&lt;br /&gt;&lt;br /&gt;Direct access via httpd - 300 per second&lt;br /&gt;Direct access via Tomcat - 483 per second&lt;br /&gt;Access via both servers connected by jk - 307 per second&lt;br /&gt;Access via both servers connected by proxy - 222 per second&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;a href="http://www.wellho.net/mouth/631_Apache-httpd-to-Tomcat-jk-v-proxy.html"&gt;www.wellho.net&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;Apache httpd is really only appropriate with odd configurations&lt;br /&gt;including load balancing, multiple apps in separate JVMs, other needs&lt;br /&gt;(such as PHP support, or some module only available in Apache), or when&lt;br /&gt;Apache httpd is already present and nobody wants to get rid of it.&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;a href="http://mail-archives.apache.org/mod_mbox/tomcat-users/200806.mbox/%3C484EE617.3010504@christopherschultz.net%3E"&gt;Christopher Schultz&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;see also &lt;a href="http://books.google.com/books?id=vJttHyVF0SUC&amp;pg=PA150&amp;lpg=PA150&amp;dq=tomcat+httpd+benchmark&amp;source=web&amp;ots=i_4yASqPj1&amp;sig=gMLJBOSvWpQrOcPRL9ck5s2ZfVY&amp;hl=en&amp;sa=X&amp;oi=book_result&amp;resnum=4&amp;ct=result"&gt;Tomcat: the definitive guide&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2196143045740676662-8314638192365257503?l=netsorting.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://netsorting.blogspot.com/feeds/8314638192365257503/comments/default' title='Commenti sul post'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2196143045740676662&amp;postID=8314638192365257503' title='0 Commenti'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2196143045740676662/posts/default/8314638192365257503'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2196143045740676662/posts/default/8314638192365257503'/><link rel='alternate' type='text/html' href='http://netsorting.blogspot.com/2008/07/tomcat-or-httpd.html' title='tomcat or httpd?'/><author><name>Stefano Bussolon</name><uri>http://www.blogger.com/profile/04059841461842016579</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp3.blogger.com/_IESy7EAzurU/SFKbd5fc-BI/AAAAAAAAAAM/FOoNOr877hY/S220/stefano_2007_10.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2196143045740676662.post-8803636043313782863</id><published>2008-05-27T16:18:00.000+02:00</published><updated>2008-10-29T18:12:39.770+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='statistics'/><category scheme='http://www.blogger.com/atom/ns#' term='netsorting'/><category scheme='http://www.blogger.com/atom/ns#' term='excel'/><category scheme='http://www.blogger.com/atom/ns#' term='proximity matrix'/><category scheme='http://www.blogger.com/atom/ns#' term='cardsorting'/><title type='text'>Proximity matrix as excel file</title><content type='html'>Though Netsorting has some build in analysis tools, the editor may prefer to analyze the data with it's own statistical tools. She can therefore download the proximity matrix as an excel file.&lt;br /&gt;&lt;br /&gt;I've just published on google docs an example of the &lt;a href="http://spreadsheets.google.com/pub?key=ptNp5QkavhVbLxrt2Og2BTg&amp;amp;output=html"&gt;proximity matrix&lt;/a&gt; of the card sorting.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://s281.photobucket.com/albums/kk233/bussolon/netsorting/?action=view&amp;current=excel_proximity_34_snap.png" target="_blank"&gt;&lt;img src="http://i281.photobucket.com/albums/kk233/bussolon/netsorting/excel_proximity_34_snap.png" border="0" alt="A proximity matrix in google docs"&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2196143045740676662-8803636043313782863?l=netsorting.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://netsorting.blogspot.com/feeds/8803636043313782863/comments/default' title='Commenti sul post'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2196143045740676662&amp;postID=8803636043313782863' title='0 Commenti'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2196143045740676662/posts/default/8803636043313782863'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2196143045740676662/posts/default/8803636043313782863'/><link rel='alternate' type='text/html' href='http://netsorting.blogspot.com/2008/05/proximity-matrix-as-excel-file.html' title='Proximity matrix as excel file'/><author><name>Stefano Bussolon</name><uri>http://www.blogger.com/profile/04059841461842016579</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp3.blogger.com/_IESy7EAzurU/SFKbd5fc-BI/AAAAAAAAAAM/FOoNOr877hY/S220/stefano_2007_10.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://i281.photobucket.com/albums/kk233/bussolon/netsorting/th_excel_proximity_34_snap.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2196143045740676662.post-6903568846162235491</id><published>2008-05-27T13:33:00.000+02:00</published><updated>2008-05-27T14:04:48.717+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='statistics'/><category scheme='http://www.blogger.com/atom/ns#' term='svg'/><category scheme='http://www.blogger.com/atom/ns#' term='netsorting'/><category scheme='http://www.blogger.com/atom/ns#' term='graphics'/><category scheme='http://www.blogger.com/atom/ns#' term='cardsorting'/><category scheme='http://www.blogger.com/atom/ns#' term='pca'/><category scheme='http://www.blogger.com/atom/ns#' term='kmeans'/><title type='text'>download graphs as svg</title><content type='html'>Netsorting uses SVG (&lt;a href="http://www.w3.org/Graphics/SVG/"&gt;Scalable Vector Graphics&lt;/a&gt;) to render the graphics of the cluster analysis of card sorting.&lt;br /&gt;&lt;br /&gt;Now you can download the graphical representation of the &lt;a href="http://en.wikipedia.org/wiki/K-means_algorithm"&gt;kmeans&lt;/a&gt; analysis on the &lt;a href="http://en.wikipedia.org/wiki/Principal_components_analysis"&gt;principal component analysis&lt;/a&gt; of the proximity matrix of the card sorting as a svg file.&lt;br /&gt;&lt;br /&gt;Using &lt;a href="http://www.inkscape.org/"&gt;Inkscape&lt;/a&gt;, a free open source vector graphics editor, you can edit the graph and export it as pdf, ps, png. Inkscape is available for Linux, Windows and Mac Os.&lt;br /&gt;&lt;br /&gt;Here is an example of the clusters generated from the card sorting of the semantic domain of coffee (in Italian).&lt;br /&gt;&lt;br /&gt;&lt;object codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" id="-627054948" name="-627054948" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" align="middle" height="500" width="450"&gt; &lt;param name="movie" value="http://documents.scribd.com/ScribdViewer.swf?document_id=3115658&amp;access_key=key-ltfyoszxtabcl9th6nt&amp;page=1&amp;version=1"&gt; &lt;param name="quality" value="high"&gt; &lt;param name="play" value="true"&gt; &lt;param name="loop" value="true"&gt; &lt;param name="scale" value="showall"&gt; &lt;param name="wmode" value="opaque"&gt; &lt;param name="devicefont" value="false"&gt; &lt;param name="bgcolor" value="#ffffff"&gt; &lt;param name="menu" value="true"&gt; &lt;param name="allowFullScreen" value="true"&gt; &lt;param name="allowScriptAccess" value="always"&gt; &lt;param name="salign" value=""&gt; &lt;embed src="http://documents.scribd.com/ScribdViewer.swf?document_id=3115658&amp;access_key=key-ltfyoszxtabcl9th6nt&amp;page=1&amp;version=1" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" play="true" loop="true" scale="showall" wmode="opaque" devicefont="false" bgcolor="#ffffff" name="-627054948_object" menu="true" allowfullscreen="true" allowscriptaccess="always" salign="" type="application/x-shockwave-flash" align="middle" height="500" width="450"&gt;&lt;/embed&gt; &lt;/object&gt;&lt;div style="font-size:10px;text-align:center;width:450"&gt;&lt;a href="http://www.scribd.com/doc/3115658/kmeans-card-sorting-caffe"&gt;kmeans card sorting caffé&lt;/a&gt; - &lt;a href="http://www.scribd.com/upload"&gt;Upload a doc&lt;/a&gt;&lt;/div&gt;&lt;div style="display:none"&gt; Read this doc on Scribd: &lt;a href="http://www.scribd.com/doc/3115658/kmeans-card-sorting-caffe"&gt;kmeans card sorting caffé&lt;/a&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2196143045740676662-6903568846162235491?l=netsorting.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://netsorting.blogspot.com/feeds/6903568846162235491/comments/default' title='Commenti sul post'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2196143045740676662&amp;postID=6903568846162235491' title='0 Commenti'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2196143045740676662/posts/default/6903568846162235491'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2196143045740676662/posts/default/6903568846162235491'/><link rel='alternate' type='text/html' href='http://netsorting.blogspot.com/2008/05/download-graphs-as-svg.html' title='download graphs as svg'/><author><name>Stefano Bussolon</name><uri>http://www.blogger.com/profile/04059841461842016579</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp3.blogger.com/_IESy7EAzurU/SFKbd5fc-BI/AAAAAAAAAAM/FOoNOr877hY/S220/stefano_2007_10.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2196143045740676662.post-4806697945134114786</id><published>2008-05-25T18:13:00.000+02:00</published><updated>2008-05-25T18:32:09.196+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='netsorting'/><category scheme='http://www.blogger.com/atom/ns#' term='ajax'/><category scheme='http://www.blogger.com/atom/ns#' term='interface'/><category scheme='http://www.blogger.com/atom/ns#' term='dragdrop'/><category scheme='http://www.blogger.com/atom/ns#' term='cardsorting'/><title type='text'>Working on the drag and drop version</title><content type='html'>In these days I'm working to implement the drag and drop version of the card sorting user interface.&lt;br /&gt;I've made a first try some months ago, but the results weren't satisfactory.&lt;br /&gt;Now I'm using the beautiful &lt;a href="http://developer.yahoo.com/yui/"&gt;YUI&lt;/a&gt; as a framework for JavaScript and AJAX.&lt;br /&gt;&lt;br /&gt;Thanks to it's &lt;a href="http://developer.yahoo.com/yui/dragdrop/"&gt;Drag &amp; Drop Utility&lt;/a&gt; a stylish and usable drag and drop interface seems easy to implement.&lt;br /&gt;&lt;br /&gt;I'll update this post when the new interface will be terminated.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2196143045740676662-4806697945134114786?l=netsorting.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://netsorting.blogspot.com/feeds/4806697945134114786/comments/default' title='Commenti sul post'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2196143045740676662&amp;postID=4806697945134114786' title='0 Commenti'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2196143045740676662/posts/default/4806697945134114786'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2196143045740676662/posts/default/4806697945134114786'/><link rel='alternate' type='text/html' href='http://netsorting.blogspot.com/2008/05/working-on-drag-and-drop-version.html' title='Working on the drag and drop version'/><author><name>Stefano Bussolon</name><uri>http://www.blogger.com/profile/04059841461842016579</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp3.blogger.com/_IESy7EAzurU/SFKbd5fc-BI/AAAAAAAAAAM/FOoNOr877hY/S220/stefano_2007_10.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2196143045740676662.post-1768397065307275876</id><published>2008-05-25T18:09:00.000+02:00</published><updated>2008-05-25T18:11:56.064+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='introduction'/><title type='text'>Welcome</title><content type='html'>This is the blog of Netsorting.&lt;br /&gt;Here I will post some news concerning the application, it's development, it's new features and so on.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2196143045740676662-1768397065307275876?l=netsorting.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://netsorting.blogspot.com/feeds/1768397065307275876/comments/default' title='Commenti sul post'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2196143045740676662&amp;postID=1768397065307275876' title='0 Commenti'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2196143045740676662/posts/default/1768397065307275876'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2196143045740676662/posts/default/1768397065307275876'/><link rel='alternate' type='text/html' href='http://netsorting.blogspot.com/2008/05/welcome.html' title='Welcome'/><author><name>Stefano Bussolon</name><uri>http://www.blogger.com/profile/04059841461842016579</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp3.blogger.com/_IESy7EAzurU/SFKbd5fc-BI/AAAAAAAAAAM/FOoNOr877hY/S220/stefano_2007_10.jpg'/></author><thr:total>0</thr:total></entry></feed>
