create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| # | |
| # The MySQL database server configuration file. | |
| # | |
| # You can copy this to one of: | |
| # - "/etc/mysql/my.cnf" to set global options, | |
| # - "~/.my.cnf" to set user-specific options. | |
| # | |
| # One can use all long options that the program supports. | |
| # Run program with --help to get a list of available options and with | |
| # --print-defaults to see which it would actually understand and use. |
| <?php | |
| /** | |
| * | |
| * M2 Bootstrap Sample File | |
| * | |
| */ | |
| ini_set('display_errors', 1); | |
| error_reporting(E_ALL); | |
| require __DIR__ . '/../app/bootstrap.php'; |
| DELETE FROM ps_search_index | |
| WHERE id_product not in (select id_product from ps_product); | |
| DELETE FROM ps_search_word | |
| WHERE id_word not in (select id_word from ps_search_index); | |
| OPTIMIZE TABLE ps_search_index; | |
| OPTIMIZE TABLE ps_search_word; |
First, Download the focal x86_64 version from Redis download page
Then:
$ sudo tar -xzvf *.tar.gz -C /opt/
$ sudo ln -fs /opt/redis-stack-server-7.2.0-v6/bin/* /bin
Endmost:
$ ls /usr/lib/libssl*
| <?php | |
| header('Content-type: text/html; charset=utf-8'); | |
| // header('Content-type: text/plain; charset=utf-8'); | |
| ini_set('display_errors', 1); | |
| ini_set('track_errors', 1); | |
| ini_set('html_errors', 1); | |
| ini_set('realpath_cache_size', '5M'); | |
| ini_set('max_execution_time', 9999999900000); |
| ## Miscellaneous Shell Alias | |
| alias df='df -h' | |
| alias du='du -hs ./* | sort -hr' | |
| alias duu='sudo du -Pshx /* 2>/dev/null' | |
| alias free='free -m' | |
| alias htop="sudo htop" | |
| alias grep="grep --color" | |
| alias history="history -E -10000" | |
| alias sys="sudo systemctl --no-pager" | |
| alias ch="sed -i '/: /!d' ~/.zhistory" |
| expiration_password=$(passwd -S $USER | awk '{print $3}') | |
| expiration_password_unix=$(date -d "$expiration_password" +%s) | |
| date_actuelle=$(date +%s) | |
| diff=$((date_actuelle - expiration_password_unix)) | |
| if [ $diff -gt 2592000 ]; then | |
| echo "\e[36m\e[5m Password too old. Update it with $ passwd \${whoami}.\e[0m" | bat --style grid | |
| fi | |
| w | awk 'NR>2' | bat --style grid |
First:
$ pamac install cmake
Then:
$ cd ~/Download
$ wget https://www.piumarta.com/software/peg/peg-0.1.18.tar.gz
$ sudo tar -xzvf *.tar.gz