Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Comment Re:Tricky (Score 4, Insightful) 152

How about minutes of media? Text doesn't count, as it isn't media.

Text isn't media? You've got a really bizarre definition of media! Even accepting that the word now has a separate meaning aside from its meaning as the plural of medium, the phrases "mass media" or "mainstream media" have always included newspapers and books. Which are, generally, text.

Comment Tricky (Score 4, Insightful) 152

Most of my video, but almost none of my music. But I'm not sure how those two compare percentage-wise. And what about books? Do those count as media? I certainly don't stream even e-books. (Except, arguably, through O'Reilly's Safari program, which might count.) But then there's news media, which is almost entirely streamed. If you count visiting web-pages as streaming.

Honestly, I'm really not sure. Depending on how I measure, I might be able to come up with a number anywhere from 20 to 80.

Comment The actual study has somewhat different conclusion (Score 2) 157

Some meta-analysis of the actual study, along with some examination of how the media has generally thoroughly misrepresented the study, is available at Language Log.

Thus Component 1 (23.6% of test variance) was significantly heritable — h2 = 0.538. The symbol h2 is used to denote "narrow-sense heritability", which is the ratio between the variance due to average effects of alleles, and the phenotypic variance as a whole:

$$h^2 = \frac{Var(A)}{Var(P)}$$

In other words, about half of the variance in a PCA component accounting for about a quarter of the variance in test results was accounted for by genetic variation.

Component 3 (10.8% of test variance) was also significantly heritable, with h2 = 0.335. Thus about a third of the variance in a PCA component accounting for about a tenth of the variance in test results was accounted for by genetic variation.

The genetic relationships of components 2 (11.7 of test-score variance) and 4 (8.2% of test-score variance) were not statistically significant.

A quarter plus a tenth of the test results were shown to be related at all (not in whole, but at all) to heritable traits. The grand total overall was just under 16% (a half of a quarter, plus a third of a tenth).

Now, I don't know about you, but I wouldn't describe 16% as "largely". I'd describe 16% as "partly", or "mildly", or "somewhat". But of course, reporters for Nat'l Geo and The Independent and the like aren't big on math.

It's still an interesting and intriguing study, of course, but so grossly misreported that it boggles the mind. We need a better grade of chimpanzee writing science articles for the general public! :D

Comment Re:another language shoved down your throat (Score 1) 415

In your non-Python language of choice, how do you tell the difference between an error in indentation and an error in marking the beginning and ending of blocks?

Difference? There is no difference! I don't indent! I mark the beginning and end of blocks, and the code is automatically indented to match. I can, with some difficulty, defeat this mechanism, but I can't think of any reason why I'd want to.

Comment Re: another language shoved down your throat (Score 1) 415

You're free to dislike the way Python handles blocks and white space.

Thank you. Not that I needed your permission, but I shall indeed continue to consider it an idiotic design.

But if it actually substantially affects your productivity, you're simply not a very good programmer, because it's not a big deal in practice.

Agreed. However the fact that it doesn't noticably harm my productivity doesn't mean it's a good feature.

In any case, we're discussing its potential use as a teaching language here, and people who are just starting to learn to program are, pretty much by definition, not good programers. So its impact on not-good-programmers is still very relevant.

Comment Re:Well out running the police ... (Score 1) 443

Except there are people who survived crashes at much higher speeds.

There are people who have survived jumping out of "perfectly good" airplanes without a functioning parachute. Doesn't mean you should take up skydiving-without-a-parachute as a hobby. :)

There's a reason cases like you mention make the news: surviving a crash at those speeds is an impressive and newsworthy feat. (The reason this case made the news was not the fact that the driver died, but the fact that a Tesla was involved. Otherwise, it seems like a pretty unremarkable story.)

Richard Hammond of Top Gear UK fame survived a crash at 288 mph

And I bet he was buckled in. Remaining in the vehicle during a high-speed crash greatly increases your chances of survival. Exiting a vehicle at 100+ mph is generally contraindicated! (Tip for future reference.) ;)

Comment Re:another language shoved down your throat (Score 4, Insightful) 415

Have you ever been fooled by incorrect indentation that didn't compile the way it looked?

Nope. My editor takes care of indentation for me, in every common language except Python, and when I have to deal with a batch of code written by someone else, I run it through indent(1) first. So, in fact, it's just the opposite: when the indentation doesn't match what I expect, I know there's an actual problem in the code!

With Python, on the other hand, I'm actually more likely to have an error in the indenting, because there's no easy way to see how many blocks I'm terminating when I outdent by an arbitrary amount. Which is a real PITA when you're refactoring.

Of course, things may be different if you're using crappy tools. But professionals shouldn't be using crappy tools.

Brackets, begin..end, and semicolons are crutches for compiler writers not programmers.

No, they're tools to make my job easier. Whatever the historical reason for them may be, they benefit the programmer! They make me more productive.

Now, I'll grant that Python is a remarkably good language despite its horrible flaw of relying on indentation. And many of its good features also make me more productive. But that doesn't mean that relying on the indentation isn't a horrible flaw.

Comment Re:Next up: We need a centrifuge in orbit! (Score 1) 76

If the answer is humans need a full gee, then we might as well just resign ourselves to limiting our trips into the solar system to quick jaunts and robotic explorers.

Disagree. Large-scale habitats/SPS/O'Neill Colonies have always been the best option. No huge gravity wells to deal with, since rotation provides your G's, and, while they are extraordinarily expensive, they cost nothing compared to a full-scale terraforming effort, and can provide a shirt-sleeve environment in basically no time flat. The one remaining big knock on them was the issue of radiation shielding, and now, that may be solved.

Comment None of the options fit, exactly (Score 1) 216

I do know, but nobody's complaining. I only know because one time, when a guy changed desks, he complained that it was too cold at his new location, and the building maintenance guy came up and tweaked his vent, which fixed the problem, and since then, nobody else has complained.

Which doesn't really leave me with anything to chose on this poll, but oh well. Par for the course. :)

Comment Re:Git can be seen as his more important contribut (Score 1) 141

non-distributed version control systems seem so much simpler

I find quite the opposite. The simplest case is one user, and a "distributed" VCS is clearly the easiest option in that case--no central repository needed, no environment variables to set, or separate paths to worry about. Just say "init", and you're off and running. (At least with Mercurial or Git, the two DVCSes I have experience with.)

With more than one user, it's slightly more complicated, but not enough to worry about. It all boils down to the distinction between "save this change" and "share my changes with my co-workers". Having those as separate commands really isn't that confusing, and once you're used to it (which should not take long), you'll have a hard time remembering how you lived without it! And that really is the entire difference, fundamentally, between distributed and non-distributed VCSes.

(Most of the things that are great about Git are unrelated to the distributed/non-distributed aspect, or at best tangential to it. For me, the big wins of either Git or Mercurial over, say, Subversion, are how much better/faster/easier/more powerful branching is, which doesn't really have to do with being distributed or not, and how much faster the whole thing is, overall, without all those network round-trips, which does.)

I started out somewhat skeptical, like you, but after my first pilot project, using Mercurial, I was a complete convert! YMMV but it Works For Me(tm)! :)

Comment Re:What kind of idiot? (Score 1) 62

That's because TFS is the usual slashdot idiocy, and TFA is simply bad reporting. This report tells quite a different story:

"As Judge Beeler explains, companies can choose not only whether to include the Like button in the first place, but also to specify what information the button should relay to Facebook through cookies. In the case of Hulu, the presence of the button conveyed not only basic browser information, but also details about the user’s “watch page” — a personal page that every Hulu user has."

...and...

"The judge noted that the information transfer was not restricted to occasions when a Hulu user “Liked” a video, but rather every time a user watched a video."

So yeah, I'd say it sounds like a lot more than I'd expect was being shared.

Slashdot Top Deals

What hath Bob wrought?

Working...