2 private links
A multi-platform proxy client based on ClashMeta, simple and easy to use, open-source and ad-free. ✈️ Multi-platform: Android, Windows, macOS and Linux 💻 Adaptive multiple screen sizes, Multiple color themes available [...] You need a windows client [...] The easiest way to support developers is to click on the star (⭐) at the top of the page.
exo: Run your own AI cluster at home with everyday devices. Maintained by https://x.com/exolabs_. [...] Forget expensive NVIDIA GPUs, unify your existing devices into one powerful GPU: iPhone, iPad, Android, Mac, Linux, pretty much any device! Update: Exo Supports Llama 3.1 #update-exo-supports-llama-31 Now the default models, run 8B, 70B and 405B parameter models on your own devices https://github.com/exo-explore/exo/blob/main/exo/inference/mlx/models/sharded_llama.py exo is experimental software. [...] The native way to access models running on exo is using the exo library with peer handles.
https://github.com/jianchang512/pyvideotrans/blob/main/README_EN.md / https://github.com/jianchang512/pyvideotrans/blob/main/about.md / Q群 905857759 / 微信公众号:搜一搜“ pyvideotrans ” 语音识别支持 faster-whisper模型 openai-whisper模型 和 GoogleSpeech zh_recogn阿里中文语音识别模型. [...] 文字合成语音支持 Microsoft Edge tts Google tts Azure AI TTS Openai TTS Elevenlabs TTS 自定义TTS服务器api GPT-SoVITS https://github.com/jianchang512/clone-voice 允许保留背景伴奏音乐等(基于uvr5) [...] 打开终端窗口,分别执行如下命令 brew install libsndfile brew install ffmpeg brew install git brew install python@3.12 [...] 终端中执行命令 git clone https://github.com/jianchang512/pyvideotrans 执行命令 cd pyvideotrans 继续执行 python -m venv venv 继续执行命令 source./venv/bin/activate,执行完毕查看确认终端命令提示符已变成已(venv)开头,以下命令必须确定终端提示符是以(venv)开头 执行 pip install -r requirements.txt --no-deps,如果提示失败,执行如下2条命令切换pip镜像到阿里镜像 pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/ pip config set install.trusted-host mirrors.aliyun.com 然后重新执行 如果已切换到阿里镜像源,仍提示失败,请尝试执行 pip install -r requirements.txt --ignore-installed --no-deps python sp.py 打开软件界面 https://pyvideotrans.com/mac.html
ZTM is an open source network infrastructure software for running a decentralized network. It is built upon HTTP/2 tunnels and can run on any sort of IP networks such as LANs, containerized networks and the Internet, etc. ZTM lays the foundation for building decentralized applications by providing a set of core capabilities including: Network connectivity across Internet gateways and firewalls [...] If not, or if you're unsure whether your installed Pipy version is compatible to ZTM, follow these steps to build Pipy from source. [...] After the CA service is up and running, start a hub pointing to the CA service: pipy hub/main.js -- --ca=localhost:9999
yt-dlp is a https://github.com/ytdl-org/youtube-dl fork based on the now inactive https://github.com/blackjack4494/yt-dlc. You can install yt-dlp using #release-files, https://pypi.org/project/yt-dlp or one using a third-party package manager. [...] # Download best format that contains video, # and if it doesn't already have an audio stream, merge it with best audio-only format $ yt-dlp -f "bv+ba/b" [...] # Download and merge the best format that has a video stream, # and the best 2 audio-only formats into one file $ yt-dlp -f "bv+ba+ba.2" --audio-multistreams [...] # Download the best mp4 video available, or the best video if no mp4 available $ yt-dlp -f "bv[ext=mp4]+ba[ext=m4a]/b[ext=mp4] / bv+ba/b"
如果你的包管理器想直接使用优秀的镜像仓库,请参考这个:https://github.com/eryajf/Thanks-Mirror 目录 #pip #git #cargo #apt-apt-get #curl #gradle #maven #go-get #npm #rustup #yarn #yarn2 #gem #brew #wget #snap #docker #electron-dev-dependency #visual-studio-code-remote-wsl2 #visual-studio-code-remote-ssh #tips #scoop #openwrt-opkg #chocolatey #guix #faq pip ~/.config/pip/pip.conf [global] proxy=http://localhost:1087 注意不支持socks5 [...] 环境变量 HTTPS_PROXY & https_proxy & http_proxy export https_proxy=http://127.0.0.1:1080 export http_proxy=http://127.0.0.1:1080 http_proxy 一般来讲没必要,除非使用基于 HTTP 的 Crate Repository [...] Reference https://askubuntu.com/questions/764610/how-to-install-snap-packages-behind-web-proxy-on-ubuntu-16-04#answer-1146047 docker $ sudo mkdir -p /etc/systemd/system/docker.service.d $ sudo vim /etc/systemd/system/docker.service.d/proxy.conf [Service] Environment="ALL_PROXY=socks5://localhost:1080" $ sudo systemctl daemon-reload $ sudo systemctl restart docker 必须是socks5,http不生效
🚧 We're currently working on a large scale refactor which can be found on the https://github.com/documenso/documenso/tree/feat/refresh branch. Signing documents digitally is fast, easy and should be best practice for every document signed worldwide. [...] Contact us if you are interested in our Enterprise plan for large organizations that need extra flexibility and control. [...] We are still working on the publishing of docker images, in the meantime you can follow the steps below to create a production ready docker image. [...] For local docker run docker run -it documenso:latest npm run start -- -H :: For k8s or docker-compose containers: - name: documenso image: documenso:latest imagePullPolicy: IfNotPresent command: - npm args: - run - start - -- - "::"
Bun is a fast, all-in-one toolkit for running, building, testing, and debugging JavaScript and TypeScript, from a single file to a full-stack application. Install Bun curl curl -fsSL https://bun.sh/install | bash docker docker run --rm --init --ulimit memlock=-1:-1 oven/bun [...] import { plugin } from "bun"; plugin({ name: "YAML", async setup(build) { const { load } = await import("js-yaml"); const { readFileSync } = await import("fs"); build.onLoad({ filter: /. [...] import { test, expect } from "bun:test"; test("2 + 2", () => { expect(2 + 2).toBe(4); }); You can run your tests with the bun test command. [...] const release = await getRelease(); release.ts export async function getRelease(): Promise { const response = await fetch("https://api.github.com/repos/oven-sh/bun/releases/latest"); const { tag_name } = await response.json(); return tag_name; }
A Flask API For https://github.com/gitbobobo/StreamMusic 二进制文件 上传至运行目录,./lrcapi --port 8080 --auth DbG91ZEZbBgNVBAs Python源文件 拉取本项目;或者下载后上传至运行目录,解压tar.gz 安装依赖:pip install -r requirements.txt 启动服务:python3 app.py --port 8080 --auth DbG91ZEZbBgNVBAs [...] 示例JSON {"path": "/path/to/your/audio/file.mp3", "title": "The Music", "artist": "The Artist", "album": "Greatest Hits", "genre": "Rock", "year": "2022", "track_number": "3", "disc_number": "1", "composer": "Talented Composer"} Python Demo import requests api_url = 'https://api.example.com/tag' auth_token = 'your_auth_token' json_data = {"path": "/path/to/your/audio/file.mp3", "title": "New Title", "artist": "Awesome Artist"} headers = {"Content-Type": "application/json", "Authentication": auth_token } response = requests.post(api_url, json=json_data, headers=headers) # 解析响应 if response.status_code == 200: print("Tags updated successfully.") else: print("Error:", response.text)
Upscayl lets you enlarge and enhance low-resolution images using advanced AI algorithms. Enlarge images without losing quality, it's almost like magic! [...] 🐧 Linux https://flathub.org/apps/org.upscayl.Upscayl https://appimage.github.io/Upscayl/ https://aur.archlinux.org/packages/upscayl-bin https://snapcraft.io/upscayl/ Upscayl should be available on the Software Store of most Linux operating systems. [...] Right Click AppImage -> Go to Permissions tab -> Check 'allow file to execute' and then double click the file to run Upscayl. [...] Upscayl uses AI models to enhance your images by guessing what the details could be.
Pure Java NFS v3/v4.1 server backed by https://github.com/dCache/nfs4j. This project has been designed as an alternative to https://github.com/winnfsd/winnfsd. [...] With default options, it will publish the current working directory through NFS. [...] This better performance than EMULTAED, files uid, gid and mode are be preserved, but this option is only supported on Unix servers. Exports file configuration exports file contains advanced configuration for shares, such as ip address based permission.
https://twitter.com/kdrag0n/status/1638917691036803073Say goodbye to slow, clunky containers and VMs Seamless and efficient Docker and Linux on your Mac. [...] Starts in seconds with turbocharged networking, smooth Rosetta x86 emulation, VirtioFS file sharing, and other optimizations for some workloads. [...] Enjoy Docker as if it were native to macOS, plus CLI integration, file sharing, and remote SSH editing with Linux machines. [...] Connect between Linux machines and Docker containers, and use IPv6 and ICMP painlessly.
https://xingangpan.github.io/ · https://ayushtewari.com/ · https://people.mpi-inf.mpg.de/~tleimkue/ · https://lingjie0206.github.io/ · https://www.meka.page/ · http://www.mpi-inf.mpg.de/~theobalt/ SIGGRAPH 2023 Conference Proceedings https://github.com/XingangPan/DragGAN/blob/main/DragGAN.gif https://pytorch.org/get-started/locally/ https://twitter.com/XingangP https://arxiv.org/abs/2305.10973 https://vcai.mpi-inf.mpg.de/projects/DragGAN/ https://colab.research.google.com/drive/1mey-IXPwQC_qSthI5hO-LTX7QL4ivtPh?usp=sharing [...] To start the DragGAN GUI, simply run: If you are using windows, you can run: This GUI supports editing GAN-generated images. [...] You can run DragGAN Gradio demo as well, this is universal for both windows and linux: python visualizer_drag_gradio.py [...] Any form of use and derivative of this code must preserve the watermarking functionality showing "AI Generated".
restic is a backup program that is fast, efficient and secure. It supports the three major operating systems (Linux, macOS, Windows) and a few smaller ones (FreeBSD, OpenBSD).
https://github.com/j178/chatgpt/releases A CLI for ChatGPT, powered by GPT-3.5-turbo and GPT-4 models. Get or create your OpenAI API Key from here: https://platform.openai.com/account/api-keys 💬 Start in chat mode [...] 💻 Use it in a pipeline cat config.yaml | chatgpt -p 'convert this yaml to json' echo "Hello, world" | chatgpt -p translator | say [...] You can add more prompts in the config file, for example: {"api_key": "sk-xxxxxx", "endpoint": "https://api.openai.com/v1", "prompts": {"default": "You are ChatGPT, a large language model trained by OpenAI. [...] "}, "conversation": {"prompt": "default", "context_length": 6, "model": "gpt-3.5-turbo", "stream": true, "max_tokens": 1024 }} then use -p flag to switch prompt: Note The prompt can be a predefined prompt, or come up with one on the fly.
Claims free games periodically on This will run node epic-games; node prime-gaming; node gog - if you only want to claim games for one of the stores, you can override the default command by appending e.g. [...] Data (including json files with claimed games, codes to redeem, screenshots) is stored in the Docker volume fgc. [...] When running the first time, you have to login for each store you want to claim games on. [...] Claiming the Amazon Games works out-of-the-box, however, for games on external stores you need to either link your account or redeem a key.
Koodo Reader 是一个开源免费的电子书阅读器,支持多达15种主流电子书格式, 内置笔记、高亮、翻译功能,助力高效书籍阅读和学习。