The Best Free File Renamer!

This article was written on September 08, 2007 by CyberNet.

File Renamer

It had just occurred to me that I had never written about one of my favorite free file renamer applications for Windows. It’s called ReNamer, and I’ll warn you that it’s not a program for the weak at heart. It’s loaded with powerful features, and that’s one of the reasons I love it!

ReNamer lets you add a series of rules that it will follow for renaming files in bulk. I use this on a regular basis for renaming photos so that all of the file names don’t look like the generic DSC0000018.JPG or IMG0002388.JPG. With ReNamer I can sequentially rename the photos so that they all actually have a descriptive name.

This is the most powerful free file renamer that I’ve come across, and I’m sure you can find ways to rename just about anything using the different types of rules that are available:

File Renamer Rules

I had thought about putting together a guide on how to use the software, but I was already beaten to it. There is a Quick Start Guide (2 pages) and a Beginner’s Guide (27 pages) available in PDF format on the file ReNamer download page. The Beginner’s Guide covers just about everything you would want to know, and it has a bunch of screenshots to walk you through the all the steps.

Oh, and I almost forgot to mention one of ReNamer’s best features. You can download it with an installer or as a standalone 2.3MB program. I’ve thrown this on my USB drive, and carry it around with me wherever I go!

Download File ReNamer

Windows Tip: You can sequentially rename files in Windows Explorer by highlighting the respect files and pressing the F2 key. While this is convenient it doesn’t offer any sort of customizability.

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


CyberNotes: Shortcut to Show/Hide Hidden Files

This article was written on July 24, 2008 by CyberNet.

CyberNotes
Tutorial Thursday

arrow Windows Windows only arrow
One of the things that I’ve always done on my Windows computers is have them show all of the hidden files. Some people think I’m crazy because this adds a lot more clutter, but it always seemed as though I frequently had to access files there were otherwise hidden. Sure I liked when some files were out-of-sight because I only ever mess with a handful of them, but the hassle of going into the Windows Explorer options every time I needed to see some hidden files just wasn’t worth it.

After a little research I had come across an article on the PCWorld forum that outlined how I could create a shortcut that would enable or disable hidden files on the fly. If the setting is enabled it would disable it when run, and vice versa. It’s one shortcut that serves as an on/off switch for hidden files. Here’s how you do it:

  1. Open up Notepad and paste in the following text:
    Set sh = CreateObject("WScript.Shell")
    theKey = "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Hidden"
    setHidden = sh.RegRead(theKey)
    If setHidden = 1 Then
    setHidden = 0
    MsgBox "System and hidden files will no longer appear in Explorer.",64,"Hidden File Exchange"
    Else
    setHidden = 1
    MsgBox "System and hidden files will appear in Explorer.",64,"Hidden File Exchange"
    End If
    sh.RegWrite theKey,setHidden,"REG_DWORD"
    Set sh = Nothing
  2. Save the file with any name you want, but make sure to designate the extension to be “.vbs”:
    notepad vbs.jpg
  3. Run the file that you just saved. Give it a few seconds to take affect, but you should see the results without even having to restart Windows Explorer.
  4. If you want you can place this script file anywhere you’d like on your computer, and then you can create a shortcut to it by right-clicking on the file. I recommend placing a shortcut to the file in the Windows Explorer Favorites for fast access from the Favorites menu.

Compatibility: I’ve verified that this works on Windows XP, but it only works on Vista when User Account Control (UAC) is disabled. This is because it needs access to the registry, and Vista doesn’t allow that unless it is run as an administrator. Since it is a VBS file the “Run as Administrator” option does not appear when right-clicking on the file.

By default the script will prompt you with the current setting for the hidden files each time you run the script. That way you know whether you are turning them on or off. If you don’t want to see the prompts just remove the following two lines that I’ve highlighted in the code:

hidden files message box.jpg

Now you are all set with a shortcut that can enable or disable hidden files in Windows Explorer. This should help reduce the clutter you see on a regular basis by keeping the hidden files out-of-sight when they’re not needed, and then pulling them up when you need to make a change. How convenient is that?

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


CyberNotes: Easily Configure Firefox’s “Hidden” Settings

This article was written on May 30, 2007 by CyberNet.

CyberNotes
Web Browser Wednesday

At first glance it may seem like Firefox lacks a lot of configuration options, hoever, much of the fine tuning lies underneath. Most Firefox power users will know about the about:config window which can sometimes be a tedious tool ,but there are a lot of customizable options located there.

Mozilla actually warns users that they should not change settings in the about:config window unless they really know what they are doing. Often times it is compared to editing the Windows Registry, where one wrong setting can crash Windows.

To help users out we have provided our own guide to configuring Firefox using about:config, which also includes a long list of tweaks. If it just doesn’t seem worth the hassle, then you’ll want to continue reading this article because there are now much easier ways to tweak those “hidden” settings…

—Preferential (Homepage)—

Nogg3r5 pointed out this great extension over in the CyberNet forum. It is a great extension because it takes everything from the about:config and breaks it up into categories. To top it off, they provide a description for all of the entries so that you know what they do without needing to visit Mozilla’s knowledgebase!

After installing the extension you’ll notice a new entry in the Tools menu immediately below the Options choice:

Preferential

Then you’ll be presented with a bunch of collapsed menus which look something like this:

Preferential
Click to Enlarge

You can now start browsing through the settings to find the ones you are looking for. From what I have seen, the largest category of settings can be found in the browser section:

Preferential
Click to Enlarge

This is definitely something that Mozilla should look at including in Firefox as a better way to edit the entries in the about:config screen.

—Configuration Mania (Homepage)—

Now if that still seemed too complicated, you need something that breaks it down even further. How about something that puts the settings in an easy-to-understand interface similar to the existing configuration screen for the Options? Let’s now turn our attention to Configuration Mania!

This extension is cool because it puts a ton of settings together in a way that makes them very easy to understand and manipulate. Before now, almost all of these settings had to be configured through the about:config screen, but now they will almost seem as if they were naturally integrated in Firefox.

Just like the Preferential extension, Configuration Mania has its options located in the Tools menu:

Configuration Mania

Starting up that extension will present you with a screen similar to this one:

Configuration Mania
Click to Enlarge

As you can see this one also has collapsible menus, but it organizes the settings a little nicer. Oh, and don’t be deceived by the small appearance because there are a lot of settings there for you to tinker with. Here is a screenshot of what all the browser settings look like when they’re expanded:

Configmania3
Click to Enlarge

And that is only the settings from one of the 5 tabs! Here are a few more screenshots from the rest of the tabs:

Configuration Mania Configuration Mania Configuration Mania Configuration Mania
Click to Enlarge

As you can see there are a lot of different things available for you to configure and play with, but it will take some time to go through all of the settings presented here. Let us know if you find any you didn’t know about!

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


CyberNotes: Getting the most out of Firefox Sidebars

This article was written on March 28, 2007 by CyberNet.

CyberNotes
Web Browser Wednesday

Firefox is an extremely customizable browser, and combining that with the growing popularity of widescreen monitors results in more sidebars. I used to never use sidebars before I got a widescreen computer because it just took up extra screen space that was otherwise pretty useful. Now you’ll hardly ever find me with a sidebar not open on my computer!

There are so many things that you can do and so many Firefox extensions available to utilize your sidebar space. Most commonly it is used for bookmarks, but there are a lot of other things that you can do with it as well. For example, Digital Inspiration recently noticed that you can place Google Talk in your sidebar:

Firefox Sidebar

It may sound like you need an extension to do something like this, but surprisingly, you don’t. Firefox is designed so that you can have any website open in a sidebar and since Google made the Google Talk client available on the Web, it is possible to chat with your friends in the Firefox sidebar. We’ll use the Google Talk as an example of embedding a website into a sidebar:

  1. Right-click on this URL: http://talkgadget.google.com/talkgadget/client and bookmark it.
    Firefox Bookmark
  2. After you have saved the bookmark, go back to the Bookmarks menu and right-click on the bookmark. Choose the Properties option.
    Firefox Bookmark
  3. Now check the box that says Load this bookmark in the sidebar:
    Firefox Sidebar
  4. Now the next time you click on that bookmark to open it will popup in the sidebar!

You can use that trick with any website, but it is really only useful if the website is designed for smaller screens so that it fits the width of the sidebar well. I would also say that it doesn’t work too bad with Meebo, but if you have a lot of chat windows open it can quickly become cluttered.

If you wanted to put your Google Personalized Homepage in the sidebar it wouldn’t look quite right since there is a huge header area that you probably don’t need, and all of the modules are spread out over three columns. There is an actual extension called iGoogle that will bypass this problem by putting all of your modules into a single column, and you’ll still have access to your tabs:

Firefox Sidebar

But how do you manage all of your sidebars in a quick and easy way? For that you’ll probably want to use All-in-One Sidebar which makes it easy to switch between all of your different sidebars. Not only that but it also lets you configure which side of the screen, left or right, the sidebar actually appears.

Now if you are fortunate enough to have a lot of extra screen space, you might want to use multiple sidebars. There is an extension for that as well called MultiSidebar that lets you pick the position of the sidebar in the browser as well as open multiple sidebars:

Firefox Sidebar

There is so much that you can do with the sidebars that it may seem a little overwhelming at first. Once you start getting used to them, you begin to wonder how much more productive they let you become. Let us know in the comments below how you use your sidebar to help you be more productive or useful.

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


Stretch Dual Monitor Wallpapers

This article was written on September 11, 2007 by CyberNet.

Desktop Wallpaper Multiple monitor setups are becoming increasingly abundant these days, and I for one couldn’t imagine not having two monitors. I have a 24" Dell (1920×1200 resolution) and a 15" laptop screen (1680×1050 resolution) that I place side-by-side as seen here. The thing is that getting the wallpapers to effortlessly flow across from one monitor to another could be better in Windows, or maybe you would like to set a different background for each screen?

Give a warm welcome to a free app called DisplayFusion. It has a host of features not only for managing the backgrounds on multiple monitors, but also for moving windows from one screen to another using hotkeys:

  • Use a different wallpaper on each monitor (either a picture or solid color)
  • Stretch a wallpaper across all monitors (either a picture or color)
  • Integrated Flickr image search & download
  • Drag maximized windows by their title bars to other screens
  • Easily manage application windows with customizable hotkeys:
    • Move windows to the next monitor
    • Move windows to the next monitor and maximize them
    • Move windows to center of the screen
    • Move windows to center of the screen and size it to 75% of the work area
    • Tile windows along the top, bottom, left or right side
    • Maximize windows so that they span all monitors

For being less than a month old I would have to say that this free app already feels pretty mature. The download is pretty small (just 326KB), but it does require a quick setup.

Tip: DualMonitorBackgrounds.com is a good source for the wide wallpapers.

DisplayFusion (for Windows 2000/XP/2003/Vista)
Source: How To Geek

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


Helpful Tip: Middle-Click on a Touchpad Laptop Mouse

This article was written on October 06, 2007 by CyberNet.

Touchpad Mouse I’ve never really understood why the idea of creating a laptop that includes a third mouse button never really took off. Would it be all that bad to have some miniature button squeezed in between the left and right buttons on the touchpad?

The middle mouse button is important to me because I use it to activate special actions in all kinds of different applications, especially in my browser. I can middle-click on a tab to close it, or middle-click on a hyperlink to have it open in a new background tab. That kind of functionality is hard to give up once you’ve become accustomed to it, but so many laptop users just forget about it. Well, not me!

–Two Button Middle Click–

I’ve heard that most laptops simulate a middle mouse button when the user presses both the left and right buttons at the same time. I was initially excited, and thought that this would cure all of my problems. Unfortunately, it has never worked on any laptops I’ve tried.

That was my ideal solution, and I searched like a mad monkey trying to find a way to make it happen. To my dismay I was on my own because Google didn’t come through for me. Then it dawned on me that I could easily do this myself with an AutoHotKey script! In fact it only took two lines of code:

~LButton & RButton::MouseClick, Middle
~RButton & LButton::MouseClick, Middle

That essentially checks to see if both mouse buttons have been pressed down at the same time, and if they have then simulate a middle-click of the mouse. Pretty cool, huh? I also put it together in a standalone application that you can throw in your Windows Startup folder without needing to have AutoHotKey installed:

Download the Middle-Click Simulator

There is one downside to using this though. If you use a Rocker mouse gesture (holding down one mouse button and pressing the other) to navigate in an application, such as going backward/forward in a browser, you’ll be disappointed to know that it will no longer work. I’m not quite sure how I can circumvent that problem in the script, but for right now I would rather have the middle-click simulation available. It is possible to “pause” the script (a.k.a. temporarily deactivate it) from the System Tray icon if needed though.

–Middle Click Tap Zone–

Some mouse software also lets you setup a “zone” that you can tap on the touchpad to serve as the middle mouse button. Below is a screenshot from my Synaptics TouchPad configuration screen which shows that I’m about to assign the bottom-left corner of my touchpad to the middle-click action.

Middle-Click Tap Zone

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


InvisibleHand Does Behind-the-Scenes Price Comparisons for Firefox/Chrome Users

This article was written on January 05, 2010 by CyberNet.

invisiblehand-1.png

I heard about the InvisibleHand Firefox/Chrome extension on the Windows Weekly podcast, and it sounded like something that would be useful for all the online shopping that I do. Its purpose is to notify you when something you’re looking at or searching for can be found even cheaper at another site on the web. As you can see above when I was searching for a copy of Windows 7 Home Premium on Amazon it notified me that it was $6.50 cheaper on Buy.com. It’s very unobtrusive, which is a must for an add-on like this.

It supports 52 different retailers in the United States, 46 in the U.K., and 15 in Germany. What’s nice is that the “View all offers” button doesn’t take you to ad-ridden site, and instead presents you with a simple drop-down list of the other retailers, sorted by price, who match your product.

The add-on obviously makes money through affiliate programs thereby giving the developers a percentage of the purchases that you make. That doesn’t bother me because I think that it’s a no-brainer way to help support the add-on development cycle. From my point of view the downside is the data they collect:

  • The URL of the site that you originally search for your chosen product on.
  • The characteristics of the product that you search for.
  • The URL of any site that you visit that is notified to you by the Add-on.
  • Other anonymous technical and routing information relating to your product search and any visit that you may make to a third party site that you were alerted to by the Add-on. This information may include your IP address, but you will not personally identifiable from this information.

This add-on is awesome and all, but I’m not a huge fan of products that are keeping tabs on my surfing habits. Unfortunately the only option you really get with InvisibleHand is whether you want it to automatically do price lookups for the things you’re Googling for, too. You can’t actually turn it on or off as needed, which for me is a necessity. Personally I’m going to leave the extension installed, but I’ve disabled it in the add-ons management screen so that I can switch it on only when I need it.

Get InvisibleHand for Firefox or Chrome

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


Ginipic: Enhanced Image Search for Your Desktop

This article was written on March 31, 2009 by CyberNet.

ginipic-2.jpg

arrow Windows Windows only arrow
Searching for a specific image on the Internet can be like trying to find a needle in a haystack. Some sites, such as Google Image search, try to make the process easier, but shuffling through one page after another of results can quickly get tedious.

That’s where the free desktop application called Ginipic comes into play. You can view hundreds of results at a time, and inserting an image into an app like PowerPoint is as easy as dragging-and-dropping it. To see how easy it really is checkout their video tour.

Here are some other features that make Ginipic worth it:

  • Multiple Sources – You can choose to search your favorite search engine or photo-sharing site (Flickr, Google, Yahoo!, SmugMug, deviantArt, Picasa, Photobucket, Facebook, and more), or expand your search to unlimited results with a click of a button, with our tailored “All Sources” option.
  • No Duplicates – Did you know that, on average, “big search engines not be named” give you 200 duplicates for every 1,000 results? Not with ginipic.
  • Incredible Variety – Ginipic gives you the power of the web to find ANY picture in ANY category with NO restrictions.
  • Advanced Search – Advanced search gives you the ability to customize your queries in each source – just as you would on their site.
  • Resizing – Choose your own preview size for the best possible experience! Maximize to enjoy the picture in all its glory, work small if you’re just browsing away.
  • Tagging – Tag your pictures away and see them all in a heartbeat by choosing your tag in the comfortable Favorites source. Not a tag person? Just favorite the picture and you’ll still have a super easy access to it.
  • Drag & Drop – Drag & Drop functionality gives you the ability to start working immediately – you see something you like, just drag it in your work space and continue working.
  • Save Images Locally – Want to backup or save it for later? No need in clumsy “right click, save as, too hard to understand what’s going on” options – just save the picture right from the preview window when you’re satisfied.
  • Set as Wallpaper – Do you feel like changing your background? Just hit the “Set as wallpaper” on any picture and instantly your desktop will change and renew before your eyes.

This is definitely a slick app, and truly handy for those heavy images searchers out there. Give it a whirl and let us know what you think.

Get Ginipic for Windows [via Lifehacker]
Thanks Sanji for the tip!

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


CyberNotes: Auto-Click Your Mouse

This article was written on June 12, 2008 by CyberNet.

CyberNotes
Tutorial Thursday

arrow Windows Windows only arrow
Wouldn’t it be cool if there was a way for you to dominate those “shoot the monkey” ads that popup all over the place? Just imagine all of the fame and glory you would receive from your friends! You just need one tool to get the job done… a mouse auto-clicker.

On a more serious note having something that can automatically click the mouse buttons can actually be handy. Maybe you’re trying to test the way an application operates, or maybe you’re playing an intense game that requires excessive clicking. It doesn’t really matter what you’re reasoning is, but if you need to click the mouse at regular (and somewhat insane) intervals we’ve got the application for you.

AutoClick is a freeware Windows application that requires absolutely no installation. Once you have downloaded it and get it running you should see a screen similar to this:

autoclick.png

–Automated Clicking–

To get started you should start by playing around with single-task automated clicking. This will simulate the clicking of the mouse in a single area on the screen, and if you enable the Freeze Pointer option the position you specify will remain constant even if you move the mouse.

Here are the steps needed to automate the clicking of a single point on the screen:

  1. In the settings specify what kind of clicks you want performed (left/right/middle and single/double), and also the interval at which the clicks should occur. Optionally you can limit how many clicks should be performed.
  2. Hover your mouse over the area on the screen where you want the auto-clicking to be performed.
  3. To start the auto-clicking press the F3 key.
  4. To stop the auto-clicking at anytime press the F3 key.

–Smart Clicking–

Smart Clicking is a little more advanced because you can specify multiple “hotspots” that will be clicked at any given interval.

Here are the steps needed to automate the clicking of multiple points on the screen:

  1. In the settings specify what kind of clicks you want performed (left/right/middle and single/double), and also the interval at which the clicks should occur. Optionally you can limit how many clicks should be performed.
  2. Press the F4 key to begin recording the click positions. Click and drag the Record button onto the area(s) you wanted to be clicked. The cursor should turn into blue crosshairs while you are dragging the Record button:
    autoclick record.png
  3. Repeat Step 2 for each of the areas that you wish to be clicked. When you’re done press the F4 key again.
  4. Check the Smart Click box in the settings to enable the playback of the clicks you just recorded, and then press F3 to start the auto-clicking. You should see it rotate through all of the areas you selected in Step 2.
  5. To stop the auto-clicking at anytime press the F3 key.

–Overview–

A tool like this can definitely save some time, and I was actually having some fun seeing what it looked like when clicking the mouse every 1/1000th of a second. It could actually make for a fun prank, too. Did I say that out loud? ;)

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


WrapUp: Adobe Flash 10.1 Beta, Listen to Entire Albums with Lala, and More

This article was written on November 23, 2009 by CyberNet.

Welcome to the WrapUp by CyberNet. This is a collection of news stories, downloads, and tips that we have collected over the last few days, but never got around to writing about. Don’t forget to send in your own tips, or just leave a comment on this page if you think you’ve got something we should include.

–News–

google chrome os.jpgGoogle Chrome OS
This was a pretty big week for Google, and in the middle of it was their announcement that they were open sourcing the Chrome OS already. They are doing this so that they can start working with partners, the open source community, and developers prior to the launch late next year. Running the new OS isn’t exactly a point-and-click operation, but some sites have already posted instructions as to how you can have it up and running in a virtual machine with very little work.


gmail creator.jpgGmail Creator Thinks Email Will Last Forever
The creator of Gmail, Paul Buchheit, was interviewed by TechCrunch with the topic of whether email was ready to die. They talked about whether something like Google Wave would be enough to kill it. In a nutshell he said that email is not going to fall off the face of the Earth… well, at least not “until robots kill us all.”  


adobe air touch.jpgAdobe Flash Player 10.1 and AIR 2.0 Beta’s Available
Both Beta versions of Adobe’s flagship frameworks sport multi-touch gestures, which will be an important addition as Windows 7 touch-screen machines increase in popularity. They are also both significantly better in performance, or they are at least in the quick checks that I’ve performed.


–News in Brief–

sneak preview calendar.jpgGoogle Calendar Testing “Sneak Preview”
Google Calendar users will be able to enjoy a Labs feature (being rolled out) letting you preview whether an appointment you’re creating conflicts with something else on your schedule.


windows 8.jpgWindows 8 Expected in 2012
Looking at Microsoft’s roadmap it appears as though they will try to stick to a three-year release cycle for Windows 8.


office 2010 mobile.jpgOffice 2010 Mobile Beta Available
Microsoft has posted the mobile version of Office 2010 Beta for anyone running Windows Mobile 6.5.


skype logo.jpgeBay Completes Skype Sale at $2.75 Billion Valuation
eBay has sold off a majority (70%) of their ownership of the Skype software company.


automatic captions.jpgAutomatic Captions in YouTube
Google has employed an automatic speech recognition system on YouTube videos so that users can get closed captioning on nearly all uploads.


rtm calendar.jpgRemember the Milk Gadget for Google Calendar
Remember the Milk (RTM) users can enable a sidebar gadget in Google Calendar for easy task management.


ie9.jpgInternet Explorer 9 Announced
At PDC Microsoft unveiled some of the things that should be expected from IE9, including hardware acceleration.


mininova.jpgMininova Breaks 10 Billion Torrent Downloads
The popular BitTorrent search engine hits the huge 10 billion download milestone.


install silverlight.jpgSilverlight 4 Beta Released
The new version of Silverlight includes huge performance gains as well as support for the Chrome browser.


google image swirl.jpgExplore Images with Google Image Swirl
Google showed off a new way to search for images this week called Google Image Swirl. It tries to group images according to the subject of the photo.


ubuntu music.jpgUbuntu One Music Store
Canonical is working on a music store for their Ubuntu operating system that could compete with iTunes.


google templates.jpgTemplates Available in Google Sites
Anyone looking to create a quick website can find refuge in the new templates offered by Google Sites.


google translate.jpgA New Look for Google Translate
Google Translate can now translate your text as-you-type, and provides phonetic pronunciations for people who can speak languages like Chinese but don’t know how to read/write them.


–Tips, Tutorials, and Reviews–

aruna file upload-1.jpgUse Aruna to Share Files  
Finding a good way to share files with friends can be difficult because of limitations many of them impose, but GoAruna knocks off most of those barriers. You can upload an unlimited number of files as long as each one is under 100MB in size. They can then be shared with anyone that you want through a simple URL. You can even manage the files you’ve uploaded through a convenient interface.  


lala.jpgListen to Entire Music Albums with Lala
There aren’t many sites out there that will let you legally listen to entire songs or albums, but Lala is one of them. The catch? You can only listen to each song once. That is a pretty big limitation, but what’s nice is that this gives you the chance to preview entire albums before you decide whether there’s just a few songs you want to pickup.


quick steps.jpgOffice 2010 “Quick Steps” Feature
One of the new features in Office 2010 Beta is the ability to add “Quick Steps” in Outlook. These are essentially easy-to-create macros that make managing your emails that much better. They can be used to forward/send email, archive emails to a certain folder, and a lot more.


–Tips in Brief–

google chrome logo.jpgHow to Run Google Chrome OS from a USB Drive
This is a guide showing you how you can run Chrome OS on your PC using a USB drive.


grep windows.jpgGrep on Windows
Search multiple files on Windows using the same popular format found in Unix/Linux.


itunes menubar.jpgiTunes in your Mac Menubar
Mac users can control most aspects of iTunes right from the Menubar with this free app.


foobar2000.jpgFoobar2000 v1.0 Beta Available
It’s been over 7 years in development, but version 1.0 of Foobar2000 is on the horizon with features like Windows Media streaming support.


pidgin plugins.jpgAdd 50 Pidgin Plugins with One Download
Grab all of the most popular Pidgin plugins without having to hunt them down one-by-one.


firefox tray.jpgMinimizeToTray for Firefox
The new version of this popular extension now supports Firefox 3.0 and beyond.


faststone image viewer.jpgFastStone Image Viewer 4.0
The update to this image viewer includes performance improvements, Windows 7 compatibility, and more.


http headers.jpgFind “Secret” Messages in Website Headers
This isn’t all that useful, but can definitely be fun!


ubuntu koala.jpgExtensive Ubuntu 9.10 Review
Ars Technica provides an in-depth review of the latest Ubuntu 9.10 operating system.


flv converter.jpgConvert FLV Video to AVI
Convert your favorite Flash videos to a format that is more device-friendly.


seesmic desktop.jpgSeesmic Desktop for Windows
This is one of the first Twitter clients for Windows that doesn’t use Adobe AIR, and the interface fits in better with other aspects of the operating system.


mmkeys.jpgmmKeys.dll Makes iTunes Work with Multimedia Keyboards
This DLL will address compatibility issues between iTunes and multimedia keyboards.


sumatra.jpgSumatra PDF Reader 1.0
Sumatra still keeps things lean in terms of it’s PDF capabilities despite hitting the big 1.0 milestone.


monitor site changes.jpgMonitor a Website for Changes
Get notified when the content on a website changes.


myports.jpgMyPorts Gives You Detailed Info on Open Ports
See what ports are currently being used on your computer, and which applications have them open.


–Downloads–

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts: