Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions src/index.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import random

messages = [
"in case of fire: git commit, git push and leave building",
"This is where it all begins...",
"Commit committed",
"Version control is awful",
"COMMIT ALL THE FILES!",
"The same thing we do every night, Pinky - try to take over the world!",
"Lock S-foils in attack position",
"This commit is a lie",
"I'll explain when you're older!",
"Here be Dragons",
"Reinventing the wheel. Again.",
"This is not the commit message you are looking for",
"Batman! (this commit has no parents)",
"the greats murmur as learning with this commit",
"Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live",
"naruto, The programmer ninja!",
"The covid-19 block my commit",
]

def funny_commit():

message = random.choice(messages)
print(message)

if __name__ == "__main__":
funny_commit()