Tagged Questions

2
votes
2answers
132 views

graycode in .NET

Is there a built in gray code datatype anywhere in the .NET framework? Or conversion utility between gray and binary? I could do it myself, but if the wheel has already been invented...
3
votes
5answers
274 views

What algorithm to use to calculate a check digit?

What algorithm to use to calculate a check digit for a list of digits? The length of the list is between 8 and 12 digits. see also: How to generate a verification code/number?
7
votes
9answers
2k views

How to generate a verification code/number ?

Hi, I'm working on an application where users have to make a call and type a verification number with the keypad of their phone. I would like to be able to detect if the number they type is correct …
1
vote
2answers
78 views

Ruby how much error checking is appropriate?

Hey, I'm implementing a few things in Ruby and I was wondering how much error checking is appropriate (or, more precisely, how much error checking should be done by convention)? For example, I'm …
2
votes
9answers
152 views

What is the appropriate amount of error-checking?

public void PublicMethod(FooBar fooBar) { if (fooBar == null) throw new ArgumentNullException("fooBar", "fooBar cannot be null"); // log the call [added: Thanks S.Lott] …