Skip to content

Instantly share code, notes, and snippets.

@gabrielpaivabrito
Created September 19, 2020 05:24
Show Gist options
  • Save gabrielpaivabrito/f2c66a168cb667cffabd6cfde4bbef74 to your computer and use it in GitHub Desktop.
Save gabrielpaivabrito/f2c66a168cb667cffabd6cfde4bbef74 to your computer and use it in GitHub Desktop.
//aboutMe
// about me
var person = {
firstName: "Gabriel",
education: "Bachelor Degree in International Affairs",
postgraduate: "Public-Law Specialist",
nationality: "Brazilian",
speaks: "Portuguese, English and Spanish",
frontend: "HTML, CSS, Javascript",
backend: "Python",
askMeAbout: "tvseries, movies or music",
techCommunities: "https://github.com/",
challenge: "learn the best open source coding practises by fun"
};
document.getElementById("aboutMe").innerHTML = "I'm " +
person.firstName + ", i'm a " + person.nationality + " " + person.postgraduate + " with a " + person.education + " and I speak " + person.speaks + "." + " My personal challenge is to " + person.challenge + " with " + person.frontend + " and " + person.backend + "." + " If you have anything in common DM me on Instagram @ or if we don't have anything in common at all we can still talk about " + person.askMeAbout + ".";
// brito
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment