Rick Roll youself 7 days a week!

Discussion about everything. New games, 3d math, development tips...
Post Reply
dejai
Posts: 522
Joined: Sat Apr 21, 2007 9:00 am

Rick Roll youself 7 days a week!

Post by dejai »

Hey kids, love Rick Roll? Want to Rick Roll yourself awake everyday of the week! Why not! Just compile some code e.g:

Code: Select all

#include <iostream>
#include <ctime>

using namespace std;
int main()
{
	char time [10];
	char wakeup[10] = "07:00:00";
	int nCheck = 1; 
	system("color 3f");
	cout<<" Alarm Clock "<<endl;
	cout<<"-------------------"<<endl;
	while(nCheck != 0)
	{
	_strtime_s(time);
    cout<<"Current Time:"<<time<<endl;
	nCheck = strcmp(time, wakeup);
	}

	system("C:/Stuff/Rawr/Rawr.htm");
	system("pause");
	
}


 

And make yourself a rick roll sensation! This is the custom page I made to wake me up each and every morning. Make sure you set the volume to full kids and wake up to the child hood sensation every single morning!

http://dejaigames.com/dump/Rawr/Rawr.htm

Sorry but someone will have to like it :D
Programming Blog: http://www.uberwolf.com
switch_case
Posts: 34
Joined: Sat Mar 08, 2008 12:46 pm
Location: Germany, FFM
Contact:

Post by switch_case »

hm i hate those webpages, where you have to klick away 1000 message boxes. this is an old one...
WHERE LIVING IN 2008 GODDAMMIT, html wasn't invented 20 minutes ago. ;)
if life could only be written in C++...
so much features, money++, remove_childs(), choose parents, life = new life, and no more <IDIOT> templates !
if you're looking for an nerdy coding language: http://lolcode.com/
bitplane
Admin
Posts: 3204
Joined: Mon Mar 28, 2005 3:45 am
Location: England
Contact:

sage

Post by bitplane »

gb2 4chan
Submit bugs/patches to the tracker!
Need help right now? Visit the chat room
MasterGod
Posts: 2061
Joined: Fri May 25, 2007 8:06 pm
Location: Israel
Contact:

Post by MasterGod »

That's a declaration of WAR Dejai :twisted:

I'll let you guess who is who :twisted:
Image

For about 180 seconds I've been fighting it :P , it's faster then me :lol:
Image
Dev State: Abandoned (For now..)
Requirements Analysis Doc: ~87%
UML: ~0.5%
dejai
Posts: 522
Joined: Sat Apr 21, 2007 9:00 am

Post by dejai »

I have a browser that allows me to disable java script :D
Programming Blog: http://www.uberwolf.com
BlindSide
Admin
Posts: 2821
Joined: Thu Dec 08, 2005 9:09 am
Location: NZ!

Post by BlindSide »

Yeah I have it too, it's just called FireFox :lol:

I held down enter to get through your annoying pop-up messages, and when that finished your link was still highlighted on this thread, so it opened up another 10 of that same webpage :shock:

Thats when I had to disable Javascript lol

Some comments about the code just for the sake stupidity :P :
Whats the point of the "!= 0" in the while loop, that goes without saying doesn't it? (But use a bool, unless this is C not C++, but then there would be no namespaces...)
Why would you run the CPU at 100% just to know what time it is? Make it sleep for a minute or something.
ShadowMapping for Irrlicht!: Get it here
Need help? Come on the IRC!: #irrlicht on irc://irc.freenode.net
Post Reply