Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×

Comment Fix bugs first, please! (Score 1) 169

For instance, it would be nice if the lastest version of Skype for Windows didn't sometimes freeze for 45 seconds at a time when merely sending an instant message, with no audio or video call in progress.

A translator for Skype? Bah, that just needs a fixed vocabularly of audio files consisting of "can you hear me now?" and "I cannot see you!" in 50 languages.

Comment Re:Ten Reasons to use Modern Fortran (Score 1) 634

Pass by reference is the norm? That is moronic and encourages bugs. We should avoid destructive manipulation such as variable assignment as much as possible in programming; reference parameters exist to make it possible to modify a caller's variable.

If you have reference parameters in the language, then any foo(var) call can potentially modify var. If it doesn't today, then someone can change it tomorrow to give himself access to var inside foo.

The C convention of taking an explicit address is safe against this.

Pass by value should be the norm. Pass by reference shouldn't even exist.

Lisp is purely pass by value; there is no pass by reference: just that some types have reference semantics (cons cells, arrays, etc).

Comment Ah, but: how much of this ships to end-users? (Score 1) 634

Do these scientists develop friendly graphical user interfaces for their Fortran programs?

Do these programs have robust and secure handling of all input?

How about configuration: are there dialogs for setting up preferences, which are persisted somewhere?

Do they package up user-friendly installers?

How much of their stuff runs on new platforms like tablets and smartphones?

What non-Fortran-stuff do these programs integrate with? Anything over a network?

Where can I download a scientific Fortran program to evaluate its quality?

Has anyone written a viable program of the following in any dialect of Fortran, new or old?

- operating system kernel
- device driver
- web browser
- web server
- instant messenger
- audio/video telephony client
- etc

Comment Re:NP vs. P doesn't exist in the real Universe (Score 1) 199

Of course the computer is thinking.

Our problem is that each time computers advance, we take away from them by saying that whatever they are able to do now is not thinking.

Furthermore, we take that away from people also: since computers can now do X, it means that X isn't thinking, and it also isn't thinking when people do X, as was mistakenly thought before we figured out a way to do it with computers.

All computation is a form of thinking. When a vending machine gives you a snack, it performed thinking. Moreover, it exercised free will.

Slashdot Top Deals

Beware of Programmers who carry screwdrivers. -- Leonard Brandwein

Working...