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.

Friday, February 16, 2007

Is it possible?

  • i need to create an online bingo, to be played between two computers connected through lan

Monday, February 12, 2007

New Linux Kernel Will Increase Intellectual Superiority

By Brian Briggs



Santa Clara, CA - A recent survey of Linux users found that the two main factors in their migration to Linux was its stability and that it made them feel intellectually superior. Developers promise that along with USB support there will be increased intellectual superiority in the upcoming 2.4 kernel release AKA the "Hubris" kernels.

"Many users complained that in our previous release that we sacrificed some intellectual superiority in the name of 'ease of use'. We aren't going to make that mistake in this release," said kernel programmer Johan Klens.

IQ Chart"Programmers have worked very hard in the latest kernel release trying to make even simple tasks more difficult," continued Mr. Klens, "This release is going to include the "ocsh" - the obfuscated C shell, sure to be a favorite of intellectual superiors. In addition to inputting commands as obfuscated C code, users can also input commands in binary directly to the registers. It took me 10 minutes to code the directions to 'cat' using ocsh, but it was worth it!"

"I was impressed by the stability of Linux," said Thomas Azizi "and since I'm a loser in pretty much every other facet of my life, gloating about my OS choice makes me feel great."

"Let's face it. Linux isn't for dummies," said Linux advocate Dieter Braun, "There may have been a Linux for Dummies book, but I doubt it sold a single copy. I'm sure Windows for Dummies was a best seller."

Tuesday, February 6, 2007

Tryst with ubuntu 6.06

To the point :
the cd has some problem with it , its getting stuck . Work around - partition using the applicaion in the live cd called 'gpart'.

installed the system after a week long exercise.

There's nothing inside ,No music players ... not even a 'gcc'. everything must be downloaded.

Need to install java - how?
Applications->system->synaptic manager.

Sorry nothing there remotely connected to java. I downloaded and installed everything that began with java... , no use . (i was looking for javac - java compiler).
Wasted some 30 Mbs.


Began searching for "ubuntu 6.06 - install java" most of them were .deb files. absolutely no use ,full kachara , kept on searching - found this out but it cost me a 100Mbs worth download but voila java is home.

install java my way --->

On Debian/Ubuntu Linux for example all you need to do is make sure that your apt-get is pointed at the right place. In your /etc/apt/sources.list add in the following (and make sure you are okay with adding in stuff that is not in the default environment).

( you need to login as root for editing this file since otherwise its read only , and no the 'su' aint working ,so dont bother with that.How do you login as root? I HAVE NO IDEA. but booting in ubuntu recovery mode logs you in as root. But is that acceptable? and what about security? )

deb http://us.archive.ubuntu.com/ubuntu dapper main restricted
deb http://us.archive.ubuntu.com/ubuntu dapper universe multiverse

After this have apt updates its repository

sudo apt-get update (sudo is working fine though)

And finally, just tell it to install java :)

sudo apt-get install sun-java5-jdk


After this the rest of the process will display a dialog that will require you to accept the license agreement. When you do, the rest of the setup will happen on its own.

When you're on the command prompt type

javac -version

or

java -version


You should be good to go! Finally we have an easy way to install Java on the various Linux variants without having to fight with fakeroot and the other foolishness. Took Sun a criminally long time to do this, but I (not me - i have reasons to think otherwise) certainly thank them for it.

About Me

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