A passionate backend 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'], 'technologies' => ['react', 'doctrine', 'symfony', 'rabbitmq'], 'toolset' => ['git', 'composer', 'npm', 'intellij ide', 'atlassian', 'adobe', 'webpack'], 'operations' => ['docker', 'jenkins', 'gitlab', 'zabbix'], 'os' => ['osx', 'centos', 'debian', 'windows'], 'webservers' => ['traefik', 'nginx', 'apache', 'haproxy'], 'databases' => ['mysql', 'mariadb', 'oracle'], 'architecture' => ['microservices', 'monolith', 'design patterns', 'api', 'modular', 'unittests', 'async', 'message queues', 'KISS'], ]; } public function sayHi(): string { return 'Thank you for stopping by. Maybe you find some of my work interesting.'; } } $about = new About(); $about->sayHi();