Skip to content

Instantly share code, notes, and snippets.

@davidsj
Forked from ryanml/stranger-things.bas
Last active October 31, 2017 12:01
Show Gist options
  • Save davidsj/96ce4b0b9e0a9178afdfc63ced24c545 to your computer and use it in GitHub Desktop.
Save davidsj/96ce4b0b9e0a9178afdfc63ced24c545 to your computer and use it in GitHub Desktop.
Bob's Password Brute-Forcer from Stranger Things Season 2
10 FOR i = 0 TO 9999
20 IF checkPassswordMatch(i) THEN
30 PRINT i
40 GOTO 70
50 END
60 NEXT i
70 END
@davidsj
Copy link
Author

davidsj commented Oct 31, 2017

Cleaned up Bob's code.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment