Skip to content
View buyungSP's full-sized avatar

Block or report buyungSP

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
buyungSP/README.md
<?php use Smooth\Home\Production as Smooth; /**  * Class Buyung  * Represents Buyung Setiawan Purnomo and provides methods to retrieve information and contact details.  */ class Buyung Extends Smooth { private $me; // Property to store Buyung's name /**  * Constructor.  * Initializes the Buyung object.  */ public function __construct() { $this->me = "Buyung Setiawan Purnomo"; // Store Buyung's name } /**  * Get the location of Buyung.  *  * @return string Location of Buyung Setiawan Purnomo  */ public function getLocation() { return "Semarang, currently residing in Tayu, Pati, Indonesia"; // Return the location } /**  * Returns information about Buyung.  *  * @return string About information  */ public function about() { return "I'm Buyung Setiawan Purnomo, a passionate individual with a background in coding, animation, and digital marketing."; // Return information about Buyung } /**  * Returns Buyung's experience.  *  * @return string Experience information  */ public function experience() { return "I have been involved in various projects over the years, contributing to the tech and creative industries."; // Return experience information } /**  * Returns Buyung's first experiences in an associative array format.  *  * @return array Array containing Buyung's first experiences  */ public function first_experience() { return [ "Coding Project" => 2013, "Animation Project" => 2017, "Digital Marketing Project" => 2022, ]; // Return an array of Buyung's first experiences } /**  * Returns contact information for Buyung in an associative array format.  *  * @return array Array containing Buyung's contact information  */ public function contact() { return [ "You can reach out to me.", "Contact" => [ "email" => "rascallino69@gmail.com", "portofolio" => "smoothhompro.com/website/buyung", "facebook" => "@buyung.setiawan.purnomo" ] ]; // Return an array of Buyung's contact information } } ?>

@buyungSP's activity is private