Skip to content
View 1uigii's full-sized avatar

Block or report 1uigii

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 supported. This note will be visible to only you.
Report abuse

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

Report abuse
1uigii/README.md
  • 👋 Hi, I’m @1uigii
  • 👀 I’m interested in systems programming, learning about web protocols, and writing rust, c, c++
  • 🌱 I’m currently learning how to contribute to the open source community
  • 📫 How to reach me 1uigi@protonmail.com (note the one)
  • 😄 Pronouns: he/him
  • ⚡ Fun fact: loading...
struct luigi_t {
public:
    constexpr luigi_t(const luigi_t&) = default;
    friend constexpr luigi_t operator""uigi(unsigned long long value);
    static constexpr bool is_true(const luigi_t& l) {
        return l.value == 1;
    }

private:
    unsigned long long value;
    constexpr luigi_t(unsigned long long value) : value(value) { }
};

constexpr luigi_t operator""uigi(unsigned long long value) {
    return luigi_t { value };
}

constexpr luigi_t luigi = 1uigi;
static_assert(luigi_t::is_true(luigi));

Popular repositories Loading

  1. 1uigii 1uigii Public

    Config files for my GitHub profile.

  2. ziel ziel Public

    A modular battleship implementation using tokio and ratatui

    Rust

  3. advent-of-code-24 advent-of-code-24 Public

    A template and possible solutions for Advent of Code 2024

    Rust