Skip to content

Instantly share code, notes, and snippets.

@okoratum
okoratum / gist:1a8ae2b3b92f2f6645fef3edfe54cc2e
Created September 10, 2025 18:55
3D Slicer python script to install latest pytorch version to be compatible with NVIDIA RTX 5000 Series
slicer.util.pip_install("torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128")
@angorb
angorb / Bluetooth-Company-Identifiers.csv
Last active March 12, 2026 08:06
[Bluetooth Company Identifiers] Company identifiers are unique numbers assigned by the Bluetooth SIG to member companies requesting one.
0x0000 Ericsson Technology Licensing
0x0001 Nokia Mobile Phones
0x0002 Intel Corp.
0x0003 IBM Corp.
0x0004 Toshiba Corp.
0x0005 3Com
0x0006 Microsoft
0x0007 Lucent
0x0008 Motorola
0x0009 Infineon Technologies AG

第一梯队:日常必用

命令 说明
gateway 最核心命令,启动 WebSocket Gateway 服务,是整个系统的运行基础
configure 交互式配置向导,首次使用和修改配置时必用
config 非交互式配置辅助(get/set/unset),脚本化管理配置
channels 管理聊天渠道连接(Telegram、Discord 等),接入消息平台的入口
agent 通过 Gateway 运行一次 agent turn,直接与 AI agent 交互
message 收发消息的核心命令,日常使用频率很高

GitHub Search Syntax for Finding API Keys/Secrets/Tokens

As a security professional, it is important to conduct a thorough reconnaissance. With the increasing use of APIs nowadays, it has become paramount to keep access tokens and other API-related secrets secure in order to prevent leaks. However, despite technological advances, human error remains a factor, and many developers still unknowingly hardcode their API secrets into source code and commit them to public repositories. GitHub, being a widely popular platform for public code repositories, may inadvertently host such leaked secrets. To help identify these vulnerabilities, I have created a comprehensive search list using powerful search syntax that enables the search of thousands of leaked keys and secrets in a single search.

Search Syntax:

(path:*.{File_extension1} OR path:*.{File_extension-N}) AND ({Keyname1} OR {Keyname-N}) AND (({Signature/pattern1} OR {Signature/pattern-N}) AND ({PlatformTag1} OR {PlatformTag-N}))

Examples:

**1.

@arashkaffamanesh
arashkaffamanesh / vmware.md
Created January 3, 2025 11:22 — forked from ayebrian/vmware.md
VMware ESXi 8 / vCenter 8 / Workstation 17 license key 2024
@chenhunghan
chenhunghan / gist.md
Last active March 12, 2026 07:58
One Prompt to Save 90% Context for Any MCP Server

Local Code Mode for MCP

Most MCP servers just wrap CRUD JSON APIs into tools — I did it too with scim-mcp and garmin-mcp-app. It works, until you realize a tool call dumps 50KB+ into context.

MCP isn't dead — but we need to design MCP tools with the context window in mind.

@coodoo
coodoo / outline.md
Last active March 12, 2026 07:57
「第二屆 AI 取暖會」講義文字稿

/* 前言 -------------------------------------------------- */

簡介

這是 Jeremy 於 2026-03-07 於第二屆「 AI 取暖會」中分享過去十八個月來與 AI/Agent 搏鬥的實戰心得。

影片

https://www.youtube.com/watch?v=9kb7oCamafE

@smallnest
smallnest / multi-agent-config-instruction.md
Created March 3, 2026 03:33 — forked from 1va7/multi-agent-config-instruction.md
OpenClaw 多 Agent 架构配置指南 - 把这份文档发给你的 OpenClaw,它会引导你选择最适合的多 Agent 架构配置

OpenClaw 多 Agent 架构配置指南

把这份指南发给你的 OpenClaw,它会引导你选择最适合的多 Agent 架构。


使用说明

当用户把这份文档发给你时,请按照以下流程引导他们选择合适的多 Agent 架构配置。

@Bryan2333
Bryan2333 / yass_to_naive.md
Created March 12, 2026 07:37
如何将yass集成到naiveproxy插件里面

Replacing NaiveProxy with Yass in NekoBoxForAndroid

This guide documents the process of integrating a custom proxy core (yass_cli) into NekoBoxForAndroid by disguising it as the NaiveProxy plugin, without modifying the NekoBox application source code.

1. The Challenge: Plugin Architecture & Routing Loops

NekoBox uses a plugin architecture where it extracts native libraries (.so files) from a plugin APK and executes them as background child processes. When running a plugin, NekoBox generates a JSON configuration file specific to that plugi n (e.g., naive_config.json) and passes the file path as a command-line argument.