Skip to content

Pp3ng/pp3ng

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

Repository files navigation

🎯 About Me

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;
}

⌨️ Things I Code With

Category Technologies
📟 Programming Languages C C++ CUDA Shell TypeScript
🧰 Operating Systems Debian macOS FreeBSD
🛠️ Development Tools Docker Git Vim tmux GDB Qt
💾 Databases PostgreSQL Redis MongoDB
🌐 Web Development Nginx Node.js React TailwindCSS
🖥️ Hardware Platforms Raspberry Pi Arduino

🌱 Learning Journey

Category Technologies I'm Exploring
📱 Mobile Development Flutter Swift Kotlin
🖼️ Computer Graphics OpenGL Vulkan
🏗️ System Design Kubernetes Terraform Consul

🚀 Featured Projects

📊 Statistics

Programming GIF
GitHub Stats Top Languages GitHub Streak WakaTime Stats

🎵 Vibing To

Spotify Playing

💭 Daily Inspiration & Motivation

Developer Wisdom

Random Dev Quote

Daily Motivation

Daily Motivation

🎲 Random Fun

Programming Jokes

Rainbow Line

📬 Connect With Me

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:

Coding GIF

Footer Wave

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors