diff --git a/scripts/about.js b/scripts/about.js
index be7d69e..dc145b2 100644
--- a/scripts/about.js
+++ b/scripts/about.js
@@ -5,7 +5,6 @@ const facts = [
"I wrote a book once, but I took all the links to it down because no one was buying it and it felt a bit embarrassing.",
"I'm pretty flexible.",
"I have pretty bad social anxiety, and I'm seeing a therapist and taking medication.",
- /* "I think that bacon is disgusting.", things change, I guess*/
"A lot of times, I say that things are facts despite knowing that they're just opinions, and I hate myself for it.",
"When I code in JavaScript, I randomly switch between using single and double quotes for strings, and it turns into a bit of a mess to look at.",
"Sometimes, I get addicted to energy drinks for a while and have a terrible week while trying to stop drinking them so much.",
@@ -17,7 +16,8 @@ const facts = [
"I get super nostalgic about the The Sims build mode songs. Those bring me back to my childhood, man.",
"I love cheesy romcoms.",
"I have a love-hate relationship with German pop music; sometimes I listen to it for days on end, other times I can't bear to hear it.",
- "According to 16personalities.com, which uses a modified version of the Myers–Briggs Type Indicator, I'm INFP-T."
+ "According to 16personalities.com, which uses a modified version of the Myers–Briggs Type Indicator, I'm INFP-T.",
+ "I love carrot cake."
];
const questions = [{
@@ -64,14 +64,6 @@ const questions = [{
q: "What are your pronouns?",
a: "I'm cis male, so I go by he/him."
},
- {
- q: "What's your sexual orientation?",
- a: 'I like cute guys.'
- },
- {
- q: "What kind of music do you like?",
- a: 'Mostly Rock and Pop. Sometimes I enjoy some good lofi hip hop music - beats to relax/study to, though. You can check out my Last.fm if you\'re curious about specifics.'
- },
{
q: 'What\'s a random fact about you?',
a: facts[Math.floor(Math.random() * facts.length)]
diff --git a/scripts/projects.js b/scripts/projects.js
index 60796d8..77344ae 100644
--- a/scripts/projects.js
+++ b/scripts/projects.js
@@ -9,7 +9,7 @@ const projects = [{
},
{
name: 'Actually Additions',
- desc: 'Actually Additions is a rather popular Minecraft mod that I used to work on. It\'s become widely known in the modding community and has reached over 10 million downloads by now, which is crazy. I don\'t work on it anymore myself, but it\'s being maintained for current versions by someone else.',
+ desc: 'Actually Additions is a rather popular Minecraft mod that I used to work on. It\'s become widely known in the modding community and has reached over 30 million downloads by now, which is crazy. I don\'t work on it anymore myself, but it\'s being maintained for current versions by someone else.',
links: {
'CurseForge page': 'https://www.ellpeck.de/actadd',
'Online manual': 'https://www.ellpeck.de/actaddmanual/'
@@ -19,7 +19,7 @@ const projects = [{
},
{
name: "Nature's Aura",
- desc: "Nature's Aura is a new Minecraft mod about collecting, using and replenishing the Aura naturally present in the world to create useful devices and unique mechanics.",
+ desc: "Nature's Aura is a Minecraft mod about collecting, using and replenishing the Aura naturally present in the world to create useful devices and unique mechanics.",
status: 'In development',
links: {
'CurseForge page': 'https://minecraft.curseforge.com/projects/natures-aura'
@@ -61,7 +61,7 @@ const projects = [{
links: {
'Code on GitHub': 'https://github.com/RockBottomGame'
},
- status: 'Cancelled',
+ status: 'Canceled',
icon: 'rb'
}
];
diff --git a/scripts/quote.js b/scripts/quote.js
index 686bfde..cda13da 100644
--- a/scripts/quote.js
+++ b/scripts/quote.js
@@ -25,6 +25,7 @@
Demi Lovato
Taylor Swift
Paramore
+ The 88
*/
const quotes = [
@@ -197,6 +198,9 @@ const quotes = [
"You say that I've been changing, that I'm not just simply aging",
"Just keep on cramming ideas down my throat",
"Next time you point a finger, I'll point you to the mirror",
- "It has to be so lonely to be the only one who's holy"
+ "It has to be so lonely to be the only one who's holy",
+ "Somebody said: Be what you'll be",
+ "We could be old, and cold, and dead on the sea",
+ "I can't count the reasons I should stay"
];
$('#quote-text').html('' + quotes[Math.floor(Math.random() * quotes.length)] + '');
\ No newline at end of file