A passionate fullstack software developer from Germany 🇩🇪
<?php
namespace Dennis\Barlowe;
readonly class About extends Me
{
public const CHARACTERISTICS = [
'name' => 'Dennis Barlowe',
'nationalities' => ['en_US', 'de_DE'],
'birthyear' => 1994,
'role' => 'Web Developer',
'gender' => 'male',
'location' => 'Aschaffenburg, Germany',
];
public function getPrimarySkillSet(): array
{
return [
'languages' => ['php', 'html', 'twig', 'css', 'scss/sass', 'javascript', 'sql', 'bash'],
'frameworks' => ['symfony', 'wordpress'],
'libraries' => ['react', 'doctrine'],
'toolset' => ['git', 'composer', 'npm', 'intellij ide', 'atlassian', 'adobe', 'webpack'],
'operations' => ['docker', 'jenkins', 'gitlab-ci', 'github-actions'],
'os' => ['osx', 'ubuntu', 'centos', 'debian', 'windows'],
'webservers' => ['traefik', 'nginx', 'apache'],
'databases' => ['mysql', 'mariadb', 'oracle'],
'architecture' => ['microservices', 'monolith', 'design patterns', 'api', 'modular', 'unittests', 'message queues', 'SOLID'],
];
}
public function sayHi(): string
{
return 'Thank you for stopping by. Maybe you find some of my work interesting.';
}
}
$about = new About();
$about->sayHi();