Tagged Questions
The error-checking tag has no wiki summary.
9
votes
9answers
5k views
How to generate a verification code/number?
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 or ...
6
votes
5answers
147 views
Error checking overkill?
What error checking do you do? What error checking is actually necessary? Do we really need to check if a file has saved successfully? Shouldn't it always work if it's tested and works ok from day ...
5
votes
1answer
131 views
Xcode. Question about syntax error checking
Xcode looked at this line and did not complain. Project built, code crashed at runtime.
NSString *randomName = [NSString stringWithFormat:@"%@, %@, %@",
[randomAjectiveList ...
5
votes
2answers
374 views
Any reason to use a run-time assert instead of compile-time assert?
While reviewing Visual C++ codebase I found a following strange thing. A run-time assert (which is check the condition and throw an exception if the condition is violated) was used in a case when the ...
5
votes
4answers
173 views
C: Throw error on parameter check or let it hit the fan?
I have a simple design(?) question.
I'm writing a simple program, that has a couple of functions that look like these.
float foo (float* m,size_t n){
float result;
//do some calculations, ...
5
votes
4answers
1k 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?
3
votes
7answers
138 views
When you write your code, do you deal with errors proactively or reactively?
In other words, do you spend time anticipating errors and writing code to get around these potential issues, or do you write the code as you see fit and then work through any errors on an issue by ...
3
votes
2answers
369 views
Gray code 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
8answers
303 views
When/how often to check whether object is null
I was writing some code and while unit testing I got a Null Pointer Exception...Now I'm wondering how often should we be checking that object is not null before doing get operations on it?
For ...
2
votes
2answers
64 views
Error recovery algorithms?
I am doing a software that grabs in the end a numeric string, that string encodes important data, and any error destroy the contents.
Worse: It is VERY prone for errors, because of how data is ...
2
votes
9answers
184 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]
...
1
vote
2answers
160 views
Given a 5-digit number series with 4 numbers and 1 alphabet, finding the Check Digit Algorithm [closed]
I have a series of 5-digit number series with 4 numbers and and 5th digit is a Alphabetic check digit.
I have a sample of numbers. (about 58 samples)
Check digit is generated by
( (Digit 1 * ...
1
vote
0answers
88 views
Form Validation, need help !
I am using a simple feedback form which works with jquery ajax, the only problem is, it doesn't do any proper error checking. For example, if I put anything in the email box it will accept.
This is ...
1
vote
2answers
130 views
Ruby how much error checking is appropriate?
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 ...
0
votes
1answer
28 views
How to ensure that all arguments are provided in Apache Commons CLI?
I don't see a standard way of checking if all Options are provided in a String[] input to
apache's CLI library . That is - my options are all REUIRED at the command line, otherwise, i want an ...
0
votes
1answer
72 views
Python error checking
I have code snippet below I would like to add error checking Like
"If p > 10000 dont append list with record,
How would I do this?
for line in idata.split("\r\n"):
if line == '':
...
0
votes
2answers
118 views
C: A safer way to check buffer in function and append to it?
I have a function of which I need to return the time for another logging function, and it looks like this:
//put time in to buf, format 00:00:00\0
void gettimestr(char buf[9]) {
if(strlen(buf) != ...
0
votes
4answers
78 views
Error checking problem
For the most part this does work the problem is the message box pops up for Andrea and Brittany but it works correctly for Eric. If I try to put the else statement after each if statement it still ...
0
votes
3answers
111 views
Error checking for if a person enters an incorrect name
How would I check for errors. If a person enters an incorrect name or doesnt spell it correctly I would like for a messagebox.show to display a message stating "Incorrect name or spelling"
private ...
0
votes
2answers
56 views
error checking to ensure that a field isn't blank?
My website has an opt-in member directory. Currently, the error checking function simply looks at the form $_POST to see if (!empty($userRealName)) and then allows the member to appear in the list.
...
-1
votes
2answers
116 views
Checking for empty radio buttons in Perl
I new to Perl and had a question. I have a simple page which allows users to respond to survey questions. There are various question and each has 4 choices. My question is that how do I verify that ...