Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Re:American Exceptionalism (Score 1) 573

The US government's job is to know what other governments are doing, therefore it has the power to spy on them. They, in turn, have the power to spy on it. We can argue the ethics of tapping Angie Merkel's phone all day, but you can't argue that there is a single law which gives a Head of Government the right not to be spied on.

Only during times of war. And the US has not legally declared war since WW2. You're making the argument that if everyone does it, it's not illegal.

And for those of you who are too lazy to use Google, here's some of the laws I'm talking about.

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

"Experience has proved that some people indeed know everything." -- Russell Baker

Working...