Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

123
votes
10answers
3k views

Cosmic Rays: what is the probability they will affect a program?

Once again I was in a design review, and encountered the claim that the probability of a particular scenario was "less than the risk of cosmic rays" affecting the program, and it occurred to me that I ...
8
votes
9answers
570 views

How to detect synchronization violations with Java

I'm wondering what good ways there would be make assertions about synchronization or something so that I could detect synchronization violations (while testing). That would be used for example for ...
5
votes
12answers
2k views

Is there a way to determine whether an e-mail reaches its destination?

I have a PHP script that sends out critical e-mails that needs to reach its destination. I know how to check whether the e-mail sent successfully, the only issue is knowing whether it actually got to ...
4
votes
2answers
201 views

Error detection and error correction algorithm

Suppose we have a chunk of data that came from data transfer medium with the following properties: Total chunk size is 8 bytes. The data transfer is unreliable, so errors in a number of bits are ...
4
votes
2answers
545 views

How can my visual studio addin detect compiler errors before building in the same manner as “Remove and Sort Usings”?

I'm making a refactoring tool that automates a few of the more trivial code styling things dealing with StyleCop. One of the things I'd like my add-in to be able to do (as an optional feature the ...
4
votes
4answers
1k views

Error Detection Effiency (CRC, Checksum, etc)

I have a hypothetical situation of sending data units, each of a thousand bytes. Failure rate is rare but when a error does occur it is less likely to be a single bit error and more likely to be an ...
2
votes
4answers
102 views

binary file formats: need for error correction?

I need to serialize some data in a binary format for efficiency (datalog where 10-100MB files are typical), and I'm working out the formatting details. I'm wondering if realistically I need to worry ...
2
votes
2answers
456 views

Repairing Code Number with missing digits

I have recently been reading about Error Correction for a job interview and have written a number of programs that use n-ary BCH (Bose, Chaudhuri, Hocquenghem) cyclic codes and have now written a ...
1
vote
2answers
36 views

How can I add some detection or correction code in a 48bits message?

I'm developing a OCR tool reeds a set of symbols which represent 2 bits each. For example: { ---> 00 } ----> 01 Always I have a 48 bits code so I have 24 symbols. I need to implement a detector or ...
1
vote
1answer
35 views

Code that detects its own bugs?

Consider the following code snippet: int index = FindClosestIndex(frame); if (_data[index].Frame == frame) return _data[index]; else return interpolateData(frame, _data[index - 1], ...
1
vote
2answers
145 views

error correcting code over a 4 element alphabet

I need to develop an error correcting code. My alphabet is {0,1,2,3} (4 elements) Codeword size n will be 8 or 12 expected error correction capability = 1 digit expected error detection capability = ...
1
vote
4answers
104 views

Does SQL Server have any built-in error checking mechanisms with regards to receiving an sql statement?

This question is a follow-up/in relation to my previous question here: http://stackoverflow.com/questions/3518498/sql-server-is-there-a-need-to-verify-a-data-modification I did some googling, and the ...
1
vote
3answers
631 views

What is CRC? And how does it help in error detection?

What is CRC? And how does it help in error detection?
0
votes
1answer
5 views

What kind of Error Detection Analysis does the Netbeans IDE have?

I'm doing some research on Netbeans IDE. I mean, why use ActionPMD and FindBugs plug-ins when Netbeans already has a built in error detection system? Is the difference really that significant?
0
votes
0answers
43 views

Detecting Interceptor and Handler dependency

First of all, I'm not sure how to phrase the title that would capture the situation described here so forgive me this isn't accurately / wrongly titled. In any case, this is the scenario: Given that ...
0
votes
2answers
68 views

Error detection code for 33 bytes word detecting zero or one flip in first 32 bytes

Could you please suggest an error detection scheme for detecting one possible bit flip in first 32 bytes of 33 byte message using no more than 8 bit of additional data. Could Pearson hashing be a ...
0
votes
1answer
56 views

CRC checksum decimal

I was wondering if anyone could give me a basic example, or a link to a resource showing how CRC can be used with decimal numbers, without binary. Thanks
0
votes
2answers
106 views

Automatic compiler detection of the addition of the same object instance to a container in a loop

This is a dumb mistake: List<Foo> fooList = new List<Foo>(); Foo f = new Foo(); while (something.Read()) { f.Fill(something.GetRecord()); fooList.Add(f); } Of course, I should ...
0
votes
2answers
616 views

Any known good tutorial about Cyclic Redundancy Check?

I would like to learn about CRC and looking around for any good theory explanation. I would be very thankful if anyone could provide any goo resource about the topic. Thanks!
0
votes
5answers
319 views

comparing statically typed code with dynamically typed code - costs and benefits

Whatever its merits, Adobe's Actionscript 3 presents what may be a unique opportunity to explore the consequences of typed versus untyped languages, because it is pretty much a strict superset of ...
-2
votes
1answer
45 views

Check sum calculation [closed]

I am new to know about check sum. So kindly help me. I have these four binary values and i need to calculate the check sum for these numbers. They are 0111011101100 1011011000110 0011011011110 ...