Comment Re:FPS TOO LOW!! (Score 1) 111
Besides, the whole point of burning $550 on a top-of-the-line graphics card is the expectation of a performance level of X, and, well, you're going to feel ripped off when you find out that your store-bought $550 card, unlike the review sample, performs just slightly above the $400-ish one.
Submission + - One in six Amazon S3 storage buckets are ripe for data-plundering (infoworld.com)
Submission + - Library journal board resigns on "conscience crisis" after death of Aaron Swartz (chronicle.com)
The board had worked with publisher Taylor & Francis on an open-access compromise in the months since, which would allow the journal to release articles without paywall, but Taylor & Francis' final terms asked contributors to pay $2,995 for each open-access article. As more and more contributors began to object, the board ultimately found the terms unworkable
The ultimate future of the journal is still undetermined, but the next issue appears to be dead in the water. In a statement to the Chronicle of Higher Education, the journal's editor-in-chief said:
And I advise everyone to take a closer look at the text when I said: “The sad truth is that we’ll never see this particular issue of the Journal of Library Administration.” I never said the content was dead, I simply stated that it would never be in JLA.
Submission + - Creationist Bets $10k Against Challengers To Literal Interpretation of Genesis (yahoo.com)
Joseph Mastropaolo, the man behind this challenge, is to put $10,000 of his own money into an escrow account. His debate opponent would be asked to do the same. They would then jointly agree on a judge based on a list of possible candidates. Mastropaolo said that any evidence presented in the trial must be “scientific, objective, valid, reliable and calibrated."
For his part, Mastropaolo has a Ph.D. in kinesiology and writes for the Creation Hall of Fame website, which is helping to organize the minitrial. It’s also not the first such trial he’s tried to arrange. A previous effort, known as the “Life Science Prize,” proposed a similar scenario. Mastropaolo includes a list of possible circuit court judges to oversee the trial and a list of those he challenged to take part on the evolutionary side of the debate.
Anyone up for winning $20,000?
Submission + - How to make PC Gaming better (techreport.com)
Submission + - Ivy Bridge running hotter than Intel's last-gen CPU (techreport.com) 1
Submission + - DARPA Robotics Challenge: Here Are the Official Details (ieee.org)
Submission + - At what point has a Kickstarter project failed? 2
Comment Bad title. (Score 4, Informative) 166
Comment Re:"Great leap forward" (Score 1) 344
No, not really.
MySQL has the concept of storage engines, in which, for every table type you create, you pick which storage engine you want to use: MyISAM, InnoDB, etc. That will determine what features one gets. However, most people don't even bother reading a single bit and get a knee-jerk reaction because the default type is the old MyISAM. Granted, it shouldn't be the default anymore, but still... bliss is only one click away for changing the table type.
InnoDB is the second most-common storage engine (the first being the old/kludgy MyISAM) and is ACID-compliant, supports foreign keys, etc. The only thing it lacks is full-text support which is only available on MyISAM tables, but that can be worked around of relatively easily.
There are also other storage engines available, some free, some commercial, and some that enable some neat tricks (like the Blackhole storage engine for replication purposes).
Comment Re:"Great leap forward" (Score 1) 344
You bring up a good point there, and I won't try to dismiss it as it's certainly valid. Misfired releases, so to speak, have hurt MySQL in recent history and created division even in its own community.
I'm just trying to shake down these age-old misconceptions that no longer have any base in reality
Comment Re:"Great leap forward" (Score 1) 344
I could see your point if MySQL weren't being used in some high-profile instances. However, even that isn't the case anymore. For instance, Google has submitted quite some patches of its own to MySQL.
See MySQL's case studies here: http://www.mysql.com/why-mysql/case-studies/
Disclaimer: I am not in any way related to MySQL as more than a web developer. I'm even contemplating a move to PostgreSQL somewhere down the road due to the recent Oracle shenanigans. But nowadays, it is a pretty good product.