Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
×

Comment Re:School code (Score 4, Insightful) 292

I'm sure I've missed other ways academic code is bad.

The biggest difference is that academic code is _short_. If your whole code base is 10k lines, it's easy to cover all the requirements in a clean design. If you are dealing with millions of lines, there's all kinds of oddball unforeseen interactions and requirements that pop up way late in the game.

Comment Re:Itanium 3 is a decent CPU (Score 1) 124

And for high-end use, the Itanium is a genuinely useful CPU. Because the performance of a cluster is a function of the communication delays, very high-end clusters WANT to have very high-end CPUs.

Note the above is certainly true for high-end HPC clusters, but running large Oracle databases on those kinds of machines seems kind of expensive for the performance you get. For Oracle (and other databases), the high-thread count Sparc T-3 / T-4 kinds of processors will give you much better performance at lower cost. Of the few ia-64 installations, I bet most are floating-point heavy HPC clusters, I wonder how many are running Oracle or VMS and "business" workloads.

But what do I know, I've only been observing what actually works vs what the customers want for 35 years

Of course, if customers actually wanted Oracle on Itanium, there wouldn't have been a lawsuit...

Comment Re:It doesn't matter (Score 2) 317

The real problem here probably has to do with shared libraries. If you have a function in a shared library with external visibility, the compiler can't remove it, unless it is doing whole program optimizations across all of the programs, and I doubt the LibreOffice builds are doing that.

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

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

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

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

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

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

Slashdot Top Deals

So you think that money is the root of all evil. Have you ever asked what is the root of money? -- Ayn Rand

Working...