<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.cybernetnews.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>CyberNet Classics - All Articles</title>
	<link>http://cybernetnews.com</link>
	<description>CyberNet Classics is a randomly generated RSS feed pulling in our past articles!</description>
	<pubDate />
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.cybernetnews.com/CyberNetClassics" type="application/rss+xml" /><item>
		<title>CyberNotes: 7-Zip Command Line Backups</title>
		<link>http://feeds.cybernetnews.com/~r/CyberNetClassics/~3/uhhPkVem70s/</link>
		<comments>http://cybernetnews.com/cybernotes-7-zip-command-line-backups/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 08:14:30 -0600</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[CyberNotes]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Tips And Tricks]]></category>

		<guid isPermaLink="false">http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/</guid>
		<description><![CDATA[<p><strong><u>This article was written on January 03, 2008 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p>Tutorial Thursday
The tool that I used for a long time for extracting and compressing archives is 7-Zip. It&#8217;s free, open-source, and has a powerful set of command line options that is perfect for performing backups. And today that&#8217;s exactly what we&#8217;re going to use it for.
We&#8217;re going to use a special version of 7-Zip that [...]<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong>]]></description>
		<content:encoded><![CDATA[<p><strong><u>This article was written on January 03, 2008 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p><p align="center"><a href="http://cybernetnews.com/category/cybernotes/"><img alt="CyberNotes" src="http://cybernetnews.com/wp-content/uploads/2006/06/CyberNotes.gif" border="0"></a><br /><strong>Tutorial Thursday</strong></p>
<p>The tool that I used for a long time for extracting and compressing archives is 7-Zip. It&#8217;s free, open-source, and has a powerful set of command line options that is perfect for performing backups. And today that&#8217;s exactly what we&#8217;re going to use it for.</p>
<p>We&#8217;re going to use a special version of 7-Zip that has no user interface whatsoever. It <em>has</em> to be used via the command line, and one of the benefits for using this version is that the entire application is self-contained in one single executable file. That makes it a great tool to carry around with you on a USB drive, and extremely easy to work with.</p>
<p>Here&#8217;s how to use the 7-Zip command line options to create backups at the click of a mouse:</p>
<p><span id="more-9555"></span>
<ol>
<li>The first thing you&#8217;ll want to do is go download the <a href="http://downloads.sourceforge.net/sevenzip/7za457.zip">command line version of 7-zip</a>. After you extract the contents you&#8217;ll notice that there are five files available. All we need is the <strong>7za.exe</strong>, so you can delete the rest if you wish.<br /><img height="190" alt="7zip Command Line Executable" src="http://cybernetnews.com/wp-content/uploads/2007/12/7zip-command-line-executable.jpg" width="289" border="0">
<li>Open up Notepad, and now we&#8217;re going to create a batch file that will backup a folder location of our choosing. I&#8217;ve decided to backup everything on my desktop this time around, but it will work for any location as long as you know the path.</p>
<p><code>7za.exe a cybernet.7z "C:\Users\Ryan\Desktop"</code></p>
<p>Be sure to include quotation marks around any paths that have spaces in them. For this example I didn&#8217;t have to put quotation marks around my path, but it never hurts to include them.</p>
<p>This will archive the documents in the 7-Zip format, which means you&#8217;ll need to have 7-Zip to extract it. It&#8217;s good because the compression ratio is very high, which means the backup file will be rather small compared to the other compression formats. If you were going to send this to someone they may have troubles opening it, but you can choose save the file as a ZIP by replacing &#8220;7z&#8221; with &#8220;zip&#8221; in that line of code.</p>
<p><img height="212" alt="7zip Command Line Notepad" src="http://cybernetnews.com/wp-content/uploads/2007/12/7zip-command-line-notepad.jpg" width="445" border="0">
<li>Now we need to save the batch file <u>in the same place</u> where the <strong>7za.exe</strong> is located. In Notepad go to <strong>File -&gt; Save As</strong>, and choose any filename. The only thing you need to make sure of is that at the end of the filename you include the <strong>.BAT</strong> extension:<br /><img height="207" alt="7zip Command Line Notepad Save" src="http://cybernetnews.com/wp-content/uploads/2007/12/7zip-command-line-notepad-save.jpg" width="394" border="0">
<li>Now all you have left to do is double-click on the batch file that you just created to run it. The resulting backup file will be located in the same place as the 7za.exe and the batch file, unless you&#8217;ve specified an alternate location in Step 2.
<li><em>Extra Credit</em>: You can always create a scheduled task that will run your batch file automatically at a time/date that you specify. That can be done by using the built-in Windows Scheduled Tasks wizard, which can be found in the Control Panel.</li>
</ol>
<p>One other tip that I wanted to provide is how to automatically insert the current year, month, and day into the resulting filename. This would be useful for anyone looking to schedule backups, without wanting to overwrite the previous backup. In Step 2 from our example above you would want to replace:
<p><code>cybernet.7z</code>
<p>with:
<p><code>%DATE:~-4%-%DATE:~4,2%-%DATE:~7,2%_cybernet.7z</code>
<p>which for today would give a result of:
<p><code>2008-01-03_cybernet.7z</code>
<p>Now every backup will remain in tact, assuming that you create no more than one backup per day.
<p>For those of you who want to dive a little deeper in to the 7-Zip command line options, here are the different things that the &#8220;a&#8221; can be replaced with in Step 2:
<ul>
<li>a: Add to an existing archive, or create a new one
<li>d: Delete files from an archive
<li>e: Extract files from an archive
<li>t: Test the integrity of an archive
<li>u: Update the files in an archive</li>
</ul>
<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong><p><strong>Related Posts:</strong><ul><li><a href="http://cybernetnews.com/your-week-in-review-with-sundays-summary-42/" rel="bookmark" title="Permanent Link: Your Week in Review with Sunday&#8217;s Summary">Your Week in Review with Sunday&#8217;s Summary</a></li><li><a href="http://cybernetnews.com/hidden-windows-xp-command-line-programs/" rel="bookmark" title="Permanent Link: &#8220;Hidden&#8221; Windows XP Command Line Programs">&#8220;Hidden&#8221; Windows XP Command Line Programs</a></li><li><a href="http://cybernetnews.com/cybernotes-assign-driver-letters-to-folders-in-windows/" rel="bookmark" title="Permanent Link: CyberNotes: Assign Driver Letters to Folders in Windows">CyberNotes: Assign Driver Letters to Folders in Windows</a></li><li><a href="http://cybernetnews.com/yubnub-brings-a-command-line-search-engine-to-geeks/" rel="bookmark" title="Permanent Link: YubNub Brings A Command Line Search Engine to Geeks">YubNub Brings A Command Line Search Engine to Geeks</a></li><li><a href="http://cybernetnews.com/cybernotes-how-to-create-a-batch-file-for-synchronizing-folders/" rel="bookmark" title="Permanent Link: CyberNotes: How To Create A Batch File For Synchronizing Folders">CyberNotes: How To Create A Batch File For Synchronizing Folders</a></li></ul></p>
<p><a href="http://feedads.g.doubleclick.net/~a/uvz5N9jglgJAtlWuZ-YUQY4qSCc/0/da"><img src="http://feedads.g.doubleclick.net/~a/uvz5N9jglgJAtlWuZ-YUQY4qSCc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/uvz5N9jglgJAtlWuZ-YUQY4qSCc/1/da"><img src="http://feedads.g.doubleclick.net/~a/uvz5N9jglgJAtlWuZ-YUQY4qSCc/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/CyberNetClassics/~4/uhhPkVem70s" height="1" width="1"/>]]></content:encoded>
		<wfw:commentRss>http://cybernetnews.com/cybernotes-7-zip-command-line-backups/feed/</wfw:commentRss>
			<feedburner:origLink>http://cybernetnews.com/cybernotes-7-zip-command-line-backups/</feedburner:origLink></item>
		<item>
		<title>Adobe Apollo Alpha: For Rich Internet Applications</title>
		<link>http://feeds.cybernetnews.com/~r/CyberNetClassics/~3/IUwaDNTejBk/</link>
		<comments>http://cybernetnews.com/adobe-apollo-alpha-for-rich-internet-applications/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 00:05:04 -0600</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Pre-Release]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Adobe]]></category>

		<guid isPermaLink="false">http://tech.cybernetnews.com/2007/03/19/adobe-apollo-alpha-for-rich-internet-applications/</guid>
		<description><![CDATA[<p><strong><u>This article was written on March 19, 2007 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p>Adobe has just hit a huge milestone today by releasing an Alpha version of their much anticipated Apollo software. This is something that I had been waiting to hear, but are you wondering what the heck Apollo is? Here is how Adobe explains it in their press release:

Apollo is the code name for a cross-operating [...]<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong>]]></description>
		<content:encoded><![CDATA[<p><strong><u>This article was written on March 19, 2007 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p><p>Adobe has just hit a huge milestone today by releasing an Alpha version of their much anticipated <a href="http://www.adobe.com/go/apollo" target="_blank">Apollo software</a>. This is something that I had been waiting to hear, but are you wondering what the heck Apollo is? Here is how Adobe explains it <a href="http://www.adobe.com/aboutadobe/pressroom/pressreleases/200703/031907ApolloLabs.html" target="_blank">in their press release</a>:</p>
<blockquote>
<p>Apollo is the code name for a cross-operating system application runtime that allows web developers to leverage their existing skills in HTML, JavaScript and Ajax, as well as Adobe Flash and Adobe Flex software to build and deploy rich Internet applications (RIAs) on the desktop. Apollo combines the reach of Internet technologies with the richness of desktop applications, working seamlessly across operating systems and outside the browser to deliver a more consistent and engaging user experience.</p>
</blockquote>
<p>The press release even states that eBay is working to take advantage of Apollo to bring in a better experience for their users. It is kinda hard to explain how this could revolutionize the future of online websites, so why don&rsquo;t I just show you in the eBay demo for Apollo where it is pretty apparent the benefits it will have:</p>
<p align="center"><embed src="http://www.youtube.com/v/RurAaFUjpvE" width="425" height="350" type="application/x-shockwave-flash"></embed></p>
<p>Now I&rsquo;m not exactly sure if you think that is as cool as I do, but this is going to change the way that we interact with online information. The other thing that is <strong>huge</strong> is that the software developed using Apollo is cross-platform&hellip;so it won&rsquo;t matter what operating system your website visitors are using because they should all be able to take advantage of Apollo&rsquo;s offerings.</p>
<p>A little over halfway through the video you should have seen what happens when these Apollo applications go offline. Despite being offline the user is still able to utilize certain features that would ordinarily be rendered inaccessible. It is exciting to think that developers will be able to start taking advantage of a technology that is cross-platform like this.</p>
<p>Right now there is just the Apollo Alpha developers kit, so it is still in the very early stages. However, I&rsquo;m sure many people are going to start looking into how this works and how they can take advantage of it.</p>
<p>All I can say is&hellip;I want that eBay &ldquo;application&rdquo;!</p>
<p><a href="http://www.adobe.com/go/apollo" target="_blank">Apollo Homepage</a> (mostly for developers)</p>
<p>News Source: <a href="http://www.informationweek.com/story/showArticle.jhtml?articleID=198001689" target="_blank">Information Week</a></p>
<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong><p><strong>Related Posts:</strong><ul><li><a href="http://cybernetnews.com/sign-up-for-the-firefox-companion-for-ebay/" rel="bookmark" title="Permanent Link: Sign up for the Firefox Companion for eBay">Sign up for the Firefox Companion for eBay</a></li><li><a href="http://cybernetnews.com/yourminis-uses-adobe-apollo-to-create-desktop-widgets/" rel="bookmark" title="Permanent Link: YourMinis uses Adobe Apollo to Create Desktop Widgets">YourMinis uses Adobe Apollo to Create Desktop Widgets</a></li><li><a href="http://cybernetnews.com/adobe-cs3-design-and-web-editions-released/" rel="bookmark" title="Permanent Link: Adobe CS3 Design and Web Editions Released">Adobe CS3 Design and Web Editions Released</a></li><li><a href="http://cybernetnews.com/adobe-reader-708-released/" rel="bookmark" title="Permanent Link: Adobe Reader 7.08 Released">Adobe Reader 7.08 Released</a></li><li><a href="http://cybernetnews.com/daily-downloads-eprompter-picasa-vize-and-more/" rel="bookmark" title="Permanent Link: Daily Downloads: ePrompter, Picasa, Vize, and More">Daily Downloads: ePrompter, Picasa, Vize, and More</a></li></ul></p>
<p><a href="http://feedads.g.doubleclick.net/~a/NwGf5ND1sbql79VugpTst2ViSRU/0/da"><img src="http://feedads.g.doubleclick.net/~a/NwGf5ND1sbql79VugpTst2ViSRU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/NwGf5ND1sbql79VugpTst2ViSRU/1/da"><img src="http://feedads.g.doubleclick.net/~a/NwGf5ND1sbql79VugpTst2ViSRU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/CyberNetClassics/~4/IUwaDNTejBk" height="1" width="1"/>]]></content:encoded>
		<wfw:commentRss>http://cybernetnews.com/adobe-apollo-alpha-for-rich-internet-applications/feed/</wfw:commentRss>
			<feedburner:origLink>http://cybernetnews.com/adobe-apollo-alpha-for-rich-internet-applications/</feedburner:origLink></item>
		<item>
		<title>CyberNotes: Best Portable Antivirus Software</title>
		<link>http://feeds.cybernetnews.com/~r/CyberNetClassics/~3/w7Niukq-TCg/</link>
		<comments>http://cybernetnews.com/cybernotes-best-portable-antivirus-software/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 15:50:36 -0600</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[CyberNotes]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Antivirus]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[Internet Security]]></category>
		<category><![CDATA[Portable Application]]></category>

		<guid isPermaLink="false">http://cybernetnews.com/2007/10/09/cybernotes-best-portable-antivirus-software/</guid>
		<description><![CDATA[<p><strong><u>This article was written on October 09, 2007 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p>Time Saving Tuesday
Have you ever been on another computer and wished that you had an antivirus program? Maybe you were trying to clean up a computer for a friend, or maybe you received an email attachment while using a public computer? One thing is for sure, and it&#8217;s that having the best antivirus is important, [...]<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong>]]></description>
		<content:encoded><![CDATA[<p><strong><u>This article was written on October 09, 2007 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p><p align="center"><a href="http://cybernetnews.com/category/cybernotes/"><img alt="CyberNotes" src="http://tech.cybernetnews.com/wp-content/uploads/2006/06/CyberNotes.gif"></a><br /><strong>Time Saving Tuesday</strong></p>
<p>Have you ever been on another computer and wished that you had an antivirus program? Maybe you were trying to clean up a computer for a friend, or maybe you received an email attachment while using a public computer? One thing is for sure, and it&#8217;s that having the <a href="http://cybernetnews.com/and-the-best-antivirus-is/">best antivirus</a> is important, but there are times where you just need <em>something</em>.</p>
<p>Today we&#8217;re going to present you with three portable antivirus solutions that can be used for scanning files in an emergency. They are all self updating, and require absolutely no installation. But remember, these are not replacements for installed applications as they are only made to do on-demand scanning.</p>
<h3><strong>&#8211;Portable ClamWin (</strong><a href="http://portableapps.com/apps/utilities/clamwin_portable"><strong>Homepage</strong></a><strong>)&#8211;</strong></h3>
<p align="center"><a href="http://cybernetnews.com/wp-content/uploads/2007/10/portable-clamwin.jpg" class="highslide" onclick="return hs.expand(this)"><img height="343" alt="Portable ClamWin" src="http://cybernetnews.com/wp-content/uploads/2007/10/portable-clamwin-thumb.jpg" width="450" border="0"><br />Click to Enlarge</a> </p>
<p>ClamAV is an extremely popular open source antivirus application. It was recently ranked <strong>very</strong> highly in the quest for the <a href="http://cybernetnews.com/best-linux-antivirus-kaspersky-clam-norton/">best Linux antivirus</a>, it even beat out many of the highly acclaimed commercial solutions. Shortly after that the makers of the application were <a href="http://cybernetnews.com/open-source-clamav-acquired-by-sourcefire/">acquired by Sourcefire</a>. </p>
<p>To get Portable ClamWin up and running all I had to do was run the executable, which then extracted several files to a directory. The first time that I ran it I was forced to update the program because the portable version comes with no virus definitions. So you may want to make sure to run the program at least once before throwing it on your USB drive, because if you don&#8217;t have an Internet connection you&#8217;ll be out of luck.</p>
<p>This is my top recommendation for portable antivirus software because it frequently receives updates.</p>
<p><em>Portable ClamWin will occupy about 19.1MB of room on your drive.</em></p>
<p><span id="more-7644"></span><br />
<h3><strong>&#8211;Portable Antivirus (</strong><a href="http://www.data0.net/forum/YaBB.pl?virboard=portablav16b;num=1174901279"><strong>Homepage</strong></a><strong>)&#8211;</strong></h3>
<p align="center"><a href="http://cybernetnews.com/wp-content/uploads/2007/10/portable-antivirus.jpg" class="highslide" onclick="return hs.expand(this)"><img height="258" alt="Portable Antivirus" src="http://cybernetnews.com/wp-content/uploads/2007/10/portable-antivirus-thumb.jpg" width="450" border="0"><br />Click to Enlarge</a> </p>
<p>This program appears to be relatively new, and from what I can tell it has been around for less than 7 months. My favorite thing about this generically named program is that it is composed of a single file. It even comes bundled with a set of virus definitions so that it is ready to go out-of-the-box. Although the included virus definitions are just a small set relative to the other apps mentioned here.</p>
<p>There is a real-time scanning option available on this application, but it will be disabled if you are running it from the standalone file. This makes sense though, because if you were to use this on a USB drive it would create insane amounts of overhead, and would greatly hinder your ability to access the drive.</p>
<p>One nice touch that the program offers is a useful System Tray icon. From there you can start a full system scan, check for updates, or close the program all together.</p>
<p><em>Portable Antivirus will occupy about 847KB of room on your drive.</em></p>
<h3><strong>&#8211;MicroWorld Free Antivirus (</strong><a href="http://www.mwti.net/products/mwav/mwav.asp"><strong>Homepage</strong></a><strong>)&#8211;</strong></h3>
<p align="center"><a href="http://cybernetnews.com/wp-content/uploads/2007/10/microworld-antivirus.jpg" class="highslide" onclick="return hs.expand(this)"><img height="348" alt="MicroWorld Antivirus" src="http://cybernetnews.com/wp-content/uploads/2007/10/microworld-antivirus-thumb.jpg" width="400" border="0"><br />Click to Enlarge</a> </p>
<p>This is one of the last tools that I stumbled upon, and I thought it was just a virus scanner like the others that I&#8217;ve listed here. It does scan your memory, registry, files, and more for viruses, but it also has an extremely useful network activity monitor.</p>
<p>In the network activity monitor you&#8217;ll be able to keep track of any communication going in and out of the computer. It also shows the ID of the computer &#8220;on the other end&#8221; so that you know who you are communicating with. If you ever try to diagnose a friends computer that is plagued with unknown programs and files, this will be a good way to identify the software that is frequently communicating with the outside world.</p>
<p><em>MicroWorld Free Antivirus will occupy about 18.8MB of room on your drive.</em></p>
<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong><p><strong>Related Posts:</strong><ul><li><a href="http://cybernetnews.com/your-week-in-review-with-sundays-summary-32/" rel="bookmark" title="Permanent Link: Your Week in Review with Sunday&#8217;s Summary">Your Week in Review with Sunday&#8217;s Summary</a></li><li><a href="http://cybernetnews.com/cybernotes-your-week-in-review-with-sundays-summary-3/" rel="bookmark" title="Permanent Link: CyberNotes: Your Week In Review With Sunday&#8217;s Summary">CyberNotes: Your Week In Review With Sunday&#8217;s Summary</a></li><li><a href="http://cybernetnews.com/free-kaspersky-antivirus/" rel="bookmark" title="Permanent Link: Free Kaspersky Antivirus">Free Kaspersky Antivirus</a></li><li><a href="http://cybernetnews.com/picking-up-a-computer-for-christmas-then-get-nod32-antivirus/" rel="bookmark" title="Permanent Link: Picking Up A Computer For Christmas, Then Get NOD32 Antivirus">Picking Up A Computer For Christmas, Then Get NOD32 Antivirus</a></li><li><a href="http://cybernetnews.com/portable-firefox-1504-for-mac-available/" rel="bookmark" title="Permanent Link: Portable Firefox 1.5.0.4 For Mac Available">Portable Firefox 1.5.0.4 For Mac Available</a></li></ul></p>
<p><a href="http://feedads.g.doubleclick.net/~a/Y2ohAU1CS3P_vf-9rQrmWrktBzs/0/da"><img src="http://feedads.g.doubleclick.net/~a/Y2ohAU1CS3P_vf-9rQrmWrktBzs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Y2ohAU1CS3P_vf-9rQrmWrktBzs/1/da"><img src="http://feedads.g.doubleclick.net/~a/Y2ohAU1CS3P_vf-9rQrmWrktBzs/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/CyberNetClassics/~4/w7Niukq-TCg" height="1" width="1"/>]]></content:encoded>
		<wfw:commentRss>http://cybernetnews.com/cybernotes-best-portable-antivirus-software/feed/</wfw:commentRss>
			<feedburner:origLink>http://cybernetnews.com/cybernotes-best-portable-antivirus-software/</feedburner:origLink></item>
		<item>
		<title>IE 8 Passes Acid 2 Test</title>
		<link>http://feeds.cybernetnews.com/~r/CyberNetClassics/~3/1gh-FipdDG0/</link>
		<comments>http://cybernetnews.com/ie-8-passes-acid-2-test/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 07:33:03 -0600</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Pre-Release]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Beta]]></category>
		<category><![CDATA[Internet Explorer]]></category>

		<guid isPermaLink="false">http://cybernetnews.com/2007/12/20/ie-8-passes-acid-2-test/</guid>
		<description><![CDATA[<p><strong><u>This article was written on December 20, 2007 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p> Microsoft has been receiving a heap of criticism lately for their Internet Explorer web browser, and the Opera antitrust suit just added more fuel to the flames. People want to see Internet Explorer follow the standards that other web browsers have already complied with, and that will hopefully increase the number of sites that [...]<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong>]]></description>
		<content:encoded><![CDATA[<p><strong><u>This article was written on December 20, 2007 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p><p><img style="margin: 0px 0px 5px 5px" height="255" alt="IE8 Acid 2 Test" src="http://cybernetnews.com/wp-content/uploads/2007/12/ie8-acid-2-test.jpg" width="255" align="right" border="0"> Microsoft has been receiving a heap of criticism lately for their Internet Explorer web browser, and the <a href="http://cybernetnews.com/opera-fights-for-ie-web-standards/">Opera antitrust suit</a> just added more fuel to the flames. People want to see Internet Explorer follow the standards that other web browsers have already complied with, and that will hopefully increase the number of sites that are compatible outside of the IE realm.</p>
<p>Despite being overly &#8220;hush hush&#8221; about the next version of Internet Explorer, the development team has decided to help put our weary hearts at ease by <a href="http://blogs.msdn.com/ie/archive/2007/12/19/internet-explorer-8-and-acid2-a-milestone.aspx">telling us</a> that the current internal version of Internet Explorer 8 already passes the <a href="http://www.webstandards.org/action/acid2/">Acid 2</a> test. There are not many *released* browsers out there that can boast such an accomplishment: Safari, Konqueror, and Opera. Firefox 3, which is expected for release in the first half of 2008, also passes the test.</p>
<p>If you&#8217;re thinking that Microsoft did this purely because of the pressure put on by Opera I think you&#8217;re wrong. It would have been pretty difficult for them to slap together Acid 2 compliance in such a short period of time, and I would therefore have to believe they&#8217;ve been working on it for awhile. Although I do have a strong inkling that they only posted this information because of the antitrust suit.</p>
<p>Now the only problem is browser adoption. Even though Internet Explorer 8 is going to be mounds better when it comes to standards, it won&#8217;t mean a thing if users don&#8217;t download it. I&#8217;ve been rather disappointed at the rate at which IE 7&#8217;s market share is increasing, and it looks as though many users are content with IE 6. Hopefully we&#8217;ll see more people adopting the standards compliant browsers in the future.</p>
<p>Internet Explorer 8 is not expected to be shipped until 2009, but Microsoft has said that the first Beta should be rolling out in the first half of 2008. If you&#8217;re anxious to give the new browser a whirl keep an eye out because an early look could be just a few months away.</p>
<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong><p><strong>Related Posts:</strong><ul><li><a href="http://cybernetnews.com/latest-firefox-3-nightly-passes-the-acid-2-test/" rel="bookmark" title="Permanent Link: Latest Firefox 3 Nightly Passes The Acid 2 Test">Latest Firefox 3 Nightly Passes The Acid 2 Test</a></li><li><a href="http://cybernetnews.com/congratulations-css-celebrates-their-10-year-anniversary/" rel="bookmark" title="Permanent Link: Congratulations: CSS Celebrates their 10-Year Anniversary">Congratulations: CSS Celebrates their 10-Year Anniversary</a></li><li><a href="http://cybernetnews.com/mozillas-take-on-acid3-test/" rel="bookmark" title="Permanent Link: Mozilla&#8217;s Take on Acid3 Test">Mozilla&#8217;s Take on Acid3 Test</a></li><li><a href="http://cybernetnews.com/ie-8-will-not-follow-standards-by-default/" rel="bookmark" title="Permanent Link: IE 8 Will Not Follow Standards By Default">IE 8 Will Not Follow Standards By Default</a></li><li><a href="http://cybernetnews.com/apples-webkit-scores-100100-on-acid3-too/" rel="bookmark" title="Permanent Link: Apple&#8217;s WebKit Scores 100/100 on Acid3, too">Apple&#8217;s WebKit Scores 100/100 on Acid3, too</a></li></ul></p>
<p><a href="http://feedads.g.doubleclick.net/~a/J4uPluJ2OKFbxl-pkR-yyiyc0m4/0/da"><img src="http://feedads.g.doubleclick.net/~a/J4uPluJ2OKFbxl-pkR-yyiyc0m4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/J4uPluJ2OKFbxl-pkR-yyiyc0m4/1/da"><img src="http://feedads.g.doubleclick.net/~a/J4uPluJ2OKFbxl-pkR-yyiyc0m4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/CyberNetClassics/~4/1gh-FipdDG0" height="1" width="1"/>]]></content:encoded>
		<wfw:commentRss>http://cybernetnews.com/ie-8-passes-acid-2-test/feed/</wfw:commentRss>
			<feedburner:origLink>http://cybernetnews.com/ie-8-passes-acid-2-test/</feedburner:origLink></item>
		<item>
		<title>The Truth Behind Computer Repairs (Geek Squad, Fry’s, and More)</title>
		<link>http://feeds.cybernetnews.com/~r/CyberNetClassics/~3/td6BV0zZe28/</link>
		<comments>http://cybernetnews.com/the-truth-behind-computer-repairs-geek-squad-frys-and-more/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 23:15:33 -0600</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://tech.cybernetnews.com/2007/04/24/the-truth-behind-computer-repairs-geek-squad-frys-and-more/</guid>
		<description><![CDATA[<p><strong><u>This article was written on April 24, 2007 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p>Since I am pretty knowledgeable about the internal workings of a computer, I often find myself helping others find the light at the end of the tunnel. By that I mean people who are having problems with their computers and have no idea where to begin. Typically they will just take it to a computer [...]<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong>]]></description>
		<content:encoded><![CDATA[<p><strong><u>This article was written on April 24, 2007 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p><p><img alt="Help Key" src="http://cybernetnews.com/wp-content/uploads/2007/04/helpkey.jpg" align="right" border="0" />Since I am pretty knowledgeable about the internal workings of a computer, I often find myself helping others find the light at the end of the tunnel. By that I mean people who are having problems with their computers and have no idea where to begin. Typically they will just take it to a computer repair shop, but when you know someone that understands how computers work then you will of course turn to them first.</p>
<p>Most of the time the questions come at the most inopportune time for me. It is often when I am busy working on something else, but I always try to help others out with their problems&hellip;normally without charging a fee. For the most part no one really takes advantage of me, and if I feel that they are I will start billing them for some of the work. So why do I want to help people with their computer problems in the first place?</p>
<p>There are so many computer repair businesses out there that it is almost disgusting. People prosper from hard drives failing, motherboards getting fried, and the list keeps on going. Best Buy even has their &ldquo;Geek Squad&rdquo; that offers to not only fix your computer problems, but also setup networks among other things. The problem is that these companies pride themselves on having a &ldquo;knowledgeable&rdquo; repair staff, when most of them are lacking a lot of the experience that they need to be qualified for such a job.</p>
<p>The video below&nbsp;clearly demonstrates why I like to help people out with repairs, especially when they are minor ones. Basically this news station took a &ldquo;broken&rdquo; computer to 8 computer shops in their area. They had the computer checked out by a professional&nbsp;before&nbsp;hand&nbsp;to make sure it was in perfect working order, and then all they did was disconnect the cable that connects the hard drive to the motherboard. A fix that would take just seconds for any <strong>good</strong> computer repair person to complete wasn&rsquo;t as cheap as you may think:</p>
<p align="center"><embed src="http://www.youtube.com/v/cBvUt2bIQFk" width="425" height="350" type="application/x-shockwave-flash"></embed></p>
<p>Here is what some of the different companies were charging to &ldquo;repair&rdquo; the computer:</p>
<ul>
<li><strong>Best Buy&rsquo;s Geek Squad</strong>: They couldn&rsquo;t fix it because they claimed the computer needed a new power supply that they didn&rsquo;t carry. Best Buy responded to the misdiagonoses saying that &ldquo;Computer malfunction can be hard to pinpoint.&rdquo; If they can&rsquo;t diagonose a disconnected cable then what can they do right?</li>
<li><strong>Circuit City</strong>: Fixed it for $59.99 after saying there were also issues with the jumpers being set incorrectly on the hard drive.</li>
<li><strong>CompUSA</strong>: Fixed the problem and didn&rsquo;t lie about what was wrong, but still charged $119.99.</li>
<li><strong>Fry&rsquo;s</strong>: Charged $69.99 for the repair and also didn&rsquo;t lie about the cause of the malfunction.</li>
<li><strong>Torrance Computer Repair</strong>: They fixed it for free!</li>
<li><strong>BMI Computers</strong>: Claimed there was&nbsp;a power short and that the motherboard and hard drive&nbsp;were bad&hellip;and it would cost $275 to fix!</li>
</ul>
<p>I am still not sure if I should be shocked at the results or not, because I knew that the services were a rip off. I guess that is what keeps some of these electronics stores in business.</p>
<p>If you know anything about computers at least try and give people advice when they need to get something fixed, because I&rsquo;m sure you would feel bad if they had to shell out that much money for something so simple!</p>
<p>Thanks for the tip Jason!</p>
<p>Source: <a href="http://www.dailycupoftech.com/2007/04/24/howto-give-computer-techs-a-bad-name/">Daily Cup of Tech</a></p>
<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong><p><strong>Related Posts:</strong><ul><li><a href="http://cybernetnews.com/it-can-be-pricey-to-be-a-geek/" rel="bookmark" title="Permanent Link: It Can Be Pricey To Be A Geek">It Can Be Pricey To Be A Geek</a></li><li><a href="http://cybernetnews.com/wal-mart-tests-solution-centers-by-dell/" rel="bookmark" title="Permanent Link: Wal-Mart Tests &#8220;Solution Centers by Dell&#8221;">Wal-Mart Tests &#8220;Solution Centers by Dell&#8221;</a></li><li><a href="http://cybernetnews.com/cybernotes-what-kind-of-geek-are-you/" rel="bookmark" title="Permanent Link: CyberNotes: What Kind of Geek Are You?">CyberNotes: What Kind of Geek Are You?</a></li><li><a href="http://cybernetnews.com/hurry-you-wont-find-ubuntu-this-cheap-anywhere-else/" rel="bookmark" title="Permanent Link: Hurry! You Won&#8217;t Find Ubuntu this Cheap Anywhere Else!">Hurry! You Won&#8217;t Find Ubuntu this Cheap Anywhere Else!</a></li><li><a href="http://cybernetnews.com/microsoft-to-spend-approx-1-billion-on-xbox-360-repairs/" rel="bookmark" title="Permanent Link: Microsoft To Spend Approx. 1 Billion on Xbox 360 Repairs">Microsoft To Spend Approx. 1 Billion on Xbox 360 Repairs</a></li></ul></p>
<p><a href="http://feedads.g.doubleclick.net/~a/jvhXQDJyc_NnYVbgi9NkEsX5hzo/0/da"><img src="http://feedads.g.doubleclick.net/~a/jvhXQDJyc_NnYVbgi9NkEsX5hzo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/jvhXQDJyc_NnYVbgi9NkEsX5hzo/1/da"><img src="http://feedads.g.doubleclick.net/~a/jvhXQDJyc_NnYVbgi9NkEsX5hzo/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/CyberNetClassics/~4/td6BV0zZe28" height="1" width="1"/>]]></content:encoded>
		<wfw:commentRss>http://cybernetnews.com/the-truth-behind-computer-repairs-geek-squad-frys-and-more/feed/</wfw:commentRss>
			<feedburner:origLink>http://cybernetnews.com/the-truth-behind-computer-repairs-geek-squad-frys-and-more/</feedburner:origLink></item>
		<item>
		<title>WrapUp: Offline Gmail, Free Push Email for iPhone, and More</title>
		<link>http://feeds.cybernetnews.com/~r/CyberNetClassics/~3/AQXOiCu5kw8/</link>
		<comments>http://cybernetnews.com/wrapup-offline-gmail-free-push-email-for-iphone-and-more/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 15:00:04 -0600</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[WrapUp]]></category>

		<guid isPermaLink="false">http://cybernetnews.com/?p=13848</guid>
		<description><![CDATA[<p><strong><u>This article was written on July 17, 2008 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p>Welcome to the WrapUp by CyberNet. This is a collection of news stories and tips that we have collected over the last few days, but never got around to writing about. Don&#8217;t forget to send in your own tips, or just leave a comment on this page if you think you&#8217;ve got something we should [...]<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong>]]></description>
		<content:encoded><![CDATA[<p><strong><u>This article was written on July 17, 2008 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p><p><!--align="right"-->Welcome to the <a href="http://cybernetnews.com/category/wrapup/">WrapUp</a> by <a href="http://cybernetnews.com">CyberNet</a>. This is a collection of news stories and tips that we have collected over the last few days, but never got around to writing about. Don&#8217;t forget to <a href="http://cybernetnews.com/have-a-tip-send-it-to-us/">send in your own tips</a>, or just leave a comment on this page if you think you&#8217;ve got something we should include.</p>
<h3>&#8211;News&#8211;</h3>
<p class="newsitem"><strong><span style="font-weight: normal;"><img src="http://cybernetnews.com/wp-content/uploads/2008/07/google-calendar-offline.jpg" width="100" height="56" alt="google calendar offline.jpg" style="float:left; margin-right:5px;" /></span><a href="http://googlesystem.blogspot.com/2008/07/gmail-and-google-calendar-to-add.html">Gmail &amp; Google Calender Offline Support</a></strong><br />
Sometime in the next 6 weeks Google will be adding Gears support to both Gmail and Google Calendar. This is a big step for Google, and it will mean that their most popular services will be able to go offline if needed.</p>
<p><br clear="all" /></p>
<p class="newsitem"><strong><span style="font-weight: normal;"><img src="http://cybernetnews.com/wp-content/uploads/2008/07/opera-mobile.jpg" width="100" height="95" alt="opera mobile.jpg" style="float:left; margin-right:5px;" /></span><a href="http://www.opera.com/products/mobile/download/">Opera Mobile 9.5 Beta Released</a></strong><br />
It took a little while, but Opera has finally gotten around to releasing the first public Beta of their Opera Mobile 9.5 software. This is designed for Pocket PC devices, and is free while it&#8217;s in Beta. [<a href="http://cybernetnews.com/opera-mobile-95-just-what-the-doctor-ordered/">related</a>]</p>
<p><br clear="all" /></p>
<p class="newsitem"><strong><span style="font-weight: normal;"><img src="http://cybernetnews.com/wp-content/uploads/2008/07/meebo.jpg" width="100" height="98" alt="meebo.jpg" style="float:left; margin-right:5px;" /></span><a href="http://venturebeat.com/2008/07/16/meebo-launches-instant-message-platform-so-other-web-sites-can-offer-their-own-branded-chat-services/">Meebo Launching Branded Chat Services</a></strong><br />
Meebo has plans of launching a branded chat service for users that want to integrate chat capabilities on their own sites. It will also include an advertising option, and with it the publishers will get a cut of the revenue.</p>
<p><br clear="all" /><br />
<span id="more-13848"></span>
<p class="newsitem"><strong><span style="font-weight: normal;"><img src="http://cybernetnews.com/wp-content/uploads/2008/07/youtube-tivo.jpg" width="100" height="71" alt="youtube tivo.jpg" style="float:left; margin-right:5px;" /></span><a href="http://gizmodo.com/5026092/tivo-getting-youtube-streaming-today">YouTube Comes to TiVo</a></strong><br />
Can&#8217;t find anything on TV to watch? Just flip on your TV and start watching millions of different YouTube videos through your TiVo. You can watch popular videos, recent videos, or search for something on the site. Talk about hours of <strike>quality</strike> entertainment.</p>
<p><br clear="all" /></p>
<p class="newsitem"><strong><span style="font-weight: normal;"><img src="http://cybernetnews.com/wp-content/uploads/2008/07/app-store.jpg" width="100" height="99" alt="app store.jpg" style="float:left; margin-right:5px;" /></span><a href="http://www.jkontherun.com/2008/07/theres-an-unoff.html">Unofficial RSS Feeds for iPhone App Store</a></strong><br />
One thing Apple really needs to do is create an RSS feed that makes tracking new applications in the App Store easy. Luckily one group of people have taken it upon themselves to create RSS feeds for new apps, updated apps, and more.</p>
<p><br clear="all" /></p>
<p class="newsitem"><strong><span style="font-weight: normal;"><img src="http://cybernetnews.com/wp-content/uploads/2008/07/dell-xt.jpg" width="100" height="86" alt="dell xt.jpg" style="float:left; margin-right:5px;" /></span><a href="http://direct2dell.com/one2one/archive/2008/07/15/latitude-xt-software-update-is-here.aspx">Dell Latitude XT Gets a Multitouch Upgrade</a></strong><br />
Dell has impressively released a free update for Dell Latitude XT Tablet PC owners that gives the operating system multitouch capabilities. You can do things like zoom in/out of photos in an iPhone-like fashion. [<a href="http://cybernetnews.com/rumor-confirmed-dell-tablet-pc-comin-soon/">related</a>]</p>
<p><br clear="all" /></p>
<p class="newsitem"><strong><span style="font-weight: normal;"><img src="http://cybernetnews.com/wp-content/uploads/2008/07/gmail-igoogle.jpg" width="100" height="79" alt="gmail igoogle.jpg" style="float:left; margin-right:5px;" /></span><a href="http://blogs.zdnet.com/Google/?p=1097">Gmail iGoogle Gadget Gets Updated</a></strong><br />
Google has finally done justice to the iGoogle gadget for Gmail. Before it didn&#8217;t do much more than tell you what emails were in your Inbox, but now you can delete, mark as spam, and compose messages right from the homepage. Not bad.</p>
<p><br clear="all" /></p>
<p class="newsitem"><strong><span style="font-weight: normal;"><img src="http://cybernetnews.com/wp-content/uploads/2008/07/leopard-1.jpg" width="100" height="82" alt="leopard-1.jpg" style="float:left; margin-right:5px;" /></span><a href="http://gizmodo.com/5025770/apple-demands-recall-of-every-psystar-mac-clone">Apple Goes After Psystar</a></strong><br />
Psystar has been selling computers with Mac OS X for a few months now, and it looks like Apple has finally unleashed their lawyers. Not only do they want Psystar to stop selling their computers, but they want them to recall all of the ones that have already shipped! [<a href="http://cybernetnews.com/psystar-computers-exist-but-have-lots-of-quirks/">related</a>]</p>
<p><br clear="all" /></p>
<p class="newsitem"><strong><span style="font-weight: normal;"><img src="http://cybernetnews.com/wp-content/uploads/2008/07/android.jpg" width="100" height="91" alt="android.jpg" style="float:left; margin-right:5px;" /></span><a href="http://arstechnica.com/news.ars/post/20080715-googles-android-platform-not-so-open-after-all.html">Google&#8217;s Android Not So Open After All</a></strong><br />
Google has apparently been giving 50 or so developers private access to improved versions of the Android operating system, and have bound them to non-disclosure agreements. That&#8217;s a little disappointing for everyone else developing for the platform.</p>
<p><br clear="all" /></p>
<p class="newsitem"><strong><span style="font-weight: normal;"><img src="http://cybernetnews.com/wp-content/uploads/2008/07/share-calendar.jpg" width="100" height="64" alt="share calendar.jpg" style="float:left; margin-right:5px;" /></span><a href="http://blogs.securiteam.com/index.php/archives/1113">Find the Name of Any Gmail User</a></strong><br />
Using Google Calendar you can apparently find the name of any Gmail user by simply sharing a calendar with that person. This is one way that spammers could possibly get your name to make an email appear personalized.</p>
<p><br clear="all" /></p>
<p class="newsitem"><strong><span style="font-weight: normal;"><img src="http://cybernetnews.com/wp-content/uploads/2008/07/kindle.jpg" width="100" height="107" alt="kindle.jpg" style="float:left; margin-right:5px;" /></span><a href="http://www.crunchgear.com/2008/07/15/kindle-20-coming-around-october-2008/">Amazon Kindle 2.0 Coming Around October</a></strong><br />
The next generation Amazon Kindle will be coming just in time for the holiday season this year. It will have an improved form factor and be smaller in size, but the screen will still be the same size. [<a href="http://cybernetnews.com/amazon-kindle-to-replace-textbooks/">related</a>]</p>
<p><br clear="all" /></p>
<p class="newsitem"><strong><span style="font-weight: normal;"><img src="http://cybernetnews.com/wp-content/uploads/2008/07/youtube.jpg" width="100" height="72" alt="youtube.jpg" style="float:left; margin-right:5px;" /></span><a href="http://gizmodo.com/5025503/google-to-mask-data-before-handover-youtubers-now-safe-from-viacom">YouTube to Mask Data Before Giving it to Viacom</a></strong><br />
There was some worry about what kind of information Viacom was going to get from Google, but it looks like the data will be masked before it reaches the hands of Viacom. [<a href="http://cybernetnews.com/does-viacoms-suit-against-youtube-threaten-online-communication/">related</a>]</p>
<p><br clear="all" /></p>
<p class="newsitem"><strong><span style="font-weight: normal;"><img src="http://cybernetnews.com/wp-content/uploads/2008/07/twitter.jpg" width="100" height="55" alt="twitter.jpg" style="float:left; margin-right:5px;" /></span><a href="http://news.cnet.com/8301-17939_109-9991669-2.html?part=rss&amp;tag=feed&amp;subj=Webware">Twitter Buys Summize</a></strong><br />
The Twitter search engine called Summize was purchased by none other than Twitter themselves. The transaction amount is unknown, but it&#8217;s estimated at about $15 million.</p>
<p><br clear="all" /></p>
<p class="newsitem"><strong><span style="font-weight: normal;"><img src="http://cybernetnews.com/wp-content/uploads/2008/07/blimp-1.jpg" width="100" height="79" alt="blimp-1.jpg" style="float:left; margin-right:5px;" /></span><a href="http://www.popsci.com/military-aviation-space/article/2008-07/return-blimp">Big Blimps Making a Comeback</a></strong><br />
Boeing is working with a Canadian company to create blimps that can carry heavy loads in remote areas. The 302-foot-long airships will be equipped with rotors to make flying them easier, and they&#8217;ll be able to carry 40 tons up to 200 miles without refueling.</p>
<h3>&#8211;Tips, Tutorials, and Reviews&#8211;</h3>
<p class="newsitem"><strong><span style="font-weight: normal;"><img src="http://cybernetnews.com/wp-content/uploads/2008/07/windows-fixes.jpg" width="100" height="82" alt="windows fixes.jpg" style="float:left; margin-right:5px;" /></span><a href="http://lifehacker.com/398591/top-10-computer-annoyances-and-how-to-fix-them">Top 10 Computer Annoyances &amp; How to Fix Them</a></strong><br />
Lifehacker shows us how to fix common annoyances, such as slipstreaming XP SP3 or shutting down Dashboard widgets on Mac OS X.</p>
<p><br clear="all" /></p>
<p class="newsitem"><strong><span style="font-weight: normal;"><img src="http://cybernetnews.com/wp-content/uploads/2008/07/firefox-background.jpg" width="100" height="82" alt="firefox background.jpg" style="float:left; margin-right:5px;" /></span><a href="http://www.firefoxfacts.com/2008/07/16/more-free-firefox-wallpapers/">Firefox Wallpapers</a></strong><br />
Want to show off your love for Firefox? This is a great collection of wallpapers that you&#8217;re sure to enjoy.</p>
<p><br clear="all" /></p>
<p class="newsitem"><strong><span style="font-weight: normal;"><img src="http://cybernetnews.com/wp-content/uploads/2008/07/iphone-push-email.jpg" width="100" height="66" alt="iphone push email.jpg" style="float:left; margin-right:5px;" /></span><a href="http://lifehacker.com/398526/set-up-push-email-contacts-and-calendar-on-your-iphone-for-free">Free Push Email for iPhone</a></strong><br />
This is a guide on how you can setup free push email, contacts, and calendar for your iPhone. It&#8217;s not an optimal solution, but it&#8217;s hard to complain when it&#8217;s free.</p>
<p><br clear="all" /></p>
<p class="newsitem"><strong><span style="font-weight: normal;"><img src="http://cybernetnews.com/wp-content/uploads/2008/07/print-urls.jpg" width="100" height="77" alt="print urls.jpg" style="float:left; margin-right:5px;" /></span><a href="http://www.howtogeek.com/howto/the-geek-blog/prevent-firefox-or-internet-explorer-from-printing-the-url-on-every-page/">Stop URL&#8217;s from Displaying When Printing Websites</a></strong><br />
Prevent URL&#8217;s from showing up whenever you print a website. These are instructions for both Internet Explorer and Firefox, and it takes just a few seconds to do.</p>
<p><br clear="all" /></p>
<p class="newsitem"><strong><span style="font-weight: normal;"><img src="http://cybernetnews.com/wp-content/uploads/2008/07/tinyurl.jpg" width="100" height="69" alt="tinyurl.jpg" style="float:left; margin-right:5px;" /></span><a href="http://news.cnet.com/8301-17939_109-9979890-2.html?part=rss&amp;tag=feed&amp;subj=Webware">Convert TinyURL&#8217;s to Real URL&#8217;s</a></strong><br />
Services like TinyURL are nice because they conserve space, but it can be frustrating to not know where a link is going to take you before you actually click on it. Webware has a few different solutions that will convert the TinyURL links into the actual URL&#8217;s that they points to.</p>
<p><br clear="all" /></p>
<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong><p><strong>Related Posts:</strong><ul><li><a href="http://cybernetnews.com/gmail-going-offline-soon/" rel="bookmark" title="Permanent Link: Gmail Going Offline Soon?">Gmail Going Offline Soon?</a></li><li><a href="http://cybernetnews.com/wrapup-live-mesh-for-mac-amazon-s3-downtime-and-more/" rel="bookmark" title="Permanent Link: WrapUp: Live Mesh for Mac, Amazon S3 Downtime, and More">WrapUp: Live Mesh for Mac, Amazon S3 Downtime, and More</a></li><li><a href="http://cybernetnews.com/offline-access-for-google-calendar-coming/" rel="bookmark" title="Permanent Link: Offline Access for Google Calendar Coming?">Offline Access for Google Calendar Coming?</a></li><li><a href="http://cybernetnews.com/latest-scam-free-gmail-storage-upgrades/" rel="bookmark" title="Permanent Link: Latest Scam: Free Gmail Storage Upgrades">Latest Scam: Free Gmail Storage Upgrades</a></li><li><a href="http://cybernetnews.com/cybernotes-push-email-using-sms-text-messages/" rel="bookmark" title="Permanent Link: CyberNotes: &#8220;Push&#8221; Email Using SMS Text Messages">CyberNotes: &#8220;Push&#8221; Email Using SMS Text Messages</a></li></ul></p>
<p><a href="http://feedads.g.doubleclick.net/~a/t7ST-OfWH7nV1fpvKPrQpssdtAU/0/da"><img src="http://feedads.g.doubleclick.net/~a/t7ST-OfWH7nV1fpvKPrQpssdtAU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/t7ST-OfWH7nV1fpvKPrQpssdtAU/1/da"><img src="http://feedads.g.doubleclick.net/~a/t7ST-OfWH7nV1fpvKPrQpssdtAU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/CyberNetClassics/~4/AQXOiCu5kw8" height="1" width="1"/>]]></content:encoded>
		<wfw:commentRss>http://cybernetnews.com/wrapup-offline-gmail-free-push-email-for-iphone-and-more/feed/</wfw:commentRss>
			<feedburner:origLink>http://cybernetnews.com/wrapup-offline-gmail-free-push-email-for-iphone-and-more/</feedburner:origLink></item>
		<item>
		<title>SlideRocket: Amazing Online Presentation Creator</title>
		<link>http://feeds.cybernetnews.com/~r/CyberNetClassics/~3/mEddp_VukjU/</link>
		<comments>http://cybernetnews.com/sliderocket-amazing-online-presentation-creator/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 06:21:46 -0600</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Web Sites]]></category>
		<category><![CDATA[Beta]]></category>
		<category><![CDATA[Online Office Suite]]></category>

		<guid isPermaLink="false">http://cybernetnews.com/2008/03/20/sliderocket-amazing-online-presentation-creator/</guid>
		<description><![CDATA[<p><strong><u>This article was written on March 20, 2008 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p>(Click to Enlarge)
Omar tipped me off yesterday to a rather amazing presentation creator currently in private Beta called SlideRocket. It&#8217;s completely Flash-based, and the interface I would say is one of the best out of all the competing products.
I tinkered around with it for quite awhile, and I was impressed with the number of features [...]<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong>]]></description>
		<content:encoded><![CDATA[<p><strong><u>This article was written on March 20, 2008 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p><p align="center"><a href="http://cybernetnews.com/wp-content/uploads/2008/03/sliderocket.png" class="highslide" onclick="return hs.expand(this)"><img border="0" alt="sliderocket" src="http://cybernetnews.com/wp-content/uploads/2008/03/sliderocket-thumb.png" width="450" height="305"></a><br /><em>(Click to Enlarge)</em></p>
<p>Omar tipped me off yesterday to a rather amazing presentation creator currently in private Beta called <a href="http://www.sliderocket.com/">SlideRocket</a>. It&#8217;s completely Flash-based, and the interface I would say is one of the best out of all the competing products.</p>
<p>I tinkered around with it for quite awhile, and I was impressed with the number of features it includes. Not only can you upload media such as pictures and videos, but you can also search online sites such as Flickr and Yahoo for media to add to your presentation. Other standard items like charts, shapes, and tables can also be added.</p>
<p>There is also a plugin system that I think will really help attract users. In a few clicks you can search and add a famous quote, word definition, or Yahoo map to a presentation without ever leaving SlideRocket. It&#8217;s still quite limited at this point, but if they build up the number of plugins it would become a very attractive service.</p>
<p>The thing that I enjoyed the most, however, would have to be the varying slide transitions that are available. I&#8217;ve embedded one of their presentations below so that you can see what I&#8217;m talking about:</p>
<p><span id="more-11654"></span>
<p align="center"><embed height="400" type="application/x-shockwave-flash" width="500" src="http://data.sliderocket.com/SlideRocketPlayer.swf" allowfullscreen="true" flashvars="id=8EC7127A-E93C-74DD-2C73-D22FE2587123"></p>
<p>There is just one problem&#8230;there are too many of these darn online office applications out there! At this point SlideRocket isn&#8217;t even publicly available, and it won&#8217;t be until this summer. If I start creating all of my presentations with them how do I know that they&#8217;ll be here tomorrow? I guess you don&#8217;t really know that with any of the online alternatives out there, but there&#8217;s a little more reassurance when using Google Docs or Zoho since they have become well established in their field.</p>
<p>My inquiring mind is now wondering that if a better online office suite emerges are you less inclined to use it if it&#8217;s not coming from someone that is well established?</p>
<p><a href="http://sliderocket.com">SlideRocket</a> [via <a href="http://www.techcrunch.com/2008/03/19/sliderocket-presentation-web-app-enters-private-beta-get-your-invite-here-2/">TechCrunch</a>]</p>
<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong><p><strong>Related Posts:</strong><ul><li><a href="http://cybernetnews.com/googles-presentation-creator-presently-peaks-out/" rel="bookmark" title="Permanent Link: Google&#8217;s Presentation Creator, Presently, Peeks Out">Google&#8217;s Presentation Creator, Presently, Peeks Out</a></li><li><a href="http://cybernetnews.com/live-documents-is-another-office-2007-wannabe/" rel="bookmark" title="Permanent Link: Live Documents is Another Office 2007 Wannabe">Live Documents is Another Office 2007 Wannabe</a></li><li><a href="http://cybernetnews.com/add-zenter-to-the-list-of-google-acquisitions/" rel="bookmark" title="Permanent Link: Add Zenter to the List of Google Acquisitions">Add Zenter to the List of Google Acquisitions</a></li><li><a href="http://cybernetnews.com/acrobat-9-with-flash-and-acrobatcom-launch/" rel="bookmark" title="Permanent Link: Acrobat 9 (with Flash) and Acrobat.com Launch&#8230;">Acrobat 9 (with Flash) and Acrobat.com Launch&#8230;</a></li><li><a href="http://cybernetnews.com/google-presentations-misses-the-mark/" rel="bookmark" title="Permanent Link: Google Presentations Misses the Mark">Google Presentations Misses the Mark</a></li></ul></p>
<p><a href="http://feedads.g.doubleclick.net/~a/jv_IYtGn05j-MGXcSXWew1pvUHU/0/da"><img src="http://feedads.g.doubleclick.net/~a/jv_IYtGn05j-MGXcSXWew1pvUHU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/jv_IYtGn05j-MGXcSXWew1pvUHU/1/da"><img src="http://feedads.g.doubleclick.net/~a/jv_IYtGn05j-MGXcSXWew1pvUHU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/CyberNetClassics/~4/mEddp_VukjU" height="1" width="1"/>]]></content:encoded>
		<wfw:commentRss>http://cybernetnews.com/sliderocket-amazing-online-presentation-creator/feed/</wfw:commentRss>
			<feedburner:origLink>http://cybernetnews.com/sliderocket-amazing-online-presentation-creator/</feedburner:origLink></item>
		<item>
		<title>Dell 2405FPW 24″ Monitor For $879.99 At Costco</title>
		<link>http://feeds.cybernetnews.com/~r/CyberNetClassics/~3/CHxk4lLQIrM/</link>
		<comments>http://cybernetnews.com/dell-2405fpw-24-monitor-for-87999-at-costco/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 22:16:03 -0600</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Deals]]></category>

		<guid isPermaLink="false">http://www.cybernetnews.com/?p=241</guid>
		<description><![CDATA[<p><strong><u>This article was written on January 16, 2006 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p>
Costco currently has the Dell 2405FPW 24&#8243; Monitor For $879.99 and while this may not be the best deal around, it is so great because of Costco&#8217;s return policy:
If you have receipt and product (even if it&#8217;s damaged, dead pixels, leaking, etc) you can return it in 20 years (but realistically try to keep it [...]<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong>]]></description>
		<content:encoded><![CDATA[<p><strong><u>This article was written on January 16, 2006 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p><p><center><img src="http://cybernetnews.com/wp-content/uploads/2006/01/Dell2405FPW.jpg" alt="Dell 2405FPW 24 Inch Monitor For $879.99 At Costco" /></center></p>
<p><tag>Costco</tag> currently has the <tag>Dell</tag> <tag>2405FPW</tag> <tag>24&#8243; Monitor</tag> For $879.99 and while this may not be the best deal around, it is so great because of Costco&#8217;s return policy:</p>
<blockquote><p>If you have receipt and product (even if it&#8217;s damaged, dead pixels, leaking, etc) you can return it in 20 years (but realistically try to keep it to no more than 5)</p></blockquote>
<p>I have no way to confirm this policy because I have never used it before but someone mentioned this on <tag>SlickDeals</tag>. I am, however, a current owner of this 24&#8243; monitor and it would be hard not to have it now. I highly recommend it to anyone even considering it. This gives you the most screen space for your buck, where the <tag>Dell 30&#8243;</tag> monitor just gives you the most screen space!</p>
<p>News Source: <a href="http://forums.slickdeals.net/showthread.php?t=185195">SlickDeals</a><!--adsense--></p>
<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong><p><strong>Related Posts:</strong><ul><li><a href="http://cybernetnews.com/dell-offers-2405fpw-monitor-for-899/" rel="bookmark" title="Permanent Link: Dell Offers 2405FPW Monitor For $899">Dell Offers 2405FPW Monitor For $899</a></li><li><a href="http://cybernetnews.com/dell-2407wfp-monitor-for-sale-in-the-us/" rel="bookmark" title="Permanent Link: Dell 2407WFP Monitor For Sale In The U.S.">Dell 2407WFP Monitor For Sale In The U.S.</a></li><li><a href="http://cybernetnews.com/dell-ultrasharp-2405fpw-24-lcd-monitor-for-710/" rel="bookmark" title="Permanent Link: Dell UltraSharp 2405FPW 24&#8243; LCD Monitor For $710">Dell UltraSharp 2405FPW 24&#8243; LCD Monitor For $710</a></li><li><a href="http://cybernetnews.com/you-can-buy-your-dell-3007wfp-for-2199/" rel="bookmark" title="Permanent Link: You Can Buy Your Dell 3007WFP For $2,199">You Can Buy Your Dell 3007WFP For $2,199</a></li><li><a href="http://cybernetnews.com/dell-inches-closer-to-the-30-flat-panel-monitor-release/" rel="bookmark" title="Permanent Link: Dell Inches Closer To The 30&#8243; Flat Panel Monitor Release">Dell Inches Closer To The 30&#8243; Flat Panel Monitor Release</a></li></ul></p>
<p><a href="http://feedads.g.doubleclick.net/~a/y_m9ZQ-0DgU-1pqP5ps-fNhJPxo/0/da"><img src="http://feedads.g.doubleclick.net/~a/y_m9ZQ-0DgU-1pqP5ps-fNhJPxo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/y_m9ZQ-0DgU-1pqP5ps-fNhJPxo/1/da"><img src="http://feedads.g.doubleclick.net/~a/y_m9ZQ-0DgU-1pqP5ps-fNhJPxo/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/CyberNetClassics/~4/CHxk4lLQIrM" height="1" width="1"/>]]></content:encoded>
		<wfw:commentRss>http://cybernetnews.com/dell-2405fpw-24-monitor-for-87999-at-costco/feed/</wfw:commentRss>
			<feedburner:origLink>http://cybernetnews.com/dell-2405fpw-24-monitor-for-87999-at-costco/</feedburner:origLink></item>
		<item>
		<title>Yahoo Rewarding Users for Switching to Flickr</title>
		<link>http://feeds.cybernetnews.com/~r/CyberNetClassics/~3/KefVgYy1BLE/</link>
		<comments>http://cybernetnews.com/yahoo-rewarding-users-for-switching-to-flickr/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 13:49:05 -0600</pubDate>
		<dc:creator>Ashley</dc:creator>
				<category><![CDATA[Web Sites]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Photobucket]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://tech.cybernetnews.com/2007/06/19/yahoo-rewarding-users-for-switching-to-flickr/</guid>
		<description><![CDATA[<p><strong><u>This article was written on June 19, 2007 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p>Last week I mentioned that Yahoo Photos is closing, and that there are several alternatives for replacement services.&#160;If you choose one of&#160;Yahoo&#8217;s selected services,&#160;it&#8217;s a one-click migration&#160;process. There are five different services available as alternatives, and some of them are offering incentives if you select them.
Of course Flickr is owned by Yahoo, and so obviously&#160;they&#8217;d [...]<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong>]]></description>
		<content:encoded><![CDATA[<p><strong><u>This article was written on June 19, 2007 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p><p><img alt="Flickrlogo" hspace="5" src="http://cybernetnews.com/wp-content/uploads/2007/06/flickrlogo.jpg" align="right" border="0" />Last week I mentioned that <a href="http://cybernetnews.com/start-migrating-your-yahoo-photos/">Yahoo Photos is closing</a>, and that there are several alternatives for replacement services.&nbsp;If you choose one of&nbsp;Yahoo&rsquo;s selected services,&nbsp;it&rsquo;s a one-click migration&nbsp;process. There are five different services available as alternatives, and some of them are offering incentives if you select them.</p>
<p>Of course Flickr is owned by Yahoo, and so obviously&nbsp;they&rsquo;d like you to select their service.&nbsp;Radu, one of our readers, just switched from Yahoo Photos to a Flickr account and&nbsp;noticed that he had a Pro Account. After searching around for an explanation, he found this in his order history:</p>
<p><em><strong>&ldquo;June 17, 2007 &ndash; 3 months of Pro Account status fell from the sky on to You &nbsp;(a gift from Flickr to say thanks!) &ndash; $0.00.&rdquo;</strong></em></p>
<p>So there&rsquo;s your incentive for joining Flickr, a free Pro Account for three months which is usually priced at $24.95 per year.&nbsp; A regular account offers 100 MB monthly upload limit (5MB per photo), 3 sets, and Photostream views are limited to the 200 most recent images. Compare that with a Pro account where you have unlimited uploads, storage, bandwidth, photosets, and more.</p>
<p>For those of you who know that Flickr is not for you, here are incentives from the other services:</p>
<ul>
<li><strong>Shutterfly</strong>: Get a free 8&#215;8 inch photo book</li>
<li><strong>Kodak Gallery</strong>: Get 20 free 4&#215;6 inch prints</li>
<li><strong>Snapfish</strong>: Get 50 free 4&#215;6&ndash;inch prints</li>
</ul>
<p>If free prints is what you&rsquo;re looking for, Snapfish is the way to go! It appears as though Photobucket is the only one that doesn&rsquo;t have any kind of incentive for switching to their service. If by chance they are and I&rsquo;m just not aware of it, let us know in the comments so we can add it to the list.</p>
<p>Thanks for the tip <a href="http://www.cnet.ro/">Radu</a>!</p>
<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong><p><strong>Related Posts:</strong><ul><li><a href="http://cybernetnews.com/flickr-is-now-integrated-into-mybloglog/" rel="bookmark" title="Permanent Link: Flickr is now Integrated into MyBlogLog">Flickr is now Integrated into MyBlogLog</a></li><li><a href="http://cybernetnews.com/new-yahoo-photos-available-for-us-residents/" rel="bookmark" title="Permanent Link: New Yahoo Photos Available For U.S. Residents">New Yahoo Photos Available For U.S. Residents</a></li><li><a href="http://cybernetnews.com/flickr-video-finally-coming-in-april/" rel="bookmark" title="Permanent Link: Flickr Video Finally Coming in April?">Flickr Video Finally Coming in April?</a></li><li><a href="http://cybernetnews.com/flickr-users-respond-to-microsofts-bid/" rel="bookmark" title="Permanent Link: Flickr Users Respond to Microsoft&#8217;s Bid">Flickr Users Respond to Microsoft&#8217;s Bid</a></li><li><a href="http://cybernetnews.com/flickr-steps-up-the-competition-with-geotagging/" rel="bookmark" title="Permanent Link: Flickr Steps Up The Competition With Geotagging">Flickr Steps Up The Competition With Geotagging</a></li></ul></p>
<p><a href="http://feedads.g.doubleclick.net/~a/l5tyN7qqNRHw2rTwg0c1ez3rp_o/0/da"><img src="http://feedads.g.doubleclick.net/~a/l5tyN7qqNRHw2rTwg0c1ez3rp_o/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/l5tyN7qqNRHw2rTwg0c1ez3rp_o/1/da"><img src="http://feedads.g.doubleclick.net/~a/l5tyN7qqNRHw2rTwg0c1ez3rp_o/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/CyberNetClassics/~4/KefVgYy1BLE" height="1" width="1"/>]]></content:encoded>
		<wfw:commentRss>http://cybernetnews.com/yahoo-rewarding-users-for-switching-to-flickr/feed/</wfw:commentRss>
			<feedburner:origLink>http://cybernetnews.com/yahoo-rewarding-users-for-switching-to-flickr/</feedburner:origLink></item>
		<item>
		<title>Ping Pong Flash Game Overly Addicting</title>
		<link>http://feeds.cybernetnews.com/~r/CyberNetClassics/~3/ipmojczIkP8/</link>
		<comments>http://cybernetnews.com/ping-pong-flash-game-overly-addicting/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 05:38:39 -0600</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Web Sites]]></category>

		<guid isPermaLink="false">http://tech.cybernetnews.com/2006/11/07/ping-pong-flash-game-overly-addicting/</guid>
		<description><![CDATA[<p><strong><u>This article was written on November 07, 2006 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p> 
I was looking for a fun game to play on the Internet today when I stumbled upon this Flash-based ping pong game. It sounds like such a simple concept but I was surprised at how difficult it was for me to even score a single point. I have started to gain some skill but [...]<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong>]]></description>
		<content:encoded><![CDATA[<p><strong><u>This article was written on November 07, 2006 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p><p align="center"><img alt="Ping Pong" src="http://cybernetnews.com/wp-content/uploads/2006/11/PingPong.jpg"/> </p>
<p>I was looking for a fun game to play on the Internet today when I stumbled upon this Flash-based <a href="http://www.2downloads.de/files/onlinespiele/sport/kingpingpong.swf">ping pong game</a>. It sounds like such a simple concept but I was surprised at how difficult it was for me to even score a single point. I have started to gain some skill but I am yet to win a game. Once I do win I may actually be able to stop playing. <img src='http://cybernetnews.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong><p><strong>Related Posts:</strong><ul><li><a href="http://cybernetnews.com/several-fun-simple-and-addicting-online-games/" rel="bookmark" title="Permanent Link: Several Fun, Simple, And Addicting Online Games">Several Fun, Simple, And Addicting Online Games</a></li><li><a href="http://cybernetnews.com/want-another-online-game-motherload-is-the-bomb/" rel="bookmark" title="Permanent Link: Want Another Online Game? Motherload Is The Bomb!">Want Another Online Game? Motherload Is The Bomb!</a></li><li><a href="http://cybernetnews.com/cybernets-year-in-review-november-2006/" rel="bookmark" title="Permanent Link: CyberNet&#8217;s Year In Review: November 2006">CyberNet&#8217;s Year In Review: November 2006</a></li><li><a href="http://cybernetnews.com/cybernotes-fun-flash-games-for-friday/" rel="bookmark" title="Permanent Link: CyberNotes: Fun Flash Games For Friday!">CyberNotes: Fun Flash Games For Friday!</a></li><li><a href="http://cybernetnews.com/cybernotes-a-few-more-games-for-friday/" rel="bookmark" title="Permanent Link: CyberNotes: A Few More Games For Friday">CyberNotes: A Few More Games For Friday</a></li></ul></p>
<p><a href="http://feedads.g.doubleclick.net/~a/6aA3zrM5934PTd3piN10tW7XOuE/0/da"><img src="http://feedads.g.doubleclick.net/~a/6aA3zrM5934PTd3piN10tW7XOuE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/6aA3zrM5934PTd3piN10tW7XOuE/1/da"><img src="http://feedads.g.doubleclick.net/~a/6aA3zrM5934PTd3piN10tW7XOuE/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/CyberNetClassics/~4/ipmojczIkP8" height="1" width="1"/>]]></content:encoded>
		<wfw:commentRss>http://cybernetnews.com/ping-pong-flash-game-overly-addicting/feed/</wfw:commentRss>
			<feedburner:origLink>http://cybernetnews.com/ping-pong-flash-game-overly-addicting/</feedburner:origLink></item>
		<item>
		<title>Showcase Firefox Extension Makes Viewing Tabs Easy</title>
		<link>http://feeds.cybernetnews.com/~r/CyberNetClassics/~3/EbLER-UgjME/</link>
		<comments>http://cybernetnews.com/showcase-firefox-extension-makes-viewing-tabs-easy/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 21:33:53 -0600</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://tech.cybernetnews.com/2006/09/13/showcase-firefox-extension-makes-viewing-tabs-easy/</guid>
		<description><![CDATA[<p><strong><u>This article was written on September 13, 2006 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p> 
Firefox is great because of how easy it is to use the tabs and the extensibility that the browser has. The Firefox Showcase extension&#160;brings both of those great things together to give you a visual overview of all of your tabs. It has a whole slew of features such as:

Multiple view modes: single window, [...]<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong>]]></description>
		<content:encoded><![CDATA[<p><strong><u>This article was written on September 13, 2006 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p><p align="center"><img alt="Firefox Showcase" src="http://cybernetnews.com/wp-content/uploads/2006/09/FirefoxShowcase2.jpg"/> </p>
<p>Firefox is great because of how easy it is to use the tabs and the extensibility that the browser has. The <a href="https://addons.mozilla.org/firefox/1810/">Firefox Showcase extension</a>&nbsp;brings both of those great things together to give you a visual overview of all of your tabs. It has a whole slew of features such as:</p>
<ul>
<li>Multiple view modes: single window, tab, or sidebar (pictured below).</li>
<li>Find bar to filter thumbnails.</li>
<li>Easily select multiple thumbnails with Shift-Click or Ctrl-Click.</li>
<li>Customizable zooming when hovering over a thumbnail (pictured above).</li>
<li>A great configuration panel.</li>
<li>And Much More!</li>
</ul>
<p>I like being able to view all of the thumbnails in the sidebar without the need of opening another tab which is what other similar extensions do. The latest version that was just released yesterday has several improvements as well as Firefox 2 Beta 2 compatibility.</p>
<p>Here is a screenshot of the sidebar thumbnails:</p>
<p align="center"><img alt="Firefox Showcase" src="http://cybernetnews.com/wp-content/uploads/2006/09/FirefoxShowcase1.jpg"/></p>
<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong><p><strong>Related Posts:</strong><ul><li><a href="http://cybernetnews.com/you-age-so-shouldnt-your-firefox-tabs/" rel="bookmark" title="Permanent Link: You Age So Shouldn&#8217;t Your Firefox Tabs?">You Age So Shouldn&#8217;t Your Firefox Tabs?</a></li><li><a href="http://cybernetnews.com/amazing-add-an-xgl-like-effect-to-firefox-tabs-with-this-extension/" rel="bookmark" title="Permanent Link: Amazing: Add an XGL-Like Effect to Firefox Tabs with this Extension">Amazing: Add an XGL-Like Effect to Firefox Tabs with this Extension</a></li><li><a href="http://cybernetnews.com/must-have-undo-close-tab-extension-for-firefox/" rel="bookmark" title="Permanent Link: Must Have: Undo Close Tab Extension For Firefox">Must Have: Undo Close Tab Extension For Firefox</a></li><li><a href="http://cybernetnews.com/flip-3d-style-firefox-tab-switching/" rel="bookmark" title="Permanent Link: Flip-3D Style Firefox Tab Switching">Flip-3D Style Firefox Tab Switching</a></li><li><a href="http://cybernetnews.com/want-to-get-that-pesky-x-off-of-the-firefox-2-tabs/" rel="bookmark" title="Permanent Link: Want To Get That Pesky &#8216;X&#8217; Off Of The Firefox 2 Tabs?">Want To Get That Pesky &#8216;X&#8217; Off Of The Firefox 2 Tabs?</a></li></ul></p>
<p><a href="http://feedads.g.doubleclick.net/~a/4ztNcXiJUeiI9YteHwZ7f-gB3U8/0/da"><img src="http://feedads.g.doubleclick.net/~a/4ztNcXiJUeiI9YteHwZ7f-gB3U8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/4ztNcXiJUeiI9YteHwZ7f-gB3U8/1/da"><img src="http://feedads.g.doubleclick.net/~a/4ztNcXiJUeiI9YteHwZ7f-gB3U8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/CyberNetClassics/~4/EbLER-UgjME" height="1" width="1"/>]]></content:encoded>
		<wfw:commentRss>http://cybernetnews.com/showcase-firefox-extension-makes-viewing-tabs-easy/feed/</wfw:commentRss>
			<feedburner:origLink>http://cybernetnews.com/showcase-firefox-extension-makes-viewing-tabs-easy/</feedburner:origLink></item>
		<item>
		<title>My Logitech MX Revolution Mouse Review</title>
		<link>http://feeds.cybernetnews.com/~r/CyberNetClassics/~3/ZhQxShFaN7U/</link>
		<comments>http://cybernetnews.com/my-logitech-mx-revolution-mouse-review/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 13:21:52 -0600</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://tech.cybernetnews.com/2006/10/23/my-logitech-mx-revolution-mouse-review/</guid>
		<description><![CDATA[<p><strong><u>This article was written on October 23, 2006 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p> Over the weekend I decided to buy myself a Logitech MX Revolution mouse which was just recently released. Those of you who have heard of the mouse before have no doubt seen the steep price tag that goes along with it. Yep, this mouse retails for $100 but you can find it at most [...]<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong>]]></description>
		<content:encoded><![CDATA[<p><strong><u>This article was written on October 23, 2006 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p><p><img style="margin: 0px 0px 0px 10px" alt="Logitech MX Revolution" src="http://cybernetnews.com/wp-content/uploads/2006/10/LogitechMXRevolution.jpg" align="right"/> Over the weekend I decided to buy myself a <a href="http://www.logitech.com/index.cfm/products/details/US/EN,CRID=2135,CONTENTID=12134">Logitech MX Revolution</a> mouse which was just recently released. Those of you who have heard of the mouse before have no doubt seen the steep price tag that goes along with it. Yep, this mouse retails for $100 but you can find it at most places, like <a href="http://www.newegg.com/Product/Product.asp?Item=N82E16826104015">NewEgg</a>, for around $90.</p>
<p>I was strongly discouraged by the price as well but when I was rummaging around our local Best Buy electronics store I noticed they had one on display. I played around with it and was remarkably amazed at how well it fit my hand. Best Buy was offering a $10 gift card with the $100 mouse so I coughed out the money to make the purchase.</p>
<p>When I brought it home I was very impatient to give it a try but I did what every good person should do and let it fully charge. While waiting I thought I would <a href="http://www.logitech.com/index.cfm/downloads/software/US/EN,CRID=322,CONTENTID=12468">get the needed software</a> installed so that after the charging was complete it would be ready to go. I was infuriated to find out that the SetPoint program&nbsp;said it <strong>was not Vista compatible!</strong> The box and website both say that <strong>it is compatible with Windows Vista</strong> and I guess it is but you can&#8217;t use the software&#8230;which makes many of the cool features useless.</p>
<p>As everyone knows I am very much a software tester and love to try things that say they don&#8217;t work, so I went ahead and installed the software anyway. Turns out the software <strong>completely works with Windows Vista</strong> despite them saying that it doesn&#8217;t. The features are the most amazing that I have seen on any mouse.</p>
<p><span id="more-1805"></span>
<p>First-off, there are 7-buttons which are all&nbsp;completely customizable using the software that they provide. There are the standard back and forward buttons that are located on the side of the mouse but you&#8217;ll also notice the secondary scroll wheel located right below those. By default that is set to utilize the application switching program that is included with the SetPoint software. It lets you switch between open windows faster than anything I have ever used before by displaying a popup window located underneath the mouse cursor:</p>
<p align="center"><img alt="Document Flip" src="http://cybernetnews.com/wp-content/uploads/2006/10/DocumentFlip.jpg"/> </p>
<p>The top/main scroll button is also extraordinary in a different way. It doesn&#8217;t have the standard&nbsp;middle-click option set by default&nbsp;which is something that I never used anyway. Instead, if you push in on this scroll wheel it will switch modes between <em><strong>click-to-click</strong></em> and <em><strong>free-spin</strong></em>. The click-to-click is exactly what you&#8217;ll find on most mice where it partially rotates and then &#8220;clicks&#8221; into position. There is also the free-spin mode which lets you rotate the scroll wheel with nearly no friction (a.k.a. no clicking).</p>
<p align="center"><img alt="SetPoint Scroll wheel" src="http://cybernetnews.com/wp-content/uploads/2006/10/SetPointScroll.jpg"/> </p>
<p>The click-to-click is actually my favorite because it can be configured to automatically switch between the two modes. If I am just scrolling slowly it will use the click-to-click but if I start to go a little faster it will shift to the free-spin. Since I can manually switch between the modes it will also remember which mode I am in for each application. That way I can use free-spin in Microsoft Word but have the mouse set to click-to-click when using PowerPoint.</p>
<p>The button located below the top scroll wheel is used for searching by default. Just highlight a word in any application and press that button and it will perform a Yahoo (can also be configured to Google) search in your browser. This is one of those buttons that you don&#8217;t think you would use until you actually have it! If you end up not using it then just configure the button to do almost anything you would like:</p>
<p align="center"><img alt="SetPoint Button Configuration" src="http://cybernetnews.com/wp-content/uploads/2006/10/SetPointButtons.jpg"/> </p>
<p>As you can see in the screenshot above there is also the option to configure the buttons on an individual basis for programs. This comes in handy because in several of the&nbsp;applications I use the forward and back buttons&nbsp;are typically useless, such as in Mozilla Thunderbird. For that program I set the Forward button to create a new email and the back button to delete the currently selected email, which are both done using keystroke assignments.</p>
<p>The mouse is also rechargeable so you don&#8217;t have to worry about going through the batteries like water. Judging by the power meter I should receive 4 days of use on a single charge&#8230;which is good in my book.</p>
<p>I&#8217;m not sure how this will stack up for the gamers out there because I don&#8217;t really play games. There are several settings in the options though that are related only to game configurations: </p>
<p align="center"><img alt="SetPoint Games" src="http://cybernetnews.com/wp-content/uploads/2006/10/SetPointGame.jpg"/> </p>
<p>I understand that you might be skeptical about purchasing a mouse that costs $100 because I was too, but it is one of the best investments that I have made when it comes to computer add-ons. The charging station is separate from the USB receiver which is actually really nice because the wireless receiver is half the size of a typical flash drive&#8230;making it portable enough for me to use with my laptop as well as my desktop. So if you have enough money laying around I would highly recommend picking up this mouse.</p>
<p><em>Note: The Logitech MX Revolution is also compatible with Mac OS X but I only have Windows machines so I was unable to test the mouse with it.</em></p>
<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong><p><strong>Related Posts:</strong><ul><li><a href="http://cybernetnews.com/logitech-setpoint-software-updated-with-flip-3d/" rel="bookmark" title="Permanent Link: Logitech SetPoint Software Updated with Flip-3D">Logitech SetPoint Software Updated with Flip-3D</a></li><li><a href="http://cybernetnews.com/logitech-mx-air-the-most-expensive-mouse/" rel="bookmark" title="Permanent Link: Logitech MX Air the Most Expensive Mouse?">Logitech MX Air the Most Expensive Mouse?</a></li><li><a href="http://cybernetnews.com/2007-cybernet-awards-best-customer-service/" rel="bookmark" title="Permanent Link: 2007 CyberNet Awards: Best Customer Service">2007 CyberNet Awards: Best Customer Service</a></li><li><a href="http://cybernetnews.com/mouse-pointer-speed-resets-on-startup/" rel="bookmark" title="Permanent Link: Mouse Pointer Speed Resets on Startup">Mouse Pointer Speed Resets on Startup</a></li><li><a href="http://cybernetnews.com/skypes-popularity-results-in-skype-accessories/" rel="bookmark" title="Permanent Link: Skype&#8217;s Popularity Results In Skype &quot;Accessories&quot;">Skype&#8217;s Popularity Results In Skype &quot;Accessories&quot;</a></li></ul></p>
<p><a href="http://feedads.g.doubleclick.net/~a/LF77E9TT_wqCxMYzCVpEMPSakrQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/LF77E9TT_wqCxMYzCVpEMPSakrQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/LF77E9TT_wqCxMYzCVpEMPSakrQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/LF77E9TT_wqCxMYzCVpEMPSakrQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/CyberNetClassics/~4/ZhQxShFaN7U" height="1" width="1"/>]]></content:encoded>
		<wfw:commentRss>http://cybernetnews.com/my-logitech-mx-revolution-mouse-review/feed/</wfw:commentRss>
			<feedburner:origLink>http://cybernetnews.com/my-logitech-mx-revolution-mouse-review/</feedburner:origLink></item>
		<item>
		<title>Vista Transformation Pack 6 for Windows XP/2003 Released…Wow!</title>
		<link>http://feeds.cybernetnews.com/~r/CyberNetClassics/~3/b9uQcgRXyRI/</link>
		<comments>http://cybernetnews.com/vista-transformation-pack-6-for-windows-xp2003-releasedwow/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 04:57:01 -0600</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Newly Released]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Customize]]></category>
		<category><![CDATA[Mod]]></category>
		<category><![CDATA[Tweaks]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://tech.cybernetnews.com/2006/12/26/vista-transformation-pack-6-for-windows-xp2003-releasedwow/</guid>
		<description><![CDATA[<p><strong><u>This article was written on December 26, 2006 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p> 
What a Christmas present this was! Vista Transformation Pack 6 was just released yesterday with all kinds of new goodies including 3rd-party applications for providing features like Taskbar thumbnail previews and a remarkable sidebar just like Vista&#8217;s. In case you are unfamiliar with this application I will forewarn you that there is a tendency [...]<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong>]]></description>
		<content:encoded><![CDATA[<p><strong><u>This article was written on December 26, 2006 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p><p align="center"><img alt="Vista Transformation Pack 6" src="http://cybernetnews.com/wp-content/uploads/2006/12/VistaTransformationPack6.jpg"/> </p>
<p>What a Christmas present this was! <a href="http://www.windowsxlive.net/?p=361">Vista Transformation Pack 6 was just released yesterday</a> with all kinds of new goodies including 3rd-party applications for providing features like Taskbar thumbnail previews and a remarkable sidebar just like Vista&#8217;s. In case you are unfamiliar with this application I will forewarn you that there is a tendency for it not to uninstall all the way in case you decide that you don&#8217;t like it. I think most of the time the problem lies within replacing the icons with the old Windows XP ones, but I have personally never had issues.</p>
<p>With that being said I want to give credit to &#8220;<a href="http://www.windowsxlive.net">Windows X</a>&#8221; for making this release better than all previous versions. After installing the Vista Transformation Pack you&#8217;ll notice that all of the following have been changed to appear more like Vista:</p>
<ul>
<li>Boot screen  </li>
<li>Welcome Screen / Logon Screen  </li>
<li>New msstyles files (visual styles)  </li>
<li>New desktop and file icons  </li>
<li>New toolbar icons  </li>
<li>Progress Dialogs  </li>
<li>Sounds scheme  </li>
<li>System Tray icons  </li>
<li>New Wallpapers  </li>
<li>Windows Media Player Skins</li>
</ul>
<p>&nbsp;Besides for bug fixes, here is a list of what&#8217;s new in version 6:</p>
<ul>
<li>Additional Vista related applications:
<ul>
<li>Vista Sidebar </li>
<li>VisualTooltip (Taskbar thumbnail view and also have docking mode) </li>
<li>Styler with Kaye Ireneâ€™s Vista Perfection X4 Styler Toolbar </li>
<li>Start Orb (fix cutting edge start orb in msstyles) </li>
<li>Vista Live Messenger RC skin</li>
</ul>
</li>
<li>Applying Vista setup screen transformation in setup integration </li>
<li>Browsable System files source for uninstallation so user can restore original system files from setup CD during uninstallation </li>
<li>Display configuration for the best view of machineâ€™s display </li>
<li>Fixing fileâ€™s PE checksum after resource patching to keep files more secure </li>
<li>Launch &amp; Maintenance Center in transformation destination in case user already have transformed the system </li>
<li>Partially x64 support for Vista visual stuff but not for system files (experimental) </li>
<li>Option to reserved updated system files after uninstallation or not </li>
<li>Skipping system file verification patch on setup integration </li>
<li>Vista RTM system applications transformation:
<ul>
<li>Photo printing wizard </li>
<li>Remote Desktop Connection </li>
<li>Volume Control </li>
<li>Windows Task Manager </li>
<li>System Restore </li>
<li>Connection Manager </li>
<li>Windows Update Client </li>
<li>Media Center</li>
</ul>
</li>
</ul>
<p>Those of you attempting to upgrade from a previous version of Vista Transformation Pack shouldn&#8217;t have a problem, but if you do please mention it in the comments so others know what to expect. This application&nbsp;is so close to Vista&nbsp;that I bet you could trick 99% of the population that don&#8217;t have hands-on experience with Vista. So if you are looking to give your XP machine a fresh new look you should check out the new Vista Transformation Pack 6!</p>
<p><a href="http://www.windowsxlive.net/?page_id=15">View Larger Screenshots</a></p>
<p><a href="http://fileho.com/download/52313c852638/vtp6.zip.html">Download FAST from FileHo</a> (I setup this mirror because their mirrors were going slow)<br />Download from <a href="http://www.sendspace.com/file/vksa8k">SendSpace</a>, <a href="http://www.savefile.com/files/365377">SaveFile</a>, or <a href="http://www.softvisia.com/download.php?view.756">SoftVisia</a>.</p>
<p><a href="http://www.jcxp.net/forums/index.php?showtopic=13415">Discussion at JCXP.net</a></p>
<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong><p><strong>Related Posts:</strong><ul><li><a href="http://cybernetnews.com/vista-transformation-pack-55-released/" rel="bookmark" title="Permanent Link: Vista Transformation Pack 5.5 Released">Vista Transformation Pack 5.5 Released</a></li><li><a href="http://cybernetnews.com/new-vista-transformation-pack-5-available/" rel="bookmark" title="Permanent Link: New Vista Transformation Pack 5 Available">New Vista Transformation Pack 5 Available</a></li><li><a href="http://cybernetnews.com/vista-transformation-pack-6-rc1-released/" rel="bookmark" title="Permanent Link: Vista Transformation Pack 6 RC1 Released">Vista Transformation Pack 6 RC1 Released</a></li><li><a href="http://cybernetnews.com/get-the-vista-start-menu-in-xp-public-beta/" rel="bookmark" title="Permanent Link: Get the Vista Start Menu in XP (Public Beta)">Get the Vista Start Menu in XP (Public Beta)</a></li><li><a href="http://cybernetnews.com/vista-transformation-pack-60-planned-for-december/" rel="bookmark" title="Permanent Link: Vista Transformation Pack 6.0 Planned For December">Vista Transformation Pack 6.0 Planned For December</a></li></ul></p>
<p><a href="http://feedads.g.doubleclick.net/~a/q4cfSdw8CAZUYSgwBx2dK1xaKnI/0/da"><img src="http://feedads.g.doubleclick.net/~a/q4cfSdw8CAZUYSgwBx2dK1xaKnI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/q4cfSdw8CAZUYSgwBx2dK1xaKnI/1/da"><img src="http://feedads.g.doubleclick.net/~a/q4cfSdw8CAZUYSgwBx2dK1xaKnI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/CyberNetClassics/~4/b9uQcgRXyRI" height="1" width="1"/>]]></content:encoded>
		<wfw:commentRss>http://cybernetnews.com/vista-transformation-pack-6-for-windows-xp2003-releasedwow/feed/</wfw:commentRss>
			<feedburner:origLink>http://cybernetnews.com/vista-transformation-pack-6-for-windows-xp2003-releasedwow/</feedburner:origLink></item>
		<item>
		<title>CyberNotes: mynoteIt.com Helps Keep College Students Organized</title>
		<link>http://feeds.cybernetnews.com/~r/CyberNetClassics/~3/0SJUxjfkF58/</link>
		<comments>http://cybernetnews.com/mynoteitcom-helps-keep-college-students-organized/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 20:25:56 -0600</pubDate>
		<dc:creator>Ashley</dc:creator>
				<category><![CDATA[CyberNotes]]></category>
		<category><![CDATA[Web Sites]]></category>

		<guid isPermaLink="false">http://tech.cybernetnews.com/2006/08/25/mynoteitcom-helps-keep-college-students-organized/</guid>
		<description><![CDATA[<p><strong><u>This article was written on August 25, 2006 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p>Free For All Friday
 
With a new semester of college underway, many students will be looking for a way to organize themselves whether it be with their class notes or assignments. Simply keeping track of notes and assignments can be quite the task, especially&#160;when&#160;students are distracted multiple times throughout the day&#160;with social sites like&#160;MySpace or [...]<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong>]]></description>
		<content:encoded><![CDATA[<p><strong><u>This article was written on August 25, 2006 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p><p align="center"><a href="http://cybernetnews.com/category/cybernotes/"><img alt="CyberNotes" src="http://cybernetnews.com/wp-content/uploads/2006/06/CyberNotes.gif"/></a><br /><strong>Free For All Friday</strong></p>
<p><img src="http://cybernetnews.com/wp-content/uploads/2006/08/noteit.jpg" align="right"/> </p>
<p>With a new semester of college underway, many students will be looking for a way to organize themselves whether it be with their class notes or assignments. Simply keeping track of notes and assignments can be quite the task, especially&nbsp;when&nbsp;students are distracted multiple times throughout the day&nbsp;with social sites like&nbsp;<a href="http://www.myspace.com">MySpace</a> or <a href="http://www.facebook.com">Facebook</a>.&nbsp; I&#8217;m guilty of using both, and at times they are addicting and can keep me from staying on task. &nbsp;One site that was brought to my attention called <a href="http://www.mynoteit.com">mynoteIT.com</a> has lots of tools&nbsp;that college students would be looking for to keep themselves organized.</p>
<p><img src="http://cybernetnews.com/wp-content/uploads/2006/08/noteit1.jpg"/> &nbsp;</p>
<p>mynoteIT.com&nbsp;is a fairly new site in beta that is easy to use, and best of all, free! Afterall, what college student has money&nbsp;they&#8217;re willing to&nbsp;fork out&nbsp;for the sake of organization? &nbsp;In an email we received from Alex Weidmann, one of the developers, he says &#8220;[mynoteIt] was created and developed by two college students who are just trying to make school a little easier for everybody.&#8221; That&#8217;s the first plus&#8211; college students designing something FOR college students, you can&#8217;t go wrong there! They update their <a href="http://mynoteit.com/blog/index.php">blog</a>&nbsp;regularly with notes&nbsp;and updates to the site. What is mynoteIt all about? Here are <em>some</em> of the features (this list is not exhaustive):</p>
<p> <span id="more-1387"></span>
<p><strong>&#8211;Workspace Utilities&#8211;</strong></p>
<p>This feature certainly would have been helpful for me last semester while I struggled my way through Spanish class. Many colleges and universities require&nbsp;students to take a foreign language whether they want to or not. And of course, many struggle or barely make it through.&nbsp; With workspace utilities, you&#8217;re able to look up and translate words, even sentences between languages. This can be done while you&#8217;re taking class notes and would definitely help the struggling foreign language student.</p>
<p><strong>&#8211;Share notes with friends&#8211; </strong></p>
<p>There are a multitude of reasons why students miss (or shall I say skip?) class. And of course after the fact, you can find them scrambling to get a friend to email class notes or visa versa&#8211; you&#8217;re the one your friends are coming to after they&#8217;ve skipped class because they know you take good notes. Regardless of the situation, sharing notes with friends is made easy. You have the option when you&#8217;re taking notes to make them private or public.&nbsp; And then when you&#8217;re wanting to share them with friends, you&#8217;re able to email them, send them through mynoteIt, or give them a direct link to the notes. </p>
<p>According to their <a href="http://mynoteit.com/blog/Aug/2006/13/A_few_quick_features">blog entry</a> on August 15th, they&#8217;ve added the ability to tag your notes which also means you&#8217;re able to search for notes by tags. Just think about the possibilities with that!&nbsp;They also have a comment system so that users are able to comment and leave feedback on your notes&#8211; this could potentially be beneficial to you and those who view your notes.</p>
<p><strong>&#8211;mynoteIT search&#8211;</strong></p>
<p>The search feature makes it possible to search your notes or community notes.&nbsp; For now, it is probably best to search your own notes until more users start using the service.&nbsp; I did a community search on &#8220;computer programming&#8221; with no results. As more users add content, the community search feature could become a useful tool for writing papers, researching, etc. </p>
<p><strong>&#8211;Auto-save notes&#8211;</strong></p>
<p>Worried about losing all of your notes? mynoteIT.com uses a WYSIWYG note editor that will save your work every 10 seconds. This leaves you with no room or reason to worry about what happens to your work when your browser crashes. Occasionally that does happen and normally it does so when you least expect it.</p>
<p><strong>&#8211;Upcoming assignment reminder&#8211;</strong></p>
<p>After setting up an account, I spent a few minutes playing around with the site and some of the features. With the upcoming assignment reminder, you&#8217;ll be emailed when you have an assignment due in the next week.&nbsp; Additionally, if you are involved in groups, the group activity feature will track the activity and email you when/if there are updates. The reminder feature&nbsp;ought to keep you from being that unreliable group member that always forgets to show up for group meetings!</p>
<p><strong>&#8211;mynoteIT Groups&#8211;</strong></p>
<p>I don&#8217;t know about you, but in previous semesters I&#8217;ve been bombarded with group projects. When you have multiple groups you&#8217;re working with, sometimes it&#8217;s hard to keep track of where to meet and when and with who, and then of course communicating about the project when you&#8217;re not at school can be a nightmare. That&#8217;s why I like the group feature where you can add all of your group members and send messages to them. Another option within the groups is to share a calendar with important group dates on it.&nbsp;</p>
<p><strong>&#8211;A few additional things&#8211;</strong></p>
<p>As of August 10th, they&#8217;ve redesigned their grade tracking program. While I was not familiar with their previous version, the new version is said to make things a bit easier. You&#8217;re able to enter in the scores you received, and the grade tracker will tell you what grade you have for each class. On your&nbsp; mynoteIt homepage, there is a &#8220;to-do&#8221; list to help keep yourself organized and on track. It&#8217;s easy to add an additional item to the list with a click. </p>
<p>One thing that might be a useful addition would be a graphic of your schedule of classes.&nbsp; I always like to visually see what chunks of my day&nbsp;are blocked out from classes so I know when I can schedule a group meeting or&nbsp;when I have free time, etc.</p>
<p>All in all mynoteIt.com&nbsp; is&nbsp;a very useful site for any college student.&nbsp; Again, as mentioned, the list of features I covered is not exhaustive. There are lots of things to play around and you <strong>don&#8217;t</strong> even have to register in order to <a href="http://mynoteit.com/triallogin.php">try it</a>. They haven&#8217;t been around for too long and are clearly growing. Once students utilize the note feature, searching notes from other members would be pretty useful. If you&#8217;re a student and you need some help with organization, check it out and let the team of developers know what you liked and what you want&nbsp;to see. I know they&#8217;re <a href="http://www.mynoteit.com/contact.php">open to any suggestions</a>!</p>
<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong><p><strong>Related Posts:</strong><ul><li><a href="http://cybernetnews.com/cybernotes-your-week-in-review-with-sundays-summary-5/" rel="bookmark" title="Permanent Link: CyberNotes: Your Week In Review With Sunday&#8217;s Summary">CyberNotes: Your Week In Review With Sunday&#8217;s Summary</a></li><li><a href="http://cybernetnews.com/riaa-creates-website-for-college-students-to-settle/" rel="bookmark" title="Permanent Link: RIAA Creates Website for College Students to Settle">RIAA Creates Website for College Students to Settle</a></li><li><a href="http://cybernetnews.com/riaa-says-students-must-pay-3000-to-settle/" rel="bookmark" title="Permanent Link: RIAA Says Students Must pay $3,000 to Settle">RIAA Says Students Must pay $3,000 to Settle</a></li><li><a href="http://cybernetnews.com/get-college-credit-for-watching-youtube/" rel="bookmark" title="Permanent Link: Get College Credit for Watching YouTube">Get College Credit for Watching YouTube</a></li><li><a href="http://cybernetnews.com/microsoft-office-2007-for-59-the-ultimate-steal/" rel="bookmark" title="Permanent Link: Microsoft Office 2007 for $59 &#8211; &quot;The Ultimate Steal&quot;">Microsoft Office 2007 for $59 &#8211; &quot;The Ultimate Steal&quot;</a></li></ul></p>
<p><a href="http://feedads.g.doubleclick.net/~a/roqop_bmft-C55oXmHoba7rHNlU/0/da"><img src="http://feedads.g.doubleclick.net/~a/roqop_bmft-C55oXmHoba7rHNlU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/roqop_bmft-C55oXmHoba7rHNlU/1/da"><img src="http://feedads.g.doubleclick.net/~a/roqop_bmft-C55oXmHoba7rHNlU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/CyberNetClassics/~4/0SJUxjfkF58" height="1" width="1"/>]]></content:encoded>
		<wfw:commentRss>http://cybernetnews.com/mynoteitcom-helps-keep-college-students-organized/feed/</wfw:commentRss>
			<feedburner:origLink>http://cybernetnews.com/mynoteitcom-helps-keep-college-students-organized/</feedburner:origLink></item>
		<item>
		<title>A Great High-Tech Pedometer – Omron HJ-720ITC</title>
		<link>http://feeds.cybernetnews.com/~r/CyberNetClassics/~3/4qb6yq8YDSg/</link>
		<comments>http://cybernetnews.com/a-great-high-tech-pedometer-omron-hj-720itc/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 12:22:03 -0600</pubDate>
		<dc:creator>Ashley</dc:creator>
				<category><![CDATA[Gadgets]]></category>

		<guid isPermaLink="false">http://cybernetnews.com/2007/09/29/a-great-high-tech-pedometer-omron-hj-720itc/</guid>
		<description><![CDATA[<p><strong><u>This article was written on September 29, 2007 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p>Earlier this week, Matt Cutts wrote about his favorite pedometer, the Omron HJ-720ITC.&#160; When he mentioned that it has a USB connector and comes with software so you can upload and track your data on a computer, I thought it was worth checking out. It didn&#8217;t sound like any ordinary pedometer to me, and sure [...]<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong>]]></description>
		<content:encoded><![CDATA[<p><strong><u>This article was written on September 29, 2007 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p><p>Earlier this week, <a href="http://www.mattcutts.com/blog/my-favorite-pedometer-omron-hj-720itc/">Matt Cutts wrote about his favorite pedometer</a>, the <a href="http://www.omronhealthcare.com/enTouchCMS/app/viewDocument?docID=3900">Omron HJ-720ITC</a>.&nbsp; When he mentioned that it has a USB connector and comes with software so you can upload and track your data on a computer, I thought it was worth checking out. It didn&#8217;t sound like any ordinary pedometer to me, and sure enough, it&#8217;s not. This pedometer is the ultimate fitness gadget for geek&#8217;s, because after all, not all geek&#8217;s sit in front of the computer or play video games all day!</p>
<p>The biggest thing that sets the Omron HJ-720ITC apart from other pedometers is the Omron Health Management Software that comes with it. It&#8217;ll work great on Windows 2000 or XP (No Mac, Windows Vista, or Linux) and provides you with a visual graph of the total steps you&#8217;ve taken, the aerobic steps you&#8217;re taken, and a walking report. This software will help you keep track of your progress over time. The image below shows what the interface looks like:</p>
<p align="center"><img height="406" alt="pedometer" src="http://cybernetnews.com/wp-content/uploads/2007/09/pedometer.jpg" width="550" border="0"> </p>
<p>&nbsp;</p>
<p>Another great thing about this pedometer is that you don&#8217;t have to clip it to your belt! You can either attach it to your belt, a pocket, or even a bag. Other features include:</p>
<ul>
<li>Measures steps, aerobic steps and minutes, calories, and distance</li>
<li>Display a 7 day history</li>
<li>Keeps a 42 day history in memory</li>
</ul>
<p>For only <a href="http://www.amazon.com/Omron-HJ-720ITC-Pedometer-Advanced-Management/dp/B000MN92WM/ref=pd_bbs_sr_1/102-1911083-1127347?ie=UTF8&amp;s=hpc&amp;qid=1191007798&amp;sr=8-1">$33 bucks at Amazon</a>, I&#8217;d say this is a great deal!</p>
<p>Matt pointed out a few other things in his article such as this suggestion for Omron: &#8220;Make the pedometer look like a little flash drive, and create a special text document on the pseudo-drive with the user&#8217;s step data.&nbsp; Then anyone could read their data, regardless of the type of computer they used.&#8221; Wouldn&#8217;t that be nice?</p>
<p><strong>Now, we know all of you don&#8217;t sit in front of your computers 24 hours a day, so what do you do in your free time to stay active?</strong></p>
<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong><p><strong>Related Posts:</strong><ul><li><a href="http://cybernetnews.com/something-new-at-cybernet-news/" rel="bookmark" title="Permanent Link: Something New at CyberNet News!">Something New at CyberNet News!</a></li><li><a href="http://cybernetnews.com/cingular-announces-new-video-service-for-cell-phones/" rel="bookmark" title="Permanent Link: Cingular Announces New Video Service For Cell Phones">Cingular Announces New Video Service For Cell Phones</a></li><li><a href="http://cybernetnews.com/yahoo-tech-launched-in-hopes-to-compete-with-cnet/" rel="bookmark" title="Permanent Link: Yahoo Tech Launched In Hopes To Compete With CNet">Yahoo Tech Launched In Hopes To Compete With CNet</a></li><li><a href="http://cybernetnews.com/skype-introduces-high-quality-video-calling/" rel="bookmark" title="Permanent Link: Skype Introduces High Quality Video Calling">Skype Introduces High Quality Video Calling</a></li><li><a href="http://cybernetnews.com/neweggcom-starts-eggxpert-site-for-community-discussion/" rel="bookmark" title="Permanent Link: Newegg.com starts &#8220;Eggxpert&#8221; Site for Community Discussion">Newegg.com starts &#8220;Eggxpert&#8221; Site for Community Discussion</a></li></ul></p>
<p><a href="http://feedads.g.doubleclick.net/~a/eTbhSP_fvDrB2M8P0iFVeCnlqOw/0/da"><img src="http://feedads.g.doubleclick.net/~a/eTbhSP_fvDrB2M8P0iFVeCnlqOw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/eTbhSP_fvDrB2M8P0iFVeCnlqOw/1/da"><img src="http://feedads.g.doubleclick.net/~a/eTbhSP_fvDrB2M8P0iFVeCnlqOw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/CyberNetClassics/~4/4qb6yq8YDSg" height="1" width="1"/>]]></content:encoded>
		<wfw:commentRss>http://cybernetnews.com/a-great-high-tech-pedometer-omron-hj-720itc/feed/</wfw:commentRss>
			<feedburner:origLink>http://cybernetnews.com/a-great-high-tech-pedometer-omron-hj-720itc/</feedburner:origLink></item>
		<item>
		<title>The Wii-mote More Than 10-Years In The Making?</title>
		<link>http://feeds.cybernetnews.com/~r/CyberNetClassics/~3/56rpe9MWLcw/</link>
		<comments>http://cybernetnews.com/the-wii-mote-more-than-10-years-in-the-making/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 04:09:41 -0600</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Nintendo]]></category>

		<guid isPermaLink="false">http://tech.cybernetnews.com/2006/12/19/the-wii-mote-more-than-10-years-in-the-making/</guid>
		<description><![CDATA[<p><strong><u>This article was written on December 19, 2006 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p> 
I was flipping through some of the Digg upcoming stories when I saw one that referenced a patent for the Wii-mote (Nintendo Wii controller) that was filed back in 1993. It really caught my attention so I pulled up the Google Patent page that it linked to so that I could see for myself [...]<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong>]]></description>
		<content:encoded><![CDATA[<p><strong><u>This article was written on December 19, 2006 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p><p align="center"><img alt="Wii-mote" src="http://cybernetnews.com/wp-content/uploads/2006/12/WiiMotePatent.jpg"/> </p>
<p>I was flipping through some of the Digg upcoming stories <a href="http://digg.com/gadgets/Patent_for_Wii_mote_technology_filed_back_in_1993">when I saw one</a> that referenced a patent for the Wii-mote (Nintendo Wii controller) that was filed back in 1993. It really caught my attention so I pulled up the <a href="http://www.google.com/patents?vid=USPAT5435573">Google Patent page that it linked to</a> so that I could see for myself what the buzz was about. The item being patented is pictured above and this is the description of the unit:</p>
<blockquote><p>A wireless remote control system is provided. The remote control system includes a remote unit and a receiver unit, and <strong>may be utilized in connection with a video game system or other controllable system</strong>. The receiver unit includes a plurality of detectors for detecting a signal transmitted by a remote unit. An angle-limiting device is coupled to each detector for limiting the signal which may be received by the particular detector to that signal which is transmitted from a particular location. In one embodiment, the angle-limiting device may limit the signal received by the detector to that signal transmitted from within a specified angular range relative to the detector. In a preferred embodiment, the angle-limiting devices coupled to the plurality of detectors may be arranged so that each angle-limiting device allows a signal to be received by the respective detector from a unique angular region. In another embodiment, the angular regions may be overlapping.</p>
</blockquote>
<p>That sounds pretty close to the Wii-mote to me, and then in the claims it goes into further details saying:</p>
<blockquote><p>14. The remote control system receiver according to claim 1, wherein said controllable device is a video game.</p>
<p>15. The remote control system receiver according to claim 1, wherein <strong>said controllable device is a Nintendo Entertainment System</strong>.</p>
</blockquote>
<p>Ahh, don&#8217;t you just love the jibber jabber language that makes up these patents. It&#8217;s like they try to word it in such a way that it doesn&#8217;t even make sense except to themselves.</p>
<p>I&#8217;m wondering if this is really the patent for the Wii-mote or if it is just something similar that was once invented.&nbsp;If Nintendo really did use this then the inventor, Howerd Oakford, has surely got to be filthy rich by now. Well, maybe he will donate some of the money to the <a href="http://wiihaveaproblem.com/readerfav.php">people who have been injured by the Wii</a>&nbsp;(because of carelessness).</p>
<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong><p><strong>Related Posts:</strong><ul><li><a href="http://cybernetnews.com/after-nearly-3-years-techmeme-adds-search-feature/" rel="bookmark" title="Permanent Link: After Nearly 3 Years, Techmeme Adds Search Feature">After Nearly 3 Years, Techmeme Adds Search Feature</a></li><li><a href="http://cybernetnews.com/wine-10-release-date-after-15-years-in-the-making/" rel="bookmark" title="Permanent Link: Wine 1.0 Release Date&#8230; After 15 Years in the Making">Wine 1.0 Release Date&#8230; After 15 Years in the Making</a></li><li><a href="http://cybernetnews.com/a-history-of-windows-presented-by-microsoft/" rel="bookmark" title="Permanent Link: A History Of Windows Presented By Microsoft">A History Of Windows Presented By Microsoft</a></li><li><a href="http://cybernetnews.com/how-have-your-email-habits-changed-over-time/" rel="bookmark" title="Permanent Link: How Have Your Email Habits Changed Over Time?">How Have Your Email Habits Changed Over Time?</a></li><li><a href="http://cybernetnews.com/intels-big-move-is-now-in-the-making/" rel="bookmark" title="Permanent Link: Intel&#8217;s Big Move Is Now In The Making">Intel&#8217;s Big Move Is Now In The Making</a></li></ul></p>
<p><a href="http://feedads.g.doubleclick.net/~a/Sho53f-AKYhWDux81aG2fj9vwfE/0/da"><img src="http://feedads.g.doubleclick.net/~a/Sho53f-AKYhWDux81aG2fj9vwfE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Sho53f-AKYhWDux81aG2fj9vwfE/1/da"><img src="http://feedads.g.doubleclick.net/~a/Sho53f-AKYhWDux81aG2fj9vwfE/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/CyberNetClassics/~4/56rpe9MWLcw" height="1" width="1"/>]]></content:encoded>
		<wfw:commentRss>http://cybernetnews.com/the-wii-mote-more-than-10-years-in-the-making/feed/</wfw:commentRss>
			<feedburner:origLink>http://cybernetnews.com/the-wii-mote-more-than-10-years-in-the-making/</feedburner:origLink></item>
		<item>
		<title>New Experimental Features with Gmail Labs</title>
		<link>http://feeds.cybernetnews.com/~r/CyberNetClassics/~3/zk6-2Bxcfgg/</link>
		<comments>http://cybernetnews.com/new-experimental-features-with-gmail-labs/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 19:48:30 -0600</pubDate>
		<dc:creator>Ashley</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Features]]></category>
		<category><![CDATA[Gmail]]></category>

		<guid isPermaLink="false">http://cybernetnews.com/?p=12993</guid>
		<description><![CDATA[<p><strong><u>This article was written on June 06, 2008 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p>Google has decided to take a few risks with Gmail by introducing Gmail labs. They say that they receive a lot of ideas for Gmail from both users and employees at Google, but they don&#8217;t always have the time to develop and implement them all. For this reason they started Gmail Labs which they say, [...]<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong>]]></description>
		<content:encoded><![CDATA[<p><strong><u>This article was written on June 06, 2008 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p><p><img src="http://cybernetnews.com/wp-content/uploads/2008/06/gmail-labs-1.jpg" width="230" height="415" alt="gmail labs-1.png" style="float:right; margin-bottom:5px; margin-left:5px;" />Google has decided to take a few risks with Gmail by <a href="http://gmailblog.blogspot.com/2008/06/introducing-gmail-labs.html">introducing Gmail labs</a>. They say that they receive a lot of ideas for Gmail from both users and employees at Google, but they don&#8217;t always have the time to develop and implement them all. For this reason they started Gmail Labs which they say, &#8220;is a way for us to take lots of the ideas we wouldn&#8217;t normally pick and let you all decide whether they&#8217;re good or not.</p>
<p>For now it&#8217;s just offered in standard Gmail, and not for those using Google Apps. That&#8217;s not to say that they won&#8217;t offer this feature in the future for Google Apps users though. We could easily see this turning into something like iGoogle where everyday users, not just Google employees, will be able to submit their own work which would be great.</p>
<p>At this point, the Google Labs feature is available to those in the United States and the United Kingdom. You&#8217;ll know if you have it by logging into Gmail and clicking on the Settings tab. If you see a section at the far right labeled &#8220;Labs,&#8221; you have it. Just click on it to browse through the features that have already been made.</p>
<p>Of course you can <a href="http://mail.google.com/mail/#settings/labs">view all of the different new features here</a>, but we&#8217;ll quickly run through them so you can get an idea of what&#8217;s available:</p>
<ul>
<li><strong>Quick Links</strong>: Adds a box to the left column that gives you 1-click access to any bookmarkable URL in Gmail. You can use it for saving frequent searches, important individual messages, and more.</li>
<li><strong>Superstars</strong>: Adds additional star icons. After enabling this feature, you can choose which icons you wish to use in the &#8220;General&#8221; Settings page.</li>
<li><strong>Pictures in chat</strong>: See your friends&#8217; profile pictures when you chat with them.</li>
<li><strong>Fixed width font</strong>: Adds an option to the reply dropdown menu that lets you view a message in fixed width font.</li>
<li><strong>Custom keyboard shortcuts</strong>: Lets you customize keyboard shortcut mappings. Adds a new Settings tab from which you can remap keys to various actions.</li>
<li><strong>Mouse gestures</strong>: Use your mouse to navigate with gestures. Hold right-click and move the mouse left to go to a previous conversation, move it right to go to the next conversation, and move up to go back to the inbox view. Works best on Windows.</li>
<li><strong>Signature tweaks</strong>: Places your signature before the quoted text in a reply, and removes the &#8220;&#8211;&#8221; line that appears before signatures. Can&#8217;t use this and the &#8220;Random signature&#8221; Labs feature at the same time.</li>
<li><strong>Random signature</strong>: Rotates among random quotations for your email signature. Can&#8217;t use this and the &#8220;Signature tweaks&#8221; Labs feature at the same time.</li>
<li><strong>Custom date formats</strong>: Adds options to the general settings page allowing the date and time format to be changed independent of language. For example, you can use a 24-hour clock (14:57) or show dates with the day first (31/12/07).</li>
<li><strong>Muzzle</strong>: Conserves screen real estate by hiding your friends&#8217; status messages.</li>
<li><strong>Old Snakey</strong>: Kick it old school with Old Snakey! Enable keyboard shortcuts and hit &#8216;&amp;&#8217; from the main page to play a game of snake.</li>
<li><strong>Email Addict</strong>: Lets you take a break from email and chat by blocking the screen for fifteen minutes and making you invisible in chat.</li>
<li><strong>Hide Unread Counts</strong>: Hides the unread counts for inbox, labels, etc.</li>
</ul>
<p>Before you go and opt-in to some of these features, just note that they may not always work perfect. They are experimental features, and Google even notes that they could change without notice, break or disappear.</p>
<p>Thanks for the tip Cory!</p>
<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong><p><strong>Related Posts:</strong><ul><li><a href="http://cybernetnews.com/gmail-labs-gets-three-more-features/" rel="bookmark" title="Permanent Link: Gmail Labs Gets Three More Features">Gmail Labs Gets Three More Features</a></li><li><a href="http://cybernetnews.com/gmail-labs-almost-a-year-later-and-50-available/" rel="bookmark" title="Permanent Link: Gmail Labs: Almost a Year Later and 50+ Available">Gmail Labs: Almost a Year Later and 50+ Available</a></li><li><a href="http://cybernetnews.com/gasp-google-takes-two-services-out-of-beta/" rel="bookmark" title="Permanent Link: *Gasp* Google Takes Two Services Out of Beta!">*Gasp* Google Takes Two Services Out of Beta!</a></li><li><a href="http://cybernetnews.com/gmail-html-signature-bookmarklet/" rel="bookmark" title="Permanent Link: Gmail HTML Signature Bookmarklet">Gmail HTML Signature Bookmarklet</a></li><li><a href="http://cybernetnews.com/is-google-working-on-new-notebook-features/" rel="bookmark" title="Permanent Link: Is Google Working On New Notebook Features?">Is Google Working On New Notebook Features?</a></li></ul></p>
<p><a href="http://feedads.g.doubleclick.net/~a/0X43FxUu9Fyum7eizq1bEYQDMko/0/da"><img src="http://feedads.g.doubleclick.net/~a/0X43FxUu9Fyum7eizq1bEYQDMko/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/0X43FxUu9Fyum7eizq1bEYQDMko/1/da"><img src="http://feedads.g.doubleclick.net/~a/0X43FxUu9Fyum7eizq1bEYQDMko/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/CyberNetClassics/~4/zk6-2Bxcfgg" height="1" width="1"/>]]></content:encoded>
		<wfw:commentRss>http://cybernetnews.com/new-experimental-features-with-gmail-labs/feed/</wfw:commentRss>
			<feedburner:origLink>http://cybernetnews.com/new-experimental-features-with-gmail-labs/</feedburner:origLink></item>
		<item>
		<title>Adobe Enters World of Online Word Processing</title>
		<link>http://feeds.cybernetnews.com/~r/CyberNetClassics/~3/JkFF1DGpS-0/</link>
		<comments>http://cybernetnews.com/adobe-enters-world-of-online-word-processing/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 11:37:21 -0600</pubDate>
		<dc:creator>Ashley</dc:creator>
				<category><![CDATA[Web Sites]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Google Docs]]></category>
		<category><![CDATA[Online Office Suite]]></category>
		<category><![CDATA[Zoho]]></category>

		<guid isPermaLink="false">http://cybernetnews.com/2007/10/01/adobe-enters-world-of-online-word-processing/</guid>
		<description><![CDATA[<p><strong><u>This article was written on October 01, 2007 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p> 
The list of companies offering an online word processor just keeps getting longer and longer. And because there are so many options, it makes it difficult to determine which service to use, if any at all. As though there weren&#8217;t enough options, Adobe has announced that they are acquiring Virtual Ubiquity which is the [...]<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong>]]></description>
		<content:encoded><![CDATA[<p><strong><u>This article was written on October 01, 2007 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p><p align="center"><img height="107" alt="buzzword" src="http://cybernetnews.com/wp-content/uploads/2007/10/buzzword.jpg" width="392" border="0"> </p>
<p>The list of companies offering an online word processor just keeps getting longer and longer. And because there are so many options, it makes it difficult to determine which service to use, if any at all. As though there weren&#8217;t enough options, Adobe has announced that they are acquiring Virtual Ubiquity which is the company that makes <a href="http://www.buzzword.com">Buzzword</a>.</p>
<p>Buzzword is a fairly new online word processor built upon Adobe&#8217;s Flash platform using Adobe Flex. Eventually Adobe will be integrating it into a new service called Adobe Share which sounds like their version of an online office suite. While I&#8217;m still not sold on the idea of managing all of my documents online, Buzzword does have some nice features considering it is web-based.&nbsp; Some of those features include:</p>
<ul>
<li>Spell Check</li>
<li>End Notes</li>
<li>Insert tables and images</li>
<li>Print options for page size, page orientation, etc.</li>
<li>View the history of all the revisions made on a document</li>
<li>Share documents</li>
<li>Organize files</li>
</ul>
<p>The Adobe Flash platform is certainly powerful, and Buzzword realizes this.&nbsp; Virtual Ubiquity&#8217;s CEO Rick Treitman says, &#8220;Flex and Flash were the means to where we want to go.&nbsp; No one else realized how powerful it was as a virtual machine.&#8221; Another big feature with Buzzword is that they&#8217;re the first online word processor with pagination.&nbsp; <a href="http://www.news.com/Adobe-buys-Web-word-processor-Buzzword/2100-1014_3-6210746.html">News.com explains</a> Pagination as something that &#8220;allows people to get an accurate view of how a document will print out as the document is edited.&#8221;</p>
<p>Buzzword certainly could be competition for Microsoft, but more likely, they&#8217;ll end up as competition for other online word processors like Google Docs and Zoho Writer which could result in these companies putting extra effort into their products to make it the best. While I don&#8217;t foresee a major paradigm shift any time soon in the word processing market with people switching entirely from desktop based word processors to web-based options, it could certainly happen in the future. And should this happen, there will sure be all kinds of options to choose from!</p>
<p>Thanks for the tip S!</p>
<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong><p><strong>Related Posts:</strong><ul><li><a href="http://cybernetnews.com/acrobat-9-with-flash-and-acrobatcom-launch/" rel="bookmark" title="Permanent Link: Acrobat 9 (with Flash) and Acrobat.com Launch&#8230;">Acrobat 9 (with Flash) and Acrobat.com Launch&#8230;</a></li><li><a href="http://cybernetnews.com/adobe-photoshop-cs4-stonehenge/" rel="bookmark" title="Permanent Link: Adobe Photoshop CS4 Stonehenge">Adobe Photoshop CS4 Stonehenge</a></li><li><a href="http://cybernetnews.com/adobe-reader-708-released/" rel="bookmark" title="Permanent Link: Adobe Reader 7.08 Released">Adobe Reader 7.08 Released</a></li><li><a href="http://cybernetnews.com/adobe-photoshop-prevents-making-counterfeit-money/" rel="bookmark" title="Permanent Link: Adobe Photoshop Prevents Making Counterfeit Money">Adobe Photoshop Prevents Making Counterfeit Money</a></li><li><a href="http://cybernetnews.com/adobe-releases-acrobat-3d/" rel="bookmark" title="Permanent Link: Adobe Releases Acrobat 3D">Adobe Releases Acrobat 3D</a></li></ul></p>
<p><a href="http://feedads.g.doubleclick.net/~a/jXeae8mfVsPlVQAJ8JsrUrxeOgs/0/da"><img src="http://feedads.g.doubleclick.net/~a/jXeae8mfVsPlVQAJ8JsrUrxeOgs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/jXeae8mfVsPlVQAJ8JsrUrxeOgs/1/da"><img src="http://feedads.g.doubleclick.net/~a/jXeae8mfVsPlVQAJ8JsrUrxeOgs/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/CyberNetClassics/~4/JkFF1DGpS-0" height="1" width="1"/>]]></content:encoded>
		<wfw:commentRss>http://cybernetnews.com/adobe-enters-world-of-online-word-processing/feed/</wfw:commentRss>
			<feedburner:origLink>http://cybernetnews.com/adobe-enters-world-of-online-word-processing/</feedburner:origLink></item>
		<item>
		<title>Google Maps Gets Zoom Enhancements</title>
		<link>http://feeds.cybernetnews.com/~r/CyberNetClassics/~3/vUs_Y0Cveho/</link>
		<comments>http://cybernetnews.com/google-maps-gets-zoom-enhancements/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 03:13:19 -0600</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://tech.cybernetnews.com/2006/07/12/google-maps-gets-zoom-enhancements/</guid>
		<description><![CDATA[<p><strong><u>This article was written on July 12, 2006 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p>
Google has incorporated two new features into Google Maps: double-click to zoom and continuous zoom. It is no longer a hassle to zoom in to a certain point on the map. All you have to do is double-click on that spot and Google will zoom to it.
Continuous zoom can either be seen by doing the [...]<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong>]]></description>
		<content:encoded><![CDATA[<p><strong><u>This article was written on July 12, 2006 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p><p><img src="http://cybernetnews.com/wp-content/uploads/2006/07/GoogleMaps.jpg" align="right" alt="Google Maps Gets Zoom Enhancements" /></p>
<p>Google has incorporated <a href="http://googlemapsapi.blogspot.com/2006/07/zoooooooom.html">two new features</a> into <a href="http://maps.google.com/">Google Maps</a>: double-click to zoom and continuous zoom. It is no longer a hassle to zoom in to a certain point on the map. All you have to do is double-click on that spot and Google will zoom to it.</p>
<p>Continuous zoom can either be seen by doing the double-click or by incrementing the zoom slider by one. You should notice Google slowly zooming into the point you designated. This effect is similar to what we have all come to love in Google Earth but it is on a more basic level. For me the images in the hybrid or satellite view initially sometimes appeared as a gray box until they had the chance to fully load, so it wasn&#8217;t perfectly smooth. Let&#8217;s not forget that the continuous zoom is only compatible for, yep you guessed it, Firefox and Internet Explorer.</p>
<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong><p><strong>Related Posts:</strong><ul><li><a href="http://cybernetnews.com/google-lets-users-customize-their-printed-maps/" rel="bookmark" title="Permanent Link: Google Lets Users Customize Their Printed Maps">Google Lets Users Customize Their Printed Maps</a></li><li><a href="http://cybernetnews.com/view-google-maps-using-windows-media-center/" rel="bookmark" title="Permanent Link: View Google Maps Using Windows Media Center">View Google Maps Using Windows Media Center</a></li><li><a href="http://cybernetnews.com/google-zoom-hack-not-what-i-expected/" rel="bookmark" title="Permanent Link: Google Zoom Hack not What I Expected">Google Zoom Hack not What I Expected</a></li><li><a href="http://cybernetnews.com/maps-and-satellite-imagery-simultaneous-overlay/" rel="bookmark" title="Permanent Link: Maps And Satellite Imagery Simultaneous Overlay">Maps And Satellite Imagery Simultaneous Overlay</a></li><li><a href="http://cybernetnews.com/google-maps-gets-yahoos-dynamic-movement-feature/" rel="bookmark" title="Permanent Link: Google Maps Gets Yahoo&#8217;s Dynamic Movement Feature">Google Maps Gets Yahoo&#8217;s Dynamic Movement Feature</a></li></ul></p>
<p><a href="http://feedads.g.doubleclick.net/~a/3ZsXTQl_uiH1fHR7JePXS5vlHeA/0/da"><img src="http://feedads.g.doubleclick.net/~a/3ZsXTQl_uiH1fHR7JePXS5vlHeA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/3ZsXTQl_uiH1fHR7JePXS5vlHeA/1/da"><img src="http://feedads.g.doubleclick.net/~a/3ZsXTQl_uiH1fHR7JePXS5vlHeA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/CyberNetClassics/~4/vUs_Y0Cveho" height="1" width="1"/>]]></content:encoded>
		<wfw:commentRss>http://cybernetnews.com/google-maps-gets-zoom-enhancements/feed/</wfw:commentRss>
			<feedburner:origLink>http://cybernetnews.com/google-maps-gets-zoom-enhancements/</feedburner:origLink></item>
		<item>
		<title>MyFive: Good iPod Alternatives</title>
		<link>http://feeds.cybernetnews.com/~r/CyberNetClassics/~3/LpsmlZB8EnU/</link>
		<comments>http://cybernetnews.com/myfive-good-ipod-alternatives/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 18:48:12 -0600</pubDate>
		<dc:creator>Ashley</dc:creator>
				<category><![CDATA[MyFive]]></category>
		<category><![CDATA[iPod]]></category>

		<guid isPermaLink="false">http://cybernetnews.com/2007/10/07/myfive-good-ipod-alternatives/</guid>
		<description><![CDATA[<p><strong><u>This article was written on October 07, 2007 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p>Not everybody has nor wants to jump on the iPod bandwagon so that they, like millions of others, can waltz around with their signature white headphones. If you&#8217;re one of those people that refuses to get an iPod but you&#8217;re still wanting a digital media player, there are plenty of great alternatives. Here are just [...]<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong>]]></description>
		<content:encoded><![CDATA[<p><strong><u>This article was written on October 07, 2007 by <a href="http://cybernetnews.com">CyberNet</a>.</u></strong></p><p>Not everybody has nor wants to jump on the iPod bandwagon so that they, like millions of others, can waltz around with their signature white headphones. If you&#8217;re one of those people that refuses to get an iPod but you&#8217;re still wanting a digital media player, there are plenty of great alternatives. Here are just five of the many available.</p>
<ol>
<li><strong>Zune</strong><br />The 30GB Zune is <a href="http://cybernetnews.com/zune-2-release-date-in-november/">getting replaced in about a month</a> with the new 80GB hard drive version and the 4GB and 8GB Flash versions, but it&#8217;s still a great buy, especially because there will really be no differences in terms of software between the &#8220;old&#8221; and &#8220;new&#8221; Zune&#8217;s. It&#8217;s got an intuitive interface, you can play audio, video, view photos, and even listen to FM radio. With the new versions coming out soon, you&#8217;ll likely find some great deals (<a href="http://cybernetnews.com/secret-woot-page-reveals-30gb-zune-for-100/">like this one</a>) this month.<br /><img height="117" alt="zune" src="http://cybernetnews.com/wp-content/uploads/2007/10/zune.jpg" width="150" border="0"> </li>
<li><strong>Creative Zen<br /></strong>Using the Creative Zen 16GB MP3 player you can watch 64 hours of video, or enjoy up to 4,000 of your favorite songs. You can also share hundreds of your photos on the 2.5 inch color display.&nbsp; It&#8217;s got a clock and alarm function, volume restriction, eight equalizer settings, and a USB hard drive mode. The Creative Zen 16GB model is priced at $249.99<br /><img height="107" alt="creativezen" src="http://cybernetnews.com/wp-content/uploads/2007/10/creativezen.jpg" width="150" border="0"> </li>
<li><strong>SanDisk Sansa e280<br /></strong>Unlike the iPod, the Sansa features FM radio and has an easily replaceable battery. It also has a voice recorder, and you can record from the radio. It&#8217;s got a great interface and uses a scroll wheel with four buttons to control the player. It&#8217;s flash based and has room for 8GB of songs, videos, photos, and voice recordings. The Sansa e280 is priced at $131.39.<br /><img height="257" alt="sansa" src="http://cybernetnews.com/wp-content/uploads/2007/10/sansa.jpg" width="138" border="0"> </li>
<li><strong>Toshiba Gigabeat 30GB Portable Media Player<br /></strong>Like most portable media player devices (excluding the iPod) this Toshiba player includes a built-in FM tuner.&nbsp; It&#8217;s got a 2.4 inch WVGA display, and will run about 20 hours per charge. This is a great player for movies, photos, and videos, and is priced at around $255.00.<br /><img height="273" alt="toshiba" src="http://cybernetnews.com/wp-content/uploads/2007/10/toshiba.jpg" width="144" border="0"> </li>
<li><strong>Sony 8GB Video MP3 Player<br /></strong>Priced at around $209.00, the Sony 8GB MP3 Player features up to 33 hours of battery life, high quality video playback at 30 frames per second, and includes an FM tuner with 30 station presets. Of course you can watch videos too on the bi-directional LCD display.<br /><img height="267" alt="sony player" src="http://cybernetnews.com/wp-content/uploads/2007/10/sony-player.jpg" width="151" border="0">
</li>
</ol>
<p>Copyright &copy; 2009 <strong><a href="http://cybernetnews.com">CyberNet</a> | <a href="http://forum.cybernetnews.com">CyberNet Forum</a> | <a href="http://learnfirefox.cybernetnews.com">Learn Firefox</a></strong><p><strong>Related Posts:</strong><ul><li><a href="http://cybernetnews.com/helpful-tip-how-to-add-music-to-your-ipod-without-itunes/" rel="bookmark" title="Permanent Link: Helpful Tip: How to Add Music to Your iPod Without iTunes">Helpful Tip: How to Add Music to Your iPod Without iTunes</a></li><li><a href="http://cybernetnews.com/creative-zen-vision-m-30gb-multimedia-player/" rel="bookmark" title="Permanent Link: Creative Zen Vision: M 30GB Multimedia Player">Creative Zen Vision: M 30GB Multimedia Player</a></li><li><a href="http://cybernetnews.com/get-your-ipod-headphones-replaced-for-free/" rel="bookmark" title="Permanent Link: Get Your iPod Headphones Replaced For Free">Get Your iPod Headphones Replaced For Free</a></li><li><a href="http://cybernetnews.com/apples-ipod-to-be-an-ebook-reader/" rel="bookmark" title="Permanent Link: Apple&#8217;s iPod To Be An eBook Reader">Apple&#8217;s iPod To Be An eBook Reader</a></li><li><a href="http://cybernetnews.com/8gb-ipod-touch-for-26999-shipped/" rel="bookmark" title="Permanent Link: 8GB iPod Touch for $269.99 Shipped">8GB iPod Touch for $269.99 Shipped</a></li></ul></p>
<p><a href="http://feedads.g.doubleclick.net/~a/DMQuvi56fPJ2uCuRK23l9CjVKsU/0/da"><img src="http://feedads.g.doubleclick.net/~a/DMQuvi56fPJ2uCuRK23l9CjVKsU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/DMQuvi56fPJ2uCuRK23l9CjVKsU/1/da"><img src="http://feedads.g.doubleclick.net/~a/DMQuvi56fPJ2uCuRK23l9CjVKsU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/CyberNetClassics/~4/LpsmlZB8EnU" height="1" width="1"/>]]></content:encoded>
		<wfw:commentRss>http://cybernetnews.com/myfive-good-ipod-alternatives/feed/</wfw:commentRss>
			<feedburner:origLink>http://cybernetnews.com/myfive-good-ipod-alternatives/</feedburner:origLink></item>
	</channel>
</rss>
