$ terraform workspace new staging
Created and switched to workspace "staging"!
You're now on a new, empty workspace. Workspaces isolate their state,
so if you run "terraform plan" Terraform will not see any existing state
for this configuration.
View app.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import Flask, request, send_file, jsonify | |
import hashlib | |
import requests | |
import json | |
from PIL import Image | |
from io import BytesIO | |
from geolite2 import geolite2 | |
app = Flask(__name__) |
View encrypt_ansible_yaml_string.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import yaml | |
from ansible.parsing.vault import VaultLib, VaultSecret | |
from ruamel.yaml import YAML | |
from ruamel.yaml.scalarstring import LiteralScalarString | |
def custom_literal_presenter(dumper, data): | |
return dumper.represent_scalar('tag:yaml.org,2002:str', data, style='|') |
View code.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from time import sleep | |
import board | |
import neopixel | |
from adafruit_pixel_framebuf import PixelFramebuffer | |
from pumpkin import pumpkins_tileset_data, pumpkin_palette | |
pixel_pin = board.D10 | |
pixel_width = 16 | |
pixel_height = 16 |
View gist:baca6d8cd4aaaf69bc13a8059a5433b6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# [include Macros.cfg] # You have to copy it /home/pi/klipper_config https://www.klipper3d.org/Config_Reference.html#include | |
# [include client_macros.cfg] # These macros are required for Fluidd to correctly function. | |
# This is a Klipper configuration for Qidi X-Max, with | |
# V4.6 motherboard. with the cooperation of Funkton and oaba200 | |
# instruction https://github.com/KevinOConnor/klipper/blob/master/docs/Config_Reference.md | |
[mcu] | |
restart_method: command | |
serial: /dev/ttyS0 |
View usermod_v2_rotary_encoder_ui.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include "wled.h" | |
// | |
// Inspired by the v1 usermods | |
// * rotary_encoder_change_brightness | |
// * rotary_encoder_change_effect | |
// | |
// v2 usermod that provides a rotary encoder-based UI. |
View instance.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "google_compute_network" "nat" { | |
project = var.gcp_project_id | |
name = "nat" | |
} | |
resource "google_compute_router" "nat" { | |
project = var.gcp_project_id | |
name = "nat" | |
network = google_compute_network.nat.self_link | |
} |
View maybe_2020_is_year_of_the_linux_desktop?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I built a HEDT Windows PC late 2019 and wanted to start using it as a development environment in addition to games. It's got a Threadripper 2950X, Nvidia 2080 Ti, 64 GB memory, and 2 x Samsung 970 Pro NVMe SSDs (one dedicated to Windows 10, one to Ubuntu). These are my notes after week one of installation and usage as a work environment (Python development, DevOps, remote administration, and hopefully some video / media transcoding and manipulation). I come from a Macbook Pro as my primary work / development machine. | |
• No LVM in normal ISO? Had to use alternative "netinstall" ISO...OK. | |
• Can't click dismiss on initial WiFi notification... dismiss button broken? | |
• Change time from 24 hour to AM/PM. Status bar shows AM/PM but desktop still shows 24 hour... | |
• Xorg Nvidia driver by default, terrible resolution. Use nvidia proprietary. Reboot. | |
• Looks good but refresh rate 60hz? Manually change to 144. | |
• Refresh rate changes back to 60 on logout and back to 144 on login... How to make system wide? | |
• SSH keys not |
View README.md
View BYEQUICKSWITCHER.md
These instructions will help you get rid of the Slack quick-switcher on macOS. Slack 4.0.0 introduces a different packing mechanism which adds some steps. But both sets of steps will use the following JavaScript snippet:
document.addEventListener("DOMContentLoaded", function() {
let customCustomCSS = `
div.p-channel_sidebar__navigation_bar {
display: none;
}
`
View garager.ino
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This #include statement was automatically added by the Particle IDE. | |
#include <blynk.h> | |
// This #include statement was automatically added by the Particle IDE. | |
#include <RelayShield.h> | |
RelayShield myRelays; | |
LEDStatus blinkRed(RGB_COLOR_RED, LED_PATTERN_BLINK); | |
char auth[] = "e2f9e87c65c04d9f8ae6c05c46af0271"; |
NewerOlder