Skip to content
View TasosKyr's full-sized avatar

Block or report TasosKyr

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
TasosKyr/README.md
namespace TasosKyr;

class About extends Me
{

    public function getBasicInfo(): array
    {
        return [
            'name' => [
                'first' => 'Anastasios' || 'Tasos',
                'last' => 'Kyrtsis',
            ],
            'based_in' => [
                'city' => 'Berlin',
                'country' => 'Germany'
            ],
        ];
    }
    
    public function getCurrentWorkplace(): array
    {
        return [
            'workplace' => [
                'company' => 'Heyflow',
                'position' => 'Software Engineer',
                'specialty' => 'Full-Stack'
            ]
        ];
    }

    public function getFavouriteTechnologies(): array
    {
        return [
            Javascript::class,
            Typescript::class,
            NodeJS::class,
            Reactjs::class,
            Vuejs::class,
            Nextjs::class,
            Postgresql::class,
            NestJS::class
            GraphQL::class,
            Redis::class,
            AWS::class,
        ];
    }

}

Pinned Loading

  1. TasosKyr TasosKyr Public

  2. stopwatch-with-useReducer stopwatch-with-useReducer Public

    Creation of simple stopwatch as a study for React.useReducer

    HTML

  3. star-wars-space-battle star-wars-space-battle Public

    Star wars && Space Invader themed game, built using OOP.

    JavaScript 1