I am looking for a memorable 32-bit value to be used as a constant. If possible, it should be somewhat funny too.

So far, I have come up with these two:

0xcafebabe

0xdeaddad

Can you please suggest some other too?

Thank you.

link|improve this question
2  
Perhaps you could try posting on funnyhexconstants.com, because this isn't really programming related. – Mark Byers Nov 27 '09 at 20:30
6  
I like this question, please make it community wiki so it doesn't get closed. – C. Ross Nov 27 '09 at 20:30
2  
How is this not programming related? – C. Ross Nov 27 '09 at 20:30
3  
This was covered to death in en.wikipedia.org/wiki/Hexspeak – Ether Nov 27 '09 at 20:56
2  
@Ether: And? The information is useful here. – Jed Smith Nov 27 '09 at 21:19
show 3 more comments
feedback

13 Answers

up vote 18 down vote accepted

A comprehensive list of magic constants is here:

Hexspeak

Magic Number

And see the links therein.

link|improve this answer
feedback

I wonder, that as a programmer you need to ask. After all it takes a word-list and a one-liner of C++ to find suitable words.

#include <iterator>
#include <string>
#include <algorithm>
#include <iostream>
#include <boost/lambda/lambda.hpp>
#include <boost/lambda/bind.hpp>

int main()
{
    using namespace boost::lambda;
    std::remove_copy_if(
        std::istream_iterator<std::string>(std::cin),
        std::istream_iterator<std::string>(),
        std::ostream_iterator<std::string>(std::cout, " "),
        bind(&std::string::size, _1) != 8u
            ||
        bind(
            static_cast<std::string::size_type (std::string::*)(const char*, std::string::size_type) const>(
                &std::string::find_first_not_of
            ),
            _1,
            "abcdefgiost",
            0u
        ) != std::string::npos
    );
}
link|improve this answer
9  
+1 for "one-liner of C++" :) – Jimmy Nov 27 '09 at 23:19
1  
That's hardly a one-liner. – phkahler Nov 15 '10 at 18:40
feedback

Here are a bunch of hex words that you can use to make a constant.

link|improve this answer
notably absent from that list is b00b1e5. – phkahler Nov 15 '10 at 18:46
feedback

You can find them yourself easily enough.

sed '/[^a-folt]/d' /usr/share/dict/words | tr olt 017 |
awk '{print length, $0}' | sort -n | cut -f2- -d' '
link|improve this answer
feedback

The classic is 0xdeadbeef.

link|improve this answer
2  
I wouldn't use it, since it's so common as a memory boundary. – C. Ross Nov 27 '09 at 20:31
I don't get it: how is 0xDEADBEEF a memory boundary? – Ned Batchelder Nov 27 '09 at 20:38
It means that stock memory allocators often use it to mark unallocated blocks already, so its use to mark something else would conflict with that usage. – Pavel Minaev Nov 27 '09 at 20:55
feedback

0xDEADBEEF 0xDEADBABE

...

Hexspeak

link|improve this answer
feedback

Take a look at these magic numbers.

link|improve this answer
feedback

Here's another: 0xDEADCAFE :)

link|improve this answer
This one is for dads programming in C! 0xFEEDBABE :) – t0mm13b Nov 27 '09 at 22:59
feedback

0xBADDD00D, 0xBADDFACE, 0xCAFEF00D, 0xBAADCAAB, 0xBADCAB1E etc etc

link|improve this answer
feedback

0x00abacab

(Which happened WAY after Peter Gabriel left.)

link|improve this answer
feedback

I like 600df00d

link|improve this answer
feedback

0x0BE5EBEE 0xADEAD60D

link|improve this answer
feedback

I'm a fan of 0xBAADF00D.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.