Recent Blog Posts

Other Content

Mike's C++ tips

Most of this was written in 2003 and 2004. For the most part, it is all hastily written, and in need of editing.

Links

STL Reference at SGI
IO Stream Reference
Code Project.com --- Primarily a windows site, but also has good general info.

iostream

	cout << setfill('0') << setw(4) << hex << 1234 << endl;

Misc

Coroutines in C
Notes on std::string; an argument for its use
Quick notes about C++ casts

MFC

struct asdf : public CWindThread {
	BOOL InitInstance() {
		::MessageBox(...);
		return true;
	}
};

asdf a;
a.CreateThread();

Things worth looking up