| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Original HTTPS Page] |
Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.
You must be logged in to block users.
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abuse<?php
final class Tentacode
{
public function __construct(
private string $fullName = "Gabriel Pillet",
private string $linkedinHandle = "gabrielpillet",
private string $portfolioUrl = "https://tentacode.dev",
private array $favoriteEmojis = ['🐙', '✨', '🤖', '🤗'],
) {}
public function sayHello(): void
{
$greetingMessage = <<<BONJOUR
Bonjour! {$this->favoriteEmojis[array_rand($this->favoriteEmojis)]}
Je m'appelle {$this->fullName}.
Consultez mon portfolio à {$this->portfolioUrl}
Ou mon profil linkedin à https://linkedin.com/in/{$this->linkedinHandle}
BONJOUR;
print $greetingMessage . PHP_EOL;
}
}
try {
(new Tentacode)->sayHello();
} catch (\Throwable $e) {
echo "Oups ! Personne n'est parfait je suppose…". PHP_EOL . $e->getMessage();
die(42);
}Forked from web-id-fr/mario
🆙 MacOS Ansibles Recipes : Indepotent & Omnipotent (it setups a local environment for devs @ https://web-id.fr)
Jinja 1
🐡 A party game with puffer fishes, made all by myself under 72 hours.
C# 6
| Back | FazBrowse Home | New Git URL |