Skip to content
View Sentiax's full-sized avatar
👋
Welcome!
👋
Welcome!

Organizations

@CPUD-S @Twiz-lol

Block or report Sentiax

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

Typing SVG

#include <iostream>
#include <string>
#include <vector>
#include <map>

class AboutMe {
public:
    std::string name;
    std::vector<std::string> aliases;
    std::string discord;
    std::map<std::string, std::string> projects;

    AboutMe() {
        name = "Ömer";
        aliases = {"Sentiax", "isw_", "Astro","Rcynx"};
        discord = "hbyq";
        projects = {
            {"Twiz.lol", "A bio-link site for sharing social links."},
            {"SGuard", "A upcoming tool that protects sites from bots, DDoS, and hackers."}
        };
    }
};

int main() {
    AboutMe aboutMe;
    std::cout << "Name: " << aboutMe.name << std::endl;
    std::cout << "Aliases: ";
    for (const auto& alias : aboutMe.aliases) {
        std::cout << alias << " ";
    }
    std::cout << std::endl;
    std::cout << "Discord: " << aboutMe.discord << std::endl;
    std::cout << "Projects:" << std::endl;
    for (const auto& project : aboutMe.projects) {
        std::cout << "  " << project.first << ": " << project.second << std::endl;
    }

    return 0;
}

Pinned Loading

  1. is-electron-expressjs is-electron-expressjs Public

  2. Twiz-lol/twiz_oauth2 Twiz-lol/twiz_oauth2 Public

    Twiz_Oauth2