MrZaKaRiA

Bioβ
- π Hi, Iβm @MrZaKaRiA founder of MrZaKaRiA SOLUTIONS
- π Iβm interested in technology, Open source, Web design and Programming
- π± Iβm currently learning Blockchain
- π«‘ Currently using VoidLinux & dwm as my daily driver besides Debian & macOS
- ποΈ Iβm looking to collaborate on web development
Contactβ
Websiteβ
- π€© Take a look at my website for hiring or consulting: mrzakaria.com
Interestsβ
The Enigmatic Code Wizardβ
<?php
class MrZaKaRiA {
private $name = "MrZaKaRiA";
private $skills = [
"coding" => ["PHP", "JavaScript", "Python"],
"magic" => ["making bugs disappear"],
"humor" => ["creating laughter-induced syntax errors"],
"specialty" => "turning coffee into code"
];
public function getBio() {
return "Greetings! I am $this->name, the enigmatic Code Wizard. " .
"My skills include " . implode(", ", $this->skills['coding']) . ". " .
"I specialize in " . $this->skills['specialty'] . ". " .
"Beware, my magic of " . implode(", ", $this->skills['magic']) . " can surprise you!";
}
public function generateLaughter() {
$jokes = [
"Why do programmers prefer dark mode? Because the light attracts bugs!",
"Whatβs a computer's favorite beat? An algo-rhythm!",
"Why did the developer go broke? Because he used up all his cache!",
"What does a coder do when he gets cold? He puts on a Java jacket!"
];
return $jokes[array_rand($jokes)];
}
}
$wizard = new MrZaKaRiA();
echo $wizard->getBio();
echo "\n\nHere's a joke for you:\n";
echo $wizard->generateLaughter();
?>
Anything unclear or buggy in this tutorial? Please report it!