Remove this condition "when": "workspacePlatform == windows"
%USERPROFILE%\.cursor\extensions\ms-vscode.cpptools-1.23.5-win32-x64\package.json
"type": "cppvsdbg",
"label": "C++ (Windows)",
"when1": "workspacePlatform == windows",
<?xml version="1.0" encoding="UTF-8"?> | |
<TOOL_CONFIG CONFIG_NAME="NO_LONGER_USED"> | |
<SUPPORTED_DATA_TYPE CLASS_NAME="ghidra.program.model.listing.DataTypeArchive" /> | |
<SUPPORTED_DATA_TYPE CLASS_NAME="ghidra.program.model.listing.Program" /> | |
<ICON LOCATION="greenDragon24.png" /> | |
<TOOL TOOL_NAME="CodeBrowser_1" INSTANCE_NAME=""> | |
<OPTIONS> | |
<CATEGORY NAME="Listing Fields"> | |
<ENUM NAME="Cursor Text Highlight.Mouse Button To Activate" TYPE="enum" CLASS="ghidra.GhidraOptions$CURSOR_MOUSE_BUTTON_NAMES" VALUE="LEFT" /> | |
<STATE NAME="Labels Field.Display Function Label" TYPE="boolean" VALUE="false" /> |
const D2Modules = { | |
D2Net : Process.getModuleByName('D2Net.dll'), | |
Storm : Process.getModuleByName('Storm.dll'), | |
D2Client: Process.getModuleByName('D2Client.dll'), | |
}; | |
const KERNEL32 = Process.getModuleByName('KERNEL32.dll'); | |
const GetProcAddress = new NativeFunction(KERNEL32.findExportByName("GetProcAddress"), "pointer", ['pointer', 'int']); |
// ==UserScript== | |
// @name bilibili网页端添加APP首页推荐 | |
// @namespace indefined | |
// @version 0.6.12.2 | |
// @description 网页端首页添加APP首页推荐、全站排行、可选提交不喜欢的视频 | |
// @author indefined | |
// @supportURL https://github.com/indefined/UserScripts/issues | |
// @match *://www.bilibili.com/* | |
// @license MIT | |
// @connect app.bilibili.com |
#!/bin/sh | |
CURRENT_DIR=`pwd` | |
PROJECT_DIR=`dirname $CURRENT_DIR` | |
GOPATH=$PROJECT_DIR:$GOPATH go $* |
swift/utils/build-script --release --lldb --build-swift-static-stdlib=1 --lldb-use-system-debugserver --install-destdir /Users/ouroboros/dev/lldb-swift/install --install-lldb
diff --git a/lldb.xcodeproj/project.pbxproj b/lldb.xcodeproj/project.pbxproj
index 757c58d860..a220263b28 100644
--- a/lldb.xcodeproj/project.pbxproj
+++ b/lldb.xcodeproj/project.pbxproj
// ==UserScript==
// @name 拒绝二维码登录(淘宝、京东等网站默认出现账号密码登录界面)
// @namespace undefined
// @version 0.3.4
// @description 淘宝、京东、阿里云等网站默认使用账号密码登录,不出现二维码登录界面
// @author Vizards
// @match *://login.taobao.com/*
{ | |
"always_show_minimap_viewport": true, | |
"auto_complete_triggers": | |
[ | |
{ | |
"characters": ".", | |
"selector": "source" | |
}, | |
{ | |
"characters": ":", |
ln -s /usr/lib/llvm-6.0/lld /usr/lib/llvm-6.0/ld
CC=/usr/lib/llvm-6.0/bin/clang CXX=/usr/lib/llvm-6.0/bin/clang++ cmake -DCMAKE_BUILD_TYPE=Release -G Ninja ../LLVM