Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

528
votes
19answers
27k 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 pack of ...
19
votes
11answers
781 views

What are magic numbers?

What is meant by magic numbers from a programming point of view.
19
votes
3answers
398 views

guess what 0x564c is?

when i read linux kernel source, i found one line says: #define NCP_SUPER_MAGIC 0x564c /* Guess, what 0x564c is :-) */ (564c)16 = (22092)10 = (53114)8 = (101011001001100)2 ...
11
votes
2answers
860 views

Magic numbers in boost::hash_combine

The boost::hash_combine template function takes a reference to a hash (called seed) and an object v. According to the docs, it combines seed with the hash of v by seed ^= hash_value(v) + 0x9e3779b9 + ...
10
votes
10answers
704 views

Is -1 a magic number? An anti-pattern? A code smell? Quotes and guidelines from authorities [closed]

Possible Duplicate: Constant abuse? I've seen -1 used in various APIs, most commonly when searching into a "collection" with zero-based indices, usually to indicate the "not found" index. ...
10
votes
2answers
1k 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 extensible exception ...
6
votes
2answers
164 views

Hard-coded 8191 10485 values in JavaScript rounding function

I've seen the following (bizarre) Javascript rounding function in some legacy code. After googling for it I can see that it crops up in a number of places online. However I can't work out why the ...
6
votes
12answers
850 views

Magic Numbers In Arrays? - C++

I'm a fairly new programmer, and I apologize if this information is easily available out there, I just haven't been able to find it yet. Here's my question: Is is considered magic numbers when you ...
6
votes
7answers
698 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 Category { int ...
5
votes
4answers
311 views

Why do we need a magic number in the beginning of the .class file?

I read a few posts here about the magic number 0xCAFEBABE in the beginning of each java .class file and wanted to know why it is needed - what is the purpose of this marking? Is it still needed ...
5
votes
7answers
2k 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 idea: my $size_in_mb ...
4
votes
1answer
1k views

AddOutParameter - non-magic number way of finding length of DBType.Int32

I have a magic number in the following code... Microsoft.Practices.EnterpriseLibrary.Data.Database db = /* code omitted */; db.AddOutParameter(command, "@ParamName", DbType.Int32, 8); Is there a ...
4
votes
4answers
2k views

Java - HowTo extract MimeType from a byte[]

I've a web page that that can be used to upload files. Now I need to check if the file type is correct (zip, jpg, pdf,...). I can use the mimeType that comes with the request but I don't trust the ...
4
votes
7answers
1k 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 SalesLead( .... ...
3
votes
1answer
60 views

Is there a way to remove magic numbers from a XML Schema?

I have a WSDL with some types defined. Some elements accept lists of elements and on the service return I also have elements with list of values (or other elements). As a result I have some magic ...
3
votes
10answers
425 views

Would These Be Considered Magic Numbers?

I've just completed writing a program for a programming class, and I want to avoid use of magic numbers, so here's my question: In the function below, would my array indexers be considered magic ...
3
votes
8answers
146 views

Defining constants for 0 and 1

I was wondering whether others find it redundant to do something like this... const double RESET_TIME = 0.0; timeSinceWhatever = RESET_TIME; rather than just doing timeSinceWhatever = 0.0; Do ...
2
votes
1answer
407 views

Magic numbers in C++ implementation of Excel NORMDIST function

Whilst looking for a C++ implementation of Excel's NORMDIST (cumulative) function I found this on a website: static double normdist(double x, double mean, double standard_dev) { double res; ...
2
votes
1answer
92 views

Why is using JavaScript to plan Q1 year 22034 unreliable in Safari?

There is something fishy about the calculation of far future dates when done on the browser side (Safari 5.0.1), passing strings into the Date() constructor: I narrowed it down to the February-March ...
2
votes
5answers
254 views

Should I use an enum or multiple const for non-sequential constants in c++?

I'm writing porting file-io set of functions from c into a c++ class. "Magic numbers" (unnamed constants) abound. The functions read a file header which has a number of specific entries whose ...
2
votes
2answers
110 views

Finding magic numbers using NDepend

Does anyone know how I could find magic numbers in the source code using the CQL queries in NDepend? This is the same problem as this question, but I don't want to use regex if possible. So I want to ...
2
votes
5answers
184 views

Are Constants Really Appropriate Here, Or Is There Another Approach? - C++

I'm a programming student in my 2nd OOP course, which is taught in C++. I know that it is generally bad practice to use magic numbers in code, so here's my question: In the next program I have to ...
2
votes
8answers
335 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 "Magic strings" is not ...
2
votes
1answer
1k 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 values are stable ...
2
votes
46answers
2k views

Eidetic memory: What magic numbers you still remember? [closed]

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 space escape 1 2 4 ...
1
vote
1answer
91 views

Does anyone know a list with magic numbers of file systems and archive/compression formats?

I'm looking for a list that has the magic numbers of the most important of the following file systems and archive/compression formats: http://en.wikipedia.org/wiki/List_of_file_systems ...
1
vote
3answers
367 views

ImportError: Bad magic number, since OSX Lion

I'm getting this error every time I run any python file in Eclipse using PyDev: Traceback (most recent call last): File ...
1
vote
2answers
28 views

Using -1 as special value in API functions taking numeric arguments

Consider this example function from a fictive game engine API: function Entity.SetHealth( Number health ) Is it bad to have functions like this accept -1 as parameter, causing, in this case, the ...
1
vote
1answer
192 views

Tell if file is an image using .Net framework, not by checking magic numbers

With all the smarts of actually loading images being done by the .net framework, seems like I shouldn't have to repeat it all in my code by checking for magic numbers, or using a hack like this: ...
1
vote
0answers
343 views

Android “Bad magic number” error from readBundle

I've been using bundles to pass my information around my application and occasionally save them to a file by first passing them to a parcel. For some reason occasionally when I try to put them back ...
1
vote
5answers
327 views

Does the concept of “magic number” change from language to language?

Take the following code in C/C++, for example: int foo[] = {0, 0, 0, 0}; No magic numbers, right? Now, the Python "equivalent" of that would be: foo = [0, 0, 0, 0] Still no magic numbers. ...
1
vote
1answer
111 views

Is there any collection of 'magic' headers of filetypes which is compatible with Unix `file` Command?

I am trying to find a magic header collection of file types which can be feeded to file command using file -m but no avail. Distro pre included file heaers are not too many to detect all the file ...
1
vote
1answer
149 views

About the magic number of PE

0x10b : PE32 executable 0×107 : ROM image 0x20b : PE32+ (64 bit) executable What is the ROM image?
1
vote
10answers
417 views

How do I avoid both global variables and magic numbers?

I know and understand that global variables and magic numbers are things to avoid when programming, particularly as the amount of code in your project grows. I however can't think of a good way to go ...
1
vote
1answer
2k views

AIX/UNIX: module has an invalid magic number

On AIX, I am executing a script. In this script, it tries to load a 64 bit shared object lib ( .so file) . It fails to do so by giving the following error: The module has an invalid magic number. ...
1
vote
2answers
575 views

Embedding an applet doesn't work on my website

I'm trying to code an applet and put it in my website. I remember doing this a long time ago using Borland back when 1.4 was the latest version. It of course used the applet tag (which I'm using ...
1
vote
2answers
116 views

Using magic strings or constants in processing punctuation?

We do a lot of lexical processing with arbitrary strings which include arbitrary punctuation. I am divided as to whether to use magic characters/strings or symbolic constants. The examples should be ...
1
vote
6answers
132 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 each value once at ...
0
votes
3answers
186 views

How to search a image/varbinary field for records that start with a binary pattern

I am trying to find all images that do not start with the magic number ff d8 ff e0 (the signature for jpg) According to the MSDN I should be able to use patindex on my data. However SELECT TOP 1000 ...
0
votes
1answer
647 views

Incompatible magic value error

I was following an example from the following link: http://www.javaworld.com/javaworld/jw-10-1996/jw-10-indepth.html?page=1 and this is an output I am getting: This program will use ...
0
votes
2answers
137 views

How to handle magic number in javascript

I have search through google with keyword handle javascript magic number but couldn't find one. In c# i would used constant defined number but i don't know what to use in javascript something like ...
0
votes
1answer
387 views

Magic number file checking

I'm attempting to read magic numbers/bytes to check the format of a file. Will reading a file byte by byte work in the same way on a Linux machine? Edit: The following shows to get the magic bytes ...
0
votes
4answers
144 views

Searching for a safe magic number for in-memory data structure

I'm implementing a heap allocator (malloc), and I need to choose a magic number to check if a given pointer point to a data structure I allocated. It seems obvious to me that no magic number can be ...
0
votes
1answer
205 views

Flex SDK 3.5 - Check file magic number

Related to: Flex SDK 3.5 - Check file mimetype Is there a way to get a file's magic number in Flex SDK 3.5 in order to get the file type?
0
votes
5answers
870 views

how to get magic number of a binary file

there is a magic number associated with each binary file , does anyone know how to retrieve this information from the file?
0
votes
2answers
89 views

Should screen dimension constants that hold magic numbers be refactored?

I have a few specific places in my code where I use specific pixel dimensions to blit certain things to the screen. Obviously these are placed in well named constants, but I'm worried that it's still ...
0
votes
6answers
153 views

c# switch statement question

I'll cut to the chase. I have two questions about switch that are simple, but I can't figure them out. First: in c# switch statements, do case statements have to be consecutive (with ints)? For ...
0
votes
1answer
788 views

BlackBerry - Problem with 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 resources of ...
0
votes
2answers
183 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 newb. But shouldn't ...
0
votes
9answers
936 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 I installed any ...