<?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: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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Washington, DC Web Design by GroovySoup</title>
	
	<link>http://www.groovysoup.com</link>
	<description />
	<lastBuildDate>Mon, 08 Mar 2010 21:05:59 +0000</lastBuildDate>
	
	<language>en</language>
	<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/NashvilleWebDesignByGroovysoup" /><feedburner:info uri="nashvillewebdesignbygroovysoup" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>How to Build M3U and PLS files (playlists for audio files)</title>
		<link>http://feedproxy.google.com/~r/NashvilleWebDesignByGroovysoup/~3/J8tvZoo61r4/</link>
		<comments>http://www.groovysoup.com/how-to-build-m3u-and-pls-files-playlists-for-audio-files/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 21:05:59 +0000</pubDate>
		<dc:creator>Dave Newman</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[ITunes]]></category>
		<category><![CDATA[m3u]]></category>
		<category><![CDATA[pls]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.groovysoup.com/?p=683</guid>
		<description><![CDATA[Okay, so that might be the geekiest blog post title ever but I don&#8217;t know how else to say it. The situation is this: You have a client and they need to upload an album for download. Whether it&#8217;s a paid download or free doesn&#8217;t really matter at this point. You&#8217;re going to need this [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-689" title="itunes" src="http://www.groovysoup.com/wp-content/uploads/2010/03/Screen-shot-2010-03-08-at-4.03.33-PM.jpg" alt="" width="134" height="142" />Okay, so that might be the geekiest blog post title ever but I don&#8217;t know how else to say it. The situation is this: You have a client and they need to upload an album for download. Whether it&#8217;s a paid download or free doesn&#8217;t really matter at this point. You&#8217;re going to need this process to be as foolproof as possible so you should include both the <a class="zem_slink" title="M3U" rel="wikipedia" href="http://en.wikipedia.org/wiki/M3U">M3U</a> playlist to cover non-iTunes users and the <a class="zem_slink" title="PLS (file format)" rel="wikipedia" href="http://en.wikipedia.org/wiki/PLS_%28file_format%29">PLS</a> file format to cover iTunes and Windows Media Player users. This way your end user will be able to click these files and a playlist or album will be created in their software program or the playlist you determine will start to play immediately in their audio program.</p>
<p>You&#8217;re going to need to gather some info about your MP3s in order to build these files. Here&#8217;s what you need:</p>
<ol>
<li>Artist name</li>
<li>Title of each track</li>
<li>Length of each track (in seconds &#8211; multiply the number of minutes by 60 and add the seconds to it. So 4:22 would be 262 seconds)</li>
<li>Full file name for each track (ex. Overview.mp3)</li>
</ol>
<p>Okay so let&#8217;s build our files, M3U first. According to Wikipedia, the file starts out like so:</p>
<pre>#EXTM3U

#EXTINF:41,Artist Name - Track Title
filename.mp3
</pre>
<p><a href="http://www.groovysoup.com/wp-content/uploads/2010/03/Screen-shot-2010-03-08-at-2.40.31-PM.jpg"><img class="alignleft size-thumbnail wp-image-684" title="itunes" src="http://www.groovysoup.com/wp-content/uploads/2010/03/Screen-shot-2010-03-08-at-2.40.31-PM-240x150.jpg" alt="" width="202" height="126" /></a>So for the additional tracks in this file you just cut and paste the example above (except that opening line (#EXTM3U that tells your software what kind of file it is), the #EXTINF: will stay for all files, the 41 is the track time, artist name, hyphen, track title, line break, filename are all kind of self explanatory. It needs to be in this format including the hyphen and line break. Then skip a line and paste your next one in.</p>
<p>For the PLS file things are pretty similar. Here&#8217;s what it looks like for a two track playlist:</p>
<pre>  [playlist]

File1=01_Overview.mp3
Title1=Overview
Length1=41

File2=02_What_is_Meditation.mp3
Title2=What is Meditation
Length2=287

NumberOfEntries=2

Version=2
</pre>
<p>So things look pretty similar here. Filename, title, length in seconds. Then you tell how many entries were in the list and it has to be Version=2 for some reason. Again, Wikipedia has the scoop on this but this will get you started. Copy and paste tracks like you did before and duplicate the line breaks like I have here.</p>
<p>Here&#8217;s the key to both of these files as far as keeping it simple for your user: <strong>Zip all of your files together and include the M3U and PLS file in that zipped directory. </strong>Why? I know Wikipedia doesn&#8217;t tell you to but the thing is, when your user downloads the files, you don&#8217;t really know where they are going to be saved. By zipping the files up, you make sure all the files will be in the same place as your playlist files. So, when the user clicks one of the playlists, the player will look for the files RELATIVE to where your playlists are, and since they&#8217;re in the same directory they&#8217;ll work correctly :)</p>
<h6 class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.jakeludington.com/windows_media/20091115_how_to_print_a_playlist_of_music.html">How to Print a Playlist of Music</a> (jakeludington.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.tuaw.com/2009/10/30/5-smart-playlists-to-help-you-manage-your-itunes-library/">5 Smart Playlists to help you manage your iTunes library</a> (tuaw.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.computerworld.com/s/article/9165858/Backing_up_an_iTunes_library?source=rss_news">Backing up an iTunes library</a> (computerworld.com)</li>
</ul>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=007c1438-4e62-4611-a14c-6d0c76c0880d" alt="" /><span class="zem-script pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NashvilleWebDesignByGroovysoup?a=J8tvZoo61r4:AXagsac1O58:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/NashvilleWebDesignByGroovysoup?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/NashvilleWebDesignByGroovysoup/~4/J8tvZoo61r4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.groovysoup.com/how-to-build-m3u-and-pls-files-playlists-for-audio-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.groovysoup.com/how-to-build-m3u-and-pls-files-playlists-for-audio-files/</feedburner:origLink></item>
		<item>
		<title>Two Quick Wordpress Fixes</title>
		<link>http://feedproxy.google.com/~r/NashvilleWebDesignByGroovysoup/~3/tdLJuDOcoC8/</link>
		<comments>http://www.groovysoup.com/two-quick-wordpress-fixes/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 21:40:13 +0000</pubDate>
		<dc:creator>Dave Newman</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.groovysoup.com/?p=680</guid>
		<description><![CDATA[
Let&#8217;s say you&#8217;re trying to upgrade all of your plug ins at once using Tools &#62; Upgrade. Let&#8217;s also say that Wordpress hangs mid upgrade with the site in maintenance mode. How do you fix it? Assuming you have FTP access, go to the top level directory for your Wordpress install and delete the file [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-654" title="WordPress Goodies" src="http://www.groovysoup.com/wp-content/uploads/2009/12/wp1.gif" alt="" width="570" height="162" /></p>
<p>Let&#8217;s say you&#8217;re trying to upgrade all of your plug ins at once using Tools &gt; Upgrade. Let&#8217;s also say that <a class="zem_slink" title="WordPress" rel="homepage" href="http://wordpress.org">Wordpress</a> hangs mid upgrade with the site in maintenance mode. How do you fix it? Assuming you have FTP access, go to the top level directory for your Wordpress install and delete the file named &#8220;.maintenance&#8221;. This file is created when you opt to do mass upgrades and generates the &#8220;Site in Maintenance mode, come back in a minute&#8221; message.</p>
<p>Related to this potential disaster is the &#8220;I can&#8217;t get my damn Wordpress to auto update&#8221; issue. I happen to have been suffering from this one on a few blogs and guess what? It&#8217;s one of the plug ins I have installed on the site(s). Solution? Go to your Plug ins page, deactivate all of your plug ins, do your WP core upgrade, then re-activate all of your plug ins. It worked for me but your results may vary :) I found this solution <a href="http://wordpress.org/support/topic/278746">here</a>.</p>
<h6 class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.howtospoter.com/web-20/wordpress/wordpress-2-9-2-should-you-upgrade">WordPress 2.9.2 &#8211; Should you Upgrade?</a> (howtospoter.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.nofluffjuststuff.com/blog/emmanuel_bernard/2010/02/migrating_from_blogger_esp_ftp_to_wordpress?utm_source=blogitem&amp;utm_medium=rss&amp;utm_campaign=blogrss">Migrating from Blogger (esp FTP) to Wordpress</a> (nofluffjuststuff.com)</li>
<li class="zemanta-article-ul-li"><a href="http://thewordpresswizard.com/wordpress-plugins-a-list-of-5-recommended-plugins/">WordPress Plugins &#8211; A List of 5 Recommended Plugins</a> (thewordpresswizard.com)</li>
</ul>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=f2421e28-96ce-41dc-8432-8fb9e2cbfca5" alt="" /><span class="zem-script pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NashvilleWebDesignByGroovysoup?a=tdLJuDOcoC8:KzIkdRFaaIQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/NashvilleWebDesignByGroovysoup?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/NashvilleWebDesignByGroovysoup/~4/tdLJuDOcoC8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.groovysoup.com/two-quick-wordpress-fixes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.groovysoup.com/two-quick-wordpress-fixes/</feedburner:origLink></item>
		<item>
		<title>You can thank me later for this…</title>
		<link>http://feedproxy.google.com/~r/NashvilleWebDesignByGroovysoup/~3/la6kBbwk55g/</link>
		<comments>http://www.groovysoup.com/you-can-thank-me-later-for-this/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 18:07:03 +0000</pubDate>
		<dc:creator>Dave Newman</dc:creator>
				<category><![CDATA[Goofy]]></category>
		<category><![CDATA[80's]]></category>
		<category><![CDATA[Shaduppayouface]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://www.groovysoup.com/?p=676</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="384" height="313"><param name="movie" value="http://www.youtube.com/v/J-ML5Ntvb2o&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/J-ML5Ntvb2o&#038;fs=1" type="application/x-shockwave-flash" width="384" height="313" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NashvilleWebDesignByGroovysoup?a=la6kBbwk55g:xSXhUFS9VEQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/NashvilleWebDesignByGroovysoup?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/NashvilleWebDesignByGroovysoup/~4/la6kBbwk55g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.groovysoup.com/you-can-thank-me-later-for-this/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.groovysoup.com/you-can-thank-me-later-for-this/</feedburner:origLink></item>
		<item>
		<title>My Twitter Blabberings for 2009-12-20</title>
		<link>http://feedproxy.google.com/~r/NashvilleWebDesignByGroovysoup/~3/kW9TfQv9qik/</link>
		<comments>http://www.groovysoup.com/my-twitter-blabberings-for-2009-12-20/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 01:02:06 +0000</pubDate>
		<dc:creator>Dave Newman</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[tweets]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.groovysoup.com/my-twitter-blabberings-for-2009-12-20/</guid>
		<description><![CDATA[
Reading: Best Sign Yet That AT&#38;T’s Days as Exclusive iPhone Carrier Are Numbered http://bit.ly/5zL0nG 14:58:29
RT @jasonRmoore: Think I&#39;m witnessing emergency landing by southwest airline plane in Hopkinsville KY! seriously 16:49:57
Reading: Call Bank Of America About Account, Get Credit Limit Cut By 65% http://bit.ly/4E9DnC 17:58:31
Reading: Sorry, It&#39;s Your Problem That AT&#38;T Rep Lied About Smartphone Data [...]]]></description>
			<content:encoded><![CDATA[<ul class="ws_tweet_list">
<li class="ws_tweet">Reading: Best Sign Yet That AT&amp;T’s Days as Exclusive iPhone Carrier Are Numbered <a href="http://bit.ly/5zL0nG" rel="nofollow">http://bit.ly/5zL0nG</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6869344914">14:58:29</a></li>
<li class="ws_tweet">RT <a href="http://twitter.com/jasonRmoore">@jasonRmoore</a>: Think I&#39;m witnessing emergency landing by southwest airline plane in Hopkinsville KY! seriously <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6872173779">16:49:57</a></li>
<li class="ws_tweet">Reading: Call Bank Of America About Account, Get Credit Limit Cut By 65% <a href="http://bit.ly/4E9DnC" rel="nofollow">http://bit.ly/4E9DnC</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6873914093">17:58:31</a></li>
<li class="ws_tweet">Reading: Sorry, It&#39;s Your Problem That AT&amp;T Rep Lied About Smartphone Data Plans <a href="http://bit.ly/76DHmP" rel="nofollow">http://bit.ly/76DHmP</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6877138084">19:58:30</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NashvilleWebDesignByGroovysoup?a=kW9TfQv9qik:JYZND0-9XkM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/NashvilleWebDesignByGroovysoup?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/NashvilleWebDesignByGroovysoup/~4/kW9TfQv9qik" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.groovysoup.com/my-twitter-blabberings-for-2009-12-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.groovysoup.com/my-twitter-blabberings-for-2009-12-20/</feedburner:origLink></item>
		<item>
		<title>My Twitter Blabberings for 2009-12-18</title>
		<link>http://feedproxy.google.com/~r/NashvilleWebDesignByGroovysoup/~3/uVYG4F71-JA/</link>
		<comments>http://www.groovysoup.com/my-twitter-blabberings-for-2009-12-18/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 06:02:06 +0000</pubDate>
		<dc:creator>Dave Newman</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[tweets]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.groovysoup.com/my-twitter-blabberings-for-2009-12-18/</guid>
		<description><![CDATA[
RT @GaryHonig: 22 banks who got most help from Treasury bailout decreased small biz lending by $11.6 billion http://bit.ly/4U2TLO 09:44:52
Reading: AT&#38;T Consistenty Spent Less On Network Construction Since iPhone Launch http://bit.ly/8WRQez 09:58:25
Reading: iPhone Has 46 Percent of Japanese Smartphone Market http://bit.ly/7h0cED 11:58:21
you know how DC  is different from Nashville? I just saw Marine One [...]]]></description>
			<content:encoded><![CDATA[<ul class="ws_tweet_list">
<li class="ws_tweet">RT <a href="http://twitter.com/GaryHonig">@GaryHonig</a>: 22 banks who got most help from Treasury bailout decreased small biz lending by $11.6 billion <a href="http://bit.ly/4U2TLO" rel="nofollow">http://bit.ly/4U2TLO</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6797816724">09:44:52</a></li>
<li class="ws_tweet">Reading: AT&amp;T Consistenty Spent Less On Network Construction Since iPhone Launch <a href="http://bit.ly/8WRQez" rel="nofollow">http://bit.ly/8WRQez</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6798190091">09:58:25</a></li>
<li class="ws_tweet">Reading: iPhone Has 46 Percent of Japanese Smartphone Market <a href="http://bit.ly/7h0cED" rel="nofollow">http://bit.ly/7h0cED</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6801696732">11:58:21</a></li>
<li class="ws_tweet">you know how DC  is different from Nashville? I just saw Marine One from the living room window. <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6804979562">13:57:33</a></li>
<li class="ws_tweet">Reading: BusinessWeek: ‘Verizon Wireless Prepares for the iPhone’ <a href="http://bit.ly/5o7Fzs" rel="nofollow">http://bit.ly/5o7Fzs</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6805002046">13:58:24</a></li>
<li class="ws_tweet">Just one minute until AT&amp;T receives their holiday gift from iPhone users :) <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6806610287">14:59:26</a></li>
<li class="ws_tweet">Reading: Rumor: Verizon Wireless prepares for the iPhone <a href="http://bit.ly/7vvIBg" rel="nofollow">http://bit.ly/7vvIBg</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6808152685">15:58:23</a></li>
<li class="ws_tweet">Reading: AT&amp;T isn&#39;t working that hard on network upgrades <a href="http://bit.ly/7lM2Hp" rel="nofollow">http://bit.ly/7lM2Hp</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6819060677">22:58:26</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NashvilleWebDesignByGroovysoup?a=uVYG4F71-JA:JpkzP-tvSsI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/NashvilleWebDesignByGroovysoup?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/NashvilleWebDesignByGroovysoup/~4/uVYG4F71-JA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.groovysoup.com/my-twitter-blabberings-for-2009-12-18/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.groovysoup.com/my-twitter-blabberings-for-2009-12-18/</feedburner:origLink></item>
		<item>
		<title>My Twitter Blabberings for 2009-12-16</title>
		<link>http://feedproxy.google.com/~r/NashvilleWebDesignByGroovysoup/~3/DpNLrbfTr2I/</link>
		<comments>http://www.groovysoup.com/my-twitter-blabberings-for-2009-12-16/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 16:35:51 +0000</pubDate>
		<dc:creator>Dave Newman</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[tweets]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.groovysoup.com/my-twitter-blabberings-for-2009-12-16/</guid>
		<description><![CDATA[
I just found a Gowalla T-shirt playing @gowalla: http://gowal.la/gift 12:33:16
Reading: Operation Chokehold: AT&#38;T Users To Protest Slow Network By Simultaneously Running Data-Int.. http://bit.ly/7YnkGJ 13:01:47
Reading: 2011 Audi A8: The first production vehicle equipped with Google Earth http://bit.ly/7eDJVW 14:00:04
Reading: Walmart Overcharges Soldiers Stationed Abroad For Shipping http://bit.ly/5JdIyD 14:59:59
Reading: McDonald&#39;s To Offer Free Wifi http://bit.ly/5HNn2S 17:00:22
Reading: FCC now [...]]]></description>
			<content:encoded><![CDATA[<ul class="ws_tweet_list">
<li class="ws_tweet">I just found a Gowalla T-shirt playing <a href="http://twitter.com/gowalla">@gowalla</a>: <a href="http://gowal.la/gift" rel="nofollow">http://gowal.la/gift</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6736475580">12:33:16</a></li>
<li class="ws_tweet">Reading: Operation Chokehold: AT&amp;T Users To Protest Slow Network By Simultaneously Running Data-Int.. <a href="http://bit.ly/7YnkGJ" rel="nofollow">http://bit.ly/7YnkGJ</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6737230028">13:01:47</a></li>
<li class="ws_tweet">Reading: 2011 Audi A8: The first production vehicle equipped with Google Earth <a href="http://bit.ly/7eDJVW" rel="nofollow">http://bit.ly/7eDJVW</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6738746752">14:00:04</a></li>
<li class="ws_tweet">Reading: Walmart Overcharges Soldiers Stationed Abroad For Shipping <a href="http://bit.ly/5JdIyD" rel="nofollow">http://bit.ly/5JdIyD</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6740300816">14:59:59</a></li>
<li class="ws_tweet">Reading: McDonald&#39;s To Offer Free Wifi <a href="http://bit.ly/5HNn2S" rel="nofollow">http://bit.ly/5HNn2S</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6743519066">17:00:22</a></li>
<li class="ws_tweet">Reading: FCC now issues a scolding statement <a href="http://bit.ly/4A6Eo2" rel="nofollow">http://bit.ly/4A6Eo2</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6751941957">21:58:28</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NashvilleWebDesignByGroovysoup?a=DpNLrbfTr2I:jxybh4y5YOw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/NashvilleWebDesignByGroovysoup?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/NashvilleWebDesignByGroovysoup/~4/DpNLrbfTr2I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.groovysoup.com/my-twitter-blabberings-for-2009-12-16/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.groovysoup.com/my-twitter-blabberings-for-2009-12-16/</feedburner:origLink></item>
		<item>
		<title>TextExpander and How I Saved 63 Hours</title>
		<link>http://feedproxy.google.com/~r/NashvilleWebDesignByGroovysoup/~3/6QUHApBVy8M/</link>
		<comments>http://www.groovysoup.com/textexpander-and-how-i-saved-63-hours/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 19:27:15 +0000</pubDate>
		<dc:creator>Dave Newman</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Getting Things Done]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[TextExpander]]></category>

		<guid isPermaLink="false">http://www.groovysoup.com/?p=668</guid>
		<description><![CDATA[So my wife and I are big fans of the whole GTD (Getting Things Done) craze and we&#8217;re always looking for ways to simplify and hopefully automate the things we do every day. Whether it&#8217;s posting photos by email to our photo blog (via Posterous) or adding items to our to-do lists by just forwarding [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.groovysoup.com/wp-content/uploads/2009/12/text-expander.jpg"><img class="aligncenter size-medium wp-image-669" title="text-expander" src="http://www.groovysoup.com/wp-content/uploads/2009/12/text-expander-570x168.jpg" alt="text-expander" width="570" height="168" /></a>So <a title="Washington DC PR Queen" href="http://www.flackrabbit.com">my wife</a> and I are big fans of the whole GTD (<a class="zem_slink" title="Getting Things Done" rel="wikipedia" href="http://en.wikipedia.org/wiki/Getting_Things_Done">Getting Things Done</a>) craze and we&#8217;re always looking for ways to simplify and hopefully automate the things we do every day. Whether it&#8217;s posting photos by email to <a href="http://picalicious.blogspot.com/">our photo blog</a> (via <a class="zem_slink" title="Posterous" rel="homepage" href="http://posterous.com/">Posterous</a>) or adding items to our <a href="http://gootodo.com">to-do lists</a> by just forwarding an email, if there&#8217;s a shortcut out there we&#8217;ll spend nearly as much time trying to find it as we&#8217;ll save by implementing it :) So thankfully I&#8217;ve found one that works remarkably well for what I do: <a class="zem_slink" title="TextExpander" rel="homepage" href="http://www.smileonmymac.com/TextExpander/">TextExpander</a>.</p>
<p>TextExpander (for Mac and <a href="http://www.smileonmymac.com/TextExpander/touch/index.html">iPhone</a> only but I&#8217;ll have a list of Windows versions below) is very simple in what it does but serious in the ways it strives to simplify your time typing. It works like this: find a bit of text you type repeatedly &#8211; say an intro paragraph to a weekly report or the signature for your weekly payroll reports &#8211; and copy and paste it into TextExpander with a handy abbreviation/snippet. The next time you type that abbreviation/snippet (or macro) TextExpander will replace it with the full contents of your original text. You can use it for anything and in any program where you type. I use it for lorem ipsum text filler, stock photo keywords, email signatures, order confirmation letters, phone numbers &#8211; you name it. In the last 4 years I&#8217;ve saved over 63 hours of typing (at 80 WPM) by using this. Plus you feel like you&#8217;re really pumping out the emails without sending curt replies.</p>
<p><a href="http://www.groovysoup.com/wp-content/uploads/2009/12/Screen-shot-2009-12-15-at-1.55.14-PM.jpg"><img class="aligncenter size-medium wp-image-670" title="Screen shot 2009-12-15 at 1.55.14 PM" src="http://www.groovysoup.com/wp-content/uploads/2009/12/Screen-shot-2009-12-15-at-1.55.14-PM-570x236.jpg" alt="Screen shot 2009-12-15 at 1.55.14 PM" width="570" height="236" /></a></p>
<p>Another bonus feature of TextExpander is its ability to sync via <a href="http://mobileme.com">.Me/.Mac</a> or <a class="zem_slink" title="IDisk" rel="wikipedia" href="http://en.wikipedia.org/wiki/IDisk">iDisk</a>. You just check the box in the settings panel and it automatically syncs your &#8220;snippets&#8221; so that all computers tied to your .Me account will now share the same shortcuts. Very nice. When I was switching machines from home and office I really noticed the difference when I didn&#8217;t have TE on there. I can&#8217;t speak about the iPhone app first hand though. It syncs your snippets as well but only to certain iPhone apps and the overall appeal for me is using TE anywhere I type. I notice it too much when it&#8217;s missing.</p>
<p>The downside: Cost. TextExpander is $29.95 and that&#8217;s a pretty hefty chunk of change for a specialized tool. However, think about those 63 hours and make a decision based on that. The software does come with an extensive library of built in snippets to give you a good head start on HTML shortcuts and to auto-correct common spelling errors on the fly.</p>
<p>I highly recommend TextExpander for anyone working on a Mac and can honestly say it&#8217;s been worth every penny to me. There are regular free updates and the customer service from <a href="http://www.smileonmymac.com/index.html">Smile on my Mac</a> has been good when I had questions. Okay &#8211; on to the other options ( I haven&#8217;t tried any of these FYI):</p>
<p>Mac:</p>
<ul>
<li><a href="http://www.nch.com.au/fastfox/index.html">FastFox</a> $24.99</li>
<li><a href="http://www.ettoresoftware.com/products/typeit4me/">TypeIt4Me</a> $27.00</li>
<li><a href="http://www.ergonis.com/products/typinator/">Typinator</a> 3.6 ~$29.00</li>
</ul>
<p>Windows:</p>
<ul>
<li><a href="http://www.nch.com.au/fastfox/index.html">FastFox</a> $24.99</li>
<li><a href="http://lifehacker.com/238306/lifehacker-code-texter-windows">Texter</a> Free</li>
<li><a href="http://www.16software.com/breevy/">Breevy</a> $29.95</li>
<li><a href="http://www.phraseexpress.com/">PhraseExpress</a> Free</li>
</ul>
<p>Linux:</p>
<ul>
<li><a href="http://sourceforge.net/projects/autokey/">AutoKey</a> Free</li>
</ul>
<h6 class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.macstories.net/reviews/pastebot-iphone-review/">Pastebot: Command Your Clipboard, Manage Your Data Library.</a> (macstories.net)</li>
<li class="zemanta-article-ul-li"><a href="http://www.macworld.com/article/142708/2009/09/slsubstitutions.html?lsrc=rss_main">How to use text substitution in Snow Leopard</a> (macworld.com)</li>
<li class="zemanta-article-ul-li"><a href="http://chris.pirillo.com/make-your-life-easier-when-working-with-text/">Make Your Life Easier when Working with Text</a> (chris.pirillo.com)</li>
<li class="zemanta-article-ul-li"><a href="http://thelastminuteblog.com/2009/09/05/on-task-batching/">On Task Batching</a> (thelastminuteblog.com)</li>
</ul>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=be521043-4635-44f2-808d-a5ea4545c1c3" alt="" /><span class="zem-script pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NashvilleWebDesignByGroovysoup?a=6QUHApBVy8M:xGQCbxkIO9s:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/NashvilleWebDesignByGroovysoup?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/NashvilleWebDesignByGroovysoup/~4/6QUHApBVy8M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.groovysoup.com/textexpander-and-how-i-saved-63-hours/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.groovysoup.com/textexpander-and-how-i-saved-63-hours/</feedburner:origLink></item>
		<item>
		<title>My Twitter Blabberings for 2009-12-14</title>
		<link>http://feedproxy.google.com/~r/NashvilleWebDesignByGroovysoup/~3/JITrD6kxv6I/</link>
		<comments>http://www.groovysoup.com/my-twitter-blabberings-for-2009-12-14/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 05:03:43 +0000</pubDate>
		<dc:creator>Dave Newman</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[tweets]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.groovysoup.com/my-twitter-blabberings-for-2009-12-14/</guid>
		<description><![CDATA[
Reading: 70 things to think about (and do) in 2010 http://bit.ly/76ey8K 09:58:52
Reading: Journalists Told Not to Use or Mention Apple Products at Windows Mobile Event in Germany http://bit.ly/6Ij1Qd 12:00:47
Time to see how bad the iPhone hurts AT&#38;T&#39;s network: http://bit.ly/60ABJo 20:53:41
Reading: iPhone Users Urged to Take Down AT&#38;T http://bit.ly/5ADuj5 21:01:14
Reading: 3G Network Speed Is Not the [...]]]></description>
			<content:encoded><![CDATA[<ul class="ws_tweet_list">
<li class="ws_tweet">Reading: 70 things to think about (and do) in 2010 <a href="http://bit.ly/76ey8K" rel="nofollow">http://bit.ly/76ey8K</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6663598979">09:58:52</a></li>
<li class="ws_tweet">Reading: Journalists Told Not to Use or Mention Apple Products at Windows Mobile Event in Germany <a href="http://bit.ly/6Ij1Qd" rel="nofollow">http://bit.ly/6Ij1Qd</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6666947697">12:00:47</a></li>
<li class="ws_tweet">Time to see how bad the iPhone hurts AT&amp;T&#39;s network: <a href="http://bit.ly/60ABJo" rel="nofollow">http://bit.ly/60ABJo</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6681245399">20:53:41</a></li>
<li class="ws_tweet">Reading: iPhone Users Urged to Take Down AT&amp;T <a href="http://bit.ly/5ADuj5" rel="nofollow">http://bit.ly/5ADuj5</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6681484741">21:01:14</a></li>
<li class="ws_tweet">Reading: 3G Network Speed Is Not the Issue <a href="http://bit.ly/4GSQRS" rel="nofollow">http://bit.ly/4GSQRS</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6683374309">22:00:36</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NashvilleWebDesignByGroovysoup?a=JITrD6kxv6I:m3QhhkPG3lQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/NashvilleWebDesignByGroovysoup?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/NashvilleWebDesignByGroovysoup/~4/JITrD6kxv6I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.groovysoup.com/my-twitter-blabberings-for-2009-12-14/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.groovysoup.com/my-twitter-blabberings-for-2009-12-14/</feedburner:origLink></item>
		<item>
		<title>My Twitter Blabberings for 2009-12-10</title>
		<link>http://feedproxy.google.com/~r/NashvilleWebDesignByGroovysoup/~3/3FrV8OUK4mc/</link>
		<comments>http://www.groovysoup.com/my-twitter-blabberings-for-2009-12-10/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 05:01:22 +0000</pubDate>
		<dc:creator>Dave Newman</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[tweets]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.groovysoup.com/my-twitter-blabberings-for-2009-12-10/</guid>
		<description><![CDATA[
Reading: The Facebook Privacy Fiasco Begins http://bit.ly/6h6aX1 08:58:43
Reading: Matt Kelly: How Can Mainstream Media Compete Online? http://bit.ly/7ABPP0 09:58:55
Kudos to Kerry for walking the talk. Unfortunate this is news rather than the norm for elected officials. http://bit.ly/6ihCqC 12:47:31
On a side note, I&#39;ve seen a certain TN congressman on a SWA flight recently so there are some [...]]]></description>
			<content:encoded><![CDATA[<ul class="ws_tweet_list">
<li class="ws_tweet">Reading: The Facebook Privacy Fiasco Begins <a href="http://bit.ly/6h6aX1" rel="nofollow">http://bit.ly/6h6aX1</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6531802965">08:58:43</a></li>
<li class="ws_tweet">Reading: Matt Kelly: How Can Mainstream Media Compete Online? <a href="http://bit.ly/7ABPP0" rel="nofollow">http://bit.ly/7ABPP0</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6533379536">09:58:55</a></li>
<li class="ws_tweet">Kudos to Kerry for walking the talk. Unfortunate this is news rather than the norm for elected officials. <a href="http://bit.ly/6ihCqC" rel="nofollow">http://bit.ly/6ihCqC</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6538266426">12:47:31</a></li>
<li class="ws_tweet">On a side note, I&#39;ve seen a certain TN congressman on a SWA flight recently so there are some doing the right thing :) <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6538308113">12:49:00</a></li>
<li class="ws_tweet">CDC: About 1 in 6 Americans have had swine flu <a href="http://is.gd/5iwKc" rel="nofollow">http://is.gd/5iwKc</a> *I don&#39;t know anyone who&#39;s had it. Is this # correct? <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6544452701">16:38:41</a></li>
<li class="ws_tweet">Reading: Why Bank of America&#39;s TARP Payback Is Bad News <a href="http://bit.ly/6LTQJt" rel="nofollow">http://bit.ly/6LTQJt</a> <a class="ws_tweet_time" href="http://twitter.com/groovysoup/statuses/6557256969">23:58:41</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NashvilleWebDesignByGroovysoup?a=3FrV8OUK4mc:qrzcPvYxsCU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/NashvilleWebDesignByGroovysoup?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/NashvilleWebDesignByGroovysoup/~4/3FrV8OUK4mc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.groovysoup.com/my-twitter-blabberings-for-2009-12-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.groovysoup.com/my-twitter-blabberings-for-2009-12-10/</feedburner:origLink></item>
		<item>
		<title>Google’s Toolbar update may have some bugs…</title>
		<link>http://feedproxy.google.com/~r/NashvilleWebDesignByGroovysoup/~3/yW2fOGH_h5o/</link>
		<comments>http://www.groovysoup.com/googles-toolbar-update-may-have-some-bugs/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 17:43:41 +0000</pubDate>
		<dc:creator>Dave Newman</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.groovysoup.com/?p=659</guid>
		<description><![CDATA[
Or maybe they just don&#8217;t like Drudge &#8211; in any language :)
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.groovysoup.com/wp-content/uploads/2009/12/Screen-shot-2009-12-10-at-12.39.01-PM.jpg"><img class="aligncenter size-medium wp-image-660" title="Google auto translation is broken" src="http://www.groovysoup.com/wp-content/uploads/2009/12/Screen-shot-2009-12-10-at-12.39.01-PM-570x317.jpg" alt="Google auto translation is broken" width="570" height="317" /></a></p>
<p>Or maybe they just don&#8217;t like <a href="http://www.drudgereport.com/">Drudge</a> &#8211; in any language :)</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NashvilleWebDesignByGroovysoup?a=yW2fOGH_h5o:Ytr4_2AqapE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/NashvilleWebDesignByGroovysoup?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/NashvilleWebDesignByGroovysoup/~4/yW2fOGH_h5o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.groovysoup.com/googles-toolbar-update-may-have-some-bugs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.groovysoup.com/googles-toolbar-update-may-have-some-bugs/</feedburner:origLink></item>
	</channel>
</rss>
