<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.2" -->
<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/"
	>

<channel>
	<title>Asleep from Day</title>
	<link>http://www.reonsoft.com/~john/blog</link>
	<description>Geeks are boring.</description>
	<pubDate>Tue, 02 Sep 2008 18:43:04 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>
	<language>en</language>
			<item>
		<title>Using Neo Free Runner as Daily Phone</title>
		<link>http://www.reonsoft.com/~john/blog/2008/08/29/using-neo-free-runner-as-daily-phone/</link>
		<comments>http://www.reonsoft.com/~john/blog/2008/08/29/using-neo-free-runner-as-daily-phone/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 09:54:00 +0000</pubDate>
		<dc:creator>john</dc:creator>
		
		<category><![CDATA[Openmoko]]></category>

		<guid isPermaLink="false">http://www.reonsoft.com/~john/blog/2008/08/29/using-neo-free-runner-as-daily-phone/</guid>
		<description><![CDATA[I used the Om2008.8-update as the base image, then modify it for daily usage.
First of all I would like to use the illume default keyboard instead of the qtopia one because it gets a full-qwerty layout and it&#8217;s more suitable for terminal application.  It also gives me access to illume configuration besides of the [...]]]></description>
			<content:encoded><![CDATA[<p>I used the <a href="http://downloads.openmoko.org/releases/Om2008.8-update/" target="_blank">Om2008.8-update</a> as the base image, then modify it for daily usage.</p>
<p>First of all I would like to use the illume default keyboard instead of the qtopia one because it gets a full-qwerty layout and it&#8217;s more suitable for terminal application.  It also gives me access to illume configuration besides of the default &#8216;Settings&#8217; application, which is not enough for advance usage.  To do this, you need to switch to the <a href="http://downloads.openmoko.org/repository/testing/">testing</a> repository.</p>
<ul>
<li>backup the original /etc/opkg directory.  cp -r /etc/opkg /etc/opkg.orig</li>
<li>replace all urls under /etc/opkg to the testing repository</li>
</ul>
<p>Then remove all the illume related packages and install the new ones.</p>
<ul>
<li>opkg list_installed | grep illume | awk &#8216;{print $1}&#8217; | xargs opkg -force-depends remove</li>
<li>opkg update; opkg install illume-theme-asu; opkg install illume</li>
<li>opkg list_installed | grep libe | grep cvs | awk &#8216;{print $1}&#8217; | xargs opkg install</li>
</ul>
<p>Now delete the old configs and switch to the illume default profile.</p>
<ul>
<li>rm -rf ~/.e</li>
<li>replace &#8216;asu&#8217; by &#8216;illume&#8217; in /etc/enlightenment/default_profile</li>
</ul>
<p>Prevent the qtopia keyboard from showing up:</p>
<ul>
<li>Add &#8220;export QTOPIA_NO_VIRTUAL_KEYBOARD=1&#8243; into /etc/X11/Xsession.d/89qtopia</li>
</ul>
<p>The second thing I did is to lower the volume of gsm handset.  The original setting is so loud that everyone around me can hear the caller talking.</p>
<ul>
<li>(call someone)</li>
<li>run alsamixer</li>
<li>scroll to the right end, lower the &#8220;Speaker&#8221; volume.  You can do this while talking to test the value.</li>
<li>alsactl store -f /usr/share/openmoko/scenarios/gsmhandset.state</li>
<li>(hang up)</li>
</ul>
<p>I also need Chinese font so I can read the sms messages.</p>
<ul>
<li>(on host) scp &lt;chinese_font.ttf&gt; root@192.168.0.202:</li>
<li>mv ~/&lt;chinese_font.ttf&gt; /usr/share/fonts/truetype</li>
<li>vi /opt/Qtopia/etc/default/Trolltech/qpe.conf , find [Font], change FontFamily[] to the name of the ttf.  (not the filename)</li>
</ul>
<p>Change back to the default om2008.8 repository.</p>
<ul>
<li>mv /etc/opkg /etc/opkg.testing</li>
<li>mv /etc/opkg.orig /etc/opkg</li>
</ul>
<p>Reboot.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reonsoft.com/~john/blog/2008/08/29/using-neo-free-runner-as-daily-phone/feed/</wfw:commentRss>
		</item>
		<item>
		<title>git clone &#8211;mirror</title>
		<link>http://www.reonsoft.com/~john/blog/2008/08/27/git-clone-mirror/</link>
		<comments>http://www.reonsoft.com/~john/blog/2008/08/27/git-clone-mirror/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 10:39:20 +0000</pubDate>
		<dc:creator>john</dc:creator>
		
		<category><![CDATA[scm]]></category>

		<guid isPermaLink="false">http://www.reonsoft.com/~john/blog/2008/08/27/git-clone-mirror/</guid>
		<description><![CDATA[It seems there will be a new option for git-clone, &#8216;&#8211;mirror&#8217;.  The command line
$ git clone --mirror $URL
is now a short-hand for
$ git clone --bare $URL
$ (cd $(basename $URL) &#38;&#38; git remote add --mirror origin $URL)
Refer to http://kerneltrap.org/mailarchive/git/2008/8/2/2793244 about this.
This is extremely useful if you need to check the contents of different branches in [...]]]></description>
			<content:encoded><![CDATA[<p>It seems there will be a new option for git-clone, &#8216;&#8211;mirror&#8217;.  The command line</p>
<pre>$ git clone --mirror $URL</pre>
<p>is now a short-hand for</p>
<pre>$ git clone --bare $URL
$ (cd $(basename $URL) &amp;&amp; git remote add --mirror origin $URL)</pre>
<p>Refer to <a href="http://kerneltrap.org/mailarchive/git/2008/8/2/2793244">http://kerneltrap.org/mailarchive/git/2008/8/2/2793244</a> about this.</p>
<p>This is extremely useful if you need to check the contents of different branches in different directories at the same time.  Each directory will be a local git clone -l -s, and git push will use &#8211;mirror as well by default.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reonsoft.com/~john/blog/2008/08/27/git-clone-mirror/feed/</wfw:commentRss>
		</item>
		<item>
		<title>bug in python-opengl + mesa</title>
		<link>http://www.reonsoft.com/~john/blog/2008/08/20/bug-in-python-opengl-mesa/</link>
		<comments>http://www.reonsoft.com/~john/blog/2008/08/20/bug-in-python-opengl-mesa/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 10:52:15 +0000</pubDate>
		<dc:creator>john</dc:creator>
		
		<category><![CDATA[OpenGL]]></category>

		<category><![CDATA[C]]></category>

		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.reonsoft.com/~john/blog/2008/08/20/bug-in-python-opengl-mesa/</guid>
		<description><![CDATA[Since like forever, I have never succeed in executing python-opengl demos on debian lenny.  It always segfault during glutInitDisplayMode.  After some debugging, here is why.
One should be able to call glGetError at any time.  If there&#8217;s nothing wrong, it should just return something like GLNOERROR.  Any raw (native) function call in python-opengl, no matter it [...]]]></description>
			<content:encoded><![CDATA[<p>Since like forever, I have never succeed in executing python-opengl demos on debian lenny.  It always segfault during glutInitDisplayMode.  After some debugging, here is why.</p>
<p>One should be able to call glGetError at any time.  If there&#8217;s nothing wrong, it should just return something like GLNOERROR.  Any raw (native) function call in python-opengl, no matter it belongs to GL, GLU or GLUT, will always call glGetError right after each call to check for error.  I think this is wrong since functions like glutInitDisplayMode have NOTHING to do with glGetError.  With mesa 7.0.3-5 in my system, the call to glGetError without glInit will cause segfault.  I check the same thing on Ubuntu, which has an older version of mesa and python-opengl, and it does not happen.</p>
<p>python-opengl enabled error checking by default with OpenGL.ERROR_CHECKING, which is set to True in OpenGL/__init__.py.  This code snippet can disable it:</p>
<pre class="prettyprint">import OpenGL
OpenGL.ERROR_CHECKING = False
# import other stuffs such as OpenGL.GL, etc.</pre>
<p>or you can just modify the __init__.py to disable it by default.</p>
<p>Given the current status of python-opengl and low level x protocol support in python, I think the best language to do 3D in FOSS world will still be pure simple C.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reonsoft.com/~john/blog/2008/08/20/bug-in-python-opengl-mesa/feed/</wfw:commentRss>
		</item>
		<item>
		<title>oprofile</title>
		<link>http://www.reonsoft.com/~john/blog/2008/08/05/oprofile-on-neo-freerunner/</link>
		<comments>http://www.reonsoft.com/~john/blog/2008/08/05/oprofile-on-neo-freerunner/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 04:05:55 +0000</pubDate>
		<dc:creator>john</dc:creator>
		
		<category><![CDATA[system]]></category>

		<guid isPermaLink="false">http://www.reonsoft.com/~john/blog/2008/08/05/oprofile-on-neo-freerunner/</guid>
		<description><![CDATA[First you have to enable oprofile in your kernel, i.e. you must have
CONFIG_PROFILING=y
CONFIG_OPROFILE=y
in your kernel config.  Then you need userspace utilities to use it.  I used oprofile 0.9.4.  First of all you need to setup it with something like
opcontrol --init
opcontrol --no-vmlinux
opcontrol --callgraph=5
After that, here is the script I used to do profiling [...]]]></description>
			<content:encoded><![CDATA[<p>First you have to enable oprofile in your kernel, i.e. you must have</p>
<pre>CONFIG_PROFILING=y
CONFIG_OPROFILE=y</pre>
<p>in your kernel config.  Then you need userspace utilities to use it.  I used oprofile 0.9.4.  First of all you need to setup it with something like</p>
<pre>opcontrol --init
opcontrol --no-vmlinux
opcontrol --callgraph=5</pre>
<p>After that, here is the script I used to do profiling against a program:</p>
<pre>john@buddha:~$ cat bin/profile
#!/bin/sh

which sudo &amp;&amp; SUDO=sudo || SUDO=

${SUDO} opcontrol --shutdown
${SUDO} rm -rf /var/lib/oprofile/*
${SUDO} opcontrol --status
${SUDO} opcontrol --start-daemon
${SUDO} opcontrol --start
$@
${SUDO} opcontrol --stop
${SUDO} opcontrol --dump
${SUDO} opcontrol --shutdown</pre>
<p>Use &#8216;profile &lt;the name of your executable&gt;&#8217; to get the profile.  Use &#8216;opreport&#8217; to read the result.  &#8216;opreport -l&#8217; might be more meaningful.  You can use &#8216;opreport &lt;the name of your executable&gt;&#8217; to only get the result related to your program, but personally I prefer to check the whole system.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reonsoft.com/~john/blog/2008/08/05/oprofile-on-neo-freerunner/feed/</wfw:commentRss>
		</item>
		<item>
		<title>generate object methods at runtime</title>
		<link>http://www.reonsoft.com/~john/blog/2008/06/19/generate-object-methods-at-runtime/</link>
		<comments>http://www.reonsoft.com/~john/blog/2008/06/19/generate-object-methods-at-runtime/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 07:17:37 +0000</pubDate>
		<dc:creator>john</dc:creator>
		
		<category><![CDATA[programming]]></category>

		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.reonsoft.com/~john/blog/2008/06/19/generate-object-methods-at-runtime/</guid>
		<description><![CDATA[I have been working on a dialer button class since yesterday.  It makes sense to use the command design pattern here, and I want to separate the commands and the buttons so I can change the functionality of every button at runtime.
So we are talking about something like this:
class DialerButtons:
    def [...]]]></description>
			<content:encoded><![CDATA[<p>I have been working on a dialer button class since yesterday.  It makes sense to use the command design pattern here, and I want to separate the commands and the buttons so I can change the functionality of every button at runtime.</p>
<p>So we are talking about something like this:</p>
<pre class="prettyprint">class DialerButtons:
    def __init__(self):
        self.command_table = [
            self.numpad_1, self.numpad_2, self.numpad_3,
            self.numpad_4, self.numpad_5, self.numpad_6,
            self.numpad_7, self.numpad_8, self.numpad_9,
            self.cancel, self.numpad_0, self.dial]

    def numpad_0(self):
        self.text.append('0')

    def execute(self, n):
        self.command_table[n]()

&lt;snipped&gt;</pre>
<p>and you can use this class like this:</p>
<pre class="prettyprint">dialer = DialerButtons()
dialer.execute(0)
dialer.execute(8)
....</pre>
<p>Now obviously define numpad_0 to numpad_9 is a boring task.  What happens if you need to define numpad 0 to 99?  So, I came out with this code piece:</p>
<pre class="prettyprint">    @classmethod
    def _numpad_commands_factory(cls):
        for n in xrange(0, 10):
            setattr(cls, 'numpad_%d' % n, lambda self: self.text.append(str(n)))
...
DialerButtons._numpad_commands_factory()</pre>
<p>This way you initialize DialerButtons AFTER you start the program and make methods numpad_0 to 9 on the fly.  At least that&#8217;s what I was trying to do.  However, it didn&#8217;t come out as I expected.  Every numpad method will just add &#8216;9&#8242; to self.text, instead of the respective &#8216;0&#8242; to &#8216;9&#8242;.  Why?</p>
<p>The reason is that the context of numpad_0, for example, is actually &#8220;f(self): self.text.append(str(n)))&#8221; instead of &#8220;f(self): self.text.append(&#8217;0&#8242;)&#8221;.  so, what it does here is that it refers to the variable n inside _numpad_commands_factory, and the value of n is 9 after you executed it.</p>
<p>The correct code piece is:</p>
<pre class="prettyprint">    @classmethod
    def _numpad_commands_factory(cls):
        def f(chr):
            return lambda self: self.text.append(chr)
        for n in xrange(0, 10):
            setattr(cls, 'numpad_%d' % n, f(str(n)))</pre>
<p>This way we can evaluate the value of str(n) first, then generate the appropriate function and assign it to numpad_n.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reonsoft.com/~john/blog/2008/06/19/generate-object-methods-at-runtime/feed/</wfw:commentRss>
		</item>
		<item>
		<title>python-efl on ubuntu gutsy</title>
		<link>http://www.reonsoft.com/~john/blog/2008/06/14/python-efl-on-ubuntu-gutsy/</link>
		<comments>http://www.reonsoft.com/~john/blog/2008/06/14/python-efl-on-ubuntu-gutsy/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 20:10:44 +0000</pubDate>
		<dc:creator>john</dc:creator>
		
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.reonsoft.com/~john/blog/2008/06/14/python-efl-on-ubuntu-gutsy/</guid>
		<description><![CDATA[hey if you have a extremely slow laptop (Pentium III) like me yet you still want to use python-efl on it, here is how.
first, compiling the whole e17 from scratch is not an option.  it will take forever.  there&#8217;s a ubuntu package repository for e17:
$ cat /etc/apt/sources.list.d/e17.list
deb http://e17.dunnewind.net/ubuntu gutsy e17
deb-src http://e17.dunnewind.net/ubuntu gutsy e17
$ [...]]]></description>
			<content:encoded><![CDATA[<p>hey if you have a extremely slow laptop (Pentium III) like me yet you still want to use python-efl on it, here is how.</p>
<p>first, compiling the whole e17 from scratch is not an option.  it will take forever.  there&#8217;s a ubuntu package repository for e17:</p>
<pre class="prettyprint">$ cat /etc/apt/sources.list.d/e17.list
deb http://e17.dunnewind.net/ubuntu gutsy e17
deb-src http://e17.dunnewind.net/ubuntu gutsy e17
$ sudo apt-get update
$ sudo apt-get install efl-dev libecore-imf-evas-dev</pre>
<p>this can save a lot of time.</p>
<p>the other problem is that the latest cython release (<a href="http://www.cython.org/Cython-0.9.8.tar.gz">0.9.8</a>) does NOT work with python-efl.  you have to install <a href="http://www.cython.org/Cython-0.9.6.14.tar.gz">0.9.6.14</a> instead.  don&#8217;t forget to install python-pyrex as well.</p>
<p>now you&#8217;re all set, get python-efl.</p>
<pre class="prettyprint">cvs -d :pserver:anonymous@anoncvs.enlightenment.org:/var/cvs/e login
cvs -z3 -d :pserver:anonymous@anoncvs.enlightenment.org:/var/cvs/e co e17</pre>
<p>it&#8217;s under e17/proto/python-efl.  another funny gotcha is that the binary packages I installed were built on 20080309.  so the latest python-efl will not build successfully.</p>
<pre class="prettyprint">cvs -z3 update -dP -D 20080309</pre>
<p>fixs this.</p>
<p>the default build-all.sh under python-efl directory builds evas ecore edje emotion e_dbus epsilon.  that&#8217;s too many.  for me I just need evas ecore edje e_dbus.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reonsoft.com/~john/blog/2008/06/14/python-efl-on-ubuntu-gutsy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Intel onboard graphic chip + compiz</title>
		<link>http://www.reonsoft.com/~john/blog/2008/06/06/intel-onboard-graphic-chip-compiz/</link>
		<comments>http://www.reonsoft.com/~john/blog/2008/06/06/intel-onboard-graphic-chip-compiz/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 07:06:02 +0000</pubDate>
		<dc:creator>john</dc:creator>
		
		<category><![CDATA[linux hardware]]></category>

		<guid isPermaLink="false">http://www.reonsoft.com/~john/blog/2008/06/06/intel-onboard-graphic-chip-compiz/</guid>
		<description><![CDATA[it&#8217;s a really bad combination.  not so long ago the driver changed default from XAA to EXA, thus my fonts disappeared.  after the last update, now compiz just keeps telling me it cannot load cpp plugin and fails to start.
guess the compiz guys put this chip(8086:2992) in their blacklist for a reason.  [...]]]></description>
			<content:encoded><![CDATA[<p>it&#8217;s a really bad combination.  not so long ago the driver changed default from XAA to EXA, thus my <a href="http://www.reonsoft.com/~john/blog/2008/05/15/fonts-disappeared-part-ii/">fonts disappeared</a>.  after the last update, now compiz just keeps telling me it cannot load cpp plugin and fails to start.</p>
<p>guess the compiz guys put this chip(8086:2992) in their <a href="http://wiki.compiz-fusion.org/Hardware/Blacklist">blacklist</a> for a reason.  damn, I really need compiz!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reonsoft.com/~john/blog/2008/06/06/intel-onboard-graphic-chip-compiz/feed/</wfw:commentRss>
		</item>
		<item>
		<title>git first, git-svn later.</title>
		<link>http://www.reonsoft.com/~john/blog/2008/06/05/git-first-git-svn-later/</link>
		<comments>http://www.reonsoft.com/~john/blog/2008/06/05/git-first-git-svn-later/#comments</comments>
		<pubDate>Thu, 05 Jun 2008 09:18:44 +0000</pubDate>
		<dc:creator>john</dc:creator>
		
		<category><![CDATA[scm]]></category>

		<guid isPermaLink="false">http://www.reonsoft.com/~john/blog/2008/06/05/git-first-git-svn-later/</guid>
		<description><![CDATA[the whole story is that I started a project locally and I used git as my SCM.  now I&#8217;m going to put it into a svn repository with full history but I still want to use git.
normally you should make this decision at the beginning.  that means you
git-svn clone http://svn.somewhere.com/myproject
first, then you use [...]]]></description>
			<content:encoded><![CDATA[<p>the whole story is that I started a project locally and I used git as my SCM.  now I&#8217;m going to put it into a svn repository with full history but I still want to use git.</p>
<p>normally you should make this decision at the beginning.  that means you<br />
<code class="prettyprint">git-svn clone http://svn.somewhere.com/myproject</code><br />
first, then you use git as usual, do <samp>git-svn rebase</samp> and <samp>git-svn dcommit</samp>.  you have to do this because <samp>git-svn</samp> must know where to start, namely you should have at least one <samp>git-svn-id</samp> in your <samp>git log</samp> to start with.</p>
<p>here is how I add svn support into an existing git repository.  basically it&#8217;s easy, you just<br />
<code class="prettyprint">git-svn init http://svn.somewhere.com/myproject<br/>git-svn fetch</code><br />
now <samp>git branch -r</samp> should tell you there is a branch called git-svn.  you <samp>git rebase git-svn</samp> your current master.  if it succeeded then you&#8217;re all set.</p>
<p>however, in order to do this, there must be a point back in time that these two branches are the same.  if it&#8217;s not the case, you&#8217;re in trouble.  you have to use <samp>git-svn set-tree</samp> to force a svn commit to be your starting point.  in my case, the svn repository started out empty, so I forced the first commit in my git.  after that <samp>git rebase</samp> succeeded like I expected.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reonsoft.com/~john/blog/2008/06/05/git-first-git-svn-later/feed/</wfw:commentRss>
		</item>
		<item>
		<title>fonts disappeared part II</title>
		<link>http://www.reonsoft.com/~john/blog/2008/05/15/fonts-disappeared-part-ii/</link>
		<comments>http://www.reonsoft.com/~john/blog/2008/05/15/fonts-disappeared-part-ii/#comments</comments>
		<pubDate>Thu, 15 May 2008 11:36:15 +0000</pubDate>
		<dc:creator>john</dc:creator>
		
		<category><![CDATA[linux hardware]]></category>

		<guid isPermaLink="false">http://www.reonsoft.com/~john/blog/2008/05/15/fonts-disappeared-part-ii/</guid>
		<description><![CDATA[It turns out the default AccelMethod of xdriver &#8220;intel&#8221; has been changed to EXA, and it&#8217;s a known issue that EXA does not work with compiz.  So I force the AccelMethod to &#8220;XAA&#8221; and compiz works again now.
]]></description>
			<content:encoded><![CDATA[<p>It turns out the default AccelMethod of xdriver &#8220;intel&#8221; has been changed to EXA, and it&#8217;s a known issue that EXA does not work with compiz.  So I force the AccelMethod to &#8220;XAA&#8221; and compiz works again now.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reonsoft.com/~john/blog/2008/05/15/fonts-disappeared-part-ii/feed/</wfw:commentRss>
		</item>
		<item>
		<title>fonts disappeared</title>
		<link>http://www.reonsoft.com/~john/blog/2008/05/12/fonts-disappeared/</link>
		<comments>http://www.reonsoft.com/~john/blog/2008/05/12/fonts-disappeared/#comments</comments>
		<pubDate>Mon, 12 May 2008 07:59:42 +0000</pubDate>
		<dc:creator>john</dc:creator>
		
		<category><![CDATA[linux hardware]]></category>

		<guid isPermaLink="false">http://www.reonsoft.com/~john/blog/2008/05/12/fonts-disappeared/</guid>
		<description><![CDATA[I&#8217;m using debian testing (lenny) and after the latest update my xserver no longer display fonts.  This is not totally true because I can still see the fonts on gdm, but after logging in, no fonts whatsoever.  It turns out the i810 Xorg driver is messed up and I have to set NoAccel [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m using debian testing (lenny) and after the latest update my xserver no longer display fonts.  This is not totally true because I can still see the fonts on gdm, but after logging in, no fonts whatsoever.  It turns out the i810 Xorg driver is messed up and I have to set NoAccel to true to avoid it.</p>
<pre>Section "Device"
        Identifier      "Intel Corporation 82Q963/Q965 Integrated Graphics Controller"
        Driver          "i810"
        BusID           "PCI:0:2:0"
        Option          "NoAccel"       "true"
#       Option          "AccelMethod"           "EXA"
        Option          "XAANoOffscreenPixmaps"
EndSection</pre>
<p>BTW I can use compiz without NoAccel before if I delete the device id from the blacklist in compiz start up script.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reonsoft.com/~john/blog/2008/05/12/fonts-disappeared/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
