namespace pp3ng {
class Me final {
public:
static constexpr std::string_view username = "pp3ng";
static constexpr std::string_view name = "Penn.L.Zhou";
std::vector<std::pair<std::string_view, std::string_view>> introduction = {
{"Learning", "Computer Science & Engineering"},
{"Hobby", "Billiards"},
{"Favorite Game", "PUBG"},
{"Motto", "Stay hungry, stay foolish"}};
void say_hi() const noexcept {
std::cout << std::format(R"(
👨💻 PROFILE 👨💻
Operator: {} (@{})
Introduction:
)",
name, username);
for (const auto &[key, value] : introduction) {
std::cout << std::format(" - {}: {}\n", key, value);
}
std::cout << R"(Thanks for visiting my GitHub profile!
Let's embark on some epic coding adventures!
)";
}
};
} // namespace pp3ng
auto main(void) -> int {
std::unique_ptr<pp3ng::Me> me = std::make_unique<pp3ng::Me>();
me->say_hi();
return EXIT_SUCCESS;
}| Category | Technologies |
|---|---|
| 📟 Programming Languages | |
| 🧰 Operating Systems | |
| 🛠️ Development Tools | |
| 💾 Databases | |
| 🌐 Web Development | |
| 🖥️ Hardware Platforms |
| Category | Technologies I'm Exploring |
|---|---|
| 📱 Mobile Development | |
| 🖼️ Computer Graphics | |
| 🏗️ System Design |
I'm always excited to connect with others and have meaningful conversations. Whether you want to:
- 💡 Collaborate on exciting projects
- 🤔 Discuss anything
- 🎮 Game together (PUBG anyone?)
Feel free to reach out through any of these platforms:


