<?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>Fri, 12 Nov 2010 19:38:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
	<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 Split strings and join lists using Bash by Jacobo de Vera</title>
		<link>http://blog.jacobodevera.com/2009/03/10/split-strings-and-join-lists-using-bash.html/comment-page-1#comment-5101</link>
		<dc:creator>Jacobo de Vera</dc:creator>
		<pubDate>Fri, 12 Nov 2010 19:38:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jacobodevera.com/?p=52#comment-5101</guid>
		<description>@Sean, I ended up putting all my bash and Vim config files up in github:

https://github.com/jdevera/dotfiles

Particularly, you can find the functions mentioned in this post here:

&lt;a href="https://github.com/jdevera/dotfiles/blob/master/bash.d/010_text_functions.sh" rel="nofollow"&gt;010_text_functions.sh&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>@Sean, I ended up putting all my bash and Vim config files up in github:</p>
<p><a href="https://github.com/jdevera/dotfiles" rel="nofollow">https://github.com/jdevera/dotfiles</a></p>
<p>Particularly, you can find the functions mentioned in this post here:</p>
<p><a href="https://github.com/jdevera/dotfiles/blob/master/bash.d/010_text_functions.sh" rel="nofollow">010_text_functions.sh</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Split strings and join lists using Bash by Sean S</title>
		<link>http://blog.jacobodevera.com/2009/03/10/split-strings-and-join-lists-using-bash.html/comment-page-1#comment-5097</link>
		<dc:creator>Sean S</dc:creator>
		<pubDate>Fri, 12 Nov 2010 17:03:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jacobodevera.com/?p=52#comment-5097</guid>
		<description>If you ever get a chance to post your newest versions of split and join I would greatly appreciate it.
I am writing a few string and list manipulation functions in pure BASH and it would be nice to se some code even if it is using AWK and SED</description>
		<content:encoded><![CDATA[<p>If you ever get a chance to post your newest versions of split and join I would greatly appreciate it.<br />
I am writing a few string and list manipulation functions in pure BASH and it would be nice to se some code even if it is using AWK and SED</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNOME Network Manager Applet With Multiple Users by Jacobo de Vera</title>
		<link>http://blog.jacobodevera.com/2009/07/30/gnome-network-manager-applet-with-multiple-users.html/comment-page-1#comment-4868</link>
		<dc:creator>Jacobo de Vera</dc:creator>
		<pubDate>Wed, 03 Nov 2010 06:36:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jacobodevera.com/?p=65#comment-4868</guid>
		<description>Excellent idea, I'll definitely give it a try. Thanks!</description>
		<content:encoded><![CDATA[<p>Excellent idea, I&#8217;ll definitely give it a try. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNOME Network Manager Applet With Multiple Users by Pingwin</title>
		<link>http://blog.jacobodevera.com/2009/07/30/gnome-network-manager-applet-with-multiple-users.html/comment-page-1#comment-4864</link>
		<dc:creator>Pingwin</dc:creator>
		<pubDate>Wed, 03 Nov 2010 00:52:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jacobodevera.com/?p=65#comment-4864</guid>
		<description>Hi,
I tried to automatize this kind of workaround :)
Here is a script which I put to gnome-session-properties for all users.
It checks nm-applet status and username. 
In case it's running under another user it kills nm-applet (you need to modify /etc/sudoers of course) and start it again.
So you don't need to kill nm-applet manually, just add it to gnome autostart.

nm-applet-reload.sh:
#!/bin/sh
LOG=/path/to/nm-applet-reload.log
DATE=`date +%F_%T`
############################
if [ `ps -ef|grep -v grep|grep /usr/bin/nm-applet|grep \`whoami\`|wc -l` == 0 ]; then
	echo $DATE &gt;&gt; $LOG
	whoami &gt;&gt; $LOG
	sudo /usr/bin/killall nm-applet  &gt;&gt;$LOG 2&gt;&amp;1
	/usr/bin/nm-applet --sm-disable  &gt;&gt;$LOG 2&gt;&amp;1 &amp;
	echo "nm-applet RESTARTED" &gt;&gt; $LOG
fi


Enjoy it :)
regards from CZE
//Pingwin</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I tried to automatize this kind of workaround <img src='http://blog.jacobodevera.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Here is a script which I put to gnome-session-properties for all users.<br />
It checks nm-applet status and username.<br />
In case it&#8217;s running under another user it kills nm-applet (you need to modify /etc/sudoers of course) and start it again.<br />
So you don&#8217;t need to kill nm-applet manually, just add it to gnome autostart.</p>
<p>nm-applet-reload.sh:<br />
#!/bin/sh<br />
LOG=/path/to/nm-applet-reload.log<br />
DATE=`date +%F_%T`<br />
############################<br />
if [ `ps -ef|grep -v grep|grep /usr/bin/nm-applet|grep \`whoami\`|wc -l` == 0 ]; then<br />
	echo $DATE &gt;&gt; $LOG<br />
	whoami &gt;&gt; $LOG<br />
	sudo /usr/bin/killall nm-applet  &gt;&gt;$LOG 2&gt;&amp;1<br />
	/usr/bin/nm-applet &#8211;sm-disable  &gt;&gt;$LOG 2&gt;&amp;1 &amp;<br />
	echo &#8220;nm-applet RESTARTED&#8221; &gt;&gt; $LOG<br />
fi</p>
<p>Enjoy it <img src='http://blog.jacobodevera.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
regards from CZE<br />
//Pingwin</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNOME Network Manager Applet With Multiple Users by Erwan</title>
		<link>http://blog.jacobodevera.com/2009/07/30/gnome-network-manager-applet-with-multiple-users.html/comment-page-1#comment-2403</link>
		<dc:creator>Erwan</dc:creator>
		<pubDate>Mon, 05 Jul 2010 21:15:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jacobodevera.com/?p=65#comment-2403</guid>
		<description>Thanks a lot for this tip. I just installed Ubuntu Lucid, and the bug is still there :-(. I really had to find a solution for my wife to accept to use it !
I have created a launcher and it works perfectly well.</description>
		<content:encoded><![CDATA[<p>Thanks a lot for this tip. I just installed Ubuntu Lucid, and the bug is still there <img src='http://blog.jacobodevera.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> . I really had to find a solution for my wife to accept to use it !<br />
I have created a launcher and it works perfectly well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My On-line Identity by Silvana Seefeldt</title>
		<link>http://blog.jacobodevera.com/2010/01/30/my-on-line-identity.html/comment-page-1#comment-2104</link>
		<dc:creator>Silvana Seefeldt</dc:creator>
		<pubDate>Sat, 05 Jun 2010 17:40:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jacobodevera.com/?p=125#comment-2104</guid>
		<description>Now you're making me jealous .</description>
		<content:encoded><![CDATA[<p>Now you&#8217;re making me jealous .</p>
]]></content:encoded>
	</item>
	<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>
</channel>
</rss>

