Skip to content
View Katsaros's full-sized avatar
๐Ÿ’ญ
Make it work, make it right, make it fast.
๐Ÿ’ญ
Make it work, make it right, make it fast.

Highlights

  • Pro

Block or report Katsaros

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
Katsaros/README.md

Hi there ๐Ÿ‘‹ My name is Giannis Katsaros

๐Ÿ”น Founder of MEGADEPLOY / Senior Software Engineer

๐Ÿ›  ย Tech Stack (mostly)

Java Spring Boot Dropwizard

However, I'm also intensively exploring such topics like (among other things):
๐Ÿ”น System Design
๐Ÿ”น Kafka Streams
๐Ÿ”น AWS

Find Me Around The Web ๐ŸŒ

As a side project, I'm currently developing Static Badge, my own Java Backend Framework. You can find more information in the repository here .

Pinned Loading

  1. WebJava-Framework WebJava-Framework Public

    WebJava is a lightweight Java web framework built from scratch from me.

    Java 5

  2. Google-Foobar-Challenge Google-Foobar-Challenge Public

    Participation in Google FooBar Challenge. All 5 levels were completed.

    6

  3. Airbnb-Clone Airbnb-Clone Public

    Full-Stack App (Airbnb clone) with MicroServices and a fully implemented API.

    Java 7 6

  4. Vodafone-itsAPPtoyou-Luckywheel Vodafone-itsAPPtoyou-Luckywheel Public

    Participation in Vodafone Its APPtoyou Contest. Android application.

    Java

  5. convert-plaintext-to-hash-code convert-plaintext-to-hash-code Public

    Convert easy plaintext to hashcode using a simple dropdown option.

    PHP

  6. Angular 2, solve recursion problem w... Angular 2, solve recursion problem with infinity children in nested objects, by showing them as separate divs
    1
    <div class="row">
    2
        <ng-template #recursiveList let-yourListName>
    3
          <div class="col-12" *ngFor="let item of yourListName; let i=index;">
    4
            <div class="mystyle" style="text-align: center; " (click)="openDialog(item)">{{item.title}}</div>
    5
            <div class="row" *ngIf="item.children.length > 0">