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
Netblock Description | |
0.0.0.0/8 "This" network | |
10.0.0.0/8 Private-use networks | |
100.64.0.0/10 Carrier-grade NAT | |
127.0.0.0/8 Loopback | |
127.0.53.53 Name collision occurrence | |
169.254.0.0/16 Link local | |
172.16.0.0/12 Private-use networks | |
192.0.0.0/24 IETF protocol assignments | |
192.0.2.0/24 TEST-NET-1 |
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
awk 'BEGIN{ | |
s="/\\/\\/\\/\\/\\"; s=s s s s s s s s; | |
for (colnum = 0; colnum<77; colnum++) { | |
r = 255-(colnum*255/76); | |
g = (colnum*510/76); | |
b = (colnum*255/76); | |
if (g>255) g = 510-g; | |
printf "\033[48;2;%d;%d;%dm", r,g,b; | |
printf "\033[38;2;%d;%d;%dm", 255-r,255-g,255-b; |
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
{ | |
"log-driver": "json-file", | |
"log-opts": { | |
"max-size": "90m", | |
"max-file": "9" | |
} | |
} |
OlderNewer