A quick and easy test to see if your car battery is still good is to gently tap two leads connected to it on your tongue. If there is a slight shock, it's still good!
A quick and easy test to see if your car battery is still good is to gently tap two leads connected to it on your tongue. If there is a slight shock, it's still good!
I've done that with a 9-volt battery, but never a car battery. Not so sure I'd want to try it with a car battery due to its higher voltage and current. Even if it's safe, I'm not so sure it'd be that comfortable.
Here's one I use: If programming in a C-like language, the ?: operator can be really handy if you want to avoid division by zero without having a lot of superfluous if statements: int result = (denominator == 0 ? numerator/denominator : 0); Substitute the final 0 with some other value you consider appropriate for the division by zero case.
A quick and easy way to test your car battery is to take it to your closest auto parts store just after opening or just before close to have them test it.
Though to semi-contribute: lifehacks, know them, love them.
Comments
SqlDS_wuxiPeople.SelectCommand = "SELECT ID "
+ ",Name "
+ "FROM Persons "
+ "WHERE Workplace = 'Wuxi'";
Will save you a lot of trouble
Bullshit Yes/no?
If no, why is this?
Here's one I use: If programming in a C-like language, the ?: operator can be really handy if you want to avoid division by zero without having a lot of superfluous if statements:
int result = (denominator == 0 ? numerator/denominator : 0);
Substitute the final 0 with some other value you consider appropriate for the division by zero case.
Though to semi-contribute: lifehacks, know them, love them.