bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/ct/docker.sh)"
run the advanced settings to customize your install
import * as Path from 'path' | |
import * as Sequelize from 'sequelize' | |
import * as express from 'express' | |
import * as http from 'http' | |
import * as util from 'util' | |
import * as fs from './libs/fsExtra' | |
import * as fileUpload from './libs/expressFileupload' | |
import * as cookieParser from 'cookie-parser' | |
import { version } from '../package.json' | |
import * as dotenv from 'dotenv' |
pushd ~/Applications # or whatever you install AppImages, they recommend here | |
wget https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-$(uname -m).AppImage | |
chmod +x appimagetool-*.AppImage | |
popd |
#!/bin/bash | |
pushd ~/Applications/ # or wherever you install AppImages, they recommend here | |
./cursor.AppImage --appimage-extract && \ | |
sed -i 's/,minHeight/,frame:false,minHeight/g' "squashfs-root/usr/share/cursor/resources/app/out/main.js" | |
[ ! -f ./appimagetool* ] && { | |
URL="https://github.com/AppImage/appimagetool/releases/download/continuous" | |
wget $URL/appimagetool-$(uname -m).AppImage && chmod +x appimagetool* |
#!/bin/bash | |
## init pve-node | |
# rsa is less secure | |
ssh-keygen -t ed25519 | |
# add my apt cache | |
echo 'Acquire::http::Proxy "http://192.168.10.14:3142";' > /etc/apt/apt.conf.d/00aptproxy |
#!/bin/bash | |
cat << 'EOF' >> /etc/vzdump.conf | |
notes-template: --{{guestname}}-{{vmid}}-{{node}} | |
compress: zstd | |
zstd: 0 # use half of the available cores | |
EOF |
so recently a buddy and i have both have complaints of digestive duress from beer ( we are guessing bc of GMO grain )
and both have found that sake and soju, or rice wine, and cidre have been free of similar issues
after a couple of months of bullshitting about it cant be that hard
this serves to document a recent micro deep dive into how one would go about home production of rice wine and cidre
# Assuming you are in the target directory in a Bash terminal | |
# 1. Get directory name and define list file name | |
current_dir_name=$(basename "$(pwd)") | |
list_file="${current_dir_name}_list.txt" | |
# 2. Generate the list of files recursively into the named list file | |
find . -type f -name "*.mp4" | sed "s/^/file '/;s/$/'/" > "$list_file" | |
# 3. Define output video name and run FFmpeg -c copy |
#!/bin/bash | |
sed -i 's/#no-cgroups = false/no-cgroups = true/g' "/etc/nvidia-container-runtime/config.toml" |