在linux中,- 如果单独使用 - 符号,不加任何该加的文件名称时,代表"标准输入"的意思
如下小技巧,nc命令来传输目录下多个文件
# host A, on receiver, go to destination directory and execute:
$ nc -l $port | tar xf -
# host B,on sender| version: '3' | |
| services: | |
| redis-master: | |
| image: bitnami/redis:latest | |
| ports: | |
| - "6379:6379" | |
| environment: | |
| - REDIS_REPLICATION_MODE=master | |
| - ALLOW_EMPTY_PASSWORD=yes | |
| - REDIS_MASTER_HOST=127.0.0.1 # 使用本地回环地址 |
| #popclip | |
| name: tts | |
| icon: iconify:ri:speak-line | |
| interpreter: /bin/sh | |
| shell script: | | |
| /path/to/edge-playback --rate="${POPCLIP_OPTION_RATE:-+20%}" --voice "${POPCLIP_OPTION_VOICE:-zh-CN-XiaoxiaoNeural}" --text "$POPCLIP_TEXT" | |
| options: | |
| - identifier: rate | |
| label: Rate (default +20%) | |
| type: string |
| // Zed settings | |
| // | |
| // For information on how to configure Zed, see the Zed | |
| // documentation: https://zed.dev/docs/configuring-zed | |
| // 推荐:https://github.com/jellydn/zed-101-setup | |
| { | |
| "language_models": { | |
| "anthropic": { | |
| "api_url": "https://claude.xxx.workers.dev" |
| // #popclip extension for ChatGPT | |
| // name: LimboGPT | |
| // icon: iconify:logos:openai-icon | |
| // language: javascript | |
| // module: true | |
| // entitlements: [network] | |
| // options: [{ | |
| // identifier: apikey, label: API Key, type: string, | |
| // description: 'Obtain API key from https://platform.openai.com/account/api-keys' | |
| // }] |
| import os | |
| import subprocess | |
| import multiprocessing | |
| from colorama import Fore, Back, Style | |
| def download_url(url): | |
| flag = f'PID: {os.getpid()} --> 下载: {url}' |
| // group by traceId, event fields and get the max item. | |
| void testIt() { | |
| List<Event> events = new ArrayList<>(); | |
| events.add(new Event("AAA", "ROOM_START", 1000L, 10)); | |
| events.add(new Event("AAA", "ROOM_START", 1000L, 10)); | |
| events.add(new Event("BBB", "ROOM_START", 1002L, 15)); | |
| events.add(new Event("BBB", "ROOM_START", 1001L, 10)); | |
| // method1 | |
| Map<String, Map<String, List<Event>>> collect = events.stream() |
在linux中,- 如果单独使用 - 符号,不加任何该加的文件名称时,代表"标准输入"的意思
如下小技巧,nc命令来传输目录下多个文件
# host A, on receiver, go to destination directory and execute:
$ nc -l $port | tar xf -
# host B,on sender| package main | |
| import ( | |
| "io" | |
| "fmt" | |
| ) | |
| type Data struct { | |
| stream string |
| package main | |
| import ( | |
| "log" | |
| "time" | |
| "github.com/PuerkitoBio/goquery" | |
| "github.com/briandowns/spinner" | |
| ) |
| package main | |
| import ( | |
| "fmt" | |
| "time" | |
| "os" | |
| "os/signal" | |
| "syscall" | |
| ) |