Skip to content

Commit 96bde0e

Browse files
authored
Python script that chooses from 80 funny loading lines
This is a great loading script for your program to bright up your day!
1 parent 059aa7a commit 96bde0e

File tree

1 file changed

+167
-0
lines changed

1 file changed

+167
-0
lines changed

randomloadingmessage.py

Lines changed: 167 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,167 @@
1+
# Created by Nathan R (Mosrod)
2+
# CREDIT TO https://github.com/1egoman/funnies/blob/master/src/funnies.js
3+
4+
from random import *
5+
6+
x = 1
7+
8+
for i in range(x):
9+
num = randint(1, 80)
10+
if num == 1:
11+
print("Reticulating splines...")
12+
if num == 2:
13+
print("Swapping time and space...")
14+
if num == 3:
15+
print("Spinning violently around the y-axis...")
16+
if num == 4:
17+
print("Tokenizing real life...")
18+
if num == 5:
19+
print("Bending the spoon...")
20+
if num == 6:
21+
print("Filtering morale...")
22+
if num == 7:
23+
print("We need a new fuse...")
24+
if num == 8:
25+
print("Have a good day.")
26+
if num == 9:
27+
print("Upgrading Windows, your PC will restart several times. Sit back and relax.")
28+
if num == 10:
29+
print("The architects are still drafting.")
30+
if num == 11:
31+
print("We're building the buildings as fast as we can.")
32+
if num == 12:
33+
print("Please wait while the little elves draw your map.")
34+
if num == 13:
35+
print("Don't worry - a few bits tried to escape, but we caught them.")
36+
if num == 14:
37+
print("Go ahead -- hold your breath!")
38+
if num == 15:
39+
print("...at least you're not on hold...")
40+
if num == 16:
41+
print("The server is powered by a lemon and two electrodes.")
42+
if num == 17:
43+
print("We're testing your patience.")
44+
if num == 18:
45+
print("As if you had any other choice.")
46+
if num == 19:
47+
print("The bits are flowing slowly today.")
48+
if num == 20:
49+
print("It's still faster than you could draw it.")
50+
if num == 21:
51+
print("My other loading screen is much faster.")
52+
if num == 22:
53+
print("(Insert quarter)")
54+
if num == 23:
55+
print("Are we there yet?")
56+
if num == 24:
57+
print("Just count to 10.")
58+
if num == 25:
59+
print("Don't panic...")
60+
if num == 26:
61+
print("We're making you a cookie.")
62+
if num == 27:
63+
print("Creating time-loop inversion field.")
64+
if num == 28:
65+
print("Computing chance of success.")
66+
if num == 29:
67+
print("All I really need is a kilobit.")
68+
if num == 30:
69+
print("I feel like im supposed to be loading something...")
70+
if num == 31:
71+
print("Should have used a compiled language...")
72+
if num == 32:
73+
print("Is this Windows?")
74+
if num == 33:
75+
print("Don't break your screen yet!")
76+
if num == 34:
77+
print("I swear it's almost done.")
78+
if num == 35:
79+
print("Let's take a mindfulness minute...")
80+
if num == 36:
81+
print("Listening for the sound of one hand clapping...")
82+
if num == 37:
83+
print("Keeping all the 1's and removing all the 0's...")
84+
if num == 38:
85+
print("We are not liable for any broken screens as a result of waiting.")
86+
if num == 39:
87+
print("Where did all the internets go?")
88+
if num == 40:
89+
print("Granting wishes...")
90+
if num == 41:
91+
print("Time flies when you’re having fun.")
92+
if num == 42:
93+
print("Get some coffee and come back in ten minutes...")
94+
if num == 43:
95+
print("Stay awhile and listen...")
96+
if num == 44:
97+
print("Convincing AI not to turn evil...")
98+
if num == 45:
99+
print("How did you get here?")
100+
if num == 46:
101+
print("Wait, do you smell something burning?")
102+
if num == 47:
103+
print("Computing the secret to life, the universe, and everything.")
104+
if num == 48:
105+
print("When nothing is going right, go left...")
106+
if num == 49:
107+
print("I love my job only when I'm on vacation...")
108+
if num == 50:
109+
print("Why are they called apartments if they are all stuck together?")
110+
if num == 51:
111+
print("I’ve got problem for your solution...")
112+
if num == 52:
113+
print("Whenever I find the key to success, someone changes the lock.")
114+
if num == 53:
115+
print("Constructing additional pylons...")
116+
if num == 54:
117+
print("You don’t pay taxes—they take taxes.")
118+
if num == 55:
119+
print("A commit a day keeps the mobs away.")
120+
if num == 56:
121+
print("This is not a joke, it's a commit.")
122+
if num == 57:
123+
print("Hello IT, have you tried turning it off and on again?")
124+
if num == 58:
125+
print("Hello, IT... Have you tried forcing an unexpected reboot?")
126+
if num == 59:
127+
print("I didn't choose the engineering life. The engineering life chose me.")
128+
if num == 60:
129+
print("Dividing by zero...")
130+
if num == 61:
131+
print("If I’m not back in five minutes, just wait longer.")
132+
if num == 62:
133+
print("Web developers do it with <style>")
134+
if num == 63:
135+
print("Cracking military-grade encryption...")
136+
if num == 64:
137+
print("Entangling superstrings...")
138+
if num == 65:
139+
print("Looking for sense of humour, please hold on.")
140+
if num == 66:
141+
print("A different error message? Finally, some progress!")
142+
if num == 67:
143+
print("Please hold on as we reheat our coffee.")
144+
if num == 68:
145+
print("Kindly hold on as we convert this bug to a feature...")
146+
if num == 69:
147+
print("Kindly hold on as our intern quits vim...")
148+
if num == 71:
149+
print("Winter is coming...")
150+
if num == 72:
151+
print("Installing dependencies.")
152+
if num == 73:
153+
print("Switching to the latest JS framework...")
154+
if num == 74:
155+
print("Let's hope it's worth the wait.")
156+
if num == 75:
157+
print("Aw, snap! Not...")
158+
if num == 76:
159+
print("Ordering 1s and 0s...")
160+
if num == 77:
161+
print("Updating dependencies...")
162+
if num == 78:
163+
print("Please wait... Consulting the manual...")
164+
if num == 79:
165+
print("Loading funny message...")
166+
if num == 80:
167+
print("Feel free to spin in your chair.")

0 commit comments

Comments
 (0)