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
lib_not_dr | |
psycopg |
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
FROM rockylinux:8.9 | |
ENV container docker | |
RUN echo 'root:pigsty' | chpasswd | |
RUN mkdir -p /etc/yum.repos.d/backup && mkdir -p /root/.ssh && cp -f /etc/yum.repos.d/*.repo /etc/yum.repos.d/backup/ && rm -rf /etc/yum.repos.d/*.repo | |
COPY pigsty.repo /etc/yum.repos.d/pigsty.repo | |
RUN dnf makecache && dnf -y install systemd openssh-server sudo glibc-locale-source glibc-langpack-zh glibc-langpack-en createrepo_c dnf-utils sshpass modulemd-tools ansible \ | |
strace lz4 unzip bzip2 zlib yum pv jq git ncdu make patch bash lsof wget uuid tuned nvme-cli numactl grubby sysstat iotop htop rsync tcpdump chrony \ | |
python3 python3.11-jmespath python3-pip python3-requests \ |
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
// by shenjackyuanjie | |
// 20231003 | |
// v1.0.0 | |
// 编写版本: fabric-carpet 1.16.5 1.4.44+v210714 | |
// 还原起床战争中的火球效果 | |
// 火球效果大小 | |
global_power = 2; | |
// 火球加速度 比 玩家朝向的方向 倍率 | |
global_speed = 0.1; |
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 java.io.File | |
import baritone.api.BaritoneAPI | |
import baritone.api.pathing.goals.* | |
val script_version = "1.3.1+20230610" | |
// by shenjackyuanjie | |
// [email protected] 禁止商用 | |
val run_type = "call" |
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
version: "3.5" | |
services: | |
# Tailchat Core Services | |
service-core: | |
build: | |
context: . | |
image: moonrailgun/tailchat:1.11.0 | |
restart: unless-stopped | |
env_file: docker-compose.env |
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
1.70.133.13 | |
1.70.180.130 | |
1.70.187.122 | |
1.70.190.255 | |
1.70.124.172 | |
1.69.57.7 | |
1.159.194.130 | |
1.70.126.211 | |
1.70.15.25 | |
1.70.140.1 |
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
# by shenjackyuanjie | |
# 2023 11 19 | |
# at python 3.10.11 | |
# 0.2.0 ? | |
USEAGE = """ | |
usage: | |
python lndl-nuitka.py --help (or -h) | |
show this help message |
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
/// 原始代码来自 @V_Galiyanov | |
/// 改进 by shenjackyuanjie [email protected] | |
/// 20230720 | |
fn pack(count: isize) { | |
let full_box = &count / 27; | |
let mut rest = &count % 27; | |
println!("count: {count} full_box: {}, rest: {}", full_box, rest); | |
if rest == 0 { return; } |
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 os | |
import sys | |
import subprocess | |
from pathlib import Path | |
LARGE_MODEL_PATH = Path("model/ggml-large.bin") | |
SMALL_MODEL_PATH = Path("model/ggml-small.bin") | |
CHECK_DIRS = ["result", "sample"] |
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 os | |
import sys | |
import time | |
import requests | |
import traceback | |
import threading | |
# 飞船 API http://jundroo.com/service/SimpleRockets/DownloadRocket?id= | |
# 存档 API http://jundroo.com/service/SimpleRockets/DownloadSandBox?id= | |
# (api直接在 text 中返回内容,id无效则返回0) |
NewerOlder