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
  • Here, France, European Union, Europa, Earth, rocky planets, Solar System, Local interstellar cloud, Local Bubble, Arm of Orion, Milky Way, Local Group, Virgo Supercluster, Laniakea, Observable Universe, Universe, Multiverse, Multiverse Universal Space
View GitHub Profile
@yannis300307
yannis300307 / Numworks-apps.md
Last active April 12, 2025 08:34
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