This file contains hidden or 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
| alias dcp='docker-compose -f /opt/docker-compose.yml ' | |
| alias dcpull='docker-compose -f /opt/docker-compose.yml pull --parallel' | |
| alias dcplogs='docker-compose -f /opt/docker-compose.yml logs -tf --tail="50" ' | |
| alias df='df -h -x aufs -x tmpfs -x udev' | |
| alias editle='sudo vi /opt/appdata/letsencrypt/nginx/site-confs/default' |
This file contains hidden or 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
| package main | |
| // The string values of the 2 classes | |
| // They can be "positive" >< "negative" as in this example | |
| // They can also be "ham" >< "spam", i.e. | |
| const ( | |
| positive = "positive" | |
| negative = "negative" | |
| ) |
This file contains hidden or 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
| #include <stdint.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| // munged from https://github.com/simontime/Resead | |
| namespace sead | |
| { | |
| class Random | |
| { |
This file contains hidden or 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
| package main | |
| import ( | |
| "bytes" | |
| "context" | |
| "crypto/tls" | |
| "errors" | |
| "fmt" | |
| "io/ioutil" | |
| "log" |
OlderNewer