This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>KeepAlive</key> | |
<true/> | |
<key>Label</key> | |
<string>tailscale</string> | |
<key>LimitLoadToSessionType</key> | |
<array> |
This file contains 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
{ | |
"info": { | |
"_postman_id": "b452c872-707a-42fb-9e1b-c8520c4e0a19", | |
"name": "Giffgaff", | |
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", | |
"_exporter_id": "2203562" | |
}, | |
"item": [ | |
{ | |
"name": "發送認證郵件 Send Email Verification", |
This file contains 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 | |
sudo mv /etc/network/interfaces /etc/network/interfaces.save | |
sudo sh -c "echo '[Match] | |
Name=enp0s3 | |
[Network] | |
DHCP=yes' >> /etc/systemd/network/z.network" |
This file contains 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
{ | |
"*.go": { | |
"alternate": "{}_test.go" | |
}, | |
"*_test.go": { | |
"alternate": "{gotest}.go" | |
}, | |
"go.mod": { | |
"type": "lib", | |
"alternate": "go.sum", |
This file contains 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
on run {input, parameters} | |
-- If run without input, open random file at $HOME | |
try | |
set filename to POSIX path of input | |
on error | |
set filename to "vim-" & (do shell script "date +%F") & "__" & (random number from 1000 to 9999) & ".txt" | |
end try | |
-- Set your editor here | |
set myEditor to "${EDITOR:-vim}" | |
-- Open the file and auto exit after done |
This file contains 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 info() { echo -e "\033[32m[info] $*\033[0m"; } | |
function warn() { echo -e "\033[33m[warn] $*\033[0m"; } | |
function error() { | |
echo -e "\033[31m[error] $*\033[0m" | |
exit 1 | |
} | |
check_sys() { | |
OS=$(uname -s) | |
if [ "${OS}" == "Darwin" ]; then |
This file contains 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
# 基础引擎框架配置,patch 会更新 default.yaml 文件 | |
patch: | |
schema_list: | |
- schema: double_pinyin_flypy | |
- schema: luna_pinyin_simp | |
switcher/hotkeys: | |
# 切换选项菜单的快捷键 | |
- "Alt+Shift+grave" | |
- "Control+grave" |