Hello everyone! π That's @spokedu13
I'm a π«π· French Web and Mobile developer, living in Marseille, France. Self-taught by nature, I like to develop complex web and mobile applications while learning new techniques each day. Passionate about technology and its value, I have a great desire to build a product that can solve people's problems at scale.
- Front End
- Back End
- Mobile
- Versioning
- Testing
- Norming / Beautifying
- Writing of documentation and comments
- Web and Mobile Technologies
- 2D and 3D Games on iOS and iPadOS
- Cybersecurity
- Photography
- Travelling
- www.anayaconseil.com
- www.anayaplongee.com
- www.sylvainsuppa.com
- www.anthonybarrin.fr
- www.creez-votre-site.fr
π www.anthonybarrin.fr
- When you stop learning, you will stop going forward.
- In Tech, it's not so much what we know that counts, it's what we are able to learn.
- Knowledge have no limits.
<?php
declare(strict_types=1);
namespace Developer\Spokedu13;
/**
* This class allows me to introduce myself
* @package Developer/Spokedu13
* @version 1.0.0
* @author Anthony Barrin <anthony.barrin@gmail.com>
* @link https://www.anthonybarrin.fr
*/
#[AsHuman]
final class About extends Me implements DeveloperInterface
{
public const USER = "Anthony Barrin";
private string $pronouns = "He | His";
private int $age = 30;
private bool $isPassionateAboutCoding = true;
private array $hobbies = [
"Coding",
"Studying",
"Web and Mobile Technologies",
"Cybersecurity"
];
/**
* This method gives my location.
* @return string Return City and Country
*/
public function getLocation(): string
{
return "Marseille, France";
}
/**
* This method makes it possible to present my technical skills and my qualities.
* @return array Return my skills
*/
public function getSkills(): array
{
return ["hard-skills" => [
Php::class,
Javascript::class,
Symfony::class
],
"soft-skills" => [
"Honest", "Patient", "Spirit of research", "Team Player", "Punctual"
]
];
}
public function getFutureGoal(): string
{
return 'Become a good developer and trainer.';
}
public function Ambitions(): void
{
becomeImmortal();
}
}