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
cmake -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON . | |
make |
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
1) Command to update API symbols in util/libcrypto.num file | |
perl "-I." util/mkdef.pl crypto update |
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
1. Main Function | |
if __name__ == "__main__": | |
2. CLI arg count | |
len(sys.argv) | |
2.1 CLI args | |
sys.arg[0] | |
sys.arg[1] |
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
To Setup | |
sudo apt install hplip | |
sudo hp-setup -i | |
To scan and get soft copy | |
hp-scan |
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
grep -E "colou?r" * -R | |
- Matches both "colour" and "color" |
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
1) Git SSH configuation | |
Generate RSA key pair | |
- ssh-keygen -t rsa -b 4096 -C "[email protected]" | |
- This generates 2 file, id_rsa and id_rsa.pub in ~/.ssh directory. | |
- Copy the content of id_rsa.pub and configure in the git settings under the account details. | |
Then after opening terminal, always execute below 2 command to load the RSA private key (id_rsa). | |
After loading, all git commands can be executed without entering credentials every time. | |
- eval $(ssh-agent -s) | |
- ssh-add ~/.ssh/id_rsa |
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
for loop | |
count=5 | |
for i in $(seq $count); do | |
echo $i | |
done |
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
parse_git_branch() { | |
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' | |
} | |
netns_name() { | |
str=`ip netns identify $$` | |
[[ "$str" != "" ]] && echo "\033[1;35m[$str]\033[0m " && return | |
} | |
export PS1="\u@\h\[\033[32m\]\w\[\033[33m\]\$(parse_git_branch)\[\033[00m\]\n$ " | |
eval $(ssh-agent -s) |
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/bash | |
CSCOPE_DIR="$PWD/cscope" | |
echo_usage() | |
{ | |
echo "Usage: $0 gen|reset [folder]" | |
exit -1 | |
} |
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
tc qdisc add dev <interface_name> root netem delay 120ms | |
tc qdisc delete dev <interface_name> root netem | |
tc qdisc add dev <interface_name> root netem loss 2% |
NewerOlder