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);