Skip to content
View Pp3ng's full-sized avatar
πŸ€—
πŸ€—

Block or report Pp3ng

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
pp3ng/README.md

🎯 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

Pinned Loading

  1. Mandelbrot-Set Mandelbrot-Set Public

    Generates and visualizes the Mandelbrot set using C, C++, and CUDA

    C++ 8

  2. CUDA-device-info CUDA-device-info Public

    A user-friendly tool that displays detailed, color-coded information about your system's CUDA-capable devices.

    Cuda 4

  3. Pshell Pshell Public

    A simple shell implementation in C, designed to provide a command-line interface with various features and built-in commands.

    C 4

  4. network_chat network_chat Public

    Simple Network Channel Based Chatting

    C 3