some more quotes and some small about changes

This commit is contained in:
Ellpeck 2020-08-19 04:39:54 +02:00
parent e5726d1480
commit 5eed380dcb
2 changed files with 21 additions and 3 deletions

View File

@ -34,7 +34,7 @@ const questions = [{
},
{
q: 'What languages do you speak?',
a: 'I speak German, English, Java and C# fluently. I\'m okay at JavaScript and Python, and I can just about write something in C, HTML and CSS.'
a: 'I speak German, English, Java and C# fluently. I\'m okay at JavaScript and Python, and I can just about write something in C, HTML, CSS and Lua.'
},
{
q: "How do you make games?",
@ -54,7 +54,7 @@ const questions = [{
},
{
q: 'How did you make this site?',
a: 'I made this page using <a href="https://getbootstrap.com/">Bootstrap</a>. The content is dynamically generated using JavaScript (both on the client and the server) based on a bunch of JSON data. The code is over two years old and pretty messy, but you can look at it on the <a href="https://github.com/Ellpeck/Web">GitHub repository</a>.'
a: 'I made this page using <a href="https://getbootstrap.com/">Bootstrap</a>. The content is dynamically generated using JavaScript (both on the client and the server) based on a bunch of JSON data. The code is many years old and very messy, but you can look at it on the <a href="https://github.com/Ellpeck/Web">GitHub repository</a>.'
},
{
q: 'What\'s your favorite programming language?',

View File

@ -26,6 +26,7 @@
Taylor Swift
Paramore
The 88
Hamilton
*/
const quotes = [
@ -208,6 +209,23 @@ const quotes = [
"And it's obvious that you're dying",
"Just living proof that the camera's lying",
"Smile, cause you'll go out in style",
"Cause after all this time, I'm still into you"
"Cause after all this time, I'm still into you",
"I will never be satisfied",
"He's after me 'cause I'm a Schuyler sister",
"Take a break",
"Run away with us for the summer",
"I noticed a comma in the middle of a phrase",
"It changed the meaning, did you intend this?",
"One stroke and you've consumed my waking days",
"I know my sister like I know my own mind",
"You will never find anyone as trusting or as kind",
"In the eye of a hurricane, there is quiet",
"It's quiet uptown, it's quiet uptown",
"History has its eyes on you",
"It must be nice, it must be nice",
"You'll be back, soon you'll see",
"You'll remember you belong to me",
"I am not throwing away my shot",
"I'm just like my country, I'm young, scrappy and hungry"
];
$('#quote-text').html('<em>' + quotes[Math.floor(Math.random() * quotes.length)] + '</em>');