<?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>michal's weblog</title>
	<atom:link href="http://mjanusz.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mjanusz.wordpress.com</link>
	<description>open source, science and random stuff</description>
	<lastBuildDate>Sun, 31 May 2009 15:59:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mjanusz.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>michal's weblog</title>
		<link>http://mjanusz.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mjanusz.wordpress.com/osd.xml" title="michal&#039;s weblog" />
	<atom:link rel='hub' href='http://mjanusz.wordpress.com/?pushpress=hub'/>
		<item>
		<title>915resolution with built-in uvesafb</title>
		<link>http://mjanusz.wordpress.com/2009/05/31/915resolution-with-built-in-uvesafb/</link>
		<comments>http://mjanusz.wordpress.com/2009/05/31/915resolution-with-built-in-uvesafb/#comments</comments>
		<pubDate>Sun, 31 May 2009 15:59:49 +0000</pubDate>
		<dc:creator>Michał Januszewski</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[gentoo]]></category>

		<guid isPermaLink="false">http://mjanusz.wordpress.com/?p=31</guid>
		<description><![CDATA[The video BIOSes of many (most?) Intel cards only support a very limited number of standard 4:3 resolutions. Widescreen and native LCD video modes are thus not available in (u)vesafb unless one hacks the BIOS using a special utility called 915resolution. The usual approach to using the additional video modes with uvesafb is to build [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mjanusz.wordpress.com&amp;blog=1582924&amp;post=31&amp;subd=mjanusz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The video BIOSes of many (most?) Intel cards only support a very limited number of standard 4:3 resolutions. Widescreen and native LCD video modes are thus not available in (u)vesafb unless one hacks the BIOS using a special utility called <code>915resolution</code>.</p>
<p>The usual approach to using the additional video modes with uvesafb is to build the driver as a module and load it after patching the BIOS.  I&#8217;ve recently obtained an Eee PC 1000 HE (which has the Intel GME945 graphics card) and wanted to use the native LCD resolution (1024&#215;600) with the framebuffer, while keeping uvesafb built into the kernel.  Such a setup is advantageous in at least the following ways:</p>
<ul>
<li>it provides a working framebuffer from a very early stage of the boot process</li>
<li>you don&#8217;t need to bother with setting up the initramfs (just like in the case of a standard uvesafb setup)</li>
</ul>
<p>Here is what to do (the following assumes that you already have a working uvesafb setup, i.e. <code>sys-apps/v86d</code> and <code>dev-libs/klibc</code> are installed, and the kernel is properly configured):</p>
<ol>
<li>Manually build 915resolution, including all Gentoo patches, but linking the binary against klibc:
<pre>cd /usr/portage/sys-apps/915resolution
ebuild 915resolution-0.5.3-r2.ebuild unpack
cd /var/tmp/portage/sys-apps/915resolution-0.5.3-r2/work/915resolution-0.5.3/
make CC=klcc</pre>
</li>
<li>Copy the 915resoluton binary to /usr/src/v86d:
<pre>mkdir /usr/src/v86d
cp 915resolution /usr/src/v86d
cd /usr/src/v86d</pre>
</li>
<li>Create a script named <code>v86d</code> using your favourite text editor.  Replace the 915resolution parameters to suit your needs (here we add a 1024&#215;600-32 video mode).  Put the following in the script:
<pre>#!/bin/sh
/sbin/915resolution 4d 1024 600 32
exec /sbin/v86d.real</pre>
</li>
<li>Create a file named <code>initramfs</code>, with the following contents:
<pre>dir /dev 0755 0 0
nod /dev/console 0600 0 0 c 5 1
nod /dev/tty1 0600 0 0 c 4 1
nod /dev/zero 0600 0 0 c 1 5
nod /dev/mem 0600 0 0 c 1 1
dir /root 0700 0 0
dir /sbin 0755 0 0
dir /bin 0755 0 0
dir /lib 0755 0 0
file /lib/klibc-bJzJ_Gx53KttbTgfZ4dktuoismc.so /usr/lib/klibc/lib/klibc-bJzJ_Gx53KttbTgfZ4dktuoismc.so 0755 0 0
file /bin/sh /usr/lib/klibc/bin/sh.shared 0755 0 0
file /sbin/v86d.real /sbin/v86d 0755 0 0
file /sbin/915resolution /usr/src/v86d/915resolution 0755 0 0
file /sbin/v86d /usr/src/v86d/v86d 0755 0 0</pre>
<p>Adjust this script by replacing <code>bJzJ_Gx53KttbTgfZ4dktuoismc</code> with what you actually have in <code>/usr/lib/klibc/lib</code>.</li>
<li>Update your kernel config by setting <code>CONFIG_INITRAMFS_SOURCE="/usr/src/v86d/initramfs"</code>.</li>
<li>Rebuild your kernel.</li>
<li>Update grub.conf or lilo.conf, modifying the kernel command line so that it includes your new video mode.  In our case, that would be <code>uvesafb:1024x600-32.</code></li>
<li>Reboot and enjoy your consoles in the native resolution of your LCD panel.</li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mjanusz.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mjanusz.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mjanusz.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mjanusz.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mjanusz.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mjanusz.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mjanusz.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mjanusz.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mjanusz.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mjanusz.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mjanusz.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mjanusz.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mjanusz.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mjanusz.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mjanusz.wordpress.com&amp;blog=1582924&amp;post=31&amp;subd=mjanusz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mjanusz.wordpress.com/2009/05/31/915resolution-with-built-in-uvesafb/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/71f8949b44eeaa493b9c86e21ced4abb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Michał Januszewski</media:title>
		</media:content>
	</item>
		<item>
		<title>splashutils-1.5.4 released</title>
		<link>http://mjanusz.wordpress.com/2008/02/26/splashutils-154-released/</link>
		<comments>http://mjanusz.wordpress.com/2008/02/26/splashutils-154-released/#comments</comments>
		<pubDate>Tue, 26 Feb 2008 20:27:32 +0000</pubDate>
		<dc:creator>Michał Januszewski</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[fbsplash]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[splashutils]]></category>

		<guid isPermaLink="false">http://mjanusz.wordpress.com/?p=30</guid>
		<description><![CDATA[Just a quick note to let everybody know that I released a new version of splashutils yesterday. 1.5.4 includes some interesting new features, the most important of which are the fbsplash message log, textboxes and special effects modifiers. The fbsplash message log and textboxes make it possible to display textual information to the user without [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mjanusz.wordpress.com&amp;blog=1582924&amp;post=30&amp;subd=mjanusz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just a quick note to let everybody know that I released a new version of splashutils yesterday.  1.5.4 includes some interesting new features, the most important of which are the fbsplash message log, textboxes and special effects modifiers.</p>
<p>The fbsplash message log and textboxes make it possible to display textual information to the user without requiring a switch to the verbose mode.  Here is a screenshot of a modified version of the gentoo-livecd-2007.0 theme illustrating the idea:<a href="http://mjanusz.files.wordpress.com/2008/02/shot.png" title="livecd-2007.0 (with message log) screenshot"><img src="http://mjanusz.files.wordpress.com/2008/02/shot.png?w=439&#038;h=275" alt="livecd-2007.0 (with message log) screenshot" height="275" width="439" /></a></p>
<p><a href="http://mjanusz.files.wordpress.com/2008/02/shot.png" title="Direct link to file"></a></p>
<p>When the F3 key is pressed,  a box with information about services that have already been started is shown on the screen.</p>
<p>The special effect modifiers are a fancy little thing that make it possible for icons (or any splash objects for that matter) to blend in or blend out as the boot-up progresses.  This has in principle been possible with the previous versions of splashutils, but it required MNG support and specially prepared animations.  Now you can get the special effects for free, even with a version of splashutils built without libmng support!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mjanusz.wordpress.com/30/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mjanusz.wordpress.com/30/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mjanusz.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mjanusz.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mjanusz.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mjanusz.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mjanusz.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mjanusz.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mjanusz.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mjanusz.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mjanusz.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mjanusz.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mjanusz.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mjanusz.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mjanusz.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mjanusz.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mjanusz.wordpress.com&amp;blog=1582924&amp;post=30&amp;subd=mjanusz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mjanusz.wordpress.com/2008/02/26/splashutils-154-released/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/71f8949b44eeaa493b9c86e21ced4abb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Michał Januszewski</media:title>
		</media:content>

		<media:content url="http://mjanusz.files.wordpress.com/2008/02/shot.png" medium="image">
			<media:title type="html">livecd-2007.0 (with message log) screenshot</media:title>
		</media:content>
	</item>
		<item>
		<title>fbsplash naming changes</title>
		<link>http://mjanusz.wordpress.com/2007/08/29/fbsplash-naming-changes/</link>
		<comments>http://mjanusz.wordpress.com/2007/08/29/fbsplash-naming-changes/#comments</comments>
		<pubDate>Wed, 29 Aug 2007 20:34:06 +0000</pubDate>
		<dc:creator>Michał Januszewski</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[gentoo]]></category>

		<guid isPermaLink="false">http://mjanusz.wordpress.com/2007/08/29/fbsplash-naming-changes/</guid>
		<description><![CDATA[Recently, in the hope of making things clearer and easier for everyone to understand, I decided to do some renaming in my splash projects. The result: the kernel patch is now called fbcondecor (previously: fbsplash), the userspace part used to display the silent splash screen during boot is called fbsplash, and there is no longer [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mjanusz.wordpress.com&amp;blog=1582924&amp;post=28&amp;subd=mjanusz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently, in the hope of making things clearer and easier for everyone to understand, I decided to do some renaming in my splash projects. The result: the kernel patch is now called <strong>fbcondecor</strong> (previously: fbsplash), the userspace part used to display the silent splash screen during boot is called <strong>fbsplash</strong>, and there is no longer anything named gensplash. The core fbsplash applications, along with some additional utilities are distributed in a single package called <strong>splashutils</strong> (available as <code>media-gfx/splashutils</code> in Gentoo).</p>
<p>So, to sum things up: <strong>fbsplash</strong> = silent splash, <strong>fbcondecor</strong> = verbose splash.</p>
<p>The reasons for the name changes:</p>
<ul>
<li>Since the gensplash project was started, everyone referred to the userspace part as &#8220;fbsplash&#8221; anyway.</li>
<li>Many people don&#8217;t realize that fbsplash is fully functional and usable without any kernel patches.</li>
<li>fbcondecor (which stands for: Framebuffer Console Decorations), which was previously named &#8220;fbsplash&#8221;, has nothing to do with displaying the splash screen during boot. The only thing that it does is displaying pictures in the <strong>background</strong> of system consoles. This is not a splash screen, but a decoration and should thus be named accordingly.</li>
</ul>
<p>Changes in Gentoo:</p>
<ul>
<li>From splashutils-1.5 onward, the <code>/etc/init.d/splash</code> script is called <code>/etc/init.d/fbcondecor<br />
</code></li>
<li><code>SPLASH_TTYS</code> is now <code>FBCONDECOR_TTYS</code>, <code>SPLASH_TTY_MAP</code> is <code>FBCONDECOR_TTY_MAP</code>. Both are located in <code>/etc/conf.d/fbcondecor</code></li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mjanusz.wordpress.com/28/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mjanusz.wordpress.com/28/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mjanusz.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mjanusz.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mjanusz.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mjanusz.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mjanusz.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mjanusz.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mjanusz.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mjanusz.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mjanusz.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mjanusz.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mjanusz.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mjanusz.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mjanusz.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mjanusz.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mjanusz.wordpress.com&amp;blog=1582924&amp;post=28&amp;subd=mjanusz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mjanusz.wordpress.com/2007/08/29/fbsplash-naming-changes/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/71f8949b44eeaa493b9c86e21ced4abb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Michał Januszewski</media:title>
		</media:content>
	</item>
		<item>
		<title>Announcing uvesafb</title>
		<link>http://mjanusz.wordpress.com/2007/06/11/announcing-uvesafb/</link>
		<comments>http://mjanusz.wordpress.com/2007/06/11/announcing-uvesafb/#comments</comments>
		<pubDate>Mon, 11 Jun 2007 15:51:57 +0000</pubDate>
		<dc:creator>Michał Januszewski</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[gentoo]]></category>

		<guid isPermaLink="false">http://mjanusz.wordpress.com/2007/06/11/announcing-uvesafb/</guid>
		<description><![CDATA[Those of you who use the Linux framebuffer and for some reason can&#8217;t use a chipset specific driver such as nvidiafb might be familiar with a project called &#8216;vesafb-tng&#8217; that I started a few years ago. vesafb-tng is a generic framebuffer driver for VBE 2.0 compliant video adapters. It removes most of the limitations imposed [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mjanusz.wordpress.com&amp;blog=1582924&amp;post=24&amp;subd=mjanusz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Those of you who use the Linux framebuffer and for some reason can&#8217;t use a chipset specific driver such as nvidiafb might be familiar with a project called &#8216;vesafb-tng&#8217; that I started a few years ago.</p>
<p>vesafb-tng is a generic framebuffer driver for VBE 2.0 compliant video adapters. It removes most of the limitations imposed by vesafb, such as the awkward way of setting video modes (vga=xxx) or the lack of support for mode switching. There are two main problems with vesafb-tng:</p>
<ul>
<li>it&#8217;s a rather ugly hack,</li>
<li>it works only on x86.</li>
</ul>
<p><strong>uvesafb</strong>, aka &#8220;vesafb-tng done right&#8221;, fixes these two problems. It uses a userspace daemon to run x86 Video BIOS calls, which makes the driver a lot cleaner and perhaps more importantly, makes it possible to use the driver on non-x86 systems.</p>
<p>uvesafb is still in alpha stage. It currently supports x86 and amd64 and has been tested with a few nVidia cards. If you would like to test it out, check <a href="http://dev.gentoo.org/~spock/projects/uvesafb/">the project webpage</a> and follow the installation instructions. Bug reports and success stories are welcome :)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mjanusz.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mjanusz.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mjanusz.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mjanusz.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mjanusz.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mjanusz.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mjanusz.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mjanusz.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mjanusz.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mjanusz.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mjanusz.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mjanusz.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mjanusz.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mjanusz.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mjanusz.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mjanusz.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mjanusz.wordpress.com&amp;blog=1582924&amp;post=24&amp;subd=mjanusz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mjanusz.wordpress.com/2007/06/11/announcing-uvesafb/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/71f8949b44eeaa493b9c86e21ced4abb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Michał Januszewski</media:title>
		</media:content>
	</item>
		<item>
		<title>Freetype adventures</title>
		<link>http://mjanusz.wordpress.com/2007/02/11/freetype-adventures/</link>
		<comments>http://mjanusz.wordpress.com/2007/02/11/freetype-adventures/#comments</comments>
		<pubDate>Sun, 11 Feb 2007 15:23:01 +0000</pubDate>
		<dc:creator>Michał Januszewski</dc:creator>
				<category><![CDATA[gentoo]]></category>

		<guid isPermaLink="false">http://mjanusz.wordpress.com/2007/02/11/freetype-adventures/</guid>
		<description><![CDATA[Like (I suppose) many of you, I have recently upgraded to freetype-2.3.1. After the upgrade I found my fonts suddenly changed from this: to this: which is supposedly an improvement &#8212; albeit one that I do not like. I have just spent far too much time on trying to figure out how to get my [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mjanusz.wordpress.com&amp;blog=1582924&amp;post=27&amp;subd=mjanusz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Like (I suppose) many of you, I have recently upgraded to freetype-2.3.1. After the upgrade I found my fonts suddenly changed from this:<br />
<img src="http://localhost/wordpress/wp-content/uploads/2007/02/dejavu-21.png" alt="DejaVu Serif font with freetype-2.1.10" /><br />
to this:<br />
<img src="http://localhost/wordpress/wp-content/uploads/2007/02/dejavu-23.png" alt="DejaVu Serif font with freetype-2.3.1" /><br />
which is supposedly an improvement &#8212; albeit one that I do <strong>not</strong> like. I have just spent far too much time on trying to figure out how to get my fonts back to normal and so I thought I&#8217;d share my solution with you. It turns out the only thing you have to do is to put the following snippet of code into your <code>/etc/fonts/local.conf</code>:</p>
<pre>&lt;match target="font"&gt;
	&lt;edit name="antialias" mode="assign"&gt;
		&lt;bool&gt;true&lt;/bool&gt;
	&lt;/edit&gt;
	&lt;edit name="autohint" mode="assign"&gt;
		&lt;bool&gt;false&lt;/bool&gt;
	&lt;/edit&gt;
	&lt;edit name="hinting" mode="assign"&gt;
		&lt;bool&gt;true&lt;/bool&gt;
	&lt;/edit&gt;
	&lt;edit name="hintstyle" mode="assign"&gt;
		&lt;const&gt;hintfull&lt;/const&gt;
	&lt;/edit&gt;
	&lt;edit name="rgba" mode="assign"&gt;
		&lt;const&gt;none&lt;/const&gt;
	&lt;/edit&gt;
&lt;/match&gt;
<code></code></pre>
<p>The most crucial bit seems to be the hintstyle. Unless it&#8217;s set to <code>hintfull</code>, the fonts look just like they do with the default settings, or worse.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mjanusz.wordpress.com/27/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mjanusz.wordpress.com/27/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mjanusz.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mjanusz.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mjanusz.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mjanusz.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mjanusz.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mjanusz.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mjanusz.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mjanusz.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mjanusz.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mjanusz.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mjanusz.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mjanusz.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mjanusz.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mjanusz.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mjanusz.wordpress.com&amp;blog=1582924&amp;post=27&amp;subd=mjanusz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mjanusz.wordpress.com/2007/02/11/freetype-adventures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/71f8949b44eeaa493b9c86e21ced4abb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Michał Januszewski</media:title>
		</media:content>

		<media:content url="http://localhost/wordpress/wp-content/uploads/2007/02/dejavu-21.png" medium="image">
			<media:title type="html">DejaVu Serif font with freetype-2.1.10</media:title>
		</media:content>

		<media:content url="http://localhost/wordpress/wp-content/uploads/2007/02/dejavu-23.png" medium="image">
			<media:title type="html">DejaVu Serif font with freetype-2.3.1</media:title>
		</media:content>
	</item>
		<item>
		<title>vesafb-tng developments</title>
		<link>http://mjanusz.wordpress.com/2005/09/22/vesafb-tng-developments/</link>
		<comments>http://mjanusz.wordpress.com/2005/09/22/vesafb-tng-developments/#comments</comments>
		<pubDate>Thu, 22 Sep 2005 16:23:30 +0000</pubDate>
		<dc:creator>Michał Januszewski</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[gentoo]]></category>

		<guid isPermaLink="false">http://mjanusz.wordpress.com/2005/09/22/vesafb-tng-developments/</guid>
		<description><![CDATA[I&#8217;m happy to say that vesafb-tng has recently received a rather significant code overhaul. The result is a new testing patch, timestamped 20050920.. So far the reports I got have been very positive. Some old SMP-related problems seem to be fixed, and the recently discovered highmem system instabilities that were traced back to vesafb-tng appear [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mjanusz.wordpress.com&amp;blog=1582924&amp;post=22&amp;subd=mjanusz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m happy to say that vesafb-tng has recently received a rather significant code overhaul.</p>
<p>The result is a <a href="http://dev.gentoo.org/~spock/projects/vesafb-tng/testing/vesafb-tng-testing-2005092001.patch">new testing patch, timestamped 20050920.</a>. So far the reports I got have been very positive. Some old SMP-related problems seem to be fixed, and the recently discovered highmem system instabilities that were traced back to vesafb-tng appear to be gone now. However, the new code could really use some more testing (both on machines that vesafb-tng had problems with in the past, and ones on which it was running just fine &#8212; to test for any potential regressions). If you feel like giving it a try, please apply the &#8216;testing&#8217; version of the patch to a 2.6.13 or 2.6.14* vanilla kernel tree, and select &#8216;vesafb-tng&#8217; as the framebuffer driver.</p>
<p>For those of you who haven&#8217;t heard about vesafb-tng prior to reading this post: vesafb-tng is a kernel framebuffer driver based on vesafb, designed to run on x86 systems and offer a wider set of features than vesafb does. A more detailed description can be found on the <a href="http://dev.gentoo.org/~spock/projects/vesafb-tng/">vesafb-tng project page</a>.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mjanusz.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mjanusz.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mjanusz.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mjanusz.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mjanusz.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mjanusz.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mjanusz.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mjanusz.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mjanusz.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mjanusz.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mjanusz.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mjanusz.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mjanusz.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mjanusz.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mjanusz.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mjanusz.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mjanusz.wordpress.com&amp;blog=1582924&amp;post=22&amp;subd=mjanusz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mjanusz.wordpress.com/2005/09/22/vesafb-tng-developments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/71f8949b44eeaa493b9c86e21ced4abb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Michał Januszewski</media:title>
		</media:content>
	</item>
		<item>
		<title>torsmo</title>
		<link>http://mjanusz.wordpress.com/2005/09/19/torsmo/</link>
		<comments>http://mjanusz.wordpress.com/2005/09/19/torsmo/#comments</comments>
		<pubDate>Mon, 19 Sep 2005 09:06:55 +0000</pubDate>
		<dc:creator>Michał Januszewski</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[gentoo]]></category>

		<guid isPermaLink="false">http://mjanusz.wordpress.com/2005/09/19/torsmo/</guid>
		<description><![CDATA[For many of you this might be old news, but I have only very recently discovered a nice little app called torsmo. For those of you who don&#8217;t know it: torsmo is a lightweight system monitor which doesn&#8217;t require GTK, QT or other bloated libraries and which paints directly to the root window in X. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mjanusz.wordpress.com&amp;blog=1582924&amp;post=21&amp;subd=mjanusz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For many of you this might be old news, but I have only very recently discovered a nice little app called torsmo. For those of you who don&#8217;t know it: torsmo is a lightweight system monitor which doesn&#8217;t require GTK, QT or other bloated libraries and which paints directly to the root window in X. It has support for all the standard things you would expect in a system monitor and can be easily extended if you want something more.</p>
<p>It doesn&#8217;t support hddtemp, though. It also doesn&#8217;t provide a flexible way to adjust the displayed text. I thought this was a pity, so I&#8217;ve written two patches to fix this (<a href="http://dev.gentoo.org/~spock/stuff/torsmo-0.18-hddtemp.patch">hddtemp</a>, <a href="http://dev.gentoo.org/~spock/stuff/torsmo-0.18-gototab.patch">text ajd.</a>, <a href="http://dev.gentoo.org/~spock/stuff/torsmo-0.18-hddtemp-goto.patch">all-in-one</a>).</p>
<p>Here is what it looks like on my dekstop:<br />
<img src="http://dev.gentoo.org/~spock/blog/images/torsmo-0.18.png" alt="torsmo screenshot" /></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mjanusz.wordpress.com/21/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mjanusz.wordpress.com/21/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mjanusz.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mjanusz.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mjanusz.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mjanusz.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mjanusz.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mjanusz.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mjanusz.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mjanusz.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mjanusz.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mjanusz.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mjanusz.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mjanusz.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mjanusz.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mjanusz.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mjanusz.wordpress.com&amp;blog=1582924&amp;post=21&amp;subd=mjanusz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mjanusz.wordpress.com/2005/09/19/torsmo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/71f8949b44eeaa493b9c86e21ced4abb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Michał Januszewski</media:title>
		</media:content>

		<media:content url="http://dev.gentoo.org/~spock/blog/images/torsmo-0.18.png" medium="image">
			<media:title type="html">torsmo screenshot</media:title>
		</media:content>
	</item>
		<item>
		<title>Switching to git</title>
		<link>http://mjanusz.wordpress.com/2005/06/27/switching-to-git/</link>
		<comments>http://mjanusz.wordpress.com/2005/06/27/switching-to-git/#comments</comments>
		<pubDate>Mon, 27 Jun 2005 08:54:46 +0000</pubDate>
		<dc:creator>Michał Januszewski</dc:creator>
				<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://mjanusz.wordpress.com/2005/06/27/switching-to-git/</guid>
		<description><![CDATA[I&#8217;ve finally created git repositories for vesafb-tng and fbsplash (I was using BitKeeper before it became non-free). So far everything seems to be working smoothly. I&#8217;m quite happy that once again I&#8217;ll be able to do a simple cg-update instead of manually unpacking, patching and diffing two kernel trees. Git appears to be a little [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mjanusz.wordpress.com&amp;blog=1582924&amp;post=20&amp;subd=mjanusz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve finally created git repositories for vesafb-tng and fbsplash (I was using BitKeeper before it became non-free). So far everything seems to be working smoothly. I&#8217;m quite happy that once again I&#8217;ll be able to do a simple <code>cg-update</code> instead of manually unpacking, patching and diffing two kernel trees. Git appears to be a little slower than BK, but it should still be a huge time-saver for me.</p>
<p>Moving the repos to git also means that theoretically they could now be made publicly accessible, should anyone need access to the latest code. Unfortunately, due to some rather annoying limits my ISP is imposing on my net connection, this will most likely remain a purely theoretical possibility.</p>
<p>During the preparations for the migration I was searching for some documents describing the new git SCM. I read a few HOW-TOs on the lkml, but it turns out that the best doc is the <a href="http://www.kernel.org/pub/software/scm/cogito/README">Cogito README</a>. If you want to start your own repo, you might just as well skip the HOW-TOs and go straight to the README.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mjanusz.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mjanusz.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mjanusz.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mjanusz.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mjanusz.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mjanusz.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mjanusz.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mjanusz.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mjanusz.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mjanusz.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mjanusz.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mjanusz.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mjanusz.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mjanusz.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mjanusz.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mjanusz.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mjanusz.wordpress.com&amp;blog=1582924&amp;post=20&amp;subd=mjanusz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mjanusz.wordpress.com/2005/06/27/switching-to-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/71f8949b44eeaa493b9c86e21ced4abb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Michał Januszewski</media:title>
		</media:content>
	</item>
		<item>
		<title>Back from London</title>
		<link>http://mjanusz.wordpress.com/2005/06/27/back-from-london/</link>
		<comments>http://mjanusz.wordpress.com/2005/06/27/back-from-london/#comments</comments>
		<pubDate>Sun, 26 Jun 2005 22:13:02 +0000</pubDate>
		<dc:creator>Michał Januszewski</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[real life]]></category>

		<guid isPermaLink="false">http://mjanusz.wordpress.com/2005/06/27/back-from-london/</guid>
		<description><![CDATA[I&#8217;ve been back home for the last few days, but I also have been too busy/lazy to blog about the trip. But finally, here it is. My visit to this strange place called London (where people drive on the left side of the road and you need &#8220;look right/left&#8221; marks on the pedestrian crossings, and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mjanusz.wordpress.com&amp;blog=1582924&amp;post=19&amp;subd=mjanusz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been back home for the last few days, but I also have been too busy/lazy to blog about the trip. But finally, here it is.</p>
<p>My visit to this strange place called London (where people drive on the left side of the road and you need &#8220;look right/left&#8221; marks on the pedestrian crossings, and where you get to see and meet people of tens of different nationalities, speaking dozens of languages) despite being quite short, has been very enjoyable and fruitful.</p>
<p>Participating in a <a href="http://www.gentoo.org/news/en/gwn/20050620-newsletter.xml">Gentoo dev/user meeting</a> and meeting in real life some of the people I had so far only known from the IRC was a lot of fun, as was my visit to the Science Museum and particularly to the Hitchhiker&#8217;s Guide to the Galaxy exhibition (it&#8217;s always fun to see something related to h2g2 :)).</p>
<p>My trip to London wasn&#8217;t a purely touristic one, so in addition to the usual sightseeing and meeting different people I also got to do some real coding and debugging. The results are not bad &#8212; more than ten patches for various fb-related applications and libraries, including fixes for vesafb-tng, fbsplash and splashutils. I also got a chance to test vesafb-tng on a dual processor SMP-enabled machine. To my own surprise, it worked. And it worked perfectly. Despite my best attempts I was unable to crash the machine and reproduce any of the bugs that were reported by some people in the past. Well, I guess that for now vesafb-tng will be left &#8216;half-working&#8217; on SMP.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mjanusz.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mjanusz.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mjanusz.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mjanusz.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mjanusz.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mjanusz.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mjanusz.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mjanusz.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mjanusz.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mjanusz.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mjanusz.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mjanusz.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mjanusz.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mjanusz.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mjanusz.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mjanusz.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mjanusz.wordpress.com&amp;blog=1582924&amp;post=19&amp;subd=mjanusz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mjanusz.wordpress.com/2005/06/27/back-from-london/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/71f8949b44eeaa493b9c86e21ced4abb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Michał Januszewski</media:title>
		</media:content>
	</item>
		<item>
		<title>Physics and Astronomy workshops</title>
		<link>http://mjanusz.wordpress.com/2005/05/28/physics-and-astronomy-workshops/</link>
		<comments>http://mjanusz.wordpress.com/2005/05/28/physics-and-astronomy-workshops/#comments</comments>
		<pubDate>Sat, 28 May 2005 17:58:09 +0000</pubDate>
		<dc:creator>Michał Januszewski</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[real life]]></category>

		<guid isPermaLink="false">http://mjanusz.wordpress.com/2005/05/28/physics-and-astronomy-workshops/</guid>
		<description><![CDATA[I&#8217;m about to head off to Warsaw to take part in Physics and Astronomy workshops at the Warsaw University. I&#8217;ll be away from home (and thus from my dev box) for the next two weeks, so expect a halt in splashutils/vesafb-tng development and a longer than usual delay in my e-mail replies. I&#8217;ve just finished [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mjanusz.wordpress.com&amp;blog=1582924&amp;post=18&amp;subd=mjanusz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m about to head off to Warsaw to take part in Physics and Astronomy workshops at the Warsaw University. I&#8217;ll be away from home (and thus from my dev box) for the next two weeks, so expect a halt in splashutils/vesafb-tng development and a longer than usual delay in my e-mail replies. I&#8217;ve just finished going through the big pile of unanswered mails in my inbox and replied to every single one of them that was still relevant. If you mailed me about something and you haven&#8217;t received a reply now, your message probably got lost/filtered by spamassasin/etc. If whatever you wanted isn&#8217;t outdated yet and won&#8217;t be after two weeks, feel free to resend your messages :)</p>
<p>During the workshop on physics I&#8217;ll be working on my General Relativity simulation program that was started back in March. I realize I promised I would release the code &#8216;as soon as the clean-ups are complete&#8217;, but unfortunately the development took a little different path than I anticipated and I wasn&#8217;t able to hold up my promise. Still, I certainly hope that after a full week devoted to the program&#8217;s development, it will be ready for getting it out to the public and I&#8217;ll keep my word after all (with a little 3-month delay added to it ;)).</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mjanusz.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mjanusz.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mjanusz.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mjanusz.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mjanusz.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mjanusz.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mjanusz.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mjanusz.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mjanusz.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mjanusz.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mjanusz.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mjanusz.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mjanusz.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mjanusz.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mjanusz.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mjanusz.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mjanusz.wordpress.com&amp;blog=1582924&amp;post=18&amp;subd=mjanusz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mjanusz.wordpress.com/2005/05/28/physics-and-astronomy-workshops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/71f8949b44eeaa493b9c86e21ced4abb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Michał Januszewski</media:title>
		</media:content>
	</item>
	</channel>
</rss>
