Skip to content
View CSM-BlueRed's full-sized avatar
๐Ÿ†
DM me to collaborate!
๐Ÿ†
DM me to collaborate!
Block or Report

Block or report CSM-BlueRed

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

Hello, I'm BlueRed ๐Ÿ‘‹

Hello, I'm BlueRed, I am a young Fullstack developer, I am currently learning the C# programming language to lean reverse engineering. My principals languages are Python, TypeScript, and JavaScript. I made alot of projetcts, like PyStyle, Harmony, Impostor, TSA, Hyperion, ByteH, and more, but 90% of them are not on GitHub. If you want to contact me, You can via my socials. I made a programming language based on Bytecode-like syntax.

type UserInfo = {
    name: string,
    age: number
};

type UserSocials = {
    TikTok: string,
    Discord: string,
    GitHub: string
};
import typing
from datetime import datetime

class BlueRed:

    @classmethod
    def get_info(cls) -> UserInfo:
        return {
            'name': cls.__name__,
            'age': datetime.now().year - 2009
        }

    @staticmethod
    def get_socials() -> UserSocials:
        return {
            'TikTok' : 'https://tiktok.com/@bluered.pyx',
            'Discord': 'https://discord.com/users/1093599815599935568',
            'GitHub' : 'https://github.com/CSM-BlueRed',
        }
UserInfo info = BlueRed.get_info();
UserSocials socials = BlueRed.get_socials();

Console.WriteLine(info);
Console.WriteLine("----- socials -----");
Console.WriteLine(socials);

Pinned

  1. OneCube OneCube Public

    A Python module to to handle the OneCube website API with or without authentification

    Python 10 2