This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# - imports should only be in the format of "import <module> as <alias>", | |
# if you do not want an alias, do "import stuff as stuff" | |
# - imports should only be in the top level scope | |
import os | |
import re | |
curr_dir_path = os.path.dirname(__file__) | |
main_path = os.path.join(curr_dir_path, "main.py") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <vector> | |
#include <string> | |
#include <fstream> | |
#include <stb/image_write.hpp> | |
#include <stb/truetype.hpp> | |
#include <cmath> | |
#include <map> | |
#include <fmt/core.h> |