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

<channel>
	<title>ulno.net</title>
	<atom:link href="http://ulno.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://ulno.net</link>
	<description>Ulrich Norbisrath&#039;s Net</description>
	<lastBuildDate>Wed, 15 Feb 2012 16:58:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Research group digest</title>
		<link>http://ulno.net/2011/12/18/research-group-digest-34/</link>
		<comments>http://ulno.net/2011/12/18/research-group-digest-34/#comments</comments>
		<pubDate>Sun, 18 Dec 2011 03:01:00 +0000</pubDate>
		<dc:creator>ulno</dc:creator>
				<category><![CDATA[group-digest]]></category>

		<guid isPermaLink="false">http://ulno.net/2011/12/18/research-group-digest-34/</guid>
		<description><![CDATA[Rolling your own watchdog for Qemu Sometimes there may arise a need to make your own watchdog for your virtual machine. The process itself is really a simple one, I will base this example on Intel&#8217;s 6300esb watchdog. Let&#8217;s first start by getting the latest source code for Qemu: git clone git://git.qemu.org/qemu.git &#38;&#38; cd qemu <a href='http://ulno.net/2011/12/18/research-group-digest-34/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<div class='wb_fb_top'><div style="float:right;"></div></div><div class="plus-one-wrap"><g:plusone size="small" href="http://ulno.net/2011/12/18/research-group-digest-34/"></g:plusone></div><ul class="scrd_digest">
<li><a href="http://mativait.blogspot.com/2011/12/rolling-your-own-watchdog-for-qemu.html" rel="external">Rolling your own watchdog for Qemu</a>
<div>Sometimes there may arise a need to make your own watchdog for your virtual machine. The process itself is really a simple one, I will base this example on Intel&#8217;s 6300esb watchdog.</p>
<p>Let&#8217;s first start by getting the latest source code for Qemu:</p>
<pre>git clone git://git.qemu.org/qemu.git &amp;&amp; cd qemu</pre>
<p>Now it is reasonable to switch to your own git branch in case you want to roll out some patches later on.</p>
<pre>git checkout -b custom-watchdog</pre>
<p>All of the existing watchdog sources are located at <span>hw</span> folder.</p>
<p>Make a copy of existing watchdog and include it in the build path.</p>
<pre><span><span>cp hw/wdt_i6300esb.c hw/wdt_custom_watchdog.c</span></span></pre>
<p>Now lets plug the new watchdog into the build process. For doing that we need to edit Makefile.objs and add a new line<br />hw-obj-$(CONFIG_PCI) += wdt_custom_watchdog.o</p>
<p>right after the<span> &quot;</span><span>hw-obj-$(CONFIG_PCI) += wdt_i6300esb.o&quot; </span><span>line</span><span>.</span></p>
<p>Next step is to dig into the code and start modifying the new and improved watchdog. For the sake of simplicity I will leave the core functionality unchanged. I will only change the important parts of the code to enable the registering the new watchdog with Qemu.<br />Replace every reference to i3600esb and alike with your version of the name. If you skip some of the code then there is a chance that custom watchdog will not behave as expected. Most of the tedious replacement is easily done with sed commands similar to this.</p>
<pre><span><span>sed -e &#039;s/i6300esb/custom_watchdog/g&#039; hw/wdt_i6300esb.c &gt; hw/wdt_custom_watchdog.c</span></span></pre>
<p>Now open up the code of the custom watchdog and fill in it&#8217;s name and description with your own such as:</p>
<p>
<pre><span><span>.wdt_description = "Super Custom Watchdog"</span></span></pre>
<p>Recompile now and see if the new watchdog is visible and loading with Qemu.</p>
<p>
<pre>
<div><span>qemu (custom-watchdog)$ ./i386-softmmu/qemu-system-i386 -watchdog ?</span></div>


<div><span><span> </span><span>custom_watchdog<span> </span>Super Custom Watchdog</span></span></div>


<div><span><span> </span>i6300esb<span> </span>Intel 6300ESB</span></div>


<div><span><span> </span>ib700<span> </span>iBASE 700</span></div>

</pre>
<p>As it turns out, the new watchdog is visible for Qemu.</p>
<p>Let&#8217;s run some VM with our new watchdog:</p>
<pre><span><span>./i386-softmmu/qemu-system-i386 -watchdog custom_watchdog ~/debian.qcow2 </span></span></pre>
<p>If everything goes well and the virtual machine comes up without any errors regarding the watchdog, the next step would be to replace some of the old variable names in the source code with more appropriate ones, otherwise the new watchdog is ready for further customization.</p>
<p><a href="http://ut.ee/~mativait/wdt_custom_watchdog.c">Source code here.</a></p>
<p>Software versions used:</p>
<ul>
<li>Qemu sources for  version 1.0</li>
</ul>
<div><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/8977635182462077435-5514287642389526402?l=mativait.blogspot.com" alt="" /></div>
</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ulno.net/2011/12/18/research-group-digest-34/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Research group digest</title>
		<link>http://ulno.net/2011/12/15/research-group-digest-33/</link>
		<comments>http://ulno.net/2011/12/15/research-group-digest-33/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 03:06:49 +0000</pubDate>
		<dc:creator>ulno</dc:creator>
				<category><![CDATA[group-digest]]></category>

		<guid isPermaLink="false">http://ulno.net/2011/12/15/research-group-digest-33/</guid>
		<description><![CDATA[How to do a search report? The Search Logger 2.0 usability study Summary The background The aim of the Search Task Repository project is to let the users/Internet searchers publish their annotated search logs and make these logs searchable. In order to log ones search activity and behaviour, we have developed a special tool called <a href='http://ulno.net/2011/12/15/research-group-digest-33/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<div class='wb_fb_top'><div style="float:right;"></div></div><div class="plus-one-wrap"><g:plusone size="small" href="http://ulno.net/2011/12/15/research-group-digest-33/"></g:plusone></div><ul class="scrd_digest">
<li><a href="http://searchtaskrepo.blogspot.com/2011/12/how-to-do-search-report-search-logger.html" rel="external">How to do a search report? The Search Logger 2.0 usability study</a>
<div><b></b>
<div><b><b><span>Summary</span></b></b></div>
<div><b><b><br /></b></b></div>
<div><b><b>The background</b></b></div>
<div>The aim of the Search Task Repository project is to let the users/Internet searchers publish their annotated search logs and make these logs searchable. In order to log ones search activity and behaviour, we have developed a special tool called The Search Logger 2.0. Here &#8220;2.0&#8243; means that a conceptually similar but technically very different logger existed before I started with this project and was developed by Hannu Kikkas. The current version is platform-independent and uses a proxy to modify every web page served so that it could be logged by our dedicated HTTP server. The Search Task Repository is currently in development and will be one of the main topics of my Master thesis.</div>
<div><b><br /></b></div>
<div><b>The goal</b></div>
<div>We wanted to put ourselves in the end user&#8217;s shoes and evaluate the usability of the current Search Logger 2.0. To do that I conducted a number of exploratory search tasks and used our software to log the web activity. In essence, I sought an answer to the question &#8220;How to do a search report?&#8221;. The other goal was to find, document and fix bugs in the existing logging and reporting software and come up with ideas about new features.</div>
<div><b><br /></b></div>
<div><b>The results</b></div>
<div>The existing solution was tested on six exploratory search tasks such as finding a foreign university on a budget where to study machine engineering, finding 5 clever Christmas present ideas for under 10 euros per item, finding a ballroom dance school in Tartu area, etc. These tasks and how they worked out on our current software in more detail can be found on my blog. What is more, I made a short screencast for presentation purposes which is also linked to. During the semester I made some small tweaks to the Search Logger 2.0 but they are mostly bug-fixes and I do not consider them significant in this context. Here is a list of things that I learnt from the experiment:</div>
<div></div>
<ul>
<li>FIX: Amazon book preview does not work properly</li>
<li>FIX: Sidepane video image previews on YouTube are not displayed</li>
<li>FIX: Some random exceptions (documented) -&gt; possibly related to the pre- and post-forms</li>
<li>TODO: Users might want to take notes while searching</li>
<li>TODO: onSubmit and onClick events should be also logged</li>
<li>TODO: The logger is lacking a database integration</li>
<li>TODO: Search logger and repository integration (work in progress)</li>
<li>IDEA: Copy-paste detection and bookmarking would be nice to have because this help us detect web pages with relevant information</li>
</ul>
<div></div>
<div>Thank you for reading this blog and feel free to share your ideas!</div>
<div></div>
<div>Peeter</div>
<p>
<div><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/6354410659114914157-3041369450356581481?l=searchtaskrepo.blogspot.com" alt="" /></div>
</div>
</li>
<li><a href="http://searchtaskrepo.blogspot.com/2011/12/finding-ballroom-dance-school-in-tartu.html" rel="external">Finding a ballroom dance school in Tartu area</a>
<div>And here is the second search task conducted. What makes it special is its locality. Search tasks often get a different meaning when the physical location comes into play. And this is one key aspect to bear in mind for developing the repository of search tasks. A user who is searching for a dance school in Tartu might have little use of search logs describing the same thing for Stockholm. However, general search patterns (for instance some non-location key words typed in Google which lead to good results) might still be discovered from the logs.</p>
<p>Pre-form:
<div><a href="http://3.bp.blogspot.com/-p38O1t5PBMU/TuhnqAJ0V0I/AAAAAAAAACE/Nle_YTlpv4w/s1600/dance_pre.png"><img border="0" height="218" src="http://3.bp.blogspot.com/-p38O1t5PBMU/TuhnqAJ0V0I/AAAAAAAAACE/Nle_YTlpv4w/s320/dance_pre.png" width="320" /></a></div>
<p>Post-form:
<div><a href="http://4.bp.blogspot.com/-JcZd2uqyFmo/TuhntL7_JEI/AAAAAAAAACM/8AoVHPsBhZE/s1600/dance_post.png"><img border="0" height="179" src="http://4.bp.blogspot.com/-JcZd2uqyFmo/TuhntL7_JEI/AAAAAAAAACM/8AoVHPsBhZE/s320/dance_post.png" width="320" /></a></div>
<p>Technical logs:<br /><a href="http://www.mediafire.com/?86v2dlqhp0qlvl9">http://www.mediafire.com/?86v2dlqhp0qlvl9</a></p>
<p>In the next post I will wrap up why the things I did were useful for the project in general.</p>
<p>Peeter</p>
<p>P.S. This is not an advertisement but the best school quality/price-wise that I found was Revalia Tantsukool, appr. 4-5 EUR per hour. <img src='http://ulno.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />
<div><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/6354410659114914157-8206623779854483382?l=searchtaskrepo.blogspot.com" alt="" /></div>
</div>
</li>
<li><a href="http://searchtaskrepo.blogspot.com/2011/12/electronic-books-search-case-study.html" rel="external">Electronic books search case study</a>
<div>Hi!</p>
<p>In the meantime I have came up with two new exploratory search tasks. The first one will be covered in this post</p>
<p>Objective:
<div><a href="http://4.bp.blogspot.com/-4_97YKwlWxI/TuhkhofLa8I/AAAAAAAAAB0/pSoB8h4pBOc/s1600/books_pre.png"><img border="0" height="226" src="http://4.bp.blogspot.com/-4_97YKwlWxI/TuhkhofLa8I/AAAAAAAAAB0/pSoB8h4pBOc/s320/books_pre.png" width="320" /></a></div>
<p>Result:
<div><a href="http://4.bp.blogspot.com/-jqLR_0FoKkY/TuhklCIRSHI/AAAAAAAAAB8/G_BXLKplZRo/s1600/books_post.png"><img border="0" height="237" src="http://4.bp.blogspot.com/-jqLR_0FoKkY/TuhklCIRSHI/AAAAAAAAAB8/G_BXLKplZRo/s320/books_post.png" width="320" /></a></div>
<div>Answers:</div>
<div></div>
<div>Teach Yourself Electricity and Electronics [Paperback]</div>
<div>Make: Electronics (Learning by Discovery) [Paperback]</div>
<div>Tab Electronics Guide to Understanding Electricity and Electronics [Paperback]</div>
<div>Electronics Demystified [Paperback]</div>
<div>Electronics For Dummies [Paperback]</div>
<div>All New Electronics Self-Teaching Guide (Wiley Self Teaching Guides) [Paperback]</div>
<div></div>
<div>Search logger logs and crash logs:</div>
<div><a href="http://www.mediafire.com/?yzcyt02hqn9u5n6">http://www.mediafire.com/?yzcyt02hqn9u5n6</a></div>
<div></div>
<div>There is more to come&#8230;</div>
<div></div>
<div>Peeter</div>
<div><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/6354410659114914157-3686203593636295608?l=searchtaskrepo.blogspot.com" alt="" /></div>
</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ulno.net/2011/12/15/research-group-digest-33/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>t-mobile US in Linux with wvdial and HUAWEI USB Modem</title>
		<link>http://ulno.net/2011/12/01/t-mobile-us-in-linux-with-wvdial-and-huawei-usb-modem/</link>
		<comments>http://ulno.net/2011/12/01/t-mobile-us-in-linux-with-wvdial-and-huawei-usb-modem/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 17:42:01 +0000</pubDate>
		<dc:creator>ulno</dc:creator>
				<category><![CDATA[techblog]]></category>

		<guid isPermaLink="false">http://ulno.net/?p=889</guid>
		<description><![CDATA[Just got my day-pass option with t-mobile under Linux and my HUAWEI USB-Stick HDSPA-Modem (lists as Huawei Technologies Co., Ltd. E220 HSDPA Modem / E230/E270 HSDPA/HSUPA Modem in lsusb) running. Now I pay $2 per day, if I need Internet on that day (only 2G speed &#8211; I measured, I got something around 9-16Kbytes per <a href='http://ulno.net/2011/12/01/t-mobile-us-in-linux-with-wvdial-and-huawei-usb-modem/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<div class='wb_fb_top'><div style="float:right;"></div></div><div class="plus-one-wrap"><g:plusone size="small" href="http://ulno.net/2011/12/01/t-mobile-us-in-linux-with-wvdial-and-huawei-usb-modem/"></g:plusone></div><p>Just got my day-pass option with t-mobile under Linux and my HUAWEI USB-Stick HDSPA-Modem (lists as Huawei Technologies Co., Ltd. E220 HSDPA Modem / E230/E270 HSDPA/HSUPA Modem in lsusb) running. Now I pay $2 per day, if I need Internet on that day (only 2G speed &#8211; I measured, I got something around 9-16Kbytes per second &#8211; enough to even use Skype). For $3 a day you get even 200MB on 4G speed. Nice is that the connection is apart from the speed not capped. Pretty good prepaid optionin the US. I got a second SIM-card for this purpose (didn&#39;t want to lose my gold status on my &quot;normal&quot; prepaid card).</p>
<p>Basically all you need is the wvdial-package and the following in /etc/wvdial.conf:</p>
<pre>[Dialer Defaults]
Init1 = ATZ
Init2 = AT+CGDCONT=1,&quot;IP&quot;,&quot;epc.tmobile.com&quot;
Modem Type = USB Modem
Modem = /dev/ttyUSB0
Baud = 460800
Phone = *99#
Password = pass
Username = user
ISDN = 0
New PPPD = yes
Stupid Mode = yes
</pre>
<p>Make sure, that your modem is on /dev/ttyUSB0 (you might end up on a differnt USBn, if you have a built in modem). Took me a while to figure out how to specify the access point (epc.tmobile.com) and had to read this one out on my Android phone.</p>
<p>Just start wvdial now and it should connect.</p>
<p>You might also want to make sure that your user is in the dialout group or you will have to start wvdial as root.</p>
<p>You might also try as root before starting wvdial (not sure, if the storage module here interferes):</p>
<pre><span style="font-family:courier new,courier,monospace;">rmmod usb-storage</span>
<span style="font-family: courier new,courier,monospace;">rmmod option</span>
<span style="font-family:courier new,courier,monospace;">rmmod usbserial qcserial usb_wwan</span>
<span style="font-family:courier new,courier,monospace;">modprobe usbserial vendor=0x12d1 product=0x1003</span></pre>
<p>However, I think this is not necessary, if you select the right USB-port (I have a qualcomm modem built in).</p>
]]></content:encoded>
			<wfw:commentRss>http://ulno.net/2011/12/01/t-mobile-us-in-linux-with-wvdial-and-huawei-usb-modem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Research group digest</title>
		<link>http://ulno.net/2011/12/01/research-group-digest-32/</link>
		<comments>http://ulno.net/2011/12/01/research-group-digest-32/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 03:07:19 +0000</pubDate>
		<dc:creator>ulno</dc:creator>
				<category><![CDATA[group-digest]]></category>

		<guid isPermaLink="false">http://ulno.net/2011/12/01/research-group-digest-32/</guid>
		<description><![CDATA[Two new search tasks Hello all, I have two new exploratory search tasks with complete search logger data to report. The first one is seasonal: finding 5 clever Christmas present ideas for under 10 euros per item. Target is unfixed but you can assume it is a lady. The second: listing 10 most common requirements <a href='http://ulno.net/2011/12/01/research-group-digest-32/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<div class='wb_fb_top'><div style="float:right;"></div></div><div class="plus-one-wrap"><g:plusone size="small" href="http://ulno.net/2011/12/01/research-group-digest-32/"></g:plusone></div><ul class="scrd_digest">
<li><a href="http://searchtaskrepo.blogspot.com/2011/11/hello-all-i-have-two-new-exploratory.html" rel="external">Two new search tasks</a>
<div>Hello all,</p>
<p>I have two new exploratory search tasks with complete search logger data to report.</p>
<p>The first one is seasonal: finding 5 clever Christmas present ideas for under 10 euros per item. Target is unfixed but you can assume it is a lady.</p>
<p>The second: listing 10 most common requirements for a data analyst job application, i.e. must have skills, personality traits, education, etc.</p>
<p><a href="http://www.mediafire.com/?ppqbfyydbd97fx6">First case</a><br /><a href="http://www.mediafire.com/?kuywx6n6dpndrga">Second case</a>
<div><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/6354410659114914157-5195058743975749357?l=searchtaskrepo.blogspot.com" alt="" /></div>
</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ulno.net/2011/12/01/research-group-digest-32/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Broken mime types or program associations in XFCE4.8</title>
		<link>http://ulno.net/2011/11/30/broken-mime-types-or-program-associations-in-xfce4-8/</link>
		<comments>http://ulno.net/2011/11/30/broken-mime-types-or-program-associations-in-xfce4-8/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 21:28:54 +0000</pubDate>
		<dc:creator>ulno</dc:creator>
				<category><![CDATA[techblog]]></category>

		<guid isPermaLink="false">http://ulno.net/?p=886</guid>
		<description><![CDATA[Just recently I had lots of weird things happening on my desktop. The Places-addon of Xfce4 was for example opening always my mp3-player qmmp, when I clicked on a folder. Interesting default?! Also when opening pdf and epub-files always calibre was the default. Digging through the net, I found this: http://ubuntuforums.org/archive/index.php/t-51012.html So basically I removed <a href='http://ulno.net/2011/11/30/broken-mime-types-or-program-associations-in-xfce4-8/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<div class='wb_fb_top'><div style="float:right;"></div></div><div class="plus-one-wrap"><g:plusone size="small" href="http://ulno.net/2011/11/30/broken-mime-types-or-program-associations-in-xfce4-8/"></g:plusone></div><p>Just recently I had lots of weird things happening on my desktop. The Places-addon of Xfce4 was for example opening always my mp3-player qmmp, when I clicked on a folder. Interesting default?! Also when opening pdf and epub-files always calibre was the default.</p>
<p>Digging through the net, I found this:</p>
<p><a href="http://ubuntuforums.org/archive/index.php/t-51012.html" target="_blank">http://ubuntuforums.org/archive/index.php/t-51012.html</a></p>
<p>So basically I removed the local apps associations (rm -R ~/.local/share/applications/*) and edited&nbsp; /usr/share/applications/defaults.list (there calibre installed itself). This actually did not help too much. I found a very interesting command: mimeopen</p>
<p>So concering fixing the folders, I tried mimeopen on the command line and it asked me which default folder-opener I wanted and I picked thunar, which fixed this problem.</p>
<p>So, use the tricks from the link + mimeopen.</p>
<p>When mimeopen opens the right stuff, your system should work.</p>
<p>Good luck, fixing!</p>
]]></content:encoded>
			<wfw:commentRss>http://ulno.net/2011/11/30/broken-mime-types-or-program-associations-in-xfce4-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Research group digest</title>
		<link>http://ulno.net/2011/10/24/research-group-digest-31/</link>
		<comments>http://ulno.net/2011/10/24/research-group-digest-31/#comments</comments>
		<pubDate>Mon, 24 Oct 2011 02:03:10 +0000</pubDate>
		<dc:creator>ulno</dc:creator>
				<category><![CDATA[group-digest]]></category>

		<guid isPermaLink="false">http://ulno.net/2011/10/24/research-group-digest-31/</guid>
		<description><![CDATA[Search Logger 2.0 DEMO video Here you will find a video of somewhat superior quality. Enjoy! Aspects of the software covered in this video: filling in pre- and post-forms by the user automatic logging of the user search behaviour different log formats searching itself using Google Aspects NOT covered in the screencast: setting up the <a href='http://ulno.net/2011/10/24/research-group-digest-31/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<div class='wb_fb_top'><div style="float:right;"></div></div><div class="plus-one-wrap"><g:plusone size="small" href="http://ulno.net/2011/10/24/research-group-digest-31/"></g:plusone></div><ul class="scrd_digest">
<li><a href="http://searchtaskrepo.blogspot.com/2011/10/search-logger-20-demo-video.html" rel="external">Search Logger 2.0 DEMO video</a>
<div>Here you will find a video of somewhat superior quality. <b>Enjoy!</b>
<div>
<div></div>
<div>Aspects of the software covered in this video:</div>
<div>
<ul>
<li>filling in pre- and post-forms by the user</li>
<li>automatic logging of the user search behaviour</li>
<li>different log formats</li>
<li>searching itself using Google</li>
</ul>
<div>Aspects NOT covered in the screencast:</div>
<div>
<ul>
<li>setting up the whole logger system</li>
<li>source code of the search logger 2.0</li>
</ul>
</div>
<div></div>
<div></div>
</div>
</div>
<div>If you have questions or ideas, please post them here. Thanks!</div>
<div><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/6354410659114914157-7283596094035501174?l=searchtaskrepo.blogspot.com" alt="" /></div>
</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ulno.net/2011/10/24/research-group-digest-31/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Research group digest</title>
		<link>http://ulno.net/2011/10/21/research-group-digest-30/</link>
		<comments>http://ulno.net/2011/10/21/research-group-digest-30/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 02:01:33 +0000</pubDate>
		<dc:creator>ulno</dc:creator>
				<category><![CDATA[group-digest]]></category>

		<guid isPermaLink="false">http://ulno.net/2011/10/21/research-group-digest-30/</guid>
		<description><![CDATA[Green cloud computing, which way to go? What is the right cloud architecture to create a green and sustainable cloud? Should we consolidate to huge mega data centers or is there another way to go? The analogy Currently data centers are constructed on the intersection of the electrical energy infrastructure and the network (data) infrastructure. <a href='http://ulno.net/2011/10/21/research-group-digest-30/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<div class='wb_fb_top'><div style="float:right;"></div></div><div class="plus-one-wrap"><g:plusone size="small" href="http://ulno.net/2011/10/21/research-group-digest-30/"></g:plusone></div><ul class="scrd_digest">
<li><a href="http://cloud-computing-economics.com/business-benefits-applications/green-cloud-computing/" rel="external">Green cloud computing, which way to go?</a>
<div>What is the right cloud architecture to create a green and sustainable cloud? Should we consolidate to huge mega data centers or is there another way to go? The analogy Currently data centers are constructed on the intersection of the electrical energy infrastructure and the network (data) infrastructure. Considering the current electrical energy infrastructure, for [...]</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ulno.net/2011/10/21/research-group-digest-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Research group digest</title>
		<link>http://ulno.net/2011/10/20/research-group-digest-29/</link>
		<comments>http://ulno.net/2011/10/20/research-group-digest-29/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 02:00:55 +0000</pubDate>
		<dc:creator>ulno</dc:creator>
				<category><![CDATA[group-digest]]></category>

		<guid isPermaLink="false">http://ulno.net/2011/10/20/research-group-digest-29/</guid>
		<description><![CDATA[How are cloud computing companies going to effect the online storage service industry? Recently Eric Greenwood from OnlineStorage.org asked, me “..Do you have any opinions on how cloud computing companies are going to effect the online storage service industry? A view from an economic mind like yours would be very interesting!” Aren´t online storage service providers themselves <a href='http://ulno.net/2011/10/20/research-group-digest-29/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<div class='wb_fb_top'><div style="float:right;"></div></div><div class="plus-one-wrap"><g:plusone size="small" href="http://ulno.net/2011/10/20/research-group-digest-29/"></g:plusone></div><ul class="scrd_digest">
<li><a href="http://cloud-computing-economics.com/business-benefits-applications/cloud-computing-companies-effect-online-storage-service-industry/" rel="external">How are cloud computing companies going to effect the online storage service industry?</a>
<div>Recently Eric Greenwood from OnlineStorage.org asked, me “..Do you have any opinions on how cloud computing companies are going to effect the online storage service industry? A view from an economic mind like yours would be very interesting!” Aren´t online storage service providers themselves also cloud computing companies? I am a heavy (not yet paying) user of [...]</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ulno.net/2011/10/20/research-group-digest-29/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Research group digest</title>
		<link>http://ulno.net/2011/10/19/research-group-digest-28/</link>
		<comments>http://ulno.net/2011/10/19/research-group-digest-28/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 02:03:19 +0000</pubDate>
		<dc:creator>ulno</dc:creator>
				<category><![CDATA[group-digest]]></category>

		<guid isPermaLink="false">http://ulno.net/2011/10/19/research-group-digest-28/</guid>
		<description><![CDATA[Initial screencast of the interface Hi! I carried out another search task and recorded a screencast presenting the whole process. Task: Compile a list of the five best universities (worldwide) to achieve amaster&#8217;s in machine engineering (or closely related field) under thecondition that you have 1500 EUR per month available to cover allinvolved costs. Happy <a href='http://ulno.net/2011/10/19/research-group-digest-28/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<div class='wb_fb_top'><div style="float:right;"></div></div><div class="plus-one-wrap"><g:plusone size="small" href="http://ulno.net/2011/10/19/research-group-digest-28/"></g:plusone></div><ul class="scrd_digest">
<li><a href="http://searchtaskrepo.blogspot.com/2011/10/initial-screencast-of-interface.html" rel="external">Initial screencast of the interface</a>
<div>Hi!</p>
<p>I carried out another search task and recorded a screencast presenting the whole process.</p>
<p>Task:</p>
<p>Compile a list of the five best universities (worldwide) to achieve a<br />master&#8217;s in machine engineering (or closely related field) under the<br />condition that you have 1500 EUR per month available to cover all<br />involved costs.</p>
<p>Happy watching! Note: what you will see is edited video material. However, as PiTiVi seems to have no support for adding text labels, there are none at the moment. Sorry for the relatively poor quality. I hope make available a better version soon. <img src='http://ulno.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> 
<div></div>
<p>More information regarding this task coming soon&#8230; Please comment on what you would like to change in the first place to make this tool better.
<div><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/6354410659114914157-9008925468425414351?l=searchtaskrepo.blogspot.com" alt="" /></div>
</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ulno.net/2011/10/19/research-group-digest-28/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sound in Linux (and pulseaudio) – finally works with rt-kernel?</title>
		<link>http://ulno.net/2011/10/13/sound-in-linux-and-pulseaudio-%e2%80%93-finally-works-with-rt-kernel/</link>
		<comments>http://ulno.net/2011/10/13/sound-in-linux-and-pulseaudio-%e2%80%93-finally-works-with-rt-kernel/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 20:10:50 +0000</pubDate>
		<dc:creator>ulno</dc:creator>
				<category><![CDATA[techblog]]></category>

		<guid isPermaLink="false">http://ulno.net/?p=839</guid>
		<description><![CDATA[Just wanted to share an interesting observation. I had quite some trouble with some programs in Linux playing sound (most programs like vnc working nicely), mainly with kvm but also musescore &#8211; it was allways stuttering. For fun I just installed the 3.0.0-2-rt-amd64 kernel and hey, the stuttering is gone! Will continue to monitor this. <a href='http://ulno.net/2011/10/13/sound-in-linux-and-pulseaudio-%e2%80%93-finally-works-with-rt-kernel/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<div class='wb_fb_top'><div style="float:right;"></div></div><div class="plus-one-wrap"><g:plusone size="small" href="http://ulno.net/2011/10/13/sound-in-linux-and-pulseaudio-%e2%80%93-finally-works-with-rt-kernel/"></g:plusone></div><p>Just wanted to share an interesting observation. I had quite some trouble with some programs in Linux playing sound (most programs like vnc working nicely), mainly with kvm but also musescore &ndash; it was allways stuttering. For fun I just installed the 3.0.0-2-rt-amd64 kernel and hey, the stuttering is gone!</p>
<p>Will continue to monitor this. Not sure what I lost using the realtime kernel.</p>
]]></content:encoded>
			<wfw:commentRss>http://ulno.net/2011/10/13/sound-in-linux-and-pulseaudio-%e2%80%93-finally-works-with-rt-kernel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

