Thanks for dropping by and welcome to my profile!
import _ from "lodash";
import moment from "moment";
class PersonBuilder {
constructor(name, birthday, pronouns) {...}
livingIn(country) {...}
workingAs(company) {...}
in(role) {...}
withADegree(degree, university) {...}
withSkills(...skills) {...}
build() {...}
}
class Person {
...
whoAmI() {...}
}
const me = new PersonBuilder("Kevin Szuchet", "1997-08-21", "he/him/his")
.livingIn("🌎")
.workingAs("Software Engineer")
.in("Decentraland")
.withADegree("B.Sc. in Information Systems Engineer", "UTN FRBA")
.withSkills(
"OOP And Functional Programming",
"Design and Architectural Patterns",
"SQL and NoSQL",
"CI/CD"
)
.build();
me.whoAmI();
- 📚 Books fan.
- 🤓 Notion lover.
- ☕ In a relationship with coffee as you can see in my Instagrm Stories.
- 🚲 Digital Nomad.
- 🌱 Passionate about sports, nature, and food.