Skip to content

Instantly share code, notes, and snippets.

View ndbroadbent's full-sized avatar

Nathan Broadbent ndbroadbent

View GitHub Profile
@ndbroadbent
ndbroadbent / circleci_pipeline_status
Last active November 16, 2022 03:08
Scripts to fetch failed CircleCI pipelines and run failing steps locally. Supports RSpec (parallel), RuboCop, Rswag (Swapper API specs), bundle-audit, and shellcheck
#!/bin/bash
set -eo pipefail
CURRENT_DIR="$(realpath "$(dirname "$0")")"
ROOT_DIR="$(realpath "$CURRENT_DIR"/..)"
DEBUG=""
debug() {
if [ "$DEBUG" != "true" ]; then return; fi
echo "[DEBUG] $(date -u +"%Y-%m-%d %H:%M:%S") $*" >&2
}
@ndbroadbent
ndbroadbent / make_links_clickable.js
Created November 14, 2022 04:08
Tampermonkey script: Make CircleCI links clickable
@ndbroadbent
ndbroadbent / run_failed_gitlab_pipeline_specs.sh
Created November 5, 2022 02:28
Script to fetch the latest failed CI pipeline and run all the failing steps locally (RSpec, Rubocop, etc.)
#!/bin/bash
set -eo pipefail
CURRENT_DIR="$(realpath $(dirname "$0"))"
ROOT_DIR="$(realpath $CURRENT_DIR/..)"
# https://gitlab.com/*********/**********
PROJECT_ID="**********"
if ! [ -f "$ROOT_DIR/.gitlab-api-token" ]; then
echo "Please create a file named .gitlab-api-token in $ROOT_DIR, containing your GitLab API token" >&2
@ndbroadbent
ndbroadbent / MIT_LICENSE
Last active October 30, 2022 05:31
E24 Resistor Pack Ring Binder HTML / CSS
Copyright 2022 Nathan Broadbent. All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of this PDF document, software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE PDF AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR I
@ndbroadbent
ndbroadbent / rails_helper.rb
Created October 12, 2022 21:20
Configure RSpec to crash on any JS errors or warnings
# Inspired by https://medium.com/@coorasse/catch-javascript-errors-in-your-system-tests-89c2fe6773b1
IGNORED_BROWSER_LOGS = [
'You may test your Stripe.js integration over HTTP. However, live Stripe.js integrations must use HTTPS.',
].freeze
RSpec.configure do |config|
config.after :each, js: true do
errors = page.driver.browser.manage.logs.get(:browser)
next if errors.blank?
@ndbroadbent
ndbroadbent / header_length_enforcer.rb
Created September 29, 2022 08:56
Rack middleware to enforce header length
# frozen_string_literal: true
# Only used during test and development. Ensures we never receive or respond with
# header data that is over 4k.
# See: https://community.convox.com/t/getting-502-bad-gateway-errors-for-one-page-on-v3-rack-app-responds-with-200-and-the-page-works-fine-on-v2-rack/841
module Rack
class HeaderLengthEnforcer
class HeadersTooLargeError < StandardError; end
NGINX_HEADER_LENGTH_LIMIT = 4000
@ndbroadbent
ndbroadbent / ha_compile_jinja.service
Last active November 2, 2023 16:36
Script to compile and format *.yaml.jinja files in Home Assistant config directory (Including systemd service)
[Unit]
Description=Compile Jinja templates to YAML in Home Assistant config directory
After=network.target
StartLimitIntervalSec=0
[Service]
Type=simple
Restart=always
RestartSec=3
ExecStart=/opt/ha_compile_jinja.sh
@ndbroadbent
ndbroadbent / karabiner-elements-enter-fnfn.json
Last active September 8, 2022 23:19
Karabiner-Elements rule - Double press keypad_enter to press Fn twice and start dictation
{
"title": "Double tap keypad_enter to double tap fn (start dictation.) Single tap for keypad_enter after a short delay (250ms.)",
"rules": [
{
"description": "This rule solves a problem with the Microsoft Surface Ergonomic Keyboard. The `Fn` key can't be used to start dictation, since it only toggles an internal state on and off, and it does not actually send any keypress event. This rule allows you to start dictation by double tapping the keypad enter key, which will send Fn twice. If you only press the keypad enter key once, it will send the original enter key after a short delay (250ms).",
"manipulators": [
{
"conditions": [
{
"name": "keypad_enter pressed",
@ndbroadbent
ndbroadbent / rangehood.yaml
Created September 6, 2022 23:51
Rangehood ESP32 Controller - ESPHome Configuration
esphome:
name: rangehood
includes:
- rangehood_button_leds.h
esp32:
board: nodemcu-32s
framework:
type: arduino
@ndbroadbent
ndbroadbent / run_failed_gitlab_pipeline_specs.sh
Created April 4, 2022 02:55
run_failed_gitlab_pipeline_specs
#!/bin/bash
set -eo pipefail
CURRENT_DIR="$(realpath $(dirname "$0"))"
ROOT_DIR="$(realpath $CURRENT_DIR/..)"
# https://gitlab.com/docspring/docspring
PROJECT_ID="1908805"
GITLAB_TOKEN=$(cat $ROOT_DIR/.gitlab-api-token)