| 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
| #!/usr/bin/env bash | |
| # | |
| # https://gist.github.com/jtmoon79/c951f81f621bb87ddb60836245aca4ff | |
| # | |
| # Script to generate a site-to-site Wireguard IPv4 VPN tunnel | |
| # configuration files, and commands for systemd services. | |
| # This script only covers a narrow scope of possible networking arrangements. | |
| # It may not perfectly fit the user's needs, but it may provide the user with | |
| # a working example that they can modify for their needs. | |
| # |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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: BuildElectron | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| buildwin: | |
| name: BuildWindows | |
| runs-on: windows-latest | |
| steps: |
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
| // Updated: Aug. 15, 2024 | |
| // Run: node testRegex.js testText.txt | |
| // Used in https://jina.ai/tokenizer | |
| const fs = require('fs'); | |
| const util = require('util'); | |
| // Define variables for magic numbers | |
| const MAX_HEADING_LENGTH = 7; | |
| const MAX_HEADING_CONTENT_LENGTH = 200; | |
| const MAX_HEADING_UNDERLINE_LENGTH = 200; |
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
| import sys | |
| from solana.publickey import PublicKey | |
| from solana.rpc.api import Client | |
| from solana.rpc.types import TokenAccountOpts | |
| import base64 | |
| import base58 | |
| import struct | |
| import json | |
| import requests | |
| import redis |
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
| // 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'; |
OlderNewer