vote up 5 vote down star

This is a dumb question, admittedly, please don't hesitate to vote down. :)

I was debugging the other day and came across some memory- and register-fills I hadn't seen before on some embedded hardware I'm using. So I started a mental catalog. For example:

DEADBEEF, BAADF00D, D15EA5ED, DECEA5ED, BAA5H33P...

Something that sticks out when you look at the memory viewer and is vaguely related to what it's about (deleted memory, no-man's land, outerwear...).

It got me thinking - is there a generator for these?? Something like a l33t name generator except limited to hex numbers (hexits?).

Your prompt and careful attention to this serious matter is greatly appreciated.

flag
this should be wiki'd at the very least if not closed... – Daniel Schaffer May 13 at 22:18
yes, that's a good idea – Scott Bilas May 13 at 22:30

4 Answers

vote up 5 vote down check
$ grep -i '^[abcdefols]*$' /usr/share/dict/words | tr ols 015
abaca
abed
abe1e
ab1
ab1e
ab0de
ab0ded
acc
accede
acceded
.
.
.

0ff
0ffa1
0ffed
0ff10ad
0ff10aded
01de
01e0
link|flag
1  
very succinct answer – Joe Koberg May 13 at 23:20
vote up 0 vote down

My brain is fuzzy today, but this works. Alter to taste...

#!/usr/local/bin/python
letters = {'A':'A', 'B':'B', 'C':'C', 'D':'D', 'E':'E', 'F':'F', 'I':'1', 'O':'0', 'S':'5'}
f = open('/usr/share/dict/words', 'r')
for line in f:
    line = line[:-1]
    if len(line) < 4:
        continue
    word = ""
    goodword = True
    for c in list(line):
        if c.upper() not in letters.keys():
            goodword = False
        else:
            word += letters[c.upper()]
    if goodword:
        print "%20s\t%s" % (line,word)
f.close()
link|flag
vote up 1 vote down

Ah ha! "Hexspeak" was the keyword I needed for the Googles.

Here is a Python program to find all Hexspeak words. And a list of what that program found.

link|flag
vote up 2 vote down

BAA5H33P??

It contains both an H and a P? Those aren't valid hex digits.

You missed Java's famous CAFEBABE

You can read more on it at Wikipedia, including :
CAB1E (cable)
FACE
BEAD
C0ED
etc, etc....

link|flag
Ok the BAA5H33P was a joke – Scott Bilas May 13 at 22:31
1  
While we're on the subject of Java, I like 0xDECAFBAD :) – Matt J May 13 at 22:32

Your Answer

Get an OpenID
or

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