<?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>Little Brain &#187; linux</title>
	<atom:link href="http://justalittlebrain.wordpress.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://justalittlebrain.wordpress.com</link>
	<description>just a little brain</description>
	<lastBuildDate>Fri, 27 Jan 2012 09:05:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='justalittlebrain.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Little Brain &#187; linux</title>
		<link>http://justalittlebrain.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://justalittlebrain.wordpress.com/osd.xml" title="Little Brain" />
	<atom:link rel='hub' href='http://justalittlebrain.wordpress.com/?pushpress=hub'/>
		<item>
		<title>MYSQL drop all tables in database in linux</title>
		<link>http://justalittlebrain.wordpress.com/2011/08/26/mysql-drop-all-tables-in-database-in-linux/</link>
		<comments>http://justalittlebrain.wordpress.com/2011/08/26/mysql-drop-all-tables-in-database-in-linux/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 03:22:12 +0000</pubDate>
		<dc:creator>kriwil</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://littlebrain.org/?p=306</guid>
		<description><![CDATA[Taken from http://knaddison.com/technology/mysql-drop-all-tables-database-using-single-command-line-command#comment-3588. #!/bin/sh mysql --user=$1 --password=$2 -BNe "show tables" $3 &#124; tr 'n' ',' &#124; sed -e 's/,$//' &#124; awk '{print "SET FOREIGN_KEY_CHECKS = 0;DROP TABLE IF EXISTS " $1 ";SET FOREIGN_KEY_CHECKS = 1;"}' &#124; mysql --user=$1 --password=$2 $3 Save code above in a file, say, mysql-drop-tables. Then change the permission to excecuteable chmod [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=306&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Taken from <a href="http://knaddison.com/technology/mysql-drop-all-tables-database-using-single-command-line-command#comment-3588">http://knaddison.com/technology/mysql-drop-all-tables-database-using-single-command-line-command#comment-3588</a>.</p>
<pre><code>#!/bin/sh

mysql --user=$1 --password=$2 -BNe "show tables" $3 | tr 'n' ',' | sed -e 's/,$//' | awk '{print "SET FOREIGN_KEY_CHECKS = 0;DROP TABLE IF EXISTS " $1 ";SET FOREIGN_KEY_CHECKS = 1;"}' | mysql --user=$1 --password=$2 $3</code></pre>
<p>Save code above in a file, say, mysql-drop-tables. Then change the permission to excecuteable</p>
<pre><code>chmod +x mysql-delete-tables</code></pre>
<p>Then run it</p>
<pre><code>mysql-drop-tables dbuser dbpassword dbname</code></pre>
<p>Here&#8217;s fhe file if you&#8217;re too lazy to copy paste<br />
<a href="http://dl.dropbox.com/u/112837/scripts/mysql-drop-tables">http://dl.dropbox.com/u/112837/scripts/mysql-drop-tables</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justalittlebrain.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justalittlebrain.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justalittlebrain.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justalittlebrain.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justalittlebrain.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justalittlebrain.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justalittlebrain.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justalittlebrain.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justalittlebrain.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justalittlebrain.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justalittlebrain.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justalittlebrain.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justalittlebrain.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justalittlebrain.wordpress.com/306/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=306&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justalittlebrain.wordpress.com/2011/08/26/mysql-drop-all-tables-in-database-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17b185ab2d1b7dcad3f488040f76385c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kriwil</media:title>
		</media:content>
	</item>
		<item>
		<title>Convert pdf to image</title>
		<link>http://justalittlebrain.wordpress.com/2010/06/20/convert-pdf-to-image/</link>
		<comments>http://justalittlebrain.wordpress.com/2010/06/20/convert-pdf-to-image/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 15:31:36 +0000</pubDate>
		<dc:creator>kriwil</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[imagemagick]]></category>
		<category><![CDATA[pdf]]></category>

		<guid isPermaLink="false">http://littlebrain.org/?p=232</guid>
		<description><![CDATA[Ever want to convert pdf file to an image? It’s easy with imagemagick. Ubuntu default installation has it. I believe it’s installed in most linux distribution by default. Anyway, here’s how: convert file.pdf file.jpg convert file.pdf file.png Yeah. That easy.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=232&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ever want to convert pdf file to an image? It’s easy with imagemagick. Ubuntu default installation has it. I believe it’s installed in most linux distribution by default. Anyway, here’s how:</p>
<p><code>convert file.pdf file.jpg<br />
convert file.pdf file.png<br />
</code></p>
<p>Yeah. That easy.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justalittlebrain.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justalittlebrain.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justalittlebrain.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justalittlebrain.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justalittlebrain.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justalittlebrain.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justalittlebrain.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justalittlebrain.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justalittlebrain.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justalittlebrain.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justalittlebrain.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justalittlebrain.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justalittlebrain.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justalittlebrain.wordpress.com/232/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=232&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justalittlebrain.wordpress.com/2010/06/20/convert-pdf-to-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17b185ab2d1b7dcad3f488040f76385c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kriwil</media:title>
		</media:content>
	</item>
		<item>
		<title>An Error Occurred During The Signature Verification</title>
		<link>http://justalittlebrain.wordpress.com/2008/11/25/an-error-occurred-during-the-signature-verification/</link>
		<comments>http://justalittlebrain.wordpress.com/2008/11/25/an-error-occurred-during-the-signature-verification/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 02:55:56 +0000</pubDate>
		<dc:creator>kriwil</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[apt-key]]></category>
		<category><![CDATA[gpg]]></category>

		<guid isPermaLink="false">http://littlebrain.org/?p=211</guid>
		<description><![CDATA[If you&#8217;re using ubuntu as your choice of linux distribution, and you like to add some unofficial repositories, you probably find some warnings when you run apt-get update command. The warnings are probably like this W: A error occurred during the signature verification. The repository is not updated and the previous index files will be [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=211&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re using ubuntu as your choice of linux distribution, and you like to add some unofficial repositories, you probably find some warnings when you run <code>apt-get update</code> command.</p>
<p>The warnings are probably like this</p>
<pre>
W: A error occurred during the signature verification. The repository is not updated and the previous index files will be used.GPG error: http://dl.google.com stable Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A040830F7FAC5991

W: Failed to fetch http://dl.google.com/linux/deb/dists/stable/Release  

W: Some index files failed to download, they have been ignored, or old ones used instead.
W: You may want to run apt-get update to correct these problems
</pre>
<p>That&#8217;s the warnings I got when I added google debian repository. There won&#8217;t be anything bad about it, since we could still install the packages from that repositories. But, I we could get rid the warnings, that&#8217;s would be a lot better. We could use gpg command to get the key.</p>
<p><b>Short Version</b></p>
<p>For you who don&#8217;t want to read pointless explanations below, here&#8217;s the short version</p>
<pre>
gpg --keyserver hkp://subkeys.pgp.net --recv-keys A040830F7FAC5991
gpg --export --armor 7FAC5991 | sudo apt-key add -
</pre>
<p><b>Long Version</b></p>
<p>Here&#8217;s the explained step. First we have to get the key from the key server.</p>
<pre>
gpg --keyserver hkp://subkeys.pgp.net --recv-keys A040830F7FAC5991
</pre>
<p>The <code>A040830F7FAC5991</code> is from the warning shown before. You might want to change it if you have different repository. For the google repository, you should get this as the output</p>
<pre>
gpg: requesting key 7FAC5991 from hkp server subkeys.pgp.net
gpg: key 7FAC5991: public key "Google, Inc. Linux Package Signing Key " imported
gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
gpg: Total number processed: 1
gpg:               imported: 1
</pre>
<p>After that, type</p>
<pre>
gpg --export --armor 7FAC5991 | sudo apt-key add -
</pre>
<p>Where the <code>7FAC5991</code> is from the output shown before.</p>
<p>After that you&#8217;ll get <code>OK</code> as the output. You may run <code>apt-get update</code> again.</p>
<p>Oh, one more thing, I only tested this method in opera and google repositories <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justalittlebrain.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justalittlebrain.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justalittlebrain.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justalittlebrain.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justalittlebrain.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justalittlebrain.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justalittlebrain.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justalittlebrain.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justalittlebrain.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justalittlebrain.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justalittlebrain.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justalittlebrain.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justalittlebrain.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justalittlebrain.wordpress.com/211/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=211&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justalittlebrain.wordpress.com/2008/11/25/an-error-occurred-during-the-signature-verification/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17b185ab2d1b7dcad3f488040f76385c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kriwil</media:title>
		</media:content>
	</item>
		<item>
		<title>Banshee 1.0 Beta 2 in Ubuntu 8.04 Hardy Heron</title>
		<link>http://justalittlebrain.wordpress.com/2008/05/28/banshee-10-beta-2-in-ubuntu-804-hardy-heron/</link>
		<comments>http://justalittlebrain.wordpress.com/2008/05/28/banshee-10-beta-2-in-ubuntu-804-hardy-heron/#comments</comments>
		<pubDate>Wed, 28 May 2008 15:28:39 +0000</pubDate>
		<dc:creator>kriwil</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[apt]]></category>
		<category><![CDATA[banshee]]></category>
		<category><![CDATA[hardy heron]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[launchpad]]></category>

		<guid isPermaLink="false">http://littlebrain.org/?p=175</guid>
		<description><![CDATA[Now Banshee 1.0 Beta 2 is released. If you want to try the music player in your ubuntu hardy box, you could add sources.list entry from banshee PPA team. Open software sources (System &#62; Administration &#62; Software Sources). In Third-Party Software tab, click Add and paste the code below deb http://ppa.launchpad.net/banshee-team/ubuntu hardy main If you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=175&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Now <a href="http://banshee-project.org/Releases/0.99.2">Banshee 1.0 Beta 2</a> is <a href="http://gburt.blogspot.com/2008/05/banshee-10-beta-2-released.html">released</a>. If you want to try the music player in your ubuntu hardy box, you could add sources.list entry from<a href="https://edge.launchpad.net/~banshee-team/+archive"> banshee PPA team</a>.</p>
<p>Open software sources (System &gt; Administration &gt; Software Sources). In Third-Party Software tab, click Add and paste the code below</p>
<pre>
deb http://ppa.launchpad.net/banshee-team/ubuntu hardy main
</pre>
<p>If you need the source, you could repeat the Add proccess, and paste this</p>
<pre>
deb-src http://ppa.launchpad.net/banshee-team/ubuntu hardy main
</pre>
<p>Close the Software Sources. Wait for a few moment while the software update your package database. Then open the terminal, and type</p>
<pre>
sudo apt-get install banshee-1
</pre>
<p>Yes, use <code>banshee-1</code>. If you use <code>banshee</code>, you&#8217;ll get the old Banshee 0.13.2 from universe repository.</p>
<p>And, enjoy your new Banshee <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/justalittlebrain.wordpress.com/175/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/justalittlebrain.wordpress.com/175/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justalittlebrain.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justalittlebrain.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justalittlebrain.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justalittlebrain.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justalittlebrain.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justalittlebrain.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justalittlebrain.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justalittlebrain.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justalittlebrain.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justalittlebrain.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justalittlebrain.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justalittlebrain.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justalittlebrain.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justalittlebrain.wordpress.com/175/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=175&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justalittlebrain.wordpress.com/2008/05/28/banshee-10-beta-2-in-ubuntu-804-hardy-heron/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17b185ab2d1b7dcad3f488040f76385c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kriwil</media:title>
		</media:content>
	</item>
		<item>
		<title>Check Your System Compiz Capability</title>
		<link>http://justalittlebrain.wordpress.com/2008/05/20/check-your-system-compiz-capability/</link>
		<comments>http://justalittlebrain.wordpress.com/2008/05/20/check-your-system-compiz-capability/#comments</comments>
		<pubDate>Tue, 20 May 2008 16:49:30 +0000</pubDate>
		<dc:creator>kriwil</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[compiz]]></category>

		<guid isPermaLink="false">http://littlebrain.org/?p=169</guid>
		<description><![CDATA[There is a great script created to check whether your system is compiz ready or not. It&#8217;s called Compiz-Check. Gathering information about your system... Distribution: Ubuntu 8.04 Desktop environment: GNOME Graphics chip: nVidia Corporation G70 [GeForce 7300 GT] (rev a1) Driver in use: nvidia Rendering method: Nvidia Checking if it's possible to run Compiz on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=169&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There is a great script created to check whether your system is compiz ready or not. It&#8217;s called <a href="http://forlong.blogage.de/article/pages/Compiz-Check">Compiz-Check</a>.</p>
<pre>Gathering information about your system...

 Distribution:          Ubuntu 8.04
 Desktop environment:   GNOME
 Graphics chip:         nVidia Corporation G70 [GeForce 7300 GT] (rev a1)
 Driver in use:         nvidia
 Rendering method:      Nvidia

Checking if it's possible to run Compiz on your system...

 Checking for texture_from_pixmap...               [ OK ]
 Checking for non power of two support...          [ OK ]
 Checking for composite extension...               [ OK ]
 Checking for FBConfig...                          [ OK ]

Checking for hardware/setup problems...            [ OK ]</pre>
<p>If you got [ OK ] in every check, like mine, then your system is ready to run compiz. If something fails, go check the <a href="http://forum.compiz-fusion.org/">forum</a> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/justalittlebrain.wordpress.com/169/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/justalittlebrain.wordpress.com/169/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justalittlebrain.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justalittlebrain.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justalittlebrain.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justalittlebrain.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justalittlebrain.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justalittlebrain.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justalittlebrain.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justalittlebrain.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justalittlebrain.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justalittlebrain.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justalittlebrain.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justalittlebrain.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justalittlebrain.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justalittlebrain.wordpress.com/169/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=169&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justalittlebrain.wordpress.com/2008/05/20/check-your-system-compiz-capability/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17b185ab2d1b7dcad3f488040f76385c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kriwil</media:title>
		</media:content>
	</item>
		<item>
		<title>How To Install Oracle XE in Ubuntu 64 Bit</title>
		<link>http://justalittlebrain.wordpress.com/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/</link>
		<comments>http://justalittlebrain.wordpress.com/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/#comments</comments>
		<pubDate>Mon, 12 May 2008 15:42:20 +0000</pubDate>
		<dc:creator>kriwil</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://littlebrain.org/?p=163</guid>
		<description><![CDATA[While you&#8217;re thinking by installing 64 bit linux you&#8217;re standing in the edge of new technology era, it sucks knowing our 64 bit system is less supported than the old 32 bit system. We have to install 32 bit flash since Adobe didn&#8217;t have the 64 bit one. We have to install 32 bit oracle [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=163&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>While you&#8217;re thinking by installing 64 bit linux you&#8217;re standing in the edge of new technology era, it sucks knowing our 64 bit system is less supported than the old 32 bit system. We have to install 32 bit flash since Adobe didn&#8217;t have the 64 bit one. We have to install 32 bit oracle xe since Oracle also didn&#8217;t have 64 bit version.</p>
<p>And now I will try explain how to install oracle xe into the 64 bit system, ubuntu way. Of course we couldn&#8217;t follow the <a href="http://www.oracle.com/technology/tech/linux/install/xe-on-kubuntu.html">guide from oracle</a>, since apt-get will detect our system architecture and we won&#8217;t get the 32 bit packages list.</p>
<p>Before we start, make sure you have the 32 bit library installed. It&#8217;s in reposity, all you have to do is</p>
<p><code>sudo apt-get install libc6-i386</code></p>
<p>The next thing to do is download the files needed. It&#8217;s <a href="http://oss.oracle.com/debian/dists/unstable/main/binary-i386/libaio_0.3.104-1_i386.deb">libaio_0.3.104-1_i386.deb</a> and <a href="http://oss.oracle.com/debian/dists/unstable/non-free/binary-i386/oracle-xe-universal_10.2.0.1-1.1_i386.deb">oracle-xe-universal_10.2.0.1-1.1_i386.deb</a>. You could use wget for this</p>
<p><code>wget -c http://oss.oracle.com/debian/dists/unstable/main/binary-i386/libaio_0.3.104-1_i386.deb http://oss.oracle.com/debian/dists/unstable/non-free/binary-i386/oracle-xe-universal_10.2.0.1-1.1_i386.deb</code></p>
<p>After your downloads are finished, we continue to the main issue, forcing the package to be installed. You could try to install with usual dpkg -i first to make sure your system is really 64 bit.</p>
<p><code>sudo dpkg -i libaio_0.3.104-1_i386.deb</code></p>
<p>You&#8217;ll get error,</p>
<p><code>dpkg: error processing libaio_0.3.104-1_i386.deb (--install):<br />
package architecture (i386) does not match system (amd64)<br />
Errors were encountered while processing:<br />
libaio_0.3.104-1_i386.deb</code></p>
<p><em>Added guide from <strong>Venka A</strong></em></p>
<p><code>sudo apt-get install bc</code></p>
<p>To force the installation, do these</p>
<p><code>dpkg -i --force-architecture libaio_0.3.104-1_i386.deb</code><br />
<code>dpkg -i --force-architecture oracle-xe-universal_10.2.0.1-1.1_i386.deb</code></p>
<p>And after the installation is finished, you need to configure it</p>
<p><code>sudo /etc/init.d/oracle-xe configure</code></p>
<p>and edit your ~/.bashrc</p>
<p><code>ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server<br />
PATH=$PATH:$ORACLE_HOME/bin<br />
export ORACLE_HOME<br />
export ORACLE_SID=XE<br />
export PATH</code></p>
<p>And, voila, the oracle xe is ready. You could go to <a href="http://127.0.0.1:8080/apex">http://127.0.0.1:8080/apex</a> from your browser.</p>
<p>References:</p>
<ul>
<li><a href="http://dballester.blogspot.com/2007/04/oracle-xe-en-ubuntu-edgy-amd64-em64t.html">Oracle XE en Ubuntu Edgy amd64 / em64t ( x86-64 )</a></li>
<li><a href="https://help.ubuntu.com/community/Oracle10g#head-310ffbf270536395fae3c8f74c7817a60ef7c3f1">Oracle Express Edition / on Ubuntu Edgy 6.10</a></li>
<li><a href="http://www.oracle.com/technology/tech/linux/install/xe-on-kubuntu.html">Installing Oracle Database XE on Debian, Ubuntu, and Kubuntu</a></li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/justalittlebrain.wordpress.com/163/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/justalittlebrain.wordpress.com/163/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justalittlebrain.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justalittlebrain.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justalittlebrain.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justalittlebrain.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justalittlebrain.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justalittlebrain.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justalittlebrain.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justalittlebrain.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justalittlebrain.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justalittlebrain.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justalittlebrain.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justalittlebrain.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justalittlebrain.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justalittlebrain.wordpress.com/163/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=163&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justalittlebrain.wordpress.com/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/feed/</wfw:commentRss>
		<slash:comments>282</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17b185ab2d1b7dcad3f488040f76385c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kriwil</media:title>
		</media:content>
	</item>
		<item>
		<title>Shorcuts for Managing Window(s)</title>
		<link>http://justalittlebrain.wordpress.com/2008/05/11/shorcuts-for-managing-windows/</link>
		<comments>http://justalittlebrain.wordpress.com/2008/05/11/shorcuts-for-managing-windows/#comments</comments>
		<pubDate>Sun, 11 May 2008 09:24:48 +0000</pubDate>
		<dc:creator>kriwil</dc:creator>
				<category><![CDATA[information]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[shortcut]]></category>
		<category><![CDATA[window]]></category>

		<guid isPermaLink="false">http://littlebrain.org/?p=157</guid>
		<description><![CDATA[Since I&#8217;m not using any window decorator for my gnome setup, I always count on keyboard and mouse combination shortcut for managing my windows. These are my regularly used shortcuts when I&#8217;m working. Alt + mouse button 1 (left mouse button): move window. Remember this, and your life would be lot easier. Seriously. I even [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=157&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href='http://scrnshots.com/users/kriwil/screenshots/2863'><img src="http://littlebrain.org/wp-content/uploads/2008/05/20080507-300x240.png" alt="" title="my current desktop" width="300" height="240" class="aligncenter size-medium wp-image-158" /></a></p>
<p>Since I&#8217;m not using any window decorator for my <a href="http://www.scrnshots.com/users/kriwil/screenshots/2863">gnome setup</a>, I always count on keyboard and mouse combination shortcut for managing my windows. These are my regularly used shortcuts when I&#8217;m working.</p>
<ul>
<li>Alt + mouse button 1 (left mouse button): move window. Remember this, and your life would be lot easier. Seriously. I even bring this habbit to MS Windows. You don&#8217;t need to move your mouse to title bar and click it there to move the window. Just hold Alt button, and click anywhere inside the window, and you could move it anywhere.</li>
<li>Ctrl + Alt + d: show desktop. Easily &#8220;minimize&#8221; all your opened windows. Very useful when your desktop is cluttered and you want to open new application.</li>
<li>Alt + F9: minimize current window.</li>
<li>Alt + F8: resize current window. Having no window decorator makes resizing window a little bid harder. But Alt + F8 really helps a lot.</li>
<li>Alt + F7: move current window.</li>
<li>Alt + F10: maximize current window.</li>
<li>Alt + F5: unmaximize current window.</li>
<li>Alt + F4: close window. Some application could also use Ctrl + W, Alt + Q.</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/justalittlebrain.wordpress.com/157/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/justalittlebrain.wordpress.com/157/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justalittlebrain.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justalittlebrain.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justalittlebrain.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justalittlebrain.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justalittlebrain.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justalittlebrain.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justalittlebrain.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justalittlebrain.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justalittlebrain.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justalittlebrain.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justalittlebrain.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justalittlebrain.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justalittlebrain.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justalittlebrain.wordpress.com/157/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=157&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justalittlebrain.wordpress.com/2008/05/11/shorcuts-for-managing-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17b185ab2d1b7dcad3f488040f76385c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kriwil</media:title>
		</media:content>

		<media:content url="http://littlebrain.org/wp-content/uploads/2008/05/20080507-300x240.png" medium="image">
			<media:title type="html">my current desktop</media:title>
		</media:content>
	</item>
		<item>
		<title>OpenOfffice.org 3.0 Beta</title>
		<link>http://justalittlebrain.wordpress.com/2008/05/08/openoffficeorg-30-beta/</link>
		<comments>http://justalittlebrain.wordpress.com/2008/05/08/openoffficeorg-30-beta/#comments</comments>
		<pubDate>Thu, 08 May 2008 00:16:39 +0000</pubDate>
		<dc:creator>kriwil</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[openoffice]]></category>

		<guid isPermaLink="false">http://littlebrain.org/?p=125</guid>
		<description><![CDATA[OpenOffice.org 3.0 Beta is ready for testing. OpenOffice.org 3.0 will support the upcoming OpenDocument Format (ODF) 1.2 standard, and is capable of opening files created with MS-Office 2007 or MS-Office 2008 for Mac OS X (.docx, .xlsx, .pptx, etc.). This is in addition to read and write support for the MS-Office binary file formats (.doc, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=125&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://marketing.openoffice.org/3.0/announcementbeta.html">OpenOffice.org 3.0 Beta is ready for testing</a>.</p>
<blockquote><p>OpenOffice.org 3.0 will support the upcoming OpenDocument Format (ODF) 1.2 standard, and is capable of opening files created with MS-Office 2007 or MS-Office 2008 for Mac OS X (.docx, .xlsx, .pptx, etc.). This is in addition to read and write support for the MS-Office binary file formats (.doc, .xls, .ppt, etc.).</p></blockquote>
<p>See more <a href="http://marketing.openoffice.org/3.0/featurelistbeta.html">features in the website</a>, or go <a href="http://download.openoffice.org/3.0beta/">try yourself</a>.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/justalittlebrain.wordpress.com/125/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/justalittlebrain.wordpress.com/125/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justalittlebrain.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justalittlebrain.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justalittlebrain.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justalittlebrain.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justalittlebrain.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justalittlebrain.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justalittlebrain.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justalittlebrain.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justalittlebrain.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justalittlebrain.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justalittlebrain.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justalittlebrain.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justalittlebrain.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justalittlebrain.wordpress.com/125/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=125&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justalittlebrain.wordpress.com/2008/05/08/openoffficeorg-30-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17b185ab2d1b7dcad3f488040f76385c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kriwil</media:title>
		</media:content>
	</item>
		<item>
		<title>Is Ubuntu 8.04 Ready for Non-Tech Savvy?</title>
		<link>http://justalittlebrain.wordpress.com/2008/04/28/is-ubuntu-804-ready-for-non-tech-savvy/</link>
		<comments>http://justalittlebrain.wordpress.com/2008/04/28/is-ubuntu-804-ready-for-non-tech-savvy/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 02:44:53 +0000</pubDate>
		<dc:creator>kriwil</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[experiment]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://littlebrain.org/?p=59</guid>
		<description><![CDATA[Maybe it&#8217;s very suprising to know that very easy task could be very complicated when it comes to non-tech user. Apparently, what we think easy enough is actually hard to do when the information isn&#8217;t clear. Content Consumer had a great experiment on how regular non-tech user (in his case, his girlfriend) doing things in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=59&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Maybe it&#8217;s very suprising to know that very easy task could be very complicated when it comes to non-tech user. Apparently, what we think easy enough is actually hard to do when the information isn&#8217;t clear. <a href="http://contentconsumer.wordpress.com">Content Consumer</a> had a <a href="http://contentconsumer.wordpress.com/2008/04/27/is-ubuntu-useable-enough-for-my-girlfriend/">great experiment on how regular non-tech user (in his case, his girlfriend) doing things in Ubuntu 8.04</a>.</p>
<blockquote><p>The main issue with the desktop experience is that the geeky programmers and designers assume too much from the average user. They assume the user knows about the way in which programs are installed, or how the file system is set out. The average user will not go out of their way to google for help or even read the associated documentation that comes with Ubuntu and its default software. The little information pop-ups and guided wizards are critical to explaining how the user can accomplish the basic tasks they most probably are trying to do.<br />
&#8211; <a href="http://contentconsumer.wordpress.com/2008/04/27/is-ubuntu-useable-enough-for-my-girlfriend/">The Great Ubuntu-Girlfriend Experiment</a></p></blockquote>
<p>Great article, and definitely great input for ubuntu development team.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/justalittlebrain.wordpress.com/59/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/justalittlebrain.wordpress.com/59/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justalittlebrain.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justalittlebrain.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justalittlebrain.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justalittlebrain.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justalittlebrain.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justalittlebrain.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justalittlebrain.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justalittlebrain.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justalittlebrain.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justalittlebrain.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justalittlebrain.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justalittlebrain.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justalittlebrain.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justalittlebrain.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=59&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justalittlebrain.wordpress.com/2008/04/28/is-ubuntu-804-ready-for-non-tech-savvy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17b185ab2d1b7dcad3f488040f76385c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kriwil</media:title>
		</media:content>
	</item>
		<item>
		<title>WebKit GTK+ Port</title>
		<link>http://justalittlebrain.wordpress.com/2008/04/25/webkit-gtk-port/</link>
		<comments>http://justalittlebrain.wordpress.com/2008/04/25/webkit-gtk-port/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 14:39:16 +0000</pubDate>
		<dc:creator>kriwil</dc:creator>
				<category><![CDATA[information]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[acid3]]></category>
		<category><![CDATA[epiphany]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[gecko]]></category>
		<category><![CDATA[gtk]]></category>
		<category><![CDATA[khtml]]></category>
		<category><![CDATA[konqueror]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://littlebrain.org/?p=58</guid>
		<description><![CDATA[Epiphany is always my browser-of-choise for my daily internet activities. It&#8217;s build on the real GTK, it&#8217;s simple, it&#8217;s light, and it&#8217;s integrated to Gnome. It is the konqueror of gnome. I&#8217;ve never had any memory leak when using Epiphany. Epiphany is definitely fulfil my needs. I don&#8217;t need Firefox. Firefox is used only when [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=58&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gnome.org/projects/epiphany/">Epiphany</a> is always my browser-of-choise for my daily internet activities. It&#8217;s build on the <strong>real</strong> GTK, it&#8217;s simple, it&#8217;s light, and it&#8217;s integrated to Gnome. It is the konqueror of gnome. I&#8217;ve never had any memory leak when using Epiphany.</p>
<p>Epiphany is definitely fulfil my needs. I don&#8217;t need Firefox. Firefox is used only when I need it&#8217;s awesome Web Developer plugin (and Firebug, but now it didn&#8217;t work on Firefox 3 beta 5). I only use firefox when I need to design some html pages. Other than that, Epiphany is the answer. What? <a href="https://addons.mozilla.org/en-US/firefox/addon/1865">Adblock</a>? Oh epiphany does have <a href="http://live.gnome.org/Epiphany/AdBlockExtension">adblock</a>.</p>
<p>But there is one think I always want to see in epiphany, the ability to choose rendering engine. Konqueror has this option. Konqueror user could pick <a href="http://en.wikipedia.org/wiki/Gecko_(layout_engine)">Gecko</a> or <a href="http://en.wikipedia.org/wiki/KHTML">KHTML</a> as the rendering engine. And now, KDE4 has webkit-enabled konqueror. <a href="http://en.wikipedia.org/wiki/WebKit">Webkit</a> itself is KHTML fork, and been said to be faster and better than Gecko (citation needed). Who doesn&#8217;t want faster browsing experience?</p>
<p>And now my dream is coming. Apparently, <a href="http://live.gnome.org/WebKitGtk">WebKit is being ported to GTK+</a>. And if that is not good enough, it passed <a href="http://acid3.acidtests.org/">acid3</a> test, <a href="http://www.atoker.com/blog/2008/04/21/acid3-final-touches/">100/100</a>. For a comparison, Epiphany using Gecko 1.9 only scored 71/100.</p>
<p>Nice job for everyone involved. I can&#8217;t wait to use it <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/justalittlebrain.wordpress.com/58/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/justalittlebrain.wordpress.com/58/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justalittlebrain.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justalittlebrain.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justalittlebrain.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justalittlebrain.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justalittlebrain.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justalittlebrain.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justalittlebrain.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justalittlebrain.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justalittlebrain.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justalittlebrain.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justalittlebrain.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justalittlebrain.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justalittlebrain.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justalittlebrain.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justalittlebrain.wordpress.com&amp;blog=31033593&amp;post=58&amp;subd=justalittlebrain&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justalittlebrain.wordpress.com/2008/04/25/webkit-gtk-port/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17b185ab2d1b7dcad3f488040f76385c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kriwil</media:title>
		</media:content>
	</item>
	</channel>
</rss>
