<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	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/"
		>
<channel>
	<title>Comments on: Shell scripts that talk back (and make you millions)</title>
	<atom:link href="http://www.juliesoft.com/2010/03/shell-scripts-that-talk-back-and-make-you-millions/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.juliesoft.com/2010/03/shell-scripts-that-talk-back-and-make-you-millions/</link>
	<description>solve niche problems, make users happy</description>
	<lastBuildDate>Wed, 02 Nov 2011 10:38:26 -0400</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jon Chase</title>
		<link>http://www.juliesoft.com/2010/03/shell-scripts-that-talk-back-and-make-you-millions/comment-page-1/#comment-583</link>
		<dc:creator>Jon Chase</dc:creator>
		<pubDate>Sat, 03 Apr 2010 08:04:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.juliesoft.com/?p=321#comment-583</guid>
		<description>@jay - nice!  I didn&#039;t even think about Growl.  I might have to work that in as well, just in case I have my speakers turned off. 

@rusty - I didn&#039;t realize how easy it&#039;d be to play sounds on Linux.  I love apt-get.</description>
		<content:encoded><![CDATA[<p>@jay &#8211; nice!  I didn&#8217;t even think about Growl.  I might have to work that in as well, just in case I have my speakers turned off. </p>
<p>@rusty &#8211; I didn&#8217;t realize how easy it&#8217;d be to play sounds on Linux.  I love apt-get.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay</title>
		<link>http://www.juliesoft.com/2010/03/shell-scripts-that-talk-back-and-make-you-millions/comment-page-1/#comment-579</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Fri, 02 Apr 2010 07:33:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.juliesoft.com/?p=321#comment-579</guid>
		<description>Great tip and timely too. Just today I was working on a python script to monitor our svn repository and pop up Growl notifications when it was out of date. It uses the &quot;growlnotify&quot; command line client to actually generate the notices: http://growl.info/documentation/growlnotify.php Useful in case the voices freak you or if you want to push notices to an iPhone (http://prowl.weks.net/)</description>
		<content:encoded><![CDATA[<p>Great tip and timely too. Just today I was working on a python script to monitor our svn repository and pop up Growl notifications when it was out of date. It uses the &#8220;growlnotify&#8221; command line client to actually generate the notices: <a href="http://growl.info/documentation/growlnotify.php" rel="nofollow">http://growl.info/documentation/growlnotify.php</a> Useful in case the voices freak you or if you want to push notices to an iPhone (<a href="http://prowl.weks.net/)" rel="nofollow">http://prowl.weks.net/)</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rusty Weneck</title>
		<link>http://www.juliesoft.com/2010/03/shell-scripts-that-talk-back-and-make-you-millions/comment-page-1/#comment-577</link>
		<dc:creator>Rusty Weneck</dc:creator>
		<pubDate>Thu, 01 Apr 2010 12:42:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.juliesoft.com/?p=321#comment-577</guid>
		<description>For you Linux users out there, I reccommend sox, http://sox.sourceforge.net/ (sudo apt-get install sox). Then you can use 

~#play myMp3.mp3

As well as many others.</description>
		<content:encoded><![CDATA[<p>For you Linux users out there, I reccommend sox, <a href="http://sox.sourceforge.net/" rel="nofollow">http://sox.sourceforge.net/</a> (sudo apt-get install sox). Then you can use </p>
<p>~#play myMp3.mp3</p>
<p>As well as many others.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Chase</title>
		<link>http://www.juliesoft.com/2010/03/shell-scripts-that-talk-back-and-make-you-millions/comment-page-1/#comment-576</link>
		<dc:creator>Jon Chase</dc:creator>
		<pubDate>Thu, 01 Apr 2010 05:41:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.juliesoft.com/?p=321#comment-576</guid>
		<description>Thanks for the tip, Jeff.  I didn&#039;t realize that was built into .NET.  I wonder if Java has that capability...</description>
		<content:encoded><![CDATA[<p>Thanks for the tip, Jeff.  I didn&#8217;t realize that was built into .NET.  I wonder if Java has that capability&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Lewis</title>
		<link>http://www.juliesoft.com/2010/03/shell-scripts-that-talk-back-and-make-you-millions/comment-page-1/#comment-575</link>
		<dc:creator>Jeff Lewis</dc:creator>
		<pubDate>Wed, 31 Mar 2010 20:37:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.juliesoft.com/?p=321#comment-575</guid>
		<description>I didn&#039;t know about the say command in OSX.  Here is a C#/.NET 3.5 version in a few lines:  

	class Program
	{
		static void Main(string[] args)
		{
			string words = string.Join(&quot; &quot;, args);
			var s = new SpeechSynthesizer();
			s.Speak(words);
		}
	}</description>
		<content:encoded><![CDATA[<p>I didn&#8217;t know about the say command in OSX.  Here is a C#/.NET 3.5 version in a few lines:  </p>
<p>	class Program<br />
	{<br />
		static void Main(string[] args)<br />
		{<br />
			string words = string.Join(&#8221; &#8220;, args);<br />
			var s = new SpeechSynthesizer();<br />
			s.Speak(words);<br />
		}<br />
	}</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
