start new:
tmux
start new with session name:
tmux new -s myname
| <?xml version="1.0"?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <fontconfig> | |
| <!-- | |
| Documented at | |
| http://linux.die.net/man/5/fonts-conf | |
| To check font mapping run the command at terminal | |
| $ fc-match 'helvetica Neue' |
| // Simple example of client. | |
| // Client prints received messages to stdout and sends from stdin. | |
| #include <errno.h> | |
| #include <fcntl.h> | |
| #include <stdio.h> | |
| #include <signal.h> | |
| #include <unistd.h> | |
| #include <sys/select.h> | |
| #include <netinet/in.h> |
| #!/usr/bin/env python | |
| """Aliases for argparse positional arguments.""" | |
| import argparse | |
| class AliasedSubParsersAction(argparse._SubParsersAction): | |
| class _AliasedPseudoAction(argparse.Action): | |
| def __init__(self, name, aliases, help): |