# Enable character repeat on keydown
defaults write -g ApplePressAndHoldEnabled -bool false
# Set a shorter Delay until key repeat
defaults write NSGlobalDomain InitialKeyRepeat -int 12
# Set a blazingly fast keyboard repeat rate
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
--- | |
riskControls: | |
sessionBased: | |
ftx: | |
orderExecutor: | |
bySymbol: | |
XRPUSDT: | |
# basic risk control order executor | |
basic: | |
minQuoteBalance: 100.0 |
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
I am attesting that this GitHub handle kvzhuang is linked to the Tezos account tz1S5VSHj3AthSBhWeJBWGfooUC5kxF219Cq for tzprofiles | |
sig:edsigtjucapJZayhFweozDbg5PGQVzbeeMSCZ25L44H1S6wjiuUxF5dPizs2f7aNc44kGo2Jop7hctcuVtJz8Q3p4E7JeFH7jMn |
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
/** | |
* Slack App Setting | |
* Enable Socket Mode | |
* Enable Event Subscriptions | |
* OAuth & Permissions: app_mentions:read, chat:write | |
* @slack/bolt requires at least NodeJs version 12.13.0 | |
*/ | |
const { App } = require('@slack/bolt'); | |
const request = require('request'); | |
const OPENAI_API_KEY = process.env.OPENAI_API_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
/** | |
* Slack App Setting | |
* Enable Socket Mode | |
* Enable Event Subscriptions | |
* OAuth & Permissions: app_mentions:read, chat:write | |
* @slack/bolt requires at least NodeJs version 12.13.0 | |
*/ | |
const { App } = require('@slack/bolt'); | |
const request = require('request'); | |
const OPENAI_API_KEY = process.env.OPENAI_API_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
#!/bin/bash | |
# 取得 commit message 的檔案路徑 | |
COMMIT_MSG_FILE=$1 | |
# 如果是 cherry-pick,直接退出,保留原有的 commit message | |
if [[ "$(git rev-parse --verify -q CHERRY_PICK_HEAD)" ]]; then | |
echo "檢測到 cherry-pick 操作,跳過自動生成 commit message" | |
exit 0 | |
fi |
OlderNewer