vote up 2 vote down star

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 128 - blue green red blink
  • 67h 33h 17h - interrupt for EMS, mouse, printer
  • function AH 9, interrupt 21
  • alt+219 for block ASCII
  • alt+164 ñ
  • 90 NOP
  • 13 10 carriage return, line feed
  • ascii 1 and 2 face, ascii 3 heart. no not this heart: <3 :-)
  • debug -o72,10 -o71,12 clears the BIOS password. I don't know what those numbers mean, it's like a trade secret that gets shared with each other during college days.
  • ascii 7 sounds a beep

P.S. Somehow, remembering some of these magic numbers can help you in some tech problems, your keyboard is broken, the office pal's keyboard doesn't have accented characters. An anecdote, during college, one of my friend asked me how to remove the newlines in his Word document. Not having used Word so much then, I somehow "intuitively" guessed to find ^013 and replace it with blank. Well it works :-)

flag
show 6 more comments

42 Answers

prev 1 2
vote up 1 vote down

0xA9 - the LDA (immediate) instruction on a 6502. From at least 25 years ago...!

link|flag
vote up 1 vote down

49 49 2A - II* - the start of a header of a TIFF file

link|flag
show 2 more comments
vote up 1 vote down

MODE 2

8 colour mode on the BBC B Micro. He*llo* Elite!

link|flag
show 2 more comments
vote up 2 vote down
g=c800:5

From MS-DOS DEBUG, invoke the utility program in HDD controller ROM for low-level formatting, etc.

link|flag
vote up 2 vote down

A painful 6 month technical train document translation placement (French to English) resulted in the branding of my mind with:

ALT + 224 = à, ALT + 232 = è, ALT + 233 = é, ALT + 244 = ô

Along with muscle memory of using an AZERTY keyboard.

link|flag
vote up 1 vote down

Alt + 0 6 4 for an simple @

Still using it on stackoverflow (German keyboard layout + FF 3.0.2, Alt Gr + Q creates a blockquote :( )

link|flag
vote up 0 vote down

53266 - C64 Raster register, used for many cool graphics tricks

link|flag
vote up 1 vote down

PI - 3.14159265 (Wrote circle drawing programs and orbital programs on my Apple IIc, both requiring pi, and that was pi to the max number of significant figures in applesoft basic)

link|flag
vote up 0 vote down

here's one: 6.02x10^23

link|flag
vote up 0 vote down

alt + 255

I used to create invisible directories, or directories with spaces in it to fool people back in the early 90's

link|flag
vote up 0 vote down

It's not a number, but:

/ppag

in the old, old days of Lotus 1-2-3 meant:

  • / bring up the menu
  • p print
  • p to the printer
  • a align (go to the top of the page)
  • g actually print the page.

What a waste of neurons!

link|flag
vote up 1 vote down

up up down down left right left right B A start

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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