Tagged Questions

1
vote
6answers
77 views

Can you have magic numbers in Access 2007?

How do I store numbers in an Access column and then associate some meaningful string to each value? Because I don't want to be seeing raw numbers when I can define the meaning of …
4
votes
7answers
656 views

Database Design Lookup tables.

I'm currently trying to improve the design of a legacy db and I have the following situation Currently I have a table SalesLead in which we store the the LeadSource. Create Table …
254
votes
19answers
17k views

Is 23,148,855,308,184,500 a magic number, or sheer chance?

News reports such as this one indicate that the above number may have arisen as a programming bug. A man in the United States popped out to his local petrol station to buy a …
2
votes
42answers
1k views

Eidetic memory: What magic numbers you still remember?

Long before you practice writing readable code, what "magic numbers" you still remember up to this day? here's some of my list: 72 80 75 77 13 32 27 - up down left right enter s …
0
votes
1answer
204 views

BlackBerry standard GZip decompression

There is a strange problem I've run in using RIM compression API, I can't make it work as it's described in documentation. If I gzip plain text file using win gzip tool, add gz to …
2
votes
7answers
153 views

Are there any valid arguments for using unnamed constants?

A commonly used term is "Magic numbers". As discussed in a related question, this is considered a code smell. I assume the same would go for string constants, although the term "Ma …
2
votes
1answer
506 views

How to avoid magic numbers when matching an event.keyCode in javascript

Can I avoid magic numbers when matching keypresses in javascript? An example would be using 13 to match the enter key. I could specify my own constants, but I don't know if these …
5
votes
7answers
461 views

Why are people using magic values instead of null in their code?

I have seen this in legacy code and in some .NET open source projects. I can't imagine a reason to do this. Just using "null" seems so much easier to me. Example: public class C …
0
votes
2answers
110 views

What to do with XML node names (hard coded values)?

I've been working with xml lately. And have noticed a bit of a phenomenon (maybe not that big of a deal to the rest of the world, but to me it was). Perhaps, it is me being a new …
5
votes
7answers
490 views

How do I get the size of a file in megabytes using Perl?

I want to get the size of a file on disk in megabytes. Using the -s operator gives me the size in bytes, but I'm going to assume that then diving this by a magic number is a bad i …
0
votes
9answers
371 views

special IP addresses

In particular I'm looking for an IP address that I can put in my hosts file that will black-hole a given DNS name. Right now I'm using 127.0.0.1 but that would start acting odd if …
9
votes
2answers
517 views

EWOULDBLOCK equivalent errno under Windows Perl

G'day Stackoverflowers, I'm the author of Perl's autodie pragma, which changes Perl's built-ins to throw exceptions on failure. It's similar to Fatal, but with lexical scope, an …