Skip to content

Instantly share code, notes, and snippets.

View brucebentley's full-sized avatar

Bruce Bentley brucebentley

View GitHub Profile
@brucebentley
brucebentley / waitForKeyElements.js
Created May 30, 2022 06:15
A utility function, for Greasemonkey scripts, that detects and handles AJAXed content.
/* --- waitForKeyElements(): A utility function, for Greasemonkey scripts,
that detects and handles AJAXed content.
Usage example:
waitForKeyElements (
"div.comments"
, commentCallbackFunction
);
@brucebentley
brucebentley / README.md
Created December 14, 2021 09:08
Font Awesome Kit

Get set up, add icons and style, or fine-tune – we’ve got what you need to know to use Font Awesome icons on the web.

Setting Up on the Web

There are a few different ways to set up Font Awesome. We suggest using a kit since it's easy, fast, and customizable.

@brucebentley
brucebentley / Connecting Docker cli and Kubectl to Docker Desktop for Windows.md
Last active December 5, 2021 15:47
Setup your Windows 10 & WSL development environment(s) so that you're able to use all the various Kubernetes tooling.
@brucebentley
brucebentley / Installing AWS Tools for PowerShell on Windows.md
Last active May 22, 2023 18:26
Windows 10 Development Environment Setup

A Windows-based computer can run any of the AWS Tools for PowerShell package options:

  • AWS.Tools - The modularized version of AWS Tools for PowerShell. Each AWS service is supported by its own individual, small module, with shared support modules AWS.Tools.Common and AWS.Tools.Installer.
  • AWSPowerShell.NetCore - The single, large-module version of AWS Tools for PowerShell. All AWS services are supported by this single, large module.
  • AWSPowerShell - The legacy Windows-specific, single
@brucebentley
brucebentley / README.md
Last active August 3, 2021 06:58
Corsair's RGB hardware, iCue software & general eco-system FAQ's
@brucebentley
brucebentley / iOS Shortcuts Catalog.md
Last active April 23, 2024 06:39
This is a public resource designed to help people get started with Siri Shortcuts & the Shortcuts app. It’s made up of the Shortcuts Library, a collection of over 125+ shortcuts grouped into folders, and the Action Directory, a documentation of 125+ of the actions in the Shortcuts app used to build shortcuts.

Bruce's iOS Shortcut Catalog

Hello and welcome to my Shortcuts Catalog!

This is a public resource designed to help people get started with Siri Shortcuts and the Shortcuts app.

It’s made up of the Shortcuts Library, a collection of over 125+ shortcuts grouped into folders, and the Action Directory, a documentation of 125+ of the actions in the Shortcuts app used to build shortcuts.

Enjoy!

// ==UserScript==
// @name Buy A PS5
// @version 1.0.0
// @description A userscript that collapses markdown headers
// @author Bruce Bentley <brucebentley@me.com> (https://brucebentley.io)
// @copyright 2021, Bruce Bentley (https://github.com/brucebentley)
// @license MIT; https://opensource.org/licenses/MIT
// @namespace https://github.com/brucebentley
// @description
// @match https://www.target.com/*
@brucebentley
brucebentley / githubpull.md
Created November 19, 2020 16:13 — forked from Jabarabo/githubpull.md
Gist of a stolen gist
@brucebentley
brucebentley / Create Gist.js
Created November 17, 2020 03:59
Create Gist
// Variables used by Scriptable.
// These must be at the very top of the file. Do not edit.
// icon-color: deep-gray; icon-glyph: file-code;
// To use this script, you need to configure an OAuth App on GitHub.
// Follow the instructions on the link below to create your OAuth App.
//
// When you are asked to put in a redirect URL, you should put the URL for running this script in Scriptable. Assuming the name of this script is "Create Gist", the URL is scriptable:///run?scriptName=Create%20Gist
//
// https://developer.github.com/apps/building-oauth-apps/creating-an-oauth-app/
//
@brucebentley
brucebentley / Userscript Utilities.md
Last active January 6, 2022 05:02
Utilities used by my ever growing library of userscripts.