https://github.com/csm-bluered/csm-bluered
https://github.com/csm-bluered/csm-bluered
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/csm-bluered/csm-bluered
- Owner: CSM-BlueRed
- Created: 2023-01-15T14:14:36.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-23T11:26:48.000Z (almost 3 years ago)
- Last Synced: 2025-03-12T17:17:54.671Z (over 1 year ago)
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

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.

```ts
type UserInfo = {
name: string,
age: number
};
type UserSocials = {
TikTok: string,
Discord: string,
GitHub: string
};
```
```py
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',
}
```
```cs
UserInfo info = BlueRed.get_info();
UserSocials socials = BlueRed.get_socials();
Console.WriteLine(info);
Console.WriteLine("----- socials -----");
Console.WriteLine(socials);
```