Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re:What can you do? (Score 1) 397

I think you're wrong. Both sides go in for regulation, regardless of their rhetoric. (Cicero originally formalized rhetoric as a way of lying in a convincing manner, and taught it in a school for Roman politicians.)

They do tend to regulate different things, but neither side ever seems to undo the other sides regulations, no matter how adversely they may affect the citizenry. After all, they need something to vilify their opponents about.

Comment Re:Don't worry Americans... (Score 1) 397

FWIW, Guiness is the only beer I currently consider worthwhile. But the Guiness I see says on the label that it is brewed in the US, and so would be affected by this ruling.

As someone else said, it is best at room temperature. Cold it's merely acceptable. Most stout I find unpalatable.

Comment Re:So - who's in love with the government again? (Score 2) 397

I think you overstate the inefficiency of ethanol as a fuel...though perhaps you need to tune your engine differently to take advantage of it.

OTOH, it is a remarkably poor fuel when one considers the costs of originally producing it. Sugar cane is much more plausible, but doesn't grow in the same areas. The best argument for corn derived ethanol fuel that I can see is that any corn used as fuel won't be turned into fructose syrup. AFAIKT, this is basically a government subsidy to the large growers. A very inefficient one, too.

Comment Re:All publicly funded research needs public relea (Score 1) 348

IIUC, his lawyers requested that certain materials not be produced, and in doing so quoted a section of the state law which exhempted a particular category of material from being required to be produced. If you don't like the phrasing, talk to the people who wrote the law. His lawyers were just doing their job, and making it easy for the judge.

Comment Re:So what? (Score 1) 348

I don't think they count as science...until the make predictions that match the later observed results. Then they do.

Unfortunately, as you pointed out actually recreating the simulation can be absurdly difficult. And if it's not reproducable, then it's not science.

That said, when I worked at a transportation study commission, we used models all the time. We never deceived ourselves that they were correct, but they were a lot better than just guessing. Policies were built based around their 20-year projections. Often we'd have several very different 20-year projections based on different assumptions about what would be done in between. (Would this transit project be successful? Would that bridge be built? What effect would building the other highway have on journey-to-work times?) The results were never accurate. They were subject to political manipulation...but so was what projects would be built. It was a lot better than just guessing, but it sure was a lot short of science.

I think of this frequently when I read about the models, and the problems that people have with accepting their projections. Usually the problems aren't based in plausibility, but rather in what beliefs make them comfortable. And in those cases I tend to believe the models. But I sure don't think of them as "sound science".

OTOH: Do you trust the "Four Color Theorum"? It's a mathematical proof that any map can be colored with four colors, with no two adjacent patches having the same color except at a single point. The proof is so complex that no human can follow it. Do you trust it? Would you trust it if a lot of money was riding on the result?

Even math is less than certain. Complex proofs are only as trustworthy as every step in them multiplied, and both people and computers make mistakes. There are lots of illusions that prove that people will frequently dependably make the same mistake. So you can't really trust math. But just try to find something more trustworthy. You need to learn to live with less than certainty, because certainty is always an illusion.

Comment Re:Is it even legal for a judge to sign a warrant. (Score 1) 169

Who's going to tell the judge no? Who's going to enforce it?

Sometimes a judge will be so egregiously corrupt that the higher courts will discipline them, but it's quite infrequent, and I've never heard of it happening when he was acting to support the local politicos. (And even then the "discipline" is generally trivial in comparison to the offense.)

Comment Re:Ivy League Schools (Score 5, Insightful) 106

The Republicans who were responsible for emancipation (as an act of war against the rebellious South) is only vaguely related to the current Republican party. The Democrats have a closer link, and again, the civil rights movement was a political attack against the Dixiecrats, who pretended to be Democrats, but actually had an independent agenda.

P.S.: Given what the Federal Govt. has become, are you so sure states' rights was a bad idea? You can trace the current Federal Govt. back to the centralization imposed (by both sides!) during the Civil War.

P.P.S.: Under privitization, prisons have become defacto sources of slave labor. So don't claim that slavery has been eliminated. It's nature has been changed, but it isn't gone.

Comment Norway: super rich country with strong support? (Score 2) 320

Non-Norwegian here. Isn't Norway one of the richest countries in the world with a strong social support system? So the situations which make somebody homeless in other countries don't apply to Norway?

For example - in USA, I believe that people have to pay for healthcare, and after a certain period of time, no longer get housing benefit support when unemployed (USA person will have to help me here) - so it is possible to be a hard working member of society, but due to illness, get in debt (paying for medicine) and end up homeless (because you can't work, so can't pay your housing bills) so get made homeless, and can't get another place to live because you don't have the money to rent a new place?

If somebody is ill in Norway, do they have to pay for healthcare? if somebody is unemployed, will the state give them financial support to pay their housing costs? If so, you have a very different environment from other countries in the world.

Comment Re:Subtle attack against C/C++ (Score 1, Insightful) 189

C++ (and do a lesser extent C) lose support because of their extremely poor support for utf8. And the absurd part of it is that they could easily do a good job. Utf8 is just a byte array with various routines to interpret the code. Glibc does a reasonable job for a C library...not ideal, but reasonable.

All the array needs is a way to address a chunk by character # rather than by byte #, a way to copy of a character or a slice of chars, and a way to determine the general character classification of any character. Also a few methods: first(), last(), hasnext(), hasprior(), next() and prior(). And these all "sort of" exist, except getting the general character classification. (Do note that these functions need to operate on utf-8 characters rather than on bytes.) But several different ways of doing this are already known. Vala, e.g., handles it without difficulty, and is able to emit C code (using Glibc libraries).

So it's not a programming difficulty that's holding things up. It's the standards bodies...or, perhaps, some members of them.

But I've looked at C++11, and it is not a satisfactory answer. Vala has a good answer. D (Digital Mars D) has a different good answer. Even Python3 has a pretty good answer. (I don't like that in Python you can't determine memory allocation within the string.) Also Racket, etc. But C++ doesn't.

Comment Re:Wonder how Ada 2012 would fare... (Score 2) 189

It's hardly a solved problem. There are approaches that can be made to work, but that's not the same thing. The current approaches are all clumsy, and often that's a charitable description. It's usually doable. Saying anything beyond that is fulsom praise.

OTOH, because different languages have different basic derived structures, it's often not clear exactly what the best approach would be, even when one is considering things carefully. For one purpose the best I've been able to come up with is marshalling everything into a byte array, and then separating it back out. Doable, but hardly what I'd call "a solved problem". Probably an insoluble problem because the different languages map the same concept differently internally. So you need to deal with it on a special case by special case basis.

Slashdot Top Deals

Love may laugh at locksmiths, but he has a profound respect for money bags. -- Sidney Paternoster, "The Folly of the Wise"

Working...