Table of Contents
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
version: '2' | |
services: | |
zookeeper: | |
image: confluentinc/cp-zookeeper:3.3.0 | |
hostname: zookeeper | |
ports: | |
- "2181:2181" | |
environment: | |
ZOOKEEPER_CLIENT_PORT: 2181 |
https://projectlombok.org/api/lombok/CustomLog.html https://projectlombok.org/features/log
lombok.log.fieldName = an identifier (default: 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
# split [option] [input [prefix]] | |
$ split --bytes=15G Downloads.tar.gz Downloads.tar.gz_ | |
# cat [option] [file]... | |
$ cat WinXP_img_* > WinXP.img |
This gist contains lists of resources about JS, Mobile, Architecture/DevOps and Cloud Native. Each gist has a list
of technologies that you can do POC and CODE practice, also with a list of useful books and links.
- Create a github repository called sandbox- where track is: js,ArchDevOps,CN or Mobile.
wget https://github.com/patric-r/jvmtop/releases/download/0.8.0/jvmtop-0.8.0.tar.gz
tar -xzvf jvmtop-0.8.0.tar.gz
rm -rf jvmtop-0.8.0.tar.gz
chmod +x jvmtop.sh
./jvmtop.sh
More on: https://github.com/patric-r/jvmtop
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
#!/bin/sh | |
if [ "$1" = "" ] | |
then | |
echo "usage: $0 [AccountID1] ( [AccountID2] [AccountID3] ...)" | |
exit | |
fi | |
for account in $* | |
do | |
echo accountid: $account |
NewerOlder