I hereby claim:
- I am lbr77 on github.
- I am lbr77 (https://keybase.io/lbr77) on keybase.
- I have a public key whose fingerprint is 5662 9CE9 1E3C 4E14 9421 F81F B7CB C14B 9515 95E9
To claim this, I am signing this object:
git config --global https.proxy http://127.0.0.1:1080 | |
git config --global https.proxy https://127.0.0.1:1080 | |
git config --global --unset http.proxy | |
git config --global --unset https.proxy | |
npm config delete proxy |
#!/usr/bin/env bash | |
# Description: Install docker-aarch64 for ds120j | |
# System Required: Synology | |
# Author: lbr77 | |
# some scrpts from github.com/P3TERX | |
# | |
# MIT License | |
# |
addEventListener("fetch", (event) => { | |
event.respondWith( | |
handleRequest(event) | |
); | |
}); | |
async function handleRequest(event){ | |
const url = new URL(event.request.url); | |
const method = event.request.method; | |
if(method === "GET"){ | |
let record = await JSON.parse(await KV.get("RECORD")) |
addEventListener("fetch", event => { | |
event.respondWith(handleRequest(event)) | |
}) | |
const BUCKET_NAME = "lbr77/CDN@main" | |
const BUCKET_URL = `http://cdn.jsdelivr.net/gh/${BUCKET_NAME}` | |
async function serveAsset(event) { | |
const url = new URL(event.request.url) | |
const cache = caches.default |
C++ ๐ 6h36m โโโโโโโโโโโโโโโโโโโโโโโโโโโโ 75.9% | |
YAML ๐ 29m โโโโโโโโโโโโโโโโโโโโโโโโโโโโ 5.6% | |
JavaScript ๐ 28m โโโโโโโโโโโโโโโโโโโโโโโโโโโโ 5.5% | |
Python ๐ 20m โโโโโโโโโโโโโโโโโโโโโโโโโโโโ 3.9% | |
Other ๐ 16m โโโโโโโโโโโโโโโโโโโโโโโโโโโโ 3.1% |
๐ซ ๅๅฆ๏ผๆ่ฟๅฅฝๅๆฒกๆ็ฉ่ฟๆธธๆๅข |
I hereby claim:
To claim this, I am signing this object:
# Dockerfile to build aria2 Windows binary using ubuntu mingw-w64 | |
# cross compiler chain. | |
# | |
# $ sudo docker build -t aria2-mingw - < Dockerfile.mingw | |
# | |
# After successful build, windows binary is located at | |
# /aria2/src/aria2c.exe. You can copy the binary using following | |
# commands: | |
# | |
# $ id=$(sudo docker create aria2-mingw) |