Skip to content
View MATRIXKOO's full-sized avatar
Focusing
Focusing

Organizations

@vidar-team
Block or Report

Block or report MATRIXKOO

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
MATRIXKOO/README.md

Hi there 👋

Total time coded since Jun 11 2020

  • ⚡ I’m currently as a Programmer ,PL enthusiast ,and Vagrant .
  • 📕 I’m currently learning Compiler, Language Design and Impl, Program Analysis and Program Foundation.
  • 💬 Ask me about ANYTHING.
  • 📫 How to reach me: see my Email.
  • ⚙ A programmer in a world where nobody knows what one is and what one does.
  • 📚 Recommend those -Computers can be understood , write-code-every-day
template<typename T>
concept TouchFishAble = requires(T human) {
  { human.touchFish() };
};

class Programmer : public Human
{
public:
  auto eat() -> STATUS;
  auto code() -> STATUS;
  auto sleep() -> STATUS;
  auto repeat() -> STATUS;
  
  Programmer(KeyBoard keyboard , Screen screen , Book tech_book , Computer high_performance_computer);
}

class World
{
  constexpr int answer = 42;
  World(World&& old_world);
  
  template <class Obj>
  auto execute(Obj& obj) -> STATUS;
}
 

constinit Programmer me(Niz , Mateview , PLFA , mbp_with_m1_chip);

World world(std::move(earth));

world.execute<Programmer>(me);


constexpr auto lambda = [](auto TouchFishAble) {
  return [](auto human) {
    human.touchFish();
  };
};

matrixkoo's GitHub stats

trophy since 2021-03-12

Pinned

  1. ayanami-nemesis-analyzer ayanami-nemesis-analyzer Public

    A C/C++ Staitc Analyzer for Now.

    C++ 7 1

  2. vast vast Public

    Forked from trailofbits/vast

    VAST is an experimental frontend designed for program analysis of C and C++. It provides a tower of IRs as MLIR dialects to choose the best fit representations for a program analysis or further pro…

    C++ 4

  3. rust-lang/rust-analyzer rust-lang/rust-analyzer Public

    A Rust compiler front-end for IDEs

    Rust 13.6k 1.5k

  4. colorize.cmake colorize.cmake
    1
    option (FORCE_COLORED_OUTPUT "Always produce ANSI-colored output (GNU/Clang only)." FALSE)if (${FORCE_COLORED_OUTPUT})
    2
        if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
    3
           add_compile_options (-fdiagnostics-color=always)
    4
        elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
    5
           add_compile_options (-fcolor-diagnostics)
  5. rust-lang/this-week-in-rust rust-lang/this-week-in-rust Public

    Data for this-week-in-rust.org

    HTML 2.1k 1.1k

  6. test_for_sicp test_for_sicp Public

    this repo is for writing code on sicp.

    Racket 6