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

 



Forgot your password?
typodupeerror
×

Comment Re:Brain Dead (Score 1) 159

Consider: int x; What happens here? x = 3.1415; Does x hold the correct value? No. But if x was a scalar, then: x = int( 3.1415 ); says exactly what is happening. Type safety places restrictions on what can be done and programmer have to memorize the rules because they're not natural to his thinking. It's because of all the things that programmers have to memorize that programming is hard. The more things a programmer have to remember, the more bugs he will create. Having to write int() every time he wants an integer: 1. decreases bugs, and 2. makes the code more readable. Types are not natural; they were created to make compiler writing easier. They do not make programming easier, just the opposite. They make programming harder because the force the programmer to remember more things.

Comment Brain Dead (Score -1) 159

Any language that has strict typing is brain dead. People do not think in types. Ask anyone on the street: how do you multiple by ten? They answer: put a zero on the end. That's string manipulation, not arithmetic. People automatically switch from numbers to strings and back to numbers without thinking about it. People do not think in types.

Comment Re:No Crossing (Score 1) 263

Consider: g = -GM / ( r^2 - e^2 ) where g is the acceleration, G is the gravity constant, M is the mass of the black hole, r is the distance from the black hole's center, e is the radius of the event horizon. From Wikipedia: "Attempting to make an object near the horizon remain stationary with respect to an observer requires applying a force whose magnitude increases unbounded (becoming infinite) the closer it gets." http://en.wikipedia.org/wiki/Event_horizon#Interacting_with_an_event_horizon

Comment Dream On (Score 4, Insightful) 397

The internet has always been open. There have been fools that think adding "security" to it will change this. It doesn't. Get real, people. There are only two rules to security on the internet: 1. Never put anything on the net that you can't afford to be viewed by the public. 2. Never put anything solely on the internet that you can afford to lose. Corollary: Never put anything in a cloud that you can't afford to be viewed by the public.

Slashdot Top Deals

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

Working...