<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" 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/" version="2.0">
<channel>
	<title>Comments for Jacobo de Vera's Weblog</title>
	
	<link>http://blog.jacobodevera.com</link>
	<description>On Technology, Programming, Internet and more</description>
	<lastBuildDate>Sat, 06 Mar 2010 23:22:48 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/CommentsForJacoboDeVeraWeblog" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="commentsforjacobodeveraweblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Comment on In The Beginning by Andrew A. Sailer</title>
		<link>http://blog.jacobodevera.com/2009/02/21/in-the-beginning.html/comment-page-1#comment-390</link>
		<dc:creator>Andrew A. Sailer</dc:creator>
		<pubDate>Sat, 06 Mar 2010 23:22:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jacobodevera.com/?p=30#comment-390</guid>
		<description>This is great! Thanks for the article. I am new at development and this will be a big help.</description>
		<content:encoded><![CDATA[<p>This is great! Thanks for the article. I am new at development and this will be a big help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My On-line Identity by Ruyk</title>
		<link>http://blog.jacobodevera.com/2010/01/30/my-on-line-identity.html/comment-page-1#comment-171</link>
		<dc:creator>Ruyk</dc:creator>
		<pubDate>Mon, 01 Feb 2010 10:39:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jacobodevera.com/?p=125#comment-171</guid>
		<description>Interesting theory about online-privacy. From a couple of years ago, I've been using something similar for myself. If you do a Google search on "Ruymán Reyes", you'll find my facebook, where I put most of my private stuff, and some links to presentations and two places: My linkedin and my tech blog. If you enter my tech blog, you'll find my most common internet nickname, which is Ruyk. Usually I don't use that nickname for online registrations, so its not easy to find me on the internet. 
However, reading your post I've been concerned about the importance of an online privacy strategy, particularly while mixing personal and job information. 
Thank you for sharing your toughs!</description>
		<content:encoded><![CDATA[<p>Interesting theory about online-privacy. From a couple of years ago, I&#8217;ve been using something similar for myself. If you do a Google search on &#8220;Ruymán Reyes&#8221;, you&#8217;ll find my facebook, where I put most of my private stuff, and some links to presentations and two places: My linkedin and my tech blog. If you enter my tech blog, you&#8217;ll find my most common internet nickname, which is Ruyk. Usually I don&#8217;t use that nickname for online registrations, so its not easy to find me on the internet.<br />
However, reading your post I&#8217;ve been concerned about the importance of an online privacy strategy, particularly while mixing personal and job information.<br />
Thank you for sharing your toughs!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Split strings and join lists using Bash by jdevera</title>
		<link>http://blog.jacobodevera.com/2009/03/10/split-strings-and-join-lists-using-bash.html/comment-page-1#comment-70</link>
		<dc:creator>jdevera</dc:creator>
		<pubDate>Wed, 02 Dec 2009 08:35:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jacobodevera.com/?p=52#comment-70</guid>
		<description>Indeed, using &lt;em&gt;tr&lt;/em&gt; is much simpler if your delimiter is only one character. By the time I wrote those functions I was obsessed with the idea of doing this without using the "\n" character, which I failed to do in &lt;em&gt;myjoin&lt;/em&gt;. In fact, a more recent version of &lt;em&gt;myjoin&lt;/em&gt; (that I still have to post here) uses neither "\n" nor the &lt;em&gt;addslashesforsed&lt;/em&gt; helper function.</description>
		<content:encoded><![CDATA[<p>Indeed, using <em>tr</em> is much simpler if your delimiter is only one character. By the time I wrote those functions I was obsessed with the idea of doing this without using the &#8220;\n&#8221; character, which I failed to do in <em>myjoin</em>. In fact, a more recent version of <em>myjoin</em> (that I still have to post here) uses neither &#8220;\n&#8221; nor the <em>addslashesforsed</em> helper function.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Split strings and join lists using Bash by Peeter Joot</title>
		<link>http://blog.jacobodevera.com/2009/03/10/split-strings-and-join-lists-using-bash.html/comment-page-1#comment-69</link>
		<dc:creator>Peeter Joot</dc:creator>
		<pubDate>Tue, 01 Dec 2009 15:40:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jacobodevera.com/?p=52#comment-69</guid>
		<description>if you aim is just to split $PATH, then the following less general solution is one that I often use:

echo $PATH | tr : '\n'

sometimes we have problematic network components in the $PATH at work ... doing something like this, and then reversing it with

tr '\n' :

can be very handy until machines come back to life.</description>
		<content:encoded><![CDATA[<p>if you aim is just to split $PATH, then the following less general solution is one that I often use:</p>
<p>echo $PATH | tr : &#8216;\n&#8217;</p>
<p>sometimes we have problematic network components in the $PATH at work &#8230; doing something like this, and then reversing it with</p>
<p>tr &#8216;\n&#8217; :</p>
<p>can be very handy until machines come back to life.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNOME Network Manager Applet With Multiple Users by jdevera</title>
		<link>http://blog.jacobodevera.com/2009/07/30/gnome-network-manager-applet-with-multiple-users.html/comment-page-1#comment-14</link>
		<dc:creator>jdevera</dc:creator>
		<pubDate>Fri, 31 Jul 2009 12:56:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jacobodevera.com/?p=65#comment-14</guid>
		<description>@Ruyk, That is indeed a very good idea. It follows the &lt;a href="http://en.wikipedia.org/wiki/KISS_principle" rel="nofollow"&gt;KISS principle&lt;/a&gt; much better than my original approach, so I decided to rewrite this entry to follow your suggestion. Thanks!</description>
		<content:encoded><![CDATA[<p>@Ruyk, That is indeed a very good idea. It follows the <a href="http://en.wikipedia.org/wiki/KISS_principle" rel="nofollow">KISS principle</a> much better than my original approach, so I decided to rewrite this entry to follow your suggestion. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNOME Network Manager Applet With Multiple Users by Ruyk</title>
		<link>http://blog.jacobodevera.com/2009/07/30/gnome-network-manager-applet-with-multiple-users.html/comment-page-1#comment-13</link>
		<dc:creator>Ruyk</dc:creator>
		<pubDate>Fri, 31 Jul 2009 11:41:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jacobodevera.com/?p=65#comment-13</guid>
		<description>Why don't use sudo instead of compiling a C source? For example, adding this line to your sudoers file:

%users ALL=NOPASSWD:/usr/bin/killall nm-applet

So, your script could look like this:

#!/bin/bash

sudo /usr/bin/killall nm-applet
/usr/bin/nm-applet --sm-disable &gt;/dev/null 2&gt;&amp;1 &amp;

It is just an idea... :-)</description>
		<content:encoded><![CDATA[<p>Why don&#8217;t use sudo instead of compiling a C source? For example, adding this line to your sudoers file:</p>
<p>%users ALL=NOPASSWD:/usr/bin/killall nm-applet</p>
<p>So, your script could look like this:</p>
<p>#!/bin/bash</p>
<p>sudo /usr/bin/killall nm-applet<br />
/usr/bin/nm-applet &#8211;sm-disable &gt;/dev/null 2&gt;&amp;1 &amp;</p>
<p>It is just an idea&#8230; <img src='http://blog.jacobodevera.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to escape single quotes in Sed one-liners by Mojito</title>
		<link>http://blog.jacobodevera.com/2009/04/10/how-to-escape-single-quotes-in-sed-one-liners.html/comment-page-1#comment-12</link>
		<dc:creator>Mojito</dc:creator>
		<pubDate>Mon, 22 Jun 2009 22:52:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jacobodevera.com/?p=60#comment-12</guid>
		<description>***thanks***

(Y abrazos!) :-)</description>
		<content:encoded><![CDATA[<p>***thanks***</p>
<p>(Y abrazos!) <img src='http://blog.jacobodevera.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Split strings and join lists using Bash by hongchao</title>
		<link>http://blog.jacobodevera.com/2009/03/10/split-strings-and-join-lists-using-bash.html/comment-page-1#comment-11</link>
		<dc:creator>hongchao</dc:creator>
		<pubDate>Tue, 17 Mar 2009 19:49:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jacobodevera.com/?p=52#comment-11</guid>
		<description>nice article, mate. but when it comes to the list handling, lisp (LISt Processing language) rules all:)

just kidding. very elegant and useful bash function, i am gonna use them:)</description>
		<content:encoded><![CDATA[<p>nice article, mate. but when it comes to the list handling, lisp (LISt Processing language) rules all:)</p>
<p>just kidding. very elegant and useful bash function, i am gonna use them:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Split strings and join lists using Bash by miguev</title>
		<link>http://blog.jacobodevera.com/2009/03/10/split-strings-and-join-lists-using-bash.html/comment-page-1#comment-10</link>
		<dc:creator>miguev</dc:creator>
		<pubDate>Tue, 10 Mar 2009 22:28:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jacobodevera.com/?p=52#comment-10</guid>
		<description>Always Changing The Future Is, but that new OS may be worth a post or two :-P</description>
		<content:encoded><![CDATA[<p>Always Changing The Future Is, but that new OS may be worth a post or two <img src='http://blog.jacobodevera.com/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Split strings and join lists using Bash by jdevera</title>
		<link>http://blog.jacobodevera.com/2009/03/10/split-strings-and-join-lists-using-bash.html/comment-page-1#comment-9</link>
		<dc:creator>jdevera</dc:creator>
		<pubDate>Tue, 10 Mar 2009 17:54:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jacobodevera.com/?p=52#comment-9</guid>
		<description>@Reena, apologies first for replying in English and also for disappointing you. This new blog not only brings a change in the language, but also in style and subjects. The old blog was mainly about me whereas this one is mainly about things I learn. It is too early for me to know if all the posts will be as technical as those first ones, although I’d like them not to, but I can already tell you that I doubt there will be the kind of gossip known as CO TI LLE OS here.

In the future, Once I have generated more content, I might even categorize it or tag it according to the geek factor or technical depth of each article, so that you can filter out the über-geek content that you don’t want to read, but right now, again, it is too early to say.</description>
		<content:encoded><![CDATA[<p>@Reena, apologies first for replying in English and also for disappointing you. This new blog not only brings a change in the language, but also in style and subjects. The old blog was mainly about me whereas this one is mainly about things I learn. It is too early for me to know if all the posts will be as technical as those first ones, although I’d like them not to, but I can already tell you that I doubt there will be the kind of gossip known as CO TI LLE OS here.</p>
<p>In the future, Once I have generated more content, I might even categorize it or tag it according to the geek factor or technical depth of each article, so that you can filter out the über-geek content that you don’t want to read, but right now, again, it is too early to say.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
