Encryption
openssl aes-256-cbc -in attack-plan.txt -out message.encDecryption:
openssl aes-256-cbc -d -in message.enc -out plain-text.txt| function makee() { | |
| make $@ 2>&1 | grep -v AVERTISSEMENT | |
| } |
cat /proc/cpuinfoGet number of cores
grep "cpu cores" /proc/cpuinfoGet cpu topology
I hereby claim:
To claim this, I am signing this object:
| echo $(git rev-list --all --count).$(git rev-parse --short HEAD)$([[ -z "$(git status --porcelain --untracked-files=no)" ]] || echo "+") |
| start=$(date +%s%3N) | |
| sleep 42 | |
| end=$(date +%s%3N) | |
| echo done in $((end-start))ms |
| function expand_home() { | |
| echo "${1/#\~/$HOME}" | |
| } |
| # Show all hosts in lan | |
| arp -n | |
| # Show hostname | |
| nslookup xxx.xxx.xxx.xxx |
| async function call(method, path, body) { | |
| const response = await fetch(apiRoot + path, { | |
| method, | |
| body | |
| }) | |
| return response | |
| } |
| # in gitlab Settings > CI/CD > General pipelines > Test coverage parsing | |
| /Coverage: (\d+\.\d+)% \(\d+\/\d+\)/ |