如果你的包管理器想直接使用优秀的镜像仓库,请参考这个: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 - -- - "::"
Our mission is to create an open signing infrastructure that empowers the world, enabling businesses to embrace openness, cooperation, and transparency. By offering an open-source signing solution, we aim to make document signing accessible, transparent, and trustworthy. Through our platform, called Documenso, we strive to earn your trust by allowing self-hosting and providing complete visibility into its inner workings. [...] At Documenso, we envision a web-enabled future for business and contracts, and we are committed to being the leading provider of open signing infrastructure. By combining exceptional product design with open-source principles, we aim to deliver a robust and well-designed application that exceeds your expectations.
使用方式: 打开脚本https://greasyfork.org/zh-CN/scripts/470359-twitter-block-porn, 安装脚本.
基于ChatGPT的AI选股工具
Rational Expressions, Inc 2023
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; }
• 关于X岛与A岛关系的说明:>>No.50000002https://www.nmbxd1.com/t/50000002 • 上手前建议您阅读:>>No.50000001https://www.nmbxd1.com/t/50000001
https://github.com/aoaostar/legado/ https://github.com/aoaostar/legado/ https://github.com/aoaostar/legado/ https://blog.aoaostar.com Git仓库不支持一键导入,请前往 https://legado.aoaostar.com 阅读 APP https://github.com/gedoor/legado/releases、https://www.coolapk.com/apk/256030 目录 #全量书源_all #书源_book #订阅源_subscribe #主题_theme #阅读排版_readConfig #净化规则_replaceRule #在线朗读引擎_httpTTS 全量书源[all]
© 2023 HDO線上學院 All Rights Reserved.文心創媒股份有限公司.統一編號: 85114291 https://hdo.academy/terms.https://hdo.academy/privacy
A privacy-focused and offline-friendly tool for deferred reading. Designed for offline use, independent of servers. [...] Elevate your online browsing with effortless annotation and note-taking on any web page. [...] Unlock the power of comprehensive search, accessing the entire content of every saved web page. Customize your web page lists and views with filters and operators to make Hamsterbase truly yours.
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)