Skip to content

Instantly share code, notes, and snippets.

@CryDeTaan
Created July 1, 2019 08:19
Show Gist options
  • Save CryDeTaan/7b9ce3faf4497335b536e598b550218d to your computer and use it in GitHub Desktop.
Save CryDeTaan/7b9ce3faf4497335b536e598b550218d to your computer and use it in GitHub Desktop.
char_count = 1
check_chars = ""
while char_count < 254:
#new line, carriage return
if char_count not in [10, 13]:
check_chars += chr(char_count)
char_count +=1
# Write to disk for !mona compare.
mefile = open('pattern.bin','w');
mefile.write(check_chars);
mefile.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment