Archive for December, 2006

Posted in Computing, Technology

A Nice Installation

Date December 12th, 2006 Comment No Comments

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

Posted in Computing, Technology

Top Stuff

Date December 12th, 2006 Comment No Comments

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

Posted in Opinion, Technology

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.

Posted in Opinion, Technology

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 [...]

Posted in C#

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();


This blog is protected by Spam Karma 2: 6357 spams eaten and counting...

ne0ge0dotcom's Gamercard

Copyright © ne0ge0.com