19 lines
No EOL
827 B
Text
19 lines
No EOL
827 B
Text
from random import randint
|
|
from os import environ
|
|
import os
|
|
quotes = [
|
|
"I don't think regular 14 year olds would use IRC",
|
|
"I don't think regular 14 year olds would be a programmer",
|
|
"I don't think regular 14 year olds would use the internet properly",
|
|
"I don't think regular 14 year olds would be a silly goober",
|
|
"I don't think regular 14 year olds would put MeowNexUS cc's in helps",
|
|
"I don't think regular 14 year olds would identify as a cat"
|
|
]
|
|
if not os.path.exists(os.path.expanduser("~/.MNCHOICE")):
|
|
open(os.path.expanduser("~/.MNCHOICE"), "w").write("-1")
|
|
e = randint(0, len(quotes)-1)
|
|
while int(open(os.path.expanduser("~/.MNCHOICE")).read()) == e:
|
|
e = randint(0, len(quotes)-1)
|
|
# environ["MNCHOICE"] = str(e)
|
|
open(os.path.expanduser("~/.MNCHOICE"), "w").write(str(e))
|
|
print(quotes[e]) |