A Nice Installation
December 12th, 2006
No Comments
http://www.hardocp.com/news.html?news=MjI5NTEsLCwsLCwx
Tags: Computing, Technology
December 12th, 2006
No Comments
http://www.hardocp.com/news.html?news=MjI5NTEsLCwsLCwx
Tags: Computing, Technology
December 12th, 2006
No Comments
http://www.joystiq.com/2006/12/12/todays-hottest-g…
Tags: Computing, Technology
December 12th, 2006
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: Opinion, Technology
December 4th, 2006
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: Opinion, Technology
December 4th, 2006
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: C#