Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re:why the focus on gender balance? (Score 1) 579

Why not let women do what they want instead of trying to force them in to places that aren't necessarily their thing?

You mean, let them care about cooking and pink dresses instead of dealing with psychopathic jerks on wikipedia? I'm sure that if you think this through, you will at some point (maybe in a decade? nah, optimistic) reach some from of enlightenment on the issue. It helps if you talk to actual women, too.

Comment Re:Usability is THE killer feature that Linux need (Score 2, Informative) 209

As someone who uses Ubuntu as their primary desktop OS both at home and at work, I have to say that usability is the biggest feature holding back Linux desktop.

I keep wondering about this one. Because of work requirements, I started using windows again after a long hiatus, and find it rather cranky (windows 7). It was easier to program the reactions to my marble ball mouse under linux than it was under windows 7 (essentially impossible to get reasonable scroll-wheel emulation). Then there isn't anything remotely comparable with xmodmap. I can't have multiple desktops. Files are named in weird ways (PROGRA~1, etc) that have their special rules (it really is much simpler in linux). The keyboard layout kept unhelpfully switching to whatever it felt was right, and it took a long battle to ensure it stays where I want it. And Skype has annoying ads under windows.

Installing updates is gargantuan pain in the buttocks, especially when compared with ubuntu. In windows, a reboot is almost always necessary after downloading and installing updates. Quite often you need multiple reboots, and all of it takes ages. Under ubuntu they are much faster and unintrusive.

So, in my experience Windows actually sucks compared to a decent linux distro. All the talk about the little annoying things in linux is, I think, due to an illusion. Windows is popular today because it was popular yesterday, so people are used to it and all its little (and not so little) annoying things. They just don't notice anymore.

Comment Re:Not about leverage or influence (Score 1) 266

You do remember the "girls band" members that tried to desecrate the church right? Russia is not kind to it's detractors.

Fun fact: had these girls done that very same thing in a german church, they would have landed in jail. Probably a better jail, but a jail nonetheless. In other countries, with other sites of religious worship, they would have been killed.

So please, keep it real. Russia is no paradise, but it's not by a very large margine the worst place in the world. Among other things, they have a lot less people in jail than the USA does.

Comment Re:Wha? (Score 1) 204

Other sources have it as 'increase'.

Actually, it is 'increase' already in the linked article. The quote is

"We will increase the fluidity of information and ideas by taking actions to flatten the organization and develop leaner business processes,"

And it actually makes sense.

Comment Re:Specs On Paper & Buyer Mindset (Score 1) 198

This is simply a stats arms race.

one that seems overheating, too. You can buy quite well speced smart phones (way better than an iPhone, as you have correctly noted) for a very decent prize. Manufacturers seem to be running out of ideas on how to get traction in this market, so this is what they come up with: over-the-top-specs.

A market full of smartphones that can't find a way to differentiate themselves from each other seems to me like a market ready for collapse.

Comment Re:Why do scientists falsify? Or how can they? (Score 3, Informative) 52

Why do scientists falsify? Or how can they? They must know they will be found out - especially the more sensational the finding.

The answer to that is that they fool themselves. If you ever have been at a top institution of this kind you might have witnessed a certain mix of hubris, megalomania and groupthink. These people tend to be really good, but their selfconfidence, their lack of understanding of statistics, their mutual reinforcement, and the huge pressure to keep producing blockbuster research can warp their thinking. It would not surprise me that they believed the results to be true, but thought it was just the damned data that kept being wrong.

This sectlike atmosphere at some of these institutions is compounded by the fact that people there work so insanely hard that they don't have time to take a step back and think things through.

Comment Re:Throw the book... maybe literally at him. (Score 1) 220

Many of those systems have no (or minimal) idle time.

In my experience, this is true only for the top machines in terms of reputation of the institution where they are run. Many more supercomputing facilities actually idle around a lot if not most of the time. They were bought to confer bragging rights and are embedded into a context that makes them unable to operate effectively.

A lot of these machines are hard to program for, and the institutions that own them hard to deal with (often universities with bad bureaucracy and ridiculous internal rules) which means few bother and even fewer get to run code on them. Of course that is something that is rarely admitted in public.

I think the guy did wrong and should be punished. OTOH, I think he also deserves an award for showing (again) how ridiculous the whole HPC thing actually is. Here we have these supposedly super-high-end machines (in terms of running benchmark software) which just aren't competitive by a hilariously large margin with what is out there mining bitcoins. How embarrasing.

Comment Re:This is what happens... (Score 1) 156

I would say it was only amoral if exploited for one's own gain or to others' detriment.

So if a hack gives reputation to a security researcher while embarrassing the website owners - how is this not exploitation for the researchers gain to the website owners detriment? You go there and pull off an I-am-smart-and-you-are-a-moron on these folks that are trying to make a living. How is that different from being an asshole?

The argument that security researchers are actually doing good is just an unsubstantiated assumption that needs closer scrutiny, and it is quite likely not true in many situations. For example, the SCADA vulnerabilities have not led to any major or even minor problem, yet they have generated a lot of FUD and maybe even given ideas to criminals and terrorists. Researchers have gotten their nice reputation out of this, but what has the world gained? And look at how the credit card industry works. A lot of their shit is fundamentally flawed from a security point of view, yet it works and is quite convenient. How can that be?

Security researchers make a nuisance of themselves in many situations, and don't even realize it. Their "told you so" can be extremely costly to a company when there is trouble, because of how it affects liability issues. Most companies would not be viable if they had to fix every bug unearthed by researchers or face full liability claims when their unfixed code fails. The kind of talent needed to get security stuff right is just not available in the needed quantities at a reasonable price (i.e. hourly rates comparable to that of a janitor) so it is unreasonable to expect things to be secure. The alternative to insecure stuff is no stuff. Everybody who's not a propellerhead knows this.

Comment C++ FQA (and ignore the downmods) (Score 2, Informative) 352

If you're doing C++ everything by Meyers.

If you are doing C++, you absolutely must read the Frequently Questioned Answers:

"C++ is a general-purpose programming language, not necessarily suitable for your special purpose."

It's a little (though not much) out of date, as it does not cover C++11. But the author has some comments on it, too.

Obviously I am going to be modded down, but hey. Truth is truth.

Comment Re:When (Score 1) 634

If your Fortran program ran correctly on a PC it would run correctly on a mainframe, mini, or supercomputer. More importantly, it would produce the same result. It didn't matter which compiler you used.

This isn't true. As in C, optimizations might have changed the order of fp operations resulting in subtle differences that often matter. Memory allocation (yes, the static arrays) has some really funny weirdnesses across compilers that make buggy programs produce very different results on different versions of the same compiler. The F77 language has very little support for avoiding bugs, and quite a few booby traps. Most F77 codes are just riddled with bugs and depend on undefined behavior that varies a lot from one compiler to the next.

Just look at all the code generation flags of gfortran to get an idea.

Comment Re:Buggy whips? (Score 5, Insightful) 769

This is a very real problemâ"it's not just some rich people being assholes, but rather some rich people who stand to become substantially less rich if things go the way they seem to be going.

I thought the actual story was that if you or me dislike some policy we can go fuck ourselves, whereas if the Kochs dislike it, they get a real chance to change it.

An oligarchy indeed.

What I also find a little unsettling is that most commenters, including you, don't seem to think much of that power imbalance (or even be aware of it) directly jumping to the solar vs. no solar issue.

Slashdot Top Deals

"Ninety percent of baseball is half mental." -- Yogi Berra

Working...