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

 



Forgot your password?
typodupeerror
×

Comment Re:I hate to say it, (Score 1) 102

Exactly. But Negroponte is about PR and vapor, not producing actual solutions or products.

So, ignoring the rest of what OLPC has delivered, the 380,000+ computers in the hands of Uruguayan students that have raised the average computer literacy of 8 year olds to the average level of 18 year olds prior to the project aren't "actual solutions or products"?

I happen to be Uruguayan and currently live in Uruguay... and while I endorse the OLPC project in my country (Plan Ceibal), I'd say you're grossly exaggerating its results - we already had a very good literacy prior to it (as in, better than the US), and the XO itself might not even have been the cheapest option.

Though if the OLPC project had not existed, I doubt such a far-reaching and ambitious plan would have been implemented, so even if it was more PR than anything, it WAS important, in making the politician's minds open to the possibility (and it was a HUGE selling point for politicians of the current party in power at the recent elections which they won).

Comment Re:MS really does care about making devs happy (Score 2, Interesting) 558

Hardly. They care about making companies happy sure; when "development" requires little skill, more people will line up for the job, pay will be less.

And, isn't that the point? Haven't we always said that programmers would automate themselves out of a job? I embrace that... I wouldn't want to be stuck programming in Assembler or C the rest of my life... I rather like other aspects a lot more... then again I'm not a hardcore programmer, I'm one of the business programmer types the GP mentioned.

Comment Re:Perhaps we just need unemployment to rise (Score 1) 287

Indeed, if we can produce enough for everyone *and* have enough jobs for everyone by cutting everyone's hours, that's the way to go.

As long as the chinese, indian, or other "developing" countries are hoping to undercut you, I don't see lowering productivity as the way to go (unless you expect to lower pay to match).

Comment Re:A duck is rather harmless... (Score 1) 174

It's scary, really. Imagine how easy it would be for a predator to create an online persona that is NORMAL? When this guy, who's status is regularly updated with lines such as "ayyy yo cause when i git crunk i like to toke...yaa digg??/? ahhaahaahh", is able to have even one successful conversation.

Heh I bet that fictional persona is far more interesting than me (or the average slashdotter I guess :P ) - I'm NOT able to get phone numbers or get to add "gurls" :P

Comment Re:If women are so smart . . . (Score 1) 928

this older couple in their late 40s early 50s. And they were telling me that they went to a rave a few weeks ago in Toronto. It was strange. But then Torontonians would have thought it was cool anyways.

My mother is in her 40's, lives in Toronto, and goes to raves. There you have, anecdotical evidence :) (a few more and we'll have a statistic :P )

Comment Re:Happened to me recently (Score 1) 420

Use this experience as evidence that you need to implement a robust software testing regiment.

You're preaching to the choir :) . At my last position (with Equifax), they had a VERY stringent testing process... it was a bottleneck, but it worked, and we never had downtime or production errors like this one. Sadly it's been an uphill battle over here, and we've been through one IT boss change already in the last year and a half I've been here (an insurance company).

Comment Re:Happened to me recently (Score 1) 420

Thanks a lot for your time

You've got to handle that problem at the application layer, preferably as soon as possible.

Before converting it to a double or float point or whatever you are using, you have to do some data verification. Similarily, you wouldn't want someone putting in "ABC.75" dollars, because that can't be parsed, you have to handle all those scenarios.

Actually, I had already implemented that they couldn't type anything but numbers, commas and periods in the relevant text box.

You check if there are any Comma's. If so, how many characters follow the comma. 2 would be like 1,00 (one dollar) , and 3 would be like 1,000 (one thousand dollars). In no case in English formatting should a comma be followed by any less than 3 characters, and assuming they are inputing their information properly, French users won't have any more than 2.

Similarily, you apply the exact same logic for periods, just vice versa. This will allow your program to determine which standard is being used independant of operating system OS.

I probably should do that.

Once you've nailed that, you can change comma's to decimals or what not depending on which case you are in, and then converting it to your double from there.

You should be able to test it on your own at least a few times, to make sure it works, then it SHOULD work across all OS languages.

It should. Thanks.

Comment Happened to me recently (Score 2, Interesting) 420

I made a similar mistake recently... I made a (.NET) data entry software that received monetary quantities as user input, and I converted them without taking into account the Windows settings for decimals and thousands separators.

It worked fine until somebody used a different language OS... and some strange quantities were recorded, one slipped all the way through the process and a confused customer received a bill for 17.000.000 local currency (about U$ 1.000.000) . I fixed it by using the CultureInfo, etc.. .when converting, but it wasn't nice, messed with all of the higher ups' reports and everything ("Hey, hadn't we sold about U$ 1.000.000 more?" "No, it was an error from G in Development")

I'm sure there are better ways and good practices, but keep in mind that where I work we don't even have testing, so I guess I'm getting sloppy. If someone wants to give advice, go ahead, I'll appreciate it (or at least should :) ).

Comment Re:Not possible (Score 3, Informative) 435

Just like there will never be $20 cell phones?

There aren't $20 cell phones, that's the subsidized price. If you were a phone company, or someone in a position to collect a monthly fee for running these netbooks, you certainly could dump them for $20 on a shelf at Wal-Mart, provided they come with a 2 year contract for whatever you're selling...

I'm not so sure... I bought a U$ 20 cell phone recently (the Nokia 1208), new, from the local carrier, without a contract or any fees of any kind and with 300 minutes of credit thrown in. Maybe they hope they'll make it up off prepaid phone cards, but they're not getting them off a contract.

Slashdot Top Deals

"Gravitation cannot be held responsible for people falling in love." -- Albert Einstein

Working...