Created
December 26, 2022 15:50
-
-
Save MikuroXina/2559c14464568bb2bc926b227b6b33c1 to your computer and use it in GitHub Desktop.
Lyrics of "Endless Error Loop" by Neko Hacker feat. ななひら.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print('''<header> | |
ここをもうちょっとシンプルに変えてっと | |
え、なにこのエラー・・・ | |
</header>''') | |
try: | |
uglyCode() | |
except: | |
print('よくあるError') | |
try: | |
usualCode() | |
except: | |
print('見たことないError') | |
try: | |
spaghettiCode() | |
except: | |
print('不死身のError') | |
try: | |
undocumentedCode() | |
except: | |
print('名も無きError') | |
if status == '解決しない': | |
print('発狂しちゃう') | |
elif status == '別のエラーが出る': | |
print('3日間は寝込んじゃう') | |
elif status == '解決方法見つける': | |
print('英語は全く読めない') | |
print('''イライラ止まらん エラーも止まらん | |
あ~今日が終わる・・・''') | |
if confusingErrorMessage: | |
raise SyntaxError('()や:を忘れていないか今すぐ確認') | |
if arbitraryList: | |
raise IndexError('シーケンスオブジェクトの要素数は大丈夫か') | |
if typo: | |
raise NameError('どうせスペルミスだし大文字小文字に気をつけろ') | |
print('''目を瞑ればそこに広がる | |
広大なエラーの海''') | |
SABI_LYRICS = ''' | |
Endless Error Loopの中 | |
点と点が繋がる一瞬 | |
脳汁効率よく出しまくるためのプログラミング教育 | |
Endless Error Loopの中 | |
点と点が繋がる一瞬 | |
諦めた者には辿り着けない場所で笑い合おう | |
''' | |
print(SABI_LYRICS) | |
print('''あ、ちょっと待って | |
ヤバ・・・大事そうなやつ間違って消しちゃった | |
システム全体が死んでる・・・? | |
バックアップ、バックアップどこ~~~~~~''') | |
for i in range(2): | |
print('Thank you Qiita, teratail, stack overflow') | |
try: | |
powerCoding() | |
except TypeError: | |
print("型、間違ってない?") | |
try: | |
codeWithoutEditor() | |
except IndentationError: | |
print("えっと、あの・・・") | |
try: | |
shallowUnderstandingCoding() | |
except ModuleNotFoundError: | |
print("う~~~んw") | |
print("とりあえず、日本語でお願いします!") | |
print(SABI_LYRICS) | |
def endless_error_loop(stage='進捗'): | |
while True: | |
print('Error') | |
return stage | |
endless_error_loop('納期') | |
print("""も~~~何やっても無理じゃんもう寝よ・・・ | |
ってなんかわかんないけど通った!""") | |
print("""<footer> | |
動けば勝ちだし終わり! | |
</footer>""") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment