Step 1
Download macOS Installer (InstallAssistant.pkg
). Here is the link to Sonoma beta installer:
Step 1
Download macOS Installer (InstallAssistant.pkg
). Here is the link to Sonoma beta installer:
#!/bin/sh | |
gw="$(route -n show | awk '$1 == "default" { print $2 }')" | |
awk -v gw="$gw" ' | |
$1 == "PrivateKey" { key = $3 } | |
$1 == "Address" { | |
addr = $3 | |
sub(/,.*/, "", addr) | |
} | |
$1 == "DNS" { dns = $3 } | |
$1 == "PublicKey" { peer = $3 } |
// ==UserScript== | |
// @name noVNC Paste for Proxmox | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2a | |
// @description Pastes text into a noVNC window (for use with Proxmox specifically) | |
// @author Chester Enright | |
// @match https://* | |
// @include /^.*novnc.*/ | |
// @require http://code.jquery.com/jquery-3.3.1.min.js | |
// @grant none |
Install a working (and compiled) version of virt-viewer. You may view the homebrew package's upstream source on GitHub.
brew tap jeffreywildman/homebrew-virt-manager
brew install virt-viewer
Once that's installed should be able make a call remote-viewer
with a pve-spice.vv file downloaded from proxmox web interface
The package that linked you here is now pure ESM. It cannot be require()
'd from CommonJS.
This means you have the following choices:
import foo from 'foo'
instead of const foo = require('foo')
to import the package. You also need to put "type": "module"
in your package.json and more. Follow the below guide.await import(…)
from CommonJS instead of require(…)
.Ocean Beach pickup ultimate in SF uses the below described setup for nighttime beach frisbee games.
Regulation fields are 150' x 90', ours is probably slightly smaller.
We get 90+ min (probably 2h+) of playtime out of this setup (batteries can be upgraded if you want more time).
# Prepare an SD card with Alpine Linux for a Raspberry Pi | |
# See: https://wiki.alpinelinux.org/wiki/Raspberry_Pi | |
# Editable configuration | |
DISTRO = alpine | |
# ARCH = armhf | |
ARCH = aarch64 | |
MAJOR_VERSION = 3.9 | |
MINOR_VERSION = 2 |