Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror

Comment Bad Engineering (Score 1) 443

Seriously. Most cars are overdimensioned, with toy-cars, excuse me, sports-cars as the ludicrous summum of waaaaay too much horsepowers to be of any practical use. Yet those toys are celebrated as the summum of engineering. This is not only a waste of materials and fuel, more than just loud, it's also responsable for many deaths by accidents and pollution. What use is a car that can drive 400 km/h (Bugatti Veyron, the most ludicrous car ever designed) when 130 km/h is the maximum speed? It is simply a case of "mine is bigger than yours", a dangerous, wasteful pissing match.

Comment When can we trust computers? (Score 1) 216

In another way, this is pretty much the same question. Computers nowadays purport to serve the user, but often serve others first, either openly or covertly, by installing malware, surveilance software and botnets. There have been plenty of incidents where private data has been made available to third parties without the users consent or even knowledge. There is no reason to think this would be different when using a robot. So, apart from uncanny valley, i would need a substantial amount of trust in the manufacturer and/or operator of said robot to allow one into my house, especially if it's equipped with sound and/or video sensors.

Comment After reading that... (Score 1) 542

... I wanted to kill myself, but then again, throwing myself in front of a bus isn't carbon neutral. What's the carbon-footprint of a handgun? A rope? A bridge, calulated per jumper? Aaaarrgggh.... Damned if i do and damned if i don't I guess i'll just hold my breath... (...and no, i'm _not_ being all that serious...)

Comment Trust... (Score 1) 515

Ok. Along with Sony, Samsung is now on my personal purchase blacklist. I just don't get it, do these guys think they'll get away with stuff like that? Have the marketing&management clowns that came up with and approved of this crap even considered what this does to the firms credibility? Have they an IQ that exceeds their shoesize? (rethorical question).

Comment Just waiting for a crash and burn (Score 1) 112

Methinks the inventors have dramatically underestimated a) the learning capabilities of 2-to-5-year-olds b) the social intelligence of same, b) the destructive potential of same, and dramatically overestimated a) the everyday authority these toys will have in the eyes of 2-to-five year olds b) the electronics ability to differentiate between c) the willingness and/or ability of parent to feed toy with the behaviors mentioned. In short, this is a disaster waiting to happen. Woe to the parent that relies on one of these contraptions.

Comment Examples contain bugs... (Score 1) 534

The fun thing is that i've found at least three bugs in their example code other than the ones MITRE intended to illustrate. The most glaring of which would prevent the code from even getting compiled. http://cwe.mitre.org/data/definitions/805.html void host_lookup(char *user_supplied_addr){
struct hostent *hp;
in_addr_t *addr;
char hostname[64];
in_addr_t inet_addr(const char *cp);
/*routine that ensures user_supplied_addr is in
the right format for conversion */
validate_addr_form(user_supplied_addr);
addr = inet_addr(user_supplied_addr);
hp = gethostbyaddr( addr, sizeof(struct in_addr), AF_INET);
strcpy(&hostname, hp->h_name);
}
The final strcpy will not work, since the first parameter is a pointer-to-pointer-to-char, instead of pointer-to-char.

Slashdot Top Deals

Yet magic and hierarchy arise from the same source, and this source has a null pointer.

Working...