const developer = {
name: "Bùi Công Hoan",
role: "Backend Developer",
experience: "Vibe coding",
location: "Vietnam",
passion: "Building scalable systems",
hobbies: ["Coding", "Learning", "Contributing"]
};
const introduction = {
title: "My Introduction",
bio_Hoan: `Though I am ordinary among many.
I am still the one and only in this world!`,
content: `I'm a Web backend student passionate about coding.
Want to gain experience and help the Vietnamese
Developer Community through innovative my projects.`,
goals: ["Learn", "Grow", "Contribute", "Inspire"]
};
<?php
class Developer {
public $name = "Bùi Công Hoan";
public $role = "Backend Developer";
private $skills = ["PHP", "Laravel", "MySQL"];
public function introduce() {
echo "Hello from PHP! I'm " . $this->name;
}
public function getSkills() {
return $this->skills;
}
}
$dev = new Developer();
$dev->introduce();
?>
def hello_world():
developer = {
"name": "Bùi Công Hoan",
"message": "Passionate about backend development"
}
print(f"Hello! I'm {developer['name']}")
return developer
if __name__ == "__main__":
hello_world()
public class Developer {
private String name = "Bùi Công Hoan";
private String role = "Backend Developer";
private String[] skills = {"Java", "Spring", "MySQL"};
public void introduce() {
System.out.println("Hello from Java! My name is " + name);
}
public static void main(String[] args) {
Developer dev = new Developer();
dev.introduce();
}
}
package main
import "fmt"
type Developer struct {
Name string
Role string
Skills []string
}
func main() {
dev := Developer{
Name: "Bùi Công Hoan",
Role: "Backend Developer",
Skills: []string{"Go", "Docker", "Kubernetes"},
}
fmt.Printf("Hello from Go! I'm %s\n", dev.Name)
}
class Developer
attr_accessor :name, :role, :skills
def initialize(name, role)
@name = name
@role = role
@skills = ["Ruby", "Rails", "PostgreSQL"]
end
def introduce
puts "Hello from Ruby! I'm #{@name}, a #{@role}"
end
end
dev = Developer.new("Bùi Công Hoan", "Backend Developer")
dev.introduce
interface Skills {
languages: string[];
technologies: string[];
platforms: string[];
}
const languages = [
"JavaScript",
"Python",
"Java",
"TypeScript",
"SQL",
"Laravel",
"HTML/CSS",
"Tailwind CSS"
];
const tools = [
"Node.js",
"Docker",
"MongoDB",
"MySQL",
"Git",
"Linux",
"VS Code",
"Postman"
];
🎮 My Creations & Services
// 🎮 WEB GAME - PHP
class WebGameSystem {
public function getFeatures() {
return ["Auto Bank", "Admin Panel", "Comments", "Posts", "Giftcodes"];
}
}
// 🎮 GAME NRO - JAVA
class GameNRO {
private String[] features = [
"Chức năng mới lạ", "Res đẹp", "Option all", "No bugs"
];
public void initGame() { System.out.println("🎮 NRO Ready!"); }
}
// 🤖 ZALO BOT - NODE.JS
class ZaloBotManager {
constructor() {
this.features = ["Anti-Link", "Anti-Spam", "Auto-Ads", "Entertainment"];
}
startBotService() { console.log("🤖 Bot Started!"); }
}
Let's connect & collaborate 🚀
// My GitHub Profile
const github = {
username: "cnghown",
url: "https://github.com/cnghown",
contributions: "Active"
};
console.log("Visit my GitHub: " + github.url);
# My Contact Information
email = "hoandeptrai61@gmail.com"
facebook = "https://www.facebook.com/conghoan61/"
name = "Bui Cong Hoan"
def send_message():
print(f"Hello {name}! Email sent to {email}")
return True
# Feel free to reach out!
send_message()
<?php
// Send me an email
$sender = [
"email" => "hoandeptrai61@gmail.com",
"name" => "Bùi Công Hoan",
"message" => "Let's collaborate!"
];
echo "Email: " . $sender["email"];
echo "Contact me anytime!";
?>
📧 Email: hoandeptrai61@gmail.com
GitHub: github.com/cnghown
Facebook: Bui Cong Hoan
📞 My Phone: +84 395134812
function bankTransfer() { qrCode }