<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Soft Tech Reviews</title>
	
	<link>http://www.softtechreviews.com</link>
	<description>Software, technology, reviews and more.</description>
	<pubDate>Tue, 01 Jul 2008 20:20:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/SoftTechReviews" type="application/rss+xml" /><feedburner:emailServiceId>1138934</feedburner:emailServiceId><feedburner:feedburnerHostname>http://www.feedburner.com</feedburner:feedburnerHostname><item>
		<title>How to Load Animated Flash Header One Time During the Session</title>
		<link>http://feeds.feedburner.com/~r/SoftTechReviews/~3/324280811/</link>
		<comments>http://www.softtechreviews.com/tutorials/how-to-load-animated-flash-header-one-time-during-the-session/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 19:33:59 +0000</pubDate>
		<dc:creator>Alisha</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Web Design]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[header]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[session]]></category>

		<guid isPermaLink="false">http://www.softtechreviews.com/?p=797</guid>
		<description>After a client had made a request for a Flash header to not animate every time a new page is loaded, I needed to figure out how to do this. Not for this one request, but for any future requests. I have previously looked this up, but came up empty. It seemed there was one [...]</description>
			<content:encoded><![CDATA[<p>After a client had made a request for a Flash header to not animate every time a new page is loaded, I needed to figure out how to do this. Not for this one request, but for any future requests. I have previously looked this up, but came up empty. It seemed there was one solution, but it really wasn&#8217;t the greatest, because when you return to the home page, the animation would play again.</p>
<p>I eventually came across a solution that had no comments from other people, so I didn&#8217;t really know if it would work. The person who provided the solution also provided a link to his/her website with it in action, so I was able to see that it worked.</p>
<p>This solution uses PHP sessions. It works by displaying the full Flash header only if never viewed during the current session. If it has already been viewed, it will display the second (non-animated) header until the session ends, which is on browser close. The next time the website is viewed in a new session, it will display the original animated header.</p>
<p>The first code you need to add is placed at the top, before any other code (DOCTYPE &amp; HTML), in the header. This code checks to see if there are any views during the current session.</p>
<blockquote>
<pre>&lt; ?php
session_start();
if (isset($_SESSION['views']))
$_SESSION['views']=$_SESSION['views']+1;

else
$_SESSION['views']=1;
?&gt;</pre>
</blockquote>
<p>The next code is for displaying the Flash, just as you would normally, except it&#8217;s using PHP.</p>
<blockquote>
<pre>&lt; ?php if ($_SESSION['views']&gt;1) //if session views are more than one
echo &#8220;Flash embed code here&#8221;;
else //if session view is one
echo &#8220;Flash embed code here&#8221;;
?&gt;</pre>
</blockquote>
<p>This code is just saying: If views are more than one, display the second (non-animated) header. If views are one, display the full animated header. It is really simple.</p>
<p>Make sure to remove the space that appears at the beginning of the PHP code: &lt; ?php. Also, when adding the Flash embed code to be echoed, escape any quotes with a &#8216;\&#8217; (without the single quotes).</p>
<p>Full credit for this solution goes to <a title="Addison County Eagles" href="http://www.addisoncountyeagles.com" target="_self">www.addisoncountyeagles.com</a>. The actual solution is in the <a title="How to make the swf run only once per session or at the home page only" href="http://www.coffeecup.com/forums/viewtopic.php?id=5738" target="_self">Coffee Cup forums</a>.
<p><a href="http://www.websitemagazine.com/referrals/?id=50731&#038;f=text3" title="Website Magazine">Spend Less, Earn More, Make a Difference - Website Magazine</a></p>

<p><a href="http://feeds.feedburner.com/~a/SoftTechReviews?a=Cm5Sd4"><img src="http://feeds.feedburner.com/~a/SoftTechReviews?i=Cm5Sd4" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=rvNJGj"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=rvNJGj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=PCsMbJ"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=PCsMbJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=Wt7vRj"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=Wt7vRj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=5dkRuJ"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=5dkRuJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=cIdxij"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=cIdxij" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=nFUVDj"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=nFUVDj" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SoftTechReviews/~4/324280811" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.softtechreviews.com/tutorials/how-to-load-animated-flash-header-one-time-during-the-session/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.softtechreviews.com/tutorials/how-to-load-animated-flash-header-one-time-during-the-session/</feedburner:origLink></item>
		<item>
		<title>A Must Buy Game: Spore</title>
		<link>http://feeds.feedburner.com/~r/SoftTechReviews/~3/315126138/</link>
		<comments>http://www.softtechreviews.com/technology/a-must-buy-game-spore/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 03:43:40 +0000</pubDate>
		<dc:creator>Alisha</dc:creator>
		
		<category><![CDATA[Shopping]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[EA]]></category>

		<category><![CDATA[game]]></category>

		<category><![CDATA[Nintendo DS]]></category>

		<category><![CDATA[Spore]]></category>

		<category><![CDATA[Spore Creator]]></category>

		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.softtechreviews.com/?p=794</guid>
		<description>I&amp;#8217;ve been waiting for this moment. Okay, the moment isn&amp;#8217;t here yet, but it&amp;#8217;s very close! Spore is going to be released soon and is available for pre-ordering. Or you can wait to purchase it when it&amp;#8217;s available on September 7, 2008. I really wouldn&amp;#8217;t wait if I was you. Pre-order now before there&amp;#8217;s a [...]</description>
			<content:encoded><![CDATA[<p>I&#8217;ve been waiting for this moment. Okay, the moment isn&#8217;t here yet, but it&#8217;s very close! Spore is going to be released soon and is <a title="Pre-order Spore on Amazon.com" href="http://www.amazon.com/gp/redirect.html%3FASIN=B000FKBCX4%26tag=mpas-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/Electronic-Arts-15352-Spore/dp/B000FKBCX4%253FSubscriptionId=1N9AHEAQ2F6SVD97BE02" target="_self">available for pre-ordering</a>. Or you can wait to purchase it when it&#8217;s available on September 7, 2008. I really wouldn&#8217;t wait if I was you. <a title="Pre-order Spore on Amazon.com" href="http://www.amazon.com/gp/redirect.html%3FASIN=B000FKBCX4%26tag=mpas-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/Electronic-Arts-15352-Spore/dp/B000FKBCX4%253FSubscriptionId=1N9AHEAQ2F6SVD97BE02" target="_self">Pre-order now</a> before there&#8217;s a long wait! There will even be a <a title="Spore Creatures for Nintendo DS" href="http://www.spore.com/what/platforms#platformscreatures" target="_self">Nintendo DS version</a> someday!</p>
<p>If you haven&#8217;t heard of Spore, Spore allows you to create an entire universe and everything in it. Creatures you have created will interact with each other. Their lives are in your hands.</p>
<p>I can&#8217;t describe it any better than <a title="Tasty Blog Snack" href="http://tastyblogsnack.com/2008/06/18/spore/" target="_self">Justine Ezarik</a>:</p>
<blockquote><p>It feels like a cross between interaction of The Sims, object creation in Second Life and a bit of World of Warcraft on the side.</p></blockquote>
<p>I actually first learned through one of her twitters that <a title="Spore Creator on Amazon.com" href="http://www.amazon.com/gp/redirect.html%3FASIN=B0017KWJ56%26tag=mpas-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/Electronic-Arts-15864-Creature-Creator/dp/B0017KWJ56%253FSubscriptionId=1N9AHEAQ2F6SVD97BE02" target="_self">Spore Creator is available</a>, also as <a title="Spore Creator Trial" href="http://www.spore.com/trial" target="_self">a trial</a>. I quickly went to download the huge file and installed it. I had so much fun creating a creature. I even had fun with him, in a kind of cruel way. Watch the video below to see what I mean. Explanation of what&#8217;s happening in the video below the video.</p>
<p>First, I named my creature Twotoe. I couldn&#8217;t think of anything very creative and since he has two toes on both feet, he became Twotoe! Meet Twotoe:</p>
<div class="vvqbox vvqvideo" style="width:300px;height:225px;">
<p id="vvq4886a74c6b96a"><a href="http://www.softtechreviews.com/wp-content/uploads/2008/06/spore_2008-06-18_22-33-26.avi">http://www.softtechreviews.com/wp-content/uploads/2008/06/spore_2008-06-18_22-33-26.avi</a></p>
</div>
<p>Link to video if you can&#8217;t view it above: <a href="http://www.softtechreviews.com/wp-content/uploads/2008/06/spore_2008-06-18_22-33-26.avi">Twotoe</a></p>
<p>In the video: Twotoe notices a creature, shows some affection, notices another creature and seems to look a little disappointed with that one. He sees another one and shows some affection towards that one. The one he didn&#8217;t show affection to walks off looking sad. Then, the cruel joke I play on Twotoe begins (not intentionally). I make all three little creatures disappear. And he looks around wondering what just happened and then cries out.</p>
<p>If you have any videos of your Spore creatures, please share in the comments!
<p><a href="http://affiliatecenter.hostrocket.com//idevaffiliate.php?id=5176" title="HostRocket">As low as $4.95/mo. hosting with 100GB of space and unlimited bandwidth</a>.</p>

<p><a href="http://feeds.feedburner.com/~a/SoftTechReviews?a=QuZkmG"><img src="http://feeds.feedburner.com/~a/SoftTechReviews?i=QuZkmG" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=ZZrkpi"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=ZZrkpi" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=LVHWVI"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=LVHWVI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=EZm2Di"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=EZm2Di" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=lEbNeI"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=lEbNeI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=CXDHQi"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=CXDHQi" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=WYo6Zi"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=WYo6Zi" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SoftTechReviews/~4/315126138" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.softtechreviews.com/technology/a-must-buy-game-spore/feed/</wfw:commentRss>
<enclosure url="http://www.softtechreviews.com/wp-content/uploads/2008/06/spore_2008-06-18_22-33-26.avi" length="17840722" type="video/x-msvideo" />
		<feedburner:origLink>http://www.softtechreviews.com/technology/a-must-buy-game-spore/</feedburner:origLink></item>
		<item>
		<title>Short Review of the Microsoft LifeCam VX-6000</title>
		<link>http://feeds.feedburner.com/~r/SoftTechReviews/~3/298762419/</link>
		<comments>http://www.softtechreviews.com/reviews/short-review-of-the-microsoft-lifecam-vx-6000/#comments</comments>
		<pubDate>Tue, 27 May 2008 01:47:26 +0000</pubDate>
		<dc:creator>Alisha</dc:creator>
		
		<category><![CDATA[Reviews]]></category>

		<category><![CDATA[ffdshow]]></category>

		<category><![CDATA[LifeCam]]></category>

		<category><![CDATA[Logitech]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[VX-6000]]></category>

		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://www.softtechreviews.com/?p=784</guid>
		<description>More than a month ago, I used my tickets on Live Search Club to get a Microsoft LifeCam VX-6000. There were only two choices, the 3000 or 6000 - obviously I chose the 6000. I did already have a webcam, but my Logitech QuickCam Pro 4000 wouldn&amp;#8217;t work with Vista.
The Logitech webcam I had is [...]</description>
			<content:encoded><![CDATA[<p>More than a month ago, I used my tickets on <a title="Live Search Club" href="http://club.live.com" target="_self">Live Search Club</a> to get a <a title="Microsoft LifeCam VX-6000" href="http://www.amazon.com/gp/redirect.html%3FASIN=B000EVM5DU%26tag=mpas-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/Microsoft-68C-00001-LifeCam-VX-6000/dp/B000EVM5DU%253FSubscriptionId=1N9AHEAQ2F6SVD97BE02" target="_self">Microsoft LifeCam VX-6000</a>. There were only two choices, the <a title="Microsoft LifeCam VX-3000" href="http://www.amazon.com/gp/redirect.html%3FASIN=B000EVM5DK%26tag=mpas-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/Microsoft-68A-00001-LifeCam-VX-3000/dp/B000EVM5DK%253FSubscriptionId=1N9AHEAQ2F6SVD97BE02" target="_self">3000</a> or <a title="Microsoft LifeCam VX-6000" href="http://www.amazon.com/gp/redirect.html%3FASIN=B000EVM5DU%26tag=mpas-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/Microsoft-68C-00001-LifeCam-VX-6000/dp/B000EVM5DU%253FSubscriptionId=1N9AHEAQ2F6SVD97BE02" target="_self">6000</a> - obviously I chose the 6000. I did already have a webcam, but my <a title="Logitech QuickCam Pro 4000" href="http://www.amazon.com/gp/redirect.html%3FASIN=B000E133RM%26tag=mpas-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/Logitech-Inc-961239-0403-QuickCam-4000/dp/B000E133RM%253FSubscriptionId=1N9AHEAQ2F6SVD97BE02">Logitech QuickCam Pro 4000</a> wouldn&#8217;t work with Vista.</p>
<p>The Logitech webcam I had is really good, almost clear video (in small resolution only though), but would still recommend for XP and earlier.</p>
<p>Last week the webcam arrived and of course I tried it out right away. As the instructions said, I installed the software first (which took a long time), then plugged the webcam into the USB port. Opened up the software to see how the video looked. It crashed and closed out! Something about <a title="ffdshow" href="http://sourceforge.net/projects/ffdshow" target="_self">ffdshow</a> needed to be installed, according to Vista. The first thing I thought was: &#8220;Doesn&#8217;t everything I need come included on the CD?&#8221;</p>
<p>So, I installed ffdshow and the webcam software worked just fine. But, the video quality was really poor. It was like watching a station on TV that doesn&#8217;t come in very well, a lot of static. This webcam was claimed to have good video quality!</p>
<p>After playing with the ffdshow settings that made no difference at all, I uninstalled it. The webcam software worked fine even after uninstalling ffdshow. Weird. I looked up reviews online and eventually came across one person saying to not install from the CD, but to download the software/drivers from Microsoft and to change the USB bandwidth to a lower number.</p>
<p>I re-installed (just to be sure), switched the USB bandwidth to a lower number and noticed a change. But, a lower USB bandwidth number means slower video. Picture quality though for the most part is really good.</p>
<p>Here are some features of this webcam from the back of the box; my notes in italics:</p>
<ul>
<li>High Definition video (1.3 megapixels) and photos (5.0 megapixels interpolated) <em>(Logitech webcam quality wasn&#8217;t as good)</em></li>
<li>Wide-angle lens <em>(Logitech webcam didn&#8217;t have this)</em></li>
<li>3x digital zoom <em>(Logitech webcam has this)</em></li>
<li>Automatic face tracking software <em>(Logitech webcam comes with this too)</em></li>
<li>Automatically adjust for low-light conditions for superior video quality <em>(Not any better than the Logitech webcam)</em></li>
<li>Read <a title="Microsoft LifeCam VX-6000" href="http://www.microsoft.com/hardware/digitalcommunication/productdetails.aspx?pid=002" target="_self">more features of the webcam</a> on the Microsoft product page.</li>
</ul>
<p>One thing I don&#8217;t like is if there is a light in the view of the webcam, it just makes that area completely white, rather than showing what is really there. The Logitech webcam didn&#8217;t do that.</p>
<p>Below is a very short clip of what the video looks like with the high definition video (1.3 megapixels) and the USB bandwidth set at 6. (Windows Media Player only, sorry.)</p>
<div class="vvqbox vvqvideo" style="width:300px;height:225px;">
<p id="vvq4886a74c6f7ed"><a href="http://www.softtechreviews.com/wp-content/uploads/2008/05/2008-05-26-74646.wmv">http://www.softtechreviews.com/wp-content/uploads/2008/05/2008-05-26-74646.wmv</a></p>
</div>
<p>Link to video if you can&#8217;t view it above: <a href="http://www.softtechreviews.com/wp-content/uploads/2008/05/2008-05-26-74646.wmv">Microsoft LifeCam VX-6000</a></p>
<p>I like that the webcam can sit on top of my monitor, unlike the Logitech that wasn&#8217;t designed to. I may have to put some double-sided tape on part of it so it doesn&#8217;t move when my monitor is bumped though.</p>
<p>Overall, I guess it&#8217;s an okay webcam. You get what you pay for right?</p>
<p>I don&#8217;t plan on purchasing a new webcam anytime soon, but if you know of one that has really good quality videos, I&#8217;d like to hear about it!</p>
<p><em>Image is a modified screenshot from the Microsoft product page.</em>
<p><a href="http://www.websitemagazine.com/referrals/?id=50731&#038;f=text3" title="Website Magazine">Spend Less, Earn More, Make a Difference - Website Magazine</a></p>

<p><a href="http://feeds.feedburner.com/~a/SoftTechReviews?a=detj6t"><img src="http://feeds.feedburner.com/~a/SoftTechReviews?i=detj6t" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=xF9ufh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=xF9ufh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=b2WsCH"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=b2WsCH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=XDpqIh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=XDpqIh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=cMaqJH"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=cMaqJH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=mtVMsh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=mtVMsh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=5kZoUh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=5kZoUh" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SoftTechReviews/~4/298762419" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.softtechreviews.com/reviews/short-review-of-the-microsoft-lifecam-vx-6000/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.softtechreviews.com/reviews/short-review-of-the-microsoft-lifecam-vx-6000/</feedburner:origLink></item>
		<item>
		<title>Win a Premium WordPress Theme</title>
		<link>http://feeds.feedburner.com/~r/SoftTechReviews/~3/297415577/</link>
		<comments>http://www.softtechreviews.com/wordpress/win-a-free-premium-wordpress-theme-2/#comments</comments>
		<pubDate>Sat, 24 May 2008 21:54:22 +0000</pubDate>
		<dc:creator>Alisha</dc:creator>
		
		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[Brian Gardner]]></category>

		<category><![CDATA[giveaway]]></category>

		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.softtechreviews.com/?p=790</guid>
		<description>UPDATE: It is now June 5th and the winner is&amp;#8230; Vivian! And to quote her, &amp;#8220;So I just HAVE to win, it’s in the cosmos…&amp;#8221; She was right! This was completely random through Randomizer. I assigned all four participants a number and then let Randomizer pick the number randomly. Congratulations Vivian!
NOTE: Comments are now closed.
This [...]</description>
			<content:encoded><![CDATA[<p><strong>UPDATE:</strong> It is now June 5th and the winner is&#8230; Vivian! And to quote her, &#8220;So I just HAVE to win, it’s in the cosmos…&#8221; She was right! This was completely random through <a title="Randomizer" href="http://www.randomizer.org/" target="_self">Randomizer</a>. I assigned all four participants a number and then let Randomizer pick the number randomly. Congratulations Vivian!</p>
<p><strong>NOTE:</strong> Comments are now closed.</p>
<p>This isn&#8217;t going to be a huge giveaway like most are. But, since I have a premium WordPress theme that I don&#8217;t plan on using now, with <a title="Brian Gardner" href="http://www.briangardner.com/" target="_self">Brian Gardner</a>&#8217;s permission, I am giving it away! The theme I am giving away is the <a title="Revolution Theme" href="http://www.revolutiontheme.com/themes/revolution" target="_self">Revolution Theme</a>. Here is a <a title="Revolution Theme Live Demo" href="http://www.revolutiontheme.com/demo/" target="_self">live demo</a> if you would like to see it in action. If you need help with this theme, there is a support <a title="Revolution Theme forum" href="http://www.revolutiontheme.com/support/viewforum.php?f=2" target="_self">forum</a> and <a title="Revolution Theme tutorials" href="http://www.revolutiontheme.com/tutorials" target="_self">tutorials</a>.</p>
<p><strong>UPDATE:</strong> I decided to change the rules, because I might be really busy and won&#8217;t be able to keep up. So, everything with a strikethrough does not apply.</p>
<p>To enter, <a title="Soft Tech Reviews RSS Feed" href="http://feeds.feedburner.com/SoftTechReviews" target="_self"><span style="text-decoration: line-through;">subscribe to the RSS feed</span></a><span style="text-decoration: line-through;"> and then come back here and</span> leave a comment on this post <span style="text-decoration: line-through;">saying that you subscribed</span>. <strong>Be sure when filling out your e-mail address that it is correct.</strong> It will be used to send you your new theme!</p>
<p><span style="text-decoration: line-through;">I will choose three people at random. I will ask the first person for a code. This code can only be found when subscribed. So be sure that you have subscribed! If the winner can&#8217;t give me the code, I will contact the second person and so on.</span></p>
<p><strong><span style="text-decoration: line-through;">The code will not be the same code that is used for the free advertising, so please look out for the correct one!</span></strong></p>
<p>You must leave a comment <span style="text-decoration: line-through;">about subscribing</span> before June 5th, 2008 EST. <span style="text-decoration: line-through;">And yes, if you&#8217;re already subscribed, just leave a comment and you get an entry.</span></p>
<p>In summary, here are the steps to enter to win the theme:</p>
<ul>
<li><a title="Soft Tech Reviews RSS Feed" href="http://feeds.feedburner.com/SoftTechReviews" target="_self"><span style="text-decoration: line-through;">Subscribe to the feed</span></a><span style="text-decoration: line-through;">.</span></li>
<li>Leave a comment on this post <span style="text-decoration: line-through;">saying you subscribed. </span><strong><span style="text-decoration: line-through;">This is important or you will not receive an entry!</span></strong></li>
<li><span style="text-decoration: line-through;">Watch the feed for the correct code anytime between now and June 5th.</span></li>
<li>Wait until June 5th, 2008. <strong>I will announce the winner on this post!</strong></li>
</ul>
<p><span style="text-decoration: line-through;">The winner will be announced after one of the random three has given me the correct code.</span></p>
<p>Even if you don&#8217;t win, you can still purchase the <a title="Revolution Theme" href="https://www.e-junkie.com/ecom/gb.php?ii=67578&amp;c=ib&amp;aff=25439&amp;ev=3657122056" target="_self">Revolution Theme</a> or several others. Or if you want something unique, maybe Brian can help you with that by creating a <a title="custom design" href="http://www.briangardner.com/" target="_self">custom design</a>.  I also hope when this ends, you will <span style="text-decoration: line-through;">decide to stay subscribed</span> subscribe!</p>
<p>Good luck to everyone who participates!</p>

<p><a href="http://feeds.feedburner.com/~a/SoftTechReviews?a=aLT3hz"><img src="http://feeds.feedburner.com/~a/SoftTechReviews?i=aLT3hz" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=eFQYjh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=eFQYjh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=PRVAVH"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=PRVAVH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=wo9fXh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=wo9fXh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=cJtnYH"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=cJtnYH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=DzFmTh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=DzFmTh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=UV7dOh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=UV7dOh" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SoftTechReviews/~4/297415577" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.softtechreviews.com/wordpress/win-a-free-premium-wordpress-theme-2/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.softtechreviews.com/wordpress/win-a-free-premium-wordpress-theme-2/</feedburner:origLink></item>
		<item>
		<title>Buy Premium Themes, Don’t Steal Them</title>
		<link>http://feeds.feedburner.com/~r/SoftTechReviews/~3/297315769/</link>
		<comments>http://www.softtechreviews.com/wordpress/buy-premium-themes-dont-steal-them/#comments</comments>
		<pubDate>Sat, 24 May 2008 17:31:53 +0000</pubDate>
		<dc:creator>Alisha</dc:creator>
		
		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[Adii]]></category>

		<category><![CDATA[NewsPress]]></category>

		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.softtechreviews.com/?p=787</guid>
		<description>If it wasn&amp;#8217;t for looking at my stats, I probably would not have known this. But apparently someone thinks my blog uses the NewsPress theme by Adii. My blog does not use the NewsPress theme. My blog is not a live demo of the theme.
I wanted to announce this because the forum I found this [...]</description>
			<content:encoded><![CDATA[<p>If it wasn&#8217;t for looking at my stats, I probably would not have known this. But <a title="Filesvilla forum" rel="nofollow" href="http://forum.filesvilla.com/index.php/topic,20.0.html" target="_self">apparently someone thinks</a> my blog uses the <a title="NewsPress Live Demo" href="http://newspress.premiumnewstheme.com/" target="_self">NewsPress theme by Adii</a>. <strong>My blog does not use the NewsPress theme. My blog is not a live demo of the theme.</strong></p>
<p>I wanted to announce this because the forum I found this on doesn&#8217;t allow me to post; possibly would if I had an account, but I&#8217;m not creating an account just for that purpose. So, I am announcing it here on my blog in hopes that any visitors from that forum looking for a live demo of the NewsPress theme will see this.</p>
<p>I&#8217;m flattered someone would use my blog as a live demo, but not by someone who is trying to distribute copies of the theme illegally and obviously not wanting to point to the <a title="NewsPress Live Demo" href="http://newspress.premiumnewstheme.com/" target="_self">actual live demo</a> in fear of getting caught. NewsPress is <a title="Purchase NewsPress" href="https://www.e-junkie.com/ecom/gb.php?ii=71811&amp;c=ib&amp;aff=25439&amp;ev=f126171be3" target="ejejcsingle">available to buy</a> if you are interested. The theme looks really good though, so if you want it, please buy it instead of trying to steal it.</p>
<p>Premium themes are <em>usually</em> themes that people have worked hard on to provide you with a high quality theme for your blog. They deserve to be paid for their time. So, if you&#8217;re looking for a free theme, there are plenty of websites that offer free themes. You can <a title="Free WordPress Themes" href="http://www.google.com/search?hl=en&amp;q=free+wordpress+themes" target="_self">search Google</a> for quite a bit of websites offering free themes.
<p><a href="http://www.websitemagazine.com/referrals/?id=50731&#038;f=text3" title="Website Magazine">Spend Less, Earn More, Make a Difference - Website Magazine</a></p>

<p><a href="http://feeds.feedburner.com/~a/SoftTechReviews?a=uEIJrX"><img src="http://feeds.feedburner.com/~a/SoftTechReviews?i=uEIJrX" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=sWZbih"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=sWZbih" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=B08TqH"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=B08TqH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=aEHjNh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=aEHjNh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=WbNaAH"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=WbNaAH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=tsisih"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=tsisih" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=EsxfLh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=EsxfLh" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SoftTechReviews/~4/297315769" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.softtechreviews.com/wordpress/buy-premium-themes-dont-steal-them/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.softtechreviews.com/wordpress/buy-premium-themes-dont-steal-them/</feedburner:origLink></item>
		<item>
		<title>BuySellAds and Free Advertising for RSS Subscribers</title>
		<link>http://feeds.feedburner.com/~r/SoftTechReviews/~3/293131954/</link>
		<comments>http://www.softtechreviews.com/updates/buysellads-and-free-advertising-for-rss-subscribers/#comments</comments>
		<pubDate>Mon, 19 May 2008 00:37:57 +0000</pubDate>
		<dc:creator>Alisha</dc:creator>
		
		<category><![CDATA[Updates]]></category>

		<category><![CDATA[BuySellAds]]></category>

		<category><![CDATA[free advertising]]></category>

		<category><![CDATA[Text Link Ads]]></category>

		<guid isPermaLink="false">http://www.softtechreviews.com/?p=779</guid>
		<description>I had found out about BuySellAds through one blog and was curious so I checked them out. BuySellAds allows you to buy or sell ads, obviously. What I like is that advertisers can purchase an ad through them and then it will appear, just like how it works with Text Link Ads, except that BuySellAds [...]</description>
			<content:encoded><![CDATA[<p>I had found out about <a title="BuySellAds" href="http://buysellads.com" target="_self">BuySellAds</a> through one blog and was curious so I checked them out. BuySellAds allows you to buy or sell ads, obviously. What I like is that advertisers can purchase an ad through them and then it will appear, just like how it works with Text Link Ads, except that BuySellAds use images, which you can select what size you want them to be.</p>
<p>It was a little harder with customizing to get it to work right, but I managed. It was one of those &#8216;It works in Firefox, but not IE7&#8242; issues. Took me a couple hours to finally get it just right (at least in IE7 and Firefox). I&#8217;ll leave it up to anyone using other browsers to point out if anything looks wrong. Just a small note: it isn&#8217;t BuySellAds&#8217; code that caused the problem, it was some CSS not working right with the layout in IE7.</p>
<p><img class="alignright size-full wp-image-780" title="Advertise Here" src="http://www.softtechreviews.com/wp-content/uploads/2008/05/advertise_here.jpg" alt="Advertise Here" width="205" height="280" /></p>
<p>I do like how they don&#8217;t just show your Google Page Rank or Alexa Rank; they show more information, such as Yahoo Inbound Links, Technorati Rank and more. This allows people who have lost their Google Page Rank to at least appear popular in other areas (assuming they actually are).</p>
<p>I added <a title="BuySellAds" href="http://buysellads.com/buy/detail/279/" target="_self">two spots</a> on the side which both currently say &#8220;Advertise Here&#8221;. If you click on one, it will take you right to the page to purchase an ad. I hope they will fill up.</p>
<p>Also, I am currently offering free advertising to one random RSS subscriber. Just pay attention to the bottom of each post in your reader and one will mention free advertising with a code. Just follow all instructions if you&#8217;re interested. Good luck!
<p><a href="http://www.softtechreviews.com/advertise/" title="Advertise for free">Advertise on Soft Tech Reviews for FREE!</a> <br />Code: 323452 <br />You will need the code. Read all instructions regarding the free advertising on the page.</p>

<p><a href="http://feeds.feedburner.com/~a/SoftTechReviews?a=ZcBrld"><img src="http://feeds.feedburner.com/~a/SoftTechReviews?i=ZcBrld" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=JJNTLh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=JJNTLh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=sOtzOH"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=sOtzOH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=GdHXfh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=GdHXfh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=vDVslH"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=vDVslH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=213zch"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=213zch" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=bi0uwh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=bi0uwh" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SoftTechReviews/~4/293131954" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.softtechreviews.com/updates/buysellads-and-free-advertising-for-rss-subscribers/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.softtechreviews.com/updates/buysellads-and-free-advertising-for-rss-subscribers/</feedburner:origLink></item>
		<item>
		<title>Win One of Two MacBook Airs or $100</title>
		<link>http://feeds.feedburner.com/~r/SoftTechReviews/~3/292057557/</link>
		<comments>http://www.softtechreviews.com/general/win-one-of-two-macbook-airs-or-100/#comments</comments>
		<pubDate>Sat, 17 May 2008 03:20:10 +0000</pubDate>
		<dc:creator>Alisha</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[Bloggin-Ads]]></category>

		<category><![CDATA[contest]]></category>

		<category><![CDATA[MacBook Air]]></category>

		<guid isPermaLink="false">http://www.softtechreviews.com/?p=775</guid>
		<description>Bloggers are probably one of the most generous people. Sure they usually have a reason (like bringing more traffic) but it&amp;#8217;s great for the visitors! We all really do like contests, don&amp;#8217;t we?

Even though it would be great to win $100, a MacBook Air would be even better! I would love to have a new [...]</description>
			<content:encoded><![CDATA[<p>Bloggers are probably one of the most generous people. Sure they usually have a reason (like bringing more traffic) but it&#8217;s great for the visitors! We all really do like contests, don&#8217;t we?</p>
<p><a title="MacBook Air" href="http://www.amazon.com/gp/redirect.html%3FASIN=B0006HU4DK%26tag=mpas-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/o/ASIN/B0006HU4DK%253FSubscriptionId=1N9AHEAQ2F6SVD97BE02/mpas-20" target="_self"><img class="alignright" style="float: right;" src="http://ecx.images-amazon.com/images/I/31PuYbfOXrL._SL75_.jpg" alt="Apple MacBook Air MB003LL/A 13.3" height="42" /></a></p>
<p>Even though it would be great to win $100, a <a title="MacBook Air" href="http://www.amazon.com/gp/redirect.html%3FASIN=B0006HU4DK%26tag=mpas-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/o/ASIN/B0006HU4DK%253FSubscriptionId=1N9AHEAQ2F6SVD97BE02/mpas-20" target="_self">MacBook Air</a> would be even better! I would love to have a new laptop to replace the one that I have that overheats (has melted the bottom of the laptop) and probably cause a fire (I hope not).</p>
<p>Anyway, there are several ways to get entries in this contest over at <a title="MacBook Airs + $1,000 Giveaway" href="http://bloggin-ads.com/macbook-airs-1000-giveaway" target="_self">Bloggin-Ads</a>. I recommend getting as many entries as possible if you really would like a chance at getting a MacBook Air. I will be very surprised, but very happy if I actually win a MacBook Air. Not because it&#8217;s a MacBook Air, but because of what it&#8217;s worth. That&#8217;s an expensive prize! And very much wanted.</p>
<p>There will be 12 winners. 10 winners will each receive $100 and 2 winners will each receive a MacBook Air.</p>
<p>Contest ends June 13, so get your entries in now! Good luck!
<p><a href="http://www.websitemagazine.com/referrals/?id=50731&#038;f=text3" title="Website Magazine">Spend Less, Earn More, Make a Difference - Website Magazine</a></p>

<p><a href="http://feeds.feedburner.com/~a/SoftTechReviews?a=reXEIT"><img src="http://feeds.feedburner.com/~a/SoftTechReviews?i=reXEIT" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=94v4th"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=94v4th" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=Mt9zlH"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=Mt9zlH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=cRBXLh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=cRBXLh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=hMvDKH"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=hMvDKH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=kFuBLh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=kFuBLh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=qDxy0h"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=qDxy0h" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SoftTechReviews/~4/292057557" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.softtechreviews.com/general/win-one-of-two-macbook-airs-or-100/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.softtechreviews.com/general/win-one-of-two-macbook-airs-or-100/</feedburner:origLink></item>
		<item>
		<title>Diggnation: Win Alex Albrecht’s Xbox and Kevin Rose’s iPhone</title>
		<link>http://feeds.feedburner.com/~r/SoftTechReviews/~3/292033584/</link>
		<comments>http://www.softtechreviews.com/general/diggnation-win-alex-albrechts-xbox-and-kevin-roses-iphone/#comments</comments>
		<pubDate>Sat, 17 May 2008 02:28:46 +0000</pubDate>
		<dc:creator>Alisha</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Alex Albrecht]]></category>

		<category><![CDATA[Diggnation]]></category>

		<category><![CDATA[iPhone]]></category>

		<category><![CDATA[Kevin Rose]]></category>

		<category><![CDATA[Totally Rad Show]]></category>

		<category><![CDATA[Twitter]]></category>

		<category><![CDATA[Xbox]]></category>

		<guid isPermaLink="false">http://www.softtechreviews.com/?p=771</guid>
		<description>If you don&amp;#8217;t know about Diggnation yet, go watch an episode, or two, or 150. Diggnation is probably one of the best shows from Revision3. The Totally Rad Show is pretty awesome, too, but when you put Kevin Rose and Alex Albrecht together, it just makes it more fun.
On one of the Diggnation episodes, Alex [...]</description>
			<content:encoded><![CDATA[<p>If you don&#8217;t know about <a title="Diggnation" href="http://www.diggnation.com" target="_self">Diggnation</a> yet, go watch <a title="Diggnation Episode 1" href="http://revision3.com/diggnation/2005-07-01" target="_self">an episode</a>, or <a title="Diggnation Episode 2" href="http://revision3.com/diggnation/2005-07-08" target="_self">two</a>, or <a title="Diggnation Episode 150" href="http://revision3.com/diggnation/2008-05-15heatwave" target="_self">150</a>. Diggnation is probably one of the best shows from <a title="Revision3" href="http://www.revision3.com" target="_self">Revision3</a>. The <a title="Totally Rad Show" href="http://revision3.com/trs/" target="_self">Totally Rad Show</a> is pretty awesome, too, but when you put Kevin Rose and Alex Albrecht together, it just makes it more fun.</p>
<p>On one of the Diggnation episodes, <a title="Alex Albrecht on Twitter" href="http://www.twitter.com/alexalbrecht" target="_self">Alex</a> announced that he&#8217;s going to give away his Xbox and some other goodies along with it to a random Twitter follower. But first, he needs 20,000 followers. Once he reaches 20,000 followers on Twitter, he will announce it on Twitter and ask everyone to reply if they want the Xbox, giving them something like 8 hours to reply in. Then, someone will be chosen randomly.</p>
<p>To win Kevin&#8217;s iPhone, I think the same thing applies. I&#8217;m not sure about the followers, but just <a title="Kevin Rose on Twitter" href="http://www.twitter.com/kevinrose" target="_self">follow Kevin </a>on Twitter and wait for him to announce it if you want his iPhone for free.</p>
<p><img class="alignright size-full wp-image-772" title="Alex Albrecht and Kevin Rose" src="http://www.softtechreviews.com/wp-content/uploads/2008/05/alex_kevin.jpg" alt="Alex Albrecht and Kevin Rose" width="173" height="81" /></p>
<p>Why do I want to win Alex Albrecht&#8217;s Xbox? Because ours broke a while back and I miss playing games on it! Besides, who wouldn&#8217;t want to own something Alex and Kevin signed?</p>
<p>Why do I want to Kevin Rose&#8217;s iPhone? Well, I don&#8217;t really need the iPhone, but I like it, and it belongs to Kevin!</p>
<p>This is real! Proof is on the latest <a title="Diggnation Episode 150" href="http://revision3.com/diggnation/2008-05-15heatwave" target="_self">Diggnation show</a>, episode 150. Good luck everyone!</p>
<p>UPDATE: A <a title="Winner of Xbox 360" href="http://twitter.com/alexalbrecht/statuses/816737776" target="_self">winner was announced</a> for Alex Albrecht&#8217;s Xbox 360. And, he&#8217;s decided to give away his iPhone to a random follower as well.
<p><a href="http://affiliatecenter.hostrocket.com//idevaffiliate.php?id=5176" title="HostRocket">As low as $4.95/mo. hosting with 100GB of space and unlimited bandwidth</a>.</p>

<p><a href="http://feeds.feedburner.com/~a/SoftTechReviews?a=A4YwOx"><img src="http://feeds.feedburner.com/~a/SoftTechReviews?i=A4YwOx" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=ZmSa9h"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=ZmSa9h" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=xQ2efH"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=xQ2efH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=cPeM5h"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=cPeM5h" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=RC1EfH"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=RC1EfH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=4gPqTh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=4gPqTh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=rY4yhh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=rY4yhh" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SoftTechReviews/~4/292033584" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.softtechreviews.com/general/diggnation-win-alex-albrechts-xbox-and-kevin-roses-iphone/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.softtechreviews.com/general/diggnation-win-alex-albrechts-xbox-and-kevin-roses-iphone/</feedburner:origLink></item>
		<item>
		<title>Multiple Ways to Access Google Reader</title>
		<link>http://feeds.feedburner.com/~r/SoftTechReviews/~3/291812429/</link>
		<comments>http://www.softtechreviews.com/software/multiple-ways-to-access-google-reader/#comments</comments>
		<pubDate>Fri, 16 May 2008 18:28:29 +0000</pubDate>
		<dc:creator>Alisha</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[AIR]]></category>

		<category><![CDATA[desktop client]]></category>

		<category><![CDATA[feed reader]]></category>

		<category><![CDATA[Firefox]]></category>

		<category><![CDATA[Google Reader]]></category>

		<category><![CDATA[iPhone]]></category>

		<category><![CDATA[mobile]]></category>

		<category><![CDATA[ReadAir]]></category>

		<category><![CDATA[sidebar]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.softtechreviews.com/?p=768</guid>
		<description>Google Reader is a popular web-based feed reader that lacks one feature. A feature I&amp;#8217;m sure everyone would love to have available, even if they didn&amp;#8217;t use it. To sync with a desktop feed reader. Google seems to be falling behind with this. I stopped using Google Reader for a little while because of it. [...]</description>
			<content:encoded><![CDATA[<p><a title="Google Reader" href="http://www.google.com/reader" target="_self">Google Reader</a> is a popular web-based feed reader that lacks one feature. A feature I&#8217;m sure everyone would love to have available, even if they didn&#8217;t use it. To sync with a desktop feed reader. Google seems to be falling behind with this. I <a title="Back to Microsoft Office Outlook and NewsGator" href="http://www.softtechreviews.com/software/back-to-microsoft-office-outlook-and-newsgator/" target="_self">stopped using Google Reader</a> for a little while because of it. Now that I found a new way to read feeds on the desktop, I started to use it again. It&#8217;s not perfect, but it works.</p>
<p>One way to keep up with feeds is by using your mobile phone. You can access Google Reader on your phone by going to <a title="Google Reader Mobile" href="http://www.google.com/reader/m" target="_self">www.google.com/reader/m</a>. If you have an iPhone, then you would go to <a title="Google Reader iPhone" href="http://www.google.com/reader/i" target="_self">www.google.com/reader/i</a>.</p>
<p>If you use Firefox frequently, you can also <a title="Put Google Reader in Your Sidebar" href="http://lifehacker.com/390912/put-google-reader-in-your-sidebar" target="_self">set the sidebar to load Google Reader for the iPhone</a> or the plain mobile one. It&#8217;s your choice.</p>
<p>Another way that might be my favorite, although needs issues worked out, is a desktop client called <a title="ReadAir" href="http://code.google.com/p/readair/" target="_self">ReadAir</a>, which connects to your Google Reader account. It&#8217;s not perfect, though. But, I&#8217;m sure eventually it could get pretty close. One of the issues only displays 20 items. Even refreshing does not remove the items you&#8217;ve marked as read.</p>
<p><img class="aligncenter size-full wp-image-765" title="ReadAir" src="http://www.softtechreviews.com/wp-content/uploads/2008/05/readair.jpg" alt="ReadAir" width="500" height="300" /></p>
<p>Besides a few issues, ReadAir looks really nice and works very well. It&#8217;s not slow unlike viewing feeds in Outlook is. Using ReadAir makes me feel like I&#8217;m still using Google Reader, even though it&#8217;s on the desktop.
<p><a href="http://www.websitemagazine.com/referrals/?id=50731&#038;f=text3" title="Website Magazine">Spend Less, Earn More, Make a Difference - Website Magazine</a></p>

<p><a href="http://feeds.feedburner.com/~a/SoftTechReviews?a=S830wR"><img src="http://feeds.feedburner.com/~a/SoftTechReviews?i=S830wR" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=ydZ1yh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=ydZ1yh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=GqqmhH"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=GqqmhH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=Nhk5Wh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=Nhk5Wh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=jy1yEH"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=jy1yEH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=paoYmh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=paoYmh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=gKigeh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=gKigeh" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SoftTechReviews/~4/291812429" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.softtechreviews.com/software/multiple-ways-to-access-google-reader/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.softtechreviews.com/software/multiple-ways-to-access-google-reader/</feedburner:origLink></item>
		<item>
		<title>Keep Your Pownce and Twitter Posts Separate</title>
		<link>http://feeds.feedburner.com/~r/SoftTechReviews/~3/289561085/</link>
		<comments>http://www.softtechreviews.com/general/keep-your-pownce-and-twitter-posts-separate/#comments</comments>
		<pubDate>Tue, 13 May 2008 16:59:28 +0000</pubDate>
		<dc:creator>Alisha</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[micro-blogging]]></category>

		<category><![CDATA[Pownce]]></category>

		<category><![CDATA[social networking]]></category>

		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.softtechreviews.com/?p=762</guid>
		<description>With so many social networks available, it&amp;#8217;s very hard to pick just one. Some of your friends and family choose one, others choose a different one, and then maybe a couple picked another. You either get invites from them or they tell you about it and you feel obligated to create an account. I&amp;#8217;ve been [...]</description>
			<content:encoded><![CDATA[<p>With so many social networks available, it&#8217;s very hard to pick just one. Some of your friends and family choose one, others choose a different one, and then maybe a couple picked another. You either get invites from them or they tell you about it and you feel obligated to create an account. I&#8217;ve been there, but refused to do it again when family and friends started in with their MySpace pages.</p>
<p>I was slow grabbing a <a title="Twitter Profile" href="http://www.twitter.com/alishagg" target="_self">Twitter account</a> and started off with <a title="Pownce Profile" href="http://www.pownce.com/alishagg" target="_self">Pownce</a>. I like the ability to share pictures, videos and music. I eventually signed up to Twitter and started using it. I can see the difference between Pownce and Twitter and don&#8217;t mind using them for two different things. I haven&#8217;t even once wanted to post to both with the same message. Why? The people who follow me on Twitter are different from the people who read my posts on Pownce. If anyone wanted to read what I have to say/share on either one, they would add me.</p>
<p>Everyone keeps comparing Pownce and Twitter, but really, they are two different services. One offers several features, the other offers mostly just 140 characters. In my opinion, Pownce is more like StumbleUpon than it is like Twitter in the sharing aspect of it (images, videos..). Twitter is like having a chatroom open and reading what people have to say with the occasional link to read more.</p>
<p>I&#8217;m not telling you to stop cross-posting to both Pownce and Twitter, but try to consider the people who are following you. Are they going to be interested in reading what you have to say on Pownce with an @reply to someone on Twitter? What about the people who follow you on both Twitter and Pownce? <a title="One size does NOT fit all" href="http://arielwaldman.com/2008/03/28/one-size-does-not-fit-all/" target="_self">Do they want to read duplicate posts?</a> How do they know which one they should reply to that will get a response back? It wastes time. You may be saving time by posting the same message to both, but you are wasting other people&#8217;s time. Also, think about the replies. People on Pownce won&#8217;t see any of the Twitter replies, and vice versa, so they may be missing the whole conversation.</p>
<p>If you used IM the same way, wouldn&#8217;t you be annoyed if someone sent the same message to you with all of their IM accounts at the same time? (Yahoo!, MSN, AIM, Google, etc.)</p>
<p>There may come a time when you want to hear what both Pownce and Twitter people have to say, because maybe you&#8217;re asking for help or for an opinion or getting an idea for a new blog post. But cross-posting to both all the time could become annoying to some.</p>
<p><strong>Suggestions</strong></p>
<ul>
<li>Pownce allows you to group your friends. Maybe you could create a group that wants to receive your Twitter posts on Pownce. This may or may not work depending on the client, if it allows you to select a group.</li>
<li>Prefix your posts with Twitter/Pownce so if someone is interested, they can follow up on either.</li>
<li>Use Twitter and Pownce as two separate services, as they were designed.</li>
</ul>
<p>As I said, I&#8217;m not telling you to stop, but just keep your friends in mind the next time you cross-post. If anyone else has a suggestion or reason why Pownce and Twitter posts should (or shouldn&#8217;t) remain separate, please comment.
<p><a href="http://www.softtechreviews.com/advertise/" title="Advertise">Advertise on Soft Tech Reviews</a>.</p>

<p><a href="http://feeds.feedburner.com/~a/SoftTechReviews?a=GVgZAq"><img src="http://feeds.feedburner.com/~a/SoftTechReviews?i=GVgZAq" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=lAjM9h"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=lAjM9h" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=qsu5pH"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=qsu5pH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=8vNRFh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=8vNRFh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=DJXo7H"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=DJXo7H" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=25yKWh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=25yKWh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/SoftTechReviews?a=2YTmvh"><img src="http://feeds.feedburner.com/~f/SoftTechReviews?i=2YTmvh" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SoftTechReviews/~4/289561085" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.softtechreviews.com/general/keep-your-pownce-and-twitter-posts-separate/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.softtechreviews.com/general/keep-your-pownce-and-twitter-posts-separate/</feedburner:origLink></item>
	</channel>
</rss>
