ααααΆαααααΆα / α’αααα’αα·αααααα / αα·αα’ααααα ααΆ / Digital Innovation, Zero-truth α¬ ααΆαα―αααααΊααΆα’αααΈααααααα»αα±ααααααααααα»ααα ααΎααααααααα’α·αααααααα
**\V/**
<?php
class V {
public $name;
public $age;
public $work;
public $education;
public $hobbies;
public $email;
public $socialNetworks;
public $skills;
public $values;
public $projects;
public function __construct() {
$this->name = 'Vi_';
$this->age = 404;
$this->work = ['YouTube', 'Github', 'Meta', 'Google'];
$this->education = ['Kratie', 'SSCC', 'RBBHS', 'RPITTS', 'Siem Reap'];
$this->hobbies = ['Caffee Internet', 'Research', 'Walking Around'];
$this->email = '[email protected]';
$this->socialNetworks = [
'Twitter' => 'https://twitter.com/viwxyz/',
'LinkedIn' => 'https://linkedin.com/in/srievi'
];
$this->skills = ['Python', 'PHP', 'Kali Linux', 'Web Scraping'];
$this->values = ['Privacy Advocate', 'Zero-Trust Enthusiast'];
$this->projects = [
'Explore CQ' => 'https://gist.github.com/EIRSVi'
'YouTube Video ' => 'https://github.com/eirsvi/'
];
}
public function current_location() {
return 'αααααΆβ, α‘α§β, ααααα»ααΆ';
}
public function bio() {
return 'Researcher | Developer | Designer, focused on privacy and zero-trust tech. Hobbies: Photography, Skydiving.';
}
}
// Usage Example
$profile = new V();
echo $profile->bio();
?>