« This city is different in winter | Home | The song of sleep »

Homework on the brain

Have a lab due for my operating systems class tomorrow, have to have it 100% finished tonight. Basically, the plan of action is so:

// Getting_shit_done.odt : base of operations

#include <hot_tea>
#include <chips>
#include <string>
#include <iostream>

using namespace std;

string homework ("What's all this bullshit right here")	// OK to substitute actual work
HANDLE hMutex;						// Oh man I love mutexes
volatile BOOL cont=TRUE;

pwn main()
{
	while (cont == TRUE){
			WaitForSingleObject(hMutex,INFINITE);	// Keep eyes open
			cout << homework;			// Here's the moneyshot
			ReleaseMutex(hMutex);			// Now anything can happen
		};
	Sleep(14400000);	 				// All I have time for
return 0;
}

I know what you’re thinking: the while statement is unnecessary.

Oh, but it is. Oh so necessary.

Until tomorrow, when madness reigns no longer over the altars of thought.


About this entry