33class UserProfile {
34 constructor() {
35 this.location =
"Earth / CN";
36 this.status =
"Compiling Reality...";
37 this.education = {
38 major: "Computer Science",
39 degrees: ["Bachelor @ HDU", "Master @ MSU"]
40 };
41 this.skills = {
42 languages: ["Python", "JavaScript", "C++"],
43 creative: ["Photography", "Generative Art"]
44 };
45 }
46
47 getPhilosophy() {
48
49
50
51
52 return true;
53 }
54
55 getBio() {
56 return "I have a strong passion for anything related to computers, with a
special interest in microcontrollers and embedded systems. A fervent Pentax aficionado.";
57 }
58}
59
60
61> Loading UserProfile... [OK]
62> Initializing Creative Modules... [OK]