This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "basics": { | |
| "name": "Paweł Łabaj", | |
| "label": "Java Software Engineer", | |
| "picture": "", | |
| "email": "pawel@labaj.com.pl", | |
| "phone": "+48 604 092 079", | |
| "url": "https://www.labaj.com.pl", | |
| "summary": "Java Software Engineer with 20+ years building backend systems and business logic — from monoliths to microservices. Enjoying solving tough problems, mentoring teammates, and improving code quality. Creative, resourceful, and flexible, with the ability to adapt to changing priorities while maintaining a positive attitude and strong work ethic. Excellent interpersonal skills and effective communication abilities.", | |
| "location": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import org.junit.jupiter.api.Test; | |
| import java.util.LinkedHashSet; | |
| import java.util.Set; | |
| import static org.assertj.core.api.Assertions.assertThat; | |
| class OrderSetTest { | |
| @Test | |
| void orderInSetShouldNotBeLost() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import io.soabase.recordbuilder.core.RecordBuilder; | |
| import pl.com.labaj.autorecord.AutoRecord; | |
| import pl.com.labaj.autorecord.Ignored; | |
| import pl.com.labaj.autorecord.Memoized; | |
| import pl.com.labaj.autorecord.extension.compact.LoggingExtension; | |
| import javax.annotation.Nullable; | |
| import java.util.List; | |
| import java.util.Map; | |
| import java.util.function.Supplier; |