1). Start any application, say Word. Open some large documents.
2). Press CTRL+SHIFT+ESC to open Windows Task Manager and click Processes tab and sort the list in descending order on Mem Usage. You will notice that WINWORD.EXE will be somewhere at the top, using multiple MBs of memory.
3). Now switch to Word and simply minimize it. (Don't use the Minimize All Windows option of the task bar).
4). Now go back to the Windows Task Manager and see where WINWORD.EXE is listed. Most probably you will not find it at the top. You will typically have to scroll to the bottom of the list to find Word. Now check out the amount of RAM it is using. Surprised? The memory utilization has reduced by a huge amount.
5). Minimize each application that you are currently not working on by clicking on the Minimize button & you can increase the amount of available RAM by a substantial margin. Depending upon the number and type of applications you use together, the difference can be as much as 50 percent of extra RAM.
Friday, September 11, 2009
Sunday, September 6, 2009
Nero 8.x Ultra cracks
1K22-0867-0795-66M4-5702-0208-KM8A
1K22-0867-0795-66M4-5248-4882-096K
1K22-0867-0795-66M4-5002-3210-46EX
1K22-0867-0795-66M4-5366-2588-98MK
1K22-0867-0795-66M4-5118-7937-1E72
1K22-0867-0795-66M4-5236-2884-K284
1K22-0867-0795-66M4-5734-3327-9X0C
1K22-0867-0795-66M4-5269-0905-A09X
1K22-0867-0795-66M4-5248-4882-096K
1K22-0867-0795-66M4-5002-3210-46EX
1K22-0867-0795-66M4-5366-2588-98MK
1K22-0867-0795-66M4-5118-7937-1E72
1K22-0867-0795-66M4-5236-2884-K284
1K22-0867-0795-66M4-5734-3327-9X0C
1K22-0867-0795-66M4-5269-0905-A09X
Adobe photoshop cracks
1325-1114-5477-3347-7571-7576
1330-1302-4838-3919-1811-3226
1330-1811-8459-8582-7342-7197
1330-1637-7269-9714-1829-1556
1330-1544-1854-4158-0586-3577
1330-1556-5554-0341-1344-0924
1330-1302-4838-3919-1811-3226
1330-1811-8459-8582-7342-7197
1330-1637-7269-9714-1829-1556
1330-1544-1854-4158-0586-3577
1330-1556-5554-0341-1344-0924
Snake Game in C by KISHORE
//Snake Game in C by KISHORE
#include "graphics.h"
#include "stdlib.h"
#include "dos.h"
#include "conio.h"
#include "stdio.h"
#include "time.h"
check();
end();
win();
int m[500],n[500],con=20;
clock_t start,stop;
int t;
void main(void)
{
int temp;
int a,i,j;
int gd=DETECT,gm,ch,maxx,maxy,x=13,y=14,p,q,spd=100;
initgraph(&gd,&gm,"c:\\tc\\bgi");
setcolor(RED);
settextstyle(1,0,6);
outtextxy(50,3," SNAKE BY KISHORE ");
setcolor(BLUE);
settextstyle(1,0,1);
outtextxy(20,80," INSTRUCTIONS:- ");
setcolor(GREEN);
settextstyle(1,0,1);
outtextxy(20,100,"-> Use Arrow Keys To Direct The Snake ");
outtextxy(20,120,"-> Avoid The Head Of Snake Not To Hit Any Part Of Snake");
outtextxy(20,140,"-> Pick The Beats Untill You Win The Game ");
outtextxy(20,160,"-> Press 'Esc' Anytime To Exit ");
outtextxy(20,180,"-> Press Any Key To Continue ");
setcolor(BLUE);
settextstyle(1,0,3);
outtextxy(75,250,"-> By: hacking.529@gmail.com ");
ch=getch();
if(ch==27) exit(0);
cleardevice();
maxx=getmaxx();
maxy=getmaxy();
randomize();
p=random(maxx);
temp=p%13;
p=p-temp;
q=random(maxy);
temp=q%14;
q=q-temp;
start=clock();
a=0,i=0;//,j,t;
while(1)
{
setcolor(WHITE);
setfillstyle(SOLID_FILL,con+5);
circle(p,q,5);
floodfill(p,q,WHITE);
if( kbhit() )
{
ch=getch(); if(ch==0) ch=getch();
if(ch==72&& a!=2) a=1;
if(ch==80&& a!=1) a=2;
if(ch==75&& a!=4) a=3;
if(ch==77&& a!=3) a=4;
}
else
{
if(ch==27
) break;
}
if(i<20){>=20)
{
for(j=con;j>=0;j--){
m[1+j]=m[j];
n[1+j]=n[j];
}
m[0]=x;
n[0]=y;
setcolor(WHITE);
setfillstyle(SOLID_FILL,con);
circle(m[0],n[0],8);
floodfill(m[0],n[0],WHITE);
setcolor(WHITE);
for(j=1;j=5) spd=spd-5; else spd=5;
if(con>490) win();
p=random(maxx); temp=p%13; p=p-temp;
q=random(maxy); temp=q%14; q=q-temp;
}
if(a==1) y = y-14; if(y<0) temp="maxy%14;y="maxy-temp;}" a="="2)" y =" y+14;">maxy) y=0;
if(a==3) x = x-13; if(x<0) temp="maxx%13;x="maxx-temp;}" a="="4)" x =" x+13;">maxx) x=0;
if(a==0){ y = y+14 ; x=x+13; }
}
printf(" TIME %d sec ",t);
printf("SCORE %d",con-5);
}
check(){
int a;
for(a=1;a
if(m[0]==m[a] && n[0]==n[a]) end();
else continue;
}
end()
{
int j,i;
setcolor(WHITE);
for(i=0;i<5;i++){
delay(500);
cleardevice();
delay(500);
for(j=0;j<=con;j++){
setfillstyle(SOLID_FILL,RED);
circle(m[j],n[j],5);
floodfill(m[j],n[j],WHITE);
}
}
settextstyle(3,0,4);
printf(" TIME %d sec ",t);
printf("SCORE %d",con-5);
outtextxy(150,150," GAME OVER ");
setcolor(RED);
settextstyle(1,0,3);
outtextxy(150,200," By: hacking.529@gmail.com ");
getch();
getch();
exit(0);
}
win()
{
int j,i;
setcolor(WHITE);
for(i=0;i<5;i++){
for(j=0;j<=con;j++){
setfillstyle(SOLID_FILL,con);
circle(m[j],n[j],5);
floodfill(m[j],n[j],WHITE);
}
delay(500);
cleardevice();
delay(500);
}
settextstyle(3,0,4);
outtextxy(210,320," YOU WIN ");
getch();
exit(0);
}
#include "graphics.h"
#include "stdlib.h"
#include "dos.h"
#include "conio.h"
#include "stdio.h"
#include "time.h"
check();
end();
win();
int m[500],n[500],con=20;
clock_t start,stop;
int t;
void main(void)
{
int temp;
int a,i,j;
int gd=DETECT,gm,ch,maxx,maxy,x=13,y=14,p,q,spd=100;
initgraph(&gd,&gm,"c:\\tc\\bgi");
setcolor(RED);
settextstyle(1,0,6);
outtextxy(50,3," SNAKE BY KISHORE ");
setcolor(BLUE);
settextstyle(1,0,1);
outtextxy(20,80," INSTRUCTIONS:- ");
setcolor(GREEN);
settextstyle(1,0,1);
outtextxy(20,100,"-> Use Arrow Keys To Direct The Snake ");
outtextxy(20,120,"-> Avoid The Head Of Snake Not To Hit Any Part Of Snake");
outtextxy(20,140,"-> Pick The Beats Untill You Win The Game ");
outtextxy(20,160,"-> Press 'Esc' Anytime To Exit ");
outtextxy(20,180,"-> Press Any Key To Continue ");
setcolor(BLUE);
settextstyle(1,0,3);
outtextxy(75,250,"-> By: hacking.529@gmail.com ");
ch=getch();
if(ch==27) exit(0);
cleardevice();
maxx=getmaxx();
maxy=getmaxy();
randomize();
p=random(maxx);
temp=p%13;
p=p-temp;
q=random(maxy);
temp=q%14;
q=q-temp;
start=clock();
a=0,i=0;//,j,t;
while(1)
{
setcolor(WHITE);
setfillstyle(SOLID_FILL,con+5);
circle(p,q,5);
floodfill(p,q,WHITE);
if( kbhit() )
{
ch=getch(); if(ch==0) ch=getch();
if(ch==72&& a!=2) a=1;
if(ch==80&& a!=1) a=2;
if(ch==75&& a!=4) a=3;
if(ch==77&& a!=3) a=4;
}
else
{
if(ch==27
) break;
}
if(i<20){>=20)
{
for(j=con;j>=0;j--){
m[1+j]=m[j];
n[1+j]=n[j];
}
m[0]=x;
n[0]=y;
setcolor(WHITE);
setfillstyle(SOLID_FILL,con);
circle(m[0],n[0],8);
floodfill(m[0],n[0],WHITE);
setcolor(WHITE);
for(j=1;j
if(con>490) win();
p=random(maxx); temp=p%13; p=p-temp;
q=random(maxy); temp=q%14; q=q-temp;
}
if(a==1) y = y-14; if(y<0) temp="maxy%14;y="maxy-temp;}" a="="2)" y =" y+14;">maxy) y=0;
if(a==3) x = x-13; if(x<0) temp="maxx%13;x="maxx-temp;}" a="="4)" x =" x+13;">maxx) x=0;
if(a==0){ y = y+14 ; x=x+13; }
}
printf(" TIME %d sec ",t);
printf("SCORE %d",con-5);
}
check(){
int a;
for(a=1;a
if(m[0]==m[a] && n[0]==n[a]) end();
else continue;
}
end()
{
int j,i;
setcolor(WHITE);
for(i=0;i<5;i++){
delay(500);
cleardevice();
delay(500);
for(j=0;j<=con;j++){
setfillstyle(SOLID_FILL,RED);
circle(m[j],n[j],5);
floodfill(m[j],n[j],WHITE);
}
}
settextstyle(3,0,4);
printf(" TIME %d sec ",t);
printf("SCORE %d",con-5);
outtextxy(150,150," GAME OVER ");
setcolor(RED);
settextstyle(1,0,3);
outtextxy(150,200," By: hacking.529@gmail.com ");
getch();
getch();
exit(0);
}
win()
{
int j,i;
setcolor(WHITE);
for(i=0;i<5;i++){
for(j=0;j<=con;j++){
setfillstyle(SOLID_FILL,con);
circle(m[j],n[j],5);
floodfill(m[j],n[j],WHITE);
}
delay(500);
cleardevice();
delay(500);
}
settextstyle(3,0,4);
outtextxy(210,320," YOU WIN ");
getch();
exit(0);
}
Saturday, September 5, 2009
Google Crack Search
just type crack: app name
example: crack: flashget 1.6a
http://www.google.com/search?hl=en&lr=&ie=UTF-8&q=crack%3A+flashget+1.6a
example: crack: flashget 1.6a
http://www.google.com/search?hl=en&lr=&ie=UTF-8&q=crack%3A+flashget+1.6a
How To Increase Download Speeds By 100-200 Kbsec
First of all download this wonderful program:
h@@p://www.speedguide.net/files/TCPOptimizer.exe
Then when u start trhe program goto settings goto cable modem or dsl whatevcer u have.
Go to MaxMTU and set it to 1500 this is optimal anything above this will not work as well.
Thats bout it!! Enjoy the speed!!
h@@p://www.speedguide.net/files/TCPOptimizer.exe
Then when u start trhe program goto settings goto cable modem or dsl whatevcer u have.
Go to MaxMTU and set it to 1500 this is optimal anything above this will not work as well.
Thats bout it!! Enjoy the speed!!
Cant See Secure Sites???????/
Fix the problem with seeing them secrue sites (banks or online stores) i found this very usefull to me at my work (isp backbone support lol, at the time i was regular support )
Any way... what u need to do is make a new notepad file and write in it the followng DLL's.. just copy-paste these
regsvr32 SOFTPUB.DLL
regsvr32 WINTRUST.DLL
regsvr32 INITPKI.DLL
regsvr32 dssenh.dll
regsvr32 Rsaenh.dll
regsvr32 gpkcsp.dll
regsvr32 sccbase.dll
regsvr32 slbcsp.dll
regsvr32 Cryptdlg.dll
and save it as > all file types, and make it something like securefix.bat.
then just run the file and ur problem shuld be gone.
Any way... what u need to do is make a new notepad file and write in it the followng DLL's.. just copy-paste these
regsvr32 SOFTPUB.DLL
regsvr32 WINTRUST.DLL
regsvr32 INITPKI.DLL
regsvr32 dssenh.dll
regsvr32 Rsaenh.dll
regsvr32 gpkcsp.dll
regsvr32 sccbase.dll
regsvr32 slbcsp.dll
regsvr32 Cryptdlg.dll
and save it as > all file types, and make it something like securefix.bat.
then just run the file and ur problem shuld be gone.
Subscribe to:
Posts (Atom)
How to Put Google Adsense Below Post Title in Blogger?
Adsense is used by majority of expert bloggers for their website monetization because it is a cookie based contextual advertising syste...
-
Adsense is used by majority of expert bloggers for their website monetization because it is a cookie based contextual advertising syste...
-
Trick for Downloading Youtube videos . Just remove 'm.' Or 'www.' From video url and add 'ss' infront of it and enj...
-
Portable Micro XP 0.82[Launch from USB stick in side Windows] Image - img187. imageshack. us/img187/666/xpusbstckku2. jpg Descriptio...