Submit your breaking news stories and original articles to us by contacting us

The Visual C# Debugger


Rick Spencer’s post on how developers use the debugger is very enlightening. I didn’t even realize how I use the debugger, but when he talks about things that developers typically do, all I could do was find myself agreeing with him.
I haven’t used the debugger in Visual Studio 2005 yet, but it sounds like […]

Filed under: Programming
Comments Off

Clone Wars

Not that you couldn’t find these at these at either StarWars.com or Cartoon Network, but this is a great compilation of the Clone Wars micro-series airing on Cartoon Network, currently in season two.
It’s a vanilla page, but every episode from season one is available and season two is available as the episodes air. The […]

Filed under: Resources

phpBB tweaks for large forums

Interesting forum discussion on tweaking the SQL in phpBB to handle 5000-10000 concurrent users in a forum with almost 50 million posts.

Filed under: General
Comments Off

Site Redesign Survey

Some changes are coming to Forever Geek and I am looking for your feedback. Comments are open.

Filed under: Forever Geek

Tweak-o-matic — It’s better than Microsoft Bob

Tweak-o-Matic is a tool for MS Windows that’s somewhere between TweakUI and Group Policy — it lets you change some of the same settings as TweakUI and push them to remote computers. The download page is one of the funniest I’ve seen in a long time (and definitely the funniest on any Microsoft product ever). […]

Filed under: General

Trace code with .NET

The .NET Framework’s Trace class lets you record details about your application’s runtime behavior. Tracing gives you insight into your running code, but using it “as is” produces unwieldy code and nearly useless traces. I’ll show you how to get around these problems with a trace class library to maximize the value of tracing in […]

Filed under: Programming
Comments Off

Use your PC monitor to AM radio

Tempest for Eliza lets you use your computer monitor to transmit AM radio signals.

Filed under: Open Source
Comments Off

Sony shows PSP Software for First Time

Assuming all of this is true, then I can not wait to get my hands on this. I spend way too many hours playing on my GBA SP and could only imagine how much time I would spend on the PSP.

Filed under: Games, Gadgets
Comments Off

Project Looking Glass Screenshots

Looking at these screenshots shows me two things:

Sun is actually doing something that geeks can be proud of
A cool 3D interface does not hide the fact that the applications still look ugly and cheap. Reminds me of CDE or something.

Filed under: Open Source
Comments Off

CodeSmith

CodeSmith is a code generation tool. You create templates that specify the code to generate, and add properties (such as class name, namespace, etc.) to the template to further customize the output. It gets even better - you can even use most the functionality of the .NET base class library as well. […]

Filed under: Programming
Comments Off

WinFS Data Model

Even though it’s still a ways off, WinFS (Longhorn’s storage model) is looking really sweet. While there have been some articles on it at MSDN providing basic information about it, I found myself wanting to know more - all that it can do, how it works, how I as a developer can use it, […]

Filed under: Programming
Comments Off

Make IE5 Mac look more Panther-ish

Tired of the Jaguar-esque striped look of IE5 in OS X? Change a few bytes of hex code in the IE package and you can remove them permanently.

Filed under: Apple
Comments Off

C#: Obtaining the HTML from a URL

This is pretty much page scrapping in C#. Okay, not really, but in the end it just comes out to be one useful, but huge, regex expression.

Filed under: Programming
Comments Off

You have a resource that is shared by multiple threads. You need to provide exclusive access to this resource when a thread is writing to it. However, you do not want the overhead of providing exclusive access to this resource when multiple threads are only reading from it. You want to allow one thread to […]

Filed under: Programming
Comments Off

SVG and its Path in the Linux Desktop

OSNews has posted an article discussing the progress of SVG on the Linux Desktop. I remember a couple of years ago many people discussing the SVG revolution that was supposed to take over. Still waiting…

Filed under: Open Source

KDE Developer Dos and Don’ts

A great read for programmers who program using Qt and for those who just program. Gives insight into avoiding major pitfalls in creating horrible code. It is a shame that we even need this kinds of documents though.

Filed under: Programming
Comments Off