package cz.tomasholoubek;
// Coffee-driven developer ☕
// Interested in AI agents & automation
// Currently building cool stuff at DevCors
public class TomasHoloubek extends Developer {
private String name = "Tomáš Holoubek";
private String role = "Java Software Developer";
private String company = "DevCors";
private String since = "July 2024";
private String[] languages = { "Java", "TypeScript", "JavaScript" };
private String[] frameworks = { "Spring Boot", "React" };
private String[] databases = { "PostgreSQL", "MySQL", "MongoDB" };
private String[] tools = { "Docker", "Git", "Linux", "Maven" };
public List<Job> getExperience() {
// click me to see work history →
}
public List<School> getEducation() {
// click me to see education →
}
@Override
public void buildCoolStuff() {
// click me to see projects →
}
public void getInTouch() {
// click me to see contact info →
}
public void funFacts() {
// try clicking me 👀
}
}
package cz.tomasholoubek;
import java.util.List;
public class Experience {
// Commercial projects I've contributed to 💼
public static List<Job> getAll() {
return List.of(
Job.builder()
.title("Java Software Developer")
.company("DevCors")
.startDate(YearMonth.of(2024, 7))
.endDate(YearMonth.now())
.tasks(
"Developing and maintaining backend applications",
"Working with Java and Spring Boot",
"Database design with PostgreSQL"
)
.build()
);
}
}
package cz.tomasholoubek;
import java.util.List;
public class Education {
// Where it all started 🎓
public static List<School> getAll() {
return List.of(
School.builder()
.name("Gymnázium F. M. Pelcla")
.location("Rychnov nad Kněžnou")
.startDate(YearMonth.of(2014, 9))
.endDate(YearMonth.of(2022, 6))
.focus(
"Mathematics and sciences",
"Logical thinking and problem-solving",
"First steps in programming"
)
.build()
);
}
}
package cz.tomasholoubek;
import java.util.List;
public class Projects {
// Backend applications powered by Java & Spring Boot
// More coming soon...
public static List<Project> getAll() {
return List.of(
Project.builder()
.name("Backend Systems @ DevCors")
.description("Enterprise Java applications with Spring Boot")
.stack("Java", "Spring Boot", "PostgreSQL")
.build(),
Project.builder()
.name("Portfolio Website")
.description("This very page you're looking at right now")
.stack("HTML", "CSS", "JavaScript")
.build()
);
}
}
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<groupId>cz.tomasholoubek</groupId>
<artifactId>portfolio</artifactId>
<version>1.0.0</version>
</project>