Forgot your password?

typodupeerror

Comment: Re:Good programmers don't use StackOverflow. (Score 3, Insightful) 185

by GGardner (#37967088) Attached to: Analyzing StackOverflow Users' Programming Language Leanings

Virtually all of the questions asked there can be answered by doing the following: 1) Reading the documentation of the programming language, library or software in question.

This is one reason there are so many JavaScript (perhaps actually DOM) questions -- where is the documentation to answer questions like "how do I do x, across every major browser versions which didn't really follow standards well"? If I'm programming in, say, Java or C++ with some framework where I control more of the environment, I can go to one place to answer questions, but there's no one definitive source for these cross browser problems.

Comment: Please don't use C/C++ (Score 2) 209

by GGardner (#37073534) Attached to: Chrome 14 Beta Integrates Native Client
The phrase "C/C++", that is.

C++, especially modern C++, is such a different language from C, that it makes no sense to talk about them as if they are the same. A decent programmer can learn everything they need to know about C in about two weeks. Modern C++ really takes years to really master. When I interview programmers, I'm immediately skeptical of anyone who claims to know "C/C++". Often, this means the most advanced "C++" feature they use is the // comment.

Comment: Re:Much better anyway (Score 2) 303

by GGardner (#36972102) Attached to: Apple Removes MySQL From Lion Server
I always found PostgresQL harder to admin. It needs to be VACUUM'ed periodically. How often? The poor admin is supposed to figure that out themselves. Oh, and don't try to actually use the database during a VACUUM. Even after the autovacuum feature was added, it never seemed to work right, and my databases still needed to be vacuumed by hand, sometimes taking more than a day to run. Even with frequent vacuuming, indexes can get bloated -- I would see indexes with more pages allocated than entries, which needed to be manually reindexed. Worse, you need to tell postgres how much memory to allocate for vacuum'ing, and if you don't get it right, it 'leaks' disk space. None of these sorts of things have ever been a problem for MySQL.

Comment: Re:That's not a logical statement (Score 2) 84

by GGardner (#36852344) Attached to: Lodsys Now Suing EA, Atari, Rovio and More

There are many things which are not "being obvious to someone skilled in the field" but which are easy and cheap to duplicate once the original invention has been made and published.

That may be true, but consider that Lodsys hasn't made anything, and I guarantee you the Rovio developers hadn't read the patent before they wrote their games.

Comment: Re:Better hurry before the horse leaves the barn (Score 1) 135

by GGardner (#35898032) Attached to: Amazon To Let Libraries Lend Kindle Books

There's no difference between a DRM-stripped book(which also underwent EPUB->AZW conversion, to boot) and a book which didn't have DRM on it in the first place.

Sure about that? Confident that the Overdrive folks didn't hide some watermark of some kind into it? You better be sure, because the evidence is sitting on Amazon's servers...

Give a man a fish, and you feed him for a day. Teach a man to fish, and he'll invite himself over for dinner. -- Calvin Keegan

Working...