1 package dev.yasar.portfolio;
2
3 /**
4 * Software engineer based in Chennai.
5 * Focused on backend systems and the JVM.
6 * Writes code that's readable first, clever second.
7 */
8 public class Yasar implements Developer {
9
10 private final List<String> strengths = List.of(
11 "Strong grasp of OOP and data structures",
12 "Comfortable across the full language stack",
13 "Picks up new frameworks fast, ships clean code"
14 );
15
16 public String currentFocus() {
17 // Deep-diving Spring Boot and REST API design.
18 // Learning how production Java systems are actually built —
19 // not just the happy path, but error handling,
20 // transactions, and writing code other devs can maintain.
21 return "backend Java engineering";
22 }
23
24 public boolean isAvailable() {
25 return true; // open to internships & junior roles
26 }
27 }