Skip to content

Instantly share code, notes, and snippets.

View yannis300307's full-sized avatar
๐Ÿ–ฅ๏ธ
Coding a computer program using programing langage

Yannis yannis300307

๐Ÿ–ฅ๏ธ
Coding a computer program using programing langage
View GitHub Profile
@yannis300307
yannis300307 / Numworks-apps.md
Last active October 1, 2025 11:08
A list of Numworks third party apps that run on Epsilon

Third party apps that run natively on Numworks OS

Emulators:

Visual Demos:

@yannis300307
yannis300307 / vdf_parser.gd
Last active March 21, 2025 14:41
A Valve Data Format (VDF) parser made with GDScript to use in Godot
class_name VdfParser
enum ParsingError {
SUCCESS = 0,
UNMATCHING_QUOTES = 1,
UNRECONISED_TOKEN = 2,
UNMATCHING_BRACKETS = 3,
}
# A recursive basic and unsafe parser of Valve Data Format (VDF) made from my understanding of it