Skip to content
View airglow923's full-sized avatar
💻
Committed
💻
Committed

Block or report airglow923

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.

Content in all repositories owned by your account will be closed.
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

Pinned Loading

  1. dotfiles dotfiles Public

    Dotfiles backup

    Shell

  2. pam-network-filter pam-network-filter Public

    Linux PAM module for filtering network

    Rust

  3. docker-nginx-boringssl docker-nginx-boringssl Public

    Docker container running NGINX with BoringSSL and QUIC support

    Shell

  4. cmake-header-only-lib-template cmake-header-only-lib-template Public template

    CMake template

    CMake

  5. clang-tidy readability-identifier-na... clang-tidy readability-identifier-naming for Google's naming convention
    1
    CheckOptions:
    2
      - key:             readability-identifier-naming.ClassCase
    3
        value:           CamelCase
    4
      - key:             readability-identifier-naming.ClassMemberCase
    5
        value:           lower_case
  6. C++ SFINAE and concept comparison C++ SFINAE and concept comparison
    1
    #include <concepts>
    2
    #include <iostream>
    3
    #include <type_traits>
    4
    
                  
    5
    struct BothAssignable {