<?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>Debug In Progress</title>
	<atom:link href="http://sixlinux.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sixlinux.wordpress.com</link>
	<description>About Linux, free software, development, web, geek stuff and real life. Oh, and also something important</description>
	<lastBuildDate>Sun, 13 Mar 2011 14:57:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sixlinux.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/53edba0efc83875eaa3dae787ef378f4?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Debug In Progress</title>
		<link>http://sixlinux.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sixlinux.wordpress.com/osd.xml" title="Debug In Progress" />
	<atom:link rel='hub' href='http://sixlinux.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Tutorial: how to write a jQuery plugin</title>
		<link>http://sixlinux.wordpress.com/2011/03/13/tutorial-how-to-write-a-jquery-plugin/</link>
		<comments>http://sixlinux.wordpress.com/2011/03/13/tutorial-how-to-write-a-jquery-plugin/#comments</comments>
		<pubDate>Sun, 13 Mar 2011 14:55:49 +0000</pubDate>
		<dc:creator>Andrea Coronese</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://sixlinux.wordpress.com/?p=139</guid>
		<description><![CDATA[I&#8217;ve been asket to create a simple tutorial on how to write a jQuery plugin, so here it is. Basically, a jQuery plugin is a function appended to jQuery.fn object, something like this: jQuery.fn.pluginName = function() { //Do something weird &#8230; <a href="http://sixlinux.wordpress.com/2011/03/13/tutorial-how-to-write-a-jquery-plugin/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sixlinux.wordpress.com&amp;blog=9305628&amp;post=139&amp;subd=sixlinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">I&#8217;ve been asket to create a simple tutorial on how to write a jQuery plugin, so here it is. Basically, a jQuery plugin is a function appended to jQuery.fn object, something like this:</p>
<pre>jQuery.fn.pluginName = function() {
   //Do something weird here
};</pre>
<p style="text-align:justify;">Anyway, this is a &#8220;strange&#8221; syntax for the most of you who use jQuery with the familiar dollar $ sign. Let&#8217;s pass jQuery to a closure that maps it to the dollar sign, like this:</p>
<pre>(function($) {
   $.fn.pluginName = function() {
      // Do something weird here
   };
})( jQuery );</pre>
<p style="text-align:justify;">You can pass a parameter right into the function() part of the declaration, right after the closure declaration. In the function body we can write actual plugin code. In this scope, the <em>this</em> keyword actually represents the jQuery object the plugin was invoked on, so you would not need to use<em> $(this)</em> again like you would do in other contexts&#8230; but it is still needed to maintain chanability in your plugin in order to pass a modified collection object to next method call. Here is an example of a plugin that underlines all passed elements:</p>
<pre>(function( $ ){

  $.fn.underline = function() {  

    return this.each(function() {

      var $this = $(this);

      $this.css('text-decoration', 'underline');

    });

  };
})( jQuery );</pre>
<p style="text-align:justify;">Now, if you have a bunch of parameters you would like to pass to your plugin, it is not the best practice to do it directly in your plugin function signature. Instead, you can use $.extend to extend predefined default settings. Here&#8217;s an example:</p>
<pre>(function( $ ){

  $.fn.underline = function( options ) {  

    var settings = {
      'parameter1' : 'value1',
      'parameter2' : 'value2'
    };

    return this.each(function() {
      if ( options ) {
        $.extend( settings, options );
      }

      // Plugin code goes here

    });

  };
})( jQuery );</pre>
<p style="text-align:justify;">Pretty easy, uh?</p>
<p style="text-align:justify;">Cheers!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sixlinux.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sixlinux.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sixlinux.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sixlinux.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sixlinux.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sixlinux.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sixlinux.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sixlinux.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sixlinux.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sixlinux.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sixlinux.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sixlinux.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sixlinux.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sixlinux.wordpress.com/139/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sixlinux.wordpress.com&amp;blog=9305628&amp;post=139&amp;subd=sixlinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sixlinux.wordpress.com/2011/03/13/tutorial-how-to-write-a-jquery-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/97b18cf3661e9ecc9ca5129f5456bf87?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Sixpounder</media:title>
		</media:content>
	</item>
		<item>
		<title>HTML5 Drag and Drop API</title>
		<link>http://sixlinux.wordpress.com/2011/02/28/html5-drag-and-drop-api/</link>
		<comments>http://sixlinux.wordpress.com/2011/02/28/html5-drag-and-drop-api/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 14:33:14 +0000</pubDate>
		<dc:creator>Andrea Coronese</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sixlinux.wordpress.com/?p=130</guid>
		<description><![CDATA[Well, after spending an entire day playing with the new DnD html API I can say that it is an incredible disaster. They failed so hard at defining the API that, at first, I tought that W3C was kidding me. &#8230; <a href="http://sixlinux.wordpress.com/2011/02/28/html5-drag-and-drop-api/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sixlinux.wordpress.com&amp;blog=9305628&amp;post=130&amp;subd=sixlinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well, after spending an entire day playing with the new DnD html API I can say that it is an incredible disaster. They failed so hard at defining the API that, at first, I tought that W3C was kidding me. Then I realized that it is all true. Let&#8217;s go deep into this.</p>
<p>I took a look to W3C specifications and then &#8220;Ok, let&#8217;s give it a try! It can&#8217;t be that bad&#8221;. Turned on my computer, opened gedit and here we go, let&#8217;s code something!</p>
<p style="text-align:justify;">First thing I&#8217;m complaining about: there are too many events! Drag, dragstart, dragend, dragenter, dragleave, dragover and, finally, drop. Ok, what the hell is this? Why so many events? Also, where is the difference between dragenter and dragover? I can&#8217;t tell, and I know that this is a young API but these kind of stuff should be simple to read and easy to implement. So, first of all, I would decrement the number of events.</p>
<p style="text-align:justify;">Anyway, I coded something like this:</p>
<p><code><br />
el = document.getElementById('dragelement');<br />
el.addEventListener('dragstart', handleDragStart, false);<br />
el.addEventListener('dragenter', handleDragEnter, false);<br />
el.addEventListener('dragover', handleDragOver, false);<br />
el.addEventListener('dragleave', handleDragLeave, false);<br />
el.addEventListener('drop', handleDrop, false);<br />
el.addEventListener('dragend', handleDragEnd, false);<br />
</code></p>
<p style="text-align:justify;">Where dragelement is this stuff</p>
<p><code> &lt;div id="dragelement" draggable="true"&gt;Hi, drag me somewhere&lt;/div&gt;<br />
</code></p>
<p style="text-align:justify;">Notice the <em>draggable </em>attribute: This is one of the features I actually like because it identifies wich elements in your DOM can be dragged from place to place &#8211; usefull with jquery selectors for instance.</p>
<p style="text-align:justify;">I defined a simple handleDrop function with a simple alert(&#8216;ok, element dropped&#8217;) inside it. Guess what? The event didn&#8217;t fire.</p>
<p style="text-align:justify;">&lt;mumble&gt;Think about it&lt;/mumble&gt;<br />
&lt;rtfm&gt;Read specs, googling around&lt;/rtfm&gt;</p>
<p style="text-align:justify;">For the drop event to fire at all, you have to cancel the defaults of both the dragover and the dragenter event. That&#8217;s great, isn&#8217;t it? You gotta be kidding me.</p>
<p style="text-align:justify;">Moving ahead. Next step is trying to get data from the dragged object. Here&#8217;s the insight of a drop event in chrome:</p>
<p style="text-align:justify;"><a href="http://sixlinux.files.wordpress.com/2011/02/insight.gif"><img class="aligncenter size-full wp-image-132" title="insight" src="http://sixlinux.files.wordpress.com/2011/02/insight.gif?w=530&#038;h=480" alt="" width="530" height="480" /></a></p>
<p style="text-align:justify;">Well, this is a fucking mess. Where is the data about the element I&#8217;m dragging? Then I notice the dataTransfer property. The <em>files</em> field keeps a list of dragged files from your file system and <em>types </em>holds a list of MIME types found in the dragged element, whatever the hell it is. Cool, but to set arbitrary data (e.g. serialized objects from other applications or web pages) there is a method called setData(key,value). Not bad. But I must repeat myself and say that this API design is a fucking mess! To many layers, too many useless things. It is not simple to understand WHERE you place the data and HOW and in WICH EVENT you take it back. In fact, <strong>there was no data at all</strong> provided by the event. Maybe I did something wrong, but the point is <strong>how could I ever make everything just fine at first glance</strong> with this fucking shit!</p>
<p style="text-align:justify;">Plus there are more problems. For instance, Safari is fucked up on this api and you must use the -khtml-user-drag: element; CSS style property on the draggable element for things to work. Thank you, Apple.</p>
<p style="text-align:justify;">For the moment I won&#8217;t spend more time on this because, in my humble opinion, this is a part of HTML specification that should be revised from top to bottom. That&#8217;s it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sixlinux.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sixlinux.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sixlinux.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sixlinux.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sixlinux.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sixlinux.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sixlinux.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sixlinux.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sixlinux.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sixlinux.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sixlinux.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sixlinux.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sixlinux.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sixlinux.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sixlinux.wordpress.com&amp;blog=9305628&amp;post=130&amp;subd=sixlinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sixlinux.wordpress.com/2011/02/28/html5-drag-and-drop-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/97b18cf3661e9ecc9ca5129f5456bf87?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Sixpounder</media:title>
		</media:content>

		<media:content url="http://sixlinux.files.wordpress.com/2011/02/insight.gif" medium="image">
			<media:title type="html">insight</media:title>
		</media:content>
	</item>
		<item>
		<title>Let the community begin</title>
		<link>http://sixlinux.wordpress.com/2011/01/09/let-the-community-begin/</link>
		<comments>http://sixlinux.wordpress.com/2011/01/09/let-the-community-begin/#comments</comments>
		<pubDate>Sun, 09 Jan 2011 15:06:58 +0000</pubDate>
		<dc:creator>Andrea Coronese</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[agot]]></category>
		<category><![CDATA[card]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[site]]></category>

		<guid isPermaLink="false">http://sixlinux.wordpress.com/?p=120</guid>
		<description><![CDATA[In a few days I&#8217;ll publish a site made for the community of AGOT card game players. Since I took this (unpayed) work as a practice on advanced use of jquery and CI I would like to know what you &#8230; <a href="http://sixlinux.wordpress.com/2011/01/09/let-the-community-begin/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sixlinux.wordpress.com&amp;blog=9305628&amp;post=120&amp;subd=sixlinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In a few days I&#8217;ll publish a site made for the community of AGOT card game players. Since I took this (unpayed) work as a practice on advanced use of jquery and CI I would like to know what you guys think about it. For the moment I&#8217;ll just post some features screenshots here.</p>
<p style="text-align:center;"><span style="color:#0000ee;"><a href="http://sixlinux.files.wordpress.com/2011/01/selezione_003.png"><img class="size-full wp-image-124 aligncenter" title="Search" src="http://sixlinux.files.wordpress.com/2011/01/selezione_003.png?w=413&#038;h=338" alt="" width="413" height="338" /></a></span></p>
<p style="text-align:center;">&nbsp;</p>
<p style="text-align:center;"><a href="http://sixlinux.files.wordpress.com/2011/01/selezione_002.png"><a href="http://sixlinux.files.wordpress.com/2011/01/selezione_004.png"><img class="size-full wp-image-127 aligncenter" title="Cards" src="http://sixlinux.files.wordpress.com/2011/01/selezione_004.png?w=510&#038;h=371" alt="" width="510" height="371" /></a></a></p>
<p style="text-align:center;"><a href="http://sixlinux.files.wordpress.com/2011/01/selezione_002.png"><img class="size-large wp-image-122 aligncenter" title="Profile" src="http://sixlinux.files.wordpress.com/2011/01/selezione_002.png?w=430&#038;h=377" alt="" width="430" height="377" /></a></p>
<p style="text-align:left;">Many more features are already presents and I&#8217;m working on them. I&#8217;ll post updates as soon as I can <img src='http://s2.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/sixlinux.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sixlinux.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sixlinux.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sixlinux.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sixlinux.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sixlinux.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sixlinux.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sixlinux.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sixlinux.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sixlinux.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sixlinux.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sixlinux.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sixlinux.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sixlinux.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sixlinux.wordpress.com&amp;blog=9305628&amp;post=120&amp;subd=sixlinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sixlinux.wordpress.com/2011/01/09/let-the-community-begin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/97b18cf3661e9ecc9ca5129f5456bf87?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Sixpounder</media:title>
		</media:content>

		<media:content url="http://sixlinux.files.wordpress.com/2011/01/selezione_003.png" medium="image">
			<media:title type="html">Search</media:title>
		</media:content>

		<media:content url="http://sixlinux.files.wordpress.com/2011/01/selezione_004.png" medium="image">
			<media:title type="html">Cards</media:title>
		</media:content>

		<media:content url="http://sixlinux.files.wordpress.com/2011/01/selezione_002.png?w=1024" medium="image">
			<media:title type="html">Profile</media:title>
		</media:content>
	</item>
		<item>
		<title>Linux and Apple extended USB keyboard</title>
		<link>http://sixlinux.wordpress.com/2011/01/03/linux-and-apple-extended-usb-keyboard/</link>
		<comments>http://sixlinux.wordpress.com/2011/01/03/linux-and-apple-extended-usb-keyboard/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 08:44:43 +0000</pubDate>
		<dc:creator>Andrea Coronese</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[xmodmap]]></category>

		<guid isPermaLink="false">http://sixlinux.wordpress.com/?p=111</guid>
		<description><![CDATA[I recently got an Apple USB keyboard and plugged it to my linux box. It worked perfectly out of the box, except for less/greater and backslash/pipe keys. The solution is pretty easy to implement. Create a file named .Xmodmap in &#8230; <a href="http://sixlinux.wordpress.com/2011/01/03/linux-and-apple-extended-usb-keyboard/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sixlinux.wordpress.com&amp;blog=9305628&amp;post=111&amp;subd=sixlinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><img class="aligncenter" src="http://www.webwards.net/wp-content/uploads/2007/11/apple_keyboard_shortcuts.jpg" alt="" width="414" height="311" /></p>
<p>I recently got an <strong>Apple USB keyboard</strong> and plugged it to my linux box. It worked perfectly out of the box, except for less/greater and backslash/pipe keys. The solution is pretty easy to implement. Create a file named .Xmodmap in your user&#8217;s home.</p>
<p><code>cd<br />
touch .Xmodmap</code></p>
<p>Now edit it with your favourite editor, let&#8217;s say nano for simplicity<br />
<code><br />
nano .Xmodmap<br />
</code><br />
Place this text inside it<br />
<code><br />
keycode 49=less greater<br />
keycode 94=backslash bar<br />
</code><br />
Save the file, then restart your session by doing logoff and login. You&#8217;ll be asked to add available mod files to your session. Add .Xmodmap and press ok. You&#8217;re done <img src='http://s2.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/sixlinux.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sixlinux.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sixlinux.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sixlinux.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sixlinux.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sixlinux.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sixlinux.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sixlinux.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sixlinux.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sixlinux.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sixlinux.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sixlinux.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sixlinux.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sixlinux.wordpress.com/111/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sixlinux.wordpress.com&amp;blog=9305628&amp;post=111&amp;subd=sixlinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sixlinux.wordpress.com/2011/01/03/linux-and-apple-extended-usb-keyboard/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/97b18cf3661e9ecc9ca5129f5456bf87?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Sixpounder</media:title>
		</media:content>

		<media:content url="http://www.webwards.net/wp-content/uploads/2007/11/apple_keyboard_shortcuts.jpg" medium="image" />
	</item>
		<item>
		<title>Javascript Collection</title>
		<link>http://sixlinux.wordpress.com/2010/12/16/javascript-collection/</link>
		<comments>http://sixlinux.wordpress.com/2010/12/16/javascript-collection/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 23:56:48 +0000</pubDate>
		<dc:creator>Andrea Coronese</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[collection]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[list]]></category>

		<guid isPermaLink="false">http://sixlinux.wordpress.com/?p=108</guid>
		<description><![CDATA[Here is the code I wrote for a project of mine. This is a little javascript List class. I hope you can find it usefull function List() { this._items = new Array(); this.length = function() { return this._items.length; }; /* &#8230; <a href="http://sixlinux.wordpress.com/2010/12/16/javascript-collection/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sixlinux.wordpress.com&amp;blog=9305628&amp;post=108&amp;subd=sixlinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is the code I wrote for a project of mine. This is a little javascript List class. I hope you can find it usefull <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
<code><span id="more-108"></span><br />
function List() {</code></p>
<p><code>this._items = new Array();</code></p>
<p><code>this.length = function() {</code></p>
<p><code>return this._items.length;<br />
};</p>
<p>/*<br />
* Gets all keys<br />
*/<br />
this.keys = function() {</p>
<p>out = new Array();<br />
for (item in this._items) {<br />
out.push(item);<br />
}</p>
<p>return out;<br />
};</p>
<p>this.values = function() {<br />
return this._items;<br />
};</p>
<p>/*<br />
* Sets value in key<br />
*/<br />
this.set = function(key, value) {<br />
key += "";</p>
<p>this._items[key] = value;<br />
};</p>
<p>/*<br />
* Search for a specific value<br />
*/<br />
this.contains = function(value) {</p>
<p>for (i = 0; i &lt; this._items.length; i++) {<br />
if (this._items[key] == value) {<br />
return true;<br />
}<br />
}</p>
<p>return false;<br />
};</p>
<p>/*<br />
* Return the element stored at specified key, null if not present<br />
*/<br />
this.get = function(key) {<br />
for (item in this._items) {<br />
if (item == key) {<br />
return this._items[key];<br />
}<br />
}</p>
<p>return null;<br />
};</p>
<p>this.glue = function(glue) {<br />
if (glue == null) {<br />
glue = ":";<br />
}</p>
<p>out = new Array();</p>
<p>for (item in this._items) {<br />
out.push(item + glue + this._items[item]);<br />
}</p>
<p>return out;<br />
};</p>
<p>this.serialize = function() {<br />
return this._items.toString();<br />
};</p>
<p></code></p>
<p>&nbsp;</p>
<p><code>}<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sixlinux.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sixlinux.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sixlinux.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sixlinux.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sixlinux.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sixlinux.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sixlinux.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sixlinux.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sixlinux.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sixlinux.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sixlinux.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sixlinux.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sixlinux.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sixlinux.wordpress.com/108/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sixlinux.wordpress.com&amp;blog=9305628&amp;post=108&amp;subd=sixlinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sixlinux.wordpress.com/2010/12/16/javascript-collection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/97b18cf3661e9ecc9ca5129f5456bf87?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Sixpounder</media:title>
		</media:content>
	</item>
		<item>
		<title>Docky broken with latest major update on Arch Linux</title>
		<link>http://sixlinux.wordpress.com/2010/10/28/docky-broken-with-latest-major-update-on-arch-linux/</link>
		<comments>http://sixlinux.wordpress.com/2010/10/28/docky-broken-with-latest-major-update-on-arch-linux/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 07:29:56 +0000</pubDate>
		<dc:creator>Andrea Coronese</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Distribution / Testing]]></category>
		<category><![CDATA[docky]]></category>
		<category><![CDATA[Gnome]]></category>

		<guid isPermaLink="false">http://sixlinux.wordpress.com/?p=100</guid>
		<description><![CDATA[As many of you may have noticed, Docky is not starting anymore with the latest update of Arch Linux, wich contains an update of Mono. Docky version in extra repository seems to have problems with this release of Mono, and &#8230; <a href="http://sixlinux.wordpress.com/2010/10/28/docky-broken-with-latest-major-update-on-arch-linux/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sixlinux.wordpress.com&amp;blog=9305628&amp;post=100&amp;subd=sixlinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;"><img class="alignright" style="padding:15px;" title="Docky" src="http://wiki.go-docky.com/images/d/d2/Docky-release-header.jpg" alt="" width="288" height="90" />As many of you may have noticed, Docky is not starting anymore with the latest update of Arch Linux, wich contains an update of Mono. Docky version in extra repository seems to have problems with this release of Mono, and it claims a (apparently) missing assembly from the assembly cache.</p>
<p style="text-align:justify;">Installing Docky&#8217;s version from AUR with yaourt (version 2.0.7) or by downloading the tarball <a title="Docky-bzr.tar" href="https://aur.archlinux.org/packages/docky-bzr/docky-bzr.tar.gz" target="_blank">here</a> solves the problem. Now we&#8217;re waiting for the fix to be distributed on &#8220;extra&#8221; or &#8220;community&#8221; repositories as well.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sixlinux.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sixlinux.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sixlinux.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sixlinux.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sixlinux.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sixlinux.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sixlinux.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sixlinux.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sixlinux.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sixlinux.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sixlinux.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sixlinux.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sixlinux.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sixlinux.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sixlinux.wordpress.com&amp;blog=9305628&amp;post=100&amp;subd=sixlinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sixlinux.wordpress.com/2010/10/28/docky-broken-with-latest-major-update-on-arch-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/97b18cf3661e9ecc9ca5129f5456bf87?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Sixpounder</media:title>
		</media:content>

		<media:content url="http://wiki.go-docky.com/images/d/d2/Docky-release-header.jpg" medium="image">
			<media:title type="html">Docky</media:title>
		</media:content>
	</item>
		<item>
		<title>Regex selector for jquery</title>
		<link>http://sixlinux.wordpress.com/2010/09/24/regex-selector-for-jquery/</link>
		<comments>http://sixlinux.wordpress.com/2010/09/24/regex-selector-for-jquery/#comments</comments>
		<pubDate>Fri, 24 Sep 2010 20:40:30 +0000</pubDate>
		<dc:creator>Andrea Coronese</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[regexp]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://sixlinux.wordpress.com/?p=98</guid>
		<description><![CDATA[While coding a web application I found the need of filtering DOM elements inside jquery using regular expressions. I found one or two plugins that were supposed to do the job, but I didn&#8217;t figure out how to get them &#8230; <a href="http://sixlinux.wordpress.com/2010/09/24/regex-selector-for-jquery/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sixlinux.wordpress.com&amp;blog=9305628&amp;post=98&amp;subd=sixlinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>While coding a web application I found the need of filtering DOM elements inside jquery using <strong>regular expressions</strong>. I found one or two plugins that were supposed to do the job, but I didn&#8217;t figure out how to get them to work. Maybe it&#8217;s me, but I think there&#8217;s something wrong inside the plugins. So I figured out another way of doing it, by using the <a href="http://api.jquery.com/filter/" target="_blank">.filter() function</a>. Here&#8217;s a snippet of code where I use a regular expression to filter elements according to an innet hidden <em>input</em> field value wich contains two filtering keys &#8211; from that the need of using a regexp &#8211; , and shows parent <em>li</em> elements:</p>
<p><code>$('li.timeline_element input').filter(function()<br />
{<br />
value = $(this).val();</code></p>
<p><code> </code></p>
<p><code>var txt=new RegExp(regex,null);</p>
<p>if(txt.test(value) == true)<br />
{<br />
return true;<br />
}<br />
else<br />
{<br />
return false;<br />
}</p>
<p></code></p>
<p><code>}).parents('li').fadeIn();</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sixlinux.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sixlinux.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sixlinux.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sixlinux.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sixlinux.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sixlinux.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sixlinux.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sixlinux.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sixlinux.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sixlinux.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sixlinux.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sixlinux.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sixlinux.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sixlinux.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sixlinux.wordpress.com&amp;blog=9305628&amp;post=98&amp;subd=sixlinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sixlinux.wordpress.com/2010/09/24/regex-selector-for-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/97b18cf3661e9ecc9ca5129f5456bf87?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Sixpounder</media:title>
		</media:content>
	</item>
		<item>
		<title>Social Network equations</title>
		<link>http://sixlinux.wordpress.com/2010/09/06/social-network-equations/</link>
		<comments>http://sixlinux.wordpress.com/2010/09/06/social-network-equations/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 07:53:31 +0000</pubDate>
		<dc:creator>Andrea Coronese</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[boobs]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[laws]]></category>
		<category><![CDATA[maths]]></category>
		<category><![CDATA[Social networks]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://sixlinux.wordpress.com/?p=94</guid>
		<description><![CDATA[Speaking on social networks, I&#8217;m often not able to say what laws of social interaction determines the number of followers of a subject on a certain social network. So, I&#8217;m trying to figure it out. Here&#8217;s a stub of what &#8230; <a href="http://sixlinux.wordpress.com/2010/09/06/social-network-equations/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sixlinux.wordpress.com&amp;blog=9305628&amp;post=94&amp;subd=sixlinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Speaking on social networks, I&#8217;m often not able to say what laws of social interaction determines the number of followers of a subject on a certain social network. So, I&#8217;m trying to figure it out. Here&#8217;s a stub of what we can call the social following math. Please note that I have still to revise it, further versions are coming soon!</p>
<p style="text-align:center;"><a href="http://sixlinux.files.wordpress.com/2010/09/law.png"><img class="aligncenter size-large wp-image-95" title="law" src="http://sixlinux.files.wordpress.com/2010/09/law.png?w=574&#038;h=435" alt="" width="574" height="435" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sixlinux.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sixlinux.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sixlinux.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sixlinux.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sixlinux.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sixlinux.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sixlinux.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sixlinux.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sixlinux.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sixlinux.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sixlinux.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sixlinux.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sixlinux.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sixlinux.wordpress.com/94/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sixlinux.wordpress.com&amp;blog=9305628&amp;post=94&amp;subd=sixlinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sixlinux.wordpress.com/2010/09/06/social-network-equations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/97b18cf3661e9ecc9ca5129f5456bf87?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Sixpounder</media:title>
		</media:content>

		<media:content url="http://sixlinux.files.wordpress.com/2010/09/law.png?w=1024" medium="image">
			<media:title type="html">law</media:title>
		</media:content>
	</item>
		<item>
		<title>Macbook Pro 13&#8221; to replace Vaio E Series</title>
		<link>http://sixlinux.wordpress.com/2010/08/30/macbook-pro-13-to-replace-vaio-e-series/</link>
		<comments>http://sixlinux.wordpress.com/2010/08/30/macbook-pro-13-to-replace-vaio-e-series/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 09:06:38 +0000</pubDate>
		<dc:creator>Andrea Coronese</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[macbook]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[pam]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[vaio]]></category>

		<guid isPermaLink="false">http://sixlinux.wordpress.com/?p=90</guid>
		<description><![CDATA[Ok I&#8217;ll start saying that maybe I had a little too much confidence on my ability to make things works 100% where they&#8217;re not supposed to. As I wrote in the past, I bought a Sony Vaio E Series to &#8230; <a href="http://sixlinux.wordpress.com/2010/08/30/macbook-pro-13-to-replace-vaio-e-series/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sixlinux.wordpress.com&amp;blog=9305628&amp;post=90&amp;subd=sixlinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 358px"><img class=" " src="http://www.newstech.org/upload/macbook20081014.jpg" alt="" width="348" height="268" /><p class="wp-caption-text">Macbook from Apple</p></div>
<p>Ok I&#8217;ll start saying that maybe I had a little too much confidence on my ability to make things works 100% where they&#8217;re not supposed to. As I wrote in the past, I bought a Sony Vaio E Series to work out of my home &#8211; I mainly work on websites, advanced ph, html5, css3 and stuff. It shure has great hardware if you look at the specs. But here is the story: as far as you may know by reading my posts, I tried Ubuntu on it and then removed it waiting for some better video driver to come along. Plus, there was the audio and back lit problem, wich was solved in 9.10 and reappeared again on 10.04, wich is ridiculous. &#8220;Allright&#8221; I said &#8220;at least it should work just fine with windows 7, wich has all the goddamn drivers&#8221;. Actually it did but, believe it or not, <strong>after a month of use I was unable to configure a simple PAM</strong> (php + apache + mysql) development environment! I did it thousands of times but on the Vaio E I just didn&#8217;t figure out how to make things work! Mysql libraries just didn&#8217;t load. This was unbelievable to me, I searched on google, I asked friends, collegues and various geeks but <strong>nobody was able to solve this</strong>.</p>
<p>Another thing that I didn&#8217;t appreciate at all: battery life. Sony declares 3 hours, but <strong>you&#8217;ll be in luck if you can stay one hour and a half without plugging the battery charger</strong>. <strong>It&#8217;s too fucking short life time</strong> in my opinion if you have to code stuff.</p>
<p>A month later, I sold the Vaio on ebay and bought the new MacBook Pro 13&#8221;. The hardware is not powerfull as Vaio&#8217;s, but I have to admit that:</p>
<ul>
<li>Battery life is enourmous, up to 9 hours while working</li>
<li>System is fast and responsive</li>
<li>Configuring PAM takes some time as on linux, but result is guaranteed</li>
</ul>
<p>At the end of the story, I&#8217;m happy with Apple&#8217;s laptop and, wathever you like it or not, <strong>Linux and OSX are the best systems out there</strong>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sixlinux.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sixlinux.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sixlinux.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sixlinux.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sixlinux.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sixlinux.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sixlinux.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sixlinux.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sixlinux.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sixlinux.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sixlinux.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sixlinux.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sixlinux.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sixlinux.wordpress.com/90/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sixlinux.wordpress.com&amp;blog=9305628&amp;post=90&amp;subd=sixlinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sixlinux.wordpress.com/2010/08/30/macbook-pro-13-to-replace-vaio-e-series/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/97b18cf3661e9ecc9ca5129f5456bf87?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Sixpounder</media:title>
		</media:content>

		<media:content url="http://www.newstech.org/upload/macbook20081014.jpg" medium="image" />
	</item>
		<item>
		<title>Ubuntu 10.04 worst release EVER</title>
		<link>http://sixlinux.wordpress.com/2010/08/04/ubuntu-10-04-worst-release-ever/</link>
		<comments>http://sixlinux.wordpress.com/2010/08/04/ubuntu-10-04-worst-release-ever/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 22:18:11 +0000</pubDate>
		<dc:creator>Andrea Coronese</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[arch]]></category>
		<category><![CDATA[distribution]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[lucid]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[worst]]></category>

		<guid isPermaLink="false">http://sixlinux.wordpress.com/?p=85</guid>
		<description><![CDATA[After a few months of use of Ubuntu 10.04 I decided to move to another distribution. I&#8217;m still about it, but probably it will be Arch. Why? Because this release is fucking horrible. It all started with compiz fusion problems, &#8230; <a href="http://sixlinux.wordpress.com/2010/08/04/ubuntu-10-04-worst-release-ever/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sixlinux.wordpress.com&amp;blog=9305628&amp;post=85&amp;subd=sixlinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After a few months of use of Ubuntu 10.04 I decided to move to another distribution. I&#8217;m still about it, but probably it will be Arch. Why? Because this release is fucking horrible. It all started with compiz fusion problems, I posted a bug report on launchpad and also give a workaround for it, took me a whole day to figure out how to fix that. Well, it was not a fix but a trick to make things less slugghish. After MONTHS, nobody cared about it.</p>
<p>Also, there are so many performance problems that I don&#8217;t really know where they come from. One among all: is that possible that a simple insert query (for 800 rows) under mysql server took a second fraction on my macbook pro, wich has a stupid core 2 duo, and it takes over twenty seconds under linux?</p>
<p>I don&#8217;t even remember all the problems it gave me, but shure they the last one. Jaunty Jackalope was a very good release, and I really liked it. And before someone start saying that &#8220;Ehy, it&#8217;s Linux! It comes with no warranty!&#8221; I say that it&#8217;s not the warranty problem, it is that after months and a bunch of updates on PPAs problems are multiplying. I respect Canonical and Ubuntu, but I want something that I can get to work properly. Ubuntu 10.04 isn&#8217;t.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sixlinux.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sixlinux.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sixlinux.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sixlinux.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sixlinux.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sixlinux.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sixlinux.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sixlinux.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sixlinux.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sixlinux.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sixlinux.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sixlinux.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sixlinux.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sixlinux.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sixlinux.wordpress.com&amp;blog=9305628&amp;post=85&amp;subd=sixlinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sixlinux.wordpress.com/2010/08/04/ubuntu-10-04-worst-release-ever/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/97b18cf3661e9ecc9ca5129f5456bf87?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Sixpounder</media:title>
		</media:content>
	</item>
	</channel>
</rss>
