Mugshot

Hi,

my name is Ralph Moeritz. I’m a programmer currently residing in Regensburg, Germany. I enjoy cycling and programming my two Commodore 64 computers. As the title Adventures in 64K suggests, this blog focuses on the latter; I hope to post semi-regular updates about current C64 projects here.

You can reach me via electronic mail. If you’re not a spambot, you should be able to compile and run the program below to find my email address:

#include <stdio.h>

int main() {
  int email[] = {114,97,108,112,104,109,111,114,105,116,122,64,111,117,116,108,111,111,107,46,99,111,109,0};
  for (int i=0; email[i] != 0; ++i) {
    printf("%c", email[i]);
  }
  puts("");
}