class Profile
{
/** @var string NAME The name of the profile owner. */
public const NAME = "Mariusz";
/** @var array $professions List of professions the person is skilled in. */
protected array $professions = [
"Web Developer",
"Python Programmer"
];
/** @var array $skills Detailed list of technical skills, including proficiency in various technologies and tools. */
protected array $skills = [
"HTML5 / CSS / Bootstrap",
"JavaScript / jQuery",
"SQL",
"PHP" => [
"PHP (5.4 - 8.4)", // Supported PHP versions
"PHPDoc", // Documentation generation
"PHP Syntax Tests", // Syntax testing for various versions
"PHPStan", // Static analysis
"PHP_CodeSniffer", // Code quality checker
"License Checking" // Checking licenses of packages
],
"Python",
"Lua",
"Git",
"GitHub Actions", // CI/CD automation
"Docker", // Containerization
"Cross-browser Compatibility",
"Interface Design (UI)",
"Microsoft Office",
"Graphic design / Video editing software" => [
"Adobe Premiere",
"Adobe Photoshop",
"GIMP",
"Inkscape"
]
];
/** @var array $frameworks List of web frameworks and platforms with which the person is proficient. */
protected array $frameworks = [
"Wordpress (with woocommerce)",
"Prestashop",
"Magento",
"Opencart",
"Custom framework"
];
/** @var array $hobbies List of hobbies and interests that the person enjoys in their free time. */
protected array $hobbies = [
"Raspberry Pi Projects / Home IT Enhancements",
"Video Games",
"Fantasy Books",
"Cinematography & Japanese Animation",
"Computer Software & Hardware",
"Photography",
"Stable Diffusion" // AI image generation technology
];
}