<?phpxml version="1.0" encoding="utf-8"?>
<rss version="2.0" 
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
>
<channel>
<title>supertechsnews.com | Published News | Software</title>
<link>http://supertechnews.com</link>
<description>Technology news and reviews about gadgets, games, digital cameras and everything in between!</description>
<pubDate>Mon, 15 Mar 2010 19:45:33 CDT</pubDate>
<language>en</language>
<item>
<title><![CDATA[Execution Sequence of .bash_* files]]></title>
<link>http://supertechnews.com/software/execution-sequence-of-bash-files/</link>
<comments>http://supertechnews.com/software/execution-sequence-of-bash-files/</comments>
<pubDate>Mon, 15 Mar 2010 19:45:33 CDT</pubDate>
<dc:creator>LinuxTips</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/execution-sequence-of-bash-files/</guid>
<description><![CDATA[Execution sequence for interactive login shellexecute /etc/profileIF ~/.bash_profile exists THEN    execute ~/.bash_profileELSE    IF ~/.bash_login exist THEN        execute ~/.bash_login    ELSE        IF ~/.profile exist THEN            execute ~/.profile        END IF    END IFEND IFWhen you logout of the interactive shell, following is the sequence ofexecution:IF ~/.bash_logout exists THEN   <br/><br/>15 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Adobe Flash Player 10.1]]></title>
<link>http://supertechnews.com/software/adobe-flash-player-10-1/</link>
<comments>http://supertechnews.com/software/adobe-flash-player-10-1/</comments>
<pubDate>Mon, 15 Mar 2010 19:40:30 CDT</pubDate>
<dc:creator>cmackwan</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/adobe-flash-player-10-1/</guid>
<description><![CDATA[Everybody knows that I love (sarcasm..) Flash. The current Flash player version is 10, however there is a 10.1 Beta 3 release out at the time of this writing, so I decided to give it a go to see how it performs.The first thing to note is how it&#8217;s installed. This is on the download page:In Windows, this is a five step process.Close all web browsers that are openUninstall Flash Player 10 Acti<br/><br/>8 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Beyond algorithms and the future of search at SXSW]]></title>
<link>http://supertechnews.com/software/beyond-algorithms-and-the-future-of-search-at-sxsw/</link>
<comments>http://supertechnews.com/software/beyond-algorithms-and-the-future-of-search-at-sxsw/</comments>
<pubDate>Mon, 15 Mar 2010 19:29:10 CDT</pubDate>
<dc:creator>Download</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/beyond-algorithms-and-the-future-of-search-at-sxsw/</guid>
<description><![CDATA[Filed under: Search"Beyond Algorithms: search and the semantic web" featured some heavy hitters in the search world talking about the future of search, including:    Will Hunsinger, CEO of Evri and because of the recent aquisition, Twine    Carla Thompson, Senior Analyst for the Guidewire Group    Barak Berkowitz, Managing Director of Wolfram Alpha    Danny Sullivan from Search Engine Land    Nov<br/><br/>13 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[uTorrent banned by private trackers for "not playing fair"]]></title>
<link>http://supertechnews.com/software/utorrent-banned-by-private-trackers-for-not-playing-fair/</link>
<comments>http://supertechnews.com/software/utorrent-banned-by-private-trackers-for-not-playing-fair/</comments>
<pubDate>Mon, 15 Mar 2010 19:29:05 CDT</pubDate>
<dc:creator>Download</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/utorrent-banned-by-private-trackers-for-not-playing-fair/</guid>
<description><![CDATA[Filed under: Utilities, P2PWe told you a while ago about uTP, the new self-throttling torrent transfer protocol that first appeared in version 2.0 of the popular uTorrent app. As Sebastian explained in our previous post, uTP prevents network congestion by limiting its own bandwidth so that your Internet service provider doesn't have to. Ideally, this means nobody is subjected to ISP-level torrent<br/><br/>16 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Twitter announces @anywhere, bringing Twitter integration to any site]]></title>
<link>http://supertechnews.com/software/twitter-announces-anywhere-bringing-twitter-integration-to-any-site/</link>
<comments>http://supertechnews.com/software/twitter-announces-anywhere-bringing-twitter-integration-to-any-site/</comments>
<pubDate>Mon, 15 Mar 2010 19:29:00 CDT</pubDate>
<dc:creator>Download</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/twitter-announces-anywhere-bringing-twitter-integration-to-any-site/</guid>
<description><![CDATA[Filed under: Social SoftwareTo kick off his keynote at SXSW, Evan Williams, Twitter's CEO, announced the @anywhere platform. This platform will allow site owners to integrate Twitter information and features directly into their sites. For example, a blog with @anywhere integration would allow a user to hover over the blogger's name to pop up a Twitter box where the user could see if he/she was fo<br/><br/>12 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Use “cd -” to toggle between the last two directories]]></title>
<link>http://supertechnews.com/software/use-%E2%80%9Ccd-%E2%80%9D-to-toggle-between-the-last-two-directories/</link>
<comments>http://supertechnews.com/software/use-%E2%80%9Ccd-%E2%80%9D-to-toggle-between-the-last-two-directories/</comments>
<pubDate>Wed, 10 Mar 2010 22:01:14 CST</pubDate>
<dc:creator>LinuxTips</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/use-%E2%80%9Ccd-%E2%80%9D-to-toggle-between-the-last-two-directories/</guid>
<description><![CDATA[You can toggle between the last two current directories using cd - as shownbelow.[dipin@linuxgeek ~]$ cd /etc/[dipin@linuxgeek etc]$ pwd/etc[dipin@linuxgeek etc]$ cd /var/[dipin@linuxgeek var]$ pwd/var[dipin@linuxgeek var]$ cd -/etc[dipin@linuxgeek etc]$ pwd/etc[dipin@linuxgeek etc]$Enjoy!<br/><br/>8 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Keep your PC running smooth with System Mechanic]]></title>
<link>http://supertechnews.com/software/keep-your-pc-running-smooth-with-system-mechanic/</link>
<comments>http://supertechnews.com/software/keep-your-pc-running-smooth-with-system-mechanic/</comments>
<pubDate>Wed, 10 Mar 2010 21:59:21 CST</pubDate>
<dc:creator>Littletechgirl</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/keep-your-pc-running-smooth-with-system-mechanic/</guid>
<description><![CDATA[<br/><br/>15 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[How To Deal With SuperCookies]]></title>
<link>http://supertechnews.com/software/how-to-deal-with-supercookies/</link>
<comments>http://supertechnews.com/software/how-to-deal-with-supercookies/</comments>
<pubDate>Wed, 10 Mar 2010 21:55:23 CST</pubDate>
<dc:creator>cmackwan</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/how-to-deal-with-supercookies/</guid>
<description><![CDATA[We&#8217;ve been told ever since we started using web browsers that it&#8217;s a good idea to clear out your cache and cookies periodically. This used to be a pain in the neck to get done, but with modern flavors of web browsers you can clear this information out easily. In IE8 and Firefox you can use the keystroke CTRL+SHIFT+DEL, then in IE8 choose to clear Temporary Internet Files and Cookies, <br/><br/>5 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Street Fighter IV: an iPhone game earns the Street Fighter name]]></title>
<link>http://supertechnews.com/software/street-fighter-iv-an-iphone-game-earns-the-street-fighter-name/</link>
<comments>http://supertechnews.com/software/street-fighter-iv-an-iphone-game-earns-the-street-fighter-name/</comments>
<pubDate>Wed, 10 Mar 2010 21:42:04 CST</pubDate>
<dc:creator>Download</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/street-fighter-iv-an-iphone-game-earns-the-street-fighter-name/</guid>
<description><![CDATA[Filed under: Fun, Games, iPhoneGet your tissues ready, gamers, because you're about to cry some big, sloppy tears of joy. Picture this: Capcom's Street Fighter IV. In your pocket. For 10 bucks. That's right, Street Fighter IV has hit the iPhone with the fury of one of Ryu's dragon punches. I know what you're thinking, though: can this port possible look good and be playable? Yes, yes it can. Whil<br/><br/>20 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Unlimited Detail claims to leave current 3D technologies in the dust]]></title>
<link>http://supertechnews.com/software/unlimited-detail-claims-to-leave-current-3d-technologies-in-the-dust/</link>
<comments>http://supertechnews.com/software/unlimited-detail-claims-to-leave-current-3d-technologies-in-the-dust/</comments>
<pubDate>Wed, 10 Mar 2010 21:41:55 CST</pubDate>
<dc:creator>Download</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/unlimited-detail-claims-to-leave-current-3d-technologies-in-the-dust/</guid>
<description><![CDATA[Filed under: GamesUnlimited Detail is definitely the most interesting technology demo I stumbled on today. In a nutshell: current 3D technology is based on polygons. Each 3D shape you see on the screen is made out of multiple straight facets (polygons). The more polygons (or facets), the rounder and more natural it seems. The current battle is all about polygon counts -- how many polygons can a c<br/><br/>18 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Goodbye, privacy: The entire UK set to go on Google Street View tomorrow]]></title>
<link>http://supertechnews.com/software/goodbye-privacy-the-entire-uk-set-to-go-on-google-street-view-tomorrow/</link>
<comments>http://supertechnews.com/software/goodbye-privacy-the-entire-uk-set-to-go-on-google-street-view-tomorrow/</comments>
<pubDate>Wed, 10 Mar 2010 21:41:49 CST</pubDate>
<dc:creator>Download</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/goodbye-privacy-the-entire-uk-set-to-go-on-google-street-view-tomorrow/</guid>
<description><![CDATA[Filed under: InternetThe UK is already one of the most-monitored Western countries. It has a record number of security cameras on the streets and public transport stations (one camera for every 14 people!); its authorities are installing chips in garbage cans to monitor the amount of trash, and now Google is "helping out" by bringing Streetview to each and every street, effective tomorrow. 238,00<br/><br/>5 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[How to make terminal ask for password every time you type sudo command]]></title>
<link>http://supertechnews.com/software/how-to-make-terminal-ask-for-password-every-time-you-type-sudo-command/</link>
<comments>http://supertechnews.com/software/how-to-make-terminal-ask-for-password-every-time-you-type-sudo-command/</comments>
<pubDate>Thu, 04 Mar 2010 20:17:54 CST</pubDate>
<dc:creator>LinuxTips</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/how-to-make-terminal-ask-for-password-every-time-you-type-sudo-command/</guid>
<description><![CDATA[when you type sudo command for the first time in a terminal it will ask you the sudo password.This password will be remembered by that terminal for 15 minutes by default.If you want terminal to ask for password each time you type sudo command just do as said below.1. Type at terminalsudo visudo2. Edit as shown below Change  Defaults env_reset to  Defaults env_reset,timestamp_timeout=0<br/><br/>6 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Identify Theft Prevention Safety Tips for Tax Time]]></title>
<link>http://supertechnews.com/software/identify-theft-prevention-safety-tips-for-tax-time/</link>
<comments>http://supertechnews.com/software/identify-theft-prevention-safety-tips-for-tax-time/</comments>
<pubDate>Thu, 04 Mar 2010 20:16:08 CST</pubDate>
<dc:creator>Littletechgirl</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/identify-theft-prevention-safety-tips-for-tax-time/</guid>
<description><![CDATA[<br/><br/>6 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Opera 10.50]]></title>
<link>http://supertechnews.com/software/opera-10-50/</link>
<comments>http://supertechnews.com/software/opera-10-50/</comments>
<pubDate>Thu, 04 Mar 2010 20:12:57 CST</pubDate>
<dc:creator>cmackwan</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/opera-10-50/</guid>
<description><![CDATA[Opera&#8217;s latest version of their browser is 10.50, currently only available for Windows (although I suspect Mac and Linux versions will be released very shortly).This versions of Opera, said very honestly, is the best version I&#8217;ve ever used. It has Windows 7 Aero Glass support, the menus are more streamlined than ever, and it is the ONLY browser that allows you to have Private and Non-<br/><br/>14 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[YouTube rolls out auto-transcript, LOLs ensue]]></title>
<link>http://supertechnews.com/software/youtube-rolls-out-auto-transcript-lols-ensue/</link>
<comments>http://supertechnews.com/software/youtube-rolls-out-auto-transcript-lols-ensue/</comments>
<pubDate>Thu, 04 Mar 2010 20:02:20 CST</pubDate>
<dc:creator>Download</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/youtube-rolls-out-auto-transcript-lols-ensue/</guid>
<description><![CDATA[Filed under: Fun, Video, GoogleThere are already plenty of third-party apps that allow you to leverage the power of Google Translate for hilarity's sake. Translation Party, Google Translate Boomerang. They're always good for a "Mr. Sparkle"-esque chuckle.But now -- thanks to Google rolling out automatic transcripts on YouTube -- you get your insipid translation giggles directly from the source!Ju<br/><br/>19 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Facebook for webOS loses its Twitter envy and finally becomes useful]]></title>
<link>http://supertechnews.com/software/facebook-for-webos-loses-its-twitter-envy-and-finally-becomes-useful/</link>
<comments>http://supertechnews.com/software/facebook-for-webos-loses-its-twitter-envy-and-finally-becomes-useful/</comments>
<pubDate>Thu, 04 Mar 2010 20:02:12 CST</pubDate>
<dc:creator>Download</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/facebook-for-webos-loses-its-twitter-envy-and-finally-becomes-useful/</guid>
<description><![CDATA[Filed under: Palm, Social Software, Mobile MinuteIt's been a little while since Facebook launched their (admittedly barebones) application for Palm's webOS devices -- that's the Pre and Pixi to you and I. However, in amongst the news of the webOS 1.4 update dropping earlier this week, Facebook have also released an all-new version of the application that adds a number of useful features.Whilst th<br/><br/>8 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[WordPress blogs will update in real time, via PubSubHubbub]]></title>
<link>http://supertechnews.com/software/wordpress-blogs-will-update-in-real-time-via-pubsubhubbub/</link>
<comments>http://supertechnews.com/software/wordpress-blogs-will-update-in-real-time-via-pubsubhubbub/</comments>
<pubDate>Thu, 04 Mar 2010 20:02:03 CST</pubDate>
<dc:creator>Download</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/wordpress-blogs-will-update-in-real-time-via-pubsubhubbub/</guid>
<description><![CDATA[Filed under: Utilities, Blogging, Web servicesPubSubHubbub, the quickly-growing service that pushes out real-time updates to RSS feeds, continued its march toward ubiquity this week when uber-popular blogging platform WordPress started offering PubSub support. PubSub had already hit Tumblr, Posterous, Google's Blogger and more, but I think this is the move that finally takes it mainstream. (Well,<br/><br/>13 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[How to Install stable Firefox 3.6(Not the Namoroka One) in your ubuntu]]></title>
<link>http://supertechnews.com/software/how-to-install-stable-firefox-3-6not-the-namoroka-one-in-your-ubuntu/</link>
<comments>http://supertechnews.com/software/how-to-install-stable-firefox-3-6not-the-namoroka-one-in-your-ubuntu/</comments>
<pubDate>Wed, 03 Mar 2010 15:52:28 CST</pubDate>
<dc:creator>LinuxTips</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/how-to-install-stable-firefox-3-6not-the-namoroka-one-in-your-ubuntu/</guid>
<description><![CDATA[I you are using ubuntu 9.10 karmic/ 10.04 Lucid. just run these commands on your terminal:sudo add-apt-repository ppa:mozillateam/firefox-stable&nbsp;sudo apt-get updatesudo apt-get install firefox-3.6Now for those who are using ubuntu 9.04/8.10/8.04.&nbsp;You will need to edit your source list and add the appropriate ppa. Open sources.listsudo gedit /etc/apt/sources.listand add the below lines t<br/><br/>15 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Fo2go for iPhone]]></title>
<link>http://supertechnews.com/software/fo2go-for-iphone/</link>
<comments>http://supertechnews.com/software/fo2go-for-iphone/</comments>
<pubDate>Wed, 03 Mar 2010 15:50:47 CST</pubDate>
<dc:creator>Littletechgirl</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/fo2go-for-iphone/</guid>
<description><![CDATA[<br/><br/>13 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Gain Control Over How Windows Assigns Drive Letters]]></title>
<link>http://supertechnews.com/software/gain-control-over-how-windows-assigns-drive-letters/</link>
<comments>http://supertechnews.com/software/gain-control-over-how-windows-assigns-drive-letters/</comments>
<pubDate>Wed, 03 Mar 2010 15:47:32 CST</pubDate>
<dc:creator>cmackwan</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/gain-control-over-how-windows-assigns-drive-letters/</guid>
<description><![CDATA[Whenever you plug in a removable device such as a flash drive or USB hard drive, Windows automatically assigns a drive letter. While this is usually fine, there are certain circumstances where this can cause problems such as when you have a large number of mapped drives. If you want to gain control over this process, a tool which helps is USB Drive Letter Manager.USBDLM is a Windows service that <br/><br/>9 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Windows 7 Spring theme adds fresh, seasonal eye candy to your desktop]]></title>
<link>http://supertechnews.com/software/windows-7-spring-theme-adds-fresh-seasonal-eye-candy-to-your-desktop/</link>
<comments>http://supertechnews.com/software/windows-7-spring-theme-adds-fresh-seasonal-eye-candy-to-your-desktop/</comments>
<pubDate>Wed, 03 Mar 2010 15:36:30 CST</pubDate>
<dc:creator>Download</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/windows-7-spring-theme-adds-fresh-seasonal-eye-candy-to-your-desktop/</guid>
<description><![CDATA[Filed under: Fun, Photo, WindowsThe official Windows 7 personalization gallery already has some pretty nice themes available. Whether you're into hot cars, animals, or abstractness, there's something for (almost) everyone.Just added is a gorgeous new seasonal theme called Czech Spring which includes eight high-res springtime wallpapers. Flowers, a babbling brook, a pastoral landscape -- you can a<br/><br/>19 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Yahoo! signs Twitter real-time search deal, but why?]]></title>
<link>http://supertechnews.com/software/yahoo-signs-twitter-real-time-search-deal-but-why/</link>
<comments>http://supertechnews.com/software/yahoo-signs-twitter-real-time-search-deal-but-why/</comments>
<pubDate>Wed, 03 Mar 2010 15:36:23 CST</pubDate>
<dc:creator>Download</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/yahoo-signs-twitter-real-time-search-deal-but-why/</guid>
<description><![CDATA[Filed under: Business, Internet, SearchSo Yahoo signed a deal with Twitter to provide real-time search functionality. Which is actually interesting, because Yahoo already has a deal with Microsoft to use Bing as a search provider, and Bing already has a deal with Twitter for real-time search.So this begs the question: Why? It seems like Yahoo basically gained nothing but PR from this deal. The on<br/><br/>8 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Portable Opera@USB updates, brings 10.50's speed to your flash drive]]></title>
<link>http://supertechnews.com/software/portable-operausb-updates-brings-10-50s-speed-to-your-flash-drive/</link>
<comments>http://supertechnews.com/software/portable-operausb-updates-brings-10-50s-speed-to-your-flash-drive/</comments>
<pubDate>Wed, 03 Mar 2010 15:36:18 CST</pubDate>
<dc:creator>Download</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/portable-operausb-updates-brings-10-50s-speed-to-your-flash-drive/</guid>
<description><![CDATA[Filed under: Windows, BrowsersNow that the final version has been released and the public is happily playing with the new features and increased speed of Opera 10.50, it's time to update that portable version on your USB flash drive.Fortunately, Opera@USB has just released an update. Both a standalone portable version of Opera 10.50 and an upgrader for users of Opera@USB's previous 10.X versions <br/><br/>19 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Pino: Install twitter and Identi.ca Client for ubuntu Linux]]></title>
<link>http://supertechnews.com/software/pino-install-twitter-and-identi-ca-client-for-ubuntu-linux/</link>
<comments>http://supertechnews.com/software/pino-install-twitter-and-identi-ca-client-for-ubuntu-linux/</comments>
<pubDate>Thu, 25 Feb 2010 09:25:35 CST</pubDate>
<dc:creator>LinuxTips</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/pino-install-twitter-and-identi-ca-client-for-ubuntu-linux/</guid>
<description><![CDATA[Pino is Twitter and Identi.ca client for Linux desktop. It's simple and fast.Install Pino in ubuntu$ sudo add-apt-repository ppa:vala-team/ppa$ sudo add-apt-repository ppa:troorl/pino$ sudo apt-get update$ sudo apt-get install pinoPino is hosted on code.google.com<br/><br/>10 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Online hosting for business video]]></title>
<link>http://supertechnews.com/software/online-hosting-for-business-video/</link>
<comments>http://supertechnews.com/software/online-hosting-for-business-video/</comments>
<pubDate>Thu, 25 Feb 2010 09:23:36 CST</pubDate>
<dc:creator>Littletechgirl</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/online-hosting-for-business-video/</guid>
<description><![CDATA[<br/><br/>8 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Just In Case: Have A Screenshot Of Your Router Settings]]></title>
<link>http://supertechnews.com/software/just-in-case-have-a-screenshot-of-your-router-settings/</link>
<comments>http://supertechnews.com/software/just-in-case-have-a-screenshot-of-your-router-settings/</comments>
<pubDate>Thu, 25 Feb 2010 09:19:53 CST</pubDate>
<dc:creator>cmackwan</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/just-in-case-have-a-screenshot-of-your-router-settings/</guid>
<description><![CDATA[Everyone knows the importance of backups and I am not here to harp on that. One thing you may want to consider, however, is having a backup of your router settings in the form of screenshots.Hypothetically, assume your router got fried by either a power surge, inadvertent user error or a freak occurrence. Do you know what all your settings (ISP info, IP configuration, port forwarding, wireless co<br/><br/>14 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Macmillan's DynamicBooks offers editable digital textbooks]]></title>
<link>http://supertechnews.com/software/macmillans-dynamicbooks-offers-editable-digital-textbooks/</link>
<comments>http://supertechnews.com/software/macmillans-dynamicbooks-offers-editable-digital-textbooks/</comments>
<pubDate>Thu, 25 Feb 2010 09:10:20 CST</pubDate>
<dc:creator>Download</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/macmillans-dynamicbooks-offers-editable-digital-textbooks/</guid>
<description><![CDATA[Filed under: Productivity, EducationMacmillan has just announced a new tool called DynamicBooks that allows professors to edit the publisher's massive repository of textbooks and provide them to classes in a digital format. I couldn't dig up any info on whether the format is proprietary, open, or uses an existing eBook standard, but Macmillan says its books will be viewable on computers and iPhon<br/><br/>6 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Inbox2 does email + social networks in style, but not for everyone]]></title>
<link>http://supertechnews.com/software/inbox2-does-email-social-networks-in-style-but-not-for-everyone/</link>
<comments>http://supertechnews.com/software/inbox2-does-email-social-networks-in-style-but-not-for-everyone/</comments>
<pubDate>Thu, 25 Feb 2010 09:10:13 CST</pubDate>
<dc:creator>Download</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/inbox2-does-email-social-networks-in-style-but-not-for-everyone/</guid>
<description><![CDATA[Filed under: Beta, MicrobloggingInbox2 is a "premium connected lifestyle application". I'm not making that phrase up -- it's from their about page. In simpler terms, it's an email client which also does Facebook and Twitter. And it's beautiful. Seriously -- this thing is in-your-face gorgeous. I love the color scheme!Since the premise is fairly easy to understand, I'd like to share a short list o<br/><br/>10 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Wal-Mart buys streaming movie provider Vudu, cuts adult content]]></title>
<link>http://supertechnews.com/software/wal-mart-buys-streaming-movie-provider-vudu-cuts-adult-content/</link>
<comments>http://supertechnews.com/software/wal-mart-buys-streaming-movie-provider-vudu-cuts-adult-content/</comments>
<pubDate>Thu, 25 Feb 2010 09:10:09 CST</pubDate>
<dc:creator>Download</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/wal-mart-buys-streaming-movie-provider-vudu-cuts-adult-content/</guid>
<description><![CDATA[Filed under: Business, Video, Web servicesAgainst declining DVD sales, retail mega-ultra-giant Wal-Mart is jumping into the digital movie distribution pool by acquiring Vudu. Few details about the acquisition have emerged so far, but our sister site, Engadget, is reporting that Vudu will continue its development operations, including work on Vudu Apps. Not a bad move on Wal-Mart's part, consideri<br/><br/>8 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[How to install VLC Media Player in Ubuntu 10.04 Lucid Lynx]]></title>
<link>http://supertechnews.com/software/how-to-install-vlc-media-player-in-ubuntu-10-04-lucid-lynx/</link>
<comments>http://supertechnews.com/software/how-to-install-vlc-media-player-in-ubuntu-10-04-lucid-lynx/</comments>
<pubDate>Mon, 22 Feb 2010 21:19:57 CST</pubDate>
<dc:creator>LinuxTips</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/how-to-install-vlc-media-player-in-ubuntu-10-04-lucid-lynx/</guid>
<description><![CDATA[Here's is a guide to install VLC using motumedia ppa.To install VLC, you will need to install the medibuntu-keyring, w32codecs and libdvdcss2.For that open a terminal and type the following.$ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 2EBC26B60C5A2783 $ sudo apt-get update&nbsp;$ sudo apt-get install medibuntu-keyring$ sudo apt-get update$ sudo apt-get install w32codecs$ sudo a<br/><br/>5 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Bounce Rate Explained]]></title>
<link>http://supertechnews.com/software/bounce-rate-explained/</link>
<comments>http://supertechnews.com/software/bounce-rate-explained/</comments>
<pubDate>Mon, 22 Feb 2010 21:18:33 CST</pubDate>
<dc:creator>Littletechgirl</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/bounce-rate-explained/</guid>
<description><![CDATA[<br/><br/>7 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Internet Things That Are Still Working Right]]></title>
<link>http://supertechnews.com/software/internet-things-that-are-still-working-right/</link>
<comments>http://supertechnews.com/software/internet-things-that-are-still-working-right/</comments>
<pubDate>Mon, 22 Feb 2010 21:15:37 CST</pubDate>
<dc:creator>cmackwan</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/internet-things-that-are-still-working-right/</guid>
<description><![CDATA[The weekend was not a good time in Internet Land. Facebook broke. Buzz is still ticking people off left and right, with some saying that Google doesn&#8217;t give a crap about anyone but themselves. Apple went on a banning rampage, again. Aaaaand last but not least, Firefox 3.6 now has a rather nasty exploit.Given that the #1 social network broke, Buzz still sucking, Apple banning and Firefox use<br/><br/>15 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Ask DLS: best desktop Facebook client?]]></title>
<link>http://supertechnews.com/software/ask-dls-best-desktop-facebook-client/</link>
<comments>http://supertechnews.com/software/ask-dls-best-desktop-facebook-client/</comments>
<pubDate>Mon, 22 Feb 2010 21:06:55 CST</pubDate>
<dc:creator>Download</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/ask-dls-best-desktop-facebook-client/</guid>
<description><![CDATA[Filed under: Internet, Social Software, Ask DLSToday I tried doing something which seemed really simple at first glance: I set out to get a list of Facebook status updates on my desktop. Just the updates. No pictures, no pokes, no Farmville. I kind of wanted to be able to post replies, but that wasn't super-important.And after spending quite a bit of time, I simply couldn't find anything worthy. <br/><br/>15 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Web and iPhone booty call app PinpointsX 'points you to passion']]></title>
<link>http://supertechnews.com/software/web-and-iphone-booty-call-app-pinpointsx-points-you-to-passion/</link>
<comments>http://supertechnews.com/software/web-and-iphone-booty-call-app-pinpointsx-points-you-to-passion/</comments>
<pubDate>Mon, 22 Feb 2010 21:06:52 CST</pubDate>
<dc:creator>Download</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/web-and-iphone-booty-call-app-pinpointsx-points-you-to-passion/</guid>
<description><![CDATA[Filed under: Internet, Web services, web 2.0I absolutely must preface this story by saying I do not own an iPhone. I have never used an unsecured cellular phone to arrange a booty call, and I always use cash. With that out of the way, I give you PinpointsX. Before you get too excited, it seems the mobile version of PinpointsX seem to be offline at the moment (perhaps Apple culled it!), but you ca<br/><br/>5 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[CodeOrgan plays your website's tune, and it sounds better than you'd expect]]></title>
<link>http://supertechnews.com/software/codeorgan-plays-your-websites-tune-and-it-sounds-better-than-youd-expect/</link>
<comments>http://supertechnews.com/software/codeorgan-plays-your-websites-tune-and-it-sounds-better-than-youd-expect/</comments>
<pubDate>Mon, 22 Feb 2010 21:06:45 CST</pubDate>
<dc:creator>Download</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/codeorgan-plays-your-websites-tune-and-it-sounds-better-than-youd-expect/</guid>
<description><![CDATA[Filed under: Audio, Fun, WebWhat does your website sound like? Now there's a new way to find out. I'm not talking about GeoCities-style autoplaying midis, here, I'm talking about CodeOrgan. CodeOrgan is a new web-based toy that turns the source code of your page into a synthesized jam. I expected it to do grievous damage to my ears, but CodeOrgan actually generates fairly listenable results. The <br/><br/>13 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Howto: VPN connection setup on ubuntu 9.10 karmic koala]]></title>
<link>http://supertechnews.com/software/howto-vpn-connection-setup-on-ubuntu-9-10-karmic-koala/</link>
<comments>http://supertechnews.com/software/howto-vpn-connection-setup-on-ubuntu-9-10-karmic-koala/</comments>
<pubDate>Mon, 22 Feb 2010 01:44:05 CST</pubDate>
<dc:creator>LinuxTips</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/howto-vpn-connection-setup-on-ubuntu-9-10-karmic-koala/</guid>
<description><![CDATA[I took this from&nbsp;http://ubuntuforums.org/showpost.php?p=8261958&amp;postcount=6&nbsp;There are so many variations on these VPN implementations that it is extremely difficult to generalize a known-good configuration for each. Install from the various VPN components PPTP&nbsp;(Microsoft VPN)pptp-linux network-manager-pptp b. VPNC (Cisco VPN)vpnc network-manager-vpnc c. OpenConnect&nbsp;opencon<br/><br/>5 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Treating users like people]]></title>
<link>http://supertechnews.com/software/treating-users-like-people/</link>
<comments>http://supertechnews.com/software/treating-users-like-people/</comments>
<pubDate>Mon, 22 Feb 2010 01:43:01 CST</pubDate>
<dc:creator>TechTipsFixesAndWhitepapers</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/treating-users-like-people/</guid>
<description><![CDATA[As someone doing tech support or tech work how can you add value in the work that you do for the people that you support? Well I think there are three ways and each of these ways probably will putt you out of your comfort zone, which is great.1. When doing support always refer to the computer as a pet &#8211; Most people have no real relationship with their computer and they treat it badly. One o<br/><br/>7 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[The 3 Most Important Principles of Blogging]]></title>
<link>http://supertechnews.com/software/the-3-most-important-principles-of-blogging/</link>
<comments>http://supertechnews.com/software/the-3-most-important-principles-of-blogging/</comments>
<pubDate>Mon, 22 Feb 2010 01:42:15 CST</pubDate>
<dc:creator>Littletechgirl</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/the-3-most-important-principles-of-blogging/</guid>
<description><![CDATA[<br/><br/>10 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Quite Possibly The Most Lightweight CMS Ever]]></title>
<link>http://supertechnews.com/software/quite-possibly-the-most-lightweight-cms-ever/</link>
<comments>http://supertechnews.com/software/quite-possibly-the-most-lightweight-cms-ever/</comments>
<pubDate>Mon, 22 Feb 2010 01:39:20 CST</pubDate>
<dc:creator>cmackwan</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/quite-possibly-the-most-lightweight-cms-ever/</guid>
<description><![CDATA[If you ever need to develop a small website (say 10 pages or less) but don&#8217;t want to have to manage the HTML source on each page, a CMS (Content Management System) is the way to go. There are already well established, powerful systems out there, but if you want something lightweight and simple, Zimplit is something you should try.Zimplit does not have a database backend, it is simply a tool<br/><br/>14 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Goodbye Google Gears, Hello HTML5]]></title>
<link>http://supertechnews.com/software/goodbye-google-gears-hello-html5/</link>
<comments>http://supertechnews.com/software/goodbye-google-gears-hello-html5/</comments>
<pubDate>Mon, 22 Feb 2010 01:28:09 CST</pubDate>
<dc:creator>Download</dc:creator>
<category>Software</category>
<guid>http://supertechnews.com/software/goodbye-google-gears-hello-html5/</guid>
<description><![CDATA[Filed under: Developer, Web services, GoogleWe already knew Google Gears was on its way out, but Google has now basically lowered the casket into the ground. Gears powered a bunch of web apps in its day, but now Google's stopping work on it and switching to supporting its features natively in Chrome using HTML5 and other emerging web standards.What does this mean for current Gears users? Well, su<br/><br/>6 Vote(s) ]]></description>
</item>

</channel>
</rss>
