Skip to content
View sirmilann's full-sized avatar
Block or Report

Block or report sirmilann

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
sirmilann/README.md
#include <iostream>
#include <string>

class ReadMe {
public:
    virtual void about() = 0;
};

class sirmilann : public ReadMe {
public:
    sirmilann() {
        std::cout << R"(
       ██╗  ██╗███████╗██╗     ██╗      ██████╗     ██╗    ██╗ ██████╗ ██████╗ ██╗     ██████╗ ██╗
       ██║  ██║██╔════╝██║     ██║     ██╔═══██╗    ██║    ██║██╔═══██╗██╔══██╗██║     ██╔══██╗██║
       ███████║█████╗  ██║     ██║     ██║   ██║    ██║ █╗ ██║██║   ██║██████╔╝██║     ██║  ██║██║
       ██╔══██║██╔══╝  ██║     ██║     ██║   ██║    ██║███╗██║██║   ██║██╔══██╗██║     ██║  ██║╚═╝
       ██║  ██║███████╗███████╗███████╗╚██████╔╝    ╚███╔███╔╝╚██████╔╝██║  ██║███████╗██████╔╝██╗
       ╚═╝  ╚═╝╚══════╝╚══════╝╚══════╝ ╚═════╝      ╚══╝╚══╝  ╚═════╝ ╚═╝  ╚═╝╚══════╝╚═════╝ ╚═╝
        )" << std::endl;
        
        username = "sirmilann";
        language = "English";
        coding_languages = "C++";
        location = "United Kingdom";
        donateXMR = "44Q5UNcp3LR4SRZm3fymYeDZETwc6aTynLGnkBgLMTw7a3Nkjambq3WGbqFHLA7gc8D1mVJ6ji7tUeKbKVi9KirJQ3n4964";
    }

    void about() override {
        std::cout << "Hi, I'm " << username << ". I'm just a guy who codes." << std::endl;
    }

private:
    std::string username;
    std::string language;
    std::string discord;
    std::string coding_languages;
    std::string location;
    std::string donateXMR;
};

int main() {
    sirmilann me;
    me.about();
    return 0;
}

Pinned

  1. Stealthify-2.0 Stealthify-2.0 Public

    An efficient Python script to obfuscate code by renaming identifiers.

    Python 7