(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| %% @author Tom Burdick <tburdick@wrightwoodtech.com> | |
| %% @doc Data Validation. | |
| -module(data_validation). | |
| %% api | |
| -export([parse/1, validate/2, has_errors/1, errors/1, values/1]). | |
| -ifdef(TEST). | |
| -include_lib("eunit/include/eunit.hrl"). |
| -module(sortlib). | |
| -export([qsort/1, bsort/1, ssort/1, isort/1, msort/2, | |
| msort_lte/1, msort_gte/1]). | |
| -export([test_sort/0, test_sort/1, shuffle/1, split/1, merge/3]). | |
| -import(lists, [reverse/1]). | |
| %% Various sorting algorithms implemented in Erlang |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <unistd.h> | |
| #include <errno.h> | |
| #include <string.h> | |
| #include <fcntl.h> | |
| #include <signal.h> | |
| #include <sys/types.h> | |
| #include <sys/socket.h> | |
| #include <netinet/in.h> |
| /* | |
| ##Device = Desktops | |
| ##Screen = 1281px to higher resolution desktops | |
| */ | |
| @media (min-width: 1281px) { | |
| /* CSS */ | |
References
### 0. Special Characters (more info: http://tldp.org/LDP/abs/html/special-chars.html)
# This is a comment| #!/usr/bin/env sh | |
| # Example: ./download_minio.sh example.url.com username password bucket-name minio/path/to/file.txt.zst /download/path/to/file.txt.zst | |
| if [ -z $1 ]; then | |
| echo "You have NOT specified a MINIO URL!" | |
| exit 1 | |
| fi | |
| if [ -z $2 ]; then |