Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Submission + - Tetris is hard to test (jwhitham.org)

JackDW writes: Tetris is one of the best-known computer games ever made. It's easy to play but hard to master, and it's based on a NP-hard problem. But that's not all that's difficult about it. Though it's simple enough to be implemented in one line of BBC BASIC, it's complex enough to be really hard to thoroughly test.

It may seem like you can test everything in Tetris just by playing it for a few minutes, but this is very unlikely! As I explain in this article, the game is filled with special cases that rarely occur in normal play, and these can only be easily found with the help of a coverage tool.

Comment Re:Blame the tool... (Score 2) 422

there are no bad languages, just bad programmers.

There are, however, languages that make it far easier to write code that is less readable and harder to maintain. As a specific example, compare Fortran 77 with Fortran 90. I can write the latter without any need for numerical statement labels. I can write a straightforward "DO WHILE" loop in Fortran 90, while in Fortran 77, I'd have to use the dreaded GOTO to get the same effect. Aside from basic stuff like that, I can write formulas in Fortran 90 with whole arrays, which can really help readability. In short, it is far easier to write clear code in Fortran 90 than in Fortran 77.

Do they seriously think that if those models were written in C, Java or Perl they would have been magnitudes better?

Heck, yes! For one thing, in any of those languages, separation of code and data -- something which spreadsheets actively discourage -- would be much easier.

Comment Re:Because C and C++ multidimensional arrays suck (Score 1) 634

FORTRAN was *NOT* designed to support multidimensional arrays from the beginning. That only came in Fortran 90.

Not true. Multidimensional array were around at least as far back as Fortran 77. Now what is new in Fortran 90 are the ways to manipulate those arrays. In Fortran 77, one could do arithmetic on elements of arrays but not on arrays as a whole, so, for example, adding two arrays in Fortran 77 required DO loops. In Fortran 90, though, one can add arrays A and B with the expression "A + B".

Comment Re:well (Score 2) 557

Actually, I think of the Russian occupation of Crimea as more analogous to the German occupation of the Sudetenland. The pretext for Germany occupying the Sudetenland was the presence of the ethnic Germans there, while for Russia, the pretext was the presence of ethnic Russians.

Comment Re:*nix desktops (Score 1) 503

There are a few catches with MacPorts, though:

1) Installing and updating ports usually requires compilation. There generally aren't ready-to-download binary packages. For a single package, this may not be a big deal, unless it drags in a bunch of other packages that also have to be compiled.

2) If one upgrades OS X, the MacPorts maintainers recommend deleting and reinstalling MacPorts for the new version of OS X. I'm not sure this is always necessary, but I've preferred not to risk it.

3) A given version of MacPorts targets certain OS X versions, and there's a lag time between when the latest release of OS X comes out and when a version of MacPorts comes out that targets that release.

There's also Fink, which shares problem #3 with MacPorts. It's supposed to have binary packages available, but when I tried it recently, that didn't work out, and it acted much like MacPorts, that is, downloading source and compiling it.

Submission + - How Silicon Valley's CEO's conspired to drive down engineers salaries. (pando.com)

An anonymous reader writes: This is how Silicon Valley's most celebrated CEO conspired to drive down tech wages. Apple, Google, Intel, Adobe, Intuit, and Pixar had secret wage theft agreements are described in court papers in violation of the Sherman Antitrust Act and the Clayton Antitrust Act. According to Pando Daily "Today's inequality crisis is America’s worst on record since statistics were first recorded a hundred years ago.". Jobs even threatened war against Google telling Sergey Brin to back off recruiting Apple's Safari Team.

Submission + - Target has major credit card breach (chicagotribune.com) 2

JoeyRox writes: Target experienced a system-wide breach of credit card numbers over the Black Friday holiday shopping season. What's unique about this massive breach is that it didn't involve compromising a centralized data center or website but instead represented a distributed attack at individual Target stores across the country. Investigators believe customer account numbers were lifted via software installed on card readers at checkout.

Submission + - UK ISP Porn filters snafu

toshikodo writes: The BBC is reporting that Internet content filters being rolled out by major ISPs in the UK are failing to allow access to acceptable content, such as sex education and sexual abuse advise sites, while also still allowing access to porn. According to the article, "TalkTalk's filter is endorsed by Mr Cameron but it failed to block 7% of the 68 pornographic websites tested by Newsnight". The ISPs claim that it is impossible for their filters to be 100% accurate, and that they are working with their users to improve quality. I wonder how long it will be before one of these filters blocks access to the Conservative Party's website, and what will Cameron do then?

Comment Attempting to apply feminism where it does not fit (Score 3, Interesting) 575

Feminism, in just about all its various forms, is about relationships among human beings, especially where those relationships concern women and girls. Programming, on the other hand, is about human-machine relationships, in particular about how humans -- who tend to think in very fuzzy ways -- can control and manipulate computing devices that "think" in very exacting ways are are very good at doing what they are told rather than what we want them to do. Feminism is certainly relevant to how programmers interact with one another, but not so much with the programming itself.

Slashdot Top Deals

This restaurant was advertising breakfast any time. So I ordered french toast in the renaissance. - Steven Wright, comedian

Working...