<?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>Tech Exposures</title>
	<atom:link href="http://techexposures.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://techexposures.com</link>
	<description>Tools for Linux Users. Linux Distro Reviews.</description>
	<lastBuildDate>Thu, 25 Feb 2010 19:46:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PHP Script &#8211; Show Google Search Term That Brought Visitor to Your Website</title>
		<link>http://techexposures.com/2010/02/php-script-show-google-search-that-brought-visitor-to-your-website/</link>
		<comments>http://techexposures.com/2010/02/php-script-show-google-search-that-brought-visitor-to-your-website/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 19:44:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet Tips & Tricks]]></category>
		<category><![CDATA[PHP Programming]]></category>
		<category><![CDATA[Programming Tools]]></category>
		<category><![CDATA[$_SERVER]]></category>
		<category><![CDATA[$_SERVER['HTTP_REFERER']]]></category>
		<category><![CDATA[Google Search]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[PHP Script]]></category>
		<category><![CDATA[Search Term]]></category>

		<guid isPermaLink="false">http://techexposures.com/?p=960</guid>
		<description><![CDATA[Find the Google Search Term Keywords That Landed the Visitor on Your Website
I always wanted to know when displaying the webpage what search brought the user to this page.  You can always look at Google Analytics, or whatever statistics package you have on your server (Urchin, Webalizer, etc&#8230;), but that is after the fact.  So, [...]]]></description>
			<content:encoded><![CDATA[<h2>Find the Google Search Term Keywords That Landed the Visitor on Your Website</h2>
<p>I always wanted to know when displaying the webpage what search brought the user to this page.  You can always look at Google Analytics, or whatever statistics package you have on your server (Urchin, Webalizer, etc&#8230;), but that is after the fact.  So, I wrote a simple PHP script (all server-side) that gives you that information.</p>
<h2>Code Example: Full script &#8211; Copy &amp; Paste</h2>
<p><strong>referaltest.php</strong></p>
<blockquote><p>
$referer= $_SERVER['HTTP_REFERER'];</p>
<p>//find the search query from google that brought them here<br />
$qref= strpos($referer,&#8217;google&#8217;);</p>
<p>if($qref!=&#8221;){<br />
$qstart = strpos($referer,&#8217;q=&#8217;);<br />
$qend = strpos($referer,&#8217;&amp;&#8217;,$qstart);<br />
$qtext= substr($referer,$qstart+2,$qend-$qstart-2);<br />
$qtext= str_replace(&#8216;+&#8217;,&#8217; &#8216;,$qtext);<br />
}<br />
echo $qtext
</p></blockquote>
<p>It&#8217;s that simple&#8230; See below for more explanation and additional samples.</p>
<h2>Step By Step Explanation of Script</h2>
<blockquote><p>$referer= $_SERVER['HTTP_REFERER'];</p></blockquote>
<p>Populate the PHP server variable that tells you the full path of the where the user came from.<br />
Note: This field can be blank or incomplete depending on several factors on the user/searchbot&#8217;s server settings &#8211; but for the purposes of this script, we are just looking at this variable for specific information from Google.</p>
<blockquote><p>$qref= strpos($referer,&#8217;google&#8217;);</p></blockquote>
<p>Use PHP STRPOS() to find the needle in the haystack.  In this case, we are looking for the term google in the referer field.  Note, this PHP function is case sensitive, so make sure you stay with all small letters here.  (And for other search engines, where the value is not lowercase, you must match that specifically as well).</p>
<blockquote><p>$qstart = strpos($referer,&#8217;q=&#8217;);</p></blockquote>
<p>Find the starting position of the &#8220;q=&#8221; term, which is where google tells you in this referer string what search term brought the visitor here.</p>
<blockquote><p>$qend = strpos($referer,&#8217;&amp;&#8217;,$qstart);</p></blockquote>
<p>Find the ending of the search term &#8211; The &#038; indicates the variable, so we&#8217;ll end it here.</p>
<blockquote><p>$qtext= substr($referer,$qstart+2,$qend-$qstart-2);</p></blockquote>
<p>strip the rest of the string, leaving us with the search term and with pluses in between.</p>
<blockquote><p>$qtext= str_replace(&#8216;+&#8217;,&#8217; &#8216;,$qtext);</p></blockquote>
<p>Remove the + characters that Google places between search terms</p>
<blockquote><p>echo $qtext</p></blockquote>
<p>Print out the Google Search that brought the visitor to this page.  You can of course now put this variable into a session variable and use it throughout the session, or store it to a database for tracking searches in to your site, etc&#8230;</p>
<p>Likewise, you can use this technique for any search engine, such as Yahoo, Bing, etc&#8230; You just need to find the search term pattern and how it appears in the referer variable that the PHP Server variable returns.</p>
]]></content:encoded>
			<wfw:commentRss>http://techexposures.com/2010/02/php-script-show-google-search-that-brought-visitor-to-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RSS Feed &#8211; Feedburner Added</title>
		<link>http://techexposures.com/2010/02/rss-feed-feedburner-added/</link>
		<comments>http://techexposures.com/2010/02/rss-feed-feedburner-added/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 21:51:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[latest linux news]]></category>
		<category><![CDATA[linux distro reviews]]></category>
		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://techexposures.com/?p=958</guid>
		<description><![CDATA[Here&#8217;s the link to our RSS feed on Feedburner.
http://feeds.feedburner.com/TechExposures
]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s the link to our RSS feed on Feedburner.</p>
<p><a href="http://feeds.feedburner.com/TechExposures">http://feeds.feedburner.com/TechExposures</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techexposures.com/2010/02/rss-feed-feedburner-added/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easiest Way to Have a USA IP Address</title>
		<link>http://techexposures.com/2010/02/easiest-way-to-have-a-usa-ip-address/</link>
		<comments>http://techexposures.com/2010/02/easiest-way-to-have-a-usa-ip-address/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 08:51:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Browser Tools]]></category>
		<category><![CDATA[Internet Tips & Tricks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP Programming]]></category>
		<category><![CDATA[ip cloak]]></category>
		<category><![CDATA[ip proxy]]></category>
		<category><![CDATA[ip tunnel]]></category>
		<category><![CDATA[ssh tunnel]]></category>

		<guid isPermaLink="false">http://techexposures.com/?p=952</guid>
		<description><![CDATA[Free and Legal Method for Acquiring a Reliable USA IP Address For Testing and Surfing While Outside the USA.
Q. You&#8217;re located outside the USA and need to test what your website looks like to your USA visitors.  What&#8217;s the easiest way to accomplish this for free an without pesky and unstable ip cloaks and expensive [...]]]></description>
			<content:encoded><![CDATA[<h2>Free and Legal Method for Acquiring a Reliable USA IP Address For Testing and Surfing While Outside the USA.</h2>
<p>Q. You&#8217;re located outside the USA and need to test what your website looks like to your USA visitors.  What&#8217;s the easiest way to accomplish this for free an without pesky and unstable ip cloaks and expensive ip proxy address forwarders.</p>
<p>A. If you have a server already located in the USA, all you need to do is to connect via SSH to your server with a port tunnel and then configure your browser to access all non local internet connections through that port.</p>
<h2><strong>Step by Step Guide to SSH Tunnel:</strong></h2>
<p>1. Open your Linux terminal console (Putty on Windows, Telnet, etc&#8230;) and connect with SSH to your USA server by entering the following command</p>
<blockquote><p>ssh -D9998 username@server-address</p></blockquote>
<p>Once you&#8217;ve connected, you have opened port 9998 on your local computer to accept tunneled internet requests through your server in the USA.</p>
<p>2. Configure your browser to connect non-local internet through the tunneled port using the Winsocks protocol.  All browsers have this option &#8211; I&#8217;ll show you how to do it in Firefox, but the concept is similar for IE, Chrome, and other browsers.</p>
<p><a href="http://techexposures.com/wp-content/uploads/2010/02/Clipboard01.jpg"></a><a href="http://techexposures.com/wp-content/uploads/2010/02/Clipboard01.jpg"><img class="alignleft size-medium wp-image-953" title="Clipboard01" src="http://techexposures.com/wp-content/uploads/2010/02/Clipboard01-300x280.jpg" alt="" width="300" height="280" /></a><br />
A.  Edit Options in Firefox and select the Advanced tab.</p>
<p>Click on the Settings button under the Network : Connection</p>
<p><a href="http://techexposures.com/wp-content/uploads/2010/02/Clipboard02.jpg"><img class="alignleft size-medium wp-image-954" title="Clipboard02" src="http://techexposures.com/wp-content/uploads/2010/02/Clipboard02-300x298.jpg" alt="" width="300" height="298" /></a> B.  The Connection Settings menu pops up</p>
<p>&#8211;&gt;  Select the button &#8220;Manual Proxy Configuration&#8221;</p>
<p>&#8211;&gt; In the Socks Host field enter  the ip address for your local connection  127.0.0.1</p>
<p>&#8211;&gt; Then add the port number you chose in your SSH connection  (In our example, it was port 9998)</p>
<p>&#8211;&gt;  Make sure the Socks v5 is selected, and that No Proxy for localhost is filled in.</p>
<p>&#8211;&gt; Click OK and you&#8217;re good to go!</p>
<p>You can test your browser connection by going to a site that spits back your IP address like http://www.whatismyip.com</p>
<p>Now you can surf the net as if you are located at your server&#8217;s physical location.   Obviously, this tunnel will work for any location in the world.   I have servers in Europe and Asia, and I use this method to test what users there are seeing as well.</p>
<p>I have not tried watching shows on Hulu or the like, and I wouldn&#8217;t recommend that for this tunnel method, since you are passing data through your server &#8211; why slow it down with heavy streaming video files content?</p>
]]></content:encoded>
			<wfw:commentRss>http://techexposures.com/2010/02/easiest-way-to-have-a-usa-ip-address/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Top 10 Must Have iPod iPhone Apps February 2010</title>
		<link>http://techexposures.com/2010/01/top-10-ipod-iphone-apps-must-have-february-2010/</link>
		<comments>http://techexposures.com/2010/01/top-10-ipod-iphone-apps-must-have-february-2010/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 14:33:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mobile Tools]]></category>
		<category><![CDATA[Software Reviews]]></category>
		<category><![CDATA[ipod tools]]></category>
		<category><![CDATA[ipad apps]]></category>
		<category><![CDATA[iphone apps]]></category>
		<category><![CDATA[ipod apps]]></category>
		<category><![CDATA[must have iphone apps]]></category>
		<category><![CDATA[must have ipod apps]]></category>

		<guid isPermaLink="false">http://techexposures.com/?p=943</guid>
		<description><![CDATA[Must Have Apps for February 2010 
With over 200,000 active iPod and iPhone apps, there&#8217;s nearly an endless selection of tools and toys for every occasion. We&#8217;ve scoured the iPhone apps directories and tested many hundreds of tools. Here&#8217;s our top ten list of must-have iPhone apps for January 2010.
iPhone and iPad Suitable
We chose apps [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Must Have Apps for February 2010 </strong><br />
With over 200,000 active iPod and iPhone apps, there&#8217;s nearly an endless selection of tools and toys for every occasion. We&#8217;ve scoured the iPhone apps directories and tested many hundreds of tools. Here&#8217;s our top ten list of must-have iPhone apps for January 2010.</p>
<p><strong>iPhone and iPad Suitable</strong><br />
We chose apps that are suitable and work well on both Apple iPhones and iPads. These apps will add to your iPhone experience, and are in addition to the great set of apps that Apple includes with your purchased device.</p>
<p>The apps listed here require you to have an iTunes account and you must download them from the Apps tool on your Apple device or from your PC or Mac&#8217;s iTunes.  Most of these apps are free.  The paid apps will include their cost in the description.</p>
<p><strong>Top Ten Must Have iPhone iPod Apps</strong></p>
<p><strong>General News<br />
1. NPR News &#8211; Free </strong><a title="NPR News iPhone App" href="http://click.linksynergy.com/fs-bin/click?id=Sa1auECVp74&amp;subid=&amp;offerid=146261.1&amp;type=10&amp;tmpid=3909&amp;RD_PARM1=http%3A%2F%2Fitunes.apple.com%2Fus%2Fapp%2Fnpr-news%2Fid324906251%3Fmt%3D8%2526uo%3D6" target="_blank"><strong>iTunes Download</strong></a><br />
National Public Radio is everywhere.  Thanks to this nifty app, you can listen to all NPR Radio stations live streaming from your iPhone.  You can also browse news stories by category and queue up your favorite programs on demand.  With this app, you can also save your favorite channels.  One of my favorite features it to click on a news story and select the audio playback of the story to be read to me.  NPR&#8217;s App is also integrated nicely with email to send to your favorite stories to your friends.  The written stories along with live streaming audio makes this a must-have for any news junky, or even if you just want to keep up with what&#8217;s happening.</p>
<p><strong>2. NY Times &#8211; Free </strong><a title="NY Times iPhone App" href="http://click.linksynergy.com/fs-bin/click?id=Sa1auECVp74&amp;subid=&amp;offerid=146261.1&amp;type=10&amp;tmpid=3909&amp;RD_PARM1=http%3A%2F%2Fitunes.apple.com%2Fus%2Fapp%2Fnytimes%2Fid284862083%3Fmt%3D8%2526uo%3D6" target="_blank"><strong>iTunes Download</strong></a><br />
New York Times Company has produced the gold standard for all iPhone apps.  The look and feel of this app is stylish with very easy to navigate buttons that take you to your selected categories.  The app updates with the latest news each time you launch the player.  The orientation of the news articles switch to landscape when you turn the device on its side.    This app also makes it easy to send articles to friends via email.  We&#8217;d like to see more content than just a few articles from today, but the overall experience is great.  Rumor has it that NY Times will begin charging to use this app in 2011.  Meanwhile, let&#8217;s all enjoy it for free.</p>
<p><strong>Social Entertainment<br />
3. Facebook &#8211; Free </strong><a title="Facebook iPhone App" href="http://click.linksynergy.com/fs-bin/click?id=Sa1auECVp74&amp;subid=&amp;offerid=146261.1&amp;type=10&amp;tmpid=3909&amp;RD_PARM1=http%3A%2F%2Fitunes.apple.com%2Fus%2Fapp%2Ffacebook%2Fid284882215%3Fmt%3D8%2526uo%3D6" target="_blank"><strong> iTunes Download</strong></a><br />
Facebook is on iPhones.  &#8216;Nuff said.  Truly, this is one of the great iPhones apps in ease of use and navigation.  Unlike the myriad of Twitter tools, this Facebook app was written by the folks at Facebook.  You&#8217;re getting the real thing here.  I guess if you&#8217;re a FB&#8217;er (which by now, most internet users are), you will want to download this app pronto with your new device.</p>
<p><strong>Live Radio<br />
4. CBS Radio App &#8211; Free <a title="CBS Radio iPhone App" href="http://click.linksynergy.com/fs-bin/click?id=Sa1auECVp74&amp;subid=&amp;offerid=146261.1&amp;type=10&amp;tmpid=3909&amp;RD_PARM1=http%3A%2F%2Fitunes.apple.com%2Fus%2Fapp%2Fcbs-radio%2Fid323701765%3Fmt%3D8%2526uo%3D6" target="_blank"> iTunes Download</a><br />
</strong>This incredible free app includes dozens (over 100 at last count) of live CBS affiliate radio stations around the country.  It also includes Yahoo&#8217;s radio network, and AOL&#8217;s radio network too.  This app features a very simple to use browse tool to find your station.  You can choose by city &amp; genre, and see your recent history.  You can even search for stations near you (provided that you allow Apple to announce your location.  The channels stream live and the broadcast quality is quite good.  I especially like choosing AOL stations by genre.  Sometimes I&#8217;m in the mood for a Bebop Jazz session, or maybe 1990&#8217;s Alternative Rock channel.  It&#8217;s all there, free, and easy to use.  This would easily be one of my first downloads on any new Apple device.   Download Link from iTunes</p>
<p><strong>Communication<br />
5. AIM Free  </strong><a title="AIM Free iPhone App" href="http://click.linksynergy.com/fs-bin/click?id=Sa1auECVp74&amp;subid=&amp;offerid=146261.1&amp;type=10&amp;tmpid=3909&amp;RD_PARM1=http%3A%2F%2Fitunes.apple.com%2Fus%2Fapp%2Faim-free-edition%2Fid281704574%3Fmt%3D8%2526uo%3D6" target="_blank"><strong>iTunes Download</strong></a><br />
AT&amp;T had to think twice about this.  Would you still send SMS if you can chat for free with all your AIM buddies on iPhone?  Fortunately for us, this instant messenger works great on G3 and on Wi-Fi as well.  The app is a bit cumbersome at first, but you&#8217;ll get the hang of it quickly.   I do wish they had better support for emoticons, and the push tool (notification when you get an IM from someone while you aren&#8217;t actively in the app) is a bit hokey.  Still, the functionality is great, and you can&#8217;t beat the price!</p>
<p><strong>Make Your Own Music<br />
6. NLogFree  Free  <a title="Nlog Synthesizer iPhone App" href="http://click.linksynergy.com/fs-bin/click?id=Sa1auECVp74&amp;subid=&amp;offerid=146261.1&amp;type=10&amp;tmpid=3909&amp;RD_PARM1=http%3A%2F%2Fitunes.apple.com%2Fus%2Fapp%2Fnlog-free-synth%2Fid314134854%3Fmt%3D8%2526uo%3D6" target="_blank">iTunes Download</a></strong><br />
Friends, this is one of those you have to see it to believe it.  Download the free version of this app and you&#8217;ll be making New Age or synth-pop music in no time.  The staggering amount of preset sounds and ways to manipulate the music as you&#8217;re playing the keyboard is simply fantastic.  They offer a paid version as well &#8211; but why not try the free one first?</p>
<p><strong>Sports</strong><br />
<strong>7. ESPN Sports Score Center  Free  </strong><a title="ESPN Score Center iPhone App" href="http://click.linksynergy.com/fs-bin/click?id=Sa1auECVp74&amp;subid=&amp;offerid=146261.1&amp;type=10&amp;tmpid=3909&amp;RD_PARM1=http%3A%2F%2Fitunes.apple.com%2Fus%2Fapp%2Fespn-scorecenter%2Fid317469184%3Fmt%3D8%2526uo%3D6" target="_blank"><strong> iTunes Download</strong></a><br />
If you&#8217;re a sports junky like me, you&#8217;ll want the scores and news stories to all your favorite teams in the palm of your hands.  ESPN Score Center delivers, however, there are many other sports apps out there that do a good job as well.  I love ESPN, so I chose this app.  This interface is a bit off-putting at first.  Each sport is confined to its own screen.  If you don&#8217; t  like the feel of this puppy, give a shake to USA Today&#8217;s news app, which includes an admirable sports and scores section as well.</p>
<p><strong>Finance<br />
8. CNBC RT (Real Time)  Free  </strong><a title="CNBC RT iPhone App" href="http://itunes.apple.com/us/app/cnbc-real-time/id334125582?mt=8&amp;uo=6" target="_blank"><strong> iTunes Download</strong></a><br />
A gem of an app.  Imagine a mobile device giving you free real time quotes?  On top of the financial market center, of which CNBC is arguably the leader, they also offer a push alert service when breaking news happens.  There&#8217;s also a great selection of today&#8217;s top videos.  I enjoy watching the daily recap, and especially Jim Kramer&#8217;s Mad Money segments.  This is a must-have for any financially-savvy user.</p>
<p><strong>Entertainment<br />
9. Live Cams (Barry Egerter) Not Free </strong><a title="Live Cams iPhone App" href="http://click.linksynergy.com/fs-bin/click?id=Sa1auECVp74&amp;subid=&amp;offerid=146261.1&amp;type=10&amp;tmpid=3909&amp;RD_PARM1=http%3A%2F%2Fitunes.apple.com%2Fus%2Fapp%2Flive-cams%2Fid301058477%3Fmt%3D8%2526uo%3D6" target="_blank"><strong> iTunes Download</strong></a><br />
Maybe it&#8217;s voyeristic, but there&#8217;s something so cool about watching live webcams from around the world streaming into your mobile device.   In an instant you are in Japan, Australia, and the grocery store in downtown Passaic, New Jersey.  This neat app offers a customizable screen by category or pulls up  random live webcams from around the world.  You see them in a grid of 12 on a screen.  By clicking on the little icon image (which itself is updating in real time), you are taken to a full screen view of the webcam.  What&#8217;s more, many of the webcams allow you to control the video by actually moving the camera angle, pitch, and zoom.  I really enjoyed moving around a camera on street scene in downtown Tokyo, and then manipulated a camera on Broadway and 46th street in Manhattan.  Loads of fun for a few dollars.  Highly recommended.</p>
<p><strong>Online Books</strong><br />
<strong>10. Stanza  Free </strong><a title="Stanza Online Books iPhone App" href="http://click.linksynergy.com/fs-bin/click?id=Sa1auECVp74&amp;subid=&amp;offerid=146261.1&amp;type=10&amp;tmpid=3909&amp;RD_PARM1=http%3A%2F%2Fitunes.apple.com%2Fus%2Fapp%2Fstanza%2Fid284956128%3Fmt%3D8%2526uo%3D6" target="_blank"><strong> iTunes Download</strong></a><br />
Who needs a kindle?  Well, maybe you do need one, but you have the iPhone or iPod for now.  This neat free tool allows you to download for free many dozens of online books, mostly of the classics, but also some useful how-to and programming manuals.  They also link in with major book sellers for purchasing an online version of your favorite current authors.</p>
]]></content:encoded>
			<wfw:commentRss>http://techexposures.com/2010/01/top-10-ipod-iphone-apps-must-have-february-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is the iPad Really Just an iPod for Giants? Analysis and Review.</title>
		<link>http://techexposures.com/2010/01/is-the-ipad-really-just-an-ipod-for-giants-analysis-and-review/</link>
		<comments>http://techexposures.com/2010/01/is-the-ipad-really-just-an-ipod-for-giants-analysis-and-review/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 12:02:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Industry News]]></category>
		<category><![CDATA[Mobile Tools]]></category>
		<category><![CDATA[ipod tools]]></category>
		<category><![CDATA[ipad ipod iphone comparison]]></category>
		<category><![CDATA[iPad vs. iPhone]]></category>
		<category><![CDATA[ipad vs. ipod]]></category>

		<guid isPermaLink="false">http://techexposures.com/?p=940</guid>
		<description><![CDATA[As we&#8217;ve already reported, Apple&#8217;s official announcement of the iPad to be released in a couple months, has sent shockwaves through the technology world.   Steve Jobs and Apple have a history of being at the forefront of innovation in the technology industry.  
A New Era &#8211; The iPad Era?
Could this new iPad [...]]]></description>
			<content:encoded><![CDATA[<p>As we&#8217;ve <a href="http://techexposures.com/2010/01/ipad-is-an-oversized-ipod/">already reported</a>, Apple&#8217;s official announcement of the iPad to be released in a couple months, has sent shockwaves through the technology world.   Steve Jobs and Apple have a history of being at the forefront of innovation in the technology industry.  </p>
<p><strong>A New Era &#8211; The iPad Era?</strong><br />
Could this new iPad foreshadow the shift in consumer migration and mix with telephony and media?  Has Apple hit this one out of the park with a new concept for a new era?  The reviews thus far have been mixed.  Most industry pundits are cautious not to outright pan the device for fear of the boomerang should Apple prove again that it knows better.   </p>
<p><strong>Pricing</strong><br />
Jumping ahead of analyst pontifications, the iPad has been priced at a starting modest $499, well below the industry experts $999 expected price tag.  The lower price will entice early adopters and gadgeteers to grab a device and show off to their friends.  Apple is confident of two things &#8211; 1. Viral effect &#8211; Just like the iPod did a decade ago, the new iPad users will bring many more new iPad users &#8211; (sort of like a Faberge commercial from the 1970s).  2. At this price, one iPad won&#8217;t be enough.  You can grab a couple for the members of your house.</p>
<p><strong>Features</strong><br />
We&#8217;ve included on this website a handy <a href="http://techexposures.com/2010/01/ipod-vs-ipad-vs-iphone-features-comparison-2/">cross reference chart</a> to compare the iPad with the iPod and iPhone side by side.  The features are similar, with the iPhone getting the nod with a camera and phone service.  The question that begs to be asked, will users shell out 500 dollars or more for essentially a bigger iPod?   The analogy that keeps coming to me is that somewhere in a parallel world, there are giants walking around with iPads that look like iPods in their large hands.</p>
<p><strong>Where&#8217;s the compelling game-changer?</strong><br />
<strong>iPad vs. Amazon Kindle </strong> &#8211; Kindle already has an installed base.  If Apple is challenging Amazon&#8217;s online reader, Amazon has the distribution channel to rival Apple&#8217;s iTunes.  For the current users of Kindle, is there enough of a compelling reason to switch to the nicer looking (and larger) iPad? Will new buyers be willing to shell out a couple hundred more dollars (at minimum) for the iPad?  <em>Our bet &#8211; current Kindle users will stay with Amazon. New users will consider Apple&#8217;s iPad for it&#8217;s added browsing and larger screen.</em></p>
<p><strong>iPad vs. iPod</strong> &#8211; Industry analysts are already talking about the possible cannibalization of the iPod Touch market over to iPad.  From Apple&#8217;s perspective, that&#8217;s a $200 minimum jump in per unit sales.  That&#8217;s not a bad thing.  Are consumers really going to ditch their neat, put-in-your-shirt-pocket iPod with all the essentials &#8211; mp3, video, iTunes, App store, browsing with Safari (albeit on a small scale), for the added convenience of a bigger screen?  </p>
<p><strong>The iPad has a bigger screen</strong><br />
So does my 26&#8243; Samsung HD PC monitor! And with HD it gives me the crispy sharp way to watch iTunes movie rentals.   I put my iPod down when I want to watch a full movie (unless I&#8217;m on a plane and have time to kill).   I don&#8217;t see the argument for a bigger screen on an iPod device (which is essentially what the iPad provides).</p>
<p><strong>The iPad has G3 network coverage</strong><br />
iPad and iPod both have wi-fi.  The iPad includes The G3 network, which means you can also browse the internet on your subway or bus ride to work.  Is it really a convenience to lug around a 9.7&#8243; diagonal screen (without a cover!) under your arms while going thru airport check-in, or on the subway train with your nosy neighbor watching along with you?  Our bet &#8211; users who want the cool new gadget to show off to their colleagues or to look avante-garde, will run to Best-Buy and grab an iPad as soon as it&#8217;s available.  The rest of us will enjoy our iPods until we see some naturally compelling reason to switch.</p>
<p><strong>iPad vs. iPhone </strong>- Two different devices, different purposes.  You want a smart phone? Get an iPhone.</p>
<p><strong>iPad vs. Laptops</strong><br />
I like that my Dell Laptop closes.  I like that it has a normal (not virtual) keyboard with tactile keys that I can feel before typing (which touch typists like to do).  I like the 15.5&#8243; inch screen for those occasions that an iPod is too small, and I&#8217;m not near a big TV or PC monitor screen.  The iPad comes with Apple&#8217;s A4 processor which pumps at 1Ghz.  Guess what, Intel and AMD fly at 1.4Ghz and faster.  For business, the laptop is still essential, especially with the newer 6 cell batteries and longer times between recharges.  <em>Our bet &#8211; Laptop continues to dominate the mobile larger footprint.</em></p>
<p><strong>Conclusion</strong><br />
The iPad is a cool evolution.  It doesn&#8217;t seem to have the real innovation that was apparent immediately in the iPod Touch a few years ago.   We love Apple products, especially the iPhone, iPod, iTunes, and the Mac OS.  The iPad may grow on us, but it hasn&#8217;t been love at first site.</p>
]]></content:encoded>
			<wfw:commentRss>http://techexposures.com/2010/01/is-the-ipad-really-just-an-ipod-for-giants-analysis-and-review/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>iPod vs. iPad vs. iPhone Features Comparison</title>
		<link>http://techexposures.com/2010/01/ipod-vs-ipad-vs-iphone-features-comparison-2/</link>
		<comments>http://techexposures.com/2010/01/ipod-vs-ipad-vs-iphone-features-comparison-2/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 12:39:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Industry News]]></category>
		<category><![CDATA[Mobile Tools]]></category>
		<category><![CDATA[ipod tools]]></category>
		<category><![CDATA[ipad ipod iphone comparison]]></category>
		<category><![CDATA[iPad vs. iPhone]]></category>
		<category><![CDATA[ipad vs. ipod]]></category>

		<guid isPermaLink="false">http://techexposures.com/?p=927</guid>
		<description><![CDATA[Apple&#8217;s announcement of the new iPad gives the consumer a new challenge to decide which device to purchase.  TechExposures set out to make the decision process a bit easier.  Here&#8217;s a side by side comparison of the features and specs of the three Apple popular devices.




Side by Side Comparison


Ipad


Ipod Touch


Iphone 3Gs



Features Video
8 Minute [...]]]></description>
			<content:encoded><![CDATA[<p>Apple&#8217;s announcement of the new iPad gives the consumer a new challenge to decide which device to purchase.  TechExposures set out to make the decision process a bit easier.  Here&#8217;s a side by side comparison of the features and specs of the three Apple popular devices.</p>
<table border=1 style="height: 4665px;" width="501" bordercolor="#000000">
<tbody>
<tr valign="TOP">
<td width="25%">
<h2><strong>Side by Side Comparison</strong></h2>
</td>
<td width="25%">
<h2><strong>Ipad</strong></h2>
</td>
<td width="25%">
<h2><strong>Ipod Touch</strong></h2>
</td>
<td width="25%">
<h2><strong>Iphone 3Gs</strong></h2>
</td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Features Video</strong></span></span></td>
<td width="25%"><a href="http://www.apple.com/ipad/#video"><span><span style="font-size: x-small;">8 Minute Video</span></span></a></td>
<td width="25%"></td>
<td width="25%"></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Dimensions</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Height:</span></span></p>
<p><span><span style="font-size: x-small;">9.56 			inches (242.8 mm)</span></span></p>
<p><span><span style="font-size: x-small;">Width:</span></span></p>
<p><span><span style="font-size: x-small;">7.47 			inches (189.7 mm)</span></span></p>
<p><span><span style="font-size: x-small;">Depth:</span></span></p>
<p><span><span style="font-size: x-small;">0.5 			inch (13.4 mm)</span></span></p>
<p><span><span style="font-size: x-small;">Weight:</span></span></p>
<p><span><span style="font-size: x-small;">1.5 			pounds (0.68 kg) Wi-Fi model;</span></span></p>
<p><span><span style="font-size: x-small;">1.6 pounds (0.73 			kg) Wi-Fi + 3G model</span></span></td>
<td width="25%">
<dl>
<dt><span><span style="font-size: x-small;">Height: </span></span> </dt>
<dd> <span><span style="font-size: x-small;">4.3 inches (110 mm) </span></span> </dd>
<dt> <span><span style="font-size: x-small;">Width: </span></span> </dt>
<dd> <span><span style="font-size: x-small;">2.4 inches (61.8 mm) </span></span> </dd>
<dt> <span><span style="font-size: x-small;">Depth: </span></span> </dt>
<dd> <span><span style="font-size: x-small;">0.33 inch (8.5 mm) </span></span> </dd>
<dt> <span><span style="font-size: x-small;">Weight: </span></span> </dt>
<dd> <span><span style="font-size: x-small;">4.05 ounces (115 				grams)</span></span></dd>
</dl>
</td>
<td width="25%">
<dl>
<dt><span><span style="font-size: x-small;">Height: </span></span> </dt>
<dd> <span><span style="font-size: x-small;">4.5</span></span><span><span style="font-size: x-small;"> inches (115.5 mm) </span></span> </dd>
<dt> <span><span style="font-size: x-small;">Width: </span></span> </dt>
<dd> <span><span style="font-size: x-small;">2.4</span></span><span><span style="font-size: x-small;"> inches (62.1 mm) </span></span> </dd>
<dt> <span><span style="font-size: x-small;">Depth: </span></span> </dt>
<dd> <span><span style="font-size: x-small;">0.48</span></span><span><span style="font-size: x-small;"> inch (12.3 mm) </span></span> </dd>
<dt> <span><span style="font-size: x-small;">Weight: </span></span> </dt>
<dd> <span><span style="font-size: x-small;">4.8</span></span><span><span style="font-size: x-small;"> ounces (135 grams) </span></span> </dd>
</dl>
</td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Capacity</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">16GB, 32GB, or 			64GB flash drive</span></span></td>
<td width="25%"><span><span style="font-size: x-small;">32GB 				or 64GB flash drive</span></span><br />
<span><span style="font-size: x-small;">Holds 				up to 7,000 or 14,000 songs in 128-Kbps AAC format </span></span><br />
<span><span style="font-size: x-small;">Holds 				up to 40,000 or 90,000 iPod-viewable photos</span></span><br />
<span><span style="font-size: x-small;">Holds up to 40 				hours or 80 hours of video </span></span></td>
<td width="25%"><span><span style="font-size: x-small;">16GB or 32GB flash 			drive</span></span></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Display</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">9.7-inch (diagonal) LED-backlit glossy widescreen Multi-Touch 			display with IPS technology</span></span></p>
<p><span><span style="font-size: x-small;">1024-by-768-pixel resolution at 132 pixels per inch (ppi)</span></span></p>
<p><span><span style="font-size: x-small;">Fingerprint-resistant oleophobic coating</span></span></p>
<p><span><span style="font-size: x-small;">Support for display of multiple languages and characters 			simultaneously</span></span></td>
<td width="25%"><span><span style="font-size: x-small;">3.5-inch 				(diagonal) widescreen<br />
Multi-Touch display </span></span><br />
<span><span style="font-size: x-small;"> </span></span></p>
<p><span><span style="font-size: x-small;">480-by-320-pixel 				resolution at 163 pixels per inch </span></span></td>
<td width="25%"><span><span style="font-size: x-small;">3.5-inch 				(diagonal) widescreen Multi-Touch display </span></span><br />
<span><span style="font-size: x-small;"> </span></span></p>
<p><span><span style="font-size: x-small;">480-by-320-pixel 				resolution at 163 ppi </span></span><br />
<span> </span></p>
<p><span><span style="font-size: x-small;">Fingerprint-resistant 				oleophobic coating </span></span></p>
<p><span><span style="font-size: x-small;">Support for 				display of multiple languages and characters simultaneously </span></span></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Wireless</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;"><strong>Wireless 			and cellular Wi-Fi model</strong></span></span></p>
<p><span><span style="font-size: x-small;">Wi-Fi (802.11a/b/g/n)</span></span> <span><span style="font-size: x-small;">Bluetooth 					2.1 + EDR technology</span></span></p>
<p><span><span style="font-size: x-small;"><strong>Wi-Fi 			+ 3G model</strong></span></span></p>
<p><span><span style="font-size: x-small;">UMTS/HSDPA (850, 1900, 2100 MHz)</span></span></p>
<p><span><span style="font-size: x-small;">GSM/EDGE (850, 900, 1800, 1900 MHz)</span></span></p>
<p><span><span style="font-size: x-small;">Wi-Fi (802.11a/b/g/n)</span></span></p>
<p><span><span style="font-size: x-small;">Bluetooth 2.1 + EDR technology</span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Wi-Fi 				(802.11b/g) </span></span><br />
<span> </span></p>
<p><span><span style="font-size: x-small;">Nike 				+ iPod support built in </span></span><br />
<span> </span></p>
<p><span><span style="font-size: x-small;">Maps 				location-based service</span></span><br />
<span> </span></p>
<p><span><span style="font-size: x-small;">Bluetooth 2.1 + 				EDR </span></span></td>
<td width="25%"><span><span style="font-size: x-small;">UMTS/HSDPA 				(850, 1900, 2100 MHz)</span></span></p>
<p><span><span style="font-size: x-small;"> </span></span><br />
<span><span style="font-size: x-small;">GSM/EDGE 				(850, 900, 1800, 1900 MHz) </span></span><br />
<span> </span></p>
<p><span><span style="font-size: x-small;">Wi-Fi 				(802.11b/g) </span></span><br />
<span> </span></p>
<p><span><span style="font-size: x-small;">Bluetooth 2.1 + 				EDR wireless technology </span></span></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Location</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Wi-Fi</span></span></p>
<p><span><span style="font-size: x-small;">Digital compass</span></span></p>
<p><span><span style="font-size: x-small;">Assisted GPS (Wi-Fi + 3G model)</span></span></p>
<p><span><span style="font-size: x-small;">Cellular (Wi-Fi + 3G model)</span></span></td>
<td width="25%"></td>
<td width="25%"><span><span style="font-size: x-small;">Assisted 				GPS </span></span><br />
<span><span style="font-size: x-small;">Digital 				compass</span></span><a href="http://www.apple.com/iphone/specs.html#footnote-2"><sup><span><span style="font-size: x-small;">2</span></span></sup></a><span><span style="font-size: x-small;"> </span></span><br />
<span><span style="font-size: x-small;">Wi-Fi </span></span><br />
<span><span style="font-size: x-small;">Cellular </span></span></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>In the Box</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">iPad</span></span></p>
<p><span><span style="font-size: x-small;">Dock Connector to USB Cable</span></span></p>
<p><span><span style="font-size: x-small;">10W USB Power Adapter</span></span></p>
<p><span><span style="font-size: x-small;">Documentation</span></span></td>
<td width="25%"><span><span style="font-size: x-small;">iPod 				touch </span></span><br />
<span><span style="font-size: x-small;">Apple 				Earphones with Remote and Mic </span></span><br />
<span><span style="font-size: x-small;">Dock 				Connector to USB Cable </span></span><br />
<span><span style="font-size: x-small;">Quick Start 				guid</span></span></td>
<td width="25%"><span><span style="font-size: x-small;">iPhone 				3GS </span></span><br />
<span><span style="font-size: x-small;">Apple 				Earphones with Remote and Mic </span></span><br />
<span><span style="font-size: x-small;">Dock 				Connector to USB Cable </span></span><br />
<span><span style="font-size: x-small;">USB 				Power Adapter </span></span><br />
<span><span style="font-size: x-small;">Documentation </span></span><br />
<span><span style="font-size: x-small;">SIM eject tool </span></span></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Camera &amp; 			Photos</strong></span></span></td>
<td width="25%">N/A</td>
<td width="25%">N/A</td>
<td width="25%"><span><span style="font-size: x-small;">3 				megapixels </span></span><br />
<span><span style="font-size: x-small;">Autofocus </span></span><br />
<span><span style="font-size: x-small;">Tap 				to focus </span></span><br />
<span><span style="font-size: x-small;">Video 				recording, VGA up to 30 fps with audio </span></span><br />
<span><span style="font-size: x-small;">Photo 				and video geotagging </span></span><br />
<span><span style="font-size: x-small;">iPhone and 				third-party application integration </span></span></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Green Technology</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Arsenic-free display glass</span></span></p>
<p><span><span style="font-size: x-small;">BFR-free</span></span></p>
<p><span><span style="font-size: x-small;">Mercury-free LCD display</span></span></p>
<p><span><span style="font-size: x-small;">PVC-free</span></span></p>
<p><span><span style="font-size: x-small;">Recyclable aluminum and glass enclosure</span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Arsenic-free 				display glass </span></span><br />
<span><span style="font-size: x-small;">BFR-free </span></span><br />
<span><span style="font-size: x-small;">Mercury-free 				LED-backlit display </span></span><br />
<span><span style="font-size: x-small;">PVC-free </span></span><br />
<span><span style="font-size: x-small;">Highly 				recyclable stainless steel enclosure </span></span></td>
<td width="25%"><span><span style="font-size: x-small;">PVC-free 				handset </span></span><br />
<span><span style="font-size: x-small;">PVC-free 				headphones </span></span><br />
<span><span style="font-size: x-small;">PVC-free 				USB cable </span></span><br />
<span><span style="font-size: x-small;">Bromine-free 				printed circuit boards </span></span><br />
<span><span style="font-size: x-small;">Mercury-free 				LCD display </span></span><br />
<span><span style="font-size: x-small;">Majority 				of packaging made from post-consumer recycled fiberboard and 				biobased materials </span></span><br />
<span><span style="font-size: x-small;">Power adapter 				outperforms strictest global energy efficiency standards </span></span></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Processor</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">1GHz Apple A4 			custom-designed, high-performance, low-power system-on-a-chip</span></span></td>
<td width="25%"></td>
<td width="25%"></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Sensors</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Accelerometer</span></span></p>
<p><span><span style="font-size: x-small;">Ambient light sensor</span></span></td>
<td width="25%"><span style="font-size: x-small;">VAccelerometer</span></td>
<td width="25%"><span><span style="font-size: x-small;">Accelerometer </span></span><br />
<span> </span></p>
<p><span><span style="font-size: x-small;">Proximity 				sensor </span></span><br />
<span> </span></p>
<p><span><span style="font-size: x-small;">Ambient light 				sensor </span></span></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Audio Playback</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Frequency response: 20Hz to 20,000Hz</span></span></p>
<p><span><span style="font-size: x-small;">Audio formats supported: AAC (16 to 320 Kbps), Protected AAC (from 			iTunes Store), MP3 (16 to 320 Kbps), MP3 VBR, Audible (formats 2, 			3, and 4), Apple Lossless, AIFF, and WAV</span></span></p>
<p><span><span style="font-size: x-small;">User-configurable maximum volume limit</span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Frequency 				response: 20Hz to 20,000Hz </span></span><br />
<span><span style="font-size: x-small;">Audio formats 				supported: AAC (8 to 320 Kbps), Protected AAC (from iTunes 				Store), MP3 (8 to 320 Kbps), MP3 VBR, Audible (formats 2, 3, and 				4), Apple Lossless, AIFF, and WAV </span></span></p>
<p><span><span style="font-size: x-small;">Apple 				Earphones with Remote and Mic </span></span><br />
<span><span style="font-size: x-small;">Volume 				control </span></span><br />
<span><span style="font-size: x-small;">Frequency 				response: 20Hz to 20,000Hz </span></span><br />
<span><span style="font-size: x-small;">Impedance: 32 				ohms </span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Frequency 				response: 20Hz to 20,000Hz </span></span><br />
<span><span style="font-size: x-small;">Audio 				formats supported: AAC, Protected AAC, MP3, MP3 VBR, Audible 				(formats 2, 3, and 4), Apple Lossless, AIFF, and WAV </span></span></p>
<p><span><span style="font-size: x-small;">User-configurable 				max volume limit<a href="http://docs.info.apple.com/article.html?artnum=303414"></a></span></span><br />
<span> </span></p>
<p><span><span style="font-size: x-small;">Apple 				Earphones with Remote and Mic </span></span><br />
<span> </span></p>
<p><span><span style="font-size: x-small;">Volume 				control </span></span><br />
<span><span style="font-size: x-small;">Frequency 				response: 20Hz to 20,000Hz </span></span><br />
<span><span style="font-size: x-small;">Impedance: 32 				ohms </span></span></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>TV&amp; Video</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Support for 1024 by 768 pixels with Dock Connector to VGA Adapter; 			576p and 480p with Apple Component AV Cable; 576i and 480i with 			Apple Composite Cable</span></span></p>
<p><span><span style="font-size: x-small;">H.264 video up 			to 720p, 30 frames per second, Main Profile level 3.1 with AAC-LC 			audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov 			file formats; MPEG-4 video, up to 2.5 Mbps, 640 by 480 pixels, 30 			frames per second, Simple Profile with AAC-LC audio up to 160 			Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats</span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Support 				for 480p and 576p component TV out </span></span><br />
<span><span style="font-size: x-small;">H.264 video, up 				to 1.5 Mbps, 640 by 480 pixels, 30 frames per second, 				Low-Complexity version of the H.264 Baseline Profile with AAC-LC 				audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov 				file formats; H.264 video, up to 2.5 Mbps, 640 by 480 pixels, 30 				frames per second, Baseline Profile up to Level 3.0 with AAC-LC 				audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov 				file formats; MPEG-4 video, up to 2.5 Mbps, 640 by 480 pixels, 30 				frames per second, Simple Profile with AAC-LC audio up to 160 				Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats </span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Video formats 			supported: H.264 video, up to 1.5 Mbps, 640 by 480 pixels, 30 			frames per second, Low-Complexity version of the H.264 Baseline 			Profile with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in 			.m4v, .mp4, and .mov file formats; H.264 video, up to 2.5 Mbps, 			640 by 480 pixels, 30 frames per second, Baseline Profile up to 			Level 3.0 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in 			.m4v, .mp4, and .mov file formats; MPEG-4 video, up to 2.5 Mbps, 			640 by 480 pixels, 30 frames per second, Simple Profile with 			AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, 			and .mov file formats</span></span></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Email Support</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Viewable document 			types: .jpg, .tiff, .gif (images); .doc and .docx (Microsoft 			Word); .htm and .html (web pages); .key (Keynote); .numbers 			(Numbers); .pages (Pages); .pdf (Preview and Adobe Acrobat); .ppt 			and .pptx (Microsoft PowerPoint); .txt (text); .rtf (rich text 			format); .vcf (contact information); .xls and .xlsx (Microsoft 			Excel)</span></span></td>
<td width="25%"><span style="font-size: x-small;">VApple iPod Mail App</span></td>
<td width="25%"><span><span style="font-size: x-small;">Viewable document 			types: .jpg, .tiff, .gif (images); .doc and .docx (Microsoft 			Word); .htm and .html (web pages); .key (Keynote); .numbers 			(Numbers); .pages (Pages); .pdf (Preview and Adobe Acrobat); .ppt 			and .pptx (Microsoft PowerPoint); .txt (text); .rtf (rich text 			format); .vcf (contact information); .xls and .xlsx (Microsoft 			Excel)</span></span></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Languages</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Language support for English, French, German, Japanese, Dutch, 			Italian, Spanish, Simplified Chinese, Russian</span></span></p>
<p><span><span style="font-size: x-small;">Keyboard support for English (U.S.) English (UK), French (France, 			Canada), German, Japanese (QWERTY), Dutch, Flemish, Spanish, 			Italian, Simplified Chinese (Handwriting and Pinyin), Russian</span></span></p>
<p><span><span style="font-size: x-small;">Dictionary support for English (U.S.), English (UK), French, 			French (Canadian), French (Swiss), German, Japanese, Dutch, 			Flemish, Spanish, Italian, Simplified Chinese (Handwriting and 			Pinyin), Russian</span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Language 				support for English (U.S.), English (UK), French (France), 				German, Traditional Chinese, Simplified Chinese, Dutch, Italian, 				Spanish, Portuguese (Brazil), Portuguese (Portugal), Danish, 				Swedish, Finnish, Norwegian, Korean, Japanese, Russian, Polish, 				Turkish, Ukrainian, Arabic, Thai, Czech, Greek, Hebrew, 				Indonesian, Malay, Romanian, Slovak, and Croatian </span></span></p>
<p><span><span style="font-size: x-small;">Keyboard 				support for English (U.S.), English (UK), French (France), French 				(Canadian), French (Switzerland), German, Traditional Chinese 				(Handwriting, Pinyin, Zhuyin), Simplified Chinese (Handwriting, 				Pinyin), Dutch, Italian, Spanish, Portuguese (Brazil), Portuguese 				(Portugal), Danish, Swedish, Finnish, Norwegian, Korean, Japanese 				(QWERTY), Japanese (Kana), Russian, Polish, Turkish, Ukrainian, 				Estonian, Hungarian, Icelandic, Lithuanian, Latvian, Flemish, 				Arabic, Thai, Czech, Greek, Hebrew, Indonesian, Malay, Romanian, 				Slovak, Croatian, Bulgarian, and Serbian </span></span></p>
<p><span><span style="font-size: x-small;">Dictionary 				support (enables predictive text and autocorrect) for English 				(U.S.), English (UK), French, German, Traditional Chinese 				(Handwriting, Pinyin, Zhuyin), Simplified Chinese (Handwriting, 				Pinyin), Dutch, Italian, Spanish, Portuguese (Brazil), Portuguese 				(Portugal), Danish, Swedish, Finnish, Norwegian, Korean, Japanese 				(QWERTY), Japanese (Kana), Russian, Polish, Turkish, Ukrainian, 				Lithuanian, Arabic, Thai, Czech, Greek, Hebrew, Romanian, Slovak, 				and Croatian</span></span></td>
<td width="25%"><span><span style="font-size: x-small;"> </span></span><span><span style="font-size: x-small;"> </span></span><span><span style="font-size: x-small;">Same as iPod Touch<br />
</span></span></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Accessibility</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Support for playback of closed-captioned content</span></span></p>
<p><span><span style="font-size: x-small;">VoiceOver screen reader</span></span></p>
<p><span><span style="font-size: x-small;">Full-screen zoom magnification</span></span></p>
<p><span><span style="font-size: x-small;">White on black display</span></span></p>
<p><span><span style="font-size: x-small;">Mono audio</span></span></td>
<td width="25%"></td>
<td width="25%"></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Battery Life &amp; 			Power</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Built-in 25 Whr rechargeable lithium-polymer battery</span></span></p>
<p><span><span style="font-size: x-small;">Up to 10 hours of surfing the web on Wi-Fi, watching video, or 			listening to music</span></span></p>
<p><span><span style="font-size: x-small;">Charging via power adapter or USB to computer system</span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Built-in 				rechargeable lithium-ion battery </span></span><br />
<span><span style="font-size: x-small;">Playback time </span></span><br />
<span><span style="font-size: x-small;">Music 				playback time: Up to 30 hours when fully charged </span></span><br />
<span><span style="font-size: x-small;">Video playback 				time: Up to 6 hours when fully charged </span></span></p>
<p><span><span style="font-size: x-small;">Charging 			via USB to computer system or power adapter (sold separately) </span></span></p>
<p><span><span style="font-size: x-small;">Fast-charge 				time: about 2 hours (charges up to 80% of battery capacity) </span></span><br />
<span><span style="font-size: x-small;">Full-charge 				time: about 4 hours </span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Built-in 				rechargeable lithium-ion battery </span></span><br />
<span><span style="font-size: x-small;">Charging 				via USB to computer system or power adapter </span></span>
<dt><span><span style="font-size: x-small;">Talk time: </span></span> </dt>
<dd> <span><span style="font-size: x-small;">Up to 12 hours on 2G </span></span> </dd>
<dd> <span><span style="font-size: x-small;">Up to 5 hours on 3G </span></span> </dd>
<p><span><span style="font-size: x-small;">Standby time: Up to 				300 hours </span></span></p>
<dt><span><span style="font-size: x-small;">Internet use: </span></span> </dt>
<dd> <span><span style="font-size: x-small;">Up to 5 hours on 3G </span></span> </dd>
<dd> <span><span style="font-size: x-small;">Up to 9 hours on Wi-Fi </span></span> </dd>
<p><span><span style="font-size: x-small;">Video playback: Up to 				10 hours </span></span><br />
<span><span style="font-size: x-small;">Audio playback: 				Up to 30 hours </span></span></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Input and Output</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Dock connector</span></span></p>
<p><span><span style="font-size: x-small;">3.5-mm stereo headphone jack</span></span></p>
<p><span><span style="font-size: x-small;">Built-in speakers</span></span></p>
<p><span><span style="font-size: x-small;">Microphone</span></span></p>
<p><span><span style="font-size: x-small;">SIM card tray 			(Wi-Fi + 3G model only)</span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Dock 				connector </span></span><br />
<span><span style="font-size: x-small;">3.5-mm stereo 				headphone jack </span></span></td>
<td width="25%"></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>External Buttons 			&amp; Controls</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">On/Off, Sleep/wake</span></span></p>
<p><span><span style="font-size: x-small;">Mute</span></span></p>
<p><span><span style="font-size: x-small;">Volume up/down</span></span></p>
<p><span><span style="font-size: x-small;">Home</span></span></td>
<td width="25%"></td>
<td width="25%"></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Mac System 			Requirements</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Mac computer with USB 2.0 port</span></span></p>
<p><span><span style="font-size: x-small;">Mac OS X v10.5.8 or later</span></span></p>
<p><span><span style="font-size: x-small;">iTunes 9.0 or later (free download from www.itunes.com/download)</span></span></p>
<p><span><span style="font-size: x-small;">iTunes Store account</span></span></p>
<p><span><span style="font-size: x-small;">Internet 			access</span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Mac 				computer with USB 2.0 port </span></span></p>
<p><span><span style="font-size: x-small;">Mac 				OS X v10.4.11 or later </span></span><br />
<span><span style="font-size: x-small;">iTunes 9 or 				later</span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Mac 				computer with USB 2.0 port </span></span><br />
<span><span style="font-size: x-small;">Mac 				OS X v10.4.11 or later </span></span><br />
<span><span style="font-size: x-small;">iTunes 				8.2 or later (free download from <a href="http://www.itunes.com/download">www.itunes.com/download</a>) </span></span><br />
<span><span style="font-size: x-small;">iTunes 				Store account </span></span><br />
<span><span style="font-size: x-small;">Internet access </span></span></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Windows System 			Requirements</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">PC with USB 2.0 port</span></span></p>
<p><span><span style="font-size: x-small;">Windows 7; Windows Vista; or Windows XP Home or Professional with 			Service Pack 3 or later</span></span></p>
<p><span><span style="font-size: x-small;">iTunes 9.0 or later (free download from www.itunes.com/download)</span></span></p>
<p><span><span style="font-size: x-small;">iTunes Store account</span></span></p>
<p><span><span style="font-size: x-small;">Internet access</span></span></td>
<td width="25%"><span><span style="font-size: x-small;">PC 				with USB 2.0 port </span></span><br />
<span><span style="font-size: x-small;">Windows 				Vista or Windows XP Home or Professional with Service Pack 3 or 				later </span></span><br />
<span><span style="font-size: x-small;">iTunes 9 or 				later</span></span></td>
<td width="25%"><span><span style="font-size: x-small;">PC 				with USB 2.0 port </span></span><br />
<span><span style="font-size: x-small;">Windows 				Vista; or Windows XP Home or Professional with Service Pack 2 or 				later </span></span><br />
<span><span style="font-size: x-small;">iTunes 				8.2 or later (free download from <a href="http://www.itunes.com/download">www.itunes.com/download</a>) </span></span><br />
<span><span style="font-size: x-small;">iTunes 				Store account </span></span><br />
<span><span style="font-size: x-small;">Internet access </span></span></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Environmental 			Requirements</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Operating temperature: 32° to 95° F (0° to 35° C)</span></span></p>
<p><span><span style="font-size: x-small;">Nonoperating temperature: -4° to 113° F (-20° to 45° C)</span></span></p>
<p><span><span style="font-size: x-small;">Relative humidity: 5% to 95% noncondensing</span></span></p>
<p><span><span style="font-size: x-small;">Maximum operating altitude: 10,000 feet (3000 m)</span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Operating 				temperature: 32° to 95° F<br />
(0° to 35° C) </span></span><br />
<span><span style="font-size: x-small;">Nonoperating 				temperature: -4° to 113° F<br />
(-20° to 45° C) </span></span><br />
<span><span style="font-size: x-small;">Relative 				humidity: 5% to 95% noncondensing </span></span><br />
<span><span style="font-size: x-small;">Maximum 				operating altitude: 10,000 feet<br />
(3000 m) </span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Operating 				temperature: 32° to 95° F<br />
(0° to 35° C) </span></span><br />
<span><span style="font-size: x-small;">Nonoperating 				temperature: -4° to 113° F<br />
(-20° to 45° C) </span></span><br />
<span><span style="font-size: x-small;">Relative 				humidity: 5% to 95% noncondensing </span></span><br />
<span><span style="font-size: x-small;">Maximum 				operating altitude: 10,000 feet (3000 m) </span></span></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Pricing</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Pricing 			(USA Only, Without 3G data plan)</span></span></p>
<p><span><span style="font-size: x-small;"> 16GB 			 	32GB  	64GB</span></span></p>
<p><span><span style="font-size: x-small;">Wi-Fi 					$499 	$599 	$699</span></span></p>
<p><span><span style="font-size: x-small;">Wi-Fi + 3G 	$629 				$729 	$829</span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Pricing 			(USA Only)</span></span></p>
<p><span><span style="font-size: x-small;">8GB 			$199</span></span></p>
<p><span><span style="font-size: x-small;">32GB 			$299</span></span></p>
<p><span><span style="font-size: x-small;">64GB $399</span></span></td>
<td width="25%"><span><span style="font-size: x-small;">Starting at $199 			with data plan &amp; committment</span></span></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Accessories</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">iPad 			Keyboard Dock</span></span></p>
<p><span><span style="font-size: x-small;">The 			Keyboard Dock combines a dock for charging your iPad with a 			full-size keyboard. The dock has a rear 30-pin connector, which 			lets you connect to an electrical outlet using the USB Power 			Adapter, sync to your computer, and use accessories like the 			Camera Connection Kit. An audio jack lets you connect to a stereo 			or powered speakers.</span></span></p>
<p><span><span style="font-size: x-small;">iPad 			Case</span></span></p>
<p><span><span style="font-size: x-small;">The 			iPad Case not only protects the iPad, it can be used in various 			positions. So it’s easy to type, look at photos and slideshows, 			or watch movies.</span></span></p>
<p><span><span style="font-size: x-small;">iPad 			Dock</span></span></p>
<p><span><span style="font-size: x-small;">The 			iPad Dock lets you dock and charge iPad. The rear 30-pin connector 			lets you connect the iPad Dock to an electrical outlet using the 			USB Power Adapter, sync to your computer, and use accessories like 			the Camera Connection Kit. An audio jack lets you connect to a 			stereo or powered speakers.</span></span></p>
<p><span><span style="font-size: x-small;">iPad 			Camera Connection Kit</span></span></p>
<p><span><span style="font-size: x-small;">The 			Camera Connection Kit gives you two ways to import photos and 			videos from a digital camera. The Camera Connector lets you import 			your photos and videos to iPad using the camera’s USB cable. Or 			you can use the SD Card Reader to import photos and videos 			directly from the camera’s SD card.</span></span></p>
<p><span><span style="font-size: x-small;">iPad 			USB Power Adapter</span></span></p>
<p><span><span style="font-size: x-small;">The 10W USB Power 			Adapter lets you charge your iPad directly through an electrical 			outlet. And the 6-foot-long power cable allows you to charge it 			from an even greater distance.</span></span></td>
<td width="25%"></td>
<td width="25%"></td>
</tr>
<tr valign="TOP">
<td width="25%"><span><span style="font-size: x-small;"><strong>Quotes</strong></span></span></td>
<td width="25%"><span><span style="font-size: x-small;">&#8220;The best way 			to browse the internet&#8221; </span></span></p>
<p><span><span style="font-size: x-small;">&#8220;To hold the 			internet in your hands&#8221;</span></span></td>
<td width="25%"></td>
<td width="25%"></td>
</tr>
</tbody>
</table>
<p><img class="alignnone" title="Apple iPad" src="http://images.apple.com/ipad/specs/images/dimensions_20100127.jpg" alt="Apple iPad" width="366" height="228" /></p>
<p>Note &amp; Disclaimer: The information contained herein was taken from Apple&#8217;s official website http://www.apple.com on January 28, 2010.  Techexposures.com is not related to Apple Inc.</p>
]]></content:encoded>
			<wfw:commentRss>http://techexposures.com/2010/01/ipod-vs-ipad-vs-iphone-features-comparison-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iPad is an Oversized iPod</title>
		<link>http://techexposures.com/2010/01/ipad-is-an-oversized-ipod/</link>
		<comments>http://techexposures.com/2010/01/ipad-is-an-oversized-ipod/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 08:05:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Industry News]]></category>
		<category><![CDATA[ipod tools]]></category>
		<category><![CDATA[ipad ipod comparison]]></category>
		<category><![CDATA[iPad vs. iPhone]]></category>
		<category><![CDATA[ipad vs. ipod]]></category>

		<guid isPermaLink="false">http://techexposures.com/?p=922</guid>
		<description><![CDATA[ Is the new Apple iPad A Product Without a Market?
With a 9 inch plus screen size and at only 1/2 inch thick, the iPad looks like an oversized iPod.
The prices look great too, and much less than what the analysts had thought $499 &#8211; $699 for 16GB up to   64GB models. This just proves [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://techexposures.com/wp-content/uploads/2010/01/ipad_ipod_comparison.png"><img class="alignleft size-thumbnail wp-image-923" title="ipad_ipod_comparison" src="http://techexposures.com/wp-content/uploads/2010/01/ipad_ipod_comparison-150x150.png" alt="" width="120" height="120" /></a><strong> Is the new Apple iPad A Product Without a Market?</strong><br />
With a 9 inch plus screen size and at only 1/2 inch thick, the iPad looks like an oversized iPod.<br />
The prices look great too, and much less than what the analysts had thought $499 &#8211; $699 for 16GB up to   64GB models. This just proves that corporate secrets can still be kept, even in the day of the Internet&#8217;s &#8220;run of the mouth&#8221;.</p>
<p>Steve Jobs does a great job of selling his products.  The man was surely a snakeoil huckster in a previous life.  He sat there on stage showing all the nice tricks and things that this new device can do.  The question is, has Apple created a product for a need that does not yet exist, or have they essentially extrapolated on the iPod to a bigger size to capture all consumers.  e.g. from iPod, to iPhone, to iPad, to MacBook, to&#8230; you get the idea.</p>
<p><strong>What is the iPad niche?</strong><br />
As I watched the news conference, I tried to imagine shlepping an iPad around on the train, or on a plane.  Like the iPhone/iPod, there&#8217;s no cover to protect it (unless you consider a plastic film a &#8216;cover&#8217;).  I think it would be in that awkward size &#8211; too big for the pocket, and too small to really get work done.  If you&#8217;re traveling to work, you want to listen to a podcast, maybe a song or two, or catch last night&#8217;s episode of &#8220;Curb Your Enthusiasm&#8221;.  Are you really going to take the iPad with you for that?  The iPhone/iPod size is just right for media on the train.<br />
If you are traveling by plane, and you expect to get some work done at the airport gate or on the flight, what do you really want to have with you, your Dell Studio, or the iPad?</p>
<p>I guess the iPad is looking for the niche of home users who want easy access to online media, such as online books, videos, and music.  Essentially, the iPad will give the iTunes store a bigger footprint to work with.   Is that a game-changer?  I don&#8217;t think so&#8230;</p>
<p>The Kindle is not such a whopping success in terms of units sold.  So, iPad can&#8217;t have its crosshairs on the online book market. Likewise, the home media experience is still much better in surround sound stereo on your huge LCD HD Plasma screen.  Does the iPad have a niche of its own that has not yet been created?  Apple sure does have experience in convincing consumers that they _must_ have products that weren&#8217;t even invented a decade before.</p>
<p>What market niche is left for the iPad?  Giving your kids a video player for their bedroom?  I guess we&#8217;ll soon find out.</p>
]]></content:encoded>
			<wfw:commentRss>http://techexposures.com/2010/01/ipad-is-an-oversized-ipod/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Puppy Linux &#8211; Puppy Arcade 6 Released</title>
		<link>http://techexposures.com/2010/01/puppy-linux-puppy-arcade-6-released/</link>
		<comments>http://techexposures.com/2010/01/puppy-linux-puppy-arcade-6-released/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 07:42:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Distro Review]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux Rom Games]]></category>
		<category><![CDATA[puppy arcade]]></category>
		<category><![CDATA[puppy linux distro]]></category>
		<category><![CDATA[puppy linux review]]></category>
		<category><![CDATA[Rom Emulator Games]]></category>

		<guid isPermaLink="false">http://techexposures.com/?p=920</guid>
		<description><![CDATA[More Information on the developer site.  
Download Link Here
Review of Puppy Linux
Review of Puppy Arcade
]]></description>
			<content:encoded><![CDATA[<p>More Information on the <a href="http://scottjarvis.com/page105.htm">developer site</a>.  </p>
<p><a href="/http://www.sendspace.com/file/vkf6q3">Download Link Here</a></p>
<p><a href="http://techexposures.com/2009/06/puppy-linux-4-2-super-fast-linux-quick-review-and-screenshots/">Review of Puppy Linux</a></p>
<p><a href="http://techexposures.com/2010/01/puppy-linux-arcade-5-super-fast-game-emulator/">Review of Puppy Arcade</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techexposures.com/2010/01/puppy-linux-puppy-arcade-6-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Puppy Linux &#8211; Puppy Arcade 5 Super Fast Game Emulator</title>
		<link>http://techexposures.com/2010/01/puppy-linux-arcade-5-super-fast-game-emulator/</link>
		<comments>http://techexposures.com/2010/01/puppy-linux-arcade-5-super-fast-game-emulator/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 12:10:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Distro Review]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[puppy arcade]]></category>
		<category><![CDATA[puppy linux distro]]></category>
		<category><![CDATA[puppy linux review]]></category>
		<category><![CDATA[rom emulator]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://techexposures.com/?p=894</guid>
		<description><![CDATA[Puppy Arcade &#8211; Have your Puppy Linux and Play Games too (with awesome speed)!
We&#8217;ve been singing the praises of Puppy Linux (Review) for some time now.  We love to hear about applications and new ways to use this great and fast linux distribution.
Scott Jarvis sent us info on his just released Puppy Arcade 5, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Puppy Arcade &#8211; Have your Puppy Linux and Play Games too (with awesome speed)!</strong><br />
We&#8217;ve been singing the praises of <a href="http://techexposures.com/2009/06/puppy-linux-4-2-super-fast-linux-quick-review-and-screenshots/">Puppy Linux (Review)</a> for some time now.  We love to hear about applications and new ways to use this great and fast linux distribution.</p>
<p>Scott Jarvis sent us info on his just released <a href="http://scottjarvis.com/page80.htm">Puppy Arcade 5</a>, a Puppy Linux flavor with a retro video game emulation based on TurboPup Xtreme (arguably the fastest Puppy derivative).  Thanks to Scott, you can now download the Puppy distro along with a ton of game emulators.  These tiny game emulators, such as Amiga, Atari, Nintendo, and many others, are very suitable for a compact distro like Puppy.  Many of the emulators were written over 20 years ago, but they still serve up a good time.  This is an especially great experience for those of us who lived through the &#8220;Frogger&#8221; days.</p>
<p><strong>Download &amp; Installation</strong><br />
Puppy Arcade is currently available from two mirrors.  You can find the <a href="http://scottjarvis.com/page80.htm">mirror links here</a>.  Similar to Puppy Linux, Puppy Arcade is a slim 109MB download.  I experienced a slow download time from both mirrors, but your mileage may vary.<br />
The bootup and installation is quick and painless.  Much of the installation is the same as Puppy Linux, since Puppy Arcade is essentially a platform for gaming consoles on a standard Puppy Linux distribution.<br />
See our Puppy Linux review for more specifics on the installation, but suffice to say that it is painless and very quick.  Once the Puppy is loaded, it is running totally in RAM.  Folks, once you&#8217;ve run your OS in RAM, you&#8217;ll never want to go back!<br />
Puppy Linux can easily be loaded on to a USB disk.  I know of several computer pros who walk around with their computers in their shirt pocket (without the protector&#8230;).</p>
<p><strong>What&#8217;s New &amp; What&#8217;s Missing</strong><br />
In order to make room for the added gaming emulators, the browser was swapped with the equally-able Firedog browser (based on Firefox).  Likewise, other tools are included to support the emulator library.<br />
The desktop comes with a nifty top menu for easy selection of your favorite game emulator.</p>
<p><strong>No Games Included</strong><br />
No actual game roms are included, just the emulators.  However, they do provide links to the top websites where you can find roms in abundance.  (Note: We do not endorse use of any of these games without legal license to play them).  We assume that these roms are either in the public domain, or that you have to licensed or purchased them for your personal use.<br />
Scott&#8217;s website does a good job of explaining how to get the most from your emulated game experience, and we recommend that you check out the examples given there.</p>
<p><strong>Screenshot </strong></p>
<div id="attachment_895" class="wp-caption alignleft" style="width: 310px"><a href="http://techexposures.com/wp-content/uploads/2010/01/puppy_arcade_desktop.png"><img class="size-medium wp-image-895" src="http://techexposures.com/wp-content/uploads/2010/01/puppy_arcade_desktop-300x225.png" alt="puppy-linux-arcade-desktop" width="300" height="225" /></a><p class="wp-caption-text">Puppy Linux - Puppy Arcade</p></div>
<p><strong>Summary</strong><br />
We love Puppy Linux in every form.  Puppy is fast and light on its feet.  The addition of games is a fun way to take advantage of the nimble Puppy platform.  If you are a fan of 80&#8217;s style arcade games,  Puppy Arcade is probably the best platform for you.   Running your games in RAM, without ever touching a hard drive, will be a cinch with the ease of Puppy Linux.</p>
<p>If you are new to Linux and want to experience the sheer speed and fool-proof power of Linux, Puppy is the way to go!</p>
]]></content:encoded>
			<wfw:commentRss>http://techexposures.com/2010/01/puppy-linux-arcade-5-super-fast-game-emulator/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Google News Crashed</title>
		<link>http://techexposures.com/2010/01/google-news-crashed/</link>
		<comments>http://techexposures.com/2010/01/google-news-crashed/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 19:15:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[google news crash]]></category>
		<category><![CDATA[google news error]]></category>

		<guid isPermaLink="false">http://techexposures.com/?p=888</guid>
		<description><![CDATA[As of 1pm EST on Thursday, Google News is reporting a 502 server error.
This is usually caused by a bad gateway or internal routing errors.
Even the mighty sometimes need to take a breather.
Update:  1:12pm
Google News is back up.
]]></description>
			<content:encoded><![CDATA[<div id="attachment_889" class="wp-caption alignleft" style="width: 310px"><a href="http://techexposures.com/wp-content/uploads/2010/01/google_502_error.png"><img class="size-medium wp-image-889" title="google_502_error" src="http://techexposures.com/wp-content/uploads/2010/01/google_502_error-300x192.png" alt="" width="300" height="192" /></a><p class="wp-caption-text">Google News Error</p></div>
<p>As of 1pm EST on Thursday, Google News is reporting a 502 server error.</p>
<p>This is usually caused by a bad gateway or internal routing errors.</p>
<p>Even the mighty sometimes need to take a breather.</p>
<p>Update:  1:12pm</p>
<p>Google News is back up.</p>
]]></content:encoded>
			<wfw:commentRss>http://techexposures.com/2010/01/google-news-crashed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
