Wednesday, May 28, 2008

Indian Engineering Colleges Ranking

Hi! I am just providing a list of links corresponding to various surveys (all 2007 based) which can help you figure out a college of your choice for yourself. These are not my rankings. So, the author bears no responsibility regarding these rankings. Its just for your informative purpose. Click on them to open the ranking pages.



1) Dataquest Survey
2) Outlook Survey
- Top 50 Government Engineering Colleges
- Top 50 Private Engineering Colleges
3) India Today Survey

In my opinion, I'll go with Dataquest & Outlook!

Thursday, May 22, 2008

Fevicol Ka Mazboot Jod


DIGITAL CLOCK - C++


Here's is the digital version of clock using C++.
It works with a cursor! Download the source code and the exe file from the link below. Its 100% virus & adware free, I assure you. Download it and share it with your friends, you will enjoy it!

Screenshot of the Digital Clock

Saturday, May 10, 2008

Create Your Temporary Email Id

Many websites ask for your e-mail address to download software or to register. But you don't know what they'll be doing with your e-mail.. Your e-mail will probably be stored in a database which will then be resold to spammers and you will be receiving unsolicited bulk e-mail.

Now you can create a temporary e-mail address that will expire in the time you chose, all the mails directed to this e-mail will be transparently forwarded to your real e-mail. For example, you need to register on a forum that requires e-mail verification, so you generate a spambox e-mail with an expiry of one hour. The generated e-mail will expire in an hour, way enough for the Forum to send you the verification code.

Do this here

And yeah...your actual id is safe...this site won't sell it to spammers. They've got an automatic cleanup agent that wipes out every n-minutes the expired spambox e-mails. All for free!!!

Friday, May 9, 2008

Analog Clock in C++ - Good Programme for Intermediates




Note: include the following header files : "iostream.h, conio.h, math.h, string.h, iomanip.h, stdlib.h, process.h, stdio.h, ctype.h, dos.h, graphics.h, alloc.h, errno.h, locale.h, setjmp.h, strstrea.h, values.h, time.h"

void exit();
void draw();
void back();
int gdriver = DETECT, gmode, error;
const float PI = 3.1415927;
struct time t;
int nodi, nimisa, mani;
char strmani[5]=" ";
char strnimisa[5]=" ";
char strnodi[5]=" ";
struct date d;
int varusam, matham, naal;
char strnaal[5]=" ";
char strmatham[5]=" ";
char strvarusam[5]=" ";
int maxx, maxy, nadux, naduy;
int totnodi;
float konam;
float r, x, y;

int main()
{ clrscr();
initgraph(&gdriver, &gmode, "c:\\tc\\");
error = graphresult();
if(error!=grOk)
{ cprintf("Graphics error : %s\n", grapherrormsg(error));
cprintf("Press any key to halt:");
getch();
exit(1);
};
nodi = nimisa = mani = 0;
matham = naal = varusam = 0;
maxx = getmaxx();
maxy = getmaxy();
nadux = (maxx*1)/3;
naduy = maxy/2;
draw();
konam = 0;
do
{ konam+=1;
r=PI/180*konam;
x=180*cos(r);
y=180*sin(r);
if((fmod(ceil(konam), 6))==0)
{ setcolor(LIGHTGREEN);
circle(nadux+x, naduy+y, 2);
}
if(fmod(ceil(konam), 30)==0)
{ setcolor(BLUE);
setfillstyle(SOLID_FILL, BLUE);
fillellipse(nadux+x, naduy+y, 2, 2);
if((fmod(ceil(konam), 90))!=0)
{ setcolor(YELLOW);
setfillstyle(SOLID_FILL, BLUE);
fillellipse(nadux+x, naduy+y, 5, 5);
setfillstyle(SOLID_FILL, LIGHTGRAY);
fillellipse(nadux+x, naduy+y, 2, 2);
}
}
}
while(konam<360);
setcolor(WHITE);
settextstyle(1, 0, 3);
outtextxy(200, 40, "12");
outtextxy(210, 400, "6");
outtextxy(390, 225, "3");
outtextxy(27, 225, "9");
do
{ back();
gettime(&t);
nodi=t.ti_sec;
nimisa=t.ti_min;
mani=t.ti_hour;
mani=mani%12;
getdate(&d);
varusam=d.da_year;
matham=d.da_mon;
naal=d.da_day;
setfillstyle(SOLID_FILL, 12);
fillellipse(nadux, naduy, 15, 15);
setfillstyle(SOLID_FILL, WHITE);
fillellipse(nadux, naduy, 10, 10);
setfillstyle(SOLID_FILL, GREEN);
fillellipse(nadux, naduy, 5, 5);
itoa(mani, strmani, 10);
if(strlen(strmani)==1)
{ strmani[2]='\0';
strmani[1]=strmani[0];
strmani[0]='0';
}
itoa(nimisa, strnimisa, 10);
if(strlen(strnimisa)==1)
{ strnimisa[2]='\0';
strnimisa[1]=strnimisa[0];
strnimisa[0]='0';
}
itoa(nodi, strnodi, 10);
if(strlen(strnodi)==1)
{ strnodi[2]='\0';
strnodi[1]=strnodi[0];
strnodi[0]='0';
}
itoa(naal, strnaal, 10);
if(strlen(strnaal)==1)
{ strnaal[2]='\0';
strnaal[1]=strnaal[0];
strnaal[0]='0';
}
itoa(matham, strmatham, 10);
if(strlen(strmatham)==1)
{ strmatham[2]='\0';
strmatham[1]=strmatham[0];
strmatham[0]='0';
}
itoa(varusam, strvarusam, 10);
setcolor(BLACK);
settextstyle(1, 0, 4);
moveto(478, 95);
outtext(strmani);
outtext(":");
outtext(strnimisa);
outtext(":");
outtext(strnodi);
setcolor(BLACK);
settextstyle(1, 0, 4);
moveto(435, 395);
outtext(strnaal);
outtext(".");
outtext(strmatham);
outtext(".");
outtext(strvarusam);

setlinestyle(SOLID_LINE, 0, 3);
totnodi = ((t.ti_hour%12)*60)+t.ti_min;
konam = (float)(((float)totnodi/(float)720)*2*PI);
konam-=PI/2;
setcolor(RED);
line(nadux, naduy, nadux + (100*cos(konam)), naduy+(100*sin(konam)));
setlinestyle(SOLID_LINE, 0, 3);
konam=((float)nimisa/60)*2*PI;
konam=konam-PI/2;
line(nadux, naduy, nadux+(145*cos(konam)), naduy+(145*sin(konam)));
setcolor(RED);
setlinestyle(SOLID_LINE, 0, 3);
konam=((float)nodi/60)*2*PI;
konam=konam-PI/2;
line(nadux, naduy, nadux+(150*cos(konam)), naduy+(150*sin(konam)));
delay(990);
setcolor(LIGHTGRAY);
setlinestyle(SOLID_LINE, 0, 3);
totnodi=t.ti_hour%12+t.ti_min;
konam = float((float)totnodi/(float)720*2*PI);
konam-=PI/2;
line(nadux, naduy, nadux+(100*cos(konam)), naduy+(100*sin(konam)));
konam=((float)nimisa/60)*2*PI;
konam=konam-PI/2;
line(nadux, naduy, nadux+(145*cos(konam)), naduy+(145*sin(konam)));

setlinestyle(SOLID_LINE, 0, 3);
konam=((float)nodi/60)*2*PI;
konam=konam-PI/2;
line(nadux, naduy, nadux+(150*cos(konam)), naduy+(150*sin(konam)));
}
while(!kbhit());
exit();
return 0;
}
void exit()
{ getch();
closegraph();
clrscr();
textbackground(BLACK);
textcolor(10);
gotoxy(1, 5);
//cprintf("********************************************************************************");
gotoxy(34, 10);
cprintf("Presented By:");
gotoxy(32, 12);
cprintf("----RAHUL DEY----");
gotoxy(36, 14);
cprintf("Copyright");
gotoxy(100, 16);
//cprintf("********************************************************************************");
delay(1000);
gotoxy(3, 23);
cprintf("Press Esc to exit...");
gotoxy(0, 30);
getch();
}

void draw()
{ setcolor(YELLOW);
rectangle(0, 0, maxx, maxy);
setcolor(YELLOW);
rectangle(2, 2, maxx-2, maxy-2);
setfillstyle(9, LIGHTRED);
bar(3, 3, maxx-3, maxy-3);
setcolor(LIGHTBLUE);
setfillstyle(SOLID_FILL, BLUE);
fillellipse(nadux, naduy, 200, 200);
setcolor(DARKGRAY);
setfillstyle(SOLID_FILL, LIGHTGRAY);
fillellipse(nadux, naduy, 160, 160);
}

void back()
{ setlinestyle(SOLID_LINE, 0, 1);
setfillstyle(SOLID_FILL, WHITE);
bar(470, 101, 618, 130);

setcolor(BLACK);
rectangle(471, 101, 617, 129);

setcolor(DARKGRAY);
line(470, 130, 470, 100);
line(618, 100, 618, 100);

setcolor(WHITE);
line(470, 130, 618, 130);
line(618, 130, 618, 100);

setcolor(LIGHTGRAY);
rectangle(472, 102, 616, 128);

setlinestyle(SOLID_LINE, 0, 1);
setfillstyle(SOLID_FILL, WHITE);
bar(430, 400, 618, 430);

setcolor(BLACK);
rectangle(431, 401, 617, 429);

setcolor(DARKGRAY);
line(430, 430, 618, 430);
line(430, 400, 618, 400);

setcolor(WHITE);
line(430, 430, 618, 430);
line(618, 430, 618, 400);

setcolor(LIGHTGRAY);
rectangle(432, 402, 616, 428);

setcolor(9);
settextstyle(1, 0, 2);
moveto(132, 315);
outtext("Indian Standard");

setcolor(9);
settextstyle(1, 0, 2);
moveto(185, 340);
outtext("Time");

setcolor(YELLOW);
settextstyle(1, 0, 4);
moveto(470, 60);
outtext("TIME");

setcolor(YELLOW);
settextstyle(1, 0, 4);
moveto(430, 360);
outtext("DATE");
}

Download the exe file here...

http://rapidshare.com/files/116709015/ANALOG_CLOCK.zip

Thursday, May 8, 2008

Mystery Hunt

Mystery one
A man was found murdered Sunday morning. His wife immediately calledthe police .The police questioned the wife and staff and got these answers:The wife said she was sleeping.The cook was preparing breakfast.The gardener was gathering vegetables.The maid was getting the mail.The butler was polishing shoes in the pantry.The police instantly arrested the murderer. Who did it and how did theyknow?

Mystery two
A man walks into his bathroom and shoots himself right between the eyesusing a real gun with real bullets.He walks out alive, with no blood anywhere and no, he didn't miss andhe wasn't Superman or any other crusader wearing a cape.How did he do this?

Mystery three
Old Mr. Teddy was found dead in his study by Mr. Fiend.Mr. Fiend recounted his dismal discovery to the police:"I was walking by Mr. Teddy's house when I thought I would just pop infor a visit. I noticed his study light was on and I decided to peek infrom the outside to see if he was in there. There was frost on thewindow, so I had to wipe it away to see inside. That is when I saw hisbody. So I kicked in the front door to confirm my suspicions of foulplay. I called the police immediately afterward."The officer immediately arrested Mr. Fiend for the murder of Mr. Teddy.How did he know Mr. Fiend was lying?
Try to figure these questions before looking at the answers below .



>



>



>



ANSWERS:1. It was the Maid. She said she was getting the mail but there is nomail delivery on Sunday.
2. He shot his reflection in the bathroom mirror.
3 Frost forms inside of the window, not the outside. So Mr. Fiend couldnot have wiped it off to discover Mr. Tidy's body

Talking Skills!!!! Hehehehe

A man joins a big corporate empire as a trainee.On his very first day of work, he dials the pantry and shouts into the phone - "Get me a coffee, quickly!"
The voice from the other side responded, "You fool you've dialed the wrong extension! Do you know who you're talking to, dumbo?"
"No," replied the trainee."It's the CEO of the company, you fool!"
The trainee shouts back, "And do YOU know who YOU are talking to, you fool?!""No." replied the CEO indignantly.
"Good!" replied the trainee, and puts down the phone

Bush in a Primary School!!!

George Bush goes to a primary school to talk about the war. After his talk, he offers question time.
One little boy puts up his hand and George asked, What is your name?
Bob
And what is your question, Bob?
I have 3 questions.
First, why did the USA invade Iraq without the support of the UN?
Second, why are you president when al gore got more votes?
Third, what happened to Osama bin laden?
Just then, the bell rings for recess.
George bush informs the kiddies that they will continue after recess.
When they resume George says, Ok where were we?
Oh, thats right. Question time. Who has a question?
A different little boy raises his hand.
George points him out and asked him what is your name?
Steve
And what is your question Steve?
I have 5 questions.
First, why did the USA invade Iraq without the support of UN?
Second, why are you president when Al Gore got more votes?
Third, what happened to Osama bin laden?
Fourth, why did the recess bell go 20 minutes early?
Fifth, where is Bob?

Queen Elizabeth, Clinton & Sharoon..HaHaHahaha

Queen Elizabeth, Clinton & Sharoon died & went straight to hell.
Queen Elizabeth said "I miss England, I want to call England and see how everybody is doing there.
She called and talked for about 5 minutes, then she asked "Well, devil how much do I owe you????
The devil says "Five million dollars"
She wrote him a cheque and went to sit back on her chair.
Clinton was soo jealous, he starts screaming, "My turn! I wanna call the United States, I want to see how everybody is doing there too"
He called and talked for about 2 minutes, then he asked "Well, devil how much do I owe you????
The devil says "Ten million dollars"
With a smug look on his face, he made a cheque and went to sit back on his chair.
Sharoon was even more jealous & starts screaming, "I want to call Israil too, I wanna talk to the ministers, to the deputy, I wanna talk to everybody of my Parliment".....
He called Israil and he talked for about twenty hours, he talked & talked & talked, then he asked "Well, devil how much do I owe you????
The devil says "Twenty dollars".
Sharoon is stunned & says "Twenty dollars??? Only ??"
The devil says "Well if you make a call from one hell to another hell, it's local".

Monday, May 5, 2008

IIT JEE 2008

The JEE was held on the 13th April, Sunday. There's been a majority say that this year's question paper was difficult than 2007 paper and the cut-offs are expected to dip supported by:
1) More number of difficult questions
2) Lenghtier paper
3) More number of tricky questions
The pressure scenario built in the exam hall helped making the paper look more furious.
However relaxed marking in the matrix match type questions was a boon.

Estimated rank based on various criteria:
Estimated Marks..............Expected Rank
>400 ...........................................10
350-400................................. 10-150
320-350................................ 200-400
300-320................................ 400-700
280-300............................... 700-1000
250-280.............................. 1000-1800
220-250.............................. 1800-3500
200-220.............................. 3500-5000
180-200.................................. >5000
150-180......................... Extended Merit List


There's a general thought that due to reservation for the OBCs and increased seats, the effective seats for the General Class too will increase. However it will be more clear later.
Students may have a look about their prospects here http://www.jee.iitb.ac.in/2007/openclose.htm

Frequently Updated.

If you want some improvements in the blog to serve you better, do vote for it!