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
g_LastCtrlKeyDownTime := 0 | |
g_AbortSendEsc := false | |
g_ControlRepeatDetected := false | |
*CapsLock:: | |
if (g_ControlRepeatDetected) | |
{ | |
return | |
} |
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
{ | |
"+__ruleListOf_auto switch": { | |
"name": "__ruleListOf_auto switch", | |
"defaultProfileName": "direct", | |
"profileType": "RuleListProfile", | |
"color": "#99dd99", | |
"format": "AutoProxy", | |
"matchProfileName": "proxy", | |
"revision": "198e6e604a0", | |
"sourceUrl": "https://hub.zed.ink:8443/api/domain/b64" |
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
Host 10.10.10.10 | |
HostName 10.10.10.10 | |
User root | |
ForwardAgent yes | |
Port 33 | |
Host naizi.fun | |
HostName naizi.fun | |
User root | |
ForwardAgent yes |
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
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Software\Microsoft\InputMethod\Settings\CHS] | |
"Enable Cloud Candidate"=dword:00000000 | |
"Enable Dynamic Candidate Ranking"=dword:00000001 | |
"EnableExtraDomainType"=dword:00000001 | |
"Enable self-learning"=dword:00000001 | |
"EnableSmartSelfLearning"=dword:00000001 | |
"EnableLiveSticker"=dword:00000000 | |
"Enable EUDP"=dword:00000001 |
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
If (-NOT ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { | |
$arguments = "& '" + $myinvocation.mycommand.definition + "'" | |
Start-Process powershell -Verb runAs -ArgumentList $arguments | |
Break | |
} | |
$remoteport = bash.exe -c "ifconfig eth0 | grep 'inet '" | |
$found = $remoteport -match '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}'; | |
if ($found) { |