fun currentProfile(): WorkingCompany {
val freezner = Profile().apply {
this.name = "박형진"
this.birthYear = 1986
this.mbti = "ENFP"
this.job = "컴퓨터로 개발하는 자"
this.workOfArea = "영등포구 여의도"
this.email = "freezner3@gmail.com"
this.facebookUrl = "https://www.facebook.com/freezner3"
this.instagramUrl = "https://instagram.com/freezner3"
this.linkedinUrl = "https://www.linkedin.com/in/freezner"
this.backendLanguages = ["Java", "Kotlin", "Scala", "Python", "PHP"]
this.frontendLanguages = ["Javascript", "HTML", "CSS", "Swift"]
this.dbms = ["MySQL", "PostgreSQL", "Oracle", "MS-SQL", "MongoDB"]
this.cloudInfras = ["AWS", "GCP"]
this.anotherSkills = ["Photoshop", "Illustrator", "Figma", "Zeplin"]
this.knownDomains = ["CryptoCurrency", "Fintech", "Realty"]
}
val miller = Employer(freezner).apply {
this.startAt = LocalDate.of(2024, 6, 11)
this.team = "ST Business Module"
}
return HanwhaInvestmentSecurities(miller)
}