# Setup the service
curl -sSL https://gist.githubusercontent.com/zhongzichang/e340bf66a7c65c2defabdf92193b7743/raw/autossh@.service | \
sudo tee /etc/systemd/system/autossh@.service
sudo useradd -g nogroup -s /bin/false -m autossh
sudo -u autossh mkdir -p /home/autossh/.ssh # and copy your private key here
sudo -u autossh ssh-keygen -t ed25519 # Generate a new private key
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
| function debounce(fn, ms) { | |
| let timer | |
| return _ => { | |
| clearTimeout(timer) | |
| timer = setTimeout(_ => { | |
| timer = null | |
| fn.apply(this, arguments) | |
| }, ms) | |
| }; | |
| } |
2019-06-03
Note that Office2019 DO NOT support activate via simple copy/paste plist license file which is the simplest way to activate Office 2016. Fortunately, you can also use the VL Serializer tool, just install Office 2019 and Serializer, then run Serializer to activate.
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
| (GMT-12:00) Etc/GMT+12 | |
| (GMT-11:00) Etc/GMT+11 | |
| (GMT-11:00) Pacific/Midway | |
| (GMT-11:00) Pacific/Niue | |
| (GMT-11:00) Pacific/Pago_Pago | |
| (GMT-11:00) Pacific/Samoa | |
| (GMT-11:00) US/Samoa | |
| (GMT-10:00) America/Adak | |
| (GMT-10:00) America/Atka | |
| (GMT-10:00) Etc/GMT+10 |
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
| STR = BASIC_STR + (LV - 1) * GU_STR + EQ_STR_SUM | |
| INT = BASIC_STR + (LV - 1) * GU_INT + EQ_INT_SUM | |
| DEX = BASIC_DEX + (LV - 1) * GU_DEX + EQ_DEX_SUM | |
| HP = BASIC_HP + (STR - BASIC_STR) * 18 + EQ_HP_SUM | |
| PA = BASIC_PA + (STR - BASIC_STR) + (DEX - BASIC_DEX) * 0.4 + EQ_PA_SUM | |
| PA = BASIC_PA + (INT - BASIC_INT) + (DEX - BASIC_DEX) * 0.4 + EQ_PA_SUM | |
| PA = BASIC_PA + (DEX - BASIC_DEX) + (DEX - BASIC_DEX) * 0.4 + EQ_PA_SUM | |
| MA = BASIC_MA + (INT - BASIC_INT) * 2.4 + EQ_MA_SUM | |
| PD = BASIC_PD + (STR - BASIC_STR) / 7 + (DEX - BASIC_DEX) / 14 + EQ_PD_SUM | |
| MD = BASIC_MD + (INT - BASIC_INT) / 10 + EQ_MD_SUM |
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
| # 一 新建代码库 | |
| git init # 在当前目录新建一个Git代码库 | |
| git init [project-name] # 新建一个目录,将其初始化为Git代码库 | |
| git clone [url] # 下载一个项目和它的整个代码历史 | |
| # 二 配置 | |
| git config --list | |
| git config -e [--global] | |
| git config [--global] user.name "xxx" # 配置用户名 | |
| git config [--global] user.email "xxx@xxx.com" # 配置邮件 |