NASA requires plutonium-238 for radioisotope power systems for spacecrafts. Plutonium-238 was a by-product of now defunct Cold War–era nuclear weapon factories.
Oak Ridge National Laboratory produced a 50-gram sample in late 2015—the first since 1988. This year, having refined the process, the lab expects 300 grams. They want to ramp up to 1.5 kilograms per year.
"A Tennessee judge has rescinded his controversial program that sought to encourage drug-dependent female and male inmates to cut their jail time by voluntarily agreeing to undergo birth control procedures.
White County General Sessions Court Judge Sam Benningfield of Sparta filed the order on Wednesday, a day before two state lawmakers asked Tennessee Attorney General Herbert Slatery to render a legal opinion on the controversial program's constitutionality."
DuckDuckGo has !bangs. If you search for "!so javascript", then you just end up on stackoverflow.com with a search term of "javascript". There's dozens (hundreds?) of these !bangs -- including !g if you want to run the search on Google.
So I've installed this extension below for Safari. I use the !bangs in the address bar if I want to go somewhere specific -- !so (stackoverflow), !a (amazon), !y (stock quotes). And, otherwise, it just uses Google search.
I believe everyone is referencing the index key size length in MySQL. In that case you can get "ERROR 1071 (42000): Specified key was too long; max key length is xxxx bytes" errors.
This happens even in InnoDB -- it's taking the maximum byte size of all the key fields. For a single VARCHAR(255) in MySQL utf8 that ends up being 3*255=765 for just that one field. If you add other fields, it's really easy to hit the max key length and have the create or alter fail.