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
SendMode Input | |
ConfirmToSignOut() { | |
MsgBox 0x40034, Confirm, Are you sure you want to quit all applications and log out now?`n`nIf you do nothing`, you will be logged out automatically in 60 seconds., 60 | |
IfMsgBox Yes | |
DllCall("ExitWindowsEx") | |
IfMsgBox Timeout | |
DllCall("ExitWindowsEx") | |
} |
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
def solution(s): | |
if not s: return 0 | |
result = 1 | |
min_divisor = 2 | |
while True: | |
length = len(s) | |
factor = 1 | |
# loop in a preprocessed prime number list can improve performance | |
for n in range(min_divisor, length + 1): |
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_LOCAL_MACHINE\SOFTWARE\Classes\Directory\background\shell\AnyCode] | |
@="@C:\\Program Files (x86)\\Common Files\\Microsoft Shared\\MSEnv\\1033\\VSLauncherUI.dll,-1002" | |
"Icon"="C:\\Program Files (x86)\\Common Files\\Microsoft Shared\\MSEnv\\VSLauncher.exe,-105" | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\background\shell\AnyCode\command] | |
@="\"C:\\Program Files (x86)\\Common Files\\Microsoft Shared\\MSEnv\\VSLauncher.exe\" \"%V\" source:ExplorerBackground" | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shell\AnyCode] |
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
SendMode Input | |
ConfirmToSignOut() { | |
MsgBox 0x40034, Confirm, Are you sure you want to quit all applications and log out now?`n`nIf you do nothing`, you will be logged out automatically in 60 seconds., 60 | |
IfMsgBox Yes | |
DllCall("ExitWindowsEx") | |
IfMsgBox Timeout | |
DllCall("ExitWindowsEx") | |
} |
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
{ | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"$ref": "#/definitions/ConfigObject", | |
"$comment": "Work in progress, Updated at 2021-04-29 for Xray-core v1.4.2", | |
"definitions": { | |
"ConfigObject": { | |
"title": "Xray 配置", | |
"type": "object", | |
"additionalProperties": false, | |
"properties": { |