Vim Cheat Sheet
Source: https://vim.rtorr.com/lang/zh_cn/ 全局 :help keyword – 打开关键字帮助 😮 file – 打开文件 :saveas file – 另存为 :close – 关闭当前窗口 K – open man page for word under the cursor 光标 h… Read more »
Source: https://vim.rtorr.com/lang/zh_cn/ 全局 :help keyword – 打开关键字帮助 😮 file – 打开文件 :saveas file – 另存为 :close – 关闭当前窗口 K – open man page for word under the cursor 光标 h… Read more »
MySQL JDBC for Linux
https://www.mathworks.com/help/database/ug/mysql-jdbc-linux.html
On the Slave, run STOP SLAVE;
On the Master run these:
FLUSH TABLES WITH READ LOCK;
1. Remove the empty comment box Add two lines. Ribosome: comments.php Line 6 and Line 16. <?php if ( post_password_required() ) return; ?> + <?php if ( comments_open() || get_comments_number()… Read more »
Apache Forward Proxy Enable modules proxy proxy_http proxy_connect Proxy does not require password <Proxy *> Order deny,allow Allow from all </Proxy> ProxyRequests On ProxyVia On Proxy requires password ProxyRequests On… Read more »
It takes me quite some time to figure out how to successfully setup the Office Online Server (OOS). But, what is OOS? It is essentially a backend server that process… Read more »
Export SSL certificate to .pfx from .pem for use in IIS openssl pkcs12 -export -out “certificate.pfx” -inkey “privkey.pem” -in “cert.pem” -certfile chain.pem
A sample shell script #!/bin/bash NOW=$(date +”%m-%d-%Y”) FILE=”backup.$NOW.tar.gz” echo “Backing up data to /nas42/backup.$NOW.tar.gz file, please wait…” # rest of script # tar xcvf /nas42/backup.$NOW.tar.gz /home/ /etc/ /var A complete… Read more »