Forgot your password?
typodupeerror

Comment Re:Definition of business partners and customers (Score 1) 440

Lets clean this up a bit:

bool isBusinessPartnerOrCustomer(user)
{
            if (isBusinessPartner(user))
                        return true;
            else if (isCustomer(user) && (user.getAccountSize() > 10000000) ) // Thin the herd
                        return true;

            return false;
}

Slashdot Top Deals

Is it possible that software is not like anything else, that it is meant to be discarded: that the whole point is to always see it as a soap bubble?

Working...