Pages

Tuesday, March 27, 2007

Severus Snape Vindicated


codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"
width="500" height="193"
id="Countdown Snape">






Sunday, March 18, 2007

Eight most Essential FireFox Extensions

  • BugMeNotBypass compulsory web registration with www.bugmenot.com

This is a very useful extension to have when encountered with login pages that are scattered all over the www. If u doesn’t want to end up receiving countless number of registration and confirmation seeking emails just for a download or for a precious piece of information you seek, BugMeNot is for you. When installed it appears in the right click menu and when encountered with a login form it checks with a user generated database and most of the time comes up with a valid login id.You can submit your login details to BugMeNot too to grow and increase its usability.

Sites I found that are supported by bugmenot include some very famous ones like cooltoad and obscure ones like digitalantic , xpressurself.

  • Del.icio.uskeep , share and discover all your favourite things

A social book marking site that’s very much useful while searching for those obscure but useful sites that Google doesn’t come up with or the ones it filters out. Users can submit their own bookmarks to share and can access their bookmarks from anywhere through the internet.

  • FlashblockReplaces flash objects with a button you can click to view them

For those who browse the internet with volume based plans, Flashblock allows you to block those flashy ads that eat up MBs .A play icon notifies the presence of flash content and clicking over it allows the user to play it.

  • Google Toolbar FireFox-take the power of Google with you anywhere on the web!

Search using Google without ever having to go to google.com. Although most present day browsers provide integrated search engines (IE7,Firefox2,Opera), the Google toolbar comes with an array of useful and handy easy to locate gadgets like autofill- fills registration details in a jiffy, search Google images, news,…, the latest version has Google suggest integrated in it. Comes with a spellcheck feature and an atom feed subscriber.

  • IE tab
Did you know that the web looks different to different people depending on the medium through which they are looking?, in this case different browsers give different views for the same website. Handy firefox extension that brings the internet explorer inside it.
  • ScrapbookHelps you to save web pages and organize the collection

A magnificent extension that is so cool that it has been referred in the ‘the Hindu’ netspeak. Scrapbook allows users to capture the current page they are viewing, including images, the pages itself are editable, so it’s not a mere screenshot. Using scrapbook one can capture a whole website locally by pursuing the links present.

  • WebdeveloperAdds a menu and a Toolbar with various webdeveloper tools

Handy for web developers with a fantastic collection of validators and tools. You would amaze at the number of tools in a single extension, that too every bit of it useful.

  • Febe - Firefox Extensions Backup Extension

And finally to top it all, the extension that allows you to save and backup all these fantastic addons.Firefox Extensions Backup Extension! , saves all extensions as installable .xpi files.

Convert your Windows XP to Windows Vista

picture courtesy :R.Srijith


VISTAMIZE YOUR XP




picture courtesy:R.Srijith

Now that the windows vista has been launched finally and is being seen more and more in the computer peripherals around you, what should the envious ones whose systems are still in the archive era of 256 MB RAM with no graphics card on board do?

Of course make their XP at least look like VISTA, and here is a reliable way on how to go about it.

The vista transformation pack 6 is a highly reliable conversion tool that makes your XP into something like VISTA and yes it converts your xp to something that’s not VISTA nor XP. You’ll be left somewhere in the middle, with a cool new look and cool gadgets like a sidebar that offers a wonderful collection of utilities. To top it up, install the TOPDESK utility and the transformation is complete. The TOPDESK gives the aero effect, the much proclaimed ALT+TAB effect, again the xp way. Don’t expect the perfection of the real thing, but this as close as you can get.

So why should you be weary?

The creators say it does not contain any spyware or an adware, but they do say that they will not be taking any responsibility for anything gone wrong whatsoever. You must be aware that the utility enhances looks by drawing on the system resources and tweaks your system files to a level that can create system instability. It could crash, so backup your precious data on your system drive.AND there’s no uninstall. If the system crashes you grotto reinstall. You forgot to back data? Try using a Linux live cd and move as much as possible to other drives from your system drive.

We tested the transformation pack on 3 systems and none have crashed and all have worked flawlessly until now, on a dual core 2 GB RAM laptop, on a 512 MB RAM desktop and on a 256 MB RAM desktop with shared video memory.

So if your system comes in this category, then go ahead get that new looks and hey it doesn’t cost you anything ,except may be some unused computing power , its free and open and they do provide full and free updates.

P.S :TOPDESK is not a free utility.
Download vista transformation pack 6 from here

The 15 Essential UNIX commands

The 15 Essential UNIX commands


  1. man - show manual for a command, example: ‘man ls’ hit ‘q’ to exit the man page.
  2. cd - change directory, example: cd /etc/
  3. ls - list directory, similar to dir on windows. example: ls /etc, ‘use’ ls -l /etc to see more detail
  4. cp - copy a file or directory, example: cp source dest if you want to copy a directory use the -R option for recursive: cp -R /source /dest
  5. mv - move a file, example: mv source dest
  6. rm - remove a file, example: rm somefile to remove a directory you may need the -R option, you can also use the -f option which tells it not to confirm each file: rm -Rf /dir
  7. cat - concatenate, or output a file cat /var/log/messages
  8. more - outputs one page of a file and pauses. example: ‘more /var/log/messages’ press ‘q ‘to exit before getting to the bottom. You can also pipe to more | more from other commands, for example ‘ls -l /etc | more
  9. scp - secure copy, copies a file over SSH to another server. example: ‘scp /local/file user@host.com:/path/to/save/file’
  10. tar - tape archiver, tar takes a bunch of files, and munges them into one .tar file, the files are often compressed with the gzip algorithm, and use the .tar.gz extension. to create a tar tar -cf archive.tar /directory, then to extract the archive to the current directory run tar -xf archive.tar to use gzip, just add a z to the options, to create a tar.gz: tar -czf archive.tar.gz /dir to extract it tar -xzf archive.tar.gz
  11. grep - pattern matcher, grep takes a regular expression, or to match a simple string you can use fast grep, fgrep failure /var/log/messages, I'm usually just looking for a simple pattern so I tend to use fgrep more than regular grep.
  12. find - lists files and directories recursively on a single line, I usually pipe grep into the mix when I use find, eg: find / | fgrep log
  13. tail - prints the last few lines of a file, this is handy for checking log files tail /var/log/messages if you need see more lines, use the -n option, tail -n 50 /var/log/messages you can also use the -f option, which will continuously show you the end of the file as things are added to it (very handy for watching logs) tail -f /var/log/messages
  14. head - same as tail, but shows the first few lines the file
  15. vi - text editor, there are several text editors such as emacs, and nano, but vi is usually installed on any server so its a good one to learn. To edit a file type vi file to edit a line press Esc i then to save changes and exit use Esc wq, or to quit without saving use Esc q!. There are a million other commands, but that will enable you to edit files at a basic level.

About Me

i am sarath a.This blog enlists motivational or inspirational works. GO For Maximum mischief.