Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror

Comment Certain Math Knowledge and Skills Are Helpful (Score 2, Interesting) 609

I learned Boolean Algebra for a CS degree. The application the University intended for its use was for designing hardware circuits.

As a programmer, over the years I have had many cases where I had to write programs that did different things based on a list of inputs and their values. My knowledge of Boolean Algebra has helped me make the code simpler because I could reduce the input values to the lowest equivalent. My resulting code therefore has less conditionals (if..then..else and switch statements).

Comment Security !~ ROI (Score 1) 51

If someone talking about security starts to mention ROI, I tune them out. They don't know the basics about security.

When I talk security to upper management I never use the term ROI. That term is too steeped in revenue generation that you cannot separate the term from the expectation of increased sales or increased profitability.

Security is like insurance it protects against loss. Security (for almost all companies) never generates revenue, therefore it can never have ROI in the traditional sense.

Some security companies will try to say that the Return is [insert some intangible benefit here].

They should really sell it like insurance where they mention the protection from loss in tangible terms.

Comment A Security Hole in Java (Score 4, Informative) 94

ResultSet readFromDatabase(String userInput)
{
    String sql = "select * from users where userid = " + userInput;
    PreparedStatement psMyStatement = connMyConnection.prepareStatement(sql);
    ResultSet rsResults = psMySQLStatement.executeQuery();
    return rsResults;
}

This is called a SQL Injection security hole. You can write it in practically any language that connects to a database.

Slashdot Top Deals

The person who's taking you to lunch has no intention of paying.

Working...