Skip to content
View Nanrech's full-sized avatar
๐Ÿ†•
๐ŸŽท๐Ÿฆˆ
๐Ÿ†•
๐ŸŽท๐Ÿฆˆ
  • Spain
  • 18:21 (UTC +02:00)
Block or Report

Block or report Nanrech

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
Nanrech/README.md

Pinned

  1. binary print function for C/C++ binary print function for C/C++
    1
    void bprint(int num) {
    2
      for(int i = sizeof(num) * 8 - 1; i >= 0; i--)
    3
        if ((1 << i) & num) {
    4
          putchar('1');
    5
        }
  2. wad_opener wad_opener Public

    oungh

    C 1

  3. bf-cpp bf-cpp Public

    a brainfuck interpreter I made bc I was bored

    C++ 1

  4. bf-transpiler bf-transpiler Public

    bf to c

    C++

  5. Invite fetcher tool Invite fetcher tool
    1
    import requests
    2
    import json
    3
    
                  
    4
    
                  
    5
    if __name__ == "__main__":