Skip to content

Instantly share code, notes, and snippets.

@aveao
Created September 16, 2018 14:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aveao/f668aea9205ad6f8eb3692c5591bfd9b to your computer and use it in GitHub Desktop.
Save aveao/f668aea9205ad6f8eb3692c5591bfd9b to your computer and use it in GitHub Desktop.
hi , Can it be possible to atmosphere makefile have 1 by modules because it's annoying when we want fusee-secondary to build everything
import random
# Thomleg phrase simulator by SimonMkWii, ported to Python by AveSatanas
# Original:
# https://github.com/simonmkwii/Ozone/blob/ddf7ec267b9d7de2adb8f397e820fa7e13b6eacb/ThomTools.cs
def generate_phrase():
first = ["can ",
"can to ",
"you can ",
"any here ",
"any here can ",
"any here can to ",
"can you ",
"can with ",
"can we ",
"are to ",
"are you ",
"hi ",
"hello ",
"hello can ",
"you know ",
"any that ",
"you know any that can "]
second = ["help ",
"help to ",
"pls help with ",
"please help with ",
"please help to ",
"respond to me ",
"respond to me about ",
"respond about ",
"how to ",
"how to do ",
"reply me pls ",
"reply pls about ",
"help me with ",
"tell me how ",
"tell how ",
"explain how ",
"give method ",
"tell method ",
"tell to me ",
"reply me ",
"reply me method ",
"reply me how ",
"reply me help "]
third = ["build atmosphere ",
"make atmosphere ",
"build amostrephe ",
"make amostrephe ",
"build atmos ",
"make atmos ",
"hactool ",
"version bot ",
"versionlist ",
"setup bot ",
"put sx os ",
"webhook ",
"ryujinx ",
"yuzu ",
"make ryujinx ",
"make yuzu ",
"sx os ",
"download rom ",
"play back up game ",
"fuse gelle ",
"fake gazelle "]
fourth = ["please ",
"i dont understand ",
"then do ",
"thx ",
"pls ",
"then "]
last = ["?",
"!",
"...",
"! !",
"."]
return (random.choice(first) + random.choice(second) +
random.choice(third) + random.choice(fourth) + random.choice(last))
print(generate_phrase())
@simontime
Copy link

hi ! i have give much congartulate ! this are the great script !

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