<!DOCTYPE html>
<html>
<body>
<h2>Scyne's Bio</h2>
<p id="aboutScyne"></p>
<script>
// More About Me:
const scyne = {
firstName: "Ki",
lastName: "Scyne",
age: Math.floor((new Date() - new Date('1985-09-14').getTime()) / 3.15576e+10),
discordHandle: "Scyne#1337",
matrixHandle: "@scyne:hive.scyne.com",
title: "NeoMedia Magician",
skills: {
languages: {
javascript: "10%",
nodeJS: "2%"
},
VScode: "installed?",
designingConvolutedProfileJokes: {
thatAreFunny: {
true: "0%",
false: "100%"
}
}
},
doLie: {
true: "do not",
false: "will use any and every opportunity to"
}
};
// Bio Text:
document.getElementById("aboutScyne").innerHTML =
scyne.firstName + " is a " + scyne.age + " year old " + scyne.title.toLowerCase() + ". They are " + scyne.skills.designingConvolutedProfileJokes.thatAreFunny.false + " serious about everything they do and totaly " + scyne.doLie.true + " waste their time. Currently attempting to learn Full Stack Development and is about " + scyne.skills.languages.javascript + " proficent in Javascript, " + scyne.skills.languages.nodeJS + " in nodeJS, and " + scyne.skills.designingConvolutedProfileJokes.thatAreFunny.true + " in Malbolge. The can be reached at " + scyne.discordHandle + " in Discord or " + scyne.matrixHandle + " on the Matrix network." ;
</script>
</body>
</html>