<?php
namespace TWillm;
class About extends Me
{
public function getCurrentStatus(): array
{
return [
'status' => [
'actualJob' => 'Senior Backend Developer',
'resume' => 'Using Laravel, Docker, Golang on AWS also working on CI/CD and following DevOps mindset and Software Craftmanship',
],
];
}
public function getDailyKnowledge(): array
{
return [
Php::class,
Javascript::class,
Golang::class,
Laravel::class,
Lumen::class,
Vuejs::class,
jQuery::class,
MySQL::class,
MariaDB::class,
Nginx::class,
Docker::class,
AWS::class,
GitlabCI::class,
GitGitflow::class,
UnitTests::class,
Tdd::class,
DDD::class,
Devops::class,
];
}
public function getFutureGoals(): array
{
return [
'Contribute to open source.',
'Learn Ruby and Ruby On Rails',
'Learn Python and Ansible',
'Learn React',
'Learn NodeJS',
'Learn Typescript',
'Learn Rust',
'Learn Elixir',
];
}
}