Skip to content
View TheGameratorT's full-sized avatar
πŸ˜‰
You are really that interested?!
πŸ˜‰
You are really that interested?!

Highlights

  • Pro

Block or report TheGameratorT

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

Hello there! πŸ˜„

My name is Tiago Silva

I am a hobbist programmer that likes to code just because I usually have nothing to do or want to make something useful to help others.

Discord: @thegameratort



A snippet of code for you to try out. πŸ˜‰

#include <iostream>
#include <cstring>

static const char* input = "XQXQ,&),Ve^Y,^e]RUb,Rbbbbb";

int main() {
    size_t input_size = strlen(input);
    char* output = new char[input_size];
    for (size_t i = 0; i < input_size; i++) {
        char c = input[i];
        if (c == 0x2C) {
            output[i] = static_cast<char>(0x20);
        } else {
            output[i] = static_cast<char>(c + 0x10);
        }
    }
    std::cout << output;
    delete[] output;
    return 0;
}

What are you doing here!!!???? 😳😳😳

Popular repositories Loading

  1. NDS_Banner_Editor NDS_Banner_Editor Public

    A tool to make animated Nintendo DS banners.

    C++ 22 2

  2. NCPatcher NCPatcher Public

    A universal Nintendo DS code maker/patcher.

    C++ 21 1

  3. NitroModel_ConverterGUI NitroModel_ConverterGUI Public

    Makes ass2imd and imd2nsbmd easier to use. Also includes extra features.

    C++ 8 2

  4. NitroWAV-Tool NitroWAV-Tool Public

    A tool that allows to convert WAV and RAW audio files to NitroWAV format.

    C++ 8

  5. NitroWAV-Player NitroWAV-Player Public

    Allows streamed music to be played on a DS.

    C 7 2

  6. McTitleFixer McTitleFixer Public

    Makes the Minecraft title fit the screen at all times.

    Java 5