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

<channel>
	<title>Gabriel Saldaña&#039;s blog &#187; Emacs</title>
	<atom:link href="http://blog.gabrielsaldana.org/category/linux/emacs/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.gabrielsaldana.org</link>
	<description>About emacs, web development, free software and other lifestyle topics</description>
	<lastBuildDate>Mon, 09 Jan 2012 13:11:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/mx/</creativeCommons:license>
		<item>
		<title>Easy CSS editing with Emacs</title>
		<link>http://blog.gabrielsaldana.org/easy-css-editing-with-emacs/</link>
		<comments>http://blog.gabrielsaldana.org/easy-css-editing-with-emacs/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 00:18:00 +0000</pubDate>
		<dc:creator>Gabriel Saldaña</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[GNU/Linux Free Software & Open Source]]></category>
		<category><![CDATA[Programming & Web Development]]></category>
		<category><![CDATA[elisp]]></category>
		<category><![CDATA[gnu]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[webdevelopment]]></category>

		<guid isPermaLink="false">http://blog.gabrielsaldana.org/?p=994</guid>
		<description><![CDATA[Editing CSS in Emacs is very easy since the standard CSS mode comes included by default. But developer Julien Danjou created this nice minor mode called rainbow-mode which will display the color of the code as the background of the &#8230; <a href="http://blog.gabrielsaldana.org/easy-css-editing-with-emacs/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://blog.gabrielsaldana.org/animate-your-webpage-fast-and-easy-with-facebook-animation-library/' rel='bookmark' title='Animate your webpage fast and easy with Facebook Animation Library'>Animate your webpage fast and easy with Facebook Animation Library</a></li>
<li><a href='http://blog.gabrielsaldana.org/easy-php-code-test-development-with-simpletest-unit-testing-framework/' rel='bookmark' title='Easy PHP code test development with SimpleTest unit testing framework'>Easy PHP code test development with SimpleTest unit testing framework</a></li>
<li><a href='http://blog.gabrielsaldana.org/php-syntax-check-as-you-type-with-emacs/' rel='bookmark' title='PHP syntax check as you type with Emacs'>PHP syntax check as you type with Emacs</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.gabrielsaldana.org/wp-content/uploads/2012/01/rainbow-mode.png" alt="rainbow-mode" title="rainbow-mode" width="364" height="308" class="alignnone size-full wp-image-995" /></p>

<p>Editing CSS in Emacs is very easy since the standard CSS mode comes included by default. But developer Julien Danjou created this nice <a href="http://julien.danjou.info/software/rainbow-mode" target="_blank">minor mode called rainbow-mode</a> which will display the color of the code as the background of the code&#8217;s text. It is very useful to immediately see the colors right there in the style sheet instead of trying to remember each code and then test in the browser window. </p>

<p>One of the problems I had was when opening any CSS file, it would open by default css-mode, but I had to manually load rainbow-mode every time. The elisp function <em>auto-mode-alist</em> is used to detect a file type by its name and running a function associated with it, generally the function to enable a major mode to edit that type of file. For minor modes I couldn&#8217;t find anything that would allow me to launch them without inhibiting the mayor mode&#8217;s startup. </p>

<p>So since <em>auto-mode-alist</em> takes a regular expression for the file type and only one function as its arguments, I wrote a function that will run both and use that as the second argument to execute.</p>

<p> 
<code><pre>
;; CSS and Rainbow modes 
(defun all-css-modes() (css-mode) (rainbow-mode)) 

;; Load both major and minor modes in one call based on file type 
(add-to-list 'auto-mode-alist '("\\.css$" . all-css-modes)) 
</pre></code>
</p>

<p>Hope you find it useful and you like the combination of css-mode and rainbow-mode as much as I do.</p>
<p><a class="a2a_button_identi_ca" href="http://www.addtoany.com/add_to/identi_ca?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Feasy-css-editing-with-emacs%2F&amp;linkname=Easy%20CSS%20editing%20with%20Emacs" title="Identi.ca" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/identica.png" width="16" height="16" alt="Identi.ca"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Feasy-css-editing-with-emacs%2F&amp;linkname=Easy%20CSS%20editing%20with%20Emacs" title="Twitter" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Feasy-css-editing-with-emacs%2F&amp;linkname=Easy%20CSS%20editing%20with%20Emacs" title="Facebook" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.gabrielsaldana.org%2Feasy-css-editing-with-emacs%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.gabrielsaldana.org%2Feasy-css-editing-with-emacs%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_google_reader" href="http://www.addtoany.com/add_to/google_reader?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Feasy-css-editing-with-emacs%2F&amp;linkname=Easy%20CSS%20editing%20with%20Emacs" title="Google Reader" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/reader.png" width="16" height="16" alt="Google Reader"/></a><a class="a2a_button_reddit" href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Feasy-css-editing-with-emacs%2F&amp;linkname=Easy%20CSS%20editing%20with%20Emacs" title="Reddit" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.gabrielsaldana.org%2Feasy-css-editing-with-emacs%2F&amp;title=Easy%20CSS%20editing%20with%20Emacs" id="wpa2a_2">Share/Bookmark</a></p><p>Related posts:<ol>
<li><a href='http://blog.gabrielsaldana.org/animate-your-webpage-fast-and-easy-with-facebook-animation-library/' rel='bookmark' title='Animate your webpage fast and easy with Facebook Animation Library'>Animate your webpage fast and easy with Facebook Animation Library</a></li>
<li><a href='http://blog.gabrielsaldana.org/easy-php-code-test-development-with-simpletest-unit-testing-framework/' rel='bookmark' title='Easy PHP code test development with SimpleTest unit testing framework'>Easy PHP code test development with SimpleTest unit testing framework</a></li>
<li><a href='http://blog.gabrielsaldana.org/php-syntax-check-as-you-type-with-emacs/' rel='bookmark' title='PHP syntax check as you type with Emacs'>PHP syntax check as you type with Emacs</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.gabrielsaldana.org/easy-css-editing-with-emacs/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/mx/</creativeCommons:license>
	</item>
		<item>
		<title>Identica-mode 1.2 with OAuth support released</title>
		<link>http://blog.gabrielsaldana.org/identica-mode-1-2-with-oauth-support-released/</link>
		<comments>http://blog.gabrielsaldana.org/identica-mode-1-2-with-oauth-support-released/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 22:06:00 +0000</pubDate>
		<dc:creator>Gabriel Saldaña</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[GNU/Linux Free Software & Open Source]]></category>
		<category><![CDATA[elisp]]></category>
		<category><![CDATA[identica]]></category>
		<category><![CDATA[microblogging]]></category>
		<category><![CDATA[oauth]]></category>
		<category><![CDATA[statusnet]]></category>

		<guid isPermaLink="false">http://blog.gabrielsaldana.org/?p=977</guid>
		<description><![CDATA[The time has come to set up a new stable release for Emacs Identica-mode microblogging client. It&#8217;s been almost a year since last release, but many people have been following the project&#8217;s progress through the git repository updates. Download Download &#8230; <a href="http://blog.gabrielsaldana.org/identica-mode-1-2-with-oauth-support-released/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://blog.gabrielsaldana.org/identica-mode-v03-released/' rel='bookmark' title='Identica-mode v0.3 released'>Identica-mode v0.3 released</a></li>
<li><a href='http://blog.gabrielsaldana.org/identica-mode-for-emacs-update-support-for-any-laconica-server/' rel='bookmark' title='Identica mode for Emacs update: support for any Laconica server'>Identica mode for Emacs update: support for any Laconica server</a></li>
<li><a href='http://blog.gabrielsaldana.org/emacs-identica-mode-release-v1-1/' rel='bookmark' title='Emacs Identica-mode release v1.1'>Emacs Identica-mode release v1.1</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The time has come to set up a new stable release for <a href="http://blog.gabrielsaldana.org/identica-mode-for-emacs">Emacs Identica-mode microblogging client</a>. </p>

<p> It&#8217;s been almost a year since <a href="http://blog.gabrielsaldana.org/emacs-identica-mode-release-v1-1/" title="Emacs Identica-mode release v1.1">last release</a>, but many people have been following the project&#8217;s progress through the <a href="http://blog.gabrielsaldana.org/u/2/">git repository updates</a>. </p>

<p> 
<img src="http://farm7.static.flickr.com/6177/6265429950_f517bc61ea.jpg" alt="identica-mode 1.2"/> </p>

<div id="outline-container-1" class="outline-3"> <h3 id="sec-1">Download</h3> <div class="outline-text-3" id="text-1">   <p> <a href="http://blog.gabrielsaldana.org/u/1">Download the identica-mode 1.2</a> </p> <p> The two most relevant features of this release is first, support for OAuth (requires using <a href="http://github.com/psanford/emacs-oauth/">oauth.el</a>). This enables users who log in via OpenID accounts to be able to use Identica-mode as their client. The other big feature is the support for conversation timelines. Now you can press C-c C-c while cursor is on a notice to display that notice&#8217;s conversation timeline. Conversation timelines are not available on statusnet servers prior to 1.0 version, since the API didn&#8217;t include conversation ids until then. I&#8217;d like to give special thanks <a href="http://identi.ca/kevingranade">Kevin Granade</a> for his time and effort on these two very requested features. </p> <p> To use OAuth authentication instead of the default plain auth, add this to your .emacs file: </p> <p> <code><pre>(setq identica-auth-mode "oauth")</pre></code> </p> <p> Another very requested feature for those who won&#8217;t switch to OAuth, is to store the login credentials in a safer way than storing it in plain text in your elisp configuration files. Emacs can read authinfo and netrc files for authentication information. You can even encrypt the authinfo using <a href="http://www.emacswiki.org/emacs/EasyPG">EasyPG</a>. </p> <p> All you need to do is create a file ~/.authinfo (~/.authinfo.gpg if using encryption) and add the following: </p> <p> <code><pre>machine servername login yourusername password yourpassword</pre></code> </p> <p> Replace servername with your server (if connecting to Identica service, use identi.ca as server name), yourusername and yourpassword with your information. If you setup your authinfo file, you don&#8217;t need to set identica-password variable anywhere. </p>  </div>  </div>

<div id="outline-container-2" class="outline-3"> <h3 id="sec-2">What&#8217;s new</h3> <div class="outline-text-3" id="text-2">  <ul> <li>OAuth support </li> <li>Added support for authentication credentials stored in ~./authinfo (plain or encrypted) and ~/.netrc files instead of plain text elisp </li> <li>Expand short urls by pressing &#8216;e&#8217; while cursor is on a short url </li> <li>Added is.gd to url shortening services </li> <li>Added countdown minibuffer-prompt style </li> <li>Retrieve server config page to set text limit of notices </li> <li>Added conversation timeline support (only for APIs in Status.net 1.0+), when pressing C-c C-c over a notice it will display its conversation timeline </li> <li>Added zebra stripes styling to timeline </li> </ul>   </div>  </div>

<div id="outline-container-3" class="outline-3"> <h3 id="sec-3">Bug fixes</h3> <div class="outline-text-3" id="text-3">  <ul> <li>Fix highlighting of notices that are a reply to you but don&#8217;t have your nick in the text (as status.net 1.0 change) </li> <li>Always crop avatars to 48&#215;48 pixels </li> <li>Improved vertical spacing between notices </li> <li>Fixed icon placement when displaying dents in reverse order </li> <li>Identica-mode buffer will no longer get killed on network error </li> <li>Fixed support for gravatar images </li> <li>Lots of code cleanup </li> <li>Many other minor bugfixes </li> </ul>   <p> There is also a <a href="https://lists.nongnu.org/mailman/listinfo/identica-mode-devel">mailing list for the project</a> to discuss any new features, ideas or bugs. </p> <p> Hope you like the new release and thanks to everyone who during this cycle has spent time <a href="http://blog.gabrielsaldana.org/u/3">reporting bugs or sending patches</a>. Your contributions are very valuable and keep improving this project. </p></div> </div>

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick"/>
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7-----
"/>
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"/>
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"/>
</form>
<p><a class="a2a_button_identi_ca" href="http://www.addtoany.com/add_to/identi_ca?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Fidentica-mode-1-2-with-oauth-support-released%2F&amp;linkname=Identica-mode%201.2%20with%20OAuth%20support%20released" title="Identi.ca" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/identica.png" width="16" height="16" alt="Identi.ca"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Fidentica-mode-1-2-with-oauth-support-released%2F&amp;linkname=Identica-mode%201.2%20with%20OAuth%20support%20released" title="Twitter" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Fidentica-mode-1-2-with-oauth-support-released%2F&amp;linkname=Identica-mode%201.2%20with%20OAuth%20support%20released" title="Facebook" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.gabrielsaldana.org%2Fidentica-mode-1-2-with-oauth-support-released%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.gabrielsaldana.org%2Fidentica-mode-1-2-with-oauth-support-released%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_google_reader" href="http://www.addtoany.com/add_to/google_reader?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Fidentica-mode-1-2-with-oauth-support-released%2F&amp;linkname=Identica-mode%201.2%20with%20OAuth%20support%20released" title="Google Reader" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/reader.png" width="16" height="16" alt="Google Reader"/></a><a class="a2a_button_reddit" href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Fidentica-mode-1-2-with-oauth-support-released%2F&amp;linkname=Identica-mode%201.2%20with%20OAuth%20support%20released" title="Reddit" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.gabrielsaldana.org%2Fidentica-mode-1-2-with-oauth-support-released%2F&amp;title=Identica-mode%201.2%20with%20OAuth%20support%20released" id="wpa2a_4">Share/Bookmark</a></p><p>Related posts:<ol>
<li><a href='http://blog.gabrielsaldana.org/identica-mode-v03-released/' rel='bookmark' title='Identica-mode v0.3 released'>Identica-mode v0.3 released</a></li>
<li><a href='http://blog.gabrielsaldana.org/identica-mode-for-emacs-update-support-for-any-laconica-server/' rel='bookmark' title='Identica mode for Emacs update: support for any Laconica server'>Identica mode for Emacs update: support for any Laconica server</a></li>
<li><a href='http://blog.gabrielsaldana.org/emacs-identica-mode-release-v1-1/' rel='bookmark' title='Emacs Identica-mode release v1.1'>Emacs Identica-mode release v1.1</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.gabrielsaldana.org/identica-mode-1-2-with-oauth-support-released/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/mx/</creativeCommons:license>
	</item>
		<item>
		<title>Change your default browser to Chromium in Debian and Emacs</title>
		<link>http://blog.gabrielsaldana.org/change-your-default-browser-to-chromium-in-debian-and-emacs/</link>
		<comments>http://blog.gabrielsaldana.org/change-your-default-browser-to-chromium-in-debian-and-emacs/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 05:58:38 +0000</pubDate>
		<dc:creator>Gabriel Saldaña</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[GNU/Linux Free Software & Open Source]]></category>
		<category><![CDATA[Tutorials & Tips]]></category>
		<category><![CDATA[chromium emacs browser]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://blog.gabrielsaldana.org/?p=960</guid>
		<description><![CDATA[The web browser is nowadays the most important and frequently used tool in a computer. Recently I&#8217;ve been using more the Chromium browser than Firefox, on in Debian&#8217;s case, Iceweasel. This is for several reasons: Better memory management (doesn&#8217;t eat &#8230; <a href="http://blog.gabrielsaldana.org/change-your-default-browser-to-chromium-in-debian-and-emacs/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://blog.gabrielsaldana.org/change-default-columns-in-drupal-grid-view/' rel='bookmark' title='Change default columns in Drupal grid view'>Change default columns in Drupal grid view</a></li>
<li><a href='http://blog.gabrielsaldana.org/back-to-blogging-from-emacs/' rel='bookmark' title='Back to blogging from Emacs'>Back to blogging from Emacs</a></li>
<li><a href='http://blog.gabrielsaldana.org/post-to-wordpress-blogs-with-emacs-org-mode/' rel='bookmark' title='Post to WordPress blogs with Emacs &amp; Org-mode'>Post to WordPress blogs with Emacs &#038; Org-mode</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.gabrielsaldana.org/wp-content/uploads/2011/06/Chroimum.png" alt="Chromium Logo" title="Chromium" width="150" height="150" class="alignnone size-full wp-image-963" /></p>

<p>The web browser is nowadays the most important and frequently used tool in a computer. Recently I&#8217;ve been using more the <a href="http://www.chromium.org/Home">Chromium browser</a> than Firefox, on in Debian&#8217;s case, Iceweasel. This is for several reasons:</p>

<ul>
<li>Better memory management (doesn&#8217;t eat up all my RAM)</li>
<li>Extensions are also available for Chromium</li>
<li>Faster browser startup</li>
<li>Faster page loads</li>
<li>Full HTML5 support, which is lacking in Debian Wheezy&#8217;s Firefox (err&#8230; Iceweasel) which is still on version 3.5.19 at the time of this writing.</li>
</ul>

<p>So I decided to change my default browser to open in Chromium for all applications. To do the change, at the terminal, type:</p>

<p><code><pre>
sudo update-alternatives --set x-www-browser /usr/bin/chromium
</pre></code></p>

<p>and</p>

<p><code><pre>
sudo update-alternatives --set www-browser /usr/bin/chromium
</pre></code></p>

<p>If you&#8217;re using <a href="http://kde.org/">KDE 4</a> you also need to open the System Settings, click on Default Applications, Select Web Browser and choose the second radio button option so it reads: &#8220;Open http and https URLs in the following browser&#8221; and type &#8220;chromium&#8221; in the text box. Click the Apply button and close the window.</p>

<p>Since I do almost everything with Emacs, I also needed to configure it to use Chromium as its default browser. To set that, you just need to add the following to your .emacs file:
<code><pre>
(setq browse-url-browser-function 'browse-url-generic
      browse-url-generic-program "chromium-browser")
</pre></code></p>

<p>I still love Firefox, but it has staled away from the cool minimalistic and fast browser it was when it started. Chromium is now filling that gap, so I hope that in future versions (maybe the new <a href="http://www.fudzilla.com/home/item/23124-firefox-5-comes-on-24th">Firefox 5</a>?) memory handling gets better as well as loading times.</p>
<p><a class="a2a_button_identi_ca" href="http://www.addtoany.com/add_to/identi_ca?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Fchange-your-default-browser-to-chromium-in-debian-and-emacs%2F&amp;linkname=Change%20your%20default%20browser%20to%20Chromium%20in%20Debian%20and%20Emacs" title="Identi.ca" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/identica.png" width="16" height="16" alt="Identi.ca"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Fchange-your-default-browser-to-chromium-in-debian-and-emacs%2F&amp;linkname=Change%20your%20default%20browser%20to%20Chromium%20in%20Debian%20and%20Emacs" title="Twitter" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Fchange-your-default-browser-to-chromium-in-debian-and-emacs%2F&amp;linkname=Change%20your%20default%20browser%20to%20Chromium%20in%20Debian%20and%20Emacs" title="Facebook" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.gabrielsaldana.org%2Fchange-your-default-browser-to-chromium-in-debian-and-emacs%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.gabrielsaldana.org%2Fchange-your-default-browser-to-chromium-in-debian-and-emacs%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_google_reader" href="http://www.addtoany.com/add_to/google_reader?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Fchange-your-default-browser-to-chromium-in-debian-and-emacs%2F&amp;linkname=Change%20your%20default%20browser%20to%20Chromium%20in%20Debian%20and%20Emacs" title="Google Reader" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/reader.png" width="16" height="16" alt="Google Reader"/></a><a class="a2a_button_reddit" href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Fchange-your-default-browser-to-chromium-in-debian-and-emacs%2F&amp;linkname=Change%20your%20default%20browser%20to%20Chromium%20in%20Debian%20and%20Emacs" title="Reddit" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.gabrielsaldana.org%2Fchange-your-default-browser-to-chromium-in-debian-and-emacs%2F&amp;title=Change%20your%20default%20browser%20to%20Chromium%20in%20Debian%20and%20Emacs" id="wpa2a_6">Share/Bookmark</a></p><p>Related posts:<ol>
<li><a href='http://blog.gabrielsaldana.org/change-default-columns-in-drupal-grid-view/' rel='bookmark' title='Change default columns in Drupal grid view'>Change default columns in Drupal grid view</a></li>
<li><a href='http://blog.gabrielsaldana.org/back-to-blogging-from-emacs/' rel='bookmark' title='Back to blogging from Emacs'>Back to blogging from Emacs</a></li>
<li><a href='http://blog.gabrielsaldana.org/post-to-wordpress-blogs-with-emacs-org-mode/' rel='bookmark' title='Post to WordPress blogs with Emacs &amp; Org-mode'>Post to WordPress blogs with Emacs &#038; Org-mode</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.gabrielsaldana.org/change-your-default-browser-to-chromium-in-debian-and-emacs/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/mx/</creativeCommons:license>
	</item>
		<item>
		<title>Prepare your tea with Emacs</title>
		<link>http://blog.gabrielsaldana.org/prepare-your-tea-with-emacs/</link>
		<comments>http://blog.gabrielsaldana.org/prepare-your-tea-with-emacs/#comments</comments>
		<pubDate>Mon, 25 Apr 2011 15:00:13 +0000</pubDate>
		<dc:creator>Gabriel Saldaña</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[GNU/Linux Free Software & Open Source]]></category>
		<category><![CDATA[elisp]]></category>
		<category><![CDATA[tea]]></category>
		<category><![CDATA[tea-time]]></category>

		<guid isPermaLink="false">http://blog.gabrielsaldana.org/?p=863</guid>
		<description><![CDATA[I love tea. I&#8217;m not a coffee drinker, so I get my morning boost from severl kind of teas. I use black teas from Teavana and green teas from a little shop in chinatown San Francisco called Ten Ren Tea. &#8230; <a href="http://blog.gabrielsaldana.org/prepare-your-tea-with-emacs/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://blog.gabrielsaldana.org/emacs-identica-mode-version-0-7/' rel='bookmark' title='Emacs identica-mode version 0.7'>Emacs identica-mode version 0.7</a></li>
<li><a href='http://blog.gabrielsaldana.org/emacs-identica-mode-with-multiple-timelines-and-direct-messages/' rel='bookmark' title='Emacs identica-mode with multiple timelines and direct messages'>Emacs identica-mode with multiple timelines and direct messages</a></li>
<li><a href='http://blog.gabrielsaldana.org/post-to-wordpress-blogs-with-emacs-org-mode/' rel='bookmark' title='Post to WordPress blogs with Emacs &amp; Org-mode'>Post to WordPress blogs with Emacs &#038; Org-mode</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm5.static.flickr.com/4070/4536579739_230d9e40fa_m.jpg" alt="Jazmin and Dragon Well Tea" style="float:left; margin: 0 10px;"/></p>

<p>I love tea. I&#8217;m not a coffee drinker, so I get my morning boost from severl kind of teas. I use black teas from <a href="http://www.teavana.com">Teavana</a> and green teas from a little shop in chinatown San Francisco called <a href="http://www.tenren.com/">Ten Ren Tea</a>. And I recently discovered that mate and black teas are a great energy booster combination! </p>

<p> Anyways, the point is that I make several teas at the office, and I always have to be watching carefully the stopwatch on my phone or set an alarm on it to know when my tea is ready. </p>

<p> A few months ago I found out about <a href="http://www.emacswiki.org/emacs/tea-time">Emacs tea-time mode</a>. It sets a timer then plays a sound and show a message to let you know when your tea is ready. So now you can make my teas with the help of Emacs! </p>

<p> At work I use a Macbook Pro, and the original code was very GNU/Linux specific. So I modified Konstantin Antipin&#8217;s <a href="https://github.com/krick/tea-time">tea-time</a> mode to make it more platform independent and configurable. </p>

<p> You can grab my fork of tea-time mode (at least until my patches are accepted) from <a href="https://github.com/gabrielsaldana/tea-time">https://github.com/gabrielsaldana/tea-time</a> save it on your elisp load-path (typically at the ~/.emacs.d/ folder) and add this to your .emacs initialization file: </p>

<p><code> (require 'tea-time) (setq tea-time-sound "path-to-sound-file") </code></p>

<p> Now you can configure which program to use as player for the alarm sound. </p>

<p> If you&#8217;re using a Mac and <a href="http://emacsformacosx.com">Emacs for Mac OS X</a>, sound support is not available by default; You&#8217;ll need to run a shell command. In Mac, the default player can be set as: </p>

<p><code> (setq tea-time-sound-command "afplay %s")</code></p>

<p> On GNU/Linux, you don&#8217;t need to configure this as it will fall back to default sound engine configured (alsa, pulseaudio, etc). </p>
<p><a class="a2a_button_identi_ca" href="http://www.addtoany.com/add_to/identi_ca?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Fprepare-your-tea-with-emacs%2F&amp;linkname=Prepare%20your%20tea%20with%20Emacs" title="Identi.ca" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/identica.png" width="16" height="16" alt="Identi.ca"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Fprepare-your-tea-with-emacs%2F&amp;linkname=Prepare%20your%20tea%20with%20Emacs" title="Twitter" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Fprepare-your-tea-with-emacs%2F&amp;linkname=Prepare%20your%20tea%20with%20Emacs" title="Facebook" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.gabrielsaldana.org%2Fprepare-your-tea-with-emacs%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.gabrielsaldana.org%2Fprepare-your-tea-with-emacs%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_google_reader" href="http://www.addtoany.com/add_to/google_reader?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Fprepare-your-tea-with-emacs%2F&amp;linkname=Prepare%20your%20tea%20with%20Emacs" title="Google Reader" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/reader.png" width="16" height="16" alt="Google Reader"/></a><a class="a2a_button_reddit" href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Fprepare-your-tea-with-emacs%2F&amp;linkname=Prepare%20your%20tea%20with%20Emacs" title="Reddit" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.gabrielsaldana.org%2Fprepare-your-tea-with-emacs%2F&amp;title=Prepare%20your%20tea%20with%20Emacs" id="wpa2a_8">Share/Bookmark</a></p><p>Related posts:<ol>
<li><a href='http://blog.gabrielsaldana.org/emacs-identica-mode-version-0-7/' rel='bookmark' title='Emacs identica-mode version 0.7'>Emacs identica-mode version 0.7</a></li>
<li><a href='http://blog.gabrielsaldana.org/emacs-identica-mode-with-multiple-timelines-and-direct-messages/' rel='bookmark' title='Emacs identica-mode with multiple timelines and direct messages'>Emacs identica-mode with multiple timelines and direct messages</a></li>
<li><a href='http://blog.gabrielsaldana.org/post-to-wordpress-blogs-with-emacs-org-mode/' rel='bookmark' title='Post to WordPress blogs with Emacs &amp; Org-mode'>Post to WordPress blogs with Emacs &#038; Org-mode</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.gabrielsaldana.org/prepare-your-tea-with-emacs/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/mx/</creativeCommons:license>
	</item>
		<item>
		<title>Post to WordPress blogs with Emacs &amp; Org-mode</title>
		<link>http://blog.gabrielsaldana.org/post-to-wordpress-blogs-with-emacs-org-mode/</link>
		<comments>http://blog.gabrielsaldana.org/post-to-wordpress-blogs-with-emacs-org-mode/#comments</comments>
		<pubDate>Sat, 26 Mar 2011 02:45:04 +0000</pubDate>
		<dc:creator>Gabriel Saldaña</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[GNU/Linux Free Software & Open Source]]></category>
		<category><![CDATA[Tutorials & Tips]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[elisp]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[org2blog]]></category>
		<category><![CDATA[orgmode]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://blog.gabrielsaldana.org/?p=788</guid>
		<description><![CDATA[Recently I&#8217;ve discovered Org2blog, an Emacs mode to write your blog posts locally using org-mode post them to your WordPress blog in a very fast and easy way. I&#8217;ve written before on how to write your blog posts and publish &#8230; <a href="http://blog.gabrielsaldana.org/post-to-wordpress-blogs-with-emacs-org-mode/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://blog.gabrielsaldana.org/emacs-weblogger-mode-with-wordpress-tags-support/' rel='bookmark' title='Emacs weblogger mode with WordPress tags support'>Emacs weblogger mode with WordPress tags support</a></li>
<li><a href='http://blog.gabrielsaldana.org/emacs-identica-mode-version-0-7/' rel='bookmark' title='Emacs identica-mode version 0.7'>Emacs identica-mode version 0.7</a></li>
<li><a href='http://blog.gabrielsaldana.org/identica-mode-for-emacs/' rel='bookmark' title='Identi.ca mode for Emacs'>Identi.ca mode for Emacs</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve discovered Org2blog, an Emacs mode to write your blog posts locally using org-mode post them to your WordPress blog in a very fast and easy way.</p>

<p>I&#8217;ve written before on how to write your blog posts and publish them using Emacs. Previously, my method of choice was using <a href="http://www.emacswiki.org/emacs/WebloggerMode">Weblogger mode</a>. I even <a href="http://blog.gabrielsaldana.org/emacs-weblogger-mode-with-wordpress-tags-support/">wrote some enhancements to it</a>.</p>

<p>The problem I found with this method is that it uses message-mode as its base mode. So you&#8217;re basically writing an email. The shortcomings of it were that whenever I wanted to write links, bold text, or any custom formatting generally done through HTML tags, I had to either type out the HTML or temporarily switch to html-mode. That sometimes gave me some problems converting the HTML code into entities, and ended up with a mess to fix at the WordPress editing textarea.</p>

<p>Org-mode (included in Emacs since about version 22.1), if you haven&#8217;t heard about it already, is a very good way to take notes, organize your tasks, among other day to day useful things. You also get some basic formatting like bold text and italics, as well as links among many other useful things. Nowadays, I find myself typing things in org files constantly throughout my day, and with all its long list of qualities, it became a more suitable way for me to write blog posts.</p>

<p><a href="https://github.com/punchagan/org2blog">Org2blog</a> provides a way to post your Org files or post a subsection of your file with a few keystrokes. All you need to do is clone the repository on your load path directory</p>

<p><code>git clone http://github.com/punchagan/org2blog.git</code></p>

<p>Then, add this to your .emacs file</p>

<p><code><pre>
  (setq load-path (cons "~/.emacs.d/org2blog/" load-path))
  (require 'org2blog-autoloads)
</pre></code></p>

<p>Finally set up you blog(s) settings in you .emacs file
<code><pre>
     (setq org2blog/wp-blog-alist
           '(("wordpress"
              :url "http://username.wordpress.com/xmlrpc.php"
              :username "username"<br />
              :default-title "Hello World"
              :default-categories ("org2blog" "emacs")
              :tags-as-categories nil)
             ("my-blog"<br />
              :url "http://username.server.com/xmlrpc.php"
              :username "admin")))
</pre></code></p>

<p>To start wrigint a new post, you can now use 
<code>M-x org2blog/wp-new-entry</code></p>

<p>Or, as I more frequently use, post a subtree of an existing org file using:
<code>M-x org2blog/wp-post-subtree</code></p>

<p>I hope you enjoy writing and posting your blog posts within Emacs and Org-mode. I certainly do and has turned out to be a very fast way to quickly draft and later on (even offline) elaborate on the blog post details in a comfortable editing environment. Also you get the added benefit of having a local copy (backup) of your blog posts as Org files.</p>
<p><a class="a2a_button_identi_ca" href="http://www.addtoany.com/add_to/identi_ca?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Fpost-to-wordpress-blogs-with-emacs-org-mode%2F&amp;linkname=Post%20to%20WordPress%20blogs%20with%20Emacs%20%26%23038%3B%20Org-mode" title="Identi.ca" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/identica.png" width="16" height="16" alt="Identi.ca"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Fpost-to-wordpress-blogs-with-emacs-org-mode%2F&amp;linkname=Post%20to%20WordPress%20blogs%20with%20Emacs%20%26%23038%3B%20Org-mode" title="Twitter" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Fpost-to-wordpress-blogs-with-emacs-org-mode%2F&amp;linkname=Post%20to%20WordPress%20blogs%20with%20Emacs%20%26%23038%3B%20Org-mode" title="Facebook" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.gabrielsaldana.org%2Fpost-to-wordpress-blogs-with-emacs-org-mode%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.gabrielsaldana.org%2Fpost-to-wordpress-blogs-with-emacs-org-mode%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_button_google_reader" href="http://www.addtoany.com/add_to/google_reader?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Fpost-to-wordpress-blogs-with-emacs-org-mode%2F&amp;linkname=Post%20to%20WordPress%20blogs%20with%20Emacs%20%26%23038%3B%20Org-mode" title="Google Reader" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/reader.png" width="16" height="16" alt="Google Reader"/></a><a class="a2a_button_reddit" href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fblog.gabrielsaldana.org%2Fpost-to-wordpress-blogs-with-emacs-org-mode%2F&amp;linkname=Post%20to%20WordPress%20blogs%20with%20Emacs%20%26%23038%3B%20Org-mode" title="Reddit" rel="nofollow" target="_blank"><img src="http://blog.gabrielsaldana.org/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.gabrielsaldana.org%2Fpost-to-wordpress-blogs-with-emacs-org-mode%2F&amp;title=Post%20to%20WordPress%20blogs%20with%20Emacs%20%26%23038%3B%20Org-mode" id="wpa2a_10">Share/Bookmark</a></p><p>Related posts:<ol>
<li><a href='http://blog.gabrielsaldana.org/emacs-weblogger-mode-with-wordpress-tags-support/' rel='bookmark' title='Emacs weblogger mode with WordPress tags support'>Emacs weblogger mode with WordPress tags support</a></li>
<li><a href='http://blog.gabrielsaldana.org/emacs-identica-mode-version-0-7/' rel='bookmark' title='Emacs identica-mode version 0.7'>Emacs identica-mode version 0.7</a></li>
<li><a href='http://blog.gabrielsaldana.org/identica-mode-for-emacs/' rel='bookmark' title='Identi.ca mode for Emacs'>Identi.ca mode for Emacs</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.gabrielsaldana.org/post-to-wordpress-blogs-with-emacs-org-mode/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/mx/</creativeCommons:license>
	</item>
	</channel>
</rss>

<!-- Served from: blog.gabrielsaldana.org @ 2012-02-07 11:45:47 by W3 Total Cache -->
