<?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>DjDarkman&#039;s Blog</title>
	<atom:link href="http://djdarkman.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://djdarkman.wordpress.com</link>
	<description>What I think.</description>
	<lastBuildDate>Wed, 18 Nov 2009 01:45:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='djdarkman.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>DjDarkman&#039;s Blog</title>
		<link>http://djdarkman.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://djdarkman.wordpress.com/osd.xml" title="DjDarkman&#039;s Blog" />
	<atom:link rel='hub' href='http://djdarkman.wordpress.com/?pushpress=hub'/>
		<item>
		<title>File uploads and CKEditor</title>
		<link>http://djdarkman.wordpress.com/2009/11/18/file-uploads-and-ckeditor/</link>
		<comments>http://djdarkman.wordpress.com/2009/11/18/file-uploads-and-ckeditor/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 01:45:43 +0000</pubDate>
		<dc:creator>djdarkman</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://djdarkman.wordpress.com/?p=102</guid>
		<description><![CDATA[I&#8217;m personally very satisfied with CKEditor 3.0, it became a very polished version of FCKEditor with a new API, but there is one heavy downside of it all: it isn&#8217;t documented. When I installed CKEditor on a site, it was all good until I noticed that the file upload is missing and there is no [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djdarkman.wordpress.com&amp;blog=9621858&amp;post=102&amp;subd=djdarkman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m personally very satisfied with CKEditor 3.0, it became a very polished version of FCKEditor with a new API, but there is one heavy downside of it all: it isn&#8217;t documented. When I installed CKEditor on a site, it was all good until I noticed that the file upload is missing and there is no way to configure it server side like there was in FCKEDitor, so I googled and found this: <a href="http://docs.cksource.com/CKEditor_3.x/Developers_Guide/File_Browser_(Uploader)">http://docs.cksource.com/CKEditor_3.x/Developers_Guide/File_Browser_(Uploader)</a>, this link was good because I realized that I need to write the file upload server side component myself, unless of course I want to use CKFinder, which I think has way too many features.</p>
<p>Writing my own upload PHP script isn&#8217;t all that bad, since I can do things that CKEditor/CKFinder wouldn&#8217;t do otherwise, like image resize. After actually writing the script I realized that it works, but it doesn&#8217;t pass the dialog the link. I noticed, that my server side JavaScripts actually get parsed, so I figured, why not write this simple feature myself. After 1-2 hours of finding out how the whole CKEditor plugin/dialog system works I found out that for some reason the script I generate server side doesn&#8217;t see my global variables in the document, not even, if I use the window object, so I figured, this could mean only one thing: this whole thing runs in an IFrame, but not only that, <a href="http://docs.cksource.com/CKEditor_3.x/Developers_Guide/File_Browser_(Uploader)/Custom_File_Browser">there is a strange way that this should work</a>, basically instead of the AJAX style it uses IFrames and JavaScript callbacks .</p>
<p>After realizing all this, I finally found the proper solution <a href="http://zerokspot.com/weblog/2009/09/09/custom-filebrowser-callbacks-ckeditor/">here</a>, which looks like this(if of course we are using PHP server side):</p>
<pre>&lt;script type="text/javascript"&gt;
window.parent.CKEDITOR.tools.callFunction( &lt;?php echo $_GET['CKEditorFuncNum']?&gt;, '&lt;?php echo "$uploaded_file_url"?&gt;' );
&lt;/script&gt;
This is what is needed to be generated server side for the upload dialog to function correctly, absolutely not a simple concept but only needed here.</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/djdarkman.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/djdarkman.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/djdarkman.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/djdarkman.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/djdarkman.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/djdarkman.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/djdarkman.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/djdarkman.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/djdarkman.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/djdarkman.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/djdarkman.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/djdarkman.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/djdarkman.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/djdarkman.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djdarkman.wordpress.com&amp;blog=9621858&amp;post=102&amp;subd=djdarkman&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://djdarkman.wordpress.com/2009/11/18/file-uploads-and-ckeditor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/928644eed7b0194a13ea0d030846b62d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">djdarkman</media:title>
		</media:content>
	</item>
		<item>
		<title>QuantZ under Linux!</title>
		<link>http://djdarkman.wordpress.com/2009/11/09/quantz-under-linux/</link>
		<comments>http://djdarkman.wordpress.com/2009/11/09/quantz-under-linux/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 22:57:50 +0000</pubDate>
		<dc:creator>djdarkman</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://djdarkman.wordpress.com/?p=100</guid>
		<description><![CDATA[It looks like smaller game companies see the point in developing for the Linux platform, well Gamerizon has joined this camp, and they made a Linux version of their upcoming game QuantZ.  The game comes at a descent cost(12.99$) and is very enjoyable and innovative. They made the Linux version because there was demand for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djdarkman.wordpress.com&amp;blog=9621858&amp;post=100&amp;subd=djdarkman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It looks like smaller game companies see the point in developing for the Linux platform, well Gamerizon has joined this camp, and they made a Linux version of their upcoming game QuantZ.  The game comes at a descent cost(12.99$) and is very enjoyable and innovative. They made the Linux version because there was demand for it, and I am personally considering on buying it because it looks like something that&#8217;s worth the price.</p>
<p><a href="http://www.reddit.com/r/linux_gaming/comments/a2kux/quantz_ported_to_linux_please_help_us_test_the/">The original post was made on reddit</a>, and here is a little video that shows what&#8217;s the game like:</p>
<span style="text-align:center; display: block;"><a href="http://djdarkman.wordpress.com/2009/11/09/quantz-under-linux/"><img src="http://img.youtube.com/vi/5kWgDt1W2ZQ/2.jpg" alt="" /></a></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/djdarkman.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/djdarkman.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/djdarkman.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/djdarkman.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/djdarkman.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/djdarkman.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/djdarkman.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/djdarkman.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/djdarkman.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/djdarkman.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/djdarkman.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/djdarkman.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/djdarkman.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/djdarkman.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djdarkman.wordpress.com&amp;blog=9621858&amp;post=100&amp;subd=djdarkman&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://djdarkman.wordpress.com/2009/11/09/quantz-under-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/928644eed7b0194a13ea0d030846b62d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">djdarkman</media:title>
		</media:content>
	</item>
		<item>
		<title>KDE icons in HINET PROPERTY MANAGEMENT SYSTEM</title>
		<link>http://djdarkman.wordpress.com/2009/11/03/kde-icons-in-hinet-property-management-system/</link>
		<comments>http://djdarkman.wordpress.com/2009/11/03/kde-icons-in-hinet-property-management-system/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 08:55:21 +0000</pubDate>
		<dc:creator>djdarkman</dc:creator>
				<category><![CDATA[KDE]]></category>

		<guid isPermaLink="false">http://djdarkman.wordpress.com/?p=93</guid>
		<description><![CDATA[KDE(Oxygen) icons are widely used by people outside of KDE, this is just a recent discovery:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djdarkman.wordpress.com&amp;blog=9621858&amp;post=93&amp;subd=djdarkman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>KDE(Oxygen) icons are widely used by people outside of KDE, this is just a recent discovery:</p>
<p><a href="http://djdarkman.files.wordpress.com/2009/11/kde.png"><img class="alignnone size-full wp-image-94" title="kde" src="http://djdarkman.files.wordpress.com/2009/11/kde.png?w=450&#038;h=296" alt="kde" width="450" height="296" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/djdarkman.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/djdarkman.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/djdarkman.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/djdarkman.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/djdarkman.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/djdarkman.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/djdarkman.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/djdarkman.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/djdarkman.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/djdarkman.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/djdarkman.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/djdarkman.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/djdarkman.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/djdarkman.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djdarkman.wordpress.com&amp;blog=9621858&amp;post=93&amp;subd=djdarkman&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://djdarkman.wordpress.com/2009/11/03/kde-icons-in-hinet-property-management-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/928644eed7b0194a13ea0d030846b62d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">djdarkman</media:title>
		</media:content>

		<media:content url="http://djdarkman.files.wordpress.com/2009/11/kde.png" medium="image">
			<media:title type="html">kde</media:title>
		</media:content>
	</item>
		<item>
		<title>Richard Stallman dances to Soulja Boy MIT style</title>
		<link>http://djdarkman.wordpress.com/2009/10/27/richard-stallman-dances-to-soulja-boy-mit-style/</link>
		<comments>http://djdarkman.wordpress.com/2009/10/27/richard-stallman-dances-to-soulja-boy-mit-style/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 22:04:47 +0000</pubDate>
		<dc:creator>djdarkman</dc:creator>
				<category><![CDATA[LOL]]></category>

		<guid isPermaLink="false">http://djdarkman.wordpress.com/?p=89</guid>
		<description><![CDATA[I think the video requires no introduction:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djdarkman.wordpress.com&amp;blog=9621858&amp;post=89&amp;subd=djdarkman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I think the video requires no introduction:</p>
<span style="text-align:center; display: block;"><a href="http://djdarkman.wordpress.com/2009/10/27/richard-stallman-dances-to-soulja-boy-mit-style/"><img src="http://img.youtube.com/vi/Pube5Aynsls/2.jpg" alt="" /></a></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/djdarkman.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/djdarkman.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/djdarkman.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/djdarkman.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/djdarkman.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/djdarkman.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/djdarkman.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/djdarkman.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/djdarkman.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/djdarkman.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/djdarkman.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/djdarkman.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/djdarkman.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/djdarkman.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djdarkman.wordpress.com&amp;blog=9621858&amp;post=89&amp;subd=djdarkman&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://djdarkman.wordpress.com/2009/10/27/richard-stallman-dances-to-soulja-boy-mit-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/928644eed7b0194a13ea0d030846b62d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">djdarkman</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Chrome/Chromium is on the path to perfection</title>
		<link>http://djdarkman.wordpress.com/2009/10/25/google-chrome-chromium-is-on-the-path-to-perfection/</link>
		<comments>http://djdarkman.wordpress.com/2009/10/25/google-chrome-chromium-is-on-the-path-to-perfection/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 01:47:31 +0000</pubDate>
		<dc:creator>djdarkman</dc:creator>
				<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://djdarkman.wordpress.com/?p=87</guid>
		<description><![CDATA[It fascinates me how good Google Chrome has become, a few months back I considered it to be only a proof of concept that browsers shouldn&#8217;t be slow, but now it&#8217;s basically what a browser should be, the only weak spot it has is the extension part, but I bet that the developers are working hard on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djdarkman.wordpress.com&amp;blog=9621858&amp;post=87&amp;subd=djdarkman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It fascinates me how good Google Chrome has become, a few months back I considered it to be only a proof of concept that browsers shouldn&#8217;t be slow, but now it&#8217;s basically what a browser should be, the only weak spot it has is the extension part, but I bet that the developers are working hard on it.</p>
<p><img class="alignnone" title="Google Chrome" src="http://www.hit.ro/lib/uploads/image/vechi/2008-12/gal_mare_chrome-int.jpg" alt="" width="400" height="326" /></p>
<p>Now what me and a lot of people didn&#8217;t get is why did the Chrome developers choose GTK over Qt on the Linux port without any real reason, they should have went with Qt it would have suited better the purpose of Chrome, because what I like is that Chrome tries to be really platform independent, it tries to avoid platform specific things as much as possible, which is a very good thing, I agree that the browser should have a world of it&#8217;s own and not to be tied with the operating system.</p>
<p>Another major innovation that I think Chrome pioneered, is the compactness of the browser&#8217;s user interface, they god rid of those useless menu bars and made used the title bars as a place for tabs, this conserves space and makes the browser a lot more clean and easy to use.</p>
<p>The Google Chrome team expressed that they wanted to do a browser from scratch, and do it the right way this time because most browsers are pretty much stuck in the last century, they highlighted that back then there were web pages, but now there are web applications, that is why they did thing differently than other modern browsers. They fixed a lot of issues that have plagued other browsers for years, like speed, security and stability.</p>
<p>Although Chrome is the best for browsing, it lacks extensions and developer tools, that I was familiar with from Firefox, so I still use Firefox for development, because it beats most browsers when it comes to developing.</p>
<p>The bottom line is, give it a try, it&#8217;s worth the time.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/djdarkman.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/djdarkman.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/djdarkman.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/djdarkman.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/djdarkman.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/djdarkman.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/djdarkman.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/djdarkman.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/djdarkman.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/djdarkman.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/djdarkman.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/djdarkman.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/djdarkman.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/djdarkman.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djdarkman.wordpress.com&amp;blog=9621858&amp;post=87&amp;subd=djdarkman&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://djdarkman.wordpress.com/2009/10/25/google-chrome-chromium-is-on-the-path-to-perfection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/928644eed7b0194a13ea0d030846b62d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">djdarkman</media:title>
		</media:content>

		<media:content url="http://www.hit.ro/lib/uploads/image/vechi/2008-12/gal_mare_chrome-int.jpg" medium="image">
			<media:title type="html">Google Chrome</media:title>
		</media:content>
	</item>
		<item>
		<title>Update on the Karmic MSI Brightness bug</title>
		<link>http://djdarkman.wordpress.com/2009/10/24/update-on-the-karmic-msi-brightness-bug/</link>
		<comments>http://djdarkman.wordpress.com/2009/10/24/update-on-the-karmic-msi-brightness-bug/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 23:52:25 +0000</pubDate>
		<dc:creator>djdarkman</dc:creator>
				<category><![CDATA[Launchpad]]></category>
		<category><![CDATA[Netbook]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://djdarkman.wordpress.com/?p=84</guid>
		<description><![CDATA[Good news is the dev. team is taking matters seriously, bad news, that my bug duplicate status, which I find unfair, since it was reported earlier This is considered the &#8216;original&#8217; bug. They even have a patch, which tough only works for KDE, but since I&#8217;m still not used to KDE 4&#8242;s look and feel, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djdarkman.wordpress.com&amp;blog=9621858&amp;post=84&amp;subd=djdarkman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Good news is the dev. team is taking matters seriously, bad news, that my bug duplicate status, which I find unfair, since it was reported earlier <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="https://bugs.launchpad.net/ubuntu/+source/gnome-power-manager/+bug/415023">This is considered the &#8216;original&#8217; bug.</a></p>
<p>They even have a patch, which tough only works for KDE, but since I&#8217;m still not used to KDE 4&#8242;s look and feel, so that&#8217;s out of the question. So I guess that they are working on it, and they said that even it it doesn&#8217;t get fixed they will at least mention it in the release notes.</p>
<p>Keep up the good work guys!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/djdarkman.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/djdarkman.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/djdarkman.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/djdarkman.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/djdarkman.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/djdarkman.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/djdarkman.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/djdarkman.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/djdarkman.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/djdarkman.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/djdarkman.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/djdarkman.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/djdarkman.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/djdarkman.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djdarkman.wordpress.com&amp;blog=9621858&amp;post=84&amp;subd=djdarkman&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://djdarkman.wordpress.com/2009/10/24/update-on-the-karmic-msi-brightness-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/928644eed7b0194a13ea0d030846b62d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">djdarkman</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu Karmic has strange priorities</title>
		<link>http://djdarkman.wordpress.com/2009/10/24/ubuntu-karmic-has-strange-priorities/</link>
		<comments>http://djdarkman.wordpress.com/2009/10/24/ubuntu-karmic-has-strange-priorities/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 19:17:57 +0000</pubDate>
		<dc:creator>djdarkman</dc:creator>
				<category><![CDATA[Netbook]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://djdarkman.wordpress.com/?p=82</guid>
		<description><![CDATA[To be clear, I have 3 machines and all of them are running Ubuntu Karmic, but I am being a little annoyed about how are bug reports treated at Launchpad, while it has some really neat features it&#8217;s very overcomplicated in some places, I still have trouble marking affected packages, but that aside the biggest [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djdarkman.wordpress.com&amp;blog=9621858&amp;post=82&amp;subd=djdarkman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To be clear, I have 3 machines and all of them are running Ubuntu Karmic, but I am being a little annoyed about how are bug reports treated at Launchpad, while it has some really neat features it&#8217;s very overcomplicated in some places, I still have trouble marking affected packages, but that aside the biggest problem is that some bugs simply don&#8217;t get attention, I don&#8217;t mean getting fixed, I mean getting attention. I posted some really serious bugs a few months ago, and they still did not get addressed, it&#8217;s like the developers don&#8217;t even know about them.</p>
<p>There are two particular bugs that I think that should have been addressed long ago:</p>
<p>1) <a href="https://bugs.launchpad.net/xsplash/+bug/413399">[Karmic] [i945] Screen flickers due to constantly changing brightness level</a></p>
<p>Reported on: 2009-08-14</p>
<span style="text-align:center; display: block;"><a href="http://djdarkman.wordpress.com/2009/10/24/ubuntu-karmic-has-strange-priorities/"><img src="http://img.youtube.com/vi/ipD2rQwJpM0/2.jpg" alt="" /></a></span>
<p>2) <a href="https://bugs.launchpad.net/ubuntu/+source/linux/+bug/425755">[Karmic] USB hotplug system doesn&#8217;t detect anything after boot</a></p>
<p>Reported on: 2009-09-07</p>
<p>None of these seemed to get the deserved priority and Karmic is going to be released but it will fail on a whole product line, well at least for the general consumers, I still love and use Ubuntu, but I wish they would take a deep look into issues that matter, it&#8217;s a pity because on the UI front they really outdone themselves. Let&#8217;s hope for the best.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/djdarkman.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/djdarkman.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/djdarkman.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/djdarkman.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/djdarkman.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/djdarkman.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/djdarkman.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/djdarkman.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/djdarkman.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/djdarkman.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/djdarkman.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/djdarkman.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/djdarkman.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/djdarkman.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djdarkman.wordpress.com&amp;blog=9621858&amp;post=82&amp;subd=djdarkman&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://djdarkman.wordpress.com/2009/10/24/ubuntu-karmic-has-strange-priorities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/928644eed7b0194a13ea0d030846b62d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">djdarkman</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world</title>
		<link>http://djdarkman.wordpress.com/2009/10/24/hello-world/</link>
		<comments>http://djdarkman.wordpress.com/2009/10/24/hello-world/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 18:51:26 +0000</pubDate>
		<dc:creator>djdarkman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://djdarkman.wordpress.com/?p=80</guid>
		<description><![CDATA[Hello, my name is István Miklós Antal, I&#8217;m a web developer, and I decided to post my opinions on stuff that I care about, I had a previous blog on blogspot, but I wasn&#8217;t comfortable with it so I decided to make a big switch. This blog will be a mixture of highly personal rants and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djdarkman.wordpress.com&amp;blog=9621858&amp;post=80&amp;subd=djdarkman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello, my name is István Miklós Antal, I&#8217;m a web developer, and I decided to post my opinions on stuff that I care about, I had a previous blog on blogspot, but I wasn&#8217;t comfortable with it so I decided to make a big switch. This blog will be a mixture of highly personal rants and highly professional  technical points. I love to hear opinions, but I won&#8217;t make the mistake again of reacting to personal attacks. Stay tuned!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/djdarkman.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/djdarkman.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/djdarkman.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/djdarkman.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/djdarkman.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/djdarkman.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/djdarkman.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/djdarkman.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/djdarkman.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/djdarkman.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/djdarkman.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/djdarkman.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/djdarkman.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/djdarkman.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djdarkman.wordpress.com&amp;blog=9621858&amp;post=80&amp;subd=djdarkman&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://djdarkman.wordpress.com/2009/10/24/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/928644eed7b0194a13ea0d030846b62d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">djdarkman</media:title>
		</media:content>
	</item>
	</channel>
</rss>
