<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3731923312219132020</id><updated>2012-01-17T12:28:13.384-08:00</updated><category term='Joke'/><category term='Fedora'/><category term='64-bit'/><category term='Debian'/><category term='Gimp'/><category term='Music'/><category term='Repository'/><category term='Customization'/><category term='sound card'/><category term='pidgin'/><category term='Windows'/><category term='Tutorial'/><category term='Arch Linux'/><category term='Java'/><category term='Shockwave'/><category term='Flash'/><category term='Games'/><category term='Tip'/><category term='intel'/><category term='Linux'/><category term='server'/><category term='Software'/><category term='Hardware'/><category term='alsa'/><category term='dhcp'/><category term='Ubuntu'/><category term='Terminal'/><category term='Distribution'/><category term='karmic'/><category term='News'/><title type='text'>Linux Inside</title><subtitle type='html'>having fun with linux since 200x</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>72</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-1243991963066907074</id><published>2012-01-17T12:27:00.000-08:00</published><updated>2012-01-17T12:27:30.138-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='server'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Debian'/><category scheme='http://www.blogger.com/atom/ns#' term='dhcp'/><title type='text'>Configure a DHCP server (debian)</title><content type='html'>&lt;br /&gt;Installing dhcp server:&lt;br /&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New',Courier,monospace;"&gt;# apt-get install isc-dhcp-server&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Define a static IP for the server&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New',Courier,monospace;"&gt;&lt;b&gt;# nano /etc/network/interfaces&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: #999999;"&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New',Courier,monospace;"&gt;auto eth0&lt;br /&gt;iface eth0 inet static&lt;br /&gt;address 192.168.0.2 # server's IP address&lt;br /&gt;netmask 255.255.255.0&lt;br /&gt;network 192.168.0.0&lt;br /&gt;broadcast 192.168.1.255&lt;br /&gt;gateway 192.168.0.1 #router's IP address&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Configure DHCP server settings at /etc/dhcp/dhcpd.conf&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New',Courier,monospace;"&gt;&lt;b&gt;# nano /etc/dhcp/dhcpd.conf&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: #999999;"&gt;default-lease-time 600;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New',Courier,monospace;"&gt;&lt;span class="Apple-style-span" style="color: #999999;"&gt;&lt;br /&gt;max-lease-time 7200;&lt;br /&gt;option domain-name-servers 192.168.1.1, 192.168.1.2;&lt;br /&gt;option domain-name "yourdomainname.com";&lt;br /&gt;&lt;br /&gt;subnet 192.168.0.0 netmask 255.255.255.0 {&lt;br /&gt;range 192.168.0.150 192.168.0.200; #Range of client's IP addresses: 150 to 200&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New',Courier,monospace;"&gt;&lt;span class="Apple-style-span" style="color: #999999;"&gt;option subnet-mask 255.255.255.0;&lt;br /&gt;option broadcast-address 192.168.0.255;&lt;br /&gt;option routers 192.168.0.1;&lt;br /&gt;}&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Restart dhcp-server&lt;/div&gt;&lt;div&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New',Courier,monospace;"&gt;# /etc/init.d/isc-dhcp-server restart&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Restart eth0&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New',Courier,monospace;"&gt;&lt;b&gt;#ifdown eth0&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New',Courier,monospace;"&gt;&lt;b&gt;#ifup eth0&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Links:&lt;br /&gt;http://wiki.debian.org/DHCP_Server&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-1243991963066907074?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/1243991963066907074/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=1243991963066907074&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/1243991963066907074'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/1243991963066907074'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2012/01/configure-dhcp-server-debian_17.html' title='Configure a DHCP server (debian)'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-3235684954766372290</id><published>2009-11-17T07:54:00.000-08:00</published><updated>2009-11-17T08:52:53.940-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='sound card'/><category scheme='http://www.blogger.com/atom/ns#' term='intel'/><category scheme='http://www.blogger.com/atom/ns#' term='karmic'/><category scheme='http://www.blogger.com/atom/ns#' term='alsa'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Ubuntu 9.10 can not recognize intel sound card</title><content type='html'>At my LG P1 with an Intel sound card (&lt;i&gt;Realtek&lt;/i&gt; ALC888 &lt;i&gt;Intel&lt;/i&gt; 82801), after upgrading to Ubuntu 9.10 Karmic Koala, i had no sound.&lt;br /&gt;The sound card wasn't even detected!&lt;br /&gt;&lt;br /&gt;After running Google for a FEW hours, i discovered how to put the sound working without had to:&lt;br /&gt;qaz@blue:~$ sudo alsa force-reload&lt;br /&gt;or any other command.&lt;br /&gt;&lt;br /&gt;Step1:&lt;br /&gt;$ sudo apt-get remove sl-modem-daemon&lt;br /&gt;Step2:&lt;br /&gt;$ sudo apt-get install linux-backports-modules-alsa-karmic-generic&lt;br /&gt;Step3:&lt;br /&gt;$ sudo gedit /etc/modprobe.d/alsa-base&lt;br /&gt;And add:&lt;br /&gt;options snd-hda-intel model=&lt;span style="color: #cc0000;"&gt;lg&lt;/span&gt; # for other brands: search google with "options snd-hda-intel model="; try &lt;span style="color: #cc0000;"&gt;laptop&lt;/span&gt;; And/or visit &lt;a href="http://ubuntuforums.org/showthread.php?t=314383"&gt;this&lt;/a&gt; page.&lt;br /&gt;Then reboot!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: 85%; font-style: italic;"&gt;Tags:&lt;br /&gt;qaz@blue:~$ lspci&lt;br /&gt;(...)&lt;br /&gt;00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e2)&lt;br /&gt;00:1f.0 ISA bridge: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge (rev 02)&lt;br /&gt;00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller (rev 02)&lt;br /&gt;00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 02)&lt;br /&gt;(...)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: 85%; font-style: italic;"&gt;qaz@blue:~$ aplay -l&lt;br /&gt;**** List of PLAYBACK Hardware Devices ****&lt;br /&gt;card 0: Intel [HDA Intel], device 0: ALC880 Analog [ALC880 Analog]&lt;br /&gt;&amp;nbsp; Subdevices: 0/1&lt;br /&gt;&amp;nbsp; Subdevice #0: subdevice #0&lt;br /&gt;card 0: Intel [HDA Intel], device 1: ALC880 Digital [ALC880 Digital]&lt;br /&gt;&amp;nbsp; Subdevices: 1/1&lt;br /&gt;&amp;nbsp; Subdevice #0: subdevice #0&lt;br /&gt;card 0: Intel [HDA Intel], device 6: Si3054 Modem [Si3054 Modem]&lt;br /&gt;&amp;nbsp; Subdevices: 1/1&lt;br /&gt;&amp;nbsp; Subdevice #0: subdevice #0&lt;br /&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;div style="text-align: right;"&gt;&lt;a href="http://www.mail-archive.com/ubuntu-bugs@lists.ubuntu.com/msg1846922.html"&gt;via&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-3235684954766372290?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/3235684954766372290/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=3235684954766372290&amp;isPopup=true' title='34 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/3235684954766372290'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/3235684954766372290'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2009/11/ubuntu-910-can-not-recognize-intel.html' title='Ubuntu 9.10 can not recognize intel sound card'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>34</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-8164684867676282696</id><published>2009-10-05T07:51:00.001-07:00</published><updated>2009-12-13T06:09:35.412-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Joke'/><title type='text'>Surgery</title><content type='html'>&lt;img src="http://img524.imageshack.us/img524/5389/surgery.png" height="124" width="480" /&gt;&lt;br /&gt;&lt;br /&gt;via &lt;a href="http://xkcd.com/644/"&gt;xkcd&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-8164684867676282696?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/8164684867676282696/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=8164684867676282696&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/8164684867676282696'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/8164684867676282696'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2009/10/blog-post.html' title='Surgery'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-3559387012888827065</id><published>2009-08-28T14:00:00.000-07:00</published><updated>2009-08-28T14:20:53.168-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Gimp'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Open RAW (.cr2) images with Gimp</title><content type='html'>I have a Canon 400D, and today i tried to take some pictures and experiment some &lt;a href="http://en.wikipedia.org/wiki/High_dynamic_range_imaging"&gt;HDR&lt;/a&gt; effects on them. I took some pictures in RAW mode, with -2EV, 0EV and +2EV. Uploaded it to PC and boom! Gimp (or any other program) can't open CR2 files...&lt;br /&gt;&lt;br /&gt;How to open *.cr2 files at Linux? Simple: install ufraw:&lt;br /&gt;&lt;pre&gt;sudo apt-get install ufraw gimp-ufraw&lt;/pre&gt;&lt;br /&gt;Now, open ufraw (press ALT+F2 and type ufraw) and load the cr2 image. Then in the right bottom click at the Gimp button. Gimp will be launched and loads you image.&lt;br /&gt;&lt;br /&gt;If you're interred on HDR effects, try qtpfsgui.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-3559387012888827065?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/3559387012888827065/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=3559387012888827065&amp;isPopup=true' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/3559387012888827065'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/3559387012888827065'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2009/08/open-raw-cr2-images-with-gimp.html' title='Open RAW (.cr2) images with Gimp'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-2790632857991530396</id><published>2008-09-17T13:25:00.000-07:00</published><updated>2008-10-28T14:15:54.869-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Music'/><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>MPD: Music Player Daemon</title><content type='html'>&lt;strong&gt;&lt;em&gt;About:&lt;/em&gt;&lt;/strong&gt; &lt;blockquote&gt; &lt;p style="text-align: justify;"&gt;Music Player Daemon (&lt;strong&gt;MPD&lt;/strong&gt;) allows remote access for playing music (MP3, &lt;a href="http://www.vorbis.com/"&gt;Ogg Vorbis&lt;/a&gt;, &lt;a href="http://flac.sourceforge.net/"&gt;FLAC&lt;/a&gt;, AAC, Mod, and wave files) and managing playlists. MPD is designed for integrating a computer into a stereo system that provides control for music playback over a local network. It also makes a great desktop music player, especially if you are a &lt;a href="http://www.musicpd.org/mpc.shtml"&gt;console&lt;/a&gt; junkie, like frontend &lt;a href="http://www.musicpd.org/clients.shtml"&gt;options&lt;/a&gt;, or restart X often.&lt;/p&gt; &lt;/blockquote&gt; &lt;p style="text-align: right;"&gt;@ &lt;a href="http://www.musicpd.org/" target="_blank"&gt;MPD homepage&lt;/a&gt;&lt;/p&gt; &lt;p style="text-align: justify;"&gt;&lt;strong&gt;&lt;em&gt;Overview:&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt; &lt;p style="text-align: justify;"&gt;I wont explain what it is - everyone knows it's a media player - ops i just did it.&lt;br /&gt;I'm here to show you how to install it. It can be a little bit confusing.&lt;br /&gt;&lt;/p&gt; &lt;p style="text-align: justify;"&gt; &lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;strong&gt;&lt;em&gt;Installation/Configuration:&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt; &lt;p style="text-align: justify;"&gt;&lt;code&gt;# apt-get install mpd sonata&lt;/code&gt;&lt;br /&gt;Now, the hard tash. It's necessary to configure &lt;strong&gt;mpd&lt;/strong&gt; before any use of it.  To start, edit the file &lt;span style="font-weight: bold; font-style: italic;"&gt;/etc/mpd.conf&lt;/span&gt;. I recomend to make a backup copy just in case.&lt;br /&gt;&lt;code&gt;# cp /etc/mpd.conf /etc/mpd.conf.backup&lt;br /&gt;# nano /etc/mpd.conf&lt;/code&gt;&lt;/p&gt; &lt;ol&gt;&lt;li style="text-align: justify;"&gt;&lt;em&gt;&lt;strong&gt;REQUIRED PATHS &amp;amp; OPTIONAL PATHS&lt;br /&gt;&lt;/strong&gt;&lt;/em&gt;In this step it's necessary to configure the respective directories where are locatedyour music files. In the field  &lt;strong&gt;music_directory&lt;/strong&gt; add your music's directorie (it's only to possible to add one) and in the rest cpy the exemple.&lt;br /&gt;&lt;code&gt;######################## REQUIRED PATHS ########################&lt;br /&gt;# You can put symlinks in here, if you like. Make sure that&lt;br /&gt;# the user that mpd runs as (see the 'user' config parameter)&lt;br /&gt;# can read the files in this directory.&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;music_directory         “/home/os.meus.documentos/music”&lt;br /&gt;playlist_directory      “~/.mpd/playlists”&lt;br /&gt;db_file              “~/.mpd/tag_cache”&lt;br /&gt;log_file             “~/.mpd/mpd.log”&lt;br /&gt;error_file            “~/.mpd/errors.log”&lt;br /&gt;pid_file             “~/.mpd/pid”&lt;/span&gt;&lt;br /&gt;################################################################&lt;br /&gt;#&lt;br /&gt;######################## OPTIONAL PATHS ########################&lt;br /&gt;#&lt;br /&gt;# If specified, MPD will save its current state (playlist,&lt;br /&gt;# current song, playing/paused, etc.) at exit.  This will be&lt;br /&gt;# used to restore the session the next time it is run.&lt;br /&gt;#&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;state_file  “~/.mpd/state”&lt;/span&gt;&lt;br /&gt;#&lt;br /&gt;################################################################&lt;/code&gt;&lt;/li&gt;&lt;li&gt; &lt;em&gt;&lt;strong&gt;DAEMON OPTIONS&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;Add you user(in my case it's &lt;span style="font-weight: bold;"&gt;qaz&lt;/span&gt;)  in the field &lt;span style="font-weight: bold;"&gt;user&lt;/span&gt;. Uncomment the rest.&lt;br /&gt;&lt;code&gt;######################## DAEMON OPTIONS ########################&lt;br /&gt;#&lt;br /&gt;# If started as root, MPD will drop root privileges and run as&lt;br /&gt;# this user instead.  Otherwise, MPD will run as the user it was&lt;br /&gt;# started by.  If left unspecified, MPD will not drop root&lt;br /&gt;# privileges at all (not recommended).&lt;br /&gt;#&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;user                            “qaz”&lt;/span&gt;&lt;br /&gt;#&lt;br /&gt;# The address and port to listen on.&lt;br /&gt;#&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;bind_to_address                 “localhost”&lt;br /&gt;port                            “6600″&lt;/span&gt;&lt;br /&gt;#&lt;br /&gt;# Controls the amount of information that is logged.  Can be&lt;br /&gt;# “default”, “secure”, or “verbose”.&lt;br /&gt;#&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;log_level                       “default”&lt;/span&gt;&lt;br /&gt;#&lt;br /&gt;################################################################&lt;/code&gt;&lt;/li&gt;&lt;li&gt; &lt;strong&gt;&lt;em&gt;AUDIO OUTPUTS&lt;/em&gt;&lt;em&gt; &amp;amp; MIXER&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;Uncomment the the text lines wich represent your audio output. Im my case it's &lt;span style="font-weight: bold;"&gt;alsa&lt;/span&gt;.&lt;br /&gt;&lt;code&gt;########################## AUDIO OUTPUT ########################&lt;br /&gt;#&lt;br /&gt;# MPD supports many audio output types, as well as playing&lt;br /&gt;# through multiple audio outputs at the same time.  You can&lt;br /&gt;# specify one or more here.  If you don't specify any, MPD will&lt;br /&gt;# automatically scan for a usable audio output.&lt;br /&gt;#&lt;br /&gt;# See &lt;http: com="" wiki="" audio_outputs=""&gt;&lt;br /&gt;# for examples of other audio outputs.&lt;br /&gt;#&lt;br /&gt;# An example of an ALSA output:&lt;br /&gt;#&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;audio_output {&lt;br /&gt;type                    “alsa”&lt;br /&gt;name                    “My ALSA Device”&lt;/span&gt;&lt;br /&gt;#        device                  “hw:0,0″     # optional&lt;br /&gt;#        format                  “44100:16:2″ # optional&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;}&lt;/span&gt;&lt;br /&gt;#&lt;br /&gt;# An example of an OSS output:&lt;br /&gt;#&lt;br /&gt;#audio_output {&lt;br /&gt;#        type                    “oss”&lt;br /&gt;#        name                    “My OSS Device”&lt;br /&gt;#        device                  “/dev/dsp”   # optional&lt;br /&gt;#        format                  “44100:16:2″ # optional&lt;br /&gt;#}&lt;br /&gt;#&lt;br /&gt;# An example of a shout output (for streaming to Icecast):&lt;br /&gt;#&lt;br /&gt;#audio_output {&lt;br /&gt;#        type                    “shout”&lt;br /&gt;#        name                    “My Shout Stream”&lt;br /&gt;#        host                    “localhost”&lt;br /&gt;#        port                    “8000″&lt;br /&gt;#        mount                   “/mpd.ogg”&lt;br /&gt;#        password                “hackme”&lt;br /&gt;#        quality                 “5.0″&lt;br /&gt;#        bitrate                 “128″&lt;br /&gt;#        format                  “44100:16:1″&lt;br /&gt;#        user                    “source”                # optional&lt;br /&gt;#        description             “My Stream Description” # optional&lt;br /&gt;#        genre                   “jazz”                  # optional&lt;br /&gt;#        public                  “no”                    # optional&lt;br /&gt;#}&lt;br /&gt;#&lt;br /&gt;# Force all decoded audio to be converted to this format before&lt;br /&gt;# being passed to the audio outputs.&lt;br /&gt;#&lt;br /&gt;#audio_output_format             “44100:16:2″&lt;br /&gt;#&lt;br /&gt;################################################################&lt;br /&gt;#&lt;br /&gt;############################# MIXER ############################&lt;br /&gt;#&lt;br /&gt;# MPD needs to know what mixer settings to change when you&lt;br /&gt;# adjust the volume.  If you don’t specify one here, MPD will&lt;br /&gt;# pick one based on which ones it was compiled with support for.&lt;br /&gt;#&lt;br /&gt;# An example for controlling an ALSA mixer:&lt;br /&gt;#&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;mixer_type                      “alsa”&lt;br /&gt;mixer_device                    “default”&lt;br /&gt;mixer_control                   “PCM”&lt;/span&gt;&lt;br /&gt;#&lt;br /&gt;# An example for controlling an OSS mixer:&lt;br /&gt;#&lt;br /&gt;#mixer_type                      “oss”&lt;br /&gt;#mixer_device                    “/dev/mixer”&lt;br /&gt;#mixer_control                   “PCM”&lt;br /&gt;#&lt;br /&gt;# If you want MPD to adjust the volume of audio sent to the&lt;br /&gt;# audio outputs, you can tell it to use the software mixer:&lt;br /&gt;#&lt;br /&gt;#mixer_type                      “software”&lt;br /&gt;#&lt;br /&gt;################################################################&lt;br /&gt;&lt;/http:&gt;&lt;/code&gt;&lt;/li&gt;&lt;li&gt;&lt;strong&gt;&lt;em&gt;OTHER OPTIONS&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;Uncomment this two lines:&lt;br /&gt;&lt;code&gt;######################### OTHER OPTIONS ########################&lt;br /&gt;#&lt;br /&gt;# The metadata types MPD will recognize.&lt;br /&gt;#&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;metadata_to_use                  “artist,album,title,track,name,genre,date,composer,performer,disc”&lt;/span&gt;&lt;br /&gt;#&lt;br /&gt;# Enable this if you wish to use your MPD created playlists in&lt;br /&gt;# other music players.&lt;br /&gt;#&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;save_absolute_paths_in_playlists “no”&lt;/span&gt;&lt;br /&gt;#&lt;br /&gt;################################################################&lt;/code&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;&lt;strong&gt;Outher configurations&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;Stay as they are. To avoid any doubts,&lt;a href="http://dotfiles.org/%7Euterrorista/%2Fetc%2Fmpd.conf" target="_blank"&gt;here is my final result&lt;/a&gt;. &lt;/li&gt;&lt;/ol&gt; &lt;p style="text-align: justify;"&gt;Now, add your user( mine is&lt;span style="font-weight: bold;"&gt; qaz&lt;/span&gt;) at mpd &lt;span style="font-weight: bold;"&gt;group&lt;/span&gt; (can't explain why this step).&lt;br /&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;code&gt;# groupadd &lt;strong&gt;mpd&lt;/strong&gt;&lt;br /&gt;# gpasswd -a &lt;strong&gt;qaz mpd&lt;/strong&gt;&lt;/code&gt;&lt;br /&gt;Make sure the folder ~/.mpd doesn't need root privileges.&lt;br /&gt;&lt;/p&gt; &lt;p&gt;To create data base (this can take a while):&lt;br /&gt;&lt;code&gt;$ mpd --create-db&lt;/code&gt;&lt;br /&gt;In this moment we have mpd completed instaled and configurated.&lt;br /&gt;&lt;code&gt;$ mpd&lt;/code&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;Frontend:&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;We still need a &lt;a href="http://www.musicpd.org/clients.shtml" target="_blank"&gt;frontend&lt;/a&gt;. I choose &lt;a href="http://sonata.berlios.de/" target="_blank"&gt;Sonata&lt;/a&gt;.&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;Sonata is an elegant GTK+ music client for the &lt;a href="http://www.musicpd.org/"&gt;Music Player Daemon (MPD)&lt;/a&gt;.&lt;/p&gt;&lt;/blockquote&gt; &lt;p style="text-align: right;"&gt;@ &lt;a href="http://sonata.berlios.de/" target="_blank"&gt;Sonata Homepage&lt;/a&gt;&lt;/p&gt; &lt;div class="wp-caption aligncenter" style="width: 464px;"&gt;&lt;img title="Screenshot do sonata. Clica na imagem para mais imagens." src="http://sonata.berlios.de/images/sonata8.png" alt="" width="454" height="108" /&gt;&lt;p class="wp-caption-text"&gt;Sonata's Screenshot. Click in the image to see more pics.&lt;/p&gt;&lt;/div&gt; &lt;p style="text-align: justify;"&gt;Sonata also needs some configuration. But first let us open it:&lt;br /&gt;&lt;code&gt;$ sonata&lt;/code&gt;&lt;br /&gt;Go to Preferences, in the tab MPD add you datasi. My case:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Name: &lt;strong&gt;qaz&lt;/strong&gt;&lt;/li&gt;&lt;li&gt;Host: &lt;strong&gt;localhost&lt;/strong&gt;&lt;/li&gt;&lt;li&gt;Port: &lt;strong&gt;6600&lt;/strong&gt;&lt;/li&gt;&lt;li&gt;Password: (em branco)&lt;/li&gt;&lt;li&gt;Music dir: &lt;strong&gt;/home/os.meus.documentos/music/&lt;/strong&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;If necessary kill both process (killall) e start &lt;strong&gt;mpd&lt;/strong&gt; &amp;amp; &lt;strong&gt;sonata &lt;/strong&gt;again.&lt;/p&gt; &lt;p&gt;&lt;em&gt;&lt;strong&gt;References:&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;» &lt;a href="http://www.techzonept.com/showthread.php?t=240349" target="_blank"&gt;Techzone/Zwame&lt;/a&gt;&lt;br /&gt;» &lt;a href="http://wiki.archlinux.org/index.php/Mpd" target="_blank"&gt;ArchLinux Wiki&lt;/a&gt;&lt;br /&gt;» &lt;a href="http://www.musicpd.org/" target="_blank"&gt;MPD homepage&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;em&gt;&lt;strong&gt;My files:&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;» &lt;a href="http://dotfiles.org/%7Euterrorista/%2Fetc%2Fmpd.conf" target="_blank"&gt;http://dotfiles.org/~uterrorista/%2Fetc%2Fmpd.conf&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;em&gt;&lt;strong&gt;FeedBack:&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;Have a question? Please submit a comment &lt;img src="http://linuxdeb.com/wp-includes/images/smilies/icon_razz.gif" alt=":P" class="wp-smiley" /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-2790632857991530396?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/2790632857991530396/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=2790632857991530396&amp;isPopup=true' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/2790632857991530396'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/2790632857991530396'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/09/mpd-music-player-daemon.html' title='MPD: Music Player Daemon'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-713327551827527205</id><published>2008-09-13T07:32:00.000-07:00</published><updated>2008-11-08T15:28:06.913-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='64-bit'/><category scheme='http://www.blogger.com/atom/ns#' term='Flash'/><title type='text'>Flash Player9 in a 64-bit machine</title><content type='html'>Here it is a tutorial do install Flash Player 9 in a 64-bit Gnu/Linux machine:&lt;br /&gt;&lt;code&gt;$ wget http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_9_linux.tar.gz&lt;br /&gt;$ tar -zxf install_flash_player_9_linux.tar.gz&lt;br /&gt;$ mkdir ~/.mozilla/plugins/&lt;br /&gt;$ mv install_flash_player_9_linux/flashplayer.xpt install_flash_player_9_linux/libflashplayer.so ~/.mozilla/plugins/&lt;br /&gt;$ nspluginwrapper -i ~/.mozilla/plugins/libflashplayer.soLinks:» Source: Japan Shah&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-713327551827527205?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/713327551827527205/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=713327551827527205&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/713327551827527205'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/713327551827527205'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/09/flash-player9-in-64-bit-machine.html' title='Flash Player9 in a 64-bit machine'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-6598224021847900749</id><published>2008-09-13T07:21:00.000-07:00</published><updated>2008-09-13T07:32:39.986-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Games'/><category scheme='http://www.blogger.com/atom/ns#' term='Repository'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Playdeb - Games repositorie (Ubuntu)</title><content type='html'>&lt;span class="comment"&gt;&lt;/span&gt;         &lt;blockquote style="text-align: justify;"&gt;&lt;p&gt;&lt;a href="http://www.playdeb.net/" target="_blank"&gt;Playdeb&lt;/a&gt; is a gaming repository for Ubuntu - aimed to provide titles already available on &lt;a href="http://www.getdeb.net/category.php?id=3" target="_blank"&gt;getdeb.net&lt;/a&gt; in an easier to install and update format.&lt;/p&gt;&lt;/blockquote&gt; &lt;p style="text-align: justify;"&gt;&lt;a href="http://www.playdeb.net/available_games.html"&gt;This list&lt;/a&gt; features some old known games and also some news.&lt;br /&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;For who uses other distros, you can follow the link to the homepage of the games and follow the presented instructions.&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;strong&gt;&lt;em&gt;Links:&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;»&lt;a href="http://www.playdeb.net/" target="_blank"&gt;Playdeb&lt;/a&gt;&lt;br /&gt;»&lt;a href="http://www.getdeb.net/" target="_blank"&gt;GetDeb&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-6598224021847900749?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/6598224021847900749/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=6598224021847900749&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/6598224021847900749'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/6598224021847900749'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/09/playdeb-games-repositorie-ubuntu.html' title='Playdeb - Games repositorie (Ubuntu)'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-6256783136347408409</id><published>2008-04-21T06:07:00.001-07:00</published><updated>2008-09-09T08:10:33.618-07:00</updated><title type='text'>Flash Linux</title><content type='html'>&lt;p style="text-align: center;"&gt;&lt;img style="margin: 10px;" src="http://farm4.static.flickr.com/3114/2431260694_d1507077d2_o.gif" alt="" height="57" width="400" /&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/p&gt;&lt;p style="text-align: left;"&gt;&lt;b style="font-style: italic;"&gt;What is "Flash Linux"&lt;/b&gt;&lt;br /&gt;It's a FREE (GPL-2) customised Linux distribution initially designed to be run directly off a &lt;b&gt;256Mb USB key&lt;/b&gt; or other (similar) forms of bootable flash memory. It has subsequently (also) become a Linux distribution that runs directly from a CDROM, typically known as a &lt;b&gt;Live-CD&lt;/b&gt;.&lt;br /&gt;&lt;/p&gt;&lt;b&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;About Gentoo&lt;/span&gt;&lt;br /&gt;&lt;/b&gt;Flash Linux is based on &lt;span class="link-external"&gt;&lt;a href="http://www.gentoo.org/"&gt;Gentoo Linux&lt;/a&gt;&lt;/span&gt; and new versions / bugfixes should track the stable Gentoo tree. Whereas Gentoo is a source distribution, this is a binary only distribution. If you need the source code or want to make modifications - please take a look at the Gentoo home page.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Links:&lt;/span&gt;&lt;br /&gt;&lt;b&gt;»&lt;/b&gt;Homepage: &lt;a href="http://flashlinux.org.uk/"&gt;http://flashlinux.org.uk/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-6256783136347408409?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/6256783136347408409/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=6256783136347408409&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/6256783136347408409'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/6256783136347408409'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/04/what-is-flash-linux-its-free-gpl-2.html' title='Flash Linux'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-1645133834798088627</id><published>2008-04-20T16:51:00.000-07:00</published><updated>2008-09-09T08:34:53.900-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Java'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>How to install (JRE) Java in Ubuntu (8.04)</title><content type='html'>&lt;img class="alignright" style="margin: 10px; float: right;" src="http://farm3.static.flickr.com/2346/2429751852_99ba861660_m.jpg" alt="" height="240" width="117" /&gt;I'm trying to install Java at my new Ubuntu and I'm getting some difficulties.&lt;br /&gt;I was scrolling Synaptic Package Monitor for a while and i couldn't find it.&lt;br /&gt;&lt;br /&gt;So i Google it..&lt;br /&gt;&lt;br /&gt;There are these packages:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;span style="font-weight: bold;"&gt;sun-java6-bin     sun-java6-fonts   sun-java6-jre     sun-java6-src&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;sun-java6-demo    sun-java6-javadb  sun-java6-plugin &lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;sun-java6-doc     sun-java6-jdk     sun-java6-source&lt;/span&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;All you (probably) need is:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;code&gt;$ sudo apt-get install sun-java6-jre sun-java6-fonts &lt;/code&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;code&gt;sun-java6-plugi&lt;span style="font-family:Georgia,serif;"&gt;n&lt;br /&gt;&lt;/span&gt;&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;Note: The package &lt;code&gt;&lt;span style="font-weight: bold;"&gt;sun-java6-plugin&lt;/span&gt;&lt;/code&gt; contain the Firefox plugin.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-1645133834798088627?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/1645133834798088627/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=1645133834798088627&amp;isPopup=true' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/1645133834798088627'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/1645133834798088627'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/04/how-to-install-jre-java-in-ubuntu-804.html' title='How to install (JRE) Java in Ubuntu (8.04)'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://farm3.static.flickr.com/2346/2429751852_99ba861660_t.jpg' height='72' width='72'/><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-9125908878136260373</id><published>2008-04-17T08:57:00.000-07:00</published><updated>2008-06-17T13:36:36.738-07:00</updated><title type='text'>Foxmarks beta (for Firefox beta)</title><content type='html'>&lt;div&gt;&lt;img class="alignright" style="border: 10px solid white; float: right;" src="http://farm4.static.flickr.com/3244/2420601053_39de2de370_m.jpg" alt="" height="191" width="240" /&gt;Foxmarks don't have a compatible version with Firefox 3 beta5.&lt;br /&gt;But there is the &lt;span style="font-weight: bold;"&gt;Beta version of Foxmarks&lt;/span&gt;!&lt;br /&gt;&lt;a style="font-weight: bold;" href="http://linuxinside.blogspot.com/2008/04/foxmarks-beta-for-firefox-beta.html"&gt;Read more!&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;Instructions:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Go &lt;a href="http://beta.foxmarks.com/"&gt;here&lt;/a&gt;, and sign with your nick and password.&lt;/li&gt;&lt;li&gt;Then sign up to Beta tester.&lt;/li&gt;&lt;li&gt;They will sent you an email - this may take some days..&lt;/li&gt;&lt;li&gt;Then, follow the link and sign in and download the plugin.&lt;/li&gt;&lt;/ol&gt;Don't know what is Foxmarks?&lt;br /&gt;&lt;div&gt;         &lt;p&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;The Foxmarks Bookmark Synchronizer automatically synchronizes your         bookmarks between two or more computers running Firefox. It also lets         you access your bookmarks from any computer anytime via         my.foxmarks.com. An easy-to-use wizard guides you through the quick         startup process. Then Foxmarks works silently in the background to keep         your bookmarks up-to-date on all your computers.&lt;/p&gt;         &lt;p&gt;Simple. Solid. Free. And ready to use.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Homepage: &lt;a href="http://www.foxmarks.com/"&gt;http://www.foxmarks.com/&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-9125908878136260373?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/9125908878136260373/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=9125908878136260373&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/9125908878136260373'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/9125908878136260373'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/04/foxmarks-beta-for-firefox-beta.html' title='Foxmarks beta (for Firefox beta)'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://farm4.static.flickr.com/3244/2420601053_39de2de370_t.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-8409582178072740144</id><published>2008-04-16T14:19:00.000-07:00</published><updated>2008-04-16T14:33:40.254-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Shockwave'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>Shockwave Player and Plugin for Linux</title><content type='html'>&lt;img class="alignright" style="margin: 10px; float: right;" src="http://farm4.static.flickr.com/3233/2419752580_1c9b818029_o.gif" alt="" width="95" height="92" /&gt;As you already know, &lt;span style="font-weight: bold;"&gt;there is no such player/plugin&lt;/span&gt;! And the only solution is firefox.exe running through wine.&lt;br /&gt;&lt;br /&gt;But, there's some hope. Sign &lt;a href="http://www.petitiononline.com/linuxswp/petition.html"&gt;here&lt;/a&gt; an online petition..&lt;br /&gt;&lt;span style=""&gt;&lt;/span&gt;&lt;blockquote&gt;&lt;span style=""&gt;The &lt;a target="_top" href="http://www.petitiononline.com/linuxswp/petition.html"&gt;Shockwave Player and Plugin for Linux&lt;/a&gt; Petition to Macromedia was &lt;b&gt;created by members of the Linux Community and written by Rob Jensen...&lt;/b&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-8409582178072740144?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/8409582178072740144/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=8409582178072740144&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/8409582178072740144'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/8409582178072740144'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/04/shockwave-player-and-plugin-for-linux.html' title='Shockwave Player and Plugin for Linux'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-4393378159011183857</id><published>2008-04-15T15:32:00.000-07:00</published><updated>2008-09-09T11:21:47.339-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tip'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Terminal'/><title type='text'>History - terminal tip</title><content type='html'>&lt;img class="alignleft" style="border: 10px solid white; float: left;" src="http://farm4.static.flickr.com/3050/2416691867_3f41a0beef_o.png" alt="" height="48" width="48" /&gt;With the new meme's fashion:&lt;br /&gt;&lt;code style="font-weight: bold;"&gt;history|awk '{a[$2]++ } END{for(i in a){print a[i] " " i}}'|sort -rn|head&lt;/code&gt;&lt;br /&gt;Did anyone just typed&lt;span style="font-style: italic;"&gt; history&lt;/span&gt; in terminal?&lt;br /&gt;&lt;br /&gt;If you try it, you can see the list of the last commands used.&lt;br /&gt;&lt;br /&gt;Instead of pressing upper arrow hundred times to see the command that we used in the previous day, just type history&lt;br /&gt;&lt;br /&gt;&lt;code style="font-weight: bold;"&gt;$ history&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Check also the manual:&lt;br /&gt;&lt;br /&gt;&lt;code style="font-weight: bold;"&gt;$ man history&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-4393378159011183857?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/4393378159011183857/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=4393378159011183857&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/4393378159011183857'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/4393378159011183857'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/04/history-terminal-tip.html' title='History - terminal tip'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-7621920276483984699</id><published>2008-04-15T15:19:00.000-07:00</published><updated>2008-09-09T11:22:17.458-07:00</updated><title type='text'>Archlinux 2008.04-RC</title><content type='html'>Looks like we're gonna have a Live CD Archlinux's version..&lt;br /&gt;The latest &lt;a href="http://archlinux.org/news/389/"&gt;news&lt;/a&gt;:&lt;br /&gt;&lt;blockquote&gt;A new batch of install images is currently syncing to mirrors.&lt;br /&gt;FTP images have been made available tonight, while CORE images&lt;br /&gt;will be pushed tomorrow night in order to distribute the load.&lt;p&gt;&lt;/p&gt;  &lt;p&gt;This marks the first release (well ok... release candidate)&lt;br /&gt;based on a true live Arch system. That is, what's on the&lt;br /&gt;images is just a plain old base installation which just&lt;br /&gt;happens to boot off of a CD or USB stick.&lt;/p&gt;  &lt;p&gt;Whoah... did you just say USB stick? Why yes I did! That's&lt;br /&gt;right, from here on out we'll be offering bootable USB disk&lt;br /&gt;images that can act as a live system or installer.&lt;/p&gt;  &lt;p&gt;The installer script itself is roughly the same as it's always&lt;br /&gt;been. The most noticable change is the use of UUIDs instead of&lt;br /&gt;sdX/hdX entries by default. A more detailed changelog&lt;br /&gt;should be visible on &lt;a href="http://projects.archlinux.org/git/"&gt;projects.archlinux.org&lt;/a&gt; soon-ish.&lt;/p&gt;  &lt;p&gt;If you get the chance, please give the images a spin. You can&lt;br /&gt;find them on our &lt;a href="https://dev.archlinux.org/download/"&gt;mirrors&lt;/a&gt;, in the&lt;br /&gt;iso directory. Please file &lt;a href="http://bugs.archlinux.org/"&gt;bugs&lt;/a&gt; if you encounter any problems.&lt;/p&gt;  &lt;p&gt;By the way, the "RC" status of these images should not be a&lt;br /&gt;turn-off if you're looking to install Arch, there's a very&lt;br /&gt;good chance they'll work just fine for you.&lt;/p&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Links:&lt;/span&gt;&lt;br /&gt;»Homepage: &lt;a href="http://archlinux.org/"&gt;ArchLinux&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-7621920276483984699?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/7621920276483984699/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=7621920276483984699&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/7621920276483984699'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/7621920276483984699'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/04/archlinux-200804-rc.html' title='Archlinux 2008.04-RC'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-7646725162710349277</id><published>2008-04-14T13:42:00.000-07:00</published><updated>2008-09-09T11:30:03.311-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Hardware'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>One step forward, two steps back</title><content type='html'>In Feisty, agere et131x - Ethernet card of my LG P1 - was automatically installed.&lt;br /&gt;Today with Hardy 8.04 and new versions of kernel, there is no 'out of the box'!&lt;br /&gt;&lt;br /&gt;One step forward, two steps back! Hrr&lt;br /&gt;&lt;br /&gt;To install it:&lt;br /&gt;&lt;br /&gt;Download et131x-1.2.3-2.tar.gz (or more recent ) &lt;a href="http://sourceforge.net/projects/et131x"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ sudo apt-get install build-essential linux-headers-$(uname -r)&lt;/code&gt;&lt;br /&gt;go to the unpackaged et131x folder&lt;br /&gt;&lt;code&gt;$ make&lt;br /&gt;$ sudo make modules_install&lt;br /&gt;$ insmod et131x.ko&lt;br /&gt;$ sudo depmod&lt;br /&gt;$ sudo modprobe et131x&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;There might me some errors... &lt;span style="font-style: italic;"&gt;close your eyes!&lt;/span&gt;&lt;br /&gt;Reboot.&lt;br /&gt;&lt;br /&gt;The audio card - Realtek LC880 - was never fixed. I only have audio on phones!&lt;br /&gt;&lt;br /&gt;Create new file:&lt;br /&gt;&lt;code&gt;$ sudo gedit /etc/modprobe.d/snd-hda-intel&lt;/code&gt;&lt;br /&gt;Paste and save:&lt;br /&gt;&lt;code&gt;options snd-hda-intel model=lg&lt;/code&gt;&lt;br /&gt;Reboot!&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;Links:&lt;/span&gt;&lt;br /&gt;»Drivers: &lt;a href="http://sourceforge.net/projects/et131x"&gt;et131x&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-7646725162710349277?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/7646725162710349277/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=7646725162710349277&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/7646725162710349277'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/7646725162710349277'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/04/one-step-forward-two-steps-back.html' title='One step forward, two steps back'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-1169009440832985644</id><published>2008-04-12T13:39:00.000-07:00</published><updated>2008-09-09T11:32:47.658-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>Pytube - download videos from Youtube</title><content type='html'>&lt;p style="text-align: center;"&gt;&lt;img src="http://farm3.static.flickr.com/2045/2407742011_3d6a4b7832_o.png" alt="" height="85" width="360" /&gt;&lt;/p&gt;&lt;p style="text-align: left;"&gt;PyTubes is a multimedia converter program.&lt;/p&gt;&lt;a style="font-weight: bold;" href="http://linuxinside.blogspot.com/2008/04/pytube-download-videos-from-youtube.html"&gt;&lt;/a&gt;&lt;span class="fullpost"&gt;&lt;p style="text-align: left; font-style: italic; font-weight: bold;"&gt;Features:&lt;/p&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Downloads videos from Youtube, GoogleVideos, Metacafe, MySpaceTV... And converts them to ogm, mpg, avi, flv, gif, mp4, 3gp, amv, mp3, ogg and wav files.&lt;/li&gt; &lt;li&gt;Encode Videos to formats previously mentioned.&lt;/li&gt; &lt;li&gt;Search Youtube's videos.&lt;/li&gt; &lt;li&gt;Multimedia Tools - Apply audio track to video files, Generate ringtones, Merge videos, Resize videos, Rotate videos.&lt;/li&gt;&lt;/ul&gt;&lt;p style="text-align: left;"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Screenshot:&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: center;"&gt;&lt;a title="Click to enlarge" href="http://farm3.static.flickr.com/2142/2407768295_753e5ec332_o.png" target="_blank"&gt;&lt;img src="http://farm3.static.flickr.com/2148/2407767801_5cbdab61d6_t.jpg" alt="" height="45" width="100" /&gt; &lt;img src="http://farm3.static.flickr.com/2142/2407768295_0697b22243_t.jpg" alt="" height="67" width="100" /&gt; &lt;img src="http://farm4.static.flickr.com/3023/2407768063_f29efbbdce_t.jpg" alt="" height="83" width="100" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;Links:&lt;/span&gt;&lt;br /&gt;»Homepage: &lt;a href="http://bashterritory.com/pytube"&gt;http://bashterritory.com/pytube&lt;/a&gt;&lt;em&gt;&lt;a title="Visit" href="http://bashterritory.com/pytube" target="_blank"&gt;&lt;/a&gt;&lt;/em&gt;&lt;br /&gt;»Download page: &lt;a href="http://bashterritory.com/pytube/index.php?option=com_remository&amp;amp;Itemid=26&amp;amp;func=select&amp;amp;id=1"&gt;http://bashterritory.com/&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-1169009440832985644?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/1169009440832985644/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=1169009440832985644&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/1169009440832985644'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/1169009440832985644'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/04/pytube-download-videos-from-youtube.html' title='Pytube - download videos from Youtube'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://farm3.static.flickr.com/2148/2407767801_5cbdab61d6_t.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-6891557073783550391</id><published>2008-04-12T12:21:00.000-07:00</published><updated>2008-09-09T11:34:14.498-07:00</updated><title type='text'>Terminal History</title><content type='html'>I'm a sudo addicted. :)&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ history|awk '{a[$2]++ } END{for(i in a){print a[i] " " i}}'|sort -rn|head&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;code&gt;245 sudo&lt;br /&gt;34 cd&lt;br /&gt;24 ls&lt;br /&gt;23 ping&lt;br /&gt;19 sh&lt;br /&gt;13 cmake&lt;br /&gt;12 make&lt;br /&gt;9 ./pk2&lt;br /&gt;9 exit&lt;br /&gt;8 e-U&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-6891557073783550391?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/6891557073783550391/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=6891557073783550391&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/6891557073783550391'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/6891557073783550391'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/04/terminal-history.html' title='Terminal History'/><author><name>serafim</name><uri>http://www.blogger.com/profile/09378997342964469679</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_8zmHsnACv-c/SiufeJuSooI/AAAAAAAAAAc/EaNB7-qKLNw/S220/306kq4.png'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-1783911861382397939</id><published>2008-04-11T16:12:00.000-07:00</published><updated>2008-09-09T11:38:34.731-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Distribution'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>Linux Distribution Chooser</title><content type='html'>If you have doubt's about choosing the best Gnu/Linux distribution to you, &lt;a href="http://www.zegeniestudios.net/ldc/index.php"&gt;this&lt;/a&gt; site can help.&lt;br /&gt;It will ask you some questions, inquiring you about your experience and preferences with Linux.&lt;br /&gt;&lt;br /&gt;If you wanna see some screenshots of the different distros, go &lt;a href="http://www.thecodingstudio.com/opensource/linux/screenshots/"&gt;here&lt;/a&gt;!&lt;br /&gt;&lt;br /&gt;PS: if you make the test, let me know about the result!&lt;br /&gt;I got Ubuntu, Debian and Xubuntu! I already use Ubuntu :D !&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;Links:&lt;/span&gt;&lt;br /&gt;»Linux Distribution Chooser: &lt;a href="http://www.zegeniestudios.net/ldc/index.php"&gt;Homepage&lt;/a&gt;&lt;br /&gt;»Linux Screenshots: &lt;a href="http://www.thecodingstudio.com/opensource/linux/screenshots/"&gt;The coding studio&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-1783911861382397939?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/1783911861382397939/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=1783911861382397939&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/1783911861382397939'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/1783911861382397939'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/04/linux-distribution-chooser.html' title='Linux Distribution Chooser'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-5977167426424539486</id><published>2008-04-01T04:06:00.000-07:00</published><updated>2008-09-09T11:46:58.831-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='pidgin'/><title type='text'>Pidgin 2.4.1 (new)</title><content type='html'>&lt;p style="text-align: center;"&gt;&lt;img src="http://farm4.static.flickr.com/3206/2379235387_59b7eb1aeb_o.png" alt="Pidgin" height="363" width="334" /&gt;&lt;/p&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;Links:&lt;/span&gt;&lt;br /&gt;Homepage: &lt;a href="http://www.pidgin.im/"&gt;Pidgin&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-5977167426424539486?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/5977167426424539486/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=5977167426424539486&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/5977167426424539486'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/5977167426424539486'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/04/pidgin-241-new.html' title='Pidgin 2.4.1 (new)'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-2058502583706203875</id><published>2008-03-09T07:23:00.000-07:00</published><updated>2008-03-09T07:28:08.551-07:00</updated><title type='text'>Emesene - IM client</title><content type='html'>&lt;h4&gt;Index:&lt;/h4&gt; &lt;ul&gt;&lt;li&gt;&lt;a href="#about"&gt;About&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="#screenshots"&gt;Screenshots&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="#install"&gt;Install&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="#conclusion"&gt;Conclusion&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt; &lt;h4 id="about"&gt;&lt;br /&gt;&lt;/h4&gt;&lt;h4 id="about"&gt;About&lt;/h4&gt;&lt;br /&gt;Emesene is a  instant messenger (IM) client for the Windows Live Messenger (tm) network.&lt;br /&gt;It runs at Linux, Windows and Mac OSX.&lt;br /&gt;Is is very simple to use, has no ads, is compatible with Messenger Plus, allows file transfer, lots of plugins, etc...&lt;br /&gt;&lt;br /&gt;&lt;h4 id="screenshots"&gt;Screenshots&lt;/h4&gt; &lt;div style="text-align: center;"&gt;&lt;br /&gt;[screenshots - click]&lt;br /&gt;&lt;/div&gt; &lt;div style="text-align: center;"&gt;&lt;a href="http://farm4.static.flickr.com/3187/2320397203_1556310e47_o.png"&gt;&lt;img style="border: 0px solid ; width: 240px; height: 150px;" alt="screenshot #1" title="screenshot #1" src="http://farm4.static.flickr.com/3187/2320397203_5dca44b462_m.jpg" /&gt;&lt;/a&gt; &lt;a href="http://farm3.static.flickr.com/2242/2320397211_5e8d203869_o.png"&gt;&lt;img style="border: 0px solid ; width: 240px; height: 150px;" alt="screenshot #2" title="screenshot #2" src="http://farm3.static.flickr.com/2242/2320397211_a751004c1a_m.jpg" /&gt;&lt;/a&gt;&lt;a href="http://farm4.static.flickr.com/3115/2320397213_63292804f7_o.png"&gt;&lt;img style="border: 0px solid ; width: 240px; height: 150px;" alt="screenshot #3" title="screenshot #3" src="http://farm4.static.flickr.com/3115/2320397213_2bea0efa2c_m.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;h4 id="install"&gt;Install&lt;/h4&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="text-decoration: underline; font-weight: bold;"&gt;Debian based systems:&lt;/span&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Add repositories to source list:&lt;br /&gt;&lt;code&gt;&lt;span style="font-weight: bold;"&gt;$ sudo gedit /etc/source.list&lt;/span&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;Add:&lt;br /&gt;&lt;code&gt;&lt;/code&gt;&lt;code&gt;&lt;span style="font-weight: bold;"&gt;deb http://apt.emesene.org/ ./&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;deb-src http://apt.emesene.org/ ./&lt;/span&gt;&lt;br /&gt;&lt;/code&gt;&lt;/li&gt;&lt;li&gt;Update&lt;br /&gt;&lt;code&gt;&lt;span style="font-weight: bold;"&gt;$ sudo apt-get update&lt;/span&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Install&lt;br /&gt;&lt;code style="font-weight: bold;"&gt;$ sudo apt-get install emesene&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt; &lt;/li&gt;&lt;li&gt;&lt;span style="text-decoration: underline; font-weight: bold;"&gt;Installation from tar.gz (latest stable archive)&lt;/span&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Go to:&lt;br /&gt;&lt;a href="http://sourceforge.net/project/showfiles.php?group_id=168206"&gt;http://sourceforge.net/project/showfiles.php?group_id=168206&lt;br /&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Download the latest version (eg:):&lt;br /&gt;&lt;code&gt;&lt;span style="font-weight: bold;"&gt;$ wget http://downloads.sourceforge.net/emesene/emesene-r999.tar.gz&lt;br /&gt;&lt;/span&gt;&lt;/code&gt;&lt;br /&gt;&lt;span style="font-family:mon;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt; &lt;/li&gt;&lt;li&gt;&lt;span style="font-family:mon;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="text-decoration: underline;"&gt;SVN version&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt; &lt;ol&gt;&lt;li&gt;Visit this page for instructions:&lt;br /&gt;&lt;a href="http://emesene.org/trac/wiki/SVN"&gt;http://emesene.org/trac/wiki/SVN&lt;br /&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt; &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;h4 id="conclusion"&gt;&lt;br /&gt;&lt;/h4&gt;&lt;h4 id="conclusion"&gt;Conclusion&lt;/h4&gt;&lt;br /&gt;I already tried Pidgin, Amsn but it's Emesene i like best.&lt;br /&gt;Is is simple, attractive design.&lt;br /&gt;It has lots of cool plugins, eg:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Youtube video's screenshot before the link to it.&lt;/li&gt;&lt;li&gt;Countdown to specific date (I'm using this one - countdown to christmas :D )&lt;/li&gt;&lt;li&gt;Messenger plus&lt;/li&gt;&lt;li&gt;GmailNotify&lt;/li&gt;&lt;li&gt;Etc.&lt;/li&gt;&lt;/ul&gt; Just try it and have your own idea about it..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-2058502583706203875?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/2058502583706203875/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=2058502583706203875&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/2058502583706203875'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/2058502583706203875'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/03/emesene-im-client.html' title='Emesene - IM client'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://farm4.static.flickr.com/3187/2320397203_5dca44b462_t.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-3551800008806787406</id><published>2008-03-08T16:40:00.000-08:00</published><updated>2009-09-26T08:12:28.141-07:00</updated><title type='text'>Openbox - introduction/customization</title><content type='html'>&lt;span style="font-weight: bold; font-style: italic;"&gt;Overview:&lt;/span&gt;&lt;span style="font-style: italic;"&gt;&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;&lt;/span&gt;At the end your system may have this look:&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;[screenshots - click]&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://farm3.static.flickr.com/2243/2243840113_cc3f5532e9_o.png"&gt;&lt;img style="border: 0px solid ; width: 240px; height: 150px;" alt="screenshot #1" src="http://farm3.static.flickr.com/2243/2243840113_f8f7decaa1_m.jpg" /&gt;&lt;/a&gt; &lt;a href="http://farm3.static.flickr.com/2035/2243847877_793e3e4778_o.png"&gt;&lt;img style="border: 0px solid ; width: 240px; height: 150px;" alt="screenshot #2" src="http://farm3.static.flickr.com/2035/2243847877_0649012e4f_m.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt; &lt;span style="font-style: italic; text-decoration: underline;"&gt;&lt;small&gt;&lt;br /&gt;&lt;/small&gt;&lt;/span&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;&lt;/span&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Intro:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Openbox is a windows manager (just like Metacity, sort of..), extremely light and customizable, known for its minimalistic appearance, as indicated for machines with poor performance.&lt;br /&gt;&lt;br /&gt;The Openbox allows perform the last/all* applications that are designed/made to Gnome/Kde without any need to run these (Gnome/Kde). You can also run the Openbox within the Gnome/Kde thus combining their features. It allows us to make the desktop cleaner and faster.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Installation:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Check the &lt;a href="http://icculus.org/openbox/index.php/Openbox:Download" target="_blank"&gt;homepage&lt;/a&gt;, or install the version available in the repositories:&lt;br /&gt;&lt;code&gt;&lt;span style="font-weight: bold;"&gt;# aptitude install openbox &lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# aptitude install obconf openbox-themes #RECOMMENDED_EXTRAS&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;To run Openbox:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Logout; &lt;/li&gt;&lt;li&gt;Choose the session type: (1) Gnome/Openbox; (2) openbox-kde.desktop or (3) Openbox Session; &lt;/li&gt;&lt;li&gt;Login. &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;Option (3) runs only the Openbox, but future Gnome/Kde's applications could be executed (eg: gnome-panel)&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;Note:&lt;/span&gt; I recommend that you only [re]login (at openbox session) when thou finish the tutorial completely!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Customization: &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If you choose option (3) above, you will find out that your desktop is empty, and no kind of bar is displayed. Don't stress out :D&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;span style="font-weight: bold; text-decoration: underline;"&gt;Double the configuration files:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ mkdir -p ~/.config/openbox/&lt;br /&gt;$ cp /etc/xdg/openbox/rc.xml ~/.config/openbox/rc.xml&lt;br /&gt;$ cp /etc/xdg/openbox/menu.xml ~/.config/openbox/menu.xml&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;The &lt;span style="font-weight: bold;"&gt;rc.xml&lt;/span&gt; file is responsible for the configuration of shortcuts, themes, virtual desktop, etc. .. While the &lt;span style="font-weight: bold;"&gt;menu.xml&lt;/span&gt; file is only responsible for setting the menu that appears when you click with the right mouse button on the desktop - edit this file in text mode can be boring and complicated, ahead there is a solution easier.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold; text-decoration: underline;"&gt;Alt+F2: &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;The shortcut &lt;span style="font-weight: bold;"&gt;Alt + F2&lt;/span&gt; aka &lt;span style="font-weight: bold;"&gt;gnome-panel-control - run-dialog&lt;/span&gt; does not work for Openbox. I think this command essential in any Linux distribution, so let's find an alternative solution: &lt;span style="font-weight: bold;"&gt;gmrun&lt;/span&gt; - installation:&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;code style="font-weight: bold;"&gt;# aptitude install gmrun&lt;/code&gt;&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Define Alt-F2 as gmrun's shortcut:&lt;br /&gt;&lt;code style="font-weight: bold;"&gt;$ gedit ~/.config/openbox/rc.xml&lt;/code&gt;&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;&lt;br /&gt;Add the following code before;&lt;span style="font-weight: bold;"&gt;&lt;code&gt;&amp;lt;/keyboard&amp;gt; &lt;/code&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;span style="font-weight: bold;"&gt;&amp;lt;keybind key="A-F2"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&amp;lt;action name="execute"&amp;gt;&lt;/span&gt;  &lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&amp;lt;execute&amp;gt;gmrun&amp;lt;/execute&amp;gt;&lt;/span&gt; &lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&amp;lt;/action&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&amp;lt;/keybind&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;"&gt;Note&lt;/span&gt;: If you noticed, the last shortcut existing in rc.xml is '&lt;span style="font-weight: bold;"&gt;W-e&lt;/span&gt;', which launches &lt;span style="font-weight: bold;"&gt;Konqueror&lt;/span&gt;. I replaced this with &lt;span style="font-weight: bold;"&gt;Nautilus&lt;/span&gt;. I like it best.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;    &lt;code style="font-weight: bold;"&gt;&amp;lt;keybind key="W-e"&amp;gt;&lt;br /&gt;&amp;lt;action name="Execute"&amp;gt;&lt;br /&gt;&amp;lt;startupnotify&amp;gt;&lt;br /&gt;&amp;lt;enabled&amp;gt;true&amp;lt;/enabled&amp;gt;&lt;br /&gt;&amp;lt;name&amp;gt;Nautilus&amp;lt;/name&amp;gt;&lt;br /&gt;&amp;lt;/startupnotify&amp;gt;&lt;br /&gt;&amp;lt;command&amp;gt;nautilus&amp;lt;/command&amp;gt;&lt;br /&gt;&amp;lt;/action&amp;gt;&lt;br /&gt;&amp;lt;/keybind&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Note2&lt;/span&gt;:&lt;br /&gt;In my case, i had re-login the session for the shortcuts work correctly.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold; text-decoration: underline;"&gt;Add a panel:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I think that all of us like to have some kind of panel. To see minimized windows, icon tray and some shortcuts.&lt;br /&gt;There are several alternatives such as: &lt;span style="font-weight: bold;"&gt;pypanel&lt;/span&gt; ,&lt;span style="font-weight: bold;"&gt; fbpanel&lt;/span&gt;, gnome-panel, xfce4-panel, etc.&lt;br /&gt;I'll choose &lt;span style="font-weight: bold;"&gt;pypanel&lt;/span&gt;:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;code&gt;$ aptitude install pypanel&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Pypanel Customization:&lt;br /&gt;The configuration file is ~/.pypanelrc. Before change/edit him I recommend to backup it:&lt;br /&gt;&lt;code style="font-weight: bold;"&gt;$ cp ~/.pypanelrc ~/.pypanelrcbackup&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Now, take this code (link) a save it at:&lt;br /&gt;&lt;code style="font-weight: bold;"&gt;$ gedit ~/.pypanelrc&lt;/code&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold; text-decoration: underline;"&gt;Add pypanel to startup(or some other application):&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;code&gt; &lt;span style="font-weight: bold;"&gt;$ gedit ~/.config/openbox/autostart.sh&lt;/span&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;Paste this text:&lt;br /&gt;&lt;blockquote style="font-weight: bold;"&gt;&lt;code&gt;# Run the system-wide support stuff&lt;br /&gt;. $GLOBALAUTOSTART&lt;br /&gt;# Programs to launch at startup&lt;br /&gt;pypanel &amp;amp;&lt;br /&gt;#/opt/wicd/tray.py &amp;amp; #WICD&lt;br /&gt;#conky &amp;amp; #CONKY&lt;br /&gt;# all commands must end with: " &amp;amp;"&lt;/code&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;Follow the example to add some other applications.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold; text-decoration: underline;"&gt;Edit Openbox's theme:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;As I earlier explain, it's possible to edit Openbox's theme at the file menu.xml. But there is a solution more user friendly: &lt;span style="font-weight: bold;"&gt;obmenu&lt;/span&gt;. To install obmenu:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;span style="font-weight: bold;"&gt;$ wget http://switch.dl.sourceforge.net/sourceforge/obmenu/obmenu-1.0.tar.gz&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;$ tar xvzf obmenu-1.0.tar.gz&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;$ cd obmenu-1.0/&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# python setup.py install&lt;/span&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;Open obmenu:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;code&gt;$ obmenu&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The you can add/remove/edit any kind of shortcuts, etc.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Note:&lt;/span&gt; To add a new menu, in the end you need to add a shortcut at Openbox 3 menu. Watch with some attention the available examples..&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;&lt;span style="font-weight: bold; text-decoration: underline;"&gt;Conclusion:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;This tutorial gives you the main ideas how to customize your system. Of course the are more applications you might use at Openbox, but these were my choice.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; text-decoration: underline;"&gt;Other references:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;»&lt;a href="http://icculus.org/openbox/index.php/Main_Page" target="_blank"&gt;Openbox homepage&lt;/a&gt;&lt;br /&gt;»&lt;a href="http://pypanel.sourceforge.net/" target="_blank"&gt;Pypanel homepage&lt;/a&gt;&lt;br /&gt;»&lt;a href="http://obmenu.sourceforge.net/" target="_blank"&gt;Obmenu homepage&lt;/a&gt;&lt;br /&gt;»&lt;a href="http://wiki.archlinux.org/index.php/Openbox" target="_blank"&gt;Archlinux wiki - openbox&lt;/a&gt;&lt;br /&gt;»&lt;a href="http://wiki.debian.org/Openbox" target="_blank"&gt;Debian wiki - openbox&lt;/a&gt; some interesting key shortcuts.&lt;br /&gt;»&lt;a href="http://www.box-look.org/" target="_blank"&gt;Box-Look.org - themes&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;»&lt;a href="http://www.pixelgirlpresents.com/images/desktops/Fabien_Egot/Tree-Eater2560.jpg" target="_blank"&gt;Used wallpaper&lt;/a&gt;!&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; text-decoration: underline;"&gt;My files:&lt;/span&gt;&lt;br /&gt;There might be some differences with the screenshot displayed.&lt;br /&gt;»&lt;a href="http://dotfiles.org/%7Euterrorista/.pypanelrc" target="_blank"&gt;http://dotfiles.org/~uterrorista/.pypanelrc&lt;/a&gt;&lt;br /&gt;»&lt;a href="http://dotfiles.org/%7Euterrorista/.autostart.sh" target="_blank"&gt;http://dotfiles.org/~uterrorista/.autostart.sh&lt;/a&gt;&lt;br /&gt;»&lt;a href="http://dotfiles.org/%7Euterrorista/menu.xml" target="_blank"&gt;http://dotfiles.org/~uterrorista/menu.xml&lt;/a&gt;&lt;br /&gt;»&lt;a href="http://dotfiles.org/%7Euterrorista/rc.xml" target="_blank"&gt;http://dotfiles.org/~uterrorista/rc.xml &lt;/a&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;&lt;small&gt;&lt;/small&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-3551800008806787406?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/3551800008806787406/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=3551800008806787406&amp;isPopup=true' title='11 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/3551800008806787406'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/3551800008806787406'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/03/openbox-introductioncustomization.html' title='Openbox - introduction/customization'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://farm3.static.flickr.com/2243/2243840113_f8f7decaa1_t.jpg' height='72' width='72'/><thr:total>11</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-6612641292221167857</id><published>2008-03-07T18:55:00.000-08:00</published><updated>2008-03-07T19:42:25.991-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>Set the battery in conky correctly</title><content type='html'>Configure the battery at Conky can be a nightmare looking for this solution at web 'cus there isn't very information about it. I already had this problem...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;ACPI battery number is given as argument, at 'funtions' &lt;span style="font-weight: bold;"&gt;battery&lt;/span&gt;, &lt;span style="font-weight: bold;"&gt;battery_bar&lt;/span&gt; and &lt;span style="font-weight: bold;"&gt;battery_percent&lt;/span&gt;. By default the argument is BAT0. But if it doen't work, let's find out the correct argument:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Open the terminal and type:&lt;/li&gt;&lt;/ul&gt;&lt;code style="font-weight: bold;"&gt;$ ls /proc/acpi/battery&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;ul&gt;&lt;li&gt;There can be various kind of output:&lt;/li&gt;&lt;/ul&gt;&lt;code style="font-weight: bold;"&gt;CMB0&lt;br /&gt;BAT1&lt;br /&gt;BAT0&lt;br /&gt;...etc&lt;/code&gt;&lt;br /&gt;My output was: &lt;span style="font-weight: bold;"&gt;CMB0&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Open the .conkyrc file and edit to (examples):&lt;/li&gt;&lt;/ul&gt;&lt;code style="font-weight: bold;"&gt;${battery CMB0}&lt;br /&gt;${battery_bar CMB0}&lt;br /&gt;${battery_percent CMB0}&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Obviously, replace &lt;span style="font-weight: bold;"&gt;CMB0&lt;/span&gt; with the output you received earlier.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-6612641292221167857?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/6612641292221167857/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=6612641292221167857&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/6612641292221167857'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/6612641292221167857'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/03/set-battery-in-conky-correctly.html' title='Set the battery in conky correctly'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-103931213377278293</id><published>2008-03-04T12:39:00.000-08:00</published><updated>2008-09-09T14:20:22.292-07:00</updated><title type='text'>Get new Gimp's version @ Ubuntu</title><content type='html'>&lt;img src="http://farm3.static.flickr.com/2040/2310313065_ca5b04a637_m.jpg" height="200" align="right" width="150" /&gt;Today i found out that Ubuntu (&amp;amp; family) don't have access to the latest version of Gimp through repositories.&lt;br /&gt;&lt;br /&gt;We're stuck with version 2.4.2 instead the new version 2.4.5.&lt;br /&gt;&lt;br /&gt;Only Hardy Heron (8.04) will have access to it..&lt;br /&gt;So lets make this happen sonner :D&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Edit the souce list:&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;code style="font-weight: bold;"&gt;$ sudo gedit /etc/apt/sources.list&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;And add:&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;code style="font-weight: bold;"&gt;deb http://apt.schmidtke-hb.de gutsy main&lt;br /&gt;deb-src http://apt.schmidtke-hb.de gutsy main&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Save and close, return to the terminal and type:&lt;/li&gt;&lt;/ul&gt;&lt;code style="font-weight: bold;"&gt;$ wget apt.schmidtke-hb.de/aptrepository.asc&lt;br /&gt;$ sudo apt-key add aptrepository.asc&lt;br /&gt;$ sudo apt-get update&lt;br /&gt;$ sudo apt-get upgrade&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;If you don't have Gimp yet installed, just type:&lt;/li&gt;&lt;/ul&gt;&lt;code&gt;&lt;span style="font-weight: bold;"&gt;$ sudo apt-get install gimp&lt;/span&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;That's it!&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Links:&lt;/span&gt;&lt;br /&gt;»Homepage: &lt;a href="http://www.gimp.org/"&gt;Gimp&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-103931213377278293?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/103931213377278293/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=103931213377278293&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/103931213377278293'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/103931213377278293'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/03/get-new-gimps-version-ubuntu.html' title='Get new Gimp&apos;s version @ Ubuntu'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://farm3.static.flickr.com/2040/2310313065_ca5b04a637_t.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-5428149337227085127</id><published>2008-03-01T12:59:00.000-08:00</published><updated>2008-09-09T14:30:33.647-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Debian'/><title type='text'>Debian - NVIDIA drivers</title><content type='html'>A quick and easy tutorial about how to install NVIDIA drivers as simply as possible.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Prerequisites:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;As a starting point, download the &lt;a href="http://www.nvidia.com/object/unix.html"&gt;latest stable drivers&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Then you’ll need to install a few packages :&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ sudo apt-get install build-essential linux-headers-$(uname -r)&lt;/code&gt;&lt;br /&gt;Debian Sarge users have to replace&lt;span style="font-weight: bold;"&gt; linux-headers&lt;/span&gt; with&lt;span style="font-weight: bold;"&gt; kernel-headers&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Installation&lt;/span&gt;:&lt;br /&gt;&lt;br /&gt;First you’ll need to kill the X server. You can do that by switching to console #1 : press CTRL-ALT-F1 simultaneously.&lt;br /&gt;&lt;br /&gt;Once there, log in with your username and password.&lt;br /&gt;&lt;br /&gt;Stop the graphical login manager :&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ sudo /etc/init.d/gdm stop&lt;/code&gt;&lt;br /&gt;Then install the drivers :&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ sudo sh NVIDIA-Linux-x86-1.0-9755-pkg1.run&lt;/code&gt;&lt;br /&gt;and follow the installation process.&lt;br /&gt;&lt;br /&gt;Make sure you tell the installer to automatically modify your &lt;span style="font-weight: bold;"&gt;/etc/X11/xorg.conf&lt;/span&gt; file so you’ll end up using the NVIDIA drivers.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;Xorg.conf&lt;/span&gt;:&lt;br /&gt;&lt;br /&gt;If you haven’t, then you simply have to make a few changes to your &lt;span style="font-weight: bold;"&gt;/etc/X11/xorg.conf&lt;/span&gt; file. Here they are. Debian Sarge users have to modify &lt;span style="font-weight: bold;"&gt;/etc/X11/XF86Config-4&lt;/span&gt; instead.&lt;br /&gt;&lt;br /&gt;In &lt;span style="font-weight: bold;"&gt;Section “Modules”&lt;/span&gt; comment the&lt;span style="font-weight: bold;"&gt; dri&lt;/span&gt; and &lt;span style="font-weight: bold;"&gt;GLcore&lt;/span&gt; modules :&lt;br /&gt;&lt;br /&gt;&lt;code&gt;#Load "dri"&lt;br /&gt;#Load "GLcore"&lt;/code&gt;&lt;br /&gt;In &lt;span style="font-weight: bold;"&gt;Section “Device”&lt;/span&gt; make sure you use the NVIDIA driver :&lt;br /&gt;&lt;br /&gt;Driver "nvidia"&lt;br /&gt;&lt;br /&gt;And finally comment the whole &lt;span style="font-weight: bold;"&gt;Section “DRI”&lt;/span&gt; :&lt;br /&gt;&lt;br /&gt;&lt;code&gt;#Section "DRI"&lt;br /&gt;#        Mode    0666&lt;br /&gt;#EndSection&lt;/code&gt;&lt;br /&gt;Here is an example xorg.conf file with the proper changes made.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;X:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Once done, load the NVIDIA module :&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ sudo modprobe nvidia&lt;/code&gt;&lt;br /&gt;And restart the graphical login manager, which will bring back X :&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ sudo /etc/init.d/gdm start&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Tips:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If you happen to update your kernel, then you don’t need to reinstall the whole NVIDIA driver, but only the kernel module. So running this command will do the trick :&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ sudo sh NVIDIA-Linux-x86-1.0-9755-pkg1.run -K&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-5428149337227085127?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/5428149337227085127/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=5428149337227085127&amp;isPopup=true' title='10 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/5428149337227085127'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/5428149337227085127'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/03/debian-nvidia-drivers.html' title='Debian - NVIDIA drivers'/><author><name>serafim</name><uri>http://www.blogger.com/profile/09378997342964469679</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_8zmHsnACv-c/SiufeJuSooI/AAAAAAAAAAc/EaNB7-qKLNw/S220/306kq4.png'/></author><thr:total>10</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-3523883862508488554</id><published>2008-02-19T15:02:00.000-08:00</published><updated>2008-09-09T14:34:03.115-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Joke'/><title type='text'>Geek Joke</title><content type='html'>&lt;ol&gt;&lt;li&gt;Eight bytes walk into a bar. The bartender asks:&lt;br /&gt;» "&lt;span style="font-style: italic;"&gt;Can I get you anything?&lt;/span&gt;"&lt;br /&gt;» "&lt;span style="font-style: italic;"&gt;Yeah&lt;/span&gt;," reply the bytes, "&lt;span style="font-style: italic;"&gt;Make us a double!&lt;/span&gt;".&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Two bytes are sitting in a bar. One says:&lt;br /&gt;» "&lt;span style="font-style: italic;"&gt;I'm not feeling so well. I think I might have a parity error.&lt;/span&gt;"&lt;br /&gt;» "&lt;span style="font-style: italic;"&gt;Yeah&lt;/span&gt;," says the other, "&lt;span style="font-style: italic;"&gt;I thought you looked a bit off.&lt;/span&gt;"&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-3523883862508488554?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/3523883862508488554/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=3523883862508488554&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/3523883862508488554'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/3523883862508488554'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/02/geek-joke.html' title='Geek Joke'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-8731069064736789910</id><published>2008-02-17T14:12:00.000-08:00</published><updated>2008-02-17T14:33:56.021-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Customization'/><category scheme='http://www.blogger.com/atom/ns#' term='Arch Linux'/><title type='text'>My fonts @ Arch Linux</title><content type='html'>&lt;span style="font-weight: bold;"&gt;Screenshot:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://farm3.static.flickr.com/2092/2272765312_79cd07573b_o.png" target="_blank"&gt;&lt;img src="http://farm3.static.flickr.com/2092/2272765312_b4c166a846_m.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Need to install:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;code&gt;pacman -S artwiz-fonts ttf-ms-fonts&lt;/code&gt;&lt;br /&gt;# artwiz-fonts is not really necessary but is a 'nice pack'.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Attention:&lt;/span&gt;&lt;br /&gt;Installing ttf-ms-fonts gives me a damm big bug! My fonts at the login became huge. Size 100 at lest. Use at you own risk...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-8731069064736789910?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/8731069064736789910/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=8731069064736789910&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/8731069064736789910'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/8731069064736789910'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/02/my-fonts-arch-linux.html' title='My fonts @ Arch Linux'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://farm3.static.flickr.com/2092/2272765312_b4c166a846_t.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-5192487174787098193</id><published>2008-02-16T09:34:00.000-08:00</published><updated>2008-02-17T14:23:42.124-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><category scheme='http://www.blogger.com/atom/ns#' term='Arch Linux'/><title type='text'>Yaourt</title><content type='html'>&lt;span style="font-weight: bold;"&gt;What is it?&lt;br /&gt;&lt;/span&gt;"A pacman frontend for Archlinux"&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-style: italic;"&gt;Yaourt is a command line interface program which complete pacman for installing software on Archlinux. &lt;/span&gt;Written by Julien Mischkowitz.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Screenshots:&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://farm3.static.flickr.com/2292/2268734129_1481b2df2e_o.png" title="Click to view larger." target="_blank"&gt;&lt;img src="http://farm3.static.flickr.com/2292/2268734129_0ff7e2da38_m.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Installation:&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Edit:&lt;br /&gt;&lt;code style="font-weight: bold;"&gt;# nano /etc/pacman.conf&lt;/code&gt;&lt;/li&gt;&lt;li&gt;And add:&lt;br /&gt;&lt;code style="font-weight: bold;"&gt;[archlinuxfr]&lt;br /&gt;Server = http://repo.archlinux.fr/i686&lt;/code&gt;&lt;br /&gt;Or&lt;br /&gt;&lt;code style="font-weight: bold;"&gt;[archlinuxfr]&lt;br /&gt;Server = http://repo.archlinux.fr/x86_64&lt;/code&gt;&lt;/li&gt;&lt;li&gt;Update &amp;amp; install:&lt;br /&gt;&lt;code style="font-weight: bold;"&gt;# pacman -Sy yaourt&lt;span style="font-family:Georgia,serif;"&gt;&lt;/span&gt;&lt;/code&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;"&gt;Yaourt + sudo:&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Edit:&lt;br /&gt;&lt;code style="font-weight: bold;"&gt;# nano /etc/sudoers&lt;/code&gt;&lt;/li&gt;&lt;li&gt;Edit it to something like this:&lt;br /&gt;&lt;code style="font-weight: bold;"&gt;# User alias specification&lt;br /&gt;User_Alias POWERUSER=user&lt;br /&gt;&lt;br /&gt;# Cmnd alias specification&lt;br /&gt;Cmnd_Alias YAOURT=/usr/bin/pacman, /usr/bin/pacdiffviewer&lt;br /&gt;&lt;br /&gt;# User privilege specification&lt;br /&gt;root    ALL=(ALL) ALL&lt;br /&gt;POWERUSER ALL=(ALL) YAOURT&lt;/code&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;"&gt;Utilization:&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Search and install&lt;br /&gt;yaourt [keywords]: quick search + install&lt;br /&gt;yaourt -S [packages] : install package, Compile it from AUR if needed&lt;br /&gt;yaourt -Ss [keywords] : search on repos and on AUR (with notice for already installed packages)&lt;br /&gt;yaourt -Sb [packages] : install a packages by compilation from sources (abs)&lt;br /&gt;yaourt -Sl [repos] : prompt for packages of the selected repos (emphasize those already installed)&lt;br /&gt;yaourt -Qs [keywords] : colorized ouput of installed packages and the repos where they come from&lt;br /&gt;yaourt -Qo [progname] or [filename] : shows the package which provides the program or the file&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Updgrade:&lt;br /&gt;yaourt -Syu : complete update and upgrade of the system (onlys from repos)&lt;br /&gt;yaourt -Syu --aur : complete update and upgrade, even for packages coming from AUR&lt;br /&gt;yaourt -Sybu --aur : complete update and upgrade by compilation of all packages (repos and AUR)&lt;br /&gt;yaourt -Su --devel : update and upgrade of cvs/svn/mercurial/git packages&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Cleaning:&lt;br /&gt;yaourt -C : editing and merging of .pacnew/.pacsave&lt;br /&gt;yaourt -Cc : removal of all .pacnew/.pacsave&lt;br /&gt;yaourt -Qt : search for orphaned packages&lt;br /&gt;yaourt -Cd : search for obsolete repos&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Other options:&lt;br /&gt;--export [directory] : exports compiled packages for gensync&lt;br /&gt;yaourt -S --aur [packages] : forces compilation from AUR for a packages which is also in repos&lt;br /&gt;yaourt -G [packages] : retrive PKGBUILD and local sources in current directory.&lt;br /&gt;yaourt -B  : backup the pacman database&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;"&gt;Read more at:&lt;/span&gt;&lt;br /&gt;» http://archlinux.fr/yaourt-en/&lt;br /&gt;» http://wiki.archlinux.fr/howto:archlinux:yaourt&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-5192487174787098193?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/5192487174787098193/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=5192487174787098193&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/5192487174787098193'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/5192487174787098193'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/02/yaourt.html' title='Yaourt'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://farm3.static.flickr.com/2292/2268734129_0ff7e2da38_t.jpg' height='72' width='72'/><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-185426794704964859</id><published>2008-02-11T07:52:00.000-08:00</published><updated>2008-02-11T07:58:37.547-08:00</updated><title type='text'>New Template</title><content type='html'>I've already stop searching for more templates.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;This is the one.&lt;/span&gt; It's very &lt;span style="font-style: italic;"&gt;web2.0&lt;/span&gt; and &lt;span style="font-style: italic;"&gt;eye candy&lt;/span&gt;..&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;There are still some minor details do change (banner, etc) but this will be the essence of the blog.&lt;br /&gt;&lt;br /&gt;We hope you enjoyed ;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-185426794704964859?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/185426794704964859/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=185426794704964859&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/185426794704964859'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/185426794704964859'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/02/new-template.html' title='New Template'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-8671908193921998327</id><published>2008-02-10T16:01:00.000-08:00</published><updated>2008-02-10T17:27:26.699-08:00</updated><title type='text'>Layout Testing</title><content type='html'>We're testing and searching new template.&lt;br /&gt;Sorry for any inconvenience caused..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-8671908193921998327?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/8671908193921998327/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=8671908193921998327&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/8671908193921998327'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/8671908193921998327'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/02/message-text.html' title='Layout Testing'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-2991055502108258762</id><published>2008-02-06T15:19:00.001-08:00</published><updated>2008-02-11T06:29:39.063-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>Java + Compiz</title><content type='html'>Start by downloading this &lt;a href="http://www.savefile.com/files/474006"&gt;patch&lt;/a&gt; for the jre engine, and then move it to the path of the folder and uncompress it.&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ cd /path/of/the/patch/&lt;br /&gt;$ tar -xf patch.tar&lt;br /&gt;$ cd patch&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Now You will do a backup off rt.jr. Usually the path to&lt;span style="font-weight: bold;"&gt; rt.jr&lt;/span&gt; is &lt;span style="font-weight: bold;"&gt;/usr/lib/jvm/java-6-sun/jre/lib/&lt;/span&gt;. I suppose that you are using the latest sun java version.&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ sudo cp /usr/lib/jvm/java-6-sun/jre/lib/rt.jar /usr/lib/jvm/java-6-sun/jre/lib/rt.jar.old&lt;br /&gt;$ sudo cp /usr/lib/jvm/java-6-sun/jre/lib/rt.jar rt.zip&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Now you will apply the patch:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ zip -f rt.zip sun/awt/X11/*&lt;br /&gt;$ sudo cp rt.zip /usr/lib/jvm/java-6-sun/jre/lib/rt.jar&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;After that you will be able to run any application who use java, like mercury messenger.&lt;span style="font-size:100%;"&gt;&lt;code style="font-family: times new roman;"&gt;&lt;/code&gt;&lt;/span&gt;&lt;code style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-2991055502108258762?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/2991055502108258762/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=2991055502108258762&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/2991055502108258762'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/2991055502108258762'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/02/java-compiz.html' title='Java + Compiz'/><author><name>serafim</name><uri>http://www.blogger.com/profile/09378997342964469679</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_8zmHsnACv-c/SiufeJuSooI/AAAAAAAAAAc/EaNB7-qKLNw/S220/306kq4.png'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-8253740942376536657</id><published>2008-01-15T17:00:00.000-08:00</published><updated>2008-02-12T03:38:41.742-08:00</updated><title type='text'>meplace.net » Já estou com a Apple até aos cabelos!</title><content type='html'>Fica aqui também escrito o meu post fabricado no &lt;a href="http://www.meplace.net/"&gt;meplace.net&lt;/a&gt; apenas para que os planetários (PlanetGeek) e outros possam ler:&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;p align="justify"&gt;&lt;img src="http://farm3.static.flickr.com/2328/2195574375_912c62b408.jpg?v=0" align="left" /&gt;&lt;/p&gt;&lt;p align="justify"&gt;&lt;br /&gt;Venho agora do PlanetGeek e deparo-me que metade dos posts existentes são sobre a Apple. Ou é sobre um novo hardware, um novo update de um programa ou gadget, ou novidades que não existem... Bah. Estou farto!&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p align="justify"&gt; Sim gosto muito dos Mac, iPhone, iPod, etc, e adorava ter um de cada, pois são extremamente apetecíveis, são práticos, bonitos, boa qualidade de construção, excelentes detalhes em tornar o produto fácil de manusear para o utilizador, ETC!&lt;/p&gt;&lt;br /&gt;&lt;p align="justify"&gt;Mas será que há necessidade de apresentar todas as novidades do mundo da Apple? Dá a sensação que só existe portáteis Mac, telemóveis iPhone, leitores de mp3 iPod &lt;strike&gt;touch&lt;/strike&gt; e estes são idolatrados por todos e o resto é m*rda!&lt;/p&gt;&lt;br /&gt;&lt;p align="justify"&gt;Não estou contra estes &lt;em&gt;posts&lt;/em&gt; sobre Apple, mas sim com o abuso de publicidade grátis que esta tem..&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p align="justify"&gt;Quantas vezes vocês já viram notícias sobre iPhone ou sobre o Archos?&lt;br /&gt;&lt;a href="http://www.archos.com/" target="_blank"&gt;Archos&lt;/a&gt;, possivelmente vocês nem sabem o que é um Archos..&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p align="justify"&gt;Quantas vezes vocês já viram notícias sobre os MacBook ou sobre Lenovo?&lt;br /&gt;&lt;a href="http://www.lenovo.com/" target="_blank"&gt; Lenovo&lt;/a&gt; - "Epahh também não conheço essa.."&lt;br /&gt;&lt;/p&gt;&lt;p align="justify"&gt;Isto são apenas dois exemplos de duas marcas com bons produtos, que a maioria das pessoas desconhece. Apenas desconhecidos porque ninguém escreve artigos/noticias sobre eles - Porque? Porque só conhecem Macs e afins..&lt;/p&gt;&lt;br /&gt;&lt;p align="justify"&gt;Por isso peço aos &lt;em&gt;bloggers&lt;/em&gt;/escritores de Portugal que olhem um bocado para o lado, descobram novas marcas, novos produtos que por vezes são melhores e são inclusive mais baratos, quem ensinem e instruam os vossos leitores sobre uma panorama geral dos produtos tecnológicos existentes.&lt;/p&gt;&lt;br /&gt;&lt;p align="justify"&gt;E vocês leitores, protestem - sejam exigentes.&lt;a href="javascript:void(0)" tabindex="10" onclick="return false;"&gt;&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;PS: Considerem este post como uma crítica construtiva e não como um ataque!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-8253740942376536657?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/8253740942376536657/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=8253740942376536657&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/8253740942376536657'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/8253740942376536657'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/01/meplacenet-j-estou-com-apple-at-aos.html' title='meplace.net » Já estou com a Apple até aos cabelos!'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-2610309399998442026</id><published>2008-01-13T11:22:00.000-08:00</published><updated>2008-02-12T03:39:43.205-08:00</updated><title type='text'>Better looking amsn - antialiasing</title><content type='html'>&lt;p style="text-align: justify;"&gt;&lt;span style="text-decoration: underline;"&gt;&lt;/span&gt;The new versions of tcl/tk 8.5 allows better antialiasing:&lt;br /&gt;&lt;/p&gt;&lt;p style="text-align: center;"&gt;&lt;a href="http://farm3.static.flickr.com/2126/2146901193_0d03f1a6ac_o.png" title="Ver versão maior. click" target="_blank"&gt;&lt;br /&gt;&lt;img src="http://farm3.static.flickr.com/2126/2146901193_e774bcd689_m.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="text-align: center;"&gt;[with(right) and without(left) antialiasing]&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;p style="font-weight: bold; font-style: italic; color: rgb(153, 51, 0);"&gt;&lt;span style="font-size:100%;"&gt;How to&lt;/span&gt;&lt;/p&gt; &lt;p&gt;Download:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;tcl: &lt;a href="http://downloads.sourceforge.net/tcl/tcl8.5.0-src.tar.gz?modtime=1198084012&amp;amp;big_mirror=1" title="Download Tcl" target="_blank"&gt;click&lt;/a&gt;&lt;/li&gt;&lt;li&gt;tk: &lt;a href="http://downloads.sourceforge.net/tcl/tk8.5.0-src.tar.gz?modtime=1197988885&amp;amp;big_mirror=1" title="Download Tk" target="_blank"&gt;click&lt;/a&gt;&lt;/li&gt;&lt;li&gt;amsn_source: &lt;a href="http://prdownloads.sourceforge.net/amsn/amsn-0.97.tar.bz2" title="Download amsn_source" target="_blank"&gt;click&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt; &lt;ol&gt;&lt;li&gt;First, go to Synaptic and uninstall all versions of tcl and tk..&lt;/li&gt;&lt;li&gt;Now compile  tcl and tk - unrar downloaded files and enter the directory: ‘unix, then:&lt;code style="font-weight: bold; color: rgb(51, 51, 51);"&gt;&lt;br /&gt;$ sudo ./configure &amp;amp;&amp;amp; sudo make &amp;amp;&amp;amp; sudo make install&lt;/code&gt;&lt;/li&gt;&lt;li&gt;Compile amsn: unrar downloaded source...:&lt;br /&gt;&lt;code style="font-weight: bold; color: rgb(51, 51, 51);"&gt;$ ./configure --prefix=/usr --with-tcl=/usr/local/lib --with-tk=/usr/local/lib&lt;br /&gt;&lt;/code&gt;&lt;code style="font-weight: bold; color: rgb(51, 51, 51);"&gt; $ sudo make &amp;amp;&amp;amp; sudo make install&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;em&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/em&gt;Note:&lt;br /&gt;&lt;ul&gt;&lt;li&gt; If the error: “/usr/local/bin/amsn: line 3: exec: wish: not found” appears, type:&lt;br /&gt;&lt;code style="font-weight: bold; color: rgb(51, 51, 51);"&gt;$ sudo ln -s /usr/local/bin/wish8.5 /usr/local/bin/wish&lt;/code&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:monospace;"&gt;[Portuguese version of tutorial - &lt;a href="http://www.meplace.net/blog/2007/12/30/amsn-mais-bonito/"&gt;here&lt;/a&gt;]&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;code&gt;&lt;/code&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-2610309399998442026?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/2610309399998442026/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=2610309399998442026&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/2610309399998442026'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/2610309399998442026'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/01/better-looking-amsn-antialiasing.html' title='Better looking amsn - antialiasing'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://farm3.static.flickr.com/2126/2146901193_e774bcd689_t.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-2570573225091718393</id><published>2008-01-05T16:13:00.000-08:00</published><updated>2008-02-12T03:46:41.162-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>Solution for Compiz + Matlab</title><content type='html'>&lt;ul&gt;&lt;li&gt;    * You only need to edit the matlab bin file by paste just after the "#!/bin/sh" command:&lt;/li&gt;&lt;/ul&gt;export MATLAB_JAVA=/usr/lib/jvm/java-6-sun/jre/&lt;br /&gt;&lt;ul&gt;&lt;li&gt;You will find the matlab bin file on:&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;code&gt;/path to matlab/bin/matlab&lt;/code&gt;&lt;ul&gt;&lt;li&gt;Now edit matlab bin file:&lt;/li&gt;&lt;/ul&gt;&lt;code&gt;$ gedit /path to matlab/bin/matlab&lt;/code&gt;&lt;ul&gt;&lt;li&gt;The result after editing the file would be something like this:&lt;/li&gt;&lt;/ul&gt;&lt;code&gt;    #!/bin/sh&lt;br /&gt;export MATLAB_JAVA=/usr/lib/jvm/java-6-sun/jre/&lt;br /&gt;#&lt;br /&gt;# Name:&lt;br /&gt;# matlab script file for invoking MATLAB&lt;br /&gt;#&lt;br /&gt;bla bla bla&lt;/code&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Save and run Matlab ;)&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-2570573225091718393?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/2570573225091718393/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=2570573225091718393&amp;isPopup=true' title='11 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/2570573225091718393'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/2570573225091718393'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2008/01/solution-for-compiz-matlab.html' title='Solution for Compiz + Matlab'/><author><name>serafim</name><uri>http://www.blogger.com/profile/09378997342964469679</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_8zmHsnACv-c/SiufeJuSooI/AAAAAAAAAAc/EaNB7-qKLNw/S220/306kq4.png'/></author><thr:total>11</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-1847235919467178882</id><published>2007-12-17T13:01:00.000-08:00</published><updated>2007-12-17T14:22:18.045-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Customization'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>Alias - how to</title><content type='html'>&lt;span style="font-style: italic; color: rgb(153, 51, 0); font-weight: bold;font-size:100%;" &gt;Definition (&lt;/span&gt;&lt;span style="font-style: italic; color: rgb(153, 51, 0); font-weight: bold;font-size:100%;" class="me" &gt;alias&lt;/span&gt;&lt;span style="font-style: italic; color: rgb(153, 51, 0); font-weight: bold;font-size:100%;" &gt; &lt;/span&gt;&lt;span style="font-style: italic; color: rgb(153, 51, 0); font-weight: bold;font-size:100%;" class="prondelim" &gt;[ˈeiliəs]&lt;/span&gt;&lt;span style="font-style: italic; color: rgb(153, 51, 0); font-weight: bold;font-size:100%;" &gt; &lt;/span&gt;&lt;span style="font-style: italic; color: rgb(153, 51, 0); font-weight: bold;font-size:100%;" class="pg" &gt;noun&lt;/span&gt;&lt;span style="font-style: italic; color: rgb(153, 51, 0);font-size:130%;" &gt;&lt;span style="color: rgb(153, 51, 0); font-weight: bold;font-size:100%;" &gt;):&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;blockquote&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt; a false name&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Example: What alias did the crook use this time?&lt;/span&gt;&lt;br /&gt;Arabic:     إسْم مُسْتَعَار&lt;br /&gt;Chinese (Simplified):     化名&lt;br /&gt;Chinese (Traditional):     化名&lt;br /&gt;Czech:     falešné jméno&lt;br /&gt;Danish:     alias; dæknavn&lt;br /&gt;Dutch:     alias&lt;br /&gt;Estonian:     valenimi&lt;br /&gt;Finnish:     peitenimi&lt;br /&gt;French:     faux nom&lt;br /&gt;German:     der Deckname&lt;br /&gt;Greek:     ψευδώνυμο&lt;br /&gt;Hungarian:     álnév&lt;br /&gt;Icelandic:     falskt nafn, tökuheiti&lt;br /&gt;Indonesian:     nama palsu, nama lain&lt;br /&gt;Italian:     pseudonimo&lt;br /&gt;&lt;br /&gt;Japanese:     偽名, 通称&lt;br /&gt;Korean:     별명&lt;br /&gt;Latvian:     pieņemts vārds&lt;br /&gt;Lithuanian:     slapyvardis, pravardė&lt;br /&gt;Norwegian:     dekknavn&lt;br /&gt;Polish:     pseudonim, fałszywe nazwisko&lt;br /&gt;Portuguese (Brazil):     pseudônimo&lt;br /&gt;Portuguese (Portugal):     pseudónimo&lt;br /&gt;Romanian:     supranume&lt;br /&gt;Russian:     кличка; прозвище&lt;br /&gt;Slovak:     falošné meno&lt;br /&gt;Slovenian:     lažno ime&lt;br /&gt;Spanish:     seudónimo&lt;br /&gt;Swedish:     alias&lt;br /&gt;Turkish:     sahte a&lt;br /&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;span style="font-size:85%;"&gt;source: &lt;a href="http://dictionary.reference.com/browse/alias?r=75"&gt;dictionary.com&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 51, 0);font-size:130%;" &gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold;"&gt;Alias command definition:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-style: italic;"&gt;Alias&lt;/span&gt; is a built-in shell command that allows you create shortcuts/synonyms for other shell commands.&lt;br /&gt;&lt;span style="color: rgb(153, 51, 0);font-size:130%;" &gt;&lt;span style="font-style: italic;"&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-size:100%;" &gt;How to make an alias:&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;ul&gt;&lt;li&gt;Sintax&lt;/li&gt;&lt;/ul&gt;&lt;i&gt;alias [name=['command']]&lt;br /&gt;&lt;/i&gt;&lt;ul&gt;&lt;li&gt;example - make an alias for &lt;span style="font-weight: bold; font-style: italic;"&gt;clear&lt;/span&gt; command:&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;$ alias cl='clear'&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;description: now when you type &lt;span style="font-style: italic; font-weight: bold;"&gt;cl&lt;/span&gt; at your terminal, is the same thing as type &lt;span style="font-style: italic; font-weight: bold;"&gt;clear&lt;/span&gt;. This can be used for more and/or long stings..&lt;/li&gt;&lt;li&gt;other alias:&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;&lt;span style="color: rgb(51, 51, 51);"&gt;$ alias p='pwd'&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);"&gt;$ alias x="exit"&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);"&gt;$ alias folderx='cd /home/your_user/Desktop/folderx'&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(153, 51, 0);font-size:130%;" &gt;&lt;span style="font-style: italic;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold;"&gt;How to remove  an alias:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Sintax&lt;/li&gt;&lt;/ul&gt; &lt;i&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;unalias [alias_name]&lt;/span&gt;&lt;br /&gt;&lt;/i&gt; &lt;ul&gt;&lt;li&gt;example - remove an alias for &lt;span style="font-weight: bold; font-style: italic;"&gt;clear&lt;/span&gt; command:&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;$ unalias cl&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 51, 0);font-size:130%;" &gt;&lt;span style="font-style: italic;"&gt;&lt;span style="font-weight: bold;font-size:100%;" &gt;Note:&lt;/span&gt;&lt;/span&gt;&lt;span style="font-style: italic;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;When the computer is rebooted all alias will be lost.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;How to prevent it&lt;/span&gt;? All alias must be added to &lt;span style="font-style: italic;"&gt;.bashrc&lt;/span&gt; file located at your user folder (example: /home/uterrorista/.bashrc)&lt;br /&gt;&lt;ul&gt;&lt;li&gt;example:&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;$ gedit /home/uterrorista/.bashrc&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;paste:&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;alias cl='clear'&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;etc...&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;now you have to 'compile' your &lt;span style="font-style: italic;"&gt;.bashrc&lt;/span&gt; file&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;$ source .bashrc&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Now &lt;span style="font-style: italic; font-weight: bold;"&gt;cl&lt;/span&gt; alias it's saved..&lt;/li&gt;&lt;/ul&gt;&lt;span style="color: rgb(153, 51, 0);font-size:130%;" &gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;&lt;span style="font-size:100%;"&gt;My tutorial:&lt;/span&gt;&lt;/span&gt;&lt;span style="font-style: italic;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;Make an alias to create other alias..&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Edit &lt;span style="font-style: italic;"&gt;.bashrc&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;$ cd&lt;br /&gt;$ gedit .bashrc&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;and paste &lt;span&gt;(replace your_user_name with your nick session)&lt;/span&gt;:&lt;/li&gt;&lt;/ul&gt;&lt;span style="color: rgb(51, 51, 51); font-weight: bold;font-size:85%;" &gt;## Add new alias and compile i&lt;br /&gt;alias aalias='gedit /home/&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;your_user_name&lt;/span&gt;&lt;span style="color: rgb(51, 51, 51); font-weight: bold;font-size:85%;" &gt;/.bashrc &amp;amp;&amp;amp; source /home/&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;your_user_name&lt;/span&gt;&lt;span style="color: rgb(51, 51, 51); font-weight: bold;font-size:85%;" &gt;/.bashrc'&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;compile&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="color: rgb(51, 51, 51); font-weight: bold;"&gt;$ source .bashrc&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Now you can add the alias you want just simple doing:&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="color: rgb(51, 51, 51); font-weight: bold;"&gt;$ aalias&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add (for example. you can make now your desired alias):&lt;/li&gt;&lt;/ul&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;## One folder up&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;alias up='cd ..'&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;## Clear screen&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;alias cl='clear'&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;alias ff='find . -name $*'&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;alias untar='tar zxvf'&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;alias p='pwd'&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;alias ls="ls --color=auto"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;alias ll="ls -l --color=auto"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;alias la="ls -l -a --color=auto"&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;alias x="exit"&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;alias compilar='sudo ./configure &amp;amp;&amp;amp; sudo make &amp;amp;&amp;amp; sudo make install'&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;alias apti='sudo apt-get install'&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;alias aptud='sudo apt-get update'&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;alias aptug='sudo apt-get upgrade'&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;alias aptar='sudo apt-get autoremove'&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;alias aptr='sudo apt-get remove'&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;alias aptc='sudo apt-get clean'&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;alias aptac='sudo apt-get autoclean'&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;function today {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    echo "Today's date is:"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    date +"%A, %B %-d, %Y"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;}&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Note: you if have noticed i have a function on my &lt;span style="font-style: italic; font-weight: bold;"&gt;.bashrc&lt;/span&gt; file -&lt;span style="font-style: italic;"&gt; &lt;span style="font-weight: bold;"&gt;function today&lt;/span&gt;&lt;/span&gt;. To run it type: &lt;span style="font-style: italic;"&gt;&lt;span style="font-weight: bold;"&gt;today&lt;/span&gt;.&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-style: italic;"&gt;&lt;/span&gt;&lt;ul&gt;&lt;li&gt;to remove an alias: just edit the .bashrc file (aalias) and remove/delete the alias you don't need anymore..&lt;/li&gt;&lt;/ul&gt;Be free to submit a comment and post your alias..&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-1847235919467178882?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/1847235919467178882/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=1847235919467178882&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/1847235919467178882'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/1847235919467178882'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/12/alias-how-to.html' title='Alias - how to'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-1697750129080574452</id><published>2007-12-08T08:26:00.000-08:00</published><updated>2007-12-09T13:59:52.276-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Bluetooth @ ubuntu  - kdebluetooth/kbluetooth</title><content type='html'>I've some difficulties connecting my Nokia 6820 to the Laptop (maybe it was just my ignorance...)&lt;br /&gt;And know i've a band new Sony Ericsson M600i.&lt;br /&gt;&lt;br /&gt;The question survived : &lt;span style="font-weight: bold;"&gt;How to send files to my phone?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I was using the default gnome bluetooth manager... That was not enough..&lt;br /&gt;I did some research and found out that Kde bluetooth manager was (much) better.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(153, 51, 0);"&gt;&lt;span style="font-weight: bold;"&gt;Screenshots&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://farm3.static.flickr.com/2270/2095977490_37f4eb5829_o.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(153, 51, 0);"&gt;&lt;span style="font-weight: bold;"&gt;How to use&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Launch &lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;kbluetooh&lt;br /&gt;&lt;/span&gt;An icon will appear at Notification area.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Click and you'll get the window previously showed..&lt;br /&gt;Then the Computer will automatically scan for bluetooth devices(e.g: M600i.box). Remember to turn on your bluetooth's phone.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Click on &lt;span style="font-style: italic;"&gt;M600i.box&lt;/span&gt; icon, then &lt;span style="font-style: italic;"&gt;File transfer/Obex File Transfer&lt;/span&gt;. &lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Now check your mobile phone. A message asking permission to pair the phone with computer should pop up. Accept it. And enter 'pair code'. At your computer will pop up a window asking the  same 'pair code'.&lt;/li&gt;&lt;/ul&gt;Now you have the two devices are paired. You can explore your mobile content. Copy/Drag files wherever you want to.&lt;br /&gt;&lt;span style="font-size:85%;"&gt;Note: depending your mobile phone model you'll still need to check your phone to accept the connection everytime you explore a different folder at your computer.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(153, 51, 0);"&gt;&lt;span style="font-weight: bold;"&gt;Install&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;ul&gt;&lt;li&gt;Direct link:&lt;/li&gt;&lt;/ul&gt;&lt;a href="apt:kdebluetooth"&gt;&lt;span style="font-size:85%;"&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size:85%;"&gt;&lt;a style="font-weight: bold;"&gt;install&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;or console:&lt;/li&gt;&lt;/ul&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;sudo apt-get install kdebluetooth&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;ul&gt;&lt;li&gt;Note: you will need to install &lt;a href="apt:konqueror"&gt;konqueror&lt;/a&gt; and &lt;a href="apt:obexftp"&gt;obexftp&lt;/a&gt; at least..&lt;br /&gt;Don't know if any more dependences are necessary because I've KDE installed on my computer.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-1697750129080574452?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/1697750129080574452/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=1697750129080574452&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/1697750129080574452'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/1697750129080574452'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/12/bluetooth-ubuntu-kbluetooth.html' title='Bluetooth @ ubuntu  - kdebluetooth/kbluetooth'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-5895186764122577664</id><published>2007-11-26T11:16:00.000-08:00</published><updated>2007-11-26T11:29:16.390-08:00</updated><title type='text'>Microsoft True Type Core Fonts (aka ms truetype fonts)</title><content type='html'>&lt;span style="font-style: italic; color: rgb(153, 51, 0);"&gt;&lt;span style="font-weight: bold;"&gt;About:&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;This package allows for easy installation of the &lt;span style="font-weight: bold;"&gt;Microsoft True Type Core Fonts&lt;/span&gt; for the Web including:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Andale Mono&lt;/li&gt;&lt;li&gt;Arial Black&lt;/li&gt;&lt;li&gt;Arial (Bold, Italic, Bold Italic)&lt;/li&gt;&lt;li&gt;Comic Sans MS (Bold)&lt;/li&gt;&lt;li&gt;Courier New (Bold, Italic, Bold Italic)&lt;/li&gt;&lt;li&gt;Georgia (Bold, Italic, Bold Italic)&lt;/li&gt;&lt;li&gt;Impact&lt;/li&gt;&lt;li&gt;Times New Roman (Bold, Italic, Bold Italic)&lt;/li&gt;&lt;li&gt;Trebuchet (Bold, Italic, Bold Italic)&lt;/li&gt;&lt;li&gt;Verdana (Bold, Italic, Bold Italic)&lt;/li&gt;&lt;li&gt;Webdings&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(153, 51, 0);"&gt;&lt;span style="font-weight: bold;"&gt;Install: &lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(153, 51, 0);"&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-size:85%;"&gt;(2 methods) &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-style: italic; color: rgb(153, 51, 0);"&gt;&lt;span style="font-weight: bold;"&gt;&lt;a href="apt:msttcorefonts"&gt;&lt;br /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;ul&gt;&lt;li&gt;(1) direct link using firefox:&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;a href="apt:msttcorefonts"&gt;click&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;/span&gt;&lt;ul&gt;&lt;li&gt;(2) console method:&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;$ sudo apt-get install msttcorefonts&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;ul&gt;&lt;li&gt;Then logout and login.&lt;/li&gt;&lt;/ul&gt;Note: there is the command &lt;code&gt;'$sudo fc-cache -fv' &lt;/code&gt;that &lt;span style="font-style: italic;"&gt;may&lt;/span&gt; skip 'relogin'.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-5895186764122577664?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/5895186764122577664/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=5895186764122577664&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/5895186764122577664'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/5895186764122577664'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/11/microsoft-true-type-core-fonts.html' title='Microsoft True Type Core Fonts (aka ms truetype fonts)'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-8089962894770073476</id><published>2007-11-11T13:49:00.000-08:00</published><updated>2007-11-15T05:08:49.044-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Customization'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Gnome-art</title><content type='html'>Today I found a very simple way to personalize our Gnome.&lt;br /&gt;I've discovered &lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;Gnome-art&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic; color: rgb(153, 51, 0);"&gt;Screenshot:&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div style="text-align: center;"&gt;&lt;img src="http://farm3.static.flickr.com/2382/1972598496_9bcd086cec.jpg?v=0" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 51, 0); font-weight: bold; font-style: italic;"&gt;Description:&lt;/span&gt;&lt;br /&gt;This is the graphical &lt;span style="font-style: italic;"&gt;frontend&lt;/span&gt; for art.gnome.org. Backgrounds and all themes can be downloaded and previewed. Backgrounds, icon themes and splash screens can be installed directly.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;Under the menu Art we can find:&lt;br /&gt;&gt; Backgrounds&lt;br /&gt;&gt;&gt; Gnome&lt;br /&gt;&gt;&gt; Other&lt;br /&gt;&gt;&gt; All&lt;br /&gt;&lt;br /&gt;&gt; Desktop theme&lt;br /&gt;&gt;&gt; Application&lt;br /&gt;&gt;&gt; Window Border&lt;br /&gt;&gt;&gt; Icon&lt;br /&gt;&lt;br /&gt;&gt; Other Themes&lt;br /&gt;&gt;&gt; Login Manager&lt;br /&gt;&gt;&gt; Splash Screens&lt;br /&gt;&gt;&gt; GTK + Engine&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic; color: rgb(153, 51, 0);"&gt;Instructions&lt;/span&gt;:&lt;br /&gt;Just select one of the Art's categories. Then gnome-art starts caching thumbnail previews. Now we can choose, preview and install whet we want/like. Very simple to use.&lt;br /&gt;&lt;span style="font-size:85%;"&gt;Note: Caching thumbnails can take some minutes.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; font-weight: bold; color: rgb(153, 51, 0);"&gt;Installing &lt;/span&gt;&lt;span style="font-size:85%;"&gt;(3 methods)&lt;/span&gt;&lt;ul&gt;&lt;li&gt;(1)direct link&lt;span style="font-weight: bold; font-style: italic;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt; &lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;a style="font-weight: bold;" href="apt:gnome-art"&gt;install&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;(2)console &lt;/li&gt;&lt;/ul&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;$ sudo apt-get install gnome-art&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;(3)synaptic package manager&lt;/li&gt;&lt;/ul&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;gnome-art&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-8089962894770073476?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/8089962894770073476/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=8089962894770073476&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/8089962894770073476'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/8089962894770073476'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/11/gnome-art.html' title='Gnome-art'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-8762578854948554856</id><published>2007-11-07T14:53:00.000-08:00</published><updated>2007-11-07T15:20:51.153-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Netspeed &amp; GFreqlet (applets)</title><content type='html'>These are the two Gnome applets i can't live without:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(153, 51, 0);"&gt;&lt;span style="font-weight: bold;"&gt;Netspeed&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=""&gt;&lt;/span&gt;&lt;div style="text-align: center;"&gt;&lt;span style=""&gt;&lt;img src="http://farm3.static.flickr.com/2408/1908547355_cd89d0c94e.jpg?v=0" /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;span style=""&gt;&lt;br /&gt;&lt;/span&gt;&lt;div style="text-align: justify;"&gt;&lt;blockquote&gt;Netspeed is just a little &lt;a href="http://www.gnome.org/"&gt;GNOME&lt;/a&gt;-applet that shows how much traffic occurs on a specified network device (for example eth0). You get the best impression of it, if you look at the screenshots below.&lt;/blockquote&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;some screenshots:&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;img src="http://farm3.static.flickr.com/2077/1908603371_4fbb089579.jpg?v=0" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;img src="http://farm3.static.flickr.com/2070/1908603421_2a7281b6a8.jpg?v=0" /&gt;&lt;br /&gt;&lt;div style="text-align: left;"&gt;installation:&lt;br /&gt;&lt;ul style="color: rgb(51, 51, 51); font-weight: bold;"&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;apt-get install netspeed&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;link:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;&lt;a href="http://www.wh-hms.uni-ulm.de/%7Emfcn/netspeed/"&gt;[HOME]&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(153, 51, 0);"&gt;&lt;span style="font-weight: bold;"&gt;GFreqlet&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;img src="http://farm3.static.flickr.com/2296/1908547269_5274f24ad3.jpg?v=0" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;blockquote&gt;GFreqlet is a GNOME applet for Linux that not only monitors CPU frequency scaling, but also allows the end user to change the frequency or governor with just a click. It automatically detects which frequencies and governors your processor supports, so there is no configuration required. The applet itself is not run as root, nor required to modify to run with root ownership, but password prompts with gksudo if a super user action is required. GFreqlet is very straight forward and minimal.&lt;/blockquote&gt;&lt;/div&gt;some screenshots:&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;img src="http://farm3.static.flickr.com/2415/1908547315_cb82a89ae4.jpg?v=0" /&gt;&lt;br /&gt;&lt;/div&gt;installation:&lt;br /&gt;&lt;ul style="color: rgb(51, 51, 51); font-weight: bold;"&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;&lt;a href="http://sourceforge.net/project/showfiles.php?group_id=190548"&gt;download and install&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;link:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://gfreqlet.sourceforge.net/"&gt;&lt;span style="font-size:85%;"&gt;[HOME]&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-8762578854948554856?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/8762578854948554856/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=8762578854948554856&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/8762578854948554856'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/8762578854948554856'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/11/netspeed-gfreqlet.html' title='Netspeed &amp; GFreqlet (applets)'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-896547536862061933</id><published>2007-10-12T14:46:00.000-07:00</published><updated>2007-11-15T05:10:29.491-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Open DNS</title><content type='html'>&lt;span style="font-weight: bold; font-style: italic; color: rgb(153, 51, 0);"&gt;&gt; Open DNS&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;The Domain Name System (DNS) is fundamental to the Internet. You use the DNS every   time you do anything online including sending email and browsing the Web. Most networks   use the DNS provided by their ISP or run their own small DNS server. OpenDNS is better.&lt;br /&gt;&lt;br /&gt;&lt;p&gt;"OpenDNS allows us to easily block unwanted sites and provide a safer, more productive environment. It has a smart interface that provides granularity of control across multiple connections, and the statistics are easy to use and provide insight into our DNS traffic."&lt;br /&gt;&lt;span style="font-size:85%;"&gt;— &lt;b&gt;Terrell Johnson &lt;/b&gt;, &lt;i&gt;Network Administrator , Sunsweet&lt;/i&gt;&lt;/span&gt;&lt;/p&gt;&lt;span style="font-weight: bold; font-style: italic; color: rgb(153, 51, 0);"&gt;&gt; Intall&lt;/span&gt;&lt;ul&gt;&lt;li&gt;STEPS:&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;$ sudo cp /etc/resolv.conf /etc/resolv.conf.auto&lt;br /&gt;$ sudo gedit /etc/dhcp3/dhclient.conf&lt;br /&gt;# append the following line to the document&lt;br /&gt;prepend domain-name-servers 208.67.222.222,208.67.220.220;&lt;br /&gt;# save and exit&lt;br /&gt;$ sudo ifconfig eth0 down &amp;amp;&amp;amp; sudo ifconfig eth0 up&lt;br /&gt;#note: in your system may not be &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;'eth0' for example in my PC it is eth1.&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;font-size:85%;" &gt;url: &lt;a href="https://www.opendns.com/start/ubuntu.php"&gt;link&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(153, 51, 0); font-style: italic;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-896547536862061933?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/896547536862061933/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=896547536862061933&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/896547536862061933'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/896547536862061933'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/10/open-dns.html' title='Open DNS'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-257103967855841271</id><published>2007-10-11T18:24:00.000-07:00</published><updated>2007-10-11T18:36:07.432-07:00</updated><title type='text'>Gusty Gibbons Bugs</title><content type='html'>This is a list of all bug that i caught in my Gusty Gibbons 7.10:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic; color: rgb(153, 51, 0);"&gt;&gt; Enormous Big Font's Size (@ tribe5)&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;The window border's title has grow up 10 times, why? Because the font size 10 look like 78 font size. Result: Damm big title windows.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Edit:&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;$ sudo gedit /etc/gdm/gdm.conf-custom&lt;br /&gt;&lt;/span&gt;&lt;ul&gt;&lt;li&gt;Add:&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;[server-Standard]&lt;br /&gt;command=/usr/bin/X -br -audit 0 -dpi 86&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;font-size:85%;" &gt;url: &lt;a href="https://bugs.launchpad.net/ubuntu/+source/fontconfig/+bug/115950"&gt;link&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold; font-style: italic; color: rgb(153, 51, 0);"&gt;&gt; ...updating&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(153, 51, 0); font-style: italic;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-257103967855841271?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/257103967855841271/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=257103967855841271&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/257103967855841271'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/257103967855841271'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/10/gusty-gibbons-bugs.html' title='Gusty Gibbons Bugs'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-6922989937418287080</id><published>2007-07-13T12:20:00.000-07:00</published><updated>2007-07-13T12:36:14.709-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Games'/><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>UbuntuGames.org</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.ubuntugames.org/wiki/ubuntugames/img/ubuntugames.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://www.ubuntugames.org/wiki/ubuntugames/img/ubuntugames.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;ul style="font-weight: bold; font-style: italic; color: rgb(153, 51, 0);"&gt;&lt;li&gt;English:&lt;/li&gt;&lt;/ul&gt;&lt;p class="line886"&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;&lt;blockquote&gt;&lt;p class="line886"&gt;Ubuntu Games is the result of efforts to create a place to gather articles, tutorials, screen pictures, and tips about games on Ubuntu. The Games are not necessarily free (as in beer nor as in speech); they can be closed source or proprietary. They may not be specifically for Ubuntu. If it works (even if emulated) on Ubuntu Linux, it's welcome! &lt;span class="anchor" id="line-50"&gt;&lt;/span&gt;&lt;/p&gt;&lt;span class="anchor" id="line-51"&gt;&lt;/span&gt;Some people won't migrate to Linux from other OSs because they think Linux doesn't have good games. For the good of home desktop users, I'll try to convince you that there are many good games on Linux, and in Ubuntu, their installation is fairly simple.&lt;/blockquote&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;font-size:85%;" &gt;Link:&lt;/span&gt; &lt;a href="http://www.ubuntugames.org/en/UbuntuGames"&gt;ubuntugames.org&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul style="font-weight: bold; font-style: italic; color: rgb(153, 51, 0);"&gt;&lt;li&gt;Português:&lt;/li&gt;&lt;/ul&gt;&lt;div style="text-align: justify;"&gt;&lt;blockquote&gt;&lt;p class="line886"&gt;O Ubuntu Games é fruto do esforço para criação de um lugar que contenha artigos, tutoriais, fotos de tela e dicas sobre jogos no Ubuntu. Eles não são necessariamente gratuitos ou de fonte livre (opensource), podendo ser proprietários, de código fechado, ou até mesmo não específicos para o Ubuntu. Nosso critério é: se roda (mesmo que emulado) no Ubuntu Linux, é bem-vindo! &lt;span class="anchor" id="line-52"&gt;&lt;/span&gt;&lt;/p&gt;&lt;span class="anchor" id="line-53"&gt;&lt;/span&gt;Há quem não migrou de sistema operacional por causa de jogos que imaginam não haver para o Linux. Pelo bem dos usuários domésticos, tentarei convencer vocês de que existem muitos jogos bons no Linux, e que no Ubuntu, a instalação de jogos é simples.&lt;/blockquote&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;font-size:85%;" &gt;Link:&lt;/span&gt; &lt;a href="http://www.ubuntugames.org/"&gt;ubuntugames.org&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-6922989937418287080?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/6922989937418287080/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=6922989937418287080&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/6922989937418287080'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/6922989937418287080'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/07/ubuntugamesorg.html' title='UbuntuGames.org'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-5234029478861658003</id><published>2007-07-01T13:39:00.000-07:00</published><updated>2007-07-02T06:24:03.943-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>NetworkManager in systray</title><content type='html'>When &lt;a href="http://www.gnome.org/projects/NetworkManager/"&gt;NetworkManage&lt;/a&gt;r's icon doesn't appear in systray &lt;span style="font-style: italic;font-size:85%;" &gt;(a.k.a Notification Area)&lt;/span&gt; you can add it yourself.&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-style: italic;"&gt;(I think it works on all desktop environments)&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Go to:&lt;/li&gt;&lt;/ul&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;Applications » Settings » Sessions&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Click 'add' and type:&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-style: italic;"&gt;&lt;span style="color: rgb(51, 51, 51);"&gt;Name&lt;/span&gt; e.g: &lt;/span&gt;'&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;Networkmanager&lt;/span&gt;'&lt;br /&gt;&lt;span style="font-style: italic;"&gt;&lt;span style="color: rgb(51, 51, 51);"&gt;Command &lt;/span&gt;put: &lt;/span&gt;'&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;nm-applet –sm-disable &amp;amp;&lt;/span&gt;&lt;/span&gt;'&lt;br /&gt;&lt;ul&gt;&lt;li&gt;And now restart X (ctrl+alt+backspace)&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-5234029478861658003?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/5234029478861658003/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=5234029478861658003&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/5234029478861658003'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/5234029478861658003'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/07/network-manager-on-systray.html' title='NetworkManager in systray'/><author><name>serafim</name><uri>http://www.blogger.com/profile/09378997342964469679</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_8zmHsnACv-c/SiufeJuSooI/AAAAAAAAAAc/EaNB7-qKLNw/S220/306kq4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-8607570956519949127</id><published>2007-06-28T04:14:00.000-07:00</published><updated>2008-12-11T22:57:18.852-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Touchpad - Configure it!</title><content type='html'>Feisty Fawn lacks the ability to personalize the Synaptics Touchpad. Here are a few tips. These can be also applied to other distros.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic; color: rgb(153, 51, 0);"&gt;Backup xorg.conf&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;First of all, backup your xorg.conf&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;$ sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf_backup&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(153, 51, 0); font-style: italic;"&gt;Enable/Disable Touchpad&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Edit you xorg.conf&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;$ sudo gedit /etc/X11/xorg.conf&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;find «&lt;span style="font-style: italic;"&gt;Identifier    "Synaptics Touchpad"&lt;/span&gt;» and change it to: &lt;span style="font-size:85%;"&gt;(&lt;span style="font-style: italic;"&gt;"SHMConfig" "true"&lt;/span&gt;)&lt;br /&gt;&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;&lt;pre class="alt2" dir="ltr" style="border: 1px inset ; margin: 0px; padding: 6px; overflow: auto; text-align: left;"&gt;&lt;span style="font-size:130%;"&gt;Section "InputDevice"&lt;br /&gt;Identifier "Synaptics Touchpad"&lt;br /&gt;Driver  "synaptics"&lt;br /&gt;Option  "SendCoreEvents" "true"&lt;br /&gt;Option  "Device"  "/dev/psaux"&lt;br /&gt;Option  "Protocol"  "auto-dev"&lt;br /&gt;Option  "HorizScrollDelta" "0"&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt; Option  "SHMConfig"  "true"&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;EndSection&lt;/span&gt;&lt;/pre&gt;&lt;ul&gt;&lt;li&gt;Disable: &lt;span style="font-size:85%;"&gt;(go to terminal and type:)&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;$ synclient TouchpadOff=1&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Enable:&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;$ synclient TouchpadOff=0&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic; color: rgb(153, 51, 0);"&gt;Disable Touchpad while typing&lt;/span&gt;&lt;br /&gt;It's annoying when a person is typing and touch accidentally in the touchpad. This tip disables the touchpad for 'x' seconds when you press a key. It needs the configuration(xorg.conf) carried through in the previous tip to work.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Go to terminal and type: &lt;span style="font-size:85%;"&gt;(disables touchpad for 1 second)&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;$ syndaemon -i 1 -d&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(102, 102, 102);font-size:85%;" &gt;visit &lt;a href="http://www.linuxcommand.org/man_pages/syndaemon1.html"&gt;syndaemon page&lt;/a&gt; for more info&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic; color: rgb(153, 51, 0);"&gt;Gsynaptics&lt;/span&gt;&lt;br /&gt;Gsynaptics allows to configure your Touchpad. It enables/disables touchpad/tapping and configure scroll movements.&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_UbcBOQWhX2Y/RoOtR7oAdWI/AAAAAAAAAEw/oAqKVRd_e4U/s1600-h/gsynaptics.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_UbcBOQWhX2Y/RoOtR7oAdWI/AAAAAAAAAEw/oAqKVRd_e4U/s320/gsynaptics.png" alt="" id="BLOGGER_PHOTO_ID_5081095328178926946" border="0" /&gt;&lt;/a&gt;&lt;span style="font-style: italic;font-size:85%;" &gt;(click on screenshot to enlarge)&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;ul&gt;&lt;li&gt;Install:&lt;/li&gt;&lt;/ul&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;$ sudo apt-get install gsynaptics&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Run at terminal:&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;$ gsynaptics&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Or go to System » Preferences » Touchpad&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(102, 102, 102);font-size:85%;" &gt;Note: for KDE » ksynaptics&lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic; color: rgb(153, 51, 0);"&gt;Add these tips to startup&lt;/span&gt;&lt;br /&gt;If you like some of these tips, and you pretend to use it every time, just add it to start up.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Go to System » Preferences » Sessions:&lt;/li&gt;&lt;/ul&gt;Click &lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;New&lt;/span&gt;&lt;/span&gt;,&lt;br /&gt;Name: &lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;1sec touchpad&lt;/span&gt;&lt;br /&gt;Code: &lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;syndaemon -i 1 -d&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;repeat procedure to any desire program..&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-8607570956519949127?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/8607570956519949127/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=8607570956519949127&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/8607570956519949127'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/8607570956519949127'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/06/touchpad-configure-it.html' title='Touchpad - Configure it!'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_UbcBOQWhX2Y/RoOtR7oAdWI/AAAAAAAAAEw/oAqKVRd_e4U/s72-c/gsynaptics.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-2565274472109323631</id><published>2007-06-27T08:31:00.000-07:00</published><updated>2008-12-11T22:57:18.984-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Games 4 Linux</title><content type='html'>Here i will post some cool games for Linux.&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Note: this topic will be updated with more games.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-weight: bold; font-style: italic; color: rgb(153, 51, 0);"&gt;Pang Zero&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_UbcBOQWhX2Y/RoMEiroAdVI/AAAAAAAAAEo/JD4qP_fV12I/s1600-h/pang.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_UbcBOQWhX2Y/RoMEiroAdVI/AAAAAAAAAEo/JD4qP_fV12I/s320/pang.png" alt="" id="BLOGGER_PHOTO_ID_5080909798476641618" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;Download:&lt;br /&gt;&lt;a href="http://www.getdeb.net/app.php?name=Pang+Zero"&gt;pangzero.deb&lt;/a&gt; |  &lt;a href="http://apocalypse.rulez.org/pangzero/Pang_Zero"&gt;official  page &lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;i will update this post soon ;)&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-2565274472109323631?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/2565274472109323631/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=2565274472109323631&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/2565274472109323631'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/2565274472109323631'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/06/games-4-linux.html' title='Games 4 Linux'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_UbcBOQWhX2Y/RoMEiroAdVI/AAAAAAAAAEo/JD4qP_fV12I/s72-c/pang.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-6650672854556124825</id><published>2007-06-22T14:02:00.000-07:00</published><updated>2008-12-11T22:57:19.779-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Compiz + Beryl = Compiz Fusion (repository)</title><content type='html'>Note: Fusion is a new project merging Compiz with Beryl.&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(51, 51, 51);"&gt;Screenshot:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_UbcBOQWhX2Y/Rn_h9LSguxI/AAAAAAAAAEY/GkJjphe-C48/s1600-h/cube.png"&gt;&lt;img src="http://2.bp.blogspot.com/_UbcBOQWhX2Y/Rn_h9LSguxI/AAAAAAAAAEY/GkJjphe-C48/s320/cube.png" align="bottom" height="133" width="213" /&gt;&lt;/a&gt; &lt;a href="http://3.bp.blogspot.com/_UbcBOQWhX2Y/Rn_ivbSguyI/AAAAAAAAAEg/SaWj-5wflW8/s1600-h/Screenshot-7.png"&gt;&lt;img src="http://3.bp.blogspot.com/_UbcBOQWhX2Y/Rn_ivbSguyI/AAAAAAAAAEg/SaWj-5wflW8/s320/Screenshot-7.png" align="bottom" height="133" width="213" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size:78%;"&gt;(click to enlarge)&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(51, 51, 51);"&gt;To install:&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;ol&gt;&lt;li&gt;First remove compiz and beryl.&lt;/li&gt;&lt;/ol&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;$ sudo apt-get remove  beryl*&lt;br /&gt;$ sudo apt-get remove  compiz*&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Open Terminal and edit sources.list:&lt;/li&gt;&lt;/ol&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;$ sudo gedit /etc/apt/sources.list&lt;/span&gt;&lt;ol&gt;&lt;li&gt;Add to file:&lt;/li&gt;&lt;/ol&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;deb http://download.tuxfamily.org/3v1deb feisty eyecandy&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;deb-src http://download.tuxfamily.org/3v1deb feisty eyecandy&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;ol&gt;&lt;li&gt;Save and get back to Terminal and type:&lt;/li&gt;&lt;/ol&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;$ wget http://download.tuxfamily.org/3v1deb/DD800CD9.gpg -O- | sudo apt-key add -&lt;br /&gt;$ sudo apt-get update&lt;br /&gt;$ sudo apt-get dist-upgrade&lt;br /&gt;$ sudo apt-get install compiz-#gnome or kde&lt;br /&gt;$ sudo apt-get install compizconfig-settings-manager&lt;br /&gt;$ sudo apt-get install compizconfig-backend*&lt;br /&gt;$ sudo apt-get install compiz-fusion-*&lt;br /&gt;&lt;/span&gt;&lt;ol&gt;&lt;li&gt;Remove the existing directories&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;$ rm -fR ~/.beryl*&lt;br /&gt;$ rm -fR ~/.emerald*&lt;br /&gt;$ rm -fR ~/.compiz*&lt;br /&gt;&lt;/span&gt;&lt;ol&gt;&lt;li&gt;Run Compiz&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;$ compiz --replace&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(153, 51, 0);font-size:78%;" &gt;Post update: 16.00 - 2007Jun25&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;Add Compiz Fusion to startup:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Go to &lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;System&lt;/span&gt;&lt;/span&gt; » &lt;span style="font-weight: bold;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="color: rgb(51, 51, 51);"&gt;Preferences&lt;/span&gt;&lt;/span&gt; &lt;/span&gt;» &lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;Sessions&lt;/span&gt;&lt;/span&gt; and add:&lt;/li&gt;&lt;/ol&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;compiz --replace&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 51, 0);font-size:78%;" &gt;Edit: 22.00 - 2007Jun25&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-6650672854556124825?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/6650672854556124825/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=6650672854556124825&amp;isPopup=true' title='16 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/6650672854556124825'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/6650672854556124825'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/06/compiz-fusion-git-repository-for-ubuntu.html' title='Compiz + Beryl = Compiz Fusion (repository)'/><author><name>serafim</name><uri>http://www.blogger.com/profile/09378997342964469679</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_8zmHsnACv-c/SiufeJuSooI/AAAAAAAAAAc/EaNB7-qKLNw/S220/306kq4.png'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_UbcBOQWhX2Y/Rn_h9LSguxI/AAAAAAAAAEY/GkJjphe-C48/s72-c/cube.png' height='72' width='72'/><thr:total>16</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-3531886034943464771</id><published>2007-06-10T02:49:00.000-07:00</published><updated>2007-06-28T14:33:01.557-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>TLS problems</title><content type='html'>TLS does not seem to work and I have tcl/tk 8.5. How can I fix it ?&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Open Terminal and type:&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;$ sudo gedit /usr/lib/tls1.50/pkgIndex.tcl&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;and change the line :&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;"package ifneeded tls 1.5"&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;to&lt;/li&gt;&lt;/ul&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;"package ifneeded tls 1.50"&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-3531886034943464771?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/3531886034943464771/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=3531886034943464771&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/3531886034943464771'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/3531886034943464771'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/06/tls-does-not-seem-to-work-and-i-have.html' title='TLS problems'/><author><name>serafim</name><uri>http://www.blogger.com/profile/09378997342964469679</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_8zmHsnACv-c/SiufeJuSooI/AAAAAAAAAAc/EaNB7-qKLNw/S220/306kq4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-6771738673957317058</id><published>2007-06-02T03:12:00.000-07:00</published><updated>2007-06-28T14:33:01.558-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Customization'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>A Better Looking Firefox</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;span style="text-decoration: underline;"&gt;&lt;img src="http://img291.imageshack.us/img291/2554/ffjx2.png" align="middle" border="1" /&gt; &lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Open the Terminal and type:&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="color: rgb(51, 51, 51);"&gt;$ wget http://users.tkk.fi/~otsaloma/art/firefox-form-widgets.tar.gz&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);"&gt;$ tar -xvzf firefox-form-widgets.tar.gz&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);"&gt;$ sudo cp /usr/lib/mozilla-firefox/res/forms.css /usr/lib/mozilla-firefox/res/forms.css.bak&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);"&gt;$ cat firefox-form-widgets/res/forms-extra.css | sudo tee --append /usr/lib/mozilla-firefox/res/forms.css &gt; /dev/null&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);"&gt;$ sudo cp -r firefox-form-widgets/res/form-widgets /usr/lib/mozilla-firefox/res&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);"&gt;$ rm -rf firefox-form-widgets&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Reboot Firefox if open..&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-6771738673957317058?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/6771738673957317058/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=6771738673957317058&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/6771738673957317058'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/6771738673957317058'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/06/better-looking-firefox.html' title='A Better Looking Firefox'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-4671080171265887592</id><published>2007-06-01T14:35:00.000-07:00</published><updated>2007-06-28T14:33:01.558-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='News'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Fedora'/><title type='text'>Fedora 7 is out</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://fedoraproject.org/images/banner.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px;" src="http://fedoraproject.org/images/banner.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;blockquote&gt;Fedora is a Linux-based operating system that showcases the latest in free and open source software. Fedora is &lt;strong&gt;always free for anyone to use, modify, and distribute.&lt;/strong&gt; It is built by people across the globe who work together as a community: the Fedora Project. The Fedora Project is open and anyone is welcome to join.          &lt;p&gt;         The Fedora Project is out front for you, &lt;strong&gt;leading the advancement of free, open software and content&lt;/strong&gt;.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;         &lt;/p&gt;&lt;br /&gt;Links:&lt;br /&gt;&lt;a href="http://fedoraproject.org/"&gt;Fedora official site&lt;/a&gt; | &lt;a href="http://docs.fedoraproject.org/release-notes/"&gt;Release Notes&lt;/a&gt; | &lt;br /&gt;Download:&lt;br /&gt;&lt;a href="http://torrent.fedoraproject.org/"&gt;Torrents&lt;/a&gt; | &lt;a href="http://mirrors.fedoraproject.org/publiclist/Fedora/7/"&gt;Download Mirrors&lt;/a&gt; | &lt;a href="http://fedoraproject.org/wiki/Distribution"&gt;Get Media&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-4671080171265887592?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/4671080171265887592/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=4671080171265887592&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/4671080171265887592'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/4671080171265887592'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/06/fedora-7-is-out.html' title='Fedora 7 is out'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-2537378961337669269</id><published>2007-05-30T11:39:00.000-07:00</published><updated>2007-06-28T14:33:01.559-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>Tux in ASCII</title><content type='html'>&lt;pre&gt;&lt;font&gt;&lt;font style=""&gt;&lt;font color="white"&gt;01001100001000011101001001001&lt;/font&gt;&lt;font style="color: rgb(250, 250, 250);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(231, 231, 231);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(205, 205, 205);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(178, 178, 178);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(161, 161, 161);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(148, 148, 148);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(137, 137, 137);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(116, 116, 116);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(107, 107, 107);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(115, 115, 115);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(118, 118, 118);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(116, 116, 116);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(110, 110, 110);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(101, 101, 101);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(117, 117, 117);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(138, 138, 138);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(140, 140, 140);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(163, 163, 163);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(177, 177, 177);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(215, 215, 215);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(235, 235, 235);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(253, 253, 253);"&gt;1&lt;/font&gt;&lt;font color="white"&gt;00001111011011101001111100011&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;01100100101010010000011110&lt;/font&gt;&lt;font style="color: rgb(241, 241, 241);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(189, 189, 189);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(126, 126, 126);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(103, 103, 103);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(117, 117, 117);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(148, 148, 148);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(186, 186, 186);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(213, 213, 213);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(230, 230, 230);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(240, 240, 240);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(242, 242, 242);"&gt;0111101&lt;/font&gt;&lt;font style="color: rgb(241, 241, 241);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(234, 234, 234);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(220, 220, 220);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(195, 195, 195);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(159, 159, 159);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(114, 114, 114);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(85, 85, 85);"&gt;10&lt;/font&gt;&lt;font style="color: rgb(147, 147, 147);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(207, 207, 207);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(252, 252, 252);"&gt;1&lt;/font&gt;&lt;font color="white"&gt;01011111000011001000011111&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;01110001010111011000001&lt;/font&gt;&lt;font style="color: rgb(252, 252, 252);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(204, 204, 204);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(108, 108, 108);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(44, 44, 44);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(87, 87, 87);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(167, 167, 167);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(209, 209, 209);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(223, 223, 223);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(224, 224, 224);"&gt;00100101010111100&lt;/font&gt;&lt;font style="color: rgb(223, 223, 223);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(215, 215, 215);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(185, 185, 185);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(107, 107, 107);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(34, 34, 34);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(59, 59, 59);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(131, 131, 131);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(230, 230, 230);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(254, 254, 254);"&gt;0&lt;/font&gt;&lt;font color="white"&gt;11011110101001100011001&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;111111110010010101100&lt;/font&gt;&lt;font style="color: rgb(247, 247, 247);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(168, 168, 168);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(61, 61, 61);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(2, 2, 2);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(60, 60, 60);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(169, 169, 169);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(201, 201, 201);"&gt;0001&lt;/font&gt;&lt;font style="color: rgb(199, 199, 199);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(200, 200, 200);"&gt;011&lt;/font&gt;&lt;font style="color: rgb(201, 201, 201);"&gt;01011010100101101&lt;/font&gt;&lt;font style="color: rgb(186, 186, 186);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(91, 91, 91);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(8, 8, 8);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(9, 9, 9);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(93, 93, 93);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(201, 201, 201);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(253, 253, 253);"&gt;0&lt;/font&gt;&lt;font color="white"&gt;010111001010101011111&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;01001000101100010010&lt;/font&gt;&lt;font style="color: rgb(224, 224, 224);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(80, 80, 80);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(4, 4, 4);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;1&lt;/font&gt;&lt;font style="color: rgb(68, 68, 68);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(170, 170, 170);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(174, 174, 174);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(157, 157, 157);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(138, 138, 138);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(132, 132, 132);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(131, 131, 131);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(133, 133, 133);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(134, 134, 134);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(132, 132, 132);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(131, 131, 131);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(133, 133, 133);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(145, 145, 145);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(166, 166, 166);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(176, 176, 176);"&gt;011101010000000&lt;/font&gt;&lt;font style="color: rgb(175, 175, 175);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(110, 110, 110);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(4, 4, 4);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;1&lt;/font&gt;&lt;font style="color: rgb(16, 16, 16);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(136, 136, 136);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(248, 248, 248);"&gt;1&lt;/font&gt;&lt;font color="white"&gt;00000110000011101000&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;0010101101001100000&lt;/font&gt;&lt;font style="color: rgb(227, 227, 227);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(34, 34, 34);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;01&lt;/font&gt;&lt;font style="color: rgb(15, 15, 15);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(134, 134, 134);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(115, 115, 115);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(92, 92, 92);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(97, 97, 97);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(92, 92, 92);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(96, 96, 96);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(112, 112, 112);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(132, 132, 132);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(140, 140, 140);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(132, 132, 132);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(114, 114, 114);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(98, 98, 98);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(92, 92, 92);"&gt;10&lt;/font&gt;&lt;font style="color: rgb(96, 96, 96);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(131, 131, 131);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(147, 147, 147);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(148, 148, 148);"&gt;001&lt;/font&gt;&lt;font style="color: rgb(147, 147, 147);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(145, 145, 145);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(143, 143, 143);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(141, 141, 141);"&gt;11&lt;/font&gt;&lt;font style="color: rgb(142, 142, 142);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(145, 145, 145);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(147, 147, 147);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(148, 148, 148);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(149, 149, 149);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(147, 147, 147);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(56, 56, 56);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;10&lt;/font&gt;&lt;font style="color: rgb(2, 2, 2);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(79, 79, 79);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(250, 250, 250);"&gt;0&lt;/font&gt;&lt;font color="white"&gt;0011111001011000010&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;111000100001110100&lt;/font&gt;&lt;font style="color: rgb(230, 230, 230);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(33, 33, 33);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;011&lt;/font&gt;&lt;font style="color: rgb(21, 21, 21);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(61, 61, 61);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(57, 57, 57);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(53, 53, 53);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(78, 78, 77);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(145, 145, 145);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(210, 210, 210);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(238, 238, 238);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(245, 245, 245);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(247, 247, 247);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(246, 246, 246);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(243, 243, 243);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(224, 224, 224);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(172, 172, 172);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(93, 93, 93);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(57, 57, 57);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(51, 51, 51);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(80, 80, 80);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(110, 110, 110);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(96, 96, 96);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(77, 77, 77);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(70, 70, 70);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(77, 77, 77);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(88, 88, 88);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(97, 97, 97);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(96, 96, 96);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(88, 88, 88);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(79, 79, 79);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(74, 74, 74);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(81, 81, 81);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(97, 97, 97);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(112, 112, 112);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(70, 70, 70);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;1010&lt;/font&gt;&lt;font style="color: rgb(88, 88, 88);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(249, 249, 249);"&gt;0&lt;/font&gt;&lt;font color="white"&gt;100000011110001100&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;110101001001001101&lt;/font&gt;&lt;font style="color: rgb(112, 112, 112);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;1110&lt;/font&gt;&lt;font style="color: rgb(8, 8, 8);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(27, 27, 27);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(26, 26, 26);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(114, 114, 114);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(163, 163, 163);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(188, 188, 188);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(206, 206, 206);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(218, 218, 218);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(226, 227, 227);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(233, 233, 233);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(238, 238, 238);"&gt;01&lt;/font&gt;&lt;font style="color: rgb(234, 234, 234);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(227, 227, 227);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(206, 206, 206);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(127, 128, 128);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(30, 30, 30);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(23, 23, 23);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(26, 26, 26);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(51, 51, 51);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(91, 91, 91);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(123, 123, 123);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(154, 154, 154);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(186, 186, 186);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(209, 209, 209);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(214, 214, 214);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(203, 203, 203);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(178, 178, 178);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(140, 140, 140);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(85, 85, 85);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(35, 35, 35);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(28, 28, 28);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(19, 19, 19);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;0101&lt;/font&gt;&lt;font style="color: rgb(2, 2, 2);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(165, 165, 165);"&gt;0&lt;/font&gt;&lt;font color="white"&gt;011011100001011011&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;10011010110001101&lt;/font&gt;&lt;font style="color: rgb(244, 244, 244);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(27, 27, 27);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;0011&lt;/font&gt;&lt;font style="color: rgb(4, 4, 4);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(2, 2, 2);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(97, 97, 97);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(167, 167, 167);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(186, 186, 186);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(206, 205, 205);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(217, 217, 217);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(221, 222, 221);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(222, 222, 222);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(223, 223, 222);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(223, 223, 223);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(227, 227, 227);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(223, 223, 223);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(162, 162, 162);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(159, 159, 159);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(172, 172, 172);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(84, 84, 84);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(28, 28, 28);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(108, 108, 108);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(144, 144, 144);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(161, 161, 161);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(194, 194, 194);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(205, 205, 206);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(211, 211, 211);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(214, 214, 214);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(220, 220, 220);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(230, 230, 230);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(232, 232, 232);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(227, 227, 227);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(212, 212, 212);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(166, 166, 166);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(67, 67, 67);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(2, 2, 2);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;00000&lt;/font&gt;&lt;font style="color: rgb(61, 61, 61);"&gt;1&lt;/font&gt;&lt;font color="white"&gt;101111101011101110&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;11011111000111111&lt;/font&gt;&lt;font style="color: rgb(197, 197, 197);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;0100001&lt;/font&gt;&lt;font style="color: rgb(136, 136, 136);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(182, 182, 182);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(194, 194, 195);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(207, 207, 207);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(216, 216, 216);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(218, 218, 218);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(218, 219, 218);"&gt;00&lt;/font&gt;&lt;font style="color: rgb(218, 218, 218);"&gt;10&lt;/font&gt;&lt;font style="color: rgb(163, 163, 163);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(18, 18, 18);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(16, 16, 16);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(80, 80, 80);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(50, 50, 50);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(55, 55, 55);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(50, 50, 50);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(141, 141, 141);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(98, 99, 98);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(164, 164, 164);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(216, 216, 216);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(217, 217, 217);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(218, 217, 218);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(217, 217, 217);"&gt;001&lt;/font&gt;&lt;font style="color: rgb(212, 212, 212);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(197, 197, 197);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(176, 176, 176);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(140, 140, 140);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(27, 27, 27);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;00111&lt;/font&gt;&lt;font style="color: rgb(22, 22, 22);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(240, 240, 240);"&gt;0&lt;/font&gt;&lt;font color="white"&gt;10101100111011001&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;00110111110101000&lt;/font&gt;&lt;font style="color: rgb(114, 114, 114);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;0101111&lt;/font&gt;&lt;font style="color: rgb(100, 99, 99);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(178, 177, 177);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(198, 198, 198);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(205, 205, 205);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(210, 210, 210);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(214, 214, 214);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(215, 215, 215);"&gt;110&lt;/font&gt;&lt;font style="color: rgb(214, 214, 214);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(177, 177, 178);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(63, 63, 63);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(23, 23, 23);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(12, 12, 12);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(7, 7, 7);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(40, 40, 40);"&gt;00&lt;/font&gt;&lt;font style="color: rgb(30, 30, 30);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(50, 50, 50);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(166, 166, 166);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(206, 206, 206);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(209, 209, 209);"&gt;110&lt;/font&gt;&lt;font style="color: rgb(208, 207, 207);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(204, 203, 203);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(193, 193, 193);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(179, 179, 179);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(160, 160, 160);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(115, 115, 115);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(12, 12, 12);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;110011&lt;/font&gt;&lt;font style="color: rgb(177, 177, 177);"&gt;1&lt;/font&gt;&lt;font color="white"&gt;10000110110001101&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;1110110011110110&lt;/font&gt;&lt;font style="color: rgb(239, 239, 239);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(28, 28, 28);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;1110111&lt;/font&gt;&lt;font style="color: rgb(19, 19, 19);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(120, 120, 120);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(181, 181, 181);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(201, 201, 201);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(207, 207, 207);"&gt;00&lt;/font&gt;&lt;font style="color: rgb(208, 208, 208);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(207, 207, 207);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(207, 206, 202);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(206, 199, 186);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(203, 190, 160);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(188, 170, 124);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(162, 142, 86);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(158, 140, 83);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(140, 122, 67);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(133, 116, 64);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(158, 142, 90);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(174, 159, 109);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(189, 177, 133);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(194, 186, 159);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(193, 190, 176);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(193, 192, 189);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(194, 194, 194);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(193, 193, 193);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(190, 190, 189);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(183, 183, 183);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(169, 168, 168);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(138, 138, 138);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(79, 79, 79);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(15, 15, 15);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;0110100&lt;/font&gt;&lt;font style="color: rgb(67, 67, 67);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(252, 252, 252);"&gt;0&lt;/font&gt;&lt;font color="white"&gt;0010011101000100&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;0011000101001010&lt;/font&gt;&lt;font style="color: rgb(142, 142, 142);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(6, 6, 6);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;11000010&lt;/font&gt;&lt;font style="color: rgb(11, 11, 11);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(73, 73, 73);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(144, 144, 144);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(179, 180, 179);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(194, 194, 194);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(197, 197, 197);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(198, 188, 165);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(217, 175, 84);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(225, 170, 31);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(230, 180, 22);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(236, 200, 57);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(241, 216, 97);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(245, 227, 134);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(247, 236, 166);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(249, 241, 185);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(251, 244, 200);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(252, 247, 212);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(251, 246, 214);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(249, 239, 199);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(240, 225, 172);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(204, 179, 93);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(150, 147, 139);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(150, 150, 150);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(146, 146, 146);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(100, 100, 100);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(44, 44, 44);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(9, 9, 9);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;001011110&lt;/font&gt;&lt;font style="color: rgb(19, 19, 19);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(158, 158, 158);"&gt;0&lt;/font&gt;&lt;font color="white"&gt;1111001011001000&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;10110001001111&lt;/font&gt;&lt;font style="color: rgb(249, 249, 249);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(144, 144, 144);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(72, 72, 72);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(42, 42, 42);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;0000011&lt;/font&gt;&lt;font style="color: rgb(1, 1, 1);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(38, 38, 38);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(112, 112, 112);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(162, 162, 162);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(161, 161, 161);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(153, 153, 153);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(149, 149, 149);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(148, 139, 122);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(190, 149, 59);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(231, 186, 64);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(233, 191, 37);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(233, 190, 3);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(234, 197, 1);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(236, 204, 10);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(238, 211, 32);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(242, 222, 79);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(245, 232, 129);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(247, 237, 151);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(248, 238, 168);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(248, 237, 179);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(233, 211, 128);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(195, 175, 109);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(186, 185, 181);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(202, 202, 202);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(209, 209, 209);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(211, 211, 211);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(196, 196, 196);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(141, 141, 141);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(57, 57, 57);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(3, 3, 3);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;1001111&lt;/font&gt;&lt;font style="color: rgb(82, 82, 82);"&gt;01&lt;/font&gt;&lt;font style="color: rgb(156, 156, 156);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(249, 249, 249);"&gt;0&lt;/font&gt;&lt;font color="white"&gt;11010111101010&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;001111010110&lt;/font&gt;&lt;font style="color: rgb(246, 246, 246);"&gt;1&lt;/font&gt;&lt;font color="silver"&gt;1&lt;/font&gt;&lt;font style="color: rgb(87, 87, 87);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(109, 109, 109);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(124, 124, 124);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(18, 18, 18);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;00010&lt;/font&gt;&lt;font style="color: rgb(4, 4, 4);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(56, 56, 56);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(174, 174, 174);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(239, 239, 239);"&gt;11&lt;/font&gt;&lt;font style="color: rgb(231, 231, 231);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(223, 223, 223);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(215, 215, 215);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(208, 208, 208);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(197, 197, 197);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(178, 177, 176);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(172, 158, 128);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(203, 168, 82);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(229, 188, 69);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(234, 193, 40);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(233, 194, 10);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(233, 197, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(234, 200, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(234, 201, 14);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(237, 207, 64);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(230, 199, 78);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(201, 178, 96);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(191, 186, 171);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(220, 219, 219);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(239, 239, 239);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(244, 244, 244);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(246, 246, 246);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(247, 247, 247);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(248, 248, 248);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(249, 249, 249);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(246, 246, 246);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(198, 198, 198);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(80, 80, 80);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(9, 9, 9);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;01010&lt;/font&gt;&lt;font style="color: rgb(31, 31, 31);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(119, 119, 119);"&gt;01&lt;/font&gt;&lt;font style="color: rgb(79, 79, 79);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(174, 174, 174);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(238, 238, 238);"&gt;0&lt;/font&gt;&lt;font color="white"&gt;001010101110&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;0000100100&lt;/font&gt;&lt;font style="color: rgb(225, 225, 225);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(168, 168, 168);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(111, 111, 111);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(108, 108, 108);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(126, 126, 126);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(77, 77, 77);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(19, 19, 19);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;11010&lt;/font&gt;&lt;font style="color: rgb(29, 29, 29);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(150, 151, 151);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(239, 239, 239);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(246, 246, 246);"&gt;11&lt;/font&gt;&lt;font style="color: rgb(245, 245, 245);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(244, 244, 244);"&gt;10&lt;/font&gt;&lt;font style="color: rgb(243, 243, 243);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(242, 242, 242);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(241, 241, 241);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(236, 236, 236);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(224, 224, 224);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(204, 204, 204);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(197, 187, 163);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(212, 183, 111);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(228, 187, 76);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(231, 185, 42);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(228, 177, 10);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(223, 175, 23);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(212, 182, 90);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(198, 191, 169);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(208, 208, 208);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(228, 228, 228);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(240, 241, 240);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(245, 245, 245);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(246, 246, 246);"&gt;0101010&lt;/font&gt;&lt;font style="color: rgb(244, 244, 244);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(178, 177, 177);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(47, 47, 47);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(1, 1, 1);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;1110&lt;/font&gt;&lt;font style="color: rgb(13, 13, 13);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(64, 64, 64);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(119, 119, 119);"&gt;00&lt;/font&gt;&lt;font style="color: rgb(105, 105, 105);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(150, 150, 150);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(218, 218, 218);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(251, 251, 251);"&gt;0&lt;/font&gt;&lt;font color="white"&gt;100010001&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;0001001&lt;/font&gt;&lt;font style="color: rgb(232, 232, 232);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(141, 141, 141);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(119, 119, 119);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(117, 117, 117);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(134, 134, 134);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(124, 124, 124);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(69, 69, 69);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(21, 21, 21);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(1, 1, 1);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;10100&lt;/font&gt;&lt;font style="color: rgb(48, 48, 48);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(203, 203, 203);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(240, 240, 241);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(241, 241, 241);"&gt;0111100010&lt;/font&gt;&lt;font style="color: rgb(239, 239, 239);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(235, 235, 235);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(227, 227, 227);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(220, 220, 219);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(219, 213, 201);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(221, 207, 178);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(221, 206, 172);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(219, 213, 198);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(219, 219, 218);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(225, 225, 225);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(233, 233, 233);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(238, 238, 238);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(241, 240, 240);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(241, 241, 241);"&gt;1101110010&lt;/font&gt;&lt;font style="color: rgb(221, 221, 221);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(85, 85, 85);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;001100&lt;/font&gt;&lt;font style="color: rgb(12, 12, 12);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(52, 52, 52);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(108, 108, 108);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(140, 140, 140);"&gt;11&lt;/font&gt;&lt;font style="color: rgb(132, 132, 132);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(142, 142, 142);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(204, 204, 204);"&gt;0&lt;/font&gt;&lt;font color="white"&gt;1001011&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;0000&lt;/font&gt;&lt;font style="color: rgb(247, 247, 247);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(199, 199, 199);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(129, 129, 129);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(112, 112, 112);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(153, 153, 153);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(138, 138, 138);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(86, 86, 86);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(37, 37, 37);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(3, 3, 3);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;0100000&lt;/font&gt;&lt;font style="color: rgb(53, 53, 53);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(208, 208, 208);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(235, 235, 235);"&gt;01111100111001&lt;/font&gt;&lt;font style="color: rgb(234, 234, 234);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(233, 233, 233);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(232, 231, 232);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(231, 231, 231);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(232, 232, 232);"&gt;011&lt;/font&gt;&lt;font style="color: rgb(234, 234, 234);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(235, 235, 235);"&gt;11100011001010&lt;/font&gt;&lt;font style="color: rgb(229, 229, 230);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(87, 87, 87);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(1, 1, 1);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;0011010&lt;/font&gt;&lt;font style="color: rgb(16, 16, 16);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(60, 60, 60);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(114, 114, 114);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(156, 156, 156);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(131, 131, 131);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(114, 114, 114);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(173, 173, 173);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(243, 243, 243);"&gt;1&lt;/font&gt;&lt;font color="white"&gt;1110&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;11&lt;/font&gt;&lt;font style="color: rgb(250, 250, 250);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(181, 181, 181);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(106, 106, 106);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(131, 131, 131);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(144, 144, 144);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(87, 87, 87);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(34, 34, 34);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(6, 6, 6);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;1&lt;/font&gt;&lt;font style="color: rgb(8, 8, 8);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(19, 19, 19);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(8, 8, 8);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;01010&lt;/font&gt;&lt;font style="color: rgb(26, 26, 26);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(178, 178, 178);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(227, 227, 227);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(229, 229, 229);"&gt;01001011&lt;/font&gt;&lt;font style="color: rgb(229, 229, 230);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(229, 229, 229);"&gt;0000011011000000110100100100&lt;/font&gt;&lt;font style="color: rgb(204, 204, 204);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(54, 54, 54);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;10000&lt;/font&gt;&lt;font style="color: rgb(8, 8, 8);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(25, 25, 25);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(19, 19, 19);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(7, 7, 7);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(1, 1, 1);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(17, 17, 17);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(63, 63, 63);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(129, 129, 129);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(139, 139, 139);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(114, 114, 114);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(173, 173, 173);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(251, 251, 251);"&gt;1&lt;/font&gt;&lt;font color="white"&gt;00&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;0&lt;/font&gt;&lt;font style="color: rgb(213, 213, 213);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(79, 79, 79);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(115, 115, 115);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(132, 132, 132);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(56, 56, 56);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(15, 15, 15);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(25, 25, 25);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(43, 43, 43);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(69, 69, 69);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(115, 115, 115);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(142, 142, 142);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(137, 137, 137);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(4, 4, 4);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;1011&lt;/font&gt;&lt;font style="color: rgb(1, 1, 1);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(124, 125, 124);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(201, 202, 201);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(223, 223, 223);"&gt;110010001001001100001111011100110000&lt;/font&gt;&lt;font style="color: rgb(222, 223, 223);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(223, 223, 223);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(217, 217, 217);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(157, 158, 158);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(9, 9, 9);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;0110&lt;/font&gt;&lt;font style="color: rgb(3, 3, 3);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(158, 158, 158);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(155, 155, 155);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(132, 132, 132);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(80, 80, 80);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(53, 53, 53);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(37, 37, 37);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(19, 19, 19);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(39, 39, 39);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(114, 114, 114);"&gt;00&lt;/font&gt;&lt;font style="color: rgb(75, 75, 75);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(240, 240, 240);"&gt;1&lt;/font&gt;&lt;font color="white"&gt;0&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;0&lt;/font&gt;&lt;font style="color: rgb(211, 211, 211);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(61, 61, 61);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(86, 86, 86);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(65, 65, 65);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(92, 92, 92);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(137, 137, 137);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(179, 179, 179);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(223, 223, 223);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(254, 254, 254);"&gt;1&lt;/font&gt;&lt;font color="white"&gt;10&lt;/font&gt;&lt;font style="color: rgb(221, 221, 221);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(13, 13, 13);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;0001&lt;/font&gt;&lt;font style="color: rgb(36, 36, 36);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(180, 180, 180);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(199, 199, 199);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(215, 215, 215);"&gt;1010&lt;/font&gt;&lt;font style="color: rgb(216, 215, 216);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(215, 215, 215);"&gt;1100110&lt;/font&gt;&lt;font style="color: rgb(215, 216, 215);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(215, 215, 215);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(215, 216, 215);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(215, 215, 215);"&gt;10&lt;/font&gt;&lt;font style="color: rgb(216, 215, 215);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(215, 215, 216);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(215, 216, 215);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(215, 215, 215);"&gt;1110&lt;/font&gt;&lt;font style="color: rgb(216, 215, 215);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(215, 215, 215);"&gt;101&lt;/font&gt;&lt;font style="color: rgb(215, 216, 215);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(215, 215, 215);"&gt;01100&lt;/font&gt;&lt;font style="color: rgb(215, 216, 215);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(215, 215, 215);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(216, 215, 215);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(215, 215, 215);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(214, 214, 214);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(188, 188, 188);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(61, 61, 61);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;1100&lt;/font&gt;&lt;font style="color: rgb(5, 5, 5);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(215, 215, 215);"&gt;0&lt;/font&gt;&lt;font color="white"&gt;000&lt;/font&gt;&lt;font style="color: rgb(243, 243, 243);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(194, 194, 194);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(162, 162, 162);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(102, 102, 102);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(78, 78, 78);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(79, 79, 79);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(53, 53, 53);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(232, 232, 232);"&gt;0&lt;/font&gt;&lt;font color="white"&gt;1&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;0&lt;/font&gt;&lt;font style="color: rgb(252, 252, 252);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(231, 231, 231);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(232, 232, 232);"&gt;00&lt;/font&gt;&lt;font style="color: rgb(253, 253, 253);"&gt;1&lt;/font&gt;&lt;font color="white"&gt;0001111&lt;/font&gt;&lt;font style="color: rgb(109, 109, 109);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;1101&lt;/font&gt;&lt;font style="color: rgb(87, 87, 86);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(187, 187, 187);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(196, 195, 195);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(208, 208, 208);"&gt;00001011001001110000000111101010000001&lt;/font&gt;&lt;font style="color: rgb(207, 207, 207);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(188, 188, 188);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(99, 99, 99);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;0111&lt;/font&gt;&lt;font style="color: rgb(60, 60, 60);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(254, 254, 254);"&gt;0&lt;/font&gt;&lt;font color="white"&gt;000000&lt;/font&gt;&lt;font style="color: rgb(254, 254, 254);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(251, 251, 251);"&gt;11&lt;/font&gt;&lt;font style="color: rgb(252, 252, 252);"&gt;0&lt;/font&gt;&lt;font color="white"&gt;01&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;0110000110100&lt;/font&gt;&lt;font style="color: rgb(231, 231, 231);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(25, 25, 25);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(2, 2, 2);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(1, 1, 1);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;0&lt;/font&gt;&lt;font style="color: rgb(97, 96, 97);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(186, 186, 186);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(191, 190, 190);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(200, 200, 200);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(201, 201, 200);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(201, 201, 201);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(201, 200, 200);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(200, 201, 200);"&gt;01&lt;/font&gt;&lt;font style="color: rgb(201, 200, 200);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(200, 201, 200);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(201, 201, 201);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(200, 200, 201);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(201, 200, 200);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(201, 200, 201);"&gt;01&lt;/font&gt;&lt;font style="color: rgb(201, 201, 201);"&gt;00&lt;/font&gt;&lt;font style="color: rgb(201, 200, 200);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(201, 200, 201);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(201, 201, 201);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(200, 201, 201);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(201, 200, 201);"&gt;00&lt;/font&gt;&lt;font style="color: rgb(201, 201, 200);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(200, 201, 201);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(201, 201, 201);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(200, 201, 201);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(201, 200, 201);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(200, 201, 201);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(201, 200, 200);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(200, 201, 200);"&gt;11&lt;/font&gt;&lt;font style="color: rgb(200, 200, 201);"&gt;110&lt;/font&gt;&lt;font style="color: rgb(201, 201, 200);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(200, 201, 200);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(201, 200, 200);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(200, 201, 200);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(200, 201, 201);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(198, 198, 198);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(186, 186, 186);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(104, 104, 104);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;0&lt;/font&gt;&lt;font style="color: rgb(1, 1, 1);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(5, 5, 5);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(11, 11, 11);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(204, 204, 204);"&gt;1&lt;/font&gt;&lt;font color="white"&gt;1000011101111&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;01110010100001&lt;/font&gt;&lt;font style="color: rgb(184, 184, 184);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(23, 23, 23);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(46, 46, 46);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(33, 33, 33);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(75, 75, 76);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(180, 180, 180);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(184, 185, 185);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(193, 193, 193);"&gt;11000011100101001101101011010100001101&lt;/font&gt;&lt;font style="color: rgb(189, 189, 189);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(183, 183, 183);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(92, 92, 92);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(34, 34, 34);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(55, 55, 55);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(26, 26, 26);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(162, 162, 162);"&gt;1&lt;/font&gt;&lt;font color="white"&gt;11001011111100&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;110101111010011&lt;/font&gt;&lt;font style="color: rgb(189, 189, 189);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(50, 50, 50);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(77, 77, 77);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(109, 109, 110);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(171, 171, 171);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(181, 181, 181);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(184, 184, 184);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(185, 185, 185);"&gt;101001&lt;/font&gt;&lt;font style="color: rgb(186, 185, 186);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(185, 186, 186);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(185, 185, 185);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(186, 186, 186);"&gt;100&lt;/font&gt;&lt;font style="color: rgb(186, 187, 186);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(186, 186, 186);"&gt;110010&lt;/font&gt;&lt;font style="color: rgb(186, 187, 187);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(186, 186, 186);"&gt;010&lt;/font&gt;&lt;font style="color: rgb(186, 186, 187);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(186, 186, 186);"&gt;0110&lt;/font&gt;&lt;font style="color: rgb(186, 185, 186);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(185, 185, 185);"&gt;10101110&lt;/font&gt;&lt;font style="color: rgb(182, 182, 182);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(177, 177, 177);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(120, 120, 120);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(90, 90, 90);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(43, 43, 43);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(164, 164, 164);"&gt;1&lt;/font&gt;&lt;font color="white"&gt;110011100101000&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;101&lt;/font&gt;&lt;font style="color: rgb(114, 114, 114);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(93, 93, 93);"&gt;010110011011&lt;/font&gt;&lt;font style="color: rgb(70, 70, 70);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(5, 5, 5);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(56, 56, 55);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(137, 137, 134);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(173, 171, 166);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(172, 170, 163);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(172, 170, 160);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(171, 168, 156);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(170, 167, 154);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(170, 166, 154);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(169, 166, 156);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(169, 167, 159);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(170, 167, 163);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(170, 169, 166);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(171, 171, 170);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(173, 173, 172);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(174, 174, 174);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(176, 176, 176);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(177, 177, 177);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(178, 178, 178);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(179, 179, 179);"&gt;10&lt;/font&gt;&lt;font style="color: rgb(180, 180, 180);"&gt;10&lt;/font&gt;&lt;font style="color: rgb(181, 181, 181);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(180, 181, 181);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(180, 180, 180);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(179, 179, 179);"&gt;00&lt;/font&gt;&lt;font style="color: rgb(178, 178, 178);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(177, 177, 177);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(176, 176, 176);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(174, 174, 174);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(173, 172, 172);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(171, 171, 168);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(170, 169, 165);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(169, 167, 161);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(170, 166, 157);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(169, 167, 155);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(170, 166, 153);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(171, 167, 154);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(171, 168, 157);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(172, 170, 161);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(171, 170, 164);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(152, 151, 147);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(74, 74, 72);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(12, 12, 12);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(23, 23, 23);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(93, 93, 93);"&gt;0010010111011&lt;/font&gt;&lt;font style="color: rgb(174, 174, 174);"&gt;0&lt;/font&gt;&lt;font color="white"&gt;00&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;111&lt;/font&gt;&lt;font style="color: rgb(32, 32, 32);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;1101000011&lt;/font&gt;&lt;font style="color: rgb(3, 2, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(28, 22, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(58, 47, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(101, 84, 9);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(139, 119, 34);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(164, 147, 71);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(200, 184, 111);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(202, 186, 112);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(202, 185, 109);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(201, 182, 100);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(196, 176, 85);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(190, 167, 64);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(183, 157, 43);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(176, 147, 27);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(171, 142, 25);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(166, 139, 37);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(163, 138, 55);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(160, 141, 78);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(158, 145, 108);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(157, 151, 135);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(159, 158, 156);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(163, 163, 163);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(168, 167, 167);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(171, 171, 171);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(173, 173, 173);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(175, 174, 174);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(175, 175, 175);"&gt;10&lt;/font&gt;&lt;font style="color: rgb(173, 173, 173);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(171, 171, 171);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(167, 167, 167);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(163, 163, 163);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(159, 156, 147);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(158, 149, 122);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(159, 143, 92);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(161, 140, 66);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(165, 139, 45);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(169, 141, 30);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(173, 144, 20);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(180, 152, 28);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(186, 161, 48);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(193, 171, 70);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(199, 179, 90);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(202, 184, 104);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(204, 187, 113);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(203, 186, 116);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(181, 165, 96);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(148, 130, 54);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(124, 106, 30);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(84, 69, 5);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(41, 32, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(13, 10, 0);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;11100011101&lt;/font&gt;&lt;font color="gray"&gt;1&lt;/font&gt;&lt;font color="white"&gt;11&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;110&lt;/font&gt;&lt;font style="color: rgb(32, 32, 32);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;00001001&lt;/font&gt;&lt;font style="color: rgb(4, 3, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(64, 52, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(152, 123, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(197, 168, 26);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(225, 207, 111);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(236, 226, 171);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(240, 234, 197);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(241, 237, 210);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(240, 237, 212);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(239, 236, 210);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(238, 234, 210);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(236, 232, 208);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(233, 230, 205);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(229, 226, 201);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(224, 218, 186);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(216, 207, 161);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(203, 188, 110);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(188, 162, 33);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(177, 146, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(172, 139, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(168, 132, 1);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(163, 129, 12);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(158, 128, 36);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(151, 133, 85);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(146, 143, 136);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(152, 152, 152);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(160, 160, 160);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(165, 165, 165);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(167, 167, 167);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(165, 165, 165);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(160, 160, 160);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(152, 152, 152);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(148, 139, 115);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(155, 130, 56);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(161, 128, 21);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(165, 131, 4);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(170, 137, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(176, 144, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(182, 152, 1);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(194, 172, 51);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(210, 197, 125);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(220, 213, 170);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(227, 223, 192);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(232, 229, 204);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(235, 231, 207);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(237, 234, 209);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(239, 236, 210);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(240, 237, 211);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(241, 238, 212);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(241, 237, 208);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(239, 232, 193);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(234, 223, 162);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(216, 195, 94);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(178, 148, 12);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(110, 89, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(26, 20, 0);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;110111011&lt;/font&gt;&lt;font color="gray"&gt;0&lt;/font&gt;&lt;font color="white"&gt;00&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;000&lt;/font&gt;&lt;font style="color: rgb(32, 32, 32);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;0010111&lt;/font&gt;&lt;font style="color: rgb(20, 16, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(149, 121, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(212, 177, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(221, 195, 20);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(240, 230, 147);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(243, 234, 163);"&gt;1101&lt;/font&gt;&lt;font style="color: rgb(243, 233, 163);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(242, 232, 163);"&gt;00&lt;/font&gt;&lt;font style="color: rgb(241, 231, 162);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(241, 229, 162);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(239, 227, 160);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(236, 225, 159);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(233, 221, 156);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(229, 216, 153);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(221, 208, 142);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(200, 174, 42);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(187, 155, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(179, 148, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(171, 141, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(166, 134, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(163, 127, 1);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(158, 123, 19);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(136, 124, 94);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(134, 134, 134);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(144, 144, 144);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(147, 147, 147);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(143, 143, 143);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(134, 133, 126);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(147, 122, 50);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(161, 124, 4);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(165, 131, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(169, 138, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(176, 146, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(184, 153, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(193, 161, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(208, 185, 63);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(226, 214, 149);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(231, 220, 155);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(235, 224, 158);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(238, 227, 160);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(240, 229, 162);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(241, 230, 162);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(242, 231, 162);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(242, 232, 163);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(243, 233, 163);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(243, 234, 163);"&gt;0110&lt;/font&gt;&lt;font style="color: rgb(243, 233, 162);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(237, 224, 128);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(218, 187, 12);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(195, 159, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(74, 59, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(1, 1, 0);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;0001011&lt;/font&gt;&lt;font color="gray"&gt;0&lt;/font&gt;&lt;font color="white"&gt;11&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;101&lt;/font&gt;&lt;font style="color: rgb(32, 32, 32);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;011111&lt;/font&gt;&lt;font style="color: rgb(5, 5, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(151, 121, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(215, 179, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(220, 191, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(224, 202, 17);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(235, 221, 95);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(236, 222, 101);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(236, 221, 101);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(236, 220, 101);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(236, 219, 101);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(236, 218, 101);"&gt;01&lt;/font&gt;&lt;font style="color: rgb(236, 217, 101);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(236, 216, 101);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(235, 215, 101);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(235, 214, 101);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(234, 213, 101);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(233, 212, 100);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(231, 209, 99);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(226, 205, 94);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(213, 183, 35);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(200, 167, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(191, 159, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(181, 151, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(173, 143, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(167, 134, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(163, 127, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(157, 120, 14);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(117, 114, 107);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(125, 125, 125);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(130, 130, 130);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(124, 124, 124);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(140, 117, 52);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(163, 124, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(165, 131, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(171, 139, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(178, 148, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(187, 156, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(197, 164, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(206, 172, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(220, 191, 48);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(230, 208, 97);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(233, 211, 100);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(234, 213, 101);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(235, 214, 101);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(235, 215, 101);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(236, 216, 101);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(236, 217, 101);"&gt;00&lt;/font&gt;&lt;font style="color: rgb(236, 218, 101);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(236, 219, 101);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(236, 220, 101);"&gt;00&lt;/font&gt;&lt;font style="color: rgb(236, 221, 101);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(236, 222, 101);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(234, 217, 86);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(222, 196, 11);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(217, 184, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(200, 161, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(11, 8, 0);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;1100000&lt;/font&gt;&lt;font color="gray"&gt;0&lt;/font&gt;&lt;font color="white"&gt;10&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;110&lt;/font&gt;&lt;font style="color: rgb(32, 32, 32);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;000111&lt;/font&gt;&lt;font style="color: rgb(5, 4, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(130, 103, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(212, 171, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(217, 182, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(219, 188, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(222, 192, 11);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(225, 196, 32);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(226, 198, 41);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(226, 198, 44);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(226, 196, 44);"&gt;01&lt;/font&gt;&lt;font style="color: rgb(226, 195, 44);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(226, 194, 44);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(226, 193, 44);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(226, 192, 44);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(226, 191, 44);"&gt;10&lt;/font&gt;&lt;font style="color: rgb(225, 190, 42);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(223, 186, 34);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(218, 179, 15);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(212, 172, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(205, 166, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(196, 159, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(186, 150, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(177, 142, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(170, 133, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(166, 126, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(144, 107, 6);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(76, 74, 68);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(81, 81, 81);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(84, 84, 84);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(79, 79, 79);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(107, 85, 27);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(163, 121, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(168, 130, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(174, 139, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(183, 147, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(193, 156, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(202, 164, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(211, 171, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(216, 175, 2);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(221, 182, 20);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(224, 188, 36);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(226, 191, 43);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(226, 192, 44);"&gt;00&lt;/font&gt;&lt;font style="color: rgb(226, 193, 44);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(226, 194, 44);"&gt;00&lt;/font&gt;&lt;font style="color: rgb(226, 195, 44);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(226, 196, 44);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(226, 197, 44);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(226, 198, 43);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(226, 198, 40);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(224, 195, 28);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(220, 189, 7);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(218, 183, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(215, 175, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(186, 147, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(9, 7, 0);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;0101100&lt;/font&gt;&lt;font color="gray"&gt;1&lt;/font&gt;&lt;font color="white"&gt;11&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;100&lt;/font&gt;&lt;font style="color: rgb(32, 32, 32);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;1010101&lt;/font&gt;&lt;font style="color: rgb(3, 2, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(46, 35, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(89, 69, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(98, 77, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(100, 79, 0);"&gt;11&lt;/font&gt;&lt;font style="color: rgb(100, 78, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(100, 78, 2);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(101, 78, 4);"&gt;10&lt;/font&gt;&lt;font style="color: rgb(101, 78, 5);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(101, 77, 5);"&gt;11&lt;/font&gt;&lt;font style="color: rgb(101, 77, 4);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(101, 76, 4);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(100, 76, 2);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(100, 75, 1);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(100, 74, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(99, 74, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(97, 73, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(95, 71, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(91, 68, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(88, 65, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(83, 62, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(78, 57, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(56, 41, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(12, 9, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(1, 1, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(1, 1, 1);"&gt;001&lt;/font&gt;&lt;font style="color: rgb(2, 1, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(33, 24, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(71, 52, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(82, 60, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(86, 64, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(90, 68, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(94, 71, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(97, 73, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(99, 74, 0);"&gt;01&lt;/font&gt;&lt;font style="color: rgb(100, 75, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(100, 75, 1);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(100, 76, 3);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(101, 76, 4);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(101, 77, 4);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(101, 78, 5);"&gt;010&lt;/font&gt;&lt;font style="color: rgb(101, 79, 4);"&gt;11&lt;/font&gt;&lt;font style="color: rgb(100, 78, 2);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(100, 78, 0);"&gt;11&lt;/font&gt;&lt;font style="color: rgb(99, 78, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(96, 74, 0);"&gt;0&lt;/font&gt;&lt;font style="color: rgb(72, 55, 0);"&gt;1&lt;/font&gt;&lt;font style="color: rgb(17, 13, 0);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;10110000&lt;/font&gt;&lt;font color="gray"&gt;0&lt;/font&gt;&lt;font color="white"&gt;01&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;001&lt;/font&gt;&lt;font style="color: rgb(32, 32, 32);"&gt;0&lt;/font&gt;&lt;font color="black"&gt;0111000001100001001100001000001111111000011000110101100001101001010100000&lt;/font&gt;&lt;font color="gray"&gt;0&lt;/font&gt;&lt;font color="white"&gt;10&lt;/font&gt;&lt;br /&gt;&lt;font color="white"&gt;101&lt;/font&gt;&lt;font style="color: rgb(32, 32, 32);"&gt;1&lt;/font&gt;&lt;font color="black"&gt;0110110010110010011010101111000001011010000000011000000000110000000000110&lt;/font&gt;&lt;font color="gray"&gt;0&lt;br /&gt;&lt;br /&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;br /&gt;&lt;/pre&gt;I tought that was cool to see Tux in ascii.. Bahhh.&lt;br /&gt;&lt;br /&gt;To convert any image to ascii » &lt;a href="http://www.text-image.com/"&gt;&lt;span style="font-weight: bold;"&gt;text-image.com&lt;/span&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-2537378961337669269?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/2537378961337669269/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=2537378961337669269&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/2537378961337669269'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/2537378961337669269'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/05/tux-in-ascii_5384.html' title='Tux in ASCII'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-3334477138189650623</id><published>2007-05-29T16:48:00.000-07:00</published><updated>2008-12-11T22:57:20.119-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Customization'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Change your mouse cursor</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_UbcBOQWhX2Y/Rly_Bl1POUI/AAAAAAAAAEA/MfDIE8vHf34/s1600-h/Screenshot-Mouse+Preferences.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_UbcBOQWhX2Y/Rly_Bl1POUI/AAAAAAAAAEA/MfDIE8vHf34/s400/Screenshot-Mouse+Preferences.png" alt="" id="BLOGGER_PHOTO_ID_5070137314568517954" border="0" /&gt;&lt;/a&gt;Ubuntu comes by default with a 'classic' white cursor.&lt;br /&gt;After a while it becomes boring. Let's change it!&lt;br /&gt;&lt;br /&gt;Go to &lt;a href="http://www.gnome-look.org/"&gt;Gnome-Look&lt;/a&gt; and e.g. download the &lt;a href="http://www.gnome-look.org/content/show.php/Fedora+Core+6+Cursors?content=50533"&gt;FedoraCore6 cursor&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Install mouse cursor:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Extract the zip/tar.gz content to the folder &lt;span style="font-weight: bold;"&gt;/home&lt;/span&gt;&lt;your.username style="font-weight: bold;"&gt;/&lt;span style="font-style: italic;"&gt;'your username'&lt;/span&gt;/.icons&lt;/your.username&gt;&lt;/li&gt;&lt;li&gt;Then go to &lt;span style="font-weight: bold;"&gt;System&lt;/span&gt; » &lt;span style="font-weight: bold;"&gt;Preferences&lt;/span&gt; » &lt;span style="font-weight: bold;"&gt;Mouse&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Go to Pointers tab (just like the picture) and select the new pointer/cursor.&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-size:85%;"&gt;If you know more cool cursors, please submit a comment&lt;span style="font-weight: bold;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-3334477138189650623?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/3334477138189650623/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=3334477138189650623&amp;isPopup=true' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/3334477138189650623'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/3334477138189650623'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/05/change-your-mouse-cursor.html' title='Change your mouse cursor'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_UbcBOQWhX2Y/Rly_Bl1POUI/AAAAAAAAAEA/MfDIE8vHf34/s72-c/Screenshot-Mouse+Preferences.png' height='72' width='72'/><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-7965974800697546500</id><published>2007-05-26T04:34:00.000-07:00</published><updated>2008-12-11T22:57:20.350-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Windows'/><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>The goodies of Firefox's Add-ons</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_UbcBOQWhX2Y/RkZsfx7Nl6I/AAAAAAAAAB8/mCPjnGkedrQ/s1600-h/firefox-logo-64x64.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://1.bp.blogspot.com/_UbcBOQWhX2Y/RkZsfx7Nl6I/AAAAAAAAAB8/mCPjnGkedrQ/s200/firefox-logo-64x64.png" alt="" id="BLOGGER_PHOTO_ID_5063854124258138018" border="0" /&gt;&lt;/a&gt;Mozilla Firefox is a wonderful browser, and one of the most values are the Add-ons.&lt;br /&gt;There are Add-ons that goes from radio to download manager.&lt;br /&gt;So, I'm gonna introduce you to some of the best and needed Add-ons:&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;a style="font-weight: bold;" href="http://www.foxmarks.com/"&gt;Foxmarks&lt;/a&gt; - The Bookmark Synchronizer - &lt;span style="font-style: italic;font-size:85%;" &gt;Saves your bookmarks online and allow to synchronize them with another computers..&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a style="font-weight: bold;" href="https://addons.mozilla.org/en-US/firefox/addon/1865"&gt;Adblock Plus&lt;/a&gt; - Add and banner blocker - &lt;span style="font-style: italic;font-size:85%;" &gt;Blocks adds and banner by filter subscription or user request&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a style="font-weight: bold;" href="https://addons.mozilla.org/en-US/firefox/addon/220"&gt;FlashGot&lt;/a&gt; - Download Manager - &lt;span style="font-style: italic;font-size:85%;" &gt;"Download one link, selected links or all the links of a page together at the maximum speed with a single click.."&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a style="font-weight: bold;" href="https://addons.mozilla.org/en-US/firefox/addon/26"&gt;Download Statusbar&lt;/a&gt; - Download statusbar info - &lt;span style="font-style: italic;font-size:85%;" &gt;"View and manage downloads from a tidy statusbar.."&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a style="font-weight: bold;" href="https://addons.mozilla.org/en-US/firefox/addon/722"&gt;NoScript&lt;/a&gt; - Script Enable/Disable - &lt;span style="font-style: italic;font-size:85%;" &gt;"It allows JavaScript, Java and other executable content to run only from trusted domains of your choice.."&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a style="font-weight: bold;" href="https://addons.mozilla.org/en-US/firefox/addon/2390"&gt;VideoDownloader&lt;/a&gt; - Saves *.vlc, etc videos - &lt;span style="font-style: italic;font-size:85%;" &gt;"Download videos from Youtube, Google, Metacafe, iFilm, Dailymotion, Pornotube..."&lt;/span&gt; &lt;/li&gt;&lt;li&gt;&lt;a style="font-weight: bold;" href="https://addons.mozilla.org/en-US/firefox/addon/398"&gt;Forecastfox&lt;/a&gt; - Weather report - &lt;span style="font-style: italic;font-size:85%;" &gt;"Get international weather forecasts from AccuWeather.com"&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a style="font-weight: bold;" href="https://addons.mozilla.org/en-US/firefox/addon/636"&gt;PDF Download&lt;/a&gt; - PDF downloader helper - &lt;span style="font-style: italic;font-size:85%;" &gt;"Allows to choose if you want to view a PDF file inside the browser (as PDF or HTML)..."&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a style="font-weight: bold;" href="https://addons.mozilla.org/en-US/firefox/addon/1269"&gt;Fasterfox&lt;/a&gt; -Maximize you Firefox's speed - &lt;span style="font-style: italic;font-size:85%;" &gt;"Performance and network tweaks for Firefox."&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a style="font-weight: bold;" href="https://addons.mozilla.org/en-US/firefox/addon/953"&gt;RefControl&lt;/a&gt; - HPPT referer controller -  &lt;span style="font-style: italic;font-size:85%;" &gt;"Control what gets sent as the HTTP Referer on a per-site basis."&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;You you have/know another great add-on please submit a comment..&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-7965974800697546500?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/7965974800697546500/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=7965974800697546500&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/7965974800697546500'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/7965974800697546500'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/05/goodies-of-firefoxs-add-ons.html' title='The goodies of Firefox&apos;s Add-ons'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_UbcBOQWhX2Y/RkZsfx7Nl6I/AAAAAAAAAB8/mCPjnGkedrQ/s72-c/firefox-logo-64x64.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-4975705418168614849</id><published>2007-05-19T09:04:00.000-07:00</published><updated>2008-12-11T22:57:20.519-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Customization'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Did you liked my fonts at the previously post?</title><content type='html'>My fonts are:&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_UbcBOQWhX2Y/Rk8p2V1PORI/AAAAAAAAADs/ptpt-2meLC8/s1600-h/Screenshot-Font+Preferences.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_UbcBOQWhX2Y/Rk8p2V1PORI/AAAAAAAAADs/ptpt-2meLC8/s400/Screenshot-Font+Preferences.png" alt="" id="BLOGGER_PHOTO_ID_5066314119365212434" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;To install &lt;span style="font-weight: bold;"&gt;Lucinda Grande&lt;/span&gt;  font (Mac font):&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Go &lt;a href="http://www.osx-e.com/downloads/misc/macfonts.html"&gt;here&lt;/a&gt; and download them;&lt;/li&gt;&lt;li&gt;Extract the zip content;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Open Terminal and go to the folder that you extracted the zip content and type:&lt;/li&gt;&lt;/ol&gt;&lt;span style="color: rgb(51, 51, 51); font-weight: bold;font-size:85%;" &gt;&lt;span&gt;$ sudo mkdir /usr/share/fonts/truetype/ttf  &lt;/span&gt;&lt;/span&gt;  &lt;div style="color: rgb(51, 51, 51); font-weight: bold;" class="console"&gt;&lt;span style="font-size:85%;"&gt;  $ sudo cp *.ttf /usr/share/fonts/truetype/ttf  &lt;/span&gt;&lt;/div&gt;  &lt;div class="console"&gt;&lt;span style="color: rgb(51, 51, 51); font-weight: bold;font-size:85%;" &gt;&lt;span&gt;  $ sudo cp *.TTF /usr/share/fonts/truetype/ttf&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Then go to &lt;span style="font-weight: bold;"&gt;System&lt;/span&gt; » &lt;span style="font-weight: bold;"&gt;Preferences&lt;/span&gt; » &lt;span style="font-weight: bold;"&gt;Fon&lt;/span&gt;t and select the fonts/font_rendereing/size just like my image,&lt;span style="font-style: italic;"&gt; if you wish so.&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;That's all...&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-4975705418168614849?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/4975705418168614849/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=4975705418168614849&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/4975705418168614849'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/4975705418168614849'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/05/did-you-liked-my-font-at-previously.html' title='Did you liked my fonts at the previously post?'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_UbcBOQWhX2Y/Rk8p2V1PORI/AAAAAAAAADs/ptpt-2meLC8/s72-c/Screenshot-Font+Preferences.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-7883407922607399843</id><published>2007-05-19T04:36:00.000-07:00</published><updated>2007-06-28T14:33:01.560-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Customization'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Improved subpixel font rendering for Feisty</title><content type='html'>First of all, you can the final results:&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;img src="http://img72.imageshack.us/img72/5391/finalja8.png" alt="Image Hosted by ImageShack.us" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;So, if you like it, let's start:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Open a Terminal&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Window&lt;/span&gt;&lt;span style="font-size:100%;"&gt;Type the following&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;$ sudo gedit /etc/apt/sources.list&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Add the following lines to the end of the file:&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;deb http://www.telemail.fi/mlind/ubuntu feisty fonts&lt;br /&gt;deb-src http://www.telemail.fi/mlind/ubuntu feisty fonts&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="color: rgb(102, 102, 102);"&gt; for &lt;/span&gt;&lt;b style="color: rgb(102, 102, 102);"&gt;amd64&lt;/b&gt;&lt;span style="color: rgb(102, 102, 102);"&gt; binaries use &lt;/span&gt;&lt;a style="color: rgb(102, 102, 102);" href="http://ubuntu.moshen.de/dists/feisty/experimental" target="_blank"&gt;RAOF's repository&lt;/a&gt;&lt;span style="color: rgb(102, 102, 102);"&gt;:&lt;/span&gt; &lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;&lt;span style="color: rgb(102, 102, 102);"&gt;&lt;br /&gt;deb http://raof.dyndns.org/falcon feisty experimental&lt;/span&gt; &lt;span style="color: rgb(102, 102, 102);"&gt;&lt;br /&gt;deb-src http://raof.dyndns.org/falcon feisty experimental&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Save and Exit Gedit&lt;/li&gt;&lt;li&gt;Run from the terminal window&lt;/li&gt;&lt;/ol&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;$ sudo aptitude update&lt;/span&gt; &lt;span style="font-weight: bold;"&gt;&lt;br /&gt;$ sudo aptitude install libfreetype6 libcairo2 libxft2&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Config: &lt;span style="font-style: italic;font-size:85%;" &gt;(my settings: Native, Automatic, No bitmapped)&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;$ sudo dpkg-reconfigure fontconfig-config&lt;/span&gt; &lt;span style="font-weight: bold;"&gt;&lt;br /&gt;$ sudo dpkg-reconfigure fontconfig&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 51, 0);"&gt;Source/Support: &lt;/span&gt;&lt;a href="http://ubuntuforums.org/showthread.php?t=343670"&gt;Ubuntuforums.org&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-7883407922607399843?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/7883407922607399843/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=7883407922607399843&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/7883407922607399843'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/7883407922607399843'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/05/improved-subpixel-font-rendering-for.html' title='Improved subpixel font rendering for Feisty'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-1449665994411228161</id><published>2007-05-15T04:56:00.000-07:00</published><updated>2007-06-28T14:33:01.561-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='News'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Linux Distro Timeline</title><content type='html'>Do you know the Linux time line??&lt;br /&gt;Check it out...&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://img516.imageshack.us/my.php?image=linuxdistrotimelineuw0.png" target="_blank"&gt;&lt;img src="http://img516.imageshack.us/img516/4007/linuxdistrotimelineuw0.th.png" alt="Free Image Hosting at www.ImageShack.us" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size:85%;"&gt;(click on image to enlarge)&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-1449665994411228161?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/1449665994411228161/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=1449665994411228161&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/1449665994411228161'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/1449665994411228161'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/05/linux-distro-timeline.html' title='Linux Distro Timeline'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-195225858713722164</id><published>2007-05-13T13:34:00.000-07:00</published><updated>2008-12-11T22:57:20.806-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='News'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Saving power with Linux on Intel hardware</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_UbcBOQWhX2Y/Rkd4ex7NmEI/AAAAAAAAADM/CGYQE5AAoBk/s1600-h/saving+power+with+linux+on+Intel+Platforms.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://2.bp.blogspot.com/_UbcBOQWhX2Y/Rkd4ex7NmEI/AAAAAAAAADM/CGYQE5AAoBk/s200/saving+power+with+linux+on+Intel+Platforms.png" alt="" id="BLOGGER_PHOTO_ID_5064148776194512962" border="0" /&gt;&lt;/a&gt;"Power usage is a hot topic for computer users everywhere. For some, it's a matter of how long a laptop lasts without being plugged in. For others, it's controlling the temperature of hundreds of systems within a datacenter. For all of us, it's about keeping the electricity bill under control and being kind to the environment.&lt;br /&gt;&lt;br /&gt;Getting your computer to use the least amount of power can be problematic. This site provides information on reducing power usage, tips, and tricks for Intel-based computers running Linux*.  &lt;br /&gt;&lt;br /&gt;As a first step, Intel is releasing &lt;a href="http://www.linuxpowertop.org/powertop.php"&gt;PowerTOP&lt;/a&gt;, a tool that helps you find what software is using the most power. By fixing (or closing) these applications or processes, you can immediately see the power savings in the tool. You'll also see the estimated time left for battery power if you are running a laptop. The &lt;a href="http://www.linuxpowertop.org/known.php"&gt;Tips&amp;Tricks page&lt;/a&gt; has fixes for a lot of the issues that are already found. Join our &lt;a href="http://www.linuxpowertop.org/discuss.php"&gt;mailing list&lt;/a&gt; to participate in this effort to get Linux to use less power."&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;Homepage:&lt;/span&gt; &lt;span style="text-decoration: underline;"&gt;&lt;/span&gt;&lt;a href="http://www.linuxpowertop.org/"&gt;LinuxPowerTOP&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-195225858713722164?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/195225858713722164/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=195225858713722164&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/195225858713722164'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/195225858713722164'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/05/saving-power-with-linux-on-intel.html' title='Saving power with Linux on Intel hardware'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_UbcBOQWhX2Y/Rkd4ex7NmEI/AAAAAAAAADM/CGYQE5AAoBk/s72-c/saving+power+with+linux+on+Intel+Platforms.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-3269653814089244377</id><published>2007-05-13T06:24:00.000-07:00</published><updated>2007-06-28T14:33:01.561-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>Emesene messenger site</title><content type='html'>" Emesene is an OS independent MSN Messenger client written in python and GTK. The main idea is to make a client similar to the official MSN Messenger client but kepping it simple and with a nice GUI.  &lt;ul&gt;&lt;li&gt;&lt;b&gt;Project page:&lt;/b&gt; &lt;a href="http://sf.net/projects/emesene"&gt;sourceforge project page&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;Wiki:&lt;/b&gt; &lt;a href="http://emesene-im.com.ar/wiki"&gt;project's wik&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-3269653814089244377?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/3269653814089244377/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=3269653814089244377&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/3269653814089244377'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/3269653814089244377'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/05/emesene-messenger-site.html' title='Emesene messenger site'/><author><name>serafim</name><uri>http://www.blogger.com/profile/09378997342964469679</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_8zmHsnACv-c/SiufeJuSooI/AAAAAAAAAAc/EaNB7-qKLNw/S220/306kq4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-1658707280032061265</id><published>2007-05-12T19:25:00.000-07:00</published><updated>2008-12-11T22:57:21.080-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='News'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Getdeb</title><content type='html'>&lt;div style="text-align: left;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_UbcBOQWhX2Y/RkZ4vx7NmCI/AAAAAAAAAC8/QPKHLMvZphI/s1600-h/getdebubuntulogo.png"&gt;&lt;img style="cursor: pointer;" src="http://1.bp.blogspot.com/_UbcBOQWhX2Y/RkZ4vx7NmCI/AAAAAAAAAC8/QPKHLMvZphI/s200/getdebubuntulogo.png" alt="" id="BLOGGER_PHOTO_ID_5063867593275578402" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;span style="font-weight: bold;"&gt;GetDeb&lt;/span&gt; in a new project that has the purpose to make the latest versions of software available for the current *already released and supported* Ubuntu versions. The packages are available using &lt;a href="http://www.getdeb.net/distro_select.php" target="_blank"&gt;FTP/HTTP&lt;/a&gt; download link.&lt;br /&gt;&lt;br /&gt;Homepage: &lt;a href="http://www.getdeb.net"&gt;GetDeb&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-1658707280032061265?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/1658707280032061265/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=1658707280032061265&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/1658707280032061265'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/1658707280032061265'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/05/getdeb.html' title='Getdeb'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_UbcBOQWhX2Y/RkZ4vx7NmCI/AAAAAAAAAC8/QPKHLMvZphI/s72-c/getdebubuntulogo.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-1866247587313946725</id><published>2007-05-12T11:28:00.000-07:00</published><updated>2008-12-11T22:57:21.227-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Windows'/><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Gaim is now Pidgin</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_UbcBOQWhX2Y/RkZ0rx7Nl-I/AAAAAAAAACc/rUROCeGiZaY/s1600-h/pidginavatarlarge.2.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://1.bp.blogspot.com/_UbcBOQWhX2Y/RkZ0rx7Nl-I/AAAAAAAAACc/rUROCeGiZaY/s200/pidginavatarlarge.2.png" alt="" id="BLOGGER_PHOTO_ID_5063863126509590498" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;"We've got a new name, a new look, and a ton of new features, but we're still the same old instant messaging client you know and love. We've changed our name as part of a trademark settlement with AOL, and have finally released our long-awaited version 2.0.0. Read all about it on the &lt;a href="http://pidgin.im/pidgin/news" target="_self"&gt;News&lt;/a&gt; page."&lt;br /&gt;&lt;br /&gt;Homepage: &lt;a href="http://pidgin.im/"&gt;Pidgin&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;Remove Gaim and install Pidgin:&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;$ sudo apt-get remove gaim&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;Download the .deb of Pidgin &lt;a href="http://www.getdeb.net/download.php?release=817&amp;fpos=0"&gt;here&lt;/a&gt;&lt;br /&gt;Plugins : &lt;a href="http://www.getdeb.net/app.php?name=Pidgin%20Guifications"&gt;Guifications&lt;/a&gt; Or &lt;a href="http://www.getdeb.net/app.php?name=pidgin-libnotify"&gt;LibNotify&lt;/a&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;Source: &lt;/span&gt;&lt;a href="http://www.formatds.org/"&gt;§ formatds&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-1866247587313946725?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/1866247587313946725/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=1866247587313946725&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/1866247587313946725'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/1866247587313946725'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/05/gaim-is-now-pidgin.html' title='Gaim is now Pidgin'/><author><name>serafim</name><uri>http://www.blogger.com/profile/09378997342964469679</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_8zmHsnACv-c/SiufeJuSooI/AAAAAAAAAAc/EaNB7-qKLNw/S220/306kq4.png'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_UbcBOQWhX2Y/RkZ0rx7Nl-I/AAAAAAAAACc/rUROCeGiZaY/s72-c/pidginavatarlarge.2.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-6150112649381717920</id><published>2007-05-01T06:29:00.000-07:00</published><updated>2008-12-11T22:57:21.657-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Alltray</title><content type='html'>Some applications have the functionality of minimizing to "icon tray" directly. Others don't.&lt;br /&gt;&lt;br /&gt;We present: &lt;span style="color: rgb(0, 153, 0);"&gt;ALLTRAY&lt;br /&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_UbcBOQWhX2Y/RjdB2R7Nl4I/AAAAAAAAABs/FsfB_3_GqJ4/s1600-h/icontray.png"&gt;&lt;img style="cursor: pointer;" src="http://4.bp.blogspot.com/_UbcBOQWhX2Y/RjdB2R7Nl4I/AAAAAAAAABs/FsfB_3_GqJ4/s400/icontray.png" alt="" id="BLOGGER_PHOTO_ID_5059585107154540418" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;to install:&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;$ sudo apt-get install alltray&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;to configure programs to minimize to icon tray, just add «&lt;span style="font-weight: bold;"&gt;alltray&lt;/span&gt;» before the text presented in command:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_UbcBOQWhX2Y/RjdBuR7Nl3I/AAAAAAAAABk/LFVOwD12iao/s1600-h/editalltray.png"&gt;&lt;img style="cursor: pointer;" src="http://4.bp.blogspot.com/_UbcBOQWhX2Y/RjdBuR7Nl3I/AAAAAAAAABk/LFVOwD12iao/s400/editalltray.png" alt="" id="BLOGGER_PHOTO_ID_5059584969715586930" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;(&lt;span style="font-weight: bold;"&gt;right click » Properties&lt;/span&gt; - to show this windows)&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Notes:&lt;/span&gt;&lt;br /&gt;to &lt;span style="font-weight: bold;"&gt;minimize to icon tray &lt;/span&gt;just double click on the icon in icon tray;&lt;br /&gt;to &lt;span style="font-weight: bold;"&gt;minimize as usual &lt;/span&gt;just click on the minimize button in the respective window.&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-6150112649381717920?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/6150112649381717920/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=6150112649381717920&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/6150112649381717920'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/6150112649381717920'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/05/alltray.html' title='Alltray'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_UbcBOQWhX2Y/RjdB2R7Nl4I/AAAAAAAAABs/FsfB_3_GqJ4/s72-c/icontray.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-3938366824272552313</id><published>2007-05-01T05:54:00.000-07:00</published><updated>2007-06-28T14:33:01.563-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Glipper [clipboard manager]</title><content type='html'>&lt;span style="font-size:85%;"&gt;&lt;/span&gt;&lt;blockquote&gt;&lt;span style="font-size:85%;"&gt;The default clipboard manager of Microsoft Windows operating system enables pasting after closing host application of the copied data, but doesn't have the copy history feature. Users needing this functionality often run a more powerful clipboard manager in parallel with the default one.&lt;br /&gt;&lt;br /&gt;The UNIX desktop environment KDE ships with Klipper. GNOME doesn't ship with a clipboard manager by default but &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 153, 0);font-size:85%;" &gt;Glipper&lt;/span&gt;&lt;span style="font-size:85%;"&gt; (text only) or Desktop Data Manager (text and images) can be used. Both enable pasting after closing the host application and both also have a copy history feature.&lt;br /&gt;&lt;/span&gt;&lt;div style="text-align: right;"&gt;&lt;span style="font-size:85%;"&gt;in &lt;a href="http://en.wikipedia.org/wiki/Clipboard_manager"&gt;Wikipedia&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div style="text-align: right;"&gt;&lt;span style="font-size:85%;"&gt;&lt;a href="http://en.wikipedia.org/wiki/Clipboard_manager"&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;div style="text-align: left;"&gt;It is really annoying when you make [Ctrl]+[C] in any application and when you close that application that information is lost.. the solution is &lt;span style="color: rgb(0, 153, 0);"&gt;Glipper&lt;/span&gt;:&lt;br /&gt;&lt;br /&gt;to install Glipper&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;$ sudo apt-get install glipper&lt;/span&gt;&lt;br /&gt;Glipper can be found at: &lt;span style="font-weight: bold;"&gt;Applications » Acessories » Glipper&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-3938366824272552313?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/3938366824272552313/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=3938366824272552313&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/3938366824272552313'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/3938366824272552313'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/05/glipper-clipboard.html' title='Glipper [clipboard manager]'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-2302595525272798637</id><published>2007-04-29T10:46:00.000-07:00</published><updated>2007-06-28T14:33:01.564-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Kiba-Dock</title><content type='html'>Treviño ( an older post talks about Treviño ) manages a repo with kiba-dock, These can be accessed by adding the following to your sources.list file: Note: Currently, there are only 32 bit (x86) deb packages available, 64 bit users can use &lt;a href="http://www.kiba-dock.org/components/com_mambowiki/index.php?title=Installing_Kiba-Dock#To_fetch_SVN_Version"&gt;SVN&lt;/a&gt;.&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Open a Terminal Window&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Type the following&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;$ sudo gedit /etc/apt/sources.list&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Add the following lines to the end of the file:&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;deb http://download.tuxfamily.org/3v1deb feisty eyecandy&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;deb-src http://download.tuxfamily.org/3v1deb feisty eyecandy&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Save and Exit Gedit&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Run from the terminal window&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;$ wget http://download.tuxfamily.org/3v1deb/DD800CD9.gpg -O- | sudo apt-key add -&lt;br /&gt;$ sudo apt-get update&lt;br /&gt;$ sudo apt-get install kiba-dock&lt;br /&gt;$ sudo apt-get install kiba-dock-dev&lt;br /&gt;$ sudo apt-get install kiba-plugins&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;PLEASE NOTE: this is a daily svn repo, which means you're dealing with snapshots of the latest and greatest, but not always the most stable!&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;Homepage: &lt;/span&gt;&lt;a href="http://www.kiba-dock.org/"&gt;Kiba-Dock&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-2302595525272798637?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/2302595525272798637/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=2302595525272798637&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/2302595525272798637'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/2302595525272798637'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/04/kiba-dock.html' title='Kiba-Dock'/><author><name>serafim</name><uri>http://www.blogger.com/profile/09378997342964469679</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_8zmHsnACv-c/SiufeJuSooI/AAAAAAAAAAc/EaNB7-qKLNw/S220/306kq4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-4328300814358212355</id><published>2007-04-18T16:11:00.000-07:00</published><updated>2007-05-12T11:31:52.679-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Tunning LG P1 (OpenSuse 10.2)</title><content type='html'>&lt;span&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;wide Resolution&lt;/span&gt; [Intel 945GM]&lt;br /&gt;&lt;br /&gt;download &lt;a href="http://rpmfind.net/linux/RPM/opensuse/OSS-factory/i586/915resolution-0.5.2-26.i586.html"&gt;915resolution&lt;/a&gt; rpm and install&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;$ su&lt;br /&gt;$ 915resolution -l&lt;br /&gt;$ 915resolution 38 1280 800&lt;br /&gt;$ gedit /etc/init.d/boot.local&lt;/span&gt;&lt;br /&gt;add:&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;/sbin/915resolution 38 1280 800&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;close, reboot GDM.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;...in development...&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;*these are my personal notes&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-4328300814358212355?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/4328300814358212355/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=4328300814358212355&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/4328300814358212355'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/4328300814358212355'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/04/tunning-lg-p1-opensuse-102.html' title='Tunning LG P1 (OpenSuse 10.2)'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-3408587183817684818</id><published>2007-04-13T08:28:00.000-07:00</published><updated>2007-05-12T11:32:50.780-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='News'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>News 07 April</title><content type='html'>Ubuntu 7.10 Gutsy Gibbon&lt;br /&gt;» &lt;a href="https://lists.ubuntu.com/archives/ubuntu-devel-announce/2007-April/000276.html"&gt;Introducing the Gutsy Gibbon&lt;/a&gt;&lt;br /&gt;» &lt;a href="https://wiki.ubuntu.com/GutsyReleaseSchedule"&gt;GutsyReleaseSchedule&lt;/a&gt;&lt;br /&gt;» &lt;a href="http://en.wikipedia.org/wiki/Gutsy_Gibbon"&gt;Wiki&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Shipit has 7.04 CDs&lt;br /&gt;» &lt;a href="https://shipit.ubuntu.com/"&gt;shipit.ubuntu&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Ubuntu/ Kubuntu/ Xubuntu/ Edubuntu Magazine (NEW)&lt;br /&gt;» &lt;a href="http://www.fullcirclemagazine.org/"&gt;Full Circle Magazine&lt;/a&gt;&lt;br /&gt;» &lt;a href="http://www.fullcirclemagazine.org/node/30"&gt;Download&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-3408587183817684818?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/3408587183817684818/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=3408587183817684818&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/3408587183817684818'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/3408587183817684818'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/04/news-07-april.html' title='News 07 April'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-6347972269746791202</id><published>2007-03-29T13:52:00.000-07:00</published><updated>2007-05-12T19:24:39.600-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Repository'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>CVS Repository - Treviño</title><content type='html'>&lt;a href="http://3v1n0.tuxfamily.org/index.html"&gt;Treviño’s Ubuntu Repository&lt;/a&gt; is dedicated to CVS versions.&lt;br /&gt;&lt;br /&gt;to add Treviño’s repository:&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="color: rgb(51, 51, 51); font-weight: bold;"&gt;$ sudo wget http://download.tuxfamily.org/3v1deb/DD800CD9.gpg -O- | sudo apt-key add -&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);font-size:85%;" &gt;$ sudo gedit /etc/apt/sources.list&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;add these two line:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;deb http://download.tuxfamily.org/3v1deb feisty 3v1n0&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;deb-src http://download.tuxfamily.org/3v1deb &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;feisty&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt; 3v1n0&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);font-size:100%;" &gt;and/or:&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;deb http://download.tuxfamily.org/3v1deb feisty eyecandy&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;deb-src http://download.tuxfamily.org/3v1deb &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;feisty&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt; eyecandy&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;Moreinfo:&lt;/span&gt; &lt;a href="http://3v1n0.tuxfamily.org/dists/feisty/index.html"&gt;info&lt;/a&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;Homepage:&lt;/span&gt; &lt;a href="http://3v1n0.tuxfamily.org/index.html"&gt;3v1n0&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 153, 153); font-style: italic;font-size:85%;" &gt;(good for amule, etc&lt;/span&gt;&lt;span style="color: rgb(153, 153, 153);font-size:85%;" &gt;&lt;span style="font-style: italic;"&gt;)&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;a href="http://3v1n0.tuxfamily.org/"&gt;&lt;br /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-6347972269746791202?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/6347972269746791202/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=6347972269746791202&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/6347972269746791202'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/6347972269746791202'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/03/cvs-repository-trevio.html' title='CVS Repository - Treviño'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-7838543109824261966</id><published>2007-03-29T11:53:00.000-07:00</published><updated>2007-05-12T13:41:08.584-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Tunning LG P1</title><content type='html'>&lt;span style="color: rgb(0, 102, 0);"&gt;&lt;span style="font-weight: bold;"&gt;wide Resolution&lt;/span&gt; &lt;/span&gt;[Intel 945GM]&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;$ sudo apt-get install 915resolution&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;$ sudo 915resolution 58 1280 800 32&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;$ sudo gedit /etc/init.d/bootmisc.sh&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;Paste this before the last end:&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;/usr/sbin/915resolution 58 1280 800 32&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0); font-weight: bold;"&gt;Sound Card&lt;/span&gt; [Realtek LC880]&lt;br /&gt;&lt;br /&gt;when only phones work:&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;$ sudo gedit /etc/modprobe.d/snd-hda-intel&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;Paste and save:&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;options snd-hda-intel model=lg&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;Reboot&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;&lt;span style="font-weight: bold;"&gt;Ethernet Card&lt;/span&gt; &lt;/span&gt;[Agere et1310 aka et131x]&lt;br /&gt;&lt;br /&gt;Download et131x-1.2.3.tar.gz (or more recent )&lt;br /&gt;@ http://sourceforge.net/projects/et131x&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;$ sudo apt-get install build-essential linux-headers-$(uname -r)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;&lt;/span&gt;&lt;/span&gt;go to the unpackaged et131x folder&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;$ make&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;$ sudo make modules_install&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;$ insmod et131x.ko&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;$ sudo depmod&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;$ sudo modprobe et131x&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;may require reboot.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.thefuckingshit.org/?p=425"&gt;here&lt;/a&gt; for 6.10 (the upper instructions may also function - not tested)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0); font-weight: bold;"&gt;Wireless&lt;/span&gt;&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;[Intel ipw3945ABG]&lt;br /&gt;&lt;br /&gt;already working by default&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0); font-weight: bold;"&gt;NTFS&lt;/span&gt; support&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.guiaubuntupt.org/wiki/index.php?title=Ntfs_suporte_com_leitura_e_escrita_ntfs-3g#Configurar_o_NTFS-3G"&gt;link pt&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.ubuntuforums.org/showthread.php?t=217009"&gt;link en&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;...in development...&lt;br /&gt;&lt;span&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;*these are my personal notes&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-7838543109824261966?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/7838543109824261966/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=7838543109824261966&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/7838543109824261966'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/7838543109824261966'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/03/tuning-lg-p1.html' title='Tunning LG P1'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-4703501648930004061</id><published>2007-03-24T14:27:00.000-07:00</published><updated>2008-12-11T22:57:21.904-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Performance tip for Ubuntu Edgy and Feisty users</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_UbcBOQWhX2Y/RkZvUh7Nl8I/AAAAAAAAACM/SmJWqfMWE9M/s1600-h/my+pc+is+faster.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 99px; height: 91px;" src="http://4.bp.blogspot.com/_UbcBOQWhX2Y/RkZvUh7Nl8I/AAAAAAAAACM/SmJWqfMWE9M/s200/my+pc+is+faster.jpg" alt="" id="BLOGGER_PHOTO_ID_5063857229519493058" border="0" /&gt;&lt;/a&gt;One user suggested the following tip to improve the applications launch performance.&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;$ sudo gedit /etc/hosts&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;You should see something like this:&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;127.0.0.1 localhost&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;127.0.1.1 &lt;/span&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;user&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;(and if your in Feisty, some lines about IPV6 also)&lt;br /&gt;Now, edit to:&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;127.0.0.1 localhost user&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;127.0.1.1 &lt;/span&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;user&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;(Replace “&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;user&lt;/span&gt;&lt;/span&gt;” with your hostname).&lt;br /&gt;Save and exit the file.&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;Now your applications launch should improve.&lt;br /&gt;Currently There are two bugs filed against this you can check &lt;a href="https://bugs.launchpad.net/ubuntu/+source/gnome-desktop/+bug/94048"&gt;here&lt;/a&gt; and &lt;a href="https://bugs.launchpad.net/ubuntu/+source/gnome-session/+bug/26419"&gt;here&lt;/a&gt; .&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;Source:&lt;/span&gt; &lt;a href="http://onlyubuntu.blogspot.com/2007/03/performance-tip-for-ubuntu-edgy-and.html"&gt;OnlyUbuntuLinux&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-4703501648930004061?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/4703501648930004061/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=4703501648930004061&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/4703501648930004061'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/4703501648930004061'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/03/performance-tip-for-ubuntu-edgy-and.html' title='Performance tip for Ubuntu Edgy and Feisty users'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_UbcBOQWhX2Y/RkZvUh7Nl8I/AAAAAAAAACM/SmJWqfMWE9M/s72-c/my+pc+is+faster.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-1607113739919020624</id><published>2007-03-24T14:20:00.000-07:00</published><updated>2008-12-11T22:57:21.920-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Set Your Firefox Homepage to Multiple Tabs</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_UbcBOQWhX2Y/RkZsfx7Nl6I/AAAAAAAAAB8/mCPjnGkedrQ/s1600-h/firefox-logo-64x64.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://1.bp.blogspot.com/_UbcBOQWhX2Y/RkZsfx7Nl6I/AAAAAAAAAB8/mCPjnGkedrQ/s200/firefox-logo-64x64.png" alt="" id="BLOGGER_PHOTO_ID_5063854124258138018" border="0" /&gt;&lt;/a&gt;With this tiny Firefox feature, you will be able to set your default homepage to multiple pages which will open in different tabs. All you have to do is add this symbol, “|”, in between your websites. This is how it should look…&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;“www.digg.com|www.espn.com|www.facebook.com”&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;You can add as many or as little number of sites as you would like.&lt;br /&gt;&lt;br /&gt;This will also go into effect whenever you hit the home button on your browser. Some of you might have already known about this, but it’s news to me.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;Source:&lt;/span&gt; &lt;a href="http://www.techpwn.com/?p=193"&gt;TechPwn&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-1607113739919020624?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/1607113739919020624/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=1607113739919020624&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/1607113739919020624'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/1607113739919020624'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/03/set-your-firefox-homepage-to-multiple.html' title='Set Your Firefox Homepage to Multiple Tabs'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_UbcBOQWhX2Y/RkZsfx7Nl6I/AAAAAAAAAB8/mCPjnGkedrQ/s72-c/firefox-logo-64x64.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-6910385008471404133</id><published>2007-03-24T13:45:00.000-07:00</published><updated>2008-12-11T22:57:21.930-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Fight Firefox resizing with four simple steps</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_UbcBOQWhX2Y/RkZsfx7Nl6I/AAAAAAAAAB8/mCPjnGkedrQ/s1600-h/firefox-logo-64x64.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://1.bp.blogspot.com/_UbcBOQWhX2Y/RkZsfx7Nl6I/AAAAAAAAAB8/mCPjnGkedrQ/s200/firefox-logo-64x64.png" alt="" id="BLOGGER_PHOTO_ID_5063854124258138018" border="0" /&gt;&lt;/a&gt;Hate it when websites take it on themselves to resize your browser window? We do. Here are four simple steps to make sure that these Webdev control freaks never resize your Firefox window again:&lt;br /&gt;OS X and Linux  (Windows is similar):&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Click "&lt;span style="font-weight: bold;"&gt;Edit&lt;/span&gt;, then &lt;span style="font-weight: bold;"&gt;Preferences&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Select the &lt;span style="font-weight: bold;"&gt;Content&lt;/span&gt; tab&lt;/li&gt;&lt;li&gt;To the right of &lt;span style="font-weight: bold;"&gt;Enable JavaScript&lt;/span&gt; click &lt;span style="font-weight: bold;"&gt;Advanced&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Uncheck the box next to Move or Resize Existing Windows&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;Source:&lt;/span&gt; &lt;a href="http://www.techpwn.com/?p=271"&gt;TechPwn&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-6910385008471404133?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/6910385008471404133/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=6910385008471404133&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/6910385008471404133'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/6910385008471404133'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/03/fight-firefox-resizing-with-four-simple.html' title='Fight Firefox resizing with four simple steps'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_UbcBOQWhX2Y/RkZsfx7Nl6I/AAAAAAAAAB8/mCPjnGkedrQ/s72-c/firefox-logo-64x64.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-2254552165361398596</id><published>2007-03-20T10:33:00.000-07:00</published><updated>2008-12-11T22:57:21.939-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>HOWTO: Backspace in Firefox 2</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_UbcBOQWhX2Y/RkZsfx7Nl6I/AAAAAAAAAB8/mCPjnGkedrQ/s1600-h/firefox-logo-64x64.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://1.bp.blogspot.com/_UbcBOQWhX2Y/RkZsfx7Nl6I/AAAAAAAAAB8/mCPjnGkedrQ/s200/firefox-logo-64x64.png" alt="" id="BLOGGER_PHOTO_ID_5063854124258138018" border="0" /&gt;&lt;/a&gt;In default, Firefox's backspace don't work as Return to the last page(Ubuntu).&lt;br /&gt;So, here it is the solution:&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Type &lt;strong&gt;&lt;span&gt;about:config&lt;/span&gt;&lt;/strong&gt; in the address bar, and press enter.&lt;/li&gt;&lt;li&gt;Type &lt;strong&gt;browser.backspace_action&lt;/strong&gt; in the filter bar. One result should come up.&lt;/li&gt;&lt;li&gt;Double click it and change the value to &lt;strong&gt;zero&lt;/strong&gt;.&lt;/li&gt;&lt;li&gt;Close the configuration window, and enjoy!&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-2254552165361398596?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/2254552165361398596/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=2254552165361398596&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/2254552165361398596'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/2254552165361398596'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/03/howto-backspace-in-firefox-2.html' title='HOWTO: Backspace in Firefox 2'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_UbcBOQWhX2Y/RkZsfx7Nl6I/AAAAAAAAAB8/mCPjnGkedrQ/s72-c/firefox-logo-64x64.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-7916352081505446121</id><published>2007-03-20T09:02:00.000-07:00</published><updated>2008-12-11T22:57:21.952-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Local DNS Cache for Faster Browsing</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_UbcBOQWhX2Y/RkZvUh7Nl8I/AAAAAAAAACM/SmJWqfMWE9M/s1600-h/my+pc+is+faster.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 99px; height: 91px;" src="http://4.bp.blogspot.com/_UbcBOQWhX2Y/RkZvUh7Nl8I/AAAAAAAAACM/SmJWqfMWE9M/s200/my+pc+is+faster.jpg" alt="" id="BLOGGER_PHOTO_ID_5063857229519493058" border="0" /&gt;&lt;/a&gt;The package we will be using for caching &lt;span style="font-weight: bold;"&gt;nameserver&lt;/span&gt; lookups is called &lt;span style="font-weight: bold;"&gt;dnsmasq&lt;/span&gt;. So first, install it using:&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;$ sudo apt-get install dnsmasq&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Go &lt;span style="font-weight: bold;"&gt;System -&gt; Administration -&gt; Networking&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Click the &lt;span style="font-weight: bold;"&gt;DNS tab&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Press the &lt;span style="font-weight: bold;"&gt;Add&lt;/span&gt; button and type &lt;span style="font-weight: bold;"&gt;127.0.0.1&lt;/span&gt; and press enter&lt;/li&gt;&lt;li&gt;Click on a different entry so that 127.0.0.1 isn’t highlighted and then click and &lt;span style="font-weight: bold;"&gt;drag&lt;/span&gt; 127.0.0.1 to the top of the list&lt;/li&gt;&lt;li&gt;Press OK and you’re done! :-)&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;BTW, you might consider using &lt;span style="font-weight: bold;"&gt;opendns.com&lt;/span&gt; instead of your local ISP’s DNS.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;Source: &lt;/span&gt;&lt;a href="http://ubuntu.wordpress.com/2006/08/02/local-dns-cache-for-faster-browsing/"&gt;UbuntuBlog&lt;/a&gt;&lt;br /&gt;*check out the source, because this tutorial in incomplete..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-7916352081505446121?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/7916352081505446121/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=7916352081505446121&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/7916352081505446121'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/7916352081505446121'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/03/local-dns-cache-for-faster-browsing.html' title='Local DNS Cache for Faster Browsing'/><author><name>serafim</name><uri>http://www.blogger.com/profile/09378997342964469679</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_8zmHsnACv-c/SiufeJuSooI/AAAAAAAAAAc/EaNB7-qKLNw/S220/306kq4.png'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_UbcBOQWhX2Y/RkZvUh7Nl8I/AAAAAAAAACM/SmJWqfMWE9M/s72-c/my+pc+is+faster.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-2818565495490170405</id><published>2007-03-05T11:20:00.000-08:00</published><updated>2008-12-11T22:57:22.042-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Windows'/><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>Read/Write Ext3 partitions in Windows</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_UbcBOQWhX2Y/RkZuSh7Nl7I/AAAAAAAAACE/2jBXoLaDYhk/s1600-h/barracuda7200-9-500gb.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 100px; height: 92px;" src="http://4.bp.blogspot.com/_UbcBOQWhX2Y/RkZuSh7Nl7I/AAAAAAAAACE/2jBXoLaDYhk/s200/barracuda7200-9-500gb.jpg" alt="" id="BLOGGER_PHOTO_ID_5063856095648126898" border="0" /&gt;&lt;/a&gt;What's unique about this software?&lt;br /&gt;It provides Windows NT4.0/2000/XP/2003 with full access to Linux Ext2/Ext3 volumes (read access and write access). This may be useful if you have installed both Windows and Linux as a dual boot environment on your computer.&lt;br /&gt;The "Ext2 Installable File System for Windows" software is freeware.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;Homepage: &lt;/span&gt;&lt;a href="http://www.fs-driver.org/"&gt;Fs-driver&lt;/a&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;Download: &lt;/span&gt;&lt;a href="http://www.fs-driver.org/download.html"&gt;Fs-driver&lt;/a&gt;&lt;a href="http://www.fs-driver.org/download.html"&gt;/download&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-2818565495490170405?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/2818565495490170405/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=2818565495490170405&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/2818565495490170405'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/2818565495490170405'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/03/fs-driver-ext2-reader-4-windows.html' title='Read/Write Ext3 partitions in Windows'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_UbcBOQWhX2Y/RkZuSh7Nl7I/AAAAAAAAACE/2jBXoLaDYhk/s72-c/barracuda7200-9-500gb.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-8705348087745446961</id><published>2007-03-05T11:15:00.000-08:00</published><updated>2008-12-11T22:57:22.265-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Songbird</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_UbcBOQWhX2Y/RkZqih7Nl5I/AAAAAAAAAB0/RYoKTb9JEb0/s1600-h/sexy_features.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://4.bp.blogspot.com/_UbcBOQWhX2Y/RkZqih7Nl5I/AAAAAAAAAB0/RYoKTb9JEb0/s200/sexy_features.png" alt="" id="BLOGGER_PHOTO_ID_5063851972479522706" border="0" /&gt;&lt;/a&gt;&lt;span style="font-weight: bold;"&gt;Songbird™ &lt;/span&gt;is a desktop Web player, a digital jukebox and Web browser mash-up. Like Winamp, it supports extensions and skins feathers. Like Firefox®, it is built from Mozilla®, cross-platform and open source.&lt;br /&gt;&lt;br /&gt;Now SongBird is in &lt;a href="http://www.getautomatix.com/"&gt;Automatix&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;Hompage: &lt;/span&gt;&lt;a href="http://songbirdnest.com/"&gt;SongBird&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-8705348087745446961?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/8705348087745446961/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=8705348087745446961&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/8705348087745446961'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/8705348087745446961'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/03/songbird.html' title='Songbird'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_UbcBOQWhX2Y/RkZqih7Nl5I/AAAAAAAAAB0/RYoKTb9JEb0/s72-c/sexy_features.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-4357771099500647792</id><published>2007-03-05T07:50:00.000-08:00</published><updated>2008-06-18T13:19:01.749-07:00</updated><title type='text'>Welcome/ Hi</title><content type='html'>This blog is a project dedicated to Linux. Here you can find lots of tutorials.&lt;br /&gt;&lt;br /&gt;Blog authors:&lt;br /&gt;&lt;a style="color: rgb(52, 176, 255);" href="http://www.blogger.com/profile/08989805338150323100"&gt;uterrorista&lt;/a&gt; &amp;amp; &lt;a style="color: rgb(52, 176, 255);" href="http://www.blogger.com/profile/09378997342964469679"&gt;serafimsaudade&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Check our other blogs:&lt;a style="color: rgb(52, 176, 255);" href="http://www.meplace.net/"&gt;&lt;br /&gt;&lt;/a&gt;&lt;ul&gt;&lt;li&gt;&lt;a style="color: rgb(52, 176, 255);" href="http://www.meplace.net/"&gt;meplace.net&lt;/a&gt; &lt;span style="font-size:85%;"&gt;(uterrorista)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="htt://www.modprobe.pt.vu"&gt;modprobe.pt.vu&lt;/a&gt; &lt;span style="font-size:85%;"&gt;(serafim)&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;Contact&lt;br /&gt;&lt;script type="text/javascript" src="http://widgetserver.com/syndication/subscriber/InsertWidget.js?appId=8ddc4c8e-6d7f-4972-990a-7c8b027b05c5"&gt;&lt;/script&gt;&lt;noscript&gt;Get the &lt;a href="http://www.widgetbox.com/widget/contactify-widget-beta"&gt;Contactify Widget (beta)&lt;/a&gt; widget and many other &lt;a href="http://www.widgetbox.com/galleryhome/"&gt;great free widgets&lt;/a&gt; at &lt;a href="http://www.widgetbox.com"&gt;Widgetbox&lt;/a&gt;!&lt;/noscript&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3731923312219132020-4357771099500647792?l=linuxinside.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxinside.blogspot.com/feeds/4357771099500647792/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3731923312219132020&amp;postID=4357771099500647792&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/4357771099500647792'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3731923312219132020/posts/default/4357771099500647792'/><link rel='alternate' type='text/html' href='http://linuxinside.blogspot.com/2007/03/muahhhh.html' title='Welcome/ Hi'/><author><name>João Gonçalves</name><uri>https://profiles.google.com/118084841349719821052</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-3mj5PJAKa-k/AAAAAAAAAAI/AAAAAAAAAAA/33Scdicdopw/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry></feed>
