https://github.com/username/repo/compare/branch...[username:repo:]branch
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 ( | |
"context" | |
"fmt" | |
"math/rand" | |
"time" | |
"github.com/IBM/sarama" | |
"github.com/pingcap/log" |
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
# batch kill process | |
ps aux | grep * | awk '{print $2}' | xargs kill -9 | |
# remove tensorboard files | |
find ./log -type f -size -1k -exec rm -r {} + && find ./log -empty -exec rm -r {} + |