<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>DreamTecs</title>
	<atom:link href="http://www.dreamtecs.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dreamtecs.com</link>
	<description>Making great things for great people everywhere</description>
	<lastBuildDate>Mon, 07 Nov 2011 17:11:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>About Face Beauti</title>
		<link>http://www.dreamtecs.com/portfolio/about-face-beauti/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=about-face-beauti</link>
		<comments>http://www.dreamtecs.com/portfolio/about-face-beauti/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 15:00:32 +0000</pubDate>
		<dc:creator>dreamtecs</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.dreamtecs.com/?p=762</guid>
		<description><![CDATA[<p>About Face Beauti Makeup Artistry provides makeup services for the D.C., Maryland and Virginia area.</p>
<p><img class="alignnone size-full wp-image-68" title="About Face Beauti" src="http://www.dreamtecs.com/wp-content/uploads/2011/09/about-face.png" alt="" width="200" height="200" /></p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=About+Face+Beauti+http%3A%2F%2Fis.gd%2FYFm7no" title="Post to Twitter"><img class="nothumb" src="http://www.dreamtecs.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter2.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=About+Face+Beauti+http%3A%2F%2Fis.gd%2FYFm7no" title="Post to Twitter">Tweet This Article</a></p></div>]]></description>
			<content:encoded><![CDATA[<p>About Face Beauti Makeup Artistry provides makeup services for the D.C., Maryland and Virginia area.</p>
<p><img class="alignnone size-full wp-image-68" title="About Face Beauti" src="http://www.dreamtecs.com/wp-content/uploads/2011/09/about-face.png" alt="" width="200" height="200" /></p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=About+Face+Beauti+http%3A%2F%2Fis.gd%2FYFm7no" title="Post to Twitter"><img class="nothumb" src="http://www.dreamtecs.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter2.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=About+Face+Beauti+http%3A%2F%2Fis.gd%2FYFm7no" title="Post to Twitter">Tweet This Article</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.dreamtecs.com/portfolio/about-face-beauti/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Nagging Javascript Currency Problem Fixed</title>
		<link>http://www.dreamtecs.com/recent-stuff/nagging-javascript-currency-problem-fixed/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=nagging-javascript-currency-problem-fixed</link>
		<comments>http://www.dreamtecs.com/recent-stuff/nagging-javascript-currency-problem-fixed/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 01:37:21 +0000</pubDate>
		<dc:creator>Darrell Booker</dc:creator>
				<category><![CDATA[Recent Stuff]]></category>

		<guid isPermaLink="false">http://www.dreamtecs.com/?p=751</guid>
		<description><![CDATA[<p>Something that seems so simple has been a pain in the butt in javascript.  When doing math operations(adding, subtracting, multiplictation etc), your result is never formatted how you want. Sometimes you get two decimal places and of course no dollar sign.  <a title="accounting.js" href="http://josscrowcroft.github.com/accounting.js/" target="_blank">Accounting.js</a> is a small Javascript library that solves all your issues and easy to use.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">// Default usage:</span>
accounting.<span style="color: #660066;">formatMoney</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">12345678</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #006600; font-style: italic;">// $12,345,678.00</span>
&#160;
<span style="color: #006600; font-style: italic;">// European formatting (custom symbol and separators), could also use options object as second param:</span>
accounting.<span style="color: #660066;">formatMoney</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">4999.99</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&#34;€&#34;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">2</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&#34;.&#34;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&#34;,&#34;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #006600; font-style: italic;">// €4.999,99</span></pre></div></div>

<p>It even includes a much-needed way to align decimal places.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">// Format list of numbers for display:</span>
accounting.<span style="color: #660066;">formatColumn</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">123.5</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">3456.49</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">777888.99</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">12345678</span><span style="color: #339933;">,</span> <span style="color: #339933;">-</span><span style="color: #CC0000;">5432</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&#34;$ &#34;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p><a rel="attachment wp-att-752" href="http://www.dreamtecs.com/recent-stuff/nagging-javascript-currency-problem-fixed/attachment/screen-shot-2011-08-24-at-9-35-40-pm/"><img class="alignleft size-thumbnail wp-image-752" title="accounting.js" src="http://www.dreamtecs.com/wp-content/uploads/2011/08/Screen-Shot-2011-08-24-at-9.35.40-PM-250x151.png" alt="" width="250" height="151" /></a></p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Nagging+Javascript+Currency+Problem+Fixed+http%3A%2F%2Fis.gd%2FN9Z81n" title="Post to Twitter"><img class="nothumb" src="http://www.dreamtecs.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter2.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Nagging+Javascript+Currency+Problem+Fixed+http%3A%2F%2Fis.gd%2FN9Z81n" title="Post to Twitter">Tweet This Article</a></p></div>]]></description>
			<content:encoded><![CDATA[<p>Something that seems so simple has been a pain in the butt in javascript.  When doing math operations(adding, subtracting, multiplictation etc), your result is never formatted how you want. Sometimes you get two decimal places and of course no dollar sign.  <a title="accounting.js" href="http://josscrowcroft.github.com/accounting.js/" target="_blank">Accounting.js</a> is a small Javascript library that solves all your issues and easy to use.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">// Default usage:</span>
accounting.<span style="color: #660066;">formatMoney</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">12345678</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #006600; font-style: italic;">// $12,345,678.00</span>
&nbsp;
<span style="color: #006600; font-style: italic;">// European formatting (custom symbol and separators), could also use options object as second param:</span>
accounting.<span style="color: #660066;">formatMoney</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">4999.99</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;€&quot;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">2</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;.&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;,&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #006600; font-style: italic;">// €4.999,99</span></pre></div></div>

<p>It even includes a much-needed way to align decimal places.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">// Format list of numbers for display:</span>
accounting.<span style="color: #660066;">formatColumn</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">123.5</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">3456.49</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">777888.99</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">12345678</span><span style="color: #339933;">,</span> <span style="color: #339933;">-</span><span style="color: #CC0000;">5432</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;$ &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p><a rel="attachment wp-att-752" href="http://www.dreamtecs.com/recent-stuff/nagging-javascript-currency-problem-fixed/attachment/screen-shot-2011-08-24-at-9-35-40-pm/"><img class="alignleft size-thumbnail wp-image-752" title="accounting.js" src="http://www.dreamtecs.com/wp-content/uploads/2011/08/Screen-Shot-2011-08-24-at-9.35.40-PM-250x151.png" alt="" width="250" height="151" /></a></p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Nagging+Javascript+Currency+Problem+Fixed+http%3A%2F%2Fis.gd%2FN9Z81n" title="Post to Twitter"><img class="nothumb" src="http://www.dreamtecs.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter2.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Nagging+Javascript+Currency+Problem+Fixed+http%3A%2F%2Fis.gd%2FN9Z81n" title="Post to Twitter">Tweet This Article</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.dreamtecs.com/recent-stuff/nagging-javascript-currency-problem-fixed/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Spotify vs Google Music vs iCloud</title>
		<link>http://www.dreamtecs.com/recent-stuff/spotify-vs-google-music-vs-icloud/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=spotify-vs-google-music-vs-icloud</link>
		<comments>http://www.dreamtecs.com/recent-stuff/spotify-vs-google-music-vs-icloud/#comments</comments>
		<pubDate>Fri, 15 Jul 2011 03:59:06 +0000</pubDate>
		<dc:creator>Darrell Booker</dc:creator>
				<category><![CDATA[Recent Stuff]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apple tv]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google music]]></category>
		<category><![CDATA[icloud]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[IPad]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[spotify]]></category>

		<guid isPermaLink="false">http://www.dreamtecs.com/?p=745</guid>
		<description><![CDATA[<p><a rel="attachment wp-att-746" href="http://www.dreamtecs.com/recent-stuff/spotify-vs-google-music-vs-icloud/attachment/screen-shot-2011-07-14-at-11-57-34-pm/"><img class="alignleft size-thumbnail wp-image-746" title="Screen shot 2011-07-14 at 11.57.34 PM" src="http://www.dreamtecs.com/wp-content/uploads/2011/07/Screen-shot-2011-07-14-at-11.57.34-PM-250x42.png" alt="" width="250" height="42" /></a>The tech community is buzzing over <a href="http://www.spotify.com" target="_blank">Spotify </a>finally making it to the U.S.  It&#8217;s been huge in Europe and they finally reached deals with U.S. based record companies.  So like many others I reached out to my contacts and got an invite into the beta program. Well, it only took me a few minutes to be less than impressed. I downloaded the Mac client and quickly noticed its just another iTunes knockoff music player.  It quickly read all my songs from my iTunes library to be played within Spotify&#8230;but why if I already got iTunes.  I then checked out the other features including the streaming.  That&#8217;s when I noticed only some of my songs will be available for streaming. Spotify only allows you to stream the songs it knows about and has a license for. Well that sucks!! Well what about the sharing with friends that everyone has&#8230; <a href="http://www.dreamtecs.com/recent-stuff/spotify-vs-google-music-vs-icloud/" class="read_more">Read the rest</a></p>]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-746" href="http://www.dreamtecs.com/recent-stuff/spotify-vs-google-music-vs-icloud/attachment/screen-shot-2011-07-14-at-11-57-34-pm/"><img class="alignleft size-thumbnail wp-image-746" title="Screen shot 2011-07-14 at 11.57.34 PM" src="http://www.dreamtecs.com/wp-content/uploads/2011/07/Screen-shot-2011-07-14-at-11.57.34-PM-250x42.png" alt="" width="250" height="42" /></a>The tech community is buzzing over <a href="http://www.spotify.com" target="_blank">Spotify </a>finally making it to the U.S.  It&#8217;s been huge in Europe and they finally reached deals with U.S. based record companies.  So like many others I reached out to my contacts and got an invite into the beta program. Well, it only took me a few minutes to be less than impressed. I downloaded the Mac client and quickly noticed its just another iTunes knockoff music player.  It quickly read all my songs from my iTunes library to be played within Spotify&#8230;but why if I already got iTunes.  I then checked out the other features including the streaming.  That&#8217;s when I noticed only some of my songs will be available for streaming. Spotify only allows you to stream the songs it knows about and has a license for. Well that sucks!! Well what about the sharing with friends that everyone has been excited to see??? Well same problem here. Your friends can&#8217;t listen to all your music, just the stuff Spotify recognizes. And to make things worse you have to be a paid premium member to stream to your phone. Spotify quickly turned out to be a waste of time.</p>
<p><a href="http://music.google.com" target="_blank">Google Music</a> on the other hand, has some handy features.  It installs a manager on your computer that runs in the background that immediately starts to upload all your songs to the Google cloud.  My initial upload of over 5500 songs took about 12 hours but it was totally running unobstrusively in the background.  All new songs I drop in iTunes will instantly and quietly go to the cloud. Not some of my music, but ALL. Even if Google doesn&#8217;t know who the hell the artist or song is.  Once you log into the web interface you will see all of your tracks where you can stream them from the web.  It even brings over your playlists just how you have them in iTunes. And the Android app is simple, nicely designed and does exactly what you wants  All of your music can be streamed from your phone.  You even have the option to mark tracks your wish to download directly to your phone for offline playing.</p>
<p>What can we expect from iCloud? Where simply put <a href="http://www.icloud.com" target="_blank">iCloud </a>will allow your Mac or PC, iPhone, iPod and iPad to be in sync without manully connecting usb cords and syncing the music. iCloud will also match your songs and give your a higher quality if it found it.  With so many of us having many Apple devices, using iCloud seems like a no-brainer.</p>
<p>So which service do you use?? Forget Spotify, its  a waste. Personally, I will be using a combination of Google Music and iCloud. Since iTunes on my Mac is my primary library, all new music will go in there first. iCloud will conveniently push it to my iPod, iPad and I&#8217;m sure my Apple TV will be able to access it also.  If I still had an iPhone it will get pushed there also. But since I converted to and Android(EVO 3D), Google Music will have sight of all the iTunes music and push it to the Android.  I&#8217;m left with all my music on every possible device I have.  How sweet is that?</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Spotify+vs+Google+Music+vs+iCloud+http%3A%2F%2Fis.gd%2Fsc8viz" title="Post to Twitter"><img class="nothumb" src="http://www.dreamtecs.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter2.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Spotify+vs+Google+Music+vs+iCloud+http%3A%2F%2Fis.gd%2Fsc8viz" title="Post to Twitter">Tweet This Article</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.dreamtecs.com/recent-stuff/spotify-vs-google-music-vs-icloud/feed/</wfw:commentRss>
		<slash:comments>104</slash:comments>
		</item>
		<item>
		<title>How Google&#8217;s Swiffy single handedly maybe saving Flash from extinction</title>
		<link>http://www.dreamtecs.com/recent-stuff/how-googles-swiffy-single-handedly-maybe-saving-flash-from-extinction/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-googles-swiffy-single-handedly-maybe-saving-flash-from-extinction</link>
		<comments>http://www.dreamtecs.com/recent-stuff/how-googles-swiffy-single-handedly-maybe-saving-flash-from-extinction/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 19:30:15 +0000</pubDate>
		<dc:creator>Darrell Booker</dc:creator>
				<category><![CDATA[Recent Stuff]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[google labs]]></category>
		<category><![CDATA[google swiffy]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[labs]]></category>
		<category><![CDATA[swf]]></category>
		<category><![CDATA[swiffy]]></category>

		<guid isPermaLink="false">http://www.dreamtecs.com/?p=739</guid>
		<description><![CDATA[<p>Many believe that Flash&#8217;s days are numbered.  The inability for Adobe &#38; phone manufacturers to find a way for Flash to work on ALL devices is a huge problem.  Also, with the emergence of HTML5 which can replicate tons of Flash&#8217;s animations and the ever growing capabailities of jQuery and AJAX, Flash seems like a &#8220;has been&#8221;.</p>
<p><a rel="attachment wp-att-740" href="http://www.dreamtecs.com/recent-stuff/how-googles-swiffy-single-handedly-maybe-saving-flash-from-extinction/attachment/screen-shot-2011-07-01-at-3-25-08-pm/"><img class="alignleft size-full wp-image-740" title="Google Swiffy" src="http://www.dreamtecs.com/wp-content/uploads/2011/07/Screen-shot-2011-07-01-at-3.25.08-PM.png" alt="Google Swiffy" width="200" height="50" /></a>Earlier this week Google launched Swiffy in its <a href="http://swiffy.googlelabs.com/" target="_blank">Google Labs</a>. What&#8217;s Swiffy you say?? Swiffy lets developers take their existing Flash swf files and upload them to be instantly converted to HTML5.  The conversion handles SWF5-SWF8 and Actionscript 2.0.  Once the conversion is done, the web developer now has a compatible version that will work in all Webkit browsers including Chome and Mobile Safari(iphone, ipad etc).  The developer can now build logic in the web page to detect the user&#8217;s browser and correctly redirect them to either a Flash or HTML5&#8230; <a href="http://www.dreamtecs.com/recent-stuff/how-googles-swiffy-single-handedly-maybe-saving-flash-from-extinction/" class="read_more">Read the rest</a></p>]]></description>
			<content:encoded><![CDATA[<p>Many believe that Flash&#8217;s days are numbered.  The inability for Adobe &amp; phone manufacturers to find a way for Flash to work on ALL devices is a huge problem.  Also, with the emergence of HTML5 which can replicate tons of Flash&#8217;s animations and the ever growing capabailities of jQuery and AJAX, Flash seems like a &#8220;has been&#8221;.</p>
<p><a rel="attachment wp-att-740" href="http://www.dreamtecs.com/recent-stuff/how-googles-swiffy-single-handedly-maybe-saving-flash-from-extinction/attachment/screen-shot-2011-07-01-at-3-25-08-pm/"><img class="alignleft size-full wp-image-740" title="Google Swiffy" src="http://www.dreamtecs.com/wp-content/uploads/2011/07/Screen-shot-2011-07-01-at-3.25.08-PM.png" alt="Google Swiffy" width="200" height="50" /></a>Earlier this week Google launched Swiffy in its <a href="http://swiffy.googlelabs.com/" target="_blank">Google Labs</a>. What&#8217;s Swiffy you say?? Swiffy lets developers take their existing Flash swf files and upload them to be instantly converted to HTML5.  The conversion handles SWF5-SWF8 and Actionscript 2.0.  Once the conversion is done, the web developer now has a compatible version that will work in all Webkit browsers including Chome and Mobile Safari(iphone, ipad etc).  The developer can now build logic in the web page to detect the user&#8217;s browser and correctly redirect them to either a Flash or HTML5 version of the animation. Sweet right??</p>
<p>There are a few limitations to Swiffy. More advanced games may not render correctly. Keep in mind this is Google&#8217;s first stab at this and its sure to improve.  Also, the converted HTML5 version is not as crisp as the original Flash version.  Some colors are not as vivid and gradients come out slightly dull.  But trust me, this is a small price to pay to ensure ALL visitors to your site can view your content.  You can check out examples of converted Flash in the <a href="http://swiffy.googlelabs.com/gallery.html" target="_blank">Swiffy Gallery</a>.</p>
<p>Flash maybe safe for a few more years. Flash still has some downfalls such as inability to copy/paste from it, inability to link to direct content and being a resource hog.  But for now, hats of Google and the Swiffy project.</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=How+Google%E2%80%99s+Swiffy+single+handedly+maybe+saving+Flash+from+extinction+http%3A%2F%2Fis.gd%2F2fjNo4" title="Post to Twitter"><img class="nothumb" src="http://www.dreamtecs.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter2.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=How+Google%E2%80%99s+Swiffy+single+handedly+maybe+saving+Flash+from+extinction+http%3A%2F%2Fis.gd%2F2fjNo4" title="Post to Twitter">Tweet This Article</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.dreamtecs.com/recent-stuff/how-googles-swiffy-single-handedly-maybe-saving-flash-from-extinction/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>DROPitTOme: The file uploading tool I&#8217;ve been looking for</title>
		<link>http://www.dreamtecs.com/recent-stuff/dropittome-the-file-uploading-tool-ive-been-looking-for/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=dropittome-the-file-uploading-tool-ive-been-looking-for</link>
		<comments>http://www.dreamtecs.com/recent-stuff/dropittome-the-file-uploading-tool-ive-been-looking-for/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 01:58:16 +0000</pubDate>
		<dc:creator>Darrell Booker</dc:creator>
				<category><![CDATA[Recent Stuff]]></category>
		<category><![CDATA[drop box]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[dropittome]]></category>
		<category><![CDATA[upload files]]></category>

		<guid isPermaLink="false">http://www.dreamtecs.com/?p=707</guid>
		<description><![CDATA[<p><a rel="attachment wp-att-708" href="http://www.dreamtecs.com/recent-stuff/dropittome-the-file-uploading-tool-ive-been-looking-for/attachment/screen-shot-2011-06-28-at-9-46-09-pm/"><img class="alignleft size-thumbnail wp-image-708" title="Screen shot 2011-06-28 at 9.46.09 PM" src="http://www.dreamtecs.com/wp-content/uploads/2011/06/Screen-shot-2011-06-28-at-9.46.09-PM-250x135.png" alt="" width="250" height="135" /></a>When DropBox hit the scene it solved a great problem for many of us. DropBox gives us the ability to upload files of any size that we can use on any device from computer to phone.  It also gives us the ability to create a public link for anyone to download the file. But something is missing&#8230;what if you want someone to upload a file to you?</p>
<p>As we all know, most email providers have a max on file attachments.  If you have your own website you can put the file on your hosting for someone to download..but who wants to go through that trouble. If you have an FTP server, they can send to you that way&#8230;but most of the time, the person on the other end says FT huh???</p>
<p><a href="http://www.dropitto.me" target="_blank">DROPitTOme</a> adds that missing piece to DropBox.  Its a FREE website that you quickly register using your DropBox credentials.&#8230; <a href="http://www.dreamtecs.com/recent-stuff/dropittome-the-file-uploading-tool-ive-been-looking-for/" class="read_more">Read the rest</a></p>]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-708" href="http://www.dreamtecs.com/recent-stuff/dropittome-the-file-uploading-tool-ive-been-looking-for/attachment/screen-shot-2011-06-28-at-9-46-09-pm/"><img class="alignleft size-thumbnail wp-image-708" title="Screen shot 2011-06-28 at 9.46.09 PM" src="http://www.dreamtecs.com/wp-content/uploads/2011/06/Screen-shot-2011-06-28-at-9.46.09-PM-250x135.png" alt="" width="250" height="135" /></a>When DropBox hit the scene it solved a great problem for many of us. DropBox gives us the ability to upload files of any size that we can use on any device from computer to phone.  It also gives us the ability to create a public link for anyone to download the file. But something is missing&#8230;what if you want someone to upload a file to you?</p>
<p>As we all know, most email providers have a max on file attachments.  If you have your own website you can put the file on your hosting for someone to download..but who wants to go through that trouble. If you have an FTP server, they can send to you that way&#8230;but most of the time, the person on the other end says FT huh???</p>
<p><a href="http://www.dropitto.me" target="_blank">DROPitTOme</a> adds that missing piece to DropBox.  Its a FREE website that you quickly register using your DropBox credentials.  Then you create a unique url such as www.dropittome/whatever and create an upload password.  Then you just share the url with whomever, along with the password and the user can upload any file up to 75MB.  You will get an email confirmation that the file has arrived and it will be sitting inside a folder called Dropittome in your DropBox.  How easy is that???</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=DROPitTOme%3A+The+file+uploading+tool+I%E2%80%99ve+been+looking+for+http%3A%2F%2Fis.gd%2FCdejew" title="Post to Twitter"><img class="nothumb" src="http://www.dreamtecs.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter2.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=DROPitTOme%3A+The+file+uploading+tool+I%E2%80%99ve+been+looking+for+http%3A%2F%2Fis.gd%2FCdejew" title="Post to Twitter">Tweet This Article</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.dreamtecs.com/recent-stuff/dropittome-the-file-uploading-tool-ive-been-looking-for/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>In preperation for iOS5 &#8230;</title>
		<link>http://www.dreamtecs.com/recent-stuff/in-preperation-for-ios5/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=in-preperation-for-ios5</link>
		<comments>http://www.dreamtecs.com/recent-stuff/in-preperation-for-ios5/#comments</comments>
		<pubDate>Sat, 25 Jun 2011 23:08:24 +0000</pubDate>
		<dc:creator>Gabriel Terrell</dc:creator>
				<category><![CDATA[Recent Stuff]]></category>

		<guid isPermaLink="false">http://www.dreamtecs.com/?p=700</guid>
		<description><![CDATA[<p>I&#8217;ve been preparing for iOS 5 as many people await the release.  I wanted a Bluetooth keyboard, basically to take advantage of the mirroring on the iPad2 from appleTV.  So i took a journey to Fry&#8217;s electronics and of course&#8230;.they have every electronic gadget you can think of(imaging BestBuy times 3), yea PlayGround!  So, let&#8217;s get to the real stuff, the Kensington (in pic below) is a piece of GARBAGE&#8230;the weight of the iPad2 and the design don&#8217;t work and it&#8217;s NOT lap friendly&#8230;save the $99 Bucks! of course I took it back and got the Joby GorillaMobile Yogi + a bluetooth keyboard for $97 bucks, the Yogi has rave reviews and the bluetooth keyboard not so bad.   If you&#8217;re trying to make your home apple friendly, these products will get you on track.</p>
<p><a rel="attachment wp-att-689" href="http://www.dreamtecs.com/recent-stuff/in-preperation-for-ios5/attachment/imag0092-2/"><img title="IMAG0092" src="http://www.dreamtecs.com/wp-content/uploads/2011/06/IMAG00921-400x668.jpg" alt="" width="200" height="334" /></a><a rel="attachment wp-att-695" href="http://www.dreamtecs.com/recent-stuff/in-preperation-for-ios5/attachment/imag0093-3/"><img title="IMAG0093" src="http://www.dreamtecs.com/wp-content/uploads/2011/06/IMAG00932-400x668.jpg" alt="" width="400" height="668" /></a></p>
<p>&#160;</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=In+preperation+for+iOS5+%E2%80%A6+http%3A%2F%2Fis.gd%2FYqaNMf" title="Post to Twitter"><img class="nothumb" src="http://www.dreamtecs.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter2.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=In+preperation+for+iOS5+%E2%80%A6+http%3A%2F%2Fis.gd%2FYqaNMf" title="Post to Twitter">Tweet This Article</a></p></div>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been preparing for iOS 5 as many people await the release.  I wanted a Bluetooth keyboard, basically to take advantage of the mirroring on the iPad2 from appleTV.  So i took a journey to Fry&#8217;s electronics and of course&#8230;.they have every electronic gadget you can think of(imaging BestBuy times 3), yea PlayGround!  So, let&#8217;s get to the real stuff, the Kensington (in pic below) is a piece of GARBAGE&#8230;the weight of the iPad2 and the design don&#8217;t work and it&#8217;s NOT lap friendly&#8230;save the $99 Bucks! of course I took it back and got the Joby GorillaMobile Yogi + a bluetooth keyboard for $97 bucks, the Yogi has rave reviews and the bluetooth keyboard not so bad.   If you&#8217;re trying to make your home apple friendly, these products will get you on track.</p>
<p><a rel="attachment wp-att-689" href="http://www.dreamtecs.com/recent-stuff/in-preperation-for-ios5/attachment/imag0092-2/"><img title="IMAG0092" src="http://www.dreamtecs.com/wp-content/uploads/2011/06/IMAG00921-400x668.jpg" alt="" width="200" height="334" /></a><a rel="attachment wp-att-695" href="http://www.dreamtecs.com/recent-stuff/in-preperation-for-ios5/attachment/imag0093-3/"><img title="IMAG0093" src="http://www.dreamtecs.com/wp-content/uploads/2011/06/IMAG00932-400x668.jpg" alt="" width="400" height="668" /></a></p>
<p>&nbsp;</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=In+preperation+for+iOS5+%E2%80%A6+http%3A%2F%2Fis.gd%2FYqaNMf" title="Post to Twitter"><img class="nothumb" src="http://www.dreamtecs.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter2.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=In+preperation+for+iOS5+%E2%80%A6+http%3A%2F%2Fis.gd%2FYqaNMf" title="Post to Twitter">Tweet This Article</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.dreamtecs.com/recent-stuff/in-preperation-for-ios5/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>EVO 3D: Our hands on review</title>
		<link>http://www.dreamtecs.com/recent-stuff/evo-3d-our-hands-on-review/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=evo-3d-our-hands-on-review</link>
		<comments>http://www.dreamtecs.com/recent-stuff/evo-3d-our-hands-on-review/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 03:07:18 +0000</pubDate>
		<dc:creator>Darrell Booker</dc:creator>
				<category><![CDATA[Recent Stuff]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[evo]]></category>
		<category><![CDATA[evo 3d]]></category>
		<category><![CDATA[gingerbread]]></category>
		<category><![CDATA[htc]]></category>
		<category><![CDATA[premier]]></category>
		<category><![CDATA[sprint]]></category>

		<guid isPermaLink="false">http://www.dreamtecs.com/?p=679</guid>
		<description><![CDATA[<p>Our HTC EVO 3D arrived today, two days before the national launch and here&#8217;s the deal&#8230;<a rel="attachment wp-att-680" href="http://www.dreamtecs.com/recent-stuff/evo-3d-our-hands-on-review/attachment/photo/"><img class="size-medium wp-image-680 alignright" title="photo" src="http://www.dreamtecs.com/wp-content/uploads/2011/06/photo-400x300.jpg" alt="" width="400" height="300" /></a></p>
<p>Immediately after picking up you will love the feel. It totally feels much smaller and fits the palm of your hand a lot better than the EVO 4G. It&#8217;s definitely thinner and even though its a tad taller it feels less like a big brick in your hand like the EVO 4G did.  The material of the case is better for handling as well, doesn&#8217;t feel like it&#8217;s going to slip out of your hand.  I was skeptical from earlier pictures of the dedicated camera button, but it&#8217;s not nearly as obtrusive as I thought. You won&#8217;t accidentally push it at all.  My only negative item to the outside is the moving of the usb/mini hdmi port to the side instead of the bottom.  The port on the side could make&#8230; <a href="http://www.dreamtecs.com/recent-stuff/evo-3d-our-hands-on-review/" class="read_more">Read the rest</a></p>]]></description>
			<content:encoded><![CDATA[<p>Our HTC EVO 3D arrived today, two days before the national launch and here&#8217;s the deal&#8230;<a rel="attachment wp-att-680" href="http://www.dreamtecs.com/recent-stuff/evo-3d-our-hands-on-review/attachment/photo/"><img class="size-medium wp-image-680 alignright" title="photo" src="http://www.dreamtecs.com/wp-content/uploads/2011/06/photo-400x300.jpg" alt="" width="400" height="300" /></a></p>
<p>Immediately after picking up you will love the feel. It totally feels much smaller and fits the palm of your hand a lot better than the EVO 4G. It&#8217;s definitely thinner and even though its a tad taller it feels less like a big brick in your hand like the EVO 4G did.  The material of the case is better for handling as well, doesn&#8217;t feel like it&#8217;s going to slip out of your hand.  I was skeptical from earlier pictures of the dedicated camera button, but it&#8217;s not nearly as obtrusive as I thought. You won&#8217;t accidentally push it at all.  My only negative item to the outside is the moving of the usb/mini hdmi port to the side instead of the bottom.  The port on the side could make for some interesting times when using the phone plugged up.</p>
<p>Once we fired it up, the first thing we did was looked at the sample 3D pics on the phone. One word&#8230;.WOW!  I was extremely skeptical of a phone being able to display 3d images without glasses.  I was completely wrong. The 3D images look absolutely amazing! Caution, staring at them for a long time sort of hurt your eyes but thats to be expected.  We then snapped some 3d images and was amazed how those looked as well.  The new camera button takes some getting use to since you have to press once to focus then hold again to actually snap the picture.  Our recorded 3d video was impressive as well.</p>
<p>As for the apps and interface&#8230;.First of all, you will definitely notice the 1.2GHZ Dual processor.  This thing is fast as hell with no lag time at all. The eVO 4G often got sluggish especially when doing a lot of things but the 3D seems to handle multi-tasking brillantly.  The latest HTC Sense is loads of fun too including the sliding ring to unlock the phone.  The spinning home screen is a great addition and aids in quick access to all your widgets.  You will also notice the system font is slightly smaller. This helps for more items to display on the screen but definitely not too small, we think you will like this subtle change.  The new mail app adds colors for different accounts and an easy dropdown to switch between accounts(thanks Google &amp; HTC).  There are a bunch of other small but well appreciated changes that you will notice as you start playing with the phone.</p>
<p>As for Sprint&#8230;.AT&amp;T and Verizon could learn alot from Sprint. Not just because their $69 unlimited plans is great for everyone in this bad economy but their customer service is superb.  The cost of the HTC EVO 3D is just $199. Customers with an existing EVO 4G can turn theirs in and get $150, leaving the cost of the 3D just at $50!!!  And as long as your account is not past due, you can just bill that to your account.  Sprint even offered the phone to Premier customers 3 days early with free overnight shipping&#8230;who does that???</p>
<p>All in all&#8230;the EVO 3D is definitely what all the hype was about and has to be the best android phone on the market right now(Thunderbolt a close second with its LTE)</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=EVO+3D%3A+Our+hands+on+review+http%3A%2F%2Fis.gd%2FCYwTUV" title="Post to Twitter"><img class="nothumb" src="http://www.dreamtecs.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter2.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=EVO+3D%3A+Our+hands+on+review+http%3A%2F%2Fis.gd%2FCYwTUV" title="Post to Twitter">Tweet This Article</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.dreamtecs.com/recent-stuff/evo-3d-our-hands-on-review/feed/</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>DB2 Index Usage &#8211; IBM System i</title>
		<link>http://www.dreamtecs.com/recent-stuff/db2-index-usage-ibm-system-i/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=db2-index-usage-ibm-system-i</link>
		<comments>http://www.dreamtecs.com/recent-stuff/db2-index-usage-ibm-system-i/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 18:56:32 +0000</pubDate>
		<dc:creator>Gabriel Terrell</dc:creator>
				<category><![CDATA[Recent Stuff]]></category>

		<guid isPermaLink="false">http://www.dreamtecs.com/?p=669</guid>
		<description><![CDATA[<p>How can you tell which indexes are being used by DB2 and the query optimizer to improve performance on an IBM System i? Here&#8217;s How:</p>
<p>In V5R3, a new tool was added to the System i Navigator known as Index Evaluator. This new function makes it easy to analyze which indexes (and keyed logical files) are helping your SQL and query performance and which indexes are not pulling their weight. You can&#8217;t rely on the object timestamp &#8220;last used date&#8221; because that value is not always updated by the query optimizer.<br />
For each index defined over the table, the evaluator returns data about the last time an index was used in the implementation of a query and/or used to provide statistics about the table data to the query optimizer. In addition, it returns a count for the number of times the query optimizer used an index object.</p>
<p>You can&#8230; <a href="http://www.dreamtecs.com/recent-stuff/db2-index-usage-ibm-system-i/" class="read_more">Read the rest</a></p>]]></description>
			<content:encoded><![CDATA[<p>How can you tell which indexes are being used by DB2 and the query optimizer to improve performance on an IBM System i? Here&#8217;s How:</p>
<p>In V5R3, a new tool was added to the System i Navigator known as Index Evaluator. This new function makes it easy to analyze which indexes (and keyed logical files) are helping your SQL and query performance and which indexes are not pulling their weight. You can&#8217;t rely on the object timestamp &#8220;last used date&#8221; because that value is not always updated by the query optimizer.<br />
For each index defined over the table, the evaluator returns data about the last time an index was used in the implementation of a query and/or used to provide statistics about the table data to the query optimizer. In addition, it returns a count for the number of times the query optimizer used an index object.</p>
<p>You can access this feature by right-clicking on a table object in the System i navigator and selecting the Show Indexes task &#8212; the task name is Indexes on V5R3).</p>
<p><a rel="attachment wp-att-672" href="http://www.dreamtecs.com/recent-stuff/db2-index-usage-ibm-system-i/attachment/navigatorex-2/"><img class="alignnone size-full wp-image-672" title="NavigatorEx" src="http://www.dreamtecs.com/wp-content/uploads/2011/06/NavigatorEx1.jpg" alt="" width="368" height="571" /></a></p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=DB2+Index+Usage+%E2%80%93+IBM+System+i+http%3A%2F%2Fis.gd%2F0rwbPb" title="Post to Twitter"><img class="nothumb" src="http://www.dreamtecs.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter2.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=DB2+Index+Usage+%E2%80%93+IBM+System+i+http%3A%2F%2Fis.gd%2F0rwbPb" title="Post to Twitter">Tweet This Article</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.dreamtecs.com/recent-stuff/db2-index-usage-ibm-system-i/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>Wunderlist: The to do list we&#8217;ve all been waiting for!</title>
		<link>http://www.dreamtecs.com/recent-stuff/wunderlist-the-to-do-list-weve-all-been-waiting-for/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wunderlist-the-to-do-list-weve-all-been-waiting-for</link>
		<comments>http://www.dreamtecs.com/recent-stuff/wunderlist-the-to-do-list-weve-all-been-waiting-for/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 04:17:09 +0000</pubDate>
		<dc:creator>Darrell Booker</dc:creator>
				<category><![CDATA[Recent Stuff]]></category>
		<category><![CDATA[2 do]]></category>
		<category><![CDATA[6wunderkinder]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[to do]]></category>
		<category><![CDATA[todo]]></category>
		<category><![CDATA[Wunderlist]]></category>

		<guid isPermaLink="false">http://www.dreamtecs.com/recent-stuff/wunderlist-the-to-do-list-weve-all-been-waiting-for/</guid>
		<description><![CDATA[<p><a href="http://www.dreamtecs.com/wp-content/uploads/2011/06/20110620-115410.jpg"><img src="http://www.dreamtecs.com/wp-content/uploads/2011/06/20110620-115410.jpg" alt="20110620-115410.jpg" class="alignnone size-full" /></a></p>
<p>6Wunderkinder has done it right with their amazing <a href="http://www.6wunderkinder.com/wunderlist">Wunderlist</a> app. My journey into finding the right to do list manager started with Teux Deux. </p>
<p><a href="http://www.teuxdeux.com">TeuxDeux</a> has a very simple web interface but it&#8217;s IOS version was a bit overpriced and lacked an android app at all.</p>
<p><a href="http://www.rememberthemilk.com">Remember The Milk</a> was next and had me excited at first.  The web interface was a bit too complicated but their IPad and Android versions made up for it.  Until I realized I had to pay to get the iPad version to sync more than once day. Things got worst when my android trial expired and they wanted a outrageous $25 to upgrade to pro. Are you kidding me??</p>
<p>So here comes along Wunderlist.  And I must say I&#8217;m totally thrilled.  The web interface is simple, quick and easy to use.  The Mac, IPad and android version are just as great.&#8230; <a href="http://www.dreamtecs.com/recent-stuff/wunderlist-the-to-do-list-weve-all-been-waiting-for/" class="read_more">Read the rest</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dreamtecs.com/wp-content/uploads/2011/06/20110620-115410.jpg"><img src="http://www.dreamtecs.com/wp-content/uploads/2011/06/20110620-115410.jpg" alt="20110620-115410.jpg" class="alignnone size-full" /></a></p>
<p>6Wunderkinder has done it right with their amazing <a href="http://www.6wunderkinder.com/wunderlist">Wunderlist</a> app. My journey into finding the right to do list manager started with Teux Deux. </p>
<p><a href="http://www.teuxdeux.com">TeuxDeux</a> has a very simple web interface but it&#8217;s IOS version was a bit overpriced and lacked an android app at all.</p>
<p><a href="http://www.rememberthemilk.com">Remember The Milk</a> was next and had me excited at first.  The web interface was a bit too complicated but their IPad and Android versions made up for it.  Until I realized I had to pay to get the iPad version to sync more than once day. Things got worst when my android trial expired and they wanted a outrageous $25 to upgrade to pro. Are you kidding me??</p>
<p>So here comes along Wunderlist.  And I must say I&#8217;m totally thrilled.  The web interface is simple, quick and easy to use.  The Mac, IPad and android version are just as great.  You get the exact same features across all the platforms.  There&#8217;s no drop off in features whatsoever as you switch from web to Mac to android to iPad.  And best of all&#8230;..all are totally free! Yes free!</p>
<p>Get Wunderlist today, you won&#8217;t be disappointed!</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Wunderlist%3A+The+to+do+list+we%E2%80%99ve+all+been+waiting+for%21+http%3A%2F%2Fis.gd%2FfHXmRj" title="Post to Twitter"><img class="nothumb" src="http://www.dreamtecs.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter2.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Wunderlist%3A+The+to+do+list+we%E2%80%99ve+all+been+waiting+for%21+http%3A%2F%2Fis.gd%2FfHXmRj" title="Post to Twitter">Tweet This Article</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.dreamtecs.com/recent-stuff/wunderlist-the-to-do-list-weve-all-been-waiting-for/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Path Finder: A better file browser for Mac</title>
		<link>http://www.dreamtecs.com/recent-stuff/path-finder/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=path-finder</link>
		<comments>http://www.dreamtecs.com/recent-stuff/path-finder/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 11:51:33 +0000</pubDate>
		<dc:creator>Darrell Booker</dc:creator>
				<category><![CDATA[Recent Stuff]]></category>

		<guid isPermaLink="false">http://www.brankic1979.com/theme/ExcelsiorWP/?p=67</guid>
		<description><![CDATA[<p>After making the full switch from a Windows lover to a full-fledged Mac guy a few years back, I knew something was missing with the Finder tool but I couldn&#8217;t put my finger on it  For you non Mac people, Finder is the equivalent of your file explorer in Windows.  Don&#8217;t get me wrong the Finder tool in Mac works it just could use a little more oomph to it!</p>
<p>&#160;</p>
<p>Path Finder by <a href="http://www.cocoatech.com/" target="_blank">Cocoatech</a> is definitely the upgrade I was looking for.  The latest version, 5, has tons of features and I won&#8217;t bore you guys with all of them, but I will highlight my favorites.<img class="alignright size-full wp-image-617" title="pathfinder" src="http://www.dreamtecs.com/wp-content/uploads/2011/06/pathfinder.png" alt="" width="128" height="128" /></p>
<ol>
<li>Tabs-You can customize the browser by placing tabs at the top for some of your favorite folders for easy access</li>
<li>Dual Pane Browser-View contents of two folders simultaneously.</li>
<p>and my favorite&#8230;..</p>
<li>Drop</li></ol><p>&#8230; <a href="http://www.dreamtecs.com/recent-stuff/path-finder/" class="read_more">Read the rest</a></p>]]></description>
			<content:encoded><![CDATA[<p>After making the full switch from a Windows lover to a full-fledged Mac guy a few years back, I knew something was missing with the Finder tool but I couldn&#8217;t put my finger on it  For you non Mac people, Finder is the equivalent of your file explorer in Windows.  Don&#8217;t get me wrong the Finder tool in Mac works it just could use a little more oomph to it!</p>
<p>&nbsp;</p>
<p>Path Finder by <a href="http://www.cocoatech.com/" target="_blank">Cocoatech</a> is definitely the upgrade I was looking for.  The latest version, 5, has tons of features and I won&#8217;t bore you guys with all of them, but I will highlight my favorites.<img class="alignright size-full wp-image-617" title="pathfinder" src="http://www.dreamtecs.com/wp-content/uploads/2011/06/pathfinder.png" alt="" width="128" height="128" /></p>
<ol>
<li>Tabs-You can customize the browser by placing tabs at the top for some of your favorite folders for easy access</li>
<li>Dual Pane Browser-View contents of two folders simultaneously.</li>
<p>and my favorite&#8230;..</p>
<li>Drop Stack-Drop stack is basically an area where you can temporarily drag files or folders to. Once you have everything there, you can then drag the entire contents of that stack to another folder.  This greatly speeds up copying files from many locations to a single destination.  This feature alone makes Path Finder a must for Mac power users!!!</li>
</ol>
<p>&nbsp;</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Path+Finder%3A+A+better+file+browser+for+Mac+http%3A%2F%2Fis.gd%2FjGJxuu" title="Post to Twitter"><img class="nothumb" src="http://www.dreamtecs.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter2.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Path+Finder%3A+A+better+file+browser+for+Mac+http%3A%2F%2Fis.gd%2FjGJxuu" title="Post to Twitter">Tweet This Article</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.dreamtecs.com/recent-stuff/path-finder/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
	</channel>
</rss>

