All of the following information is based on go version go1.17.1 darwin/amd64.
| GOOS | Out of the Box |
|---|---|
aix |
✅ |
android |
✅ |
| #!/bin/bash | |
| # Author: Casper Pedersen (github.com/casperghst42) | |
| # License: GPL2 | |
| wget https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-generic-amd64.qcow2 | |
| virt-customize -a debian-12-generic-amd64.qcow2 --install qemu-guest-agent --install resolvconf --install systemd-resolved --update --run-command 'mkdir -p /etc/network/interfaces.d' --run-command 'echo "auto ens18" >> /etc/network/interfaces.d/ens18' --run-command 'echo "iface ens18 inet manual" >> /etc/network/interfaces.d/ens18' | |
| qm create 100000 --name "debian12-cloudinit-template" --memory 2048 --net0 virtio,bridge=vmbr0 | |
| qm importdisk 100000 debian-12-generic-amd64.qcow2 local-lvm -format qcow2 |
| // This is now built into `npx auth add apple`! :tada: | |
| // https://github.com/nextauthjs/cli/pull/10 | |
| #!/bin/node | |
| import { SignJWT } from "jose" | |
| import { createPrivateKey } from "crypto" | |
| if (process.argv.includes("--help") || process.argv.includes("-h")) { |
| use any_ascii::any_ascii_char; | |
| use unicode_normalization::UnicodeNormalization; | |
| use unicode_segmentation::UnicodeSegmentation; | |
| use crate::sqlite3_fts5::Tokenizer; | |
| /// My own tokenizer | |
| /// | |
| /// The operations the tokenizer performs, in order: | |
| /// 1. Splits data on Unicode-defined words (`UnicodeSegmentation::unicode_word_indices`). |
| Install WireGuard via whatever package manager you use. For me, I use apt. | |
| $ sudo add-apt-repository ppa:wireguard/wireguard | |
| $ sudo apt-get update | |
| $ sudo apt-get install wireguard | |
| MacOS | |
| $ brew install wireguard-tools | |
| Generate key your key pairs. The key pairs are just that, key pairs. They can be |
sentrySENTRY_SECRET_KEY to random 32 char stringdocker-compose up -ddocker-compose exec sentry sentry upgrade to setup database and create admin userdocker-compose exec sentry pip install sentry-slack if you want slack plugin, it can be done laterdocker-compose restart sentry9000extension_id=jifpbeccnghkjeaalbbjmodiffmgedin # change this ID
curl -L -o "$extension_id.zip" "https://clients2.google.com/service/update2/crx?response=redirect&os=mac&arch=x86-64&nacl_arch=x86-64&prod=chromecrx&prodchannel=stable&prodversion=44.0.2403.130&x=id%3D$extension_id%26uc"
unzip -d "$extension_id-source" "$extension_id.zip"Thx to crxviewer for the magic download URL.