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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # ============================================================ | |
| # Binance Klines Evidence Collector (Judicial-grade) | |
| # - 支持 symbol / interval / startTime / endTime / timeZone / limit | |
| # - 自动分页(limit<=1000) | |
| # - 保存:响应头、TLS 证书、DNS、traceroute、(可选)tcpdump | |
| # - 计算 SHA256(每页+合并)、生成 metadata.json、(可选)OpenTimestamps | |
| # - 在证据目录原地初始化 git(快照),打包时排除 .git |
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
| bun add puppeteer-core |
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
| listen: :443 | |
| # tls: | |
| # cert: /server.crt | |
| # key: /server.key | |
| acme: | |
| domains: | |
| - hysteria.example.com # 你的域名 | |
| email: [email protected] # 你的邮箱 |
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
| <!DOCTYPE html> | |
| <html lang="zh-CN"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>弹幕聚合</title> | |
| <style> | |
| * { | |
| margin: 0; | |
| padding: 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
| ticket number 6211 | |
| My dapps domains: | |
| https://ritmex.one | |
| https://earn.ritmex.one | |
| https://trade.ritmex.one | |
| https://wallet.ritmex.one | |
| Thanks! |
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
| // Path: next.config.js | |
| const nextConfig = { | |
| webpack: config => { | |
| config.externals.push('pino-pretty', 'lokijs', 'encoding') | |
| return config | |
| } | |
| } |
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
| backdrop-filter: blur(10px); |
NewerOlder