最后更新 / Last updated: 2026-07-04
Free Paste(以下简称"本应用")是一款运行在你自己电脑上的剪贴板历史工具。我们非常重视你的隐私,本应用的设计原则是:你的剪贴板数据只留在你自己的设备上,我们(开发者)拿不到,也不会上传到任何服务器。
| { | |
| // close scm | |
| { | |
| "key": "cmd+3", | |
| "command": "workbench.action.closeSidebar", | |
| "when": "workbench.scm.active || workbench.scm.visible" | |
| }, | |
| // open scm | |
| { | |
| "key": "cmd+3", |
| # remap prefix from 'C-b' to 'C-q' | |
| unbind C-b | |
| set-option -g prefix C-q | |
| bind-key C-q send-prefix | |
| set -g mouse on | |
| # split panes using | and - | |
| bind | split-window -h | |
| bind - split-window -v |
WSA or Windows Subsystem for Android is a Tool that allows Windows to run Android Apps directly without using any emulator. The problem is Windows Subsystem for Android is currently only available through preview via the Beta Channel of the Windows Insider Program. But if you follow my guide, you don't have to be in Windows Insider Program to try it out. The only thing you need is Windows 11 installed and some patience.
| // @ts-check | |
| import js from '@eslint/js' | |
| import ts from 'typescript-eslint' | |
| import globals from 'globals' | |
| import parserTs from '@typescript-eslint/parser' | |
| import stylistic from '@stylistic/eslint-plugin' | |
| import stylisticTs from '@stylistic/eslint-plugin-ts' | |
| import stylisticJsx from '@stylistic/eslint-plugin-jsx' | |
| import stylisticJs from '@stylistic/eslint-plugin-js' |
| <?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
| <ProxifierProfile version="101" platform="MacOSX" product_id="2" product_minver="200"> | |
| <Options> | |
| <Resolve> | |
| <AutoModeDetection enabled="true"/> | |
| <ViaProxy enabled="false"> | |
| <TryLocalDnsFirst enabled="false"/> | |
| </ViaProxy> | |
| <ExclusionList ExcludeSimpleHostnames="true" ExcludeLocalhost="true" ExcludeSelfHostname="true" ExcludeLocalDomain="true">localhost;%SimpleHostnames%;%ComputerName%;*.local; | |
| </ExclusionList> |
| .title.show-file-icons { | |
| display: none !important; | |
| } |
| mixed-port: 7890 | |
| #---------------------------------------------------# | |
| ## 配置文件需要放置在 $HOME/.config/clash/*.yaml | |
| allow-lan: true | |
| mode: Rule | |
| log-level: silent | |
| external-controller: 127.0.0.1:60000 | |
| # 你需要在当前目录里提前准备好从其他服务商下载的 config.ymal | |
| proxy-providers: |
| parsers: # array | |
| - reg: ^.*$ | |
| code: | | |
| module.exports.parse = (raw, { yaml }) => { | |
| const rawObj = yaml.parse(raw) | |
| const groups = [] | |
| const rules = [] | |
| return yaml.stringify({ ...rawObj, 'proxy-groups': groups, rules }) | |
| } | |
| yaml: |
| # https://www.docker.com/blog/back-up-and-share-docker-volumes-with-this-extension/ | |
| # run in host | |
| mkdir repos | |
| mkdir config | |
| docker run -it -v repos:/repos -v config:/config -v "$(pwd)/repos":/outside_repos -v "$(pwd)/config":/outside_config busybox sh | |
| # run in container | |
| cd /repos | |
| find . -name node_modules -type d -exec rm -rf {} \; | |
| find . -name dist -type d -exec rm -rf {} \; |