🏗️ Studying the 5th semester of systems analysis and development
🏡 Brazilian, I live in the state of São Paulo
🎮 Gamer and hardware enthusiast in his spare time
<?php
namespace BrazLucas;
class About extends Me
{
private const COMPANY = 'Infocar Tecnologia';
private const POSITION = 'Junior Web Developer';
public const STACK = [
Technologies::PHP,
Technologies::TYPESCRIPT,
Technologies::LARAVEL,
Technologies::POSTGRESQL,
Technologies::DOCKER,
Technologies::VUEJS,
Technologies::HYPRLAND,
];
public function getCurrentWorkplace(): array
{
return [
'workplace' => [
'company' => self::COMPANY,
'position' => self::POSITION
]
];
}
public function getDailyKnowledge(): array
{
return self::STACK;
}
public function getLinuxDistro(): string
{
return 'ArchLinux';
}
public function getFutureGoal(): string
{
return 'To contribute to open source and develop intelligent solutions.';
}
}