π― Web Developer | π» 3+ Years in PHP
π Some of My Projects:
- Dental Management System
- Guidance File System
- Student Reporting with Parent Email Notification System
π± Currently Learning:
- Advanced PHP techniques.
- Javascript basic to advance.
π« Get in Touch:
- Email: [email protected]
β‘ Fun Fact:
My first deployment was powered by endless debugging, a touch of caffeine, and pure determination!
class Developer
{
public $name = "Ar Jay Marigondon";
public $role = "Web Developer";
public $email = "[email protected]";
public $tech_stack = ["PHP", "Laravel", "JavaScript", "Bootstrap", "MySQL"];
public $tools = ["VS Code", "GitHub", "Terminal"];
public $nonStopLearning = true;
public $satisfied = false;
public function getTools()
{
return [
"Frameworks" => ["Laravel", "Laravel Livewire", "FilamentPHP"],
"Frontend" => ["Bootstrap"],
"Database" => ["MySQL"],
"Other Tools" => ["Git"],
];
}
public function work()
{
while (!$this->satisfied) {
$this->learnAndCode();
}
return "Happy Coding!";
}
public function letsCollaborate()
{
return "I'm open for collaboration! Reach me at: " . $this->email;
}
}