Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Re:Are You Kidding? (Score 5, Informative) 541

Read the TFA. People aren't getting upset about skin color: Quote: "In the book, Wade suggests that such genetic differences may help explain why some people live in tribal societies and some in advanced civilizations, why African-Americans are allegedly more violent than whites, and why the Chinese may be good at business."

Comment Hi, it looks like you are writing difficult code! (Score 4, Insightful) 116

The last thing I need when I am focused of a difficult chunk of code is Clippy popping up and breaking my focus. Some tasks are just much harder than others. I think any decent coder knows when they are struggling and increases their focus or grabs someone on their team to help. Bad coders may not, but bad coders are always bad coders, and no tools will help someone who just can't get it or just doesn't care.

Comment Re:Google (Score 1) 116

The search-engine drive may contain stuff they'd rather not be public (for reasons of competition), like the software that manages all that data and the data structures it is stored in. Then there is Google Mail, which contains private emails and contacts. And I'm sure other examples.

Comment Re:Doesn't an orbit require gravity? (Score 2) 54

Solar wind. Solar radiation pressure. Bits of gas and dust blowing off the comet and hitting you. EM. Lots of other stuff going on is space. "had the effects of the sun's radiation pressure on the spacecraft of the Viking program been ignored, the spacecraft would have missed Mars orbit by about 15,000 kilometers"

Comment Re:Java or Python (Score 1) 415

I think the Perl solution is fine (not that I'm a fan of Perl syntax in general). The Java solution is fine (as you point out errors get detected at compile time). The Python solution is not: having to call "str(i)" everything I want to put an int into a string is too verbose (which makes it harder to read) and very error prone (especially when you are used to other languages, but I imagine even if Python is your only language it still is). And the fact that you don't detect the error until you hit the statement it's in (which might be rare if it is in some error handling block) is what really makes it suck. Dynamically-typed languages in general suck - try to be quick-and-dirty in upfront development time and you'll pay for it later.

As far as ternary operator reading like an English sentence: making things read like English always goes badly in programming languages, e.g. COBOL. And I find the Python example particularly vexing when trying to understand a chunk of code, because it is inverted to the logical flow; logically you execute the test first, then decide which branch to take based on the results of the test. That's the real problem, it's not the English, it's the order.

Comment Re:Pascal (Score 1) 415

The nice thing about Pascal as a learning language was you knew it was a toy language that you wouldn't use in the real world. I fear the programmers who learn Python in school and then try to apply it to major projects in the real world. I learned lots of other academic languages in school too, there is no problem with the fact that I never used them outside that class; it taught me to pick up new languages quickly.

Comment Re:Java or Python (Score 1) 415

The whitespace sensitivity is not the thing I hate most about Python (although I hate that too). I hate that I can't build a string by doing "Foo" + i (where i is an integer) and I can't catch the error at compile time (because it's interpreted, but more because variables aren't declared to be a type); it's a "worst of both worlds" combination of weakly and strongly typed language. Also the ternary operator is a huge WTF: a if test else b . Why the hell would you put the test in the middle of the 2 possible results! And why not do it like C, Java, and just about every other popular language.

Comment 1989 (freshman in college) (Score 1) 204

Undergrad CS lab had SGI and HP machines, and another lab had some Suns. Also 3 button mice and a scroll wheel that was a separate unit from the mouse.

The fun of making things pop-up on other people's screens on the lab. Nothing was locked down by default so unless you changed the permissions anyone could launch a process to display on your screen.

Neko was fun too.

Slashdot Top Deals

Intel CPUs are not defective, they just act that way. -- Henry Spencer

Working...