Is pico-8 capable of sending http requests? For example if I successfully win a game or complete a level can the game then send a POST request to a REST api to update my profile with a high score or something?
Not directly, but you could printh() to a file which gets POSTed by some other application upon change
What do you think?