Forgot your password?
typodupeerror

Comment Dislike unilateral action by Firefox (Score 1) 448

Mike, I also use these extensions, and I wish you gave me the options of enabling them.

I am unhappy that something I use gets unilaterally removed by Firefox.

At the same time, Firefox makes no effort to remove truly hostile software like ICQSearch - I spent at least an hour removing ICQ from Firefox, and it suddenly comes back to life a week later.

Comment C++ machine code trivial? Remember smart pointers! (Score 1) 777

One counterexample that keeps me busy:

In C++, one line of code such as 'a = smartPtr->b;'
can have a whole smart-pointer mess behind it.
That can be an endless pain to debug, when it goes wrong (think large destructor chains).

I would argue instead that Java and C#, with their garbage collection,
have a more trivial mapping of the same line: Just a plain assignment.

Just my five cents :-}

http://code2code.net/ - Migrate your C++ to C#

Slashdot Top Deals

Base 8 is just like base 10, if you are missing two fingers. -- Tom Lehrer

Working...