let SoftwareEngineer = class {
constructor(name, pronouns, location,
languages, tools, interests,
goal, platforms, currentlyPlaying) {
this.name = name;
this.pronouns = pronouns;
this.location = location;
this.languages = languages;
this.tools = tools;
this.interests = interests;
this.goal = goal;
this.platforms = platforms;
this.currentlyPlaying = currentlyPlaying;
}
intro() {
console.log(`Hi, my name is ${this.name}, pronouns are ${this.pronouns} and I am a Software Engineer. I live in ${this.location} and I am a graduate of App Academy. I am an avid gamer but right now I am currently playing ${this.currentlyPlaying}. Some languages I know are ${this.languages} and the tools I use: ${this.tools}. Thanks for stopping by!`);
}
}
const dandelion = new SoftwareEngineer('Dandelion', 'they/them', 'OR, USA',
'Javascript, HTML, CSS, Python, React, Redux, Node, Express, Flask, PostgreSQL, MongoDB, Vuejs, Jest, Lua, Jinja, and Pug',
'VScode, Masscode, Zeal, and Sublime',
'Gaming, Drawing/Art, Horror, Films, Music, Writing, and Reading',
'Hone my skills as a SWE.', 'PC, Switch, PS4, PS5, and Mobile(Android)', 'No Mans Sky, Minecraft, Loop Hero');
dandelion.intro(); // Hi, my name is Dandelion, pronouns are they/them and I am a Software Engineer. I live in OR, USA and I am a graduate of App Academy. I am an avid gamer but right now I am currently playing Elden Ring. Some languages I know are Javascript, HTML, CSS, Python, React, Redux, Node, Express, Flask, PostgreSQL, MongoDB, Vuejs, Jest, Lua, Jinja, and Pug and the tools I use: VScode, Masscode, Zeal, and Sublime. Thanks for stopping by!
- Portfolio Site - A portfoilio of my work.
- Linkedin - Linkedin profile.
- morbidlyocheese - Page of social media links, etc.
- Horroreview - Horror film reviews.
- Morbidlyocheese Games - Itchio page.