Archive for December, 2006

A Nice Installation

Date December 12th, 2006 Comment No Comments

http://www.hardocp.com/news.html?news=MjI5NTEsLCwsLCwx

Tags: ,

Top Stuff

Date December 12th, 2006 Comment No Comments

http://www.joystiq.com/2006/12/12/todays-hottest-g…

Tags: ,

Beautiful Engineering

Date December 12th, 2006 Comment No Comments

What sets the Fletcher Capstan Table apart from other dinner tables is that it can expand “by 73%, growing from a capacity of 6 to 12 people in seconds.”

Now this is craftsmanship.

Tags: ,

They’re At It Again…

Date December 4th, 2006 Comment No Comments

Still glad I don’t live in the States. How much power do these people have that they can do shit like this?
The MPAA defines a home theater as any home with a television larger than 29″ with stereo sound and at least two comfortable chairs, couch, or futon. Anyone with a home theater would need [...]

Tags: ,

C# Single Instance Application Code

Date December 4th, 2006 Comment No Comments

This snippet will only allow a single instance of you C# application to run at any one time. All you have to do is insert it into the Main() method.
bool IsFirstInstance;
Mutex mutex = new Mutex(false,
“Local\\[name of application here]“,
out IsFirstInstance);
if (IsFirstInstance)
{
Application.Run(new form_Main());
}
Application.Exit();

Tags: