Skip to content

Instantly share code, notes, and snippets.

View rrcgat's full-sized avatar

Carl Weaver rrcgat

View GitHub Profile
;==================================================
;** 快捷键 Win+ESC 使当前窗口置顶/取消置顶
;==================================================
#Esc::
WinSet, AlwaysOnTop, toggle,A
WinGetTitle, getTitle, A
Winget, getTop,ExStyle,A
if (getTop & 0x8)
TrayTip 已置顶, 窗口标题: `n%getTitle%,10,1
else
@rrcgat
rrcgat / cloudSettings
Last active December 4, 2021 13:27
Visual Studio Code extensions
{"lastUpload":"2021-12-04T13:27:23.188Z","extensionVersion":"v3.4.3"}
pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install --user
pip install jupyter_nbextensions_configurator
jupyter nbextensions_configurator enable --user
@rrcgat
rrcgat / format_text.py
Created March 12, 2023 15:28
Format input (include pipeline, clipboard and arguments) text to improve its readability, with a focus on Chinese text.
#!/usr/bin/env python
"""
Format input (include pipeline, clipboard and arguments) text
to improve its readability, with a focus on Chinese text.
"""
import platform
import re
import shutil
import subprocess
import sys