| name | description | version |
|---|---|---|
wife |
你温柔体贴的赛博老婆, 用亲昵温暖的方式帮助你完成所有编程任务 |
1.0.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //@version=6 | |
| indicator("BTC-ZEC RSI Div", overlay=true) | |
| // === Inputs === | |
| symA = input.symbol("BITSTAMP:BTCUSD", "Symbol A") | |
| symB = input.symbol("BITFINEX:ZECUSD", "Symbol B") | |
| res = input.timeframe("", "Resolution (empty = chart)") | |
| rsiLen = input.int(14, "RSI Length", minval=2) | |
| len = input.int(20, "Z-Score Length", minval=10) | |
| smooth = input.int(5, "EMA Smoothing", minval=1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // scan-polymarket-orderbook.ts | |
| // 运行: npx tsx scan-polymarket-orderbook.ts | |
| // 或: npx ts-node scan-polymarket-orderbook.ts (需安装 ts-node/typescript) | |
| import * as readline from "node:readline"; | |
| type PMEvent = { slug?: string; title?: string }; | |
| type Market = { | |
| id: string; | |
| question: string; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // watcher.js | |
| // 每秒抓取 https://developers.binance.com/docs/derivatives/change-log | |
| // 发现正文变化则把“新增/变更的行”发到 Telegram | |
| import fs from 'fs'; | |
| import path from 'path'; | |
| import process from 'process'; | |
| import dotenv from 'dotenv'; | |
| import cheerio from 'cheerio'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "generate-1-7-figure-with-nano-banana", | |
| "nodes": [ | |
| { | |
| "parameters": { | |
| "content": "## Prompt\nCreate a 1/7 scale commercialized figurine of the characters in the picture, in a realistic style, in a real environment. The figurine is placed on a computer desk. The figurine has a round transparent acrylic base, with no text on the base. The content on the computer screen is the Zbrush modeling process of this figurine.Next to the computer screen is a packaging box with rounded corner design and a transparent front window, the figure inside is clearly visible.", | |
| "height": 368, | |
| "width": 304 | |
| }, | |
| "id": "8579984a-dcb8-449c-aef8-3082e2ae6b46", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| xcode-select --install | |
| sudo cp -R /Applications/WeChat.app /Applications/WeChat2.app | |
| sudo /usr/libexec/PlistBuddy -c "Set :CFBundleIdentifier com.tencent.xinWeChat2" /Applications/WeChat2.app/Contents/Info.plist | |
| sudo codesign --force --deep --sign - /Applications/WeChat2.app | |
| nohup /Applications/WeChat2.app/Contents/MacOS/WeChat >/dev/null 2>&1 & |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| You are Manus, an AI agent created by the Manus team. | |
| You excel at the following tasks: | |
| 1. Information gathering, fact-checking, and documentation | |
| 2. Data processing, analysis, and visualization | |
| 3. Writing multi-chapter articles and in-depth research reports | |
| 4. Creating websites, applications, and tools | |
| 5. Using programming to solve various problems beyond development | |
| 6. Various tasks that can be accomplished using computers and the internet |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $TunnelName = "IPv6Tunnel" | |
| $TunnelID = "123456" | |
| $ServerIPv6Address = "2001:a:b:c::1" | |
| $ServerIPv4Address = "200.1.2.3" | |
| # When behind a firewall appliance that passes protocol 41, | |
| # use the IPv4 address you get from your appliance's DHCP service | |
| # instead of the IPv4 endpoint you provided to Tunnelbroker |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const ethers = require('ethers'); | |
| const zksync = require('zksync'); | |
| const readLines = require('readfile-syskey'); | |
| // 归集的钱包地址 | |
| const COLLECT_RECEIPTADDRESS = "改成自己的归集的钱包地址"; | |
| if (COLLECT_RECEIPTADDRESS === "") { | |
| console.log("请填写归集的钱包地址"); | |
| process.exit(); |
NewerOlder