Skip to content

Pp3ng/pp3ng

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

2 Commits
Β 
Β 

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", "Delta Force"},
      {"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

πŸ’­ 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. Feel free to reach out through any of these platforms:

Coding GIF

Footer Wave

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors