<?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>The Blog of Thomas &#187; Development</title>
	<atom:link href="http://moelhave.dk/category/development/feed/" rel="self" type="application/rss+xml" />
	<link>http://moelhave.dk</link>
	<description>But existing is basically all I do!</description>
	<lastBuildDate>Tue, 29 Jun 2010 13:20:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>NVIDIA CUDA on Ubuntu Karmic Koala and GCC 4.4</title>
		<link>http://moelhave.dk/2009/12/nvidia-cuda-on-ubuntu-karmic-koala/</link>
		<comments>http://moelhave.dk/2009/12/nvidia-cuda-on-ubuntu-karmic-koala/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 20:34:23 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://moelhave.dk/?p=503</guid>
		<description><![CDATA[NVIDIA&#8217;s currently released version of CUDA does not directly with Ubuntu 9.10 which uses GCC 4.4 as the default compiler. However, it is quite easy to make it work and the following guide goes through the entire installation process in &#8230; <a href="http://moelhave.dk/2009/12/nvidia-cuda-on-ubuntu-karmic-koala/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>NVIDIA&#8217;s currently released version of CUDA does not directly with Ubuntu 9.10 which uses GCC 4.4 as the default compiler. However, it is quite easy to make it work and the following guide goes through the entire installation process in some detail.</p>
<p>I use the 64bit version of CUDA, go here to get it:<br />
<a href="http://www.nvidia.com/object/cuda_get.html" onclick="pageTracker._trackPageview('/outgoing/www.nvidia.com/object/cuda_get.html?referer=');">http://www.nvidia.com/object/cuda_get.html</a><br />
(I selected <strong>Linux 64 bit</strong> and  <strong>Ubuntu 9.04</strong> .)</p>
<p>This lets you download the CUDA Drivers, the CUDA Toolkit and the CUDA SDK, and you will end up with three files:</p>
<pre>cudadriver_2.3_linux_64_190.18.run</pre>
<pre>cudatoolkit_2.3_linux_64_ubuntu9.04.run</pre>
<pre>cudasdk_2.3_linux.run</pre>
<h2>Installing the NVIDIA driver:</h2>
<p>Cuda needs at least version 190 of the linux driver</p>
<h3>1.</h3>
<p>Uninstall existing NVIDIA drivers and nvidia-glx. (Use gui or aptitude).</p>
<h3>2.</h3>
<p>Install driver:</p>
<p>Quit x (log out of your desktop, go to a virtual terminal (CTRL+ALT+F1), login, run</p>
<pre>$ sudo service gdm stop</pre>
<h3>3.</h3>
<p>Run</p>
<pre>$ sudo cudadriver_2.3_linux_64_190.18.run</pre>
<p>to install the driver, follow the prompts.<br />
Say yes to install 32 bit compatibility libraries.<br />
If you want you can let the installer overwrite the Xorg configuration file.</p>
<h3>4.</h3>
<p>Reboot and log back in.</p>
<h3>5.</h3>
<p>Run</p>
<pre> $ nvidia-settings</pre>
<p>to verify that your driver version is at least 190.18. Look for the driver version in the window:</p>
<h3><a href="http://moelhave.dk/blog/wp-content/uploads/2009/12/NewDriver.png"><img class="size-full wp-image-505 alignnone" title="The 190.xx NVIDIA Driver for use with CUDA." src="http://moelhave.dk/blog/wp-content/uploads/2009/12/NewDriver.png" alt="The 190.xx NVIDIA Driver for use with CUDA." width="210" height="152" /></a></h3>
<h2>Installing the CUDA Toolkit:</h2>
<p>After having installed the driver we now need to install the CUDA toolkit itself.</p>
<h3>1.</h3>
<p>Run:</p>
<pre>$ sudo sh cudatoolkit_2.3_linux_64_ubuntu9.04.run</pre>
<h3>2.</h3>
<p>Press enter to install at the</p>
<pre>/usr/local/cuda</pre>
<p>default location.</p>
<h3>3.</h3>
<p>Register the new library files, run:</p>
<pre>$ sudo gedit /etc/ld.so.conf.d/cuda.conf</pre>
<p>and add</p>
<pre>/usr/local/cuda/lib64</pre>
<p>to the otherwise empty file and save it. Then run:</p>
<pre>$ sudo ldconfig</pre>
<p>You can also add</p>
<pre>export PATH=/usr/local/cuda/bin:$PATH</pre>
<pre>export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH</pre>
<p>to the end of your ~/.bashrc file.</p>
<p>(You should then login and out again of start a new bash with</p>
<pre>bash --</pre>
<p>to update your environment.</p>
<h2>Installing the CUDA SDK and Compiling the Example Programs</h2>
<p>We will now install the CUDA SDK to your own home directory so you can play with the supplied demos:</p>
<h3>1.</h3>
<p>Run:</p>
<pre>$ sh cudasdk_2.3_linux.run</pre>
<p>I chose to install it at the default location.</p>
<h3>2.</h3>
<p>As CUDA does not yet work with GCC 4.4 you will have to  install gcc-4.3:</p>
<pre>$ sudo aptitude install gcc-4.3 g++-4.3</pre>
<h3>3.</h3>
<p>Go to SDK source dir:</p>
<pre>cd ~/NVIDIA_GPU_Computing_SDK/C$</pre>
<h3>4.</h3>
<p>Create a directory and create symlinks to gcc-4.3/g++-4.3</p>
<pre>$ mkdir mygcc</pre>
<pre>$ cd mygcc</pre>
<pre>$ ln -s $(which g++-4.3) g++</pre>
<pre>$ ln -s $(which gcc-4.3) gcc</pre>
<pre>$ cd ..</pre>
<h3>5.</h3>
<p>Edit common makefile:</p>
<pre>$ gedit common/common.mk</pre>
<p>Find the lines that specify <strong>CC</strong>, <strong>CXX</strong> and <strong>LINK</strong> and change them to:</p>
<pre>CXX        := g++-4.3</pre>
<pre>CC         := gcc-4.3</pre>
<pre>LINK       := g++-4.3 -fPIC</pre>
<p>Add</p>
<pre>#use gcc-4.3</pre>
<pre>NVCCFLAGS+=--compiler-bindir=${HOME}/NVIDIA_GPU_Computing_SDK/C/mygcc</pre>
<p>Before the line that says <strong>&#8220;ifeq ($(nvcc_warn_verbose),1)&#8221;</strong>. This tells the nvcc computer that it should look in <em>mygcc</em> for gcc, which will cause it to pickup our gcc-4.3 compiler.</p>
<h3>6.</h3>
<p>You should now be able to compile everything by running</p>
<pre>$ make</pre>
<p>This should now compile all the examples in the SDK without errors.</p>
<h2>Verify Installation</h2>
<p>We can now verify that everything is working:</p>
<h3>1.</h3>
<p>Run:</p>
<pre>$ bin/linux/release/deviceQuery</pre>
<p>On my machine I get the following output (depending on your harware, you ourput may be different):</p>
<pre>CUDA Device Query (Runtime API) version (CUDART static linking)</pre>
<pre>There is 1 device supporting CUDA</pre>
<pre>Device 0: "GeForce 8800 Ultra"
CUDA Driver Version:                           2.30
CUDA Runtime Version:                          2.30
CUDA Capability Major revision number:         1
CUDA Capability Minor revision number:         0
Total amount of global memory:                 804585472 bytes
Number of multiprocessors:                     16
Number of cores:                               128
Total amount of constant memory:               65536 bytes
Total amount of shared memory per block:       16384 bytes
Total number of registers available per block: 8192
Warp size:                                     32
Maximum number of threads per block:           512
Maximum sizes of each dimension of a block:    512 x 512 x 64
Maximum sizes of each dimension of a grid:     65535 x 65535 x 1
Maximum memory pitch:                          262144 bytes
Texture alignment:                             256 bytes
Clock rate:                                    1.51 GHz
Concurrent copy and execution:                 No
Run time limit on kernels:                     Yes
Integrated:                                    No
Support host page-locked memory mapping:       No
Compute mode:                                  Default (multiple host threads can use this device simultaneously)</pre>
<pre>Test PASSED</pre>
<pre>Press ENTER to exit...</pre>
<p>You should now be good to go. Here&#8217;s an screenshot of the volumeRender demo:</p>
<pre>$ bin/linux/release/volumeRender
<a href="http://moelhave.dk/blog/wp-content/uploads/2009/12/CudaWorking.png"><img class="alignnone size-full wp-image-511" title="The volumeRender applicatin from the CUDA SDK." src="http://moelhave.dk/blog/wp-content/uploads/2009/12/CudaWorking.png" alt="The volumeRender applicatin from the CUDA SDK." width="200" height="210" /></a></pre>
<p>Remember to use gcc-4.3/g++-4.3 and the &#8211;compiler-bindir option to nvcc when compiling your own CUDA source.</p>
]]></content:encoded>
			<wfw:commentRss>http://moelhave.dk/2009/12/nvidia-cuda-on-ubuntu-karmic-koala/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Code Gets Around</title>
		<link>http://moelhave.dk/2007/02/code-gets-around/</link>
		<comments>http://moelhave.dk/2007/02/code-gets-around/#comments</comments>
		<pubDate>Sun, 04 Feb 2007 22:21:27 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Real Life]]></category>

		<guid isPermaLink="false">http://moelhave.dk/2007/02/code-gets-around/</guid>
		<description><![CDATA[It seems that my code gets around these days. I recently got some code in Gnome and this evening I had some other code on Danish television as shown on the screenshot attached to this post. The text behind the &#8230; <a href="http://moelhave.dk/2007/02/code-gets-around/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://moelhave.dk/wp-content/uploads/2007/02/screenshot-mplayer.png" title="Code on TV2-oestjylland"><img src="http://moelhave.dk/wp-content/uploads/2007/02/screenshot-mplayer.thumbnail.png" title="Code on TV2-oestjylland" alt="Code on TV2-oestjylland" align="right" /></a>It seems that my code gets around these days. I recently got <a href="http://mail.gnome.org/archives/gnome-announce-list/2007-January/msg00075.html" onclick="pageTracker._trackPageview('/outgoing/mail.gnome.org/archives/gnome-announce-list/2007-January/msg00075.html?referer=');">some code in Gnome</a> and this evening I had some other code on Danish television as shown on the screenshot attached to this post. The text behind the anchorman is from an ongoing project and is being displayed using VIM (obviously since it <em>is</em> the best editor!) There is really no reason for them to show that code but I guess they thought it looked techie. The full clip can be seen <a href="http://www.tv2regionerne.dk/reg2005/player.aspx?id=337963&amp;r=7%22" onclick="pageTracker._trackPageview('/outgoing/www.tv2regionerne.dk/reg2005/player.aspx?id=337963_amp_r=7_22&amp;referer=');">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://moelhave.dk/2007/02/code-gets-around/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Contest About To Start</title>
		<link>http://moelhave.dk/2006/11/contest-about-to-start/</link>
		<comments>http://moelhave.dk/2006/11/contest-about-to-start/#comments</comments>
		<pubDate>Sun, 19 Nov 2006 08:52:08 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Real Life]]></category>

		<guid isPermaLink="false">http://moelhave.dk/2006/11/contest-about-to-start/</guid>
		<description><![CDATA[The Northwest European Programming Contest 2006 is starting in 10 minutes. This year they even have a fancy video feed with commentaries and graphics, check it out at the NWERC 2006 site. I am sitting in the main auditorium with &#8230; <a href="http://moelhave.dk/2006/11/contest-about-to-start/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The Northwest European Programming Contest 2006 is starting in 10 minutes. This year they even have a fancy video feed with commentaries and graphics, check it out at the <a href="http://www.csc.kth.se/contest/nwerc/" onclick="pageTracker._trackPageview('/outgoing/www.csc.kth.se/contest/nwerc/?referer=');">NWERC 2006</a> site. I am sitting in the main auditorium with some other coaches watching the feed on a big screen, very nice &#8211; I wish I had some pop corn.</p>
]]></content:encoded>
			<wfw:commentRss>http://moelhave.dk/2006/11/contest-about-to-start/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online at NWERC 2006</title>
		<link>http://moelhave.dk/2006/11/online-at-nwerc-2006/</link>
		<comments>http://moelhave.dk/2006/11/online-at-nwerc-2006/#comments</comments>
		<pubDate>Sat, 18 Nov 2006 10:39:37 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Real Life]]></category>

		<guid isPermaLink="false">http://moelhave.dk/2006/11/online-at-nwerc-2006/</guid>
		<description><![CDATA[I am currently sitting in a hall way at KTH in Stockholm where the North West European Programming Contest 2006 (NWERC 2006) is taking place. I am coaching two teams this year, after having participated in 2005,2004 and 2003, the &#8230; <a href="http://moelhave.dk/2006/11/online-at-nwerc-2006/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I am currently sitting in a hall way at KTH in Stockholm where the <a href="http://www.csc.kth.se/contest/nwerc/" onclick="pageTracker._trackPageview('/outgoing/www.csc.kth.se/contest/nwerc/?referer=');">North West European Programming Contest 2006</a> (NWERC 2006) is taking place.  I am coaching two teams this year, after having participated in 2005,2004 and 2003, the teams (Aarhus 1 and Aarhus 2) will hopefully do good. The contest starts at 10 swedish time tomorrow and the scoreboard will be updated online for the world to follow :)<br />
Right now the teams are doing the test contest to get to know the contest setup and coming up in 30 minutes is lunch followed by a trip to the Wasa museum.  Following this a guy from google will give a talk and then we are off for the contest dinner.<br />
Yesterday we (me and the Aarhus teams) walked around in Stockhom ending up with a visit to the Hard Rock Cafe which had a special Iron Maiden theme night, talk about a lot of black shirts with weird drawings ;)<br />
I guess I will be sufficiently bored during the contest tomorrow that I may actually update this site again at that point, we will see.<br />
Wish us luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://moelhave.dk/2006/11/online-at-nwerc-2006/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Google Toy</title>
		<link>http://moelhave.dk/2006/10/new-google-toy/</link>
		<comments>http://moelhave.dk/2006/10/new-google-toy/#comments</comments>
		<pubDate>Thu, 05 Oct 2006 06:41:36 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://moelhave.dk/2006/10/new-google-toy/</guid>
		<description><![CDATA[Google has launched Google Code Search and the first thing you do with such a service is to put in your own name, of course. I am a bit dissappointed about the fact that Martin has more hits than I &#8230; <a href="http://moelhave.dk/2006/10/new-google-toy/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Google  has launched <a href="http://www.google.com/codesearch" onclick="pageTracker._trackPageview('/outgoing/www.google.com/codesearch?referer=');">Google Code Search</a> and the first thing you do with such a service is to put in your own name, of course. I am a bit dissappointed about the fact that <a href="http://mgeisler.net" onclick="pageTracker._trackPageview('/outgoing/mgeisler.net?referer=');">Martin</a> has more hits than I although, clearly, I am a better programmer ;). I guess it pays off doing boring web scripting crap ;).  Now I&#8217;ll need to release more source I guess.</p>
]]></content:encoded>
			<wfw:commentRss>http://moelhave.dk/2006/10/new-google-toy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remote Backup Of A Subversion (svn) Repository</title>
		<link>http://moelhave.dk/2006/07/remote-mirroring-a-subversion-svn-repository/</link>
		<comments>http://moelhave.dk/2006/07/remote-mirroring-a-subversion-svn-repository/#comments</comments>
		<pubDate>Wed, 26 Jul 2006 15:57:54 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://moelhave.dk/2006/07/remote-mirroring-a-subversion-svn-repository/</guid>
		<description><![CDATA[Yesterday I spent a lot of time trying to figure out how to take a complete backup of a subversion repository containing some code that I am currently working on. The generic way to do this is svnadmin dump path-to-repos &#8230; <a href="http://moelhave.dk/2006/07/remote-mirroring-a-subversion-svn-repository/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yesterday I spent a lot of time trying to figure out how to take a complete backup of a subversion repository containing some code that I am currently working on. The generic way to do this is<br />
<code><br />
svnadmin dump path-to-repos<br />
</code><br />
but svnadmin only works on local repositories. However, I do not have shell access to the machine containing the repository and can only access it through its webDAV interface. I thought that since all revision information is available through the normal svn client, someone would have solved this problem nicely already. I googled around and could not find any obvious solutions. I found a the source to a program, <a href="http://svn.collab.net/repos/svn/trunk/contrib/client-side/svn-push/" onclick="pageTracker._trackPageview('/outgoing/svn.collab.net/repos/svn/trunk/contrib/client-side/svn-push/?referer=');">svn-push</a> in the subversion repository contrib section. It is a bit unclear what this program actually does and I was unable to actually make it compile. After some more searching I stumbled acroos <a href="http://svk.elixus.org/" onclick="pageTracker._trackPageview('/outgoing/svk.elixus.org/?referer=');">svk</a> which is a program build on top of subversion. Eventually I found out that I could abuse this program to create a dump of my remote repository. First make sure that you have no previous svk history:<br />
<code><br />
rm -rf ~/.svk<br />
</code><br />
Then get information of the repository by issuing the following command and follow the instructions on screen<br />
<code><br />
svk ls [subversion-repository-URL]<br />
</code><br />
svk should then have built a local repository, the first two revisions to this are local svk information, we simply dump the rest:<br />
<code><br />
svnadmin dump -r2:HEAD ~/.svk/local  > my-repository-dump<br />
</code><br />
If you have stored the repository with the same name as you original repository as part of the &#8220;ls&#8221; command, my-repository-dump should now contain the full revision and log information of the original remote repository. yay.</p>
]]></content:encoded>
			<wfw:commentRss>http://moelhave.dk/2006/07/remote-mirroring-a-subversion-svn-repository/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Enlightenment</title>
		<link>http://moelhave.dk/2005/10/enlightenment/</link>
		<comments>http://moelhave.dk/2005/10/enlightenment/#comments</comments>
		<pubDate>Sun, 30 Oct 2005 21:47:21 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Imported]]></category>

		<guid isPermaLink="false">http://moelhave.dk/2005/10/enlightenment/</guid>
		<description><![CDATA[I have been playing with the Enlightenment Foundation Libraries(EFL) enlightenment 0.17 from CVS for quite some time now, it a bit today. I have been running is nice to play with developing software. Using evas and ecore I was able &#8230; <a href="http://moelhave.dk/2005/10/enlightenment/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I<a class="imagelink" title="Enlightenment Foundation Libraries, Evas" href="http://moelhave.dk/wp-content/uploads/2006/01/EFL.png"><img align="right" id="image19" alt="Enlightenment Foundation Libraries, Evas" title="Enlightenment Foundation Libraries, Evas" class="alignright" src="http://moelhave.dk/wp-content/uploads/2006/01/EFL.thumbnail.png" /></a> have been playing with the <a href="http://www.enlightenment.org/Libraries/Overview/index.html" onclick="pageTracker._trackPageview('/outgoing/www.enlightenment.org/Libraries/Overview/index.html?referer=');">Enlightenment 	Foundation Libraries(EFL)</a> 	enlightenment 0.17 from CVS for quite some time now, it a bit today. I have been running is nice to play 	with developing software. Using evas and ecore I was able to produce a 	little test application in no time.</p>
<p>Yesterday I went shopping in the city with Mette and David from my dorm. 	I ended up buying some wodden mind puzzle, the objective of which is to 	assemble a star from several parts, a handgrip gel for strengthening of 	the wrist and fingers and 	<a href="http://en.wikipedia.org/wiki/Pandora%27s_Star" onclick="pageTracker._trackPageview('/outgoing/en.wikipedia.org/wiki/Pandora_27s_Star?referer=');">Pandora&#8217;s 	Star</a> which is the first book in a series written by Peter F. 	Hamilton, the author of the brilliant Nights Dawn trilogy.</p>
]]></content:encoded>
			<wfw:commentRss>http://moelhave.dk/2005/10/enlightenment/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Life Goes On</title>
		<link>http://moelhave.dk/2005/08/life-goes-on/</link>
		<comments>http://moelhave.dk/2005/08/life-goes-on/#comments</comments>
		<pubDate>Thu, 04 Aug 2005 21:56:01 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Imported]]></category>
		<category><![CDATA[Real Life]]></category>

		<guid isPermaLink="false">http://moelhave.dk/2005/08/life-goes-on/</guid>
		<description><![CDATA[So, my vacation has ended and I am now studying full time at DAIMI, I had one last week at CAVI which I spent tying loose ends, in particular I finished a rather large production with Ruben and it turned &#8230; <a href="http://moelhave.dk/2005/08/life-goes-on/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So, my vacation has ended and I am now studying full time at DAIMI, I had one last week at CAVI which I spent tying loose ends, in particular I finished a rather large production with <a href="http://ruben.litewerx.dk/" onclick="pageTracker._trackPageview('/outgoing/ruben.litewerx.dk/?referer=');">Ruben</a> and it turned out quite nice. I am looking forward to the weekend, I am going camping with my family, we are staying in the northern part of Jutland, and the forecasts predict plenty of rain &#8211; very cosy.</p>
<p>I recently released <a href="http://www.daimi.au.dk/%7Ethomasm/vplayer" onclick="pageTracker._trackPageview('/outgoing/www.daimi.au.dk/_7Ethomasm/vplayer?referer=');">vplayer</a> which is a <a href="http://www.xinehq.de/" onclick="pageTracker._trackPageview('/outgoing/www.xinehq.de/?referer=');">xine-lib</a> front-end I wrote at CAVI. The frontend is able to play a movie frame-synchronized on a cluster of computers. It uses SDL to display the video but it is also able to render on an OpenGL texture for use in a graphics engine.</p>
]]></content:encoded>
			<wfw:commentRss>http://moelhave.dk/2005/08/life-goes-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two Down, One to Go</title>
		<link>http://moelhave.dk/2005/05/two-down-one-to-go/</link>
		<comments>http://moelhave.dk/2005/05/two-down-one-to-go/#comments</comments>
		<pubDate>Mon, 30 May 2005 21:57:33 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Imported]]></category>
		<category><![CDATA[Real Life]]></category>

		<guid isPermaLink="false">http://moelhave.dk/2005/05/two-down-one-to-go/</guid>
		<description><![CDATA[Today Lille Lars and I handed in our exam project for the course Types in Object Oriented Languages. The project, which we have given the fancy title Assignment Featherweight java: Bringind Mutable State to Featherweight java, turned out nicely, and &#8230; <a href="http://moelhave.dk/2005/05/two-down-one-to-go/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today <a href="http://www.daimi.au.dk/%7Eaveng" onclick="pageTracker._trackPageview('/outgoing/www.daimi.au.dk/_7Eaveng?referer=');">Lille Lars</a> and I handed in our exam project for the course <a href="http://www.daimi.au.dk/%7Emadst/tool" onclick="pageTracker._trackPageview('/outgoing/www.daimi.au.dk/_7Emadst/tool?referer=');">Types in Object Oriented Languages</a>. The project, which we have given the fancy title <a href="http://www.daimi.au.dk/%7Ethomasm/TOOL/AFJ_onesided.pdf" onclick="pageTracker._trackPageview('/outgoing/www.daimi.au.dk/_7Ethomasm/TOOL/AFJ_onesided.pdf?referer=');">Assignment Featherweight java: Bringind Mutable State to Featherweight java</a>, turned out nicely, and we got the chance to freshen up some of our dusty SML/NJ skills by constructing a <a href="http://www.daimi.au.dk/%7Ethomasm/TOOL/typechecker.sml" onclick="pageTracker._trackPageview('/outgoing/www.daimi.au.dk/_7Ethomasm/TOOL/typechecker.sml?referer=');">type-checker</a> for the language we constructed in the project.</p>
]]></content:encoded>
			<wfw:commentRss>http://moelhave.dk/2005/05/two-down-one-to-go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blah Blah Blah</title>
		<link>http://moelhave.dk/2005/04/blah-blah-blah/</link>
		<comments>http://moelhave.dk/2005/04/blah-blah-blah/#comments</comments>
		<pubDate>Tue, 19 Apr 2005 21:59:56 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Imported]]></category>
		<category><![CDATA[Real Life]]></category>
		<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://moelhave.dk/2005/04/blah-blah-blah/</guid>
		<description><![CDATA[So, it has been a while since the last update. Here at the dorm we have been busy doing the mandatory spring cleaning and playing freesbie. We have also started the barbaque season, very nice! At the university it is &#8230; <a href="http://moelhave.dk/2005/04/blah-blah-blah/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So, it has been a while since the last update. Here at the dorm we have been busy doing the mandatory spring cleaning and playing freesbie. We have also started the barbaque season, very nice! At the university it is time to select the <a href="http://www.daimi.au.dk/studies/courses/advanced-courses/" onclick="pageTracker._trackPageview('/outgoing/www.daimi.au.dk/studies/courses/advanced-courses/?referer=');">courses</a> for the autumn semester. Unfortunatly I have almost used my ECTS points by now so I need to be quite picky, I&#8217;m currently thinking of taking <a href="https://mit.au.dk/da/uddan/udbudbeskriv.cfm?udbudid=2129&#038;lan=en&#038;scope=1&#038;parentelem=2241" onclick="pageTracker._trackPageview('/outgoing/mit.au.dk/da/uddan/udbudbeskriv.cfm?udbudid=2129_038_lan=en_038_scope=1_038_parentelem=2241&amp;referer=');">Advanced Algorithmics</a> and <a href="https://mit.au.dk/da/uddan/udbudbeskriv.cfm?udbudid=2245&#038;lan=en&#038;scope=1&#038;parentelem=2241" onclick="pageTracker._trackPageview('/outgoing/mit.au.dk/da/uddan/udbudbeskriv.cfm?udbudid=2245_038_lan=en_038_scope=1_038_parentelem=2241&amp;referer=');">Lossless</a>/<a href="https://mit.au.dk/da/uddan/udbudbeskriv.cfm?udbudid=2249&#038;lan=en&#038;scope=1&#038;parentelem=2241" onclick="pageTracker._trackPageview('/outgoing/mit.au.dk/da/uddan/udbudbeskriv.cfm?udbudid=2249_038_lan=en_038_scope=1_038_parentelem=2241&amp;referer=');">Lossy</a> data compression.</p>
<p>At <a href="http://www.cavi.dk/" onclick="pageTracker._trackPageview('/outgoing/www.cavi.dk/?referer=');">CAVI</a> I am currently investigating how to best go about constructing a videoplayer running on our cluster. It should also scale to another cluster we are still only designed which will consist of about 7 nodes. The video should be tiled and player in synch on all nodes with one (extra) node handling the audio. I have looked a bit into the source of <a href="http://www.mplayerhq.hu/" onclick="pageTracker._trackPageview('/outgoing/www.mplayerhq.hu/?referer=');">MPlayer</a>, <a href="http://www.xinehq.de/" onclick="pageTracker._trackPageview('/outgoing/www.xinehq.de/?referer=');">Xine</a> and <a href="http://www.videolan.org/" onclick="pageTracker._trackPageview('/outgoing/www.videolan.org/?referer=');">videolan (vlc)</a>. Videolan allows for the streaming of the video to all nodes and has plugins for dividing the movie into tiles for a walled display. Unfortunately I have not been able to get an multicast IP address from the system administrators yet, so I have only tested it the multiple unicast streams where the nodes weren&#8217;t entirely free of synchronization glitches. None of the players seem to have built-in support for stereo rendering in OpenGL, so I will need to update their code anyways. With MPlayer or Xine I will even need to write new plugins, and fiddle with their code to enable them to use a common clock.</p>
]]></content:encoded>
			<wfw:commentRss>http://moelhave.dk/2005/04/blah-blah-blah/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
