Skip to content

Instantly share code, notes, and snippets.

@lorens247
lorens247 / gist:46ab6d65912976f55bac79c9ba01cafa
Created May 31, 2024 11:42
Ubuntu 24.04 Bluetooth Issues (Not Connecting To Bluetooth Device)
### Hard Refresh
## End Service (If it is running)
sudo systemctl stop bluetooth.service
## Removes Hardware Emulation
sudo systemctl unmask bluetooth.service
## Start Service
sudo systemctl start bluetooth.service
@TheFlyingDeutchMan
TheFlyingDeutchMan / coffeerun.py
Last active March 5, 2020 05:17
coffeerun script
#!/usr/bin/env python3
import os
from pprint import pprint
# clear the screen on script start
os.system('cls' if os.name == 'nt' else 'clear')
# SCRIPT EXPLANATION:
#
@thegedge
thegedge / example-use.tf
Last active August 29, 2015 14:27
Terraform zone module
resource "terraform_remote_state" "region" {
backend = "s3"
config {
bucket = "foo"
key = "bar"
region = "us-east-1"
}
}
module "sub1_zone" {