CTF AWD 平台:

  1. https://github.com/thunderbarca/BlackStone
  2. https://github.com/vidar-team/Cardinal

Cloudflare proxy

  1. vless
  2. WARP+

小米路由器 openwrt 固件

https://github.com/openwrt-xiaomi/openwrt

罗技鼠标

因滚轮黑色带脱落,M330 G304

Swift

VSCode 中调试: https://forums.swift.org/t/vscode-settings-for-swift/12216

CodeLLDB

// .vscode/tasks.json
{
  // See https://go.microsoft.com/fwlink/?LinkId=733558
  // for the documentation about the tasks.json format
  "version": "2.0.0",
  "tasks": [
    {
      "label": "swiftc with debug",
      "type": "shell",
      "command": "swiftc -g ${file}",
      "group": {
        "kind": "build",
        "isDefault": true
      },
      "presentation": {
        "panel": "dedicated"
      }
    }
  ]
}
// .vscode/launch.json
{
  // Use IntelliSense to learn about possible attributes.
  // Hover to view descriptions of existing attributes.
  // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  "version": "0.2.0",
  "configurations": [
    {
      "type": "lldb",
      "request": "launch",
      "preLaunchTask": "swiftc with debug",
      "name": "Debug",
      "program": "${fileDirname}/${fileBasenameNoExtension}",
      "args": [],
      "sourceLanguages": ["swift"]
    }
  ]
}