About

About

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(2023, 12, 4)
      this.team = "Product"
  }
  
  return LearningSpoons(miller)
}