Posts tagged Firefox
Online Game Requirements Tester : Game-o-meter
Sep 1st

Simply having a GPU, RAM and processor need not get you some cool games in to action. Every game has got some minimum specs to be satisfied by the host PC which is called the system requirements of that game. The PC bench marking softwares such as PC mark, 3D mark etc will only provide some rating which can be of little help when it comes to running a game. The site which I am going to mention here is also a deed from FutureMark, Corporation – the developer of the above mentioned benchmarking softs. Game-O-Meter, thats what they call it More >
Win a Nokia N900 easily!
Mar 5th

As a part of publicing Firefox’s new mobile browser they are conducting a simple Q&A contest for users and the prize is a NOKIA N900 phone which is more or less equivalent to a netbook. The users need to simply answer 5 questions and answers for these will be hinted in the animation mentioned in the site. Dont forget to fill up the user details at end of the page. Just make a try and cry out of joy when you win N900. GOOD LUCK!!
CLICK HERE TO PARTICIPATE IN THE CONTEST
THE OFFER HAS BEEN CLOSED
More >
Download Youtube Videos Without Any Software or Sites!!
Feb 12th

Every internet users have great attachment to Youtube for many reasons and has been depending IDM or other plugins for Firefox or sites like KeepVid for downloading videos from it. Now consider a case in which you are unable to use your software whose trial period has been ended, then also KeepVid may come to your use but the trick I am gonna present here is much more easier than the later. More >
Google Wave Cheat Sheet
Jan 21st
Twitter tips – Increase number of followers
Aug 27th
- Register at http://wefollow.com. Be wise to choose a category with less members or create a new one.
- Play games like #Follow Friday ( a game in which each Friday one have to send tweets with the text # Follow Friday and the names or business which they recommend)
- Make your twitter page more attractive. Goto http://twitterbacks.com and download customizable More >
XP tweak : Kill Processes from Command Prompt
Jul 7th
Open up an Administrative level Command Prompt and run tasklist to see all of the running processes:
C:\>tasklist
Image Name PID Session Name Mem Usage
========================= ======== ================ ============
firefox.exe 26356 Console 139,352 K
regedit.exe 24244 Console 9,768 K
cmd.exe 18664 Console 2,380 K
conhost.exe 2528 Console 7,852 K
notepad.exe 17364 Console 7,892 K
notepad.exe 24696 Console 22,028 K
notepad.exe 25304 Console 5,852 K
explorer.exe 2864 Console 72,232 K
In the example above you can see the image name and the PID for each process. If you want to kill the firefox process run:
C:\>Taskkill /IM firefox.exe /F
or
C:\>Taskkill /PID 26356 /F
The /f flag is kills the process forcefully. Failure to use the /F flag will result in nothing happening in some cases. One example is whenever I want to kill the explorer.exe process I have to use the /F flag or else the process just does not terminate.
If you have multiple instances of an image open such as multiple firefox.exe processes, running the taskkill /IM firefox.exe command will kill all instances. When you specify the PID only the specific instane of firefox will be terminated.
The real power of taskkill are the filtering options that allow you to use the following variables and operators.
Variables:
* STATUS
* IMAGENAME
* PID
* SESSION
* CPUTIME
* MEMUSAGE
* USERNAME
* MODULES
* SERVICES
* WINDOWTITLE
Operators:
* eq (equals)
* ne (not equal)
* gt (greater than)
* lt (less than)
* ge (greater than or equal)
* le (less than or equal)
“*” is the wildcard.
You can use the variables and operators with the /FI filtering flag. For example, let’s say you want to end all processes that have a window title that starts with More >
