-
SSH into proxmox node and become root user. Run the following commands to download extra software dependencies we'll need.
apt update apt install -y libsasl2-modules mailutils
-
Enable 2FA for the gmail account that will be used by going to security settings
#!/bin/bash | |
# | |
# (c)2014 Matt Willsher <[email protected]> | |
# | |
# Licensed under GPLv3 http://www.gnu.org/licenses/gpl.txt | |
# | |
umask 077 | |
if [[ $EUID == 0 ]]; then | |
echo "This script can't be used as root" >&2 |
Testing to confirm that mTLS works in Vector to Vector connections.
Alice and Bob are mutually authenticated using their own TLS self signed
certificates. A malicious attacker, Mallory, can not impersonate Alice, nor
can they impersonate Bob if both Alice and bob set
tls.verify_certificate = true
and set tls.ca_file
to the other's self signed
certificate.
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.
In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit
#!/bin/bash | |
set -e | |
. /etc/default/backup | |
INSTANCE=$1 | |
case $INSTANCE in |
#!/bin/bash | |
set -e | |
#imports | |
. /etc/default/backup | |
# config | |
NAME=$1 |
western.social is a network of Mastodon sites targetted at microbloggers in the Western US. There is a site for each state, like az.social, and one premium site western.social which will be launched later and may have advanced features.
The sites are operated by Austin Godber ([email protected]) and XXXX. The sites will cover costs through tiered subscriptions and "sponsorships" which are effectively banner ads without the tracking.
--- | |
api: | |
enabled: true | |
data_dir: /tmp/vector-data-dir | |
sources: | |
demo: | |
type: "demo_logs" | |
format: "json" | |
interval: 2.0 | |
transforms: |
This presentation will provide an introduction to creating WebXR applications. It outlines the current set of technologies that support WebXR and look at some demos to better understand what is possible. It will also present a simple "Hello World" immersive web application implemented using A-Frame, a HTML and Javascript WebXR framework.
Austin has been dabbling in XR for the last few years trying to gain a broad understanding of immersive technologies. He currently builds distributed petabyte scale data systems on Kubernetes. In the past, he calibrated and operated cameras on NASA’s MER and MSL Mars rovers, wrangled virtual penguins for JumpBox and helped start a Municipal WiFi company.
#!/usr/bin/env python | |
from dateutil.rrule import rrule, MONTHLY, WE, SA | |
from datetime import datetime | |
def main(year): | |
saturday_dates = list( | |
rrule( | |
freq=MONTHLY, | |
count=12, |