Forgot your password?
typodupeerror

Comment Re:Commenting code (Score 1) 452

I always like the rule that comments should explain why this code exists and is the way it is, and code should explain how it works.

One of my favorite comments:
int loopCnt = 2; // initialize loopCnt to 2

This could have been fixed as:
int loopCnt = 2; // maximum retries

Of course better would have been:
int retriesRemaining = 2;

Privacy

Submission + - Your car, tracked: the rapid rise of license plate readers (arstechnica.com)

An anonymous reader writes: Today, tens of thousands of LPRs are being used by law enforcement agencies all over the country—practically every week, local media around the country report on some LPR expansion. But the system's unchecked and largely unmonitored use raises significant privacy concerns. License plates, dates, times, and locations of all cars seen are kept in law enforcement databases for months or even years at a time. In the worst case, the New York State Police keeps all of its LPR data indefinitely. No universal standard governs how long data can or should be retained.

Slashdot Top Deals

"Time is money and money can't buy you love and I love your outfit" - T.H.U.N.D.E.R. #1

Working...