December 10, 2007, Author: Conor, Leave a comment

Homework on the brain

Categories: life things
Tags:: , , , , , , ,

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.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre class="">