move projects around, also more quotes yay

This commit is contained in:
Ellpeck 2020-01-28 02:00:47 +01:00
parent 19aa095086
commit 46ba6a6392
2 changed files with 30 additions and 12 deletions

View File

@ -16,16 +16,6 @@ const projects = [{
status: "In development", status: "In development",
icon: "wildwood" icon: "wildwood"
}, },
{
name: "MLEM",
desc: "MLEM is short for (M)LEM (L)ibrary by (E)llpeck for (M)onoGame. It's a set of NuGet packages that make creating games with the .NET-based framework <a href=\"http://www.monogame.net/\">MonoGame</a> a lot easier. MLEM includes a user interface system, a bunch of extension methods, a simple startup class and more.",
links: {
"Get it on NuGet": "https://www.nuget.org/packages?q=mlem",
"Code on GitHub": "https://github.com/Ellpeck/MLEM"
},
status: "Side project",
icon: "mlem"
},
{ {
name: 'Actually Additions', 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 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.',
@ -39,12 +29,22 @@ const projects = [{
{ {
name: "Nature's Aura", 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 new Minecraft mod about collecting, using and replenishing the Aura naturally present in the world to create useful devices and unique mechanics.",
status: 'Paused', status: 'In development',
links: { links: {
'CurseForge page': 'https://minecraft.curseforge.com/projects/natures-aura' 'CurseForge page': 'https://minecraft.curseforge.com/projects/natures-aura'
}, },
icon: 'na' icon: 'na'
}, },
{
name: "MLEM",
desc: "MLEM is short for (M)LEM (L)ibrary by (E)llpeck for (M)onoGame. It's a set of NuGet packages that make creating games with the .NET-based framework <a href=\"http://www.monogame.net/\">MonoGame</a> a lot easier. MLEM includes a user interface system, a bunch of extension methods, a simple startup class and more.",
links: {
"Get it on NuGet": "https://www.nuget.org/packages?q=mlem",
"Code on GitHub": "https://github.com/Ellpeck/MLEM"
},
status: "Side project",
icon: "mlem"
},
{ {
name: "Tetro", name: "Tetro",
desc: "Tetro is a Tetris clone I wrote in an afternoon and a bit. You can play it in the browser. It also features multiple game piece designs and some custom game modes. It was pretty fun to make, and it's pretty fun to play.", desc: "Tetro is a Tetris clone I wrote in an afternoon and a bit. You can play it in the browser. It also features multiple game piece designs and some custom game modes. It was pretty fun to make, and it's pretty fun to play.",

View File

@ -22,6 +22,8 @@
Wir Sind Helden Wir Sind Helden
Juli Juli
MALINDA MALINDA
Demi Lovato
Taylor Swift
*/ */
const quotes = [ const quotes = [
@ -162,6 +164,22 @@ const quotes = [
"Without love, you can save the world", "Without love, you can save the world",
"Nothing is ever anyone's fault", "Nothing is ever anyone's fault",
"We're all just products of childhood trauma", "We're all just products of childhood trauma",
"The moment is me" "The moment is me",
"You need to calm down",
"You're being too loud",
"Shade never made anybody less gay",
"I forgot that you existed",
"I thought that it would kill me but it didn't",
"I'd be the man",
"I will be rising from the ground",
"Like a skyscraper",
"We can't back down, there's too much at stake",
"This is serious, don't walk away",
"We can't pretend it's not happening",
"You - Me, we're face to face but we don't see eye to eye",
"Like fire and rain, you can drive me insane",
"I can't stay mad at you for anything",
"You're the harmony to every song I sing",
"I wouldn't change a, wouldn't change a thing"
]; ];
$('#quote-text').html('<em>' + quotes[Math.floor(Math.random() * quotes.length)] + '</em>'); $('#quote-text').html('<em>' + quotes[Math.floor(Math.random() * quotes.length)] + '</em>');