<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet href="/templates/default/atom.css" type="text/css" ?>

<feed 
   xmlns="http://www.w3.org/2005/Atom"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <link href="http://rlazo.supersized.org/feeds/atom10.xml" rel="self" title="rlazo's blog" type="application/atom+xml" />
    <link href="http://rlazo.supersized.org/"                        rel="alternate"    title="rlazo's blog" type="text/html" />
    <link href="http://rlazo.supersized.org/rss.php?version=2.0"     rel="alternate"    title="rlazo's blog" type="application/rss+xml" />
    <title type="html">rlazo's blog</title>
    <subtitle type="html">My blog, my projects and some information about me...</subtitle>
    <icon>http://rlazo.supersized.org/templates/default/img/s9y_banner_small.png</icon>
    <id>http://rlazo.supersized.org/</id>
    <updated>2008-06-25T04:51:13Z</updated>
    <generator uri="http://www.s9y.org/" version="1.3-alpha1">Serendipity 1.3-alpha1 - http://www.s9y.org/</generator>
    <dc:language>en</dc:language>

    <entry>
        <link href="http://rlazo.supersized.org/archives/80-Three-beautiful-years....html" rel="alternate" title="Three beautiful years... =)" />
        <author>
            <name>Rodrigo Lazo</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2008-06-25T04:39:44Z</published>
        <updated>2008-06-25T04:51:13Z</updated>
        <wfw:comment>http://rlazo.supersized.org/wfwcomment.php?cid=80</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://rlazo.supersized.org/rss.php?version=atom1.0&amp;type=comments&amp;cid=80</wfw:commentRss>
    
    
        <id>http://rlazo.supersized.org/archives/80-guid.html</id>
        <title type="html">Three beautiful years... =)</title>
        <content type="xhtml" xml:base="http://rlazo.supersized.org/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Thanks for everything, I love you Julia. 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://rlazo.supersized.org/archives/79-Firefox-downlad-day.html" rel="alternate" title="Firefox downlad day" />
        <author>
            <name>Rodrigo Lazo</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2008-06-12T03:30:32Z</published>
        <updated>2008-06-12T03:30:32Z</updated>
        <wfw:comment>http://rlazo.supersized.org/wfwcomment.php?cid=79</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://rlazo.supersized.org/rss.php?version=atom1.0&amp;type=comments&amp;cid=79</wfw:commentRss>
    
            <category scheme="http://rlazo.supersized.org/categories/6-Free-Software" label="Free Software" term="Free Software" />
    
        <id>http://rlazo.supersized.org/archives/79-guid.html</id>
        <title type="html">Firefox downlad day</title>
        <content type="xhtml" xml:base="http://rlazo.supersized.org/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>June 17th</p>

<a onclick="javascript:urchinTracker('/extlink/www.spreadfirefox.com/es-ES/worldrecord');" href="http://www.spreadfirefox.com/es-ES/worldrecord" ><img border="0" alt="Download Day 2008" title="Download Day 2008" src="http://www.spreadfirefox.com/sites/all/themes/spreadfirefox_RCS/images/download-day/buttons/es-ES/sns_badge1.png" /></a> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://rlazo.supersized.org/archives/78-Do-you-use-google-to-find-definitions.html" rel="alternate" title="Do you use google to find definitions?" />
        <author>
            <name>Rodrigo Lazo</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2008-06-04T21:52:19Z</published>
        <updated>2008-06-24T17:33:42Z</updated>
        <wfw:comment>http://rlazo.supersized.org/wfwcomment.php?cid=78</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://rlazo.supersized.org/rss.php?version=atom1.0&amp;type=comments&amp;cid=78</wfw:commentRss>
    
            <category scheme="http://rlazo.supersized.org/categories/8-Emacs" label="Emacs" term="Emacs" />
    
        <id>http://rlazo.supersized.org/archives/78-guid.html</id>
        <title type="html">Do you use google to find definitions?</title>
        <content type="xhtml" xml:base="http://rlazo.supersized.org/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p><strong>UPDATE:</strong><em>For this code to work you need to include the mm-url library. The code is now fixed</em>

<p>If so, here's a little snippet I wrote for emacs to have all this
  power just one keystroke away</p>

<pre>
<code>
(require 'mm-url)
(defun google-define-word-or-phrase (query)
  (interactive "sInsert word or phrase to search: ")
  (let* ((url (concat "http://www.google.com.pe/search?hl=en&q=define%3A" 
		      (replace-regexp-in-string " " "+" query)))
	 (definition
	   (save-excursion
	     (with-temp-buffer
	       (mm-url-insert url)
	       (goto-char (point-min))
	       (if (search-forward "No definitions found of " nil t)
		   "No definitions found"
		 (buffer-substring (search-forward "&lt;li&gt;") (- (search-forward "<") 1)))))))
    (message "%s: %s" query definition)))

(global-set-key [f5] 'google-define-word-or-phrase)
</code>
</pre>

<p>This uses google's <em>define:</em> operator to look up for a word
or phrase. Copy &amp; Paste this code into your .emacs and with pressinf
  F5 you will be prompted for your query. Have fun</p>

<p>If you have any comments on the code they will be more than welcome :)</p>
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://rlazo.supersized.org/archives/77-keybinding-doubts-no-more!.html" rel="alternate" title="keybinding doubts? no more!" />
        <author>
            <name>Rodrigo Lazo</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2008-05-20T03:12:51Z</published>
        <updated>2008-05-29T04:08:51Z</updated>
        <wfw:comment>http://rlazo.supersized.org/wfwcomment.php?cid=77</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://rlazo.supersized.org/rss.php?version=atom1.0&amp;type=comments&amp;cid=77</wfw:commentRss>
    
            <category scheme="http://rlazo.supersized.org/categories/8-Emacs" label="Emacs" term="Emacs" />
    
        <id>http://rlazo.supersized.org/archives/77-guid.html</id>
        <title type="html">keybinding doubts? no more!</title>
        <content type="xhtml" xml:base="http://rlazo.supersized.org/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Just a short one... If you have doubts about emacs keybindings, <a onclick="javascript:urchinTracker('/extlink/tiny-tools.sourceforge.net/emacs-keys.html');" href="http://tiny-tools.sourceforge.net/emacs-keys.html">read here</a>. Is <strong>awesome!</strong>.

<p>Just as a site note, I found it while looking  how to set WindowsKey(Super)-tab as a keybinding for lisp-complete-symbol</p>
<p><code>(define-key lisp-mode-map [s-tab] 'lisp-complete-symbol)</code>
<p>Really easy :) 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://rlazo.supersized.org/archives/76-BEH-How-to-make-dired-open-several-files-in-the-background.html" rel="alternate" title="[BEH] How to make dired open several files in the background" />
        <author>
            <name>Rodrigo Lazo</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2008-05-19T04:35:22Z</published>
        <updated>2008-05-19T04:35:22Z</updated>
        <wfw:comment>http://rlazo.supersized.org/wfwcomment.php?cid=76</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://rlazo.supersized.org/rss.php?version=atom1.0&amp;type=comments&amp;cid=76</wfw:commentRss>
    
            <category scheme="http://rlazo.supersized.org/categories/12-BEH" label="BEH" term="BEH" />
            <category scheme="http://rlazo.supersized.org/categories/8-Emacs" label="Emacs" term="Emacs" />
    
        <id>http://rlazo.supersized.org/archives/76-guid.html</id>
        <title type="html">[BEH] How to make dired open several files in the background</title>
        <content type="xhtml" xml:base="http://rlazo.supersized.org/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>You will need:</p>
<ul>
<li>dired-x.el</li>
</ul>
<h3>The question</h3>
<p><em>Is there some keybinding or command in Dired that  open in background all marked files?</em></p>
<h3>The solution</h3>
<p>First, mark all the files you will want to open and then use <strong>'C-u F'</strong> 
<p><a onclick="javascript:urchinTracker('/extlink/permalink.gmane.org/gmane.emacs.help/54121');" href='http://permalink.gmane.org/gmane.emacs.help/54121'>Here is the link</a> of the thread 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://rlazo.supersized.org/archives/75-ok...-may-be-mr.-willis-is-not-in-town.html" rel="alternate" title="ok... may be mr. willis is not in town" />
        <author>
            <name>Rodrigo Lazo</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2008-05-13T04:45:34Z</published>
        <updated>2008-05-13T04:45:34Z</updated>
        <wfw:comment>http://rlazo.supersized.org/wfwcomment.php?cid=75</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://rlazo.supersized.org/rss.php?version=atom1.0&amp;type=comments&amp;cid=75</wfw:commentRss>
    
    
        <id>http://rlazo.supersized.org/archives/75-guid.html</id>
        <title type="html">ok... may be mr. willis is not in town</title>
        <content type="xhtml" xml:base="http://rlazo.supersized.org/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Reading the newspapers and listening to the radio didn't bring any ligth to what I heard yesterday. So I can start thinking about a huge conspiracy or just stop thinking about it. Let's just pick the second one, I'm not in the conspiracy mood :) 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://rlazo.supersized.org/archives/74-This-feels-like-a-Bruce-Willis-movie.html" rel="alternate" title="This feels like a Bruce Willis movie" />
        <author>
            <name>Rodrigo Lazo</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2008-05-12T04:50:00Z</published>
        <updated>2008-05-12T04:50:00Z</updated>
        <wfw:comment>http://rlazo.supersized.org/wfwcomment.php?cid=74</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://rlazo.supersized.org/rss.php?version=atom1.0&amp;type=comments&amp;cid=74</wfw:commentRss>
    
    
        <id>http://rlazo.supersized.org/archives/74-guid.html</id>
        <title type="html">This feels like a Bruce Willis movie</title>
        <content type="xhtml" xml:base="http://rlazo.supersized.org/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                For the past hour I`ve been listen sirens from ambulances and possible police cars. This town, Arequipa, use to be so peaceful, seems like those times are long go. I hope I can read about this on the news tomorrow. Just for the record, there's a hospital nearby my house 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://rlazo.supersized.org/archives/73-Gnus-tip-how-to-convert-a-reply-to-a-wide-reply.html" rel="alternate" title="Gnus tip: how to convert a reply to a wide reply" />
        <author>
            <name>Rodrigo Lazo</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2008-05-10T05:40:48Z</published>
        <updated>2008-05-10T12:06:16Z</updated>
        <wfw:comment>http://rlazo.supersized.org/wfwcomment.php?cid=73</wfw:comment>
    
        <slash:comments>1</slash:comments>
        <wfw:commentRss>http://rlazo.supersized.org/rss.php?version=atom1.0&amp;type=comments&amp;cid=73</wfw:commentRss>
    
            <category scheme="http://rlazo.supersized.org/categories/8-Emacs" label="Emacs" term="Emacs" />
    
        <id>http://rlazo.supersized.org/archives/73-guid.html</id>
        <title type="html">Gnus tip: how to convert a reply to a wide reply</title>
        <content type="xhtml" xml:base="http://rlazo.supersized.org/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>This tip comes form the gnus mailing list from almost two years
ago. I re-discover it today because, after writing a long email for a
mailing list, I needed to change my original reply to a 
  wide reply.</p>

<p>This is as easy as this: </p>

<p><strong>Keybinding</strong>: `C-c C-f w'</p>

<p><strong>Description</strong>: Insert `To' and `Cc' headers as if you were doing a wide reply even
  if the message was not made for a wide reply first.</p>

<p>The link for the original message
is <a onclick="javascript:urchinTracker('/extlink/article.gmane.org/gmane.emacs.gnus.user/7842');" href="http://article.gmane.org/gmane.emacs.gnus.user/7842">here</a>
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://rlazo.supersized.org/archives/72-What-Ive-been-doing-Gmail-sentinel-update!.html" rel="alternate" title="What I've been doing? Gmail-sentinel update!" />
        <author>
            <name>Rodrigo Lazo</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2008-05-06T16:03:26Z</published>
        <updated>2008-05-06T16:03:26Z</updated>
        <wfw:comment>http://rlazo.supersized.org/wfwcomment.php?cid=72</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://rlazo.supersized.org/rss.php?version=atom1.0&amp;type=comments&amp;cid=72</wfw:commentRss>
    
            <category scheme="http://rlazo.supersized.org/categories/6-Free-Software" label="Free Software" term="Free Software" />
            <category scheme="http://rlazo.supersized.org/categories/10-gmail-sentinel" label="gmail-sentinel" term="gmail-sentinel" />
            <category scheme="http://rlazo.supersized.org/categories/11-My-projects" label="My projects" term="My projects" />
            <category scheme="http://rlazo.supersized.org/categories/9-python" label="python" term="python" />
    
        <id>http://rlazo.supersized.org/archives/72-guid.html</id>
        <title type="html">What I've been doing? Gmail-sentinel update!</title>
        <content type="xhtml" xml:base="http://rlazo.supersized.org/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>Well, long time without a single release... What happen with the
  <a href="http://rlazo.supersized.org/archives/68-gmail-sentinel-0.2-RC.html">release
  candidate</a>? or even with my
  pretty <a href="http://rlazo.supersized.org/archives/64-gmail-sentinel-0.2-beta-release.html">schedule
  for the 0.2 version</a>? Keep reading :)</p>

<p>After re-reading the book <em>"Producing Open Source
Software"</em>, I got from Google last year, I realized that I was
introducing too few new features for a new release. My original plan
was to introduce a new feature per release... but that's not all that
funny :). So I created a branch on the git repository to start to work
on a real feature: the plugin system</p>

<p>What's new then? the plugin system basically is done, the
notification is now a plugin (so if you don't like the pop-ups, is now
easier than ever to disable them), a real logging system has been
implemented (using python standard-library facilities) and a few other
little things.</p>

<p>What's the catch? Well, the code is still alpha, but I decided to
  push my branch to the public repository for anybody to see it. I'm
  thinking in using threads for the plugins, so a bad plugin doesn't
  kill everybody. The documentation is missing, the Makefile doesn't
  work with this version at all, and there are some rough edges.</p>

<p>If you want to take a look at the
branch, <a onclick="javascript:urchinTracker('/extlink/gitorious.org/projects/googlemail-sentinel/repos/mainline/trees/plugin');" href="http://gitorious.org/projects/googlemail-sentinel/repos/mainline/trees/plugin">here
is the link</a>.
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://rlazo.supersized.org/archives/71-OT-You-love-something-when-you-understand-it.html" rel="alternate" title="OT: You love something when you understand it" />
        <author>
            <name>Rodrigo Lazo</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2008-04-26T00:44:04Z</published>
        <updated>2008-04-26T00:44:04Z</updated>
        <wfw:comment>http://rlazo.supersized.org/wfwcomment.php?cid=71</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://rlazo.supersized.org/rss.php?version=atom1.0&amp;type=comments&amp;cid=71</wfw:commentRss>
    
            <category scheme="http://rlazo.supersized.org/categories/8-Emacs" label="Emacs" term="Emacs" />
            <category scheme="http://rlazo.supersized.org/categories/13-math" label="math" term="math" />
    
        <id>http://rlazo.supersized.org/archives/71-guid.html</id>
        <title type="html">OT: You love something when you understand it</title>
        <content type="xhtml" xml:base="http://rlazo.supersized.org/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p><em>This is an off-topic post. I don't like to do OT, but this is the first and last post from my brand new math category to be posted also as an Emacs entry. A little bit of math doesn't hurt.</em></p>

<p>Have you ever wonder why does really mean the <em>e</em> constant?
You know, besides the number 2.7182828? Well, I've found the best
explanation <a onclick="javascript:urchinTracker('/extlink/betterexplained.com/articles/an-intuitive-guide-to-exponential-functions-e/');" href="http://betterexplained.com/articles/an-intuitive-guide-to-exponential-functions-e/">
here.</a>

<p>I've always loved math. Don't get me wrong, I'm pursuing a Computer
Science BA degree, but there are some fundamental math concepts that I
don't fully understand altought I use them. I used to be more
insistent but I've
somewhat lost that interest over the years. To try to revert this I'm
starting this new "math" category on my blog. 
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://rlazo.supersized.org/archives/70-BEH-How-to-display-info-help-inside-a-box.html" rel="alternate" title="[BEH] How to display info help inside a box" />
        <author>
            <name>Rodrigo Lazo</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2008-04-20T17:12:50Z</published>
        <updated>2008-04-20T17:38:58Z</updated>
        <wfw:comment>http://rlazo.supersized.org/wfwcomment.php?cid=70</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://rlazo.supersized.org/rss.php?version=atom1.0&amp;type=comments&amp;cid=70</wfw:commentRss>
    
            <category scheme="http://rlazo.supersized.org/categories/12-BEH" label="BEH" term="BEH" />
            <category scheme="http://rlazo.supersized.org/categories/8-Emacs" label="Emacs" term="Emacs" />
    
        <id>http://rlazo.supersized.org/archives/70-guid.html</id>
        <title type="html">[BEH] How to display info help inside a box</title>
        <content type="xhtml" xml:base="http://rlazo.supersized.org/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>If you have ever read the emacs-help mailing list, I'm sure you have seen this picture:</p>

<a onclick="javascript:urchinTracker('/extlink/img521.imageshack.us/my.php?image=screenshotoz8.png');" target='_blank' href='http://img521.imageshack.us/my.php?image=screenshotoz8.png'><img src="http://img521.imageshack.us/img521/667/screenshotoz8.th.png" border="0" alt=""  /></a>

<p>That ASCII-art box is great for many things, specially when used to
describe a function, variable or key. The necesary package
is <a onclick="javascript:urchinTracker('/extlink/www.emacswiki.org/cgi-bin/wiki/BoxQuote');" href="http://www.emacswiki.org/cgi-bin/wiki/BoxQuote">boxquote</a>. And
to have all its power at your fingertips, a snippet for your
.emacs</p>

<blockquote>
<pre><code>
;;;_. boxquote

(require 'boxquote)

(global-set-key (kbd "C-c b y")   'boxquote-yank)
(global-set-key (kbd "C-c b r")   'boxquote-region)         
(global-set-key (kbd "C-c b u")   'boxquote-unbox-region)
(global-set-key (kbd "C-c b t")   'boxquote-title)          
(global-set-key (kbd "C-c b i")   'boxquote-insert-file) 
(global-set-key (kbd "C-c b k")   'boxquote-kill) 
(global-set-key (kbd "C-c b s")   'boxquote-shell-command)
 
(global-set-key (kbd "C-c b b")   'boxquote-buffer)
(global-set-key (kbd "C-c b p")   'boxquote-paragraph) 
(global-set-key (kbd "C-c b n")   'boxquote-narrow-to-boxquote)

(global-set-key (kbd "C-c b w")   'boxquote-where-is) 
(global-set-key (kbd "C-c b d f") 'boxquote-describe-function)
(global-set-key (kbd "C-c b d k") 'boxquote-describe-key)
(global-set-key (kbd "C-c b d v") 'boxquote-describe-variable)
</code></pre>
</blockquote>


<p><a onclick="javascript:urchinTracker('/extlink/permalink.gmane.org/gmane.emacs.gnus.user/10875');" href="http://permalink.gmane.org/gmane.emacs.gnus.user/10875">Here
is the link</a> to the gmane archive of the original message.
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://rlazo.supersized.org/archives/69-A-quick-note-eshell-alias.html" rel="alternate" title="A quick note: eshell alias" />
        <author>
            <name>Rodrigo Lazo</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2008-04-07T15:28:46Z</published>
        <updated>2008-04-11T20:54:52Z</updated>
        <wfw:comment>http://rlazo.supersized.org/wfwcomment.php?cid=69</wfw:comment>
    
        <slash:comments>2</slash:comments>
        <wfw:commentRss>http://rlazo.supersized.org/rss.php?version=atom1.0&amp;type=comments&amp;cid=69</wfw:commentRss>
    
            <category scheme="http://rlazo.supersized.org/categories/8-Emacs" label="Emacs" term="Emacs" />
    
        <id>http://rlazo.supersized.org/archives/69-guid.html</id>
        <title type="html">A quick note: eshell alias</title>
        <content type="xhtml" xml:base="http://rlazo.supersized.org/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p><em>Update: while reading <a onclick="javascript:urchinTracker('/extlink/www.emacswiki.org/cgi-bin/wiki/EshellAlias');" href="http://www.emacswiki.org/cgi-bin/wiki/EshellAlias">this wiki entry</a> I found that you need to quote your alias only if you are writing it directly on the prompt. On the alias file you don't quote anything. In fact, you don't need to modify the alias file by hand because emacs writes it for any alias you define on the prompt.</em></p>

<p>(This is mostly a personal note but it may be useful to somebody else)</p> 
<p>I'm not sure that everybody knows (the manual version I have
doesn't mencion it) but to configure an alias for eshell is as easy as
this:</p>

<p>On the .eshell/alias file just add</p>
<p>&#160;&#160;alias ls ls -la $*</p>

<p>This is a taken
from <a onclick="javascript:urchinTracker('/extlink/higepon.blogspot.com/2007/03/define-alias-on-eshellemacs-shell.html');" href="http://higepon.blogspot.com/2007/03/define-alias-on-eshellemacs-shell.html">this
blog post</a>. You can read there a more lispy way of doing it.</a></p>

<p>Also, take a look at this interesting <a onclick="javascript:urchinTracker('/extlink/www.emacswiki.org/cgi-bin/wiki/EshellAlias');" href="http://www.emacswiki.org/cgi-bin/wiki/EshellAlias">this wiki entry</a></p> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://rlazo.supersized.org/archives/68-gmail-sentinel-0.2-RC.html" rel="alternate" title="gmail-sentinel 0.2 RC" />
        <author>
            <name>Rodrigo Lazo</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2008-04-02T17:37:25Z</published>
        <updated>2008-04-02T17:37:25Z</updated>
        <wfw:comment>http://rlazo.supersized.org/wfwcomment.php?cid=68</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://rlazo.supersized.org/rss.php?version=atom1.0&amp;type=comments&amp;cid=68</wfw:commentRss>
    
            <category scheme="http://rlazo.supersized.org/categories/6-Free-Software" label="Free Software" term="Free Software" />
            <category scheme="http://rlazo.supersized.org/categories/10-gmail-sentinel" label="gmail-sentinel" term="gmail-sentinel" />
            <category scheme="http://rlazo.supersized.org/categories/9-python" label="python" term="python" />
    
        <id>http://rlazo.supersized.org/archives/68-guid.html</id>
        <title type="html">gmail-sentinel 0.2 RC</title>
        <content type="xhtml" xml:base="http://rlazo.supersized.org/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>A quick update. I missed the schedule by some days, but here is the release candidate for the 0.2 version. </p>

<ul>
<li>Fixed bug #4</li>
<li>New TODO file, with ideas for new features. If you want to help and don't know where to start this is for you
</ul>

<p><a onclick="javascript:urchinTracker('/extlink/gmail-sentinel.googlecode.com/files/gmail-sentinel-0.2_rc.tar.bz2');" href="http://gmail-sentinel.googlecode.com/files/gmail-sentinel-0.2_rc.tar.bz2">Grab it</a> while it's hot! 
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://rlazo.supersized.org/archives/67-BEH-eshell-and-su.html" rel="alternate" title="BEH: eshell and su" />
        <author>
            <name>Rodrigo Lazo</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2008-03-31T00:01:08Z</published>
        <updated>2008-04-01T23:16:05Z</updated>
        <wfw:comment>http://rlazo.supersized.org/wfwcomment.php?cid=67</wfw:comment>
    
        <slash:comments>3</slash:comments>
        <wfw:commentRss>http://rlazo.supersized.org/rss.php?version=atom1.0&amp;type=comments&amp;cid=67</wfw:commentRss>
    
            <category scheme="http://rlazo.supersized.org/categories/12-BEH" label="BEH" term="BEH" />
            <category scheme="http://rlazo.supersized.org/categories/8-Emacs" label="Emacs" term="Emacs" />
            <category scheme="http://rlazo.supersized.org/categories/6-Free-Software" label="Free Software" term="Free Software" />
    
        <id>http://rlazo.supersized.org/archives/67-guid.html</id>
        <title type="html">BEH: eshell and su</title>
        <content type="xhtml" xml:base="http://rlazo.supersized.org/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>With this entry a new category for emacs related posts will begin
here. <em>Bits from emacs.help</em> are tips and tricks found while reading the emacs.help mailing list</p>

<p>Well, this tips is how to use su inside eshell<p>

<p>From the post: <em>"...Doing su or sudo su does not work like you
expect. This works under the normal shell (M-x shell). I am su:ing
quite much ..."</em> If you have tried, using su inside eshell is
quite paintful, and doesn't work very well. But, come on, there should
be a way of doing it, right?

<p>From the reply: <em>"...Tramp 2.1 supports it. Try "cd/sudo::" in
eshell..."</em> And that's it! you have a fully functional 'suded'
eshell with completition available.
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://rlazo.supersized.org/archives/65-gmail-sentinel-0.2-beta-2.html" rel="alternate" title="gmail-sentinel 0.2 beta 2" />
        <author>
            <name>Rodrigo Lazo</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2008-03-22T03:29:47Z</published>
        <updated>2008-03-22T03:29:47Z</updated>
        <wfw:comment>http://rlazo.supersized.org/wfwcomment.php?cid=65</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://rlazo.supersized.org/rss.php?version=atom1.0&amp;type=comments&amp;cid=65</wfw:commentRss>
    
            <category scheme="http://rlazo.supersized.org/categories/6-Free-Software" label="Free Software" term="Free Software" />
            <category scheme="http://rlazo.supersized.org/categories/10-gmail-sentinel" label="gmail-sentinel" term="gmail-sentinel" />
            <category scheme="http://rlazo.supersized.org/categories/9-python" label="python" term="python" />
    
        <id>http://rlazo.supersized.org/archives/65-guid.html</id>
        <title type="html">gmail-sentinel 0.2 beta 2</title>
        <content type="xhtml" xml:base="http://rlazo.supersized.org/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>Wow!, Now it's time for a second beta release. The changes with the previous release are:</p>

<ul>
<li>New translations: it (thanks to <a onclick="javascript:urchinTracker('/extlink/code.google.com/u/giacomomargarito/');" href="http://code.google.com/u/giacomomargarito/">giacomomargarito</a>) and sk (thanks to <a onclick="javascript:urchinTracker('/extlink/code.google.com/u/shamotj/');" href="http://code.google.com/u/shamotj/">shamotj</a>)
<li>A new HACKING file.
</ul>

<p>I didn't expect to have translations so fast, and I have to apology because I didn't followed the issue tracker too close (I didn't configured the alerts). I hope the new HACKING file will make life easier to anybody who wants to contribute. </p>

<p><a onclick="javascript:urchinTracker('/extlink/gmail-sentinel.googlecode.com/files/gmail-sentinel-0.2_beta2.tar.bz2');" href="http://gmail-sentinel.googlecode.com/files/gmail-sentinel-0.2_beta2.tar.bz2">Here</a> is the link for the new tarball</p>

<p><strong>Warning:</strong> This is a beta version, it may kill eat your dog and steal your wallet. If you find a bug, please report it at our <a onclick="javascript:urchinTracker('/extlink/code.google.com/p/gmail-sentinel/issues/list');" href="http://code.google.com/p/gmail-sentinel/issues/list">bug tracker</a></p> 
            </div>
        </content>
        
    </entry>

</feed>