The error-checking tag has no wiki summary.
0
votes
0answers
16 views
Hamming single-error-correcting algorithm
I'm confused about how to even approach this question.
Consider a system in which each 4-bit word of data is stored with a 3-bit code determined by a Hamming single error correcting algorithm. ...
0
votes
0answers
29 views
Is echo checking normally used in any modern systems?
I know that echo checking is not considered as a good mechanism. However, I want to know whether are systems even today which use it?
Edit:
Actually, this was a part of my homework but I couldn't ...
0
votes
1answer
41 views
Error checking a byte array
What is the best way to check if the data in a byte array is correct?
I am sending a byte array across a serial connection, for example, byte1, byte2, byte3, byte4, and errorCheckByte, and I want to ...
0
votes
4answers
133 views
Checking for legitimate integer input in c++
so i've seen many people ask this and not many solid answers floating around the web. most just check that an integer was placed in place of a string but if a floating point number was entered then it ...
0
votes
1answer
577 views
zend framework 2 SQL update and insert affected rows (ZF2)
This is a simple question, but I've looked around and couldn't find the answer.
How do I extract the number of affected rows from update/insert SQL queries in ZF2?
The following code is working ...
5
votes
2answers
74 views
Preventative tools for typos in class and id names
Are there any basic debugging tools for HTML/CSS/JavaScript that would help to identify typos?
For times when "#fron" should be "#from". I'm not talking about the code itself, but for things like ...
7
votes
2answers
245 views
Being extremely pedantic with the way your code is compiled
I would like to find out which is the most extreme error checking flag combination for g++ (4.7). We are not using the new C++11 specification, since we need to cross compile the code with older ...
0
votes
2answers
67 views
Error check for non-numerical data
I was hoping someone could help with an error check for my paste method. I would like to prevent pasting anything that is not a numeric value from clipboard into my textBox. The coding for pasting is ...
1
vote
3answers
217 views
Parsing command line char arguments as ints with error checking in C++
I'm trying to write a program that takes in two ints as command line arguments. The ints both need to be greater than 0. I understand that I need to convert from char but I have only ever done that ...
0
votes
0answers
62 views
Count how many times any given IP has submitted an email [closed]
I have an email capture script on my website, http://friendame.com/
The database stores the email along with the users IP address. At the moment, I can only accept one email per IP and I assume it ...
0
votes
0answers
59 views
Integrated JavaScript Checker & Minifier/Obfusicator?
I know there are JavaScript obfusicators/minifiers and checkers (like Lint). But is there one that is integrated and has project support?
Basically, I have a bunch of JavaScript files that are part ...
0
votes
2answers
70 views
Best Practice For Error Checking Controls On A Form
So I have a form with a variety of different controls (combobox, textboxes, listboxes, etc).
My first thought is to create a If, Else, End If statement. Well while that would work, it could also get ...
1
vote
3answers
166 views
Infinite focus loop on textFields
I have 2 JTextFields:
JTextField txtJobType, txtPriorityCode;
This is the functionality I need:
When user types in 'administration' in txtJobType and hits tab (or clicks away) an error check is ...
0
votes
0answers
32 views
why do mysql stored procedures defer error checking?
I thought the point of stored procedures and functions was that parsing, query planning, and various optimisations could be determined before the query is executed.
I recently had a headache of a bug ...
0
votes
0answers
215 views
iOS airplane mode throws kCLErrorDomain, not kCLErrorNetwork
I'm testing my iPhone app and turned on airplane mode to see what the user would see (my app requires internet). See code below.
switch([self.model.locError code])
{
case kCLErrorNetwork: // ...
2
votes
2answers
105 views
Do we add the parity bit to the front or the back of bit set
Do we add the parity bit to the front or the back of the bit set?
A bit that acts as a check on a set of binary values, calculated in such a way that the number of 1s in the set plus the parity bit ...
0
votes
1answer
237 views
Django custom forms.clean() method not working
I've been looking for an answer for a while, but i really don't know how this happens. I'm trying to make a form that receives 2 files, and I'm overriding the clean() method to check if the names and ...
1
vote
1answer
110 views
Error checking MediaPlayer android
I'm making a simple mediaplayer app that downloads a song from a predetermined URL then let's the user play, pause and stop the song, among other things. My only problem right now is that if the user ...
3
votes
1answer
121 views
Is unnecessary error handling recommended in business logic? eg. Null check/Percentage limit check etc
We usually put unnecessary checks in our business logic to avoid failures.
Eg.
1. public ObjectABC funcABC(){
ObjectABC obj = new ObjectABC;
..........
..........
//its never ...
1
vote
1answer
93 views
Make sure that text input to a form is unicode or else raise and error
I have read a couple other similar questions on here about this but didnt find what I was looking for. I am wondering what is the simplest way to ensure that no matter what, the text input inside of a ...
0
votes
1answer
474 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 ...
17
votes
1answer
275 views
How to execute error checking on multiple PHP files simultaneously?
I have an svn server that I checkout the repository in my computer.
The main repositiry has about 2k files
3rd party
generic code classes
custom classes
I have made changes to lots of files ...
2
votes
2answers
104 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 ...
0
votes
1answer
89 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 == '':
...
7
votes
1answer
1k 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 ...
0
votes
2answers
198 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) != ...
1
vote
2answers
323 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
160 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
votes
2answers
167 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 ...
0
votes
4answers
95 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
122 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 ...
5
votes
2answers
776 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
776 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, ...
3
votes
7answers
193 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 ...
0
votes
1answer
95 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.
...
6
votes
5answers
183 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
4answers
898 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
493 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 ...
5
votes
4answers
2k 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?
1
vote
2answers
162 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 ...
2
votes
9answers
209 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]
...
11
votes
9answers
10k 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 ...



