Skip to content

Instantly share code, notes, and snippets.

import * as KeetaNet from "@keetanetwork/keetanet-client";
const PARALLEL_INSTANCES = 1;
const ANCHOR_PASSPHRASE = "";
const RECIPIENT_COUNT = 500;
const BATCHES_PER_MINT = 10;
const SEND_AMOUNT = 1n;
const MINT_AMOUNT =
BigInt(RECIPIENT_COUNT) * BigInt(BATCHES_PER_MINT) * SEND_AMOUNT;
import * as KeetaNet from "@keetanetwork/keetanet-client";
/**
* The number of parallel spamming instances to run concurrently.
*/
const PARALLEL_INSTANCES = 1;
/**
* The passphrase for the main account. This will be used to generate the
* account's seed.

Mount Volumes into Proxmox VMs with Virtio-fs

Part of collection: Hyper-converged Homelab with Proxmox

Virtio-fs is a shared file system that lets virtual machines access a directory tree on the host. Unlike existing approaches, it is designed to offer local file system semantics and performance. The new virtiofsd-rs Rust daemon Proxmox 8 uses, is receiving the most attention for new feature development.

Performance is very good (while testing, almost the same as on the Proxmox host)

VM Migration is not possible yet, but it's being worked on!

@xescure
xescure / setup.sh
Created January 15, 2024 18:57 — forked from Sitin/setup.sh
Run x86-64 Docker images on Raspberry Pi 4 (QEMU/QUS)
# Setup QEMU for x86-64 Docker images on Raspberry Pi 4
# Install Python3 and Docker first: https://dev.to/rohansawant/installing-docker-and-docker-compose-on-the-raspberry-pi-in-5-simple-steps-3mgl
# Install QUEMU (https://www.qemu.org/)
sudo apt-get install qemu binfmt-support qemu-user-static
# Use QUS in Docker (https://github.com/dbhi/qus) to configure x86_64 architecture
docker run --rm --privileged aptman/qus -s -- -p x86_64
# Test x86-64 image: