I'm Hasan Masud, a fullstack developer building digital products at my current workplace using Lean Design principles.
I use PHP/Laravel, MySQL, JavaScript, Vue JS, jQuery, Bootsrap & Tailwind css to develop the products.
<?php
namespace HasanMasud;
class About extends Me
{
public function getWorkplaces(): array
{
return [
'workplaces' => [
[
'company' => 'Genex Infosys Limited',
'position' => 'Senior Software Developer',
'startDate' => '2023-11-01',
'endDate' => null
],
[
'company' => 'DigiPro Solutions Ltd.',
'position' => 'Senior Software Developer',
'startDate' => '2022-10-06',
'endDate' => '2023-10-31'
],
[
'company' => 'Excel Telecom (Pvt.) Ltd.',
'position' => 'Full-Stack Developer',
'startDate' => '2021-10-02',
'endDate' => '2022-10-04'
],
[
'company' => 'Aqa Technology',
'position' => 'Full-Stack Developer',
'startDate' => '2018-04-01',
'endDate' => '2021-09-30'
]
]
];
}
public function getDailyKnowledge(): array
{
return [Laravel::class, Vuejs::class, Python::class, Django::class, MongoDB::class];
}
}