<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>D&#039;oh!</title>
	<atom:link href="http://pabloseminario.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pabloseminario.com</link>
	<description>pabluk&#039;s blog</description>
	<lastBuildDate>Wed, 27 Mar 2013 20:33:54 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>Running Scrapy on Amazon EC2</title>
		<link>http://pabloseminario.com/2013/03/26/running-scrapy-on-amazon-ec2/</link>
		<comments>http://pabloseminario.com/2013/03/26/running-scrapy-on-amazon-ec2/#comments</comments>
		<pubDate>Tue, 26 Mar 2013 22:40:50 +0000</pubDate>
		<dc:creator>Pablo</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[scrapy]]></category>

		<guid isPermaLink="false">http://pabloseminario.com/?p=588</guid>
		<description><![CDATA[Sometimes can be useful to crawl sites with Scrapy using temporary resources on the cloud, and Amazon EC2 is perfect for this task. You can launch an Ubuntu OS instance and schedule your spiders using the Scrapyd API. With boto, a python interface to Amazon Web Services, you can launch instances and install the scrapy&#8230;]]></description>
				<content:encoded><![CDATA[<p>Sometimes can be useful to crawl sites with <a href="http://scrapy.org/" target="_blank">Scrapy</a> using temporary resources on the cloud, and Amazon EC2 is perfect for this task. You can launch an Ubuntu OS instance and schedule your spiders using the Scrapyd API.<br />
With <a href="http://boto.readthedocs.org/" target="_blank">boto</a>, a python interface to Amazon Web Services, you can launch instances and install the scrapy daemon using the user data feature to run a script on boot.</p>
<p>First, you need an AWS account with your access keys, a EC2 security group accepting TCP connections on port 6800 and a key pair for the selected region. After that you must choose an Ubuntu EC2 image, here you can find a list of <a href="http://cloud-images.ubuntu.com/locator/ec2/" target="_blank">Ubuntu AMIs</a>.</p>
<p>We need to create an user data script with the following content</p>
<pre class="brush:bash; light: true;">#!/bin/bash
# filename: user_data-scrapyd.sh

# Add Scrapy repositories and key
echo "deb http://archive.scrapy.org/ubuntu precise main" > /etc/apt/sources.list.d/scrapy.list
curl -s http://archive.scrapy.org/ubuntu/archive.key | apt-key add -

# Install debian package
apt-get update &#038;&#038; apt-get -y install scrapyd-0.16

# Restart scrapyd
service scrapyd restart
</pre>
<p>finally we can launch an instance using boto on the python console</p>
<pre class="brush:python; light: true;">$ python
>>> with open('user_data-scrapyd.sh') as f:
...  user_data = f.read()
... 
>>>
>>> import boto.ec2
>>> conn = boto.ec2.connect_to_region("us-east-1",
...    aws_access_key_id='my_aws_access_key',
...    aws_secret_access_key='my_aws_secret_key')
>>> conn.run_instances('ami-da0d9eb3', user_data=user_data, key_name='main', instance_type='t1.micro', security_groups=['default'])
Reservation:r-89a2aef3
>>> reservations = conn.get_all_instances()
>>> reservations
[Reservation:r-89a2aef3]
>>> instances = reservations[0].instances
>>> instances
[Instance:i-d4a2c1b8]
>>> i = instances[0]
>>> i.state
u'pending'
>>> i.update()
u'running'
>>> u'http://%s:6800/' % i.public_dns_name
u'http://ec2-54-224-86-173.compute-1.amazonaws.com:6800/'
</pre>
<p>and pointing your browser to this URL you must see the Scrapyd monitoring page.<br />
Now you can <a href="http://doc.scrapy.org/en/latest/topics/scrapyd.html#scheduling-a-spider-run" target="_blank">schedule a spider run</a> just by using</p>
<pre class="brush:bash; light: true;">
$ curl http://ec2-54-224-86-173.compute-1.amazonaws.com:6800/schedule.json -d project=myproject -d spider=spider1
{"status": "ok", "jobid": "70d1b1a6d6f111e0be5c001e648c5a52"}
</pre>
<p>You can find a copy of these scripts on Github <a href="https://github.com/pabluk/ec2-scrapyd" target="_blank">ec2-scrapyd</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pabloseminario.com/2013/03/26/running-scrapy-on-amazon-ec2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubatar and the Ubuntu App Showdown</title>
		<link>http://pabloseminario.com/2012/07/08/ubatar-and-the-ubuntu-app-showdown/</link>
		<comments>http://pabloseminario.com/2012/07/08/ubatar-and-the-ubuntu-app-showdown/#comments</comments>
		<pubDate>Sun, 08 Jul 2012 14:15:50 +0000</pubDate>
		<dc:creator>Pablo</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[ubatar]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://pabloseminario.com/?p=564</guid>
		<description><![CDATA[The last 3 weeks I was working on developing an application to participate in a contest called Ubuntu App Showdown. My application is called Ubatar and its main objective is to provide a solution to this idea. Here you can see some videos of the latest version of Ubatar fulfilling its purpose. During these 3&#8230;]]></description>
				<content:encoded><![CDATA[<p>The last 3 weeks I was working on developing an application to participate in a contest called <a title="Ubuntu App Showdown" href="http://developer.ubuntu.com/showdown/" target="_blank">Ubuntu App Showdown</a>.<br />
My application is called <a title="Ubatar" href="https://launchpad.net/ubatar/" target="_blank">Ubatar</a> and its main objective is to provide a solution to this <a title="Ubuntu Brainstorm" href="http://brainstorm.ubuntu.com/idea/25833/" target="_blank">idea</a>. Here you can see some videos of the latest version of Ubatar fulfilling its purpose.</p>
<p><iframe src="http://www.youtube.com/embed/videoseries?list=PL66E4F18CC99EB82C&amp;hl=en_US" frameborder="0" width="560" height="315"></iframe></p>
<p>During these 3 weeks I learned many things, reading a lot of source code, looking for <a title="Nullege" href="http://nullege.com/" target="_blank">examples</a> and <a title="Ask Ubuntu" href="http://askubuntu.com/questions/tagged/application-development" target="_blank">discussing</a> with other developers.<br />
I can only say that I really enjoyed and was an incredible experience.<br />
Thanks to all the Ubuntu development team and the community at large.</p>
<p>And this is not the end of the project, there are still many things to improve, if you want to help please contact me via this <a title="Contact Form" href="https://launchpad.net/%7Epabluk/+contactuser" target="_blank">form</a>. Also any questions or suggestions can be sent to <a title="Questions for Ubatar" href="https://answers.launchpad.net/ubatar" target="_blank">Questions for Ubatar</a> in Launchpad.</p>
]]></content:encoded>
			<wfw:commentRss>http://pabloseminario.com/2012/07/08/ubatar-and-the-ubuntu-app-showdown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>World IPv6 day</title>
		<link>http://pabloseminario.com/2012/06/06/world-ipv6-day/</link>
		<comments>http://pabloseminario.com/2012/06/06/world-ipv6-day/#comments</comments>
		<pubDate>Wed, 06 Jun 2012 20:53:28 +0000</pubDate>
		<dc:creator>Pablo</dc:creator>
				<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://pabloseminario.com/?p=558</guid>
		<description><![CDATA[To celebrate the world IPv6 day I decided to activate IPv6 on this blog. Now you can visit my site with native IPv6 connectivity. If you want to know more about IPv6 you can start reading this overview]]></description>
				<content:encoded><![CDATA[<p>To celebrate the <a title="World IPv6 Launch" href="http://www.worldipv6launch.org/" target="_blank">world IPv6 day</a> I decided to activate IPv6 on this blog.</p>
<p>Now you can visit my site with native IPv6 connectivity.</p>
<p>If you want to know more about IPv6 you can start reading this <a title="IPv6 Google" href="http://www.google.com/intl/en/ipv6/" target="_blank">overview</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pabloseminario.com/2012/06/06/world-ipv6-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Solr on Debian 6.0</title>
		<link>http://pabloseminario.com/2011/02/22/installing-solr-on-debian-6-0/</link>
		<comments>http://pabloseminario.com/2011/02/22/installing-solr-on-debian-6-0/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 22:23:54 +0000</pubDate>
		<dc:creator>Pablo</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[tomcat]]></category>

		<guid isPermaLink="false">http://pabloseminario.com/?p=478</guid>
		<description><![CDATA[Recently I&#8217;ve been working on a Django project that uses the Haystack search API and the Solr search engine to perform full text searching on indexed data. This project was initially deployed on a Debian 5.0 (Lenny) server with some issues with Tomcat, but using the latest stable release of Debian (code named Squeeze) install&#8230;]]></description>
				<content:encoded><![CDATA[<p>Recently I&#8217;ve been working on a Django project that uses the <a title="Haystack - Search for Django" href="http://haystacksearch.org/" target="_blank">Haystack</a> search API and the <a title="Apache Solr" href="http://lucene.apache.org/solr/" target="_blank">Solr</a> search engine to perform full text searching on indexed data.<br />
This project was initially deployed on a Debian 5.0 (Lenny) server with some issues with Tomcat, but using the latest stable release of Debian (code named <a title="Debian Squeeze" href="http://www.debian.org/releases/squeeze/" target="_blank">Squeeze</a>) install Tomcat 6 and Solr is very easy.<br />
Just run the following</p>
<pre class="brush:bash; light: true;">apt-get install tomcat6 tomcat6-admin</pre>
<p>download and install the latest version of <a title="Solr download mirrors" href="http://www.apache.org/dyn/closer.cgi/lucene/solr/" target="_blank">Solr</a></p>
<pre class="brush:bash; light: true;">wget http://apache.cict.fr//lucene/solr/1.4.1/apache-solr-1.4.1.tgz
tar xvfz apache-solr-1.4.1.tgz
cd apache-solr-1.4.1
cp dist/apache-solr-1.4.1.war /var/lib/tomcat6/webapps/solr.war
cp -fr example/solr /var/lib/tomcat6/
chown -R tomcat6:tomcat6 /var/lib/tomcat6/solr</pre>
<p>after install Solr you need to restart the tomcat6 service</p>
<pre class="brush:bash; light: true;">/etc/init.d/tomcat6 restart</pre>
<p>And voilà, Solr is running. Point your browser to http://localhost:8080/solr/admin this should show the Solr Admin interface.</p>
]]></content:encoded>
			<wfw:commentRss>http://pabloseminario.com/2011/02/22/installing-solr-on-debian-6-0/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Screenkey 0.2 released!</title>
		<link>http://pabloseminario.com/2010/06/16/screenkey-0-2-released/</link>
		<comments>http://pabloseminario.com/2010/06/16/screenkey-0-2-released/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 09:21:34 +0000</pubDate>
		<dc:creator>Pablo</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[screenkey]]></category>

		<guid isPermaLink="false">http://pabloseminario.com.ar/?p=431</guid>
		<description><![CDATA[A few days ago I released the first version of Screenkey which was reviewed positively by OMG! Ubuntu!, Korben and Linux und Ich. &#160; &#160; &#160; Now, I&#8217;m happy to announce the release of Screenkey 0.2. This release includes A preferences dialog to adjust size and position Two keyboard modes (normal and raw) Command line options (see&#8230;]]></description>
				<content:encoded><![CDATA[<div dir="ltr">A few days ago I released the first version of <a href="http://pabloseminario.com.ar/projects/screenkey/" target="_blank">Screenkey</a> which was reviewed positively by <a href="http://www.omgubuntu.co.uk/2010/06/screenkey-desktop-recording-tool.html" target="_blank">OMG! Ubuntu!</a>, <a href="http://www.korben.info/screenkey-le-logiciel-de-screencast-pour-ubuntu-qui-affiche-les-touches-tapees-au-clavier.html" target="_blank">Korben</a> and <a href="http://linuxundich.de/de/ubuntu/screenkey-eingaben-screencasts-visualisieren/" target="_blank">Linux und Ich</a>.</div>
<div dir="ltr">&nbsp;</div>
<div dir="ltr">&nbsp;</div>
<div dir="ltr">&nbsp;</div>
<div dir="ltr">Now, I&#8217;m happy to announce the release of Screenkey 0.2. This release includes</div>
<ul>
<li>A preferences dialog to adjust size and position</li>
<li>Two keyboard modes (normal and raw)</li>
<li>Command line options (see &#8211;help)</li>
<li>Some <a href="https://bugs.launchpad.net/screenkey/+bugs?field.status:list=FIXRELEASED" target="_blank">bug fixes</a></li>
</ul>
<p>The next release will include support for Launchpad translations, save session to file and more keyboard modes (specific vim and emacs key bindings).</p>
<p>Thanks to <a href="http://www.sparsebrain.com/" target="_blank">Ivan Makfinsky</a> for Fedora packaging and thanks to everyone who reported problems and made suggestions for improvement!</p>
]]></content:encoded>
			<wfw:commentRss>http://pabloseminario.com/2010/06/16/screenkey-0-2-released/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Le greffon OpenSubtitles de Totem</title>
		<link>http://pabloseminario.com/2010/05/25/le-greffon-opensubtitles-de-totem/</link>
		<comments>http://pabloseminario.com/2010/05/25/le-greffon-opensubtitles-de-totem/#comments</comments>
		<pubDate>Tue, 25 May 2010 20:18:53 +0000</pubDate>
		<dc:creator>Pablo</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://pabloseminario.com.ar/?p=336</guid>
		<description><![CDATA[Si vous n&#8217;avez pas encore mis à jour votre système Ubuntu vers la dernière version 10.04 « Lucid Lynx » et si vous utilisez le greffon de téléchargement de sous-titres du lecteur vidéo Totem, vous remarquerez que le greffon ne marche plus. Cela est dû à un changement de l&#8217;API XML-RPC du site opensubtitles.org. Mais&#8230;]]></description>
				<content:encoded><![CDATA[<p>Si vous n&#8217;avez pas encore mis à jour votre système Ubuntu vers la dernière version 10.04 « Lucid Lynx » et si vous utilisez le greffon de téléchargement de sous-titres du lecteur vidéo Totem, vous remarquerez que le greffon ne marche plus. Cela est dû à un changement de l&#8217;<a href="http://trac.opensubtitles.org/projects/opensubtitles/wiki/XMLRPC" target="_blank">API XML-RPC</a> du site <a href="http://www.opensubtitles.org" target="_blank">opensubtitles.org</a>.</p>
<p>Mais bon pour le corriger, sans mettre à jour votre système Ubuntu 9.10, vous pouvez ouvrir un terminal et lancez la commande suivante</p>
<pre class="brush:bash; light: true;">cd /usr/lib/totem/plugins/opensubtitles/
sudo sed -i 's/www/api/' opensubtitles.py</pre>
<p>Ainsi, vous pouvez continuer à télécharger vos sous-titres sans problème.</p>
]]></content:encoded>
			<wfw:commentRss>http://pabloseminario.com/2010/05/25/le-greffon-opensubtitles-de-totem/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Another Counter&#8230; and J2ME</title>
		<link>http://pabloseminario.com/2010/04/08/another-counter-and-j2me/</link>
		<comments>http://pabloseminario.com/2010/04/08/another-counter-and-j2me/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 21:28:18 +0000</pubDate>
		<dc:creator>Pablo</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[J2ME]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://pabloseminario.com.ar/?p=271</guid>
		<description><![CDATA[Just to try Java Wireless Toolkit, also know as J2ME, on my Samsung C3050 mobile phone I wrote a silly and simple application called Another Counter, wich as its name says is used to count things, like a tally counter, then you can count people, events, measure traffic, etc. A version of the toolkit for&#8230;]]></description>
				<content:encoded><![CDATA[<p>Just to try Java Wireless Toolkit, also know as J2ME, on my Samsung C3050 mobile phone I wrote a silly and simple application called Another Counter, wich as its name says is used to count things, like a tally counter, then you can count people, events, measure traffic, etc.</p>
<p>A version of the toolkit for Linux can be downloaded from <a title="J2ME Download page" href="http://java.sun.com/products/sjwtoolkit/download.html" target="_blank">here</a>, it includes build tools, utilities, examples,  and a device emulator. With some knowledge of Java programming and reading the <a title="J2ME API" href="http://java.sun.com/javame/reference/apis/jsr118/" target="_self">API</a> is easy to write small applications like this.</p>
<p>To install and run the application on the phone you have to download these files: <a title="Another Counter JAD file" href="http://github.com/downloads/pabluk/AnotherCounter/AnotherCounter.jad">AnotherCounter.jad</a> and <a title="Another Counter JAR file" href="http://github.com/downloads/pabluk/AnotherCounter/AnotherCounter.jar">AnotherCounter.jar</a>.</p>
<p>The source code is licensed under GPL and hosted on <a title="Another Counter on Github" href="http://github.com/pabluk/AnotherCounter" target="_blank">GitHub</a>.</p>

<a href='http://pabloseminario.com/2010/04/08/another-counter-and-j2me/dscn8143/' title='Another Counter in action'><img width="150" height="150" src="http://pabloseminario.com/wp-content/uploads/2010/03/DSCN81431-150x150.jpg" class="attachment-thumbnail" alt="Another Counter in action" /></a>
<a href='http://pabloseminario.com/2010/04/08/another-counter-and-j2me/screenshot-6/' title='Java Wireless Toolkit for Linux'><img width="150" height="150" src="http://pabloseminario.com/wp-content/uploads/2010/03/Screenshot11-150x150.jpg" class="attachment-thumbnail" alt="Java Wireless Toolkit for Linux" /></a>
<a href='http://pabloseminario.com/2010/04/08/another-counter-and-j2me/dscn8135/' title='Samsung C3050'><img width="150" height="150" src="http://pabloseminario.com/wp-content/uploads/2010/03/DSCN81351-150x150.jpg" class="attachment-thumbnail" alt="Samsung C3050" /></a>
<a href='http://pabloseminario.com/2010/04/08/another-counter-and-j2me/dscn8136/' title='Samsung C3050 keyboard'><img width="150" height="150" src="http://pabloseminario.com/wp-content/uploads/2010/03/DSCN81361-150x150.jpg" class="attachment-thumbnail" alt="Samsung C3050 keyboard" /></a>

]]></content:encoded>
			<wfw:commentRss>http://pabloseminario.com/2010/04/08/another-counter-and-j2me/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Metacity Window Buttons</title>
		<link>http://pabloseminario.com/2010/03/10/metacity-window-buttons/</link>
		<comments>http://pabloseminario.com/2010/03/10/metacity-window-buttons/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 23:24:58 +0000</pubDate>
		<dc:creator>Pablo</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://pabloseminario.com.ar/?p=247</guid>
		<description><![CDATA[Una simple herramienta para configurar los botones de Metacity (el window manager del escritorio GNOME). Si estas usando Ubuntu Karmic Koala y querés configurar los botones para que se vean como en la nueva versión Lucid Lynx. O si usas Lucid Lynx y querés volver la configuración al estilo de Karmic Koala, lo podés hacer&#8230;]]></description>
				<content:encoded><![CDATA[<p>Una simple herramienta para configurar los botones de Metacity (el window manager del escritorio GNOME).<br />
Si estas usando Ubuntu Karmic Koala y querés configurar los botones para que se vean como en la nueva versión Lucid Lynx. O si usas Lucid Lynx y querés volver la configuración al estilo de Karmic Koala, lo podés hacer sin tener que usar el editor de configuraciones de GNOME (gconf-editor).<br />
Me parece muy bueno el cambio en los botones de las ventanas para la nueva versión de Ubuntu, para hacerlo diferente, único. Costará un poco adaptarse pero es como todo, por eso yo ya cambié el estilo de los botones en mi Karmic <img src='http://pabloseminario.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> . De todas formas si a alguien no le gusta lo puede cambiar a su gusto, incluso si lo preferís, podés sacar todos los botones de las ventanas <img src='http://pabloseminario.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> <br />

<a href='http://pabloseminario.com/2010/03/10/metacity-window-buttons/pantallazo/' title='Pantallazo'><img width="150" height="150" src="http://pabloseminario.com/wp-content/uploads/2010/03/Pantallazo1-150x150.jpg" class="attachment-thumbnail" alt="Pantallazo" /></a>
<a href='http://pabloseminario.com/2010/03/10/metacity-window-buttons/screenshot-3-2/' title='Screenshot-3'><img width="150" height="150" src="http://pabloseminario.com/wp-content/uploads/2010/03/Screenshot-31-150x150.jpg" class="attachment-thumbnail" alt="Screenshot-3" /></a>
<a href='http://pabloseminario.com/2010/03/10/metacity-window-buttons/screenshot-2-2/' title='Screenshot-2'><img width="150" height="150" src="http://pabloseminario.com/wp-content/uploads/2010/03/Screenshot-21-150x150.jpg" class="attachment-thumbnail" alt="Screenshot-2" /></a>
<a href='http://pabloseminario.com/2010/03/10/metacity-window-buttons/screenshot-1-2/' title='Screenshot-1'><img width="150" height="150" src="http://pabloseminario.com/wp-content/uploads/2010/03/Screenshot-11-150x150.jpg" class="attachment-thumbnail" alt="Screenshot-1" /></a>
<a href='http://pabloseminario.com/2010/03/10/metacity-window-buttons/screenshot-5/' title='Screenshot'><img width="150" height="150" src="http://pabloseminario.com/wp-content/uploads/2010/03/Screenshot2-150x150.jpg" class="attachment-thumbnail" alt="Screenshot" /></a>
<br />
Este es el enlace a la página de <a href="https://launchpad.net/mwbuttons/+download">descarga</a>.<br />
Y estos son los pasos para descargarlo y ejectuarlo desde una terminal</p>
<pre class="brush:bash; light: true; auto-links: false;">wget http://launchpad.net/mwbuttons/trunk/v0.2/+download/mwbuttons
chmod +x
./mwbuttons</pre>
<p>La aplicación esta hosteada en <a href="https://launchpad.net/mwbuttons">Launchpad</a> y la idea inicial fue solo para probar el módulo gconf de Python y el plugin de Launchpad para Bazaar.</p>
]]></content:encoded>
			<wfw:commentRss>http://pabloseminario.com/2010/03/10/metacity-window-buttons/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Pimp your GNOME Desktop</title>
		<link>http://pabloseminario.com/2010/01/19/pimp-your-gnome-desktop/</link>
		<comments>http://pabloseminario.com/2010/01/19/pimp-your-gnome-desktop/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 16:45:56 +0000</pubDate>
		<dc:creator>Pablo</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.pabloseminario.com.ar/?p=115</guid>
		<description><![CDATA[The real title of this post should have been Pimp your Metacity, but not everyone knows that Metacity is the official window manager of GNOME. This is just a modified version of the default theme in Ubuntu Karmic Koala. The main difference is that the minimize, maximize and close window bottons has been removed. They&#8230;]]></description>
				<content:encoded><![CDATA[<p>The real title of this post should have been Pimp your Metacity, but not everyone knows that Metacity is the official window manager of GNOME.</p>
<p>This is just a modified version of the default theme in Ubuntu Karmic Koala. The main difference is that the minimize, maximize and close window bottons has been removed. They are only activated by mouseover.</p>
<p>It is useful for users who already know the position of the window buttons in GNOME and all the time use keyboard shortcuts to manage the windows. And especially useful on small screens like netbooks where there is not enough space avaliable to display redundant things.</p>
<p>The Human Simple theme can be downloaded from GNOME-Look <a title="Human Simple theme" href="http://gnome-look.org/content/show.php?content=118052">http://gnome-look.org/content/show.php?content=118052</a></p>

<a href='http://pabloseminario.com/2010/01/19/pimp-your-gnome-desktop/screenshot/' title='Screenshot'><img width="150" height="150" src="http://pabloseminario.com/wp-content/uploads/2010/01/Screenshot1-150x150.jpg" class="attachment-thumbnail" alt="Screenshot" /></a>
<a href='http://pabloseminario.com/2010/01/19/pimp-your-gnome-desktop/screenshot-2/' title='Screenshot-2'><img width="150" height="150" src="http://pabloseminario.com/wp-content/uploads/2010/01/Screenshot-21-150x150.jpg" class="attachment-thumbnail" alt="Screenshot-2" /></a>
<a href='http://pabloseminario.com/2010/01/19/pimp-your-gnome-desktop/screenshot-1/' title='Screenshot-1'><img width="150" height="150" src="http://pabloseminario.com/wp-content/uploads/2010/01/Screenshot-11-150x150.jpg" class="attachment-thumbnail" alt="Screenshot-1" /></a>
<a href='http://pabloseminario.com/2010/01/19/pimp-your-gnome-desktop/screenshot-3/' title='Screenshot-3'><img width="150" height="150" src="http://pabloseminario.com/wp-content/uploads/2010/01/Screenshot-31-150x150.jpg" class="attachment-thumbnail" alt="Screenshot-3" /></a>
<a href='http://pabloseminario.com/2010/01/19/pimp-your-gnome-desktop/screenshot-4/' title='Screenshot-4'><img width="150" height="150" src="http://pabloseminario.com/wp-content/uploads/2010/01/Screenshot-41-150x150.jpg" class="attachment-thumbnail" alt="Screenshot-4" /></a>

]]></content:encoded>
			<wfw:commentRss>http://pabloseminario.com/2010/01/19/pimp-your-gnome-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ext4 support in Ubuntu Intrepid 8.10</title>
		<link>http://pabloseminario.com/2009/07/01/ext4-support-in-ubuntu-intrepid-8-10/</link>
		<comments>http://pabloseminario.com/2009/07/01/ext4-support-in-ubuntu-intrepid-8-10/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 01:34:00 +0000</pubDate>
		<dc:creator>Pablo</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[filesystem]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.pabloseminario.com.ar/?p=46</guid>
		<description><![CDATA[This is just a simple tip to use ext4 filesystems in Ubuntu Intrepid Ibex 8.10. In Ubuntu Jaunty ext4 filesystems is fully supported but in Intrepid was in developing. To use it we must load the module ext4dev sudo modprobe ext4dev to check the filesystems supported by the kernel we can do cat /proc/filesystems there&#8230;]]></description>
				<content:encoded><![CDATA[<p>This is just a simple tip to use ext4 filesystems in Ubuntu Intrepid Ibex 8.10.<br />
In Ubuntu Jaunty ext4 filesystems is fully supported but in Intrepid was in developing.<br />
To use it we must load the module <span style="font-family: monospace;">ext4dev</span></p>
<pre class="brush:bash; light: true;">sudo modprobe ext4dev</pre>
<p>to check the filesystems supported by the kernel we can do</p>
<pre class="brush:bash; light: true;">cat /proc/filesystems</pre>
<p>there should be a line with <span style="font-family: monospace;">ext4dev</span>.<br />
Now, if we try to mount a formatted partition as ext4, will see that we can not do</p>
<pre class="brush:bash; light: true;">sudo dmesg | tail</pre>
<p>shows a line that says</p>
<pre class="brush:bash; light: true;">EXT4-fs: sda2: not marked OK to use with test code.</pre>
<p>to solve it we need to enable <span style="font-family: monospace;">test_fs</span>, an extended option for ext4 partitions</p>
<pre class="brush:bash; light: true;">sudo tune2fs -E test_fs /dev/sda1</pre>
<p>Now, we can mount it without problems</p>
<pre class="brush:bash; light: true;">sudo mount -t ext4dev /dev/sda1 /mnt/disk</pre>
<p>That&#8217;s all folks!</p>
<p><span style="font-style: italic;">Note 1: replace sda1 by the appropiate device<br />
Note 2: sorry for my english <img src='http://pabloseminario.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://pabloseminario.com/2009/07/01/ext4-support-in-ubuntu-intrepid-8-10/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
