bluetoothctl gatt.list-attributes
bluetoothctl gatt.select-attributes <spp - attributes>
bluetoothctl gatt.write "0xhh 0xhh ..."| LOCATION=northeurope # the location of your cluster | |
| RESOURCEGROUP=aro-rg # the name of the resource group where you want to create your cluster | |
| CLUSTER=aro # the name of your cluster | |
| az group create \ | |
| --name $RESOURCEGROUP \ | |
| --location $LOCATION | |
| az network vnet create \ | |
| --resource-group $RESOURCEGROUP \ |
| //Extracted 1/10/2022 from my COVID-CO2-tracker project, in case they're useful to anybody. I'm gonna file an issue/suggesting a few places, and it seems polite to dump it here rather than a long preformatted bit in an issue. | |
| export const GENERIC_GATT_SERVICE_SHORT_ID_DESCRIPTIONS = new Map([ | |
| //these are hex strings, without the 0x. Chrome zero extends the devices... so 0x1800 becomes 0x00001800. | |
| // This is a hack to make things easy. | |
| ['1800', "generic_access"], | |
| ['1801', "generic_attribute"], | |
| ['1802', "immediate_alert"], | |
| ['1803', "link_loss"], |
| # get statistics in json from console | |
| ubus call traff all |
From the comments: "These exact instructions are not working on Ubuntu 24.04. Ubuntu has changed the naming of ZFS partitions, partition 2 and 3 are switched around, and the boot/efi folder is now different."
I don't have my dual-disk test system any longer, and so can't adjust these steps myself.
Ubuntu Desktop 20.04 supports a single ZFS boot drive out of the box. I wanted a ZFS mirror, without going through an entirely manual setup of Ubuntu as described by OpenZFS in their instructions for Ubuntu 20.04 and instructions for Ubuntu 22.04
| resource "azurerm_container_group" "aci_caddy" { | |
| resource_group_name = "aci_caddy" | |
| location = local.location | |
| name = "aci_caddy" | |
| os_type = "Linux" | |
| dns_name_label = "aci-caddy" | |
| ip_address_type = "public" | |
| container { | |
| name = "app" |
Just run this from your Mac terminal and it'll drop you in a container with full permissions on the Docker VM. This also works for Docker for Windows for getting in Moby Linux VM (doesn't work for Windows Containers).
docker run -it --rm --privileged --pid=host justincormack/nsenter1
more info: https://github.com/justincormack/nsenter1
| # Write local | |
| git config --local commit.gpgsign false | |
| # Read local (if never set, can be an empty value) | |
| git config --local commit.gpgsign |
| FROM mcr.microsoft.com/azure-cli:latest | |
| COPY azure-update-ddns.sh /usr/local/bin | |
| RUN chmod 755 /usr/local/bin/azure-update-ddns.sh | |
| CMD ["/usr/local/bin/azure-update-ddns.sh"] |