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

 



Forgot your password?
typodupeerror
×

Comment Re:It's the repost! (Score 1) 539

You are assuming that the others are not as that is not mentioned in the article.

Now if it was stated that the others refused to comment on it, that would be different. But as it states that MS comprises 30% of thier business, it is possible MS was the only company that Daily Mail contacted.

-1 for assuming!

Comment The real problem... (Score 1) 388

is not the texting per se, but the lack of intelligence of the driver. Washington state has passed a law prohibiting talking on your cell phone without a hands-free device for the same reason.

I know several people who can drive and talk on or text with their phone without a problem. The key is, they know better than to do it in heavy traffic that is moving more than 10 miles/20 km per hour.

The same problem occurs with individuals carrying on conversations with their passengers, reading the newspaper, changing their radio, etc, etc, etc. It comes down to common sense. Which is, unfortunately, less and less common these days.

People just need a boogie man to blame for the problems and today's society says it is politically incorrect to say that many people are just stupid when it comes to driving. We, as a society, need to grow a set of balls and call the stupid people stupid. Their feelings are not protected by any laws.

Comment Re:After reciving an e-mail that appeared... (Score 1) 360

You can check the links without visiting the site. Even visiting the site is not a huge risk, as long as you are not on IE.

If it is an HTML formatted email (which most are) then you can hover over the link to see the actual address.

While it is true that character compinations or UTF-8 characters can be used to try to fool you, I have not seen that too often. Usually it it more like http://www.ebay-securitycheck.com/ or the like. They do not use the real base domain.

Even banks/credit unions who use different urls for the online banking still have you log in at their main site.

Comment Re:The way this is generally handled... (Score 1) 283

You could also do this, I would think, using stored procedures for data reads as well as writes.

The first step in a read of unlocked data would be to lock the row/dataset. You can accomplish this with a "lock column" which is just an id column. This id can be a user id or more appropriately a session id.

Then on the submit, the record is unlocked by removing the entry in the "lock column".

Only a matching user/session id can write to that data.

Upon reading, if the "lock column" is not null, read in the data but notify the user that it is read only.

*** Disclaimer ***

It is early and I just came up with this off the top of my head, so there may well be flaws with, or at least a better method to acomplish, this task.

Slashdot Top Deals

So you think that money is the root of all evil. Have you ever asked what is the root of money? -- Ayn Rand

Working...