aboutsummaryrefslogtreecommitdiff
path: root/assets/js/quotes.js
blob: ae892b53b73fcda3339dce6384459cea3983e570 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
quotes = [
    "I'm not young enough to know everything.", // J. M. Barrie
    "An ideal french fry is one dimensional.",
    "I want to see the universe in debug mode.",
    "The kid was deliberately and maliciously watching television at him.", // Douglas Adams
    "How anNOYing is it thAT your faVORite mechaNIcal poeTry on whEELS can't even RUN THE SAME GAUGE as the counTRY nextdoor?!",
    "We're trying to figure out how to report capital gains from time traveling on our tax returns.",
    "The universe tends toward maximum irony. Don't push it.", // Jamie Zawinski
    "I bet I just made you refresh the page 1000000 times.", // MAKE SURE THIS IS NUM QUOTES
    "source ~/.bash_history", // https://www.explainxkcd.com/wiki/index.php/1975:_Right_Click
    "echo source ~/.bashrc >> ~/.bashrc", // Same as above
    "sudo rm -rf $DIRECTROY/*", // Same as above
    "echo 0 | sudo tee /sys/devices/system/cpu/cpu*/online",
    "It tastes like I'm a giraffe.",
    "憂鬱的臺灣烏龜",
    "If you refuse this mission, I'll break the fourth wall again!",
    "This quote is intentionally left blank.",
    "Nobody actually reads this.",
    "It will make you laugh! It will make you cry! It will make you try the mayonnaise-frosted pie!",
    "Icicles? Tide pods? No, typos.",
    "Today, the universe will cease to exist due to rain.",
    "Her mission, if she chose to accept it (which she did, begrudgingly), was to decrease her own IQ.",
    "What's next? Pikachu with a buzz cut?",
    "A(n, 5) doesn't have a name, but scares children.", // https://web.stanford.edu/class/archive/cs/cs166/cs166.1166/lectures/16/Small16.pdf
    "I think, therefore I spam.",
    "Electrocuted medium rare piano, right there!",
    "Sometimes you suck and sometimes life sucks you.",
    "Think about how you verb those nouns that you have.",
    "Probably want to get vaccinated before time traveling.",
    "Imagine what the banana would look like if it could segfault.",
    "Whenever something easy does not seem easy, it's probably a typo.",
    "Put a parenthesis around the banana!",
    "The math is not mathing here.",
    "I was thinking before I was thinking.",
    "The next time you have a fever, I want you to dynamic program your way out of it!",
    "I promised you Saddam Hussein's LinkedIn and all you got was a Chinese Linux distro cartoon rabbit girl mascot.",
    "弱电间 Weak Room",
    "And from that day onwards Zhou was a little bit better at actually cooking his flashcards like a cool instant noodles (IN) chef.",
    "I have to fold myself to solve it.",
    "They're compressing ramen with zstd now?",
    "I forgot there was a camel on my head.",
    "Nerd (nerd enjoying recursive definitions)",
    "No proofs, just mouse haircut.",
    "Breaking news: MIT researchers have discovered that imaginary numbers don't actually exist!",
    "How do you make weapons out of candy canes? You suck.",
    "You gargle salt, you gurgle languages.",
    "The pizza didn't want that.",
    "I can walk faster than 30 FPS.",
    "And that brings us to Next House, formerly home to the world's finest oyster crackers before suffering the Great Oyster Cracker Extinction Event.",
    "This opens up a whole world of possibilities that I will ignore.",
    "HELP I'M TRAPPED IN A CSS FACTORY",
    "For the graphics drivers, I was very tempted to try the newly open-sourced Nvidia drivers, but I figured I probably wouldn't have much to talk about given my lack of Nvidia hardware.",
    "It's amazing how many towns are named after their water tower.",
    "Why are we projecting my brain down to one dimension?",
    "I've never heard of a bagel used as a fire extinguisher before",
    "Is the empty set gluten free?",
    "Whoever just pinged @everyone, ple@se st@y @w@y from the @ key unless it's @n emergency. Th@nks!",
    "How to waste other people's time 101",
    "Name a situation where you'll need to challenge fight a gummy bear.",
    "Ah shoot I got initialized.",
    "Dress up as a 3-ball and staple your head to your feet.",
    "Now is this useful? The short answer is no. The long answer is also no.",
    "This is a corporate propaganda manga series by a Hong Kong soy sauce company.",
    "Use push relabel, but its time complexity is a fishy fable.",
    "My real passion is fulfilling my eternal dream of baking the world's largest Oreo!"
];

function setRandomQuote() {
    document.querySelector(".quote").innerHTML = "“" + quotes[Math.floor(Math.random() * quotes.length)].replace("'", "’") + "”";
}