websocket connetion to wss:/ws/
everything is sent as serialized json objects
{"t":"Au":"users":{$all_users_serialized},"groups":{$all_groups_serialized}}
this should be the first thing that's received upon connecting
#!/bin/python | |
import re | |
remappings = { | |
'\U0001F600': 'GRINNING FACE', | |
'\U0001F601': 'GRINNING FACE WITH SMILING EYES', | |
# and many more | |
} | |
def repl(m): |
#include <vector> | |
int main(int argc, char*argv[]) { | |
auto a = std::vector<std::vector<int>> ({ | |
std::vector<int>({1,2,3}), | |
std::vector<int>({4,5,6}), | |
std::vector<int>({7,8,9}), | |
}); | |
auto b = std::vector<std::vector<int>> (3, std::vector<int>(3)); | |
return 0; |