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

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 at 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 🌍

🚧 Some of my Projects:

Pinned Loading

  1. Google-Foobar-Challenge Google-Foobar-Challenge Public

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

    6

  2. Airbnb-Clone Airbnb-Clone Public

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

    Java 7 6

  3. Vodafone-itsAPPtoyou-Luckywheel Vodafone-itsAPPtoyou-Luckywheel Public

    Participation in Vodafone Its APPtoyou Contest. Android application.

    Java

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

    Convert easy plaintext to hashcode using a simple dropdown option.

    PHP

  5. memory-chatbot memory-chatbot Public

    A simple chatbot to run as a C++ project.

    C++

  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">