Skip to content
View N1kO23's full-sized avatar
throw new UnsupportedOperationException();
throw new UnsupportedOperationException();

Block or report N1kO23

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

class IUser {
public:
    virtual ~IUser() = default; 
};

class User : public IUser {
public:
    std::string name = "Niko";
    std::vector<std::string> aliases = { "N1kO23", "NullPointr" };
    std::vector<std::string> pronouns = { "he", "him" };
    std::vector<std::string> fav_theme = { "Material Ocean", "SynthWave '84" };
    std::string line_ends = "lf";
    std::string code_style = "prettier";
    std::string variables = "snake_case";
    std::vector<std::string> editors = { "VSCode", "vim" };
};

int main() {
    User niko;
    std::cout << "Hello, I am" << niko.name << "!\n";
    return 0;
}

Pinned Loading

  1. microsoft/vscode microsoft/vscode Public

    Visual Studio Code

    TypeScript 188k 41.3k

  2. WinTaskMan WinTaskMan Public

    WIP: Qt6 based program trying recreate the iconic WinXP/Vista/7 task manager

    C++ 4