‹ Filip Tepper

About

resource "person_details" "filip_tepper" {
  name    = "Filip Tepper"
  email   = "filip@tepper.pl"
  phone   = "+48668194320"
  website = "https://filip.tepper.pl/"
}

resource "person_experience" "hopin_sre_engineer" {
  company  = "Hopin"
  title    = "SRE Engineer"
  from     = "September 2020"
  to       = timestamp()
  location = "remote"
}

resource "person_experience" "castle_infrastructure_team_lead" {
  company  = "Castle.io"
  title    = "Infrastructure Team Lead"
  from     = "July 2019"
  to       = "August 2020"
  location = "remote"
}

resource "person_experience" "castle_senior_engineer" {
  company  = "Castle.io"
  title    = "Senior Engineer"
  from     = "April 2015"
  to       = "June 2019"
  location = "remote"
}

resource "person_experience" "taptera_senior_engineer" {
  company  = "Taptera"
  title    = "Senior Engineer"
  from     = "September 2012"
  to       = "March 2015"
  location = "Warsaw, Poland / remote"
}

resource "person_experience" "durszlak_cofounder" {
  company  = "Durszlak"
  title    = "Cofounder"
  from     = "June 2011"
  to       = "February 2015"
  location = "Warsaw, Poland / remote"
}

resource "person_experience" "freeport_metrics_senior_consultant" {
  company  = "Freeport Metrics"
  title    = "Senior Consultant"
  from     = "November 2010"
  to       = "Augusta 2012"
  location = "Warsaw, Poland"
}

resource "person_experience" "gg_network_senior_engineer" {
  company  = "GG Network"
  title    = "Senior Engineer, Team Leader, Scrum Master"
  from     = "August 2009"
  to       = "October 2010"
  location = "Warsaw, Poland"
}

resource "person_experience" "more7_cto" {
  company  = "more7 Polska"
  title    = "CTO"
  from     = "January 2007"
  to       = "December 2008"
  location = "Poznań, Poland"
}

resource "person_experience" "other" {
  company  = "Companies & Projects"
  title    = "Software Engineer"
  from     = "when I turned 9"
  to       = "December 2006"
  location = "Poznań, Poland"
}

resource "person_education" "university" {
  university = "The Poznań University of Economics"
  title      = "MSc Economics"
  from       = "2001"
  to         = "2006"
  location   = "Poznań, Poland"
}