This file contains 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
#ifndef DECODER_HPP_ | |
#define DECODER_HPP_ | |
#include "streambuf.hpp" | |
#include "client_messages.hpp" | |
class Decoder { | |
public: | |
Decoder(size_t capacity) |
This file contains 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
import os | |
import sys | |
import argparse | |
from glob import glob | |
from itertools import chain | |
import fontforge | |
ADDITIONAL_LIGATURES = [ | |
'x.multiply', |
This file contains 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
import os | |
import sys | |
from array import array | |
from socket import (socket, AF_UNIX, SOCK_SEQPACKET, | |
CMSG_LEN, SOL_SOCKET, SCM_RIGHTS) | |
from errno import EADDRINUSE | |
from asyncio import ( | |
Future, Task, AbstractEventLoop, | |
get_running_loop as _get_running_loop, set_event_loop, |