Skip to main content

My FireFox 2.0 Setup - Extenstions, Themes, and Search Engines

Well I have done it, I've formatted and re-installed Windows XP. One of the very first programs I install is FireFox. Version 3 is still in Beta (more on that in a different post) so I stick with 2.0.0.11, it is far more stable and has more working extensions and themes.

I am currently using the Nasa Night Launch theme for a couple of reasons. Firstly I prefer dark colored themes, it doesn't disturb me or my wife (as much) at night and it saves on power consumption over the long term. Secondly, it does work with FireFox 3 right now.

So what extensions do I have?
  • Adblock Plus - the must have ad blocker
  • del.icio.us Bookmarks - points to my bookmarks
  • FlashGot - for those large downloads
  • Forecastfox - I love the long range weather forecasts
  • FoxyTunes - Integrates nicely with iTunes
  • Google Browser Sync - Private bookmark syncing and I can sync with my work computer
  • Google Photos Screensaver
  • IETab - Becuase some pages can only be viewed in IE
  • NoScript - Another must have security tool
Web Development Addons
  • Firebug
  • Web Developer
Search Engines
  • Google - don't take me for a fool
  • Answers.com
  • Delicious - because it came with the extension
  • eBay - for finding things to buy
  • IMDB - I like my movie info
  • Wikipedia
  • Youtorrent
  • NewTorrents.info
  • Torrentz
  • Rapidshare Search
  • EZTV

Comments

Popular posts from this blog

Using Posix 7zip on the Cosole for Fast Compression

7zip has a fast compression algorithm using LZMA2 with as many threads (logic processors, cores, etc) as you like.  In this article we are focusing on the Posix version of 7zip for linux/unix. Here is an example command: 7za a -m0=lzma2 -mmt=2 -mx=1 MyZip.7z mydatabase.dpdmp -m0=lzma2 tells 7zip to use the LZMA2 compression algorithm. -mmt specifies the number of logic processors to use (multi threads) -mx=1 tells 7zip to use the fastest compression This is faster and better compression than zip and gzip and while comparable to bzip2 in size it is way faster than bzip2. Throw that together with a command that detects the number of logical processors and you get a function that discovers how many CPU's to use. LCPU=`cat /proc/cpuinfo | grep processor | wc -l` 7za a -m0=lzma2 -mmt=${LCPU} -mx=1 MyZip.7z mydatabase.dpdmp

Windows 7 x64 and Oracle 10g R2 Client Installation

By default Windows 7 x64 is not support in Oracle 10g R2, but 10gR2 does support Windows 2008 x64, so it should work with Windows 7 after some tweaking. Tweak the following two files: .\stage\prereq\db\refhost.xml .\stage\prereq\db_prereqs\db\refhost.xml To add the BOLD text below: <certified_systems> <!--Microsoft Windows 7--> <operating_system> <version value="6.1"> </operating_system> </certified_systems> Next edit the ./install/oraparam.ini file making the BOLD changes/addition: [Certified Versions] #You can customise error message shown for failure, provide value for CERTIFIED_VERSION_FAILURE_MESSAGE Windows=5.0,5.1,5.2,6.0, 6.1 Then just run the installer as Administrator and you are done.