├── .gitignore ├── BHUSA2023_Presentation ├── BHUSA2023_From_Dead_Data_To_Digestion.pdf └── README.md ├── LICENSE ├── README.md ├── weetabix.sln └── weetabix ├── json.hpp ├── weetabix.cpp ├── weetabix.h ├── weetabix.vcxproj └── weetabix.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanielDary/weetabix/HEAD/.gitignore -------------------------------------------------------------------------------- /BHUSA2023_Presentation/BHUSA2023_From_Dead_Data_To_Digestion.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanielDary/weetabix/HEAD/BHUSA2023_Presentation/BHUSA2023_From_Dead_Data_To_Digestion.pdf -------------------------------------------------------------------------------- /BHUSA2023_Presentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanielDary/weetabix/HEAD/BHUSA2023_Presentation/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanielDary/weetabix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanielDary/weetabix/HEAD/README.md -------------------------------------------------------------------------------- /weetabix.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanielDary/weetabix/HEAD/weetabix.sln -------------------------------------------------------------------------------- /weetabix/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanielDary/weetabix/HEAD/weetabix/json.hpp -------------------------------------------------------------------------------- /weetabix/weetabix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanielDary/weetabix/HEAD/weetabix/weetabix.cpp -------------------------------------------------------------------------------- /weetabix/weetabix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanielDary/weetabix/HEAD/weetabix/weetabix.h -------------------------------------------------------------------------------- /weetabix/weetabix.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanielDary/weetabix/HEAD/weetabix/weetabix.vcxproj -------------------------------------------------------------------------------- /weetabix/weetabix.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanielDary/weetabix/HEAD/weetabix/weetabix.vcxproj.filters --------------------------------------------------------------------------------