Skip to content
View samfelgar's full-sized avatar

Block or report samfelgar

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
samfelgar/README.md
<?php

namespace Samuel;

class About extends Me
{
    public function __construct()
    {
        echo 'Hi there!';
    }

    public function getCurrentWorkplace(): array
    {
        return [
            'workplace' => [
                'company' => 'mLearn',
                'position' => 'Backend developer'         
            ]
        ];
    }

    public function getKnowledge(): array
    {
        return [
            'programmingLanguages' => [
                PHP::class,
                Javascript::class,
                Java::class,
            ],

            'frameworks' => [
                Laravel::class,
                VueJS::class,
                React::class,
            ],

            'devOps' => [
                AWS::class,
                Docker::class,
            ]
        ];
    }

    public function getFutureGoal(): string
    {
        return 'To learn, always';
    }
}

Pinned Loading

  1. log-requests log-requests Public

    PHP

  2. rabbitmq-php rabbitmq-php Public

    PHP

  3. reactphp reactphp Public

    PHP

  4. alpine-packages-finder alpine-packages-finder Public

    PHP

  5. brackets-analyser brackets-analyser Public

    Analyse sequence of brackets to determine if the openings/closing are in correct order

    Java

  6. time-converter time-converter Public

    Simple decimal time converter

    Go