Skip to content

Instantly share code, notes, and snippets.

View happiness801's full-sized avatar

Kevin Gwynn happiness801

  • CHG Healthcare
  • Utah
View GitHub Profile
@happiness801
happiness801 / app-window-show-url.user.js
Last active July 11, 2022 18:36
Show URL at top of App Windows
// ==UserScript==
// @name Show URL at top of App Windows
// @namespace http://onai.net/
// @version 0.5
// @description Shows current URL at top of windows for easy copy and paste in App Windows
// @author Kevin Gwynn
// @match https://*.medium.com/*
// @match https://*.twitter.com/*
// @match https://*.pluralsight.com/*
// @match https://*.facebook.com/*
@happiness801
happiness801 / remove-paywalll-popmechanics.user.js
Last active July 8, 2021 07:20
Removes paywall on Popular Mechanics articles
// ==UserScript==
// @name Remove Popular Mechanics paywall
// @namespace http://onai.net/
// @version 0.1
// @description Removes paywall from popularmechanics.com
// @author Kevin Gwynn
// @match https://*.popularmechanics.com/*
// @grant none
// ==/UserScript==
@happiness801
happiness801 / bluetooth-reconnect.ps1
Created July 3, 2021 17:37
PowerShell example to disconnect/reconnect to BlueTooth device
; USE THIS TO GET THE DEVICE FRIENDLY NAME
; Get-PnpDevice | Where-Object {$_.Class -eq "Bluetooth"}
; Get the device details
$device = Get-PnpDevice | Where-Object {$_.Class -eq "Bluetooth" -and $_.FriendlyName -eq "EXACT DEVICE FRIENDLY NAME"}
; Disable the device
Disable-PnpDevice -InstanceId $device.InstanceId -Confirm:$false
; Sleep for 10
@happiness801
happiness801 / windows-vmem-high-usage.sh
Created June 2, 2021 23:43
Windows VMMEM High Usage
# This is more a note/reminder than anything.
# Helps to fix when VMMEM is using tons of RAM/CPU/power
# Stop all Docker Processes
docker stop $(docker ps -aq)
# (Windows) Stop WSL
wsl --shutdown
@happiness801
happiness801 / remove-various-ads.user.js
Last active June 2, 2021 23:18
Remove Various Ads (Yahoo, etc)
// ==UserScript==
// @name Remove Various Ad Content
// @namespace http://onai.net/
// @version 0.2
// @description Removes Various Ad content
// @author Kevin Gwynn
// @match https://*.yahoo.com/*
// @grant none
// ==/UserScript==
@happiness801
happiness801 / improve-nft-articles.user.js
Last active May 12, 2021 17:47
I created a userscript to help demystify the complexity of crypto by providing layman term translations to the jargon right inline in the articles you’re reading!
// ==UserScript==
// @name Improves articles about NFTs
// @namespace http://onai.net/
// @version 0.1
// @description Makes NFT articles easier to understand
// @author Kevin Gwynn
// @match https://techcrunch.com/*
// @grant none
// ==/UserScript==
@happiness801
happiness801 / remove-amazon-cruft.user.js
Last active March 31, 2021 17:35
Remove Amazon cruft
// ==UserScript==
// @name Remove Amazon Cruft
// @namespace http://onai.net/
// @version 0.1
// @description Removes cruft from Amazon including the Cart side-bar
// @author Kevin Gwynn
// @match https://www.amazon.com/*
// @match https://smile.amazon.com/*
// @match https://*.amazon.com/*
// @grant none
@happiness801
happiness801 / simple-nyan-cat.user.js
Last active January 28, 2021 06:03
Simple Nyan.cat
// ==UserScript==
// @name Simple nyan.cat
// @namespace http://onai.net/
// @version 0.2
// @description Simplies Nyan.cat just for fun
// @author Kevin Gwynn
// @match http://nyan.cat/*
// @match http://www.nyan.cat/*
// @grant none
// ==/UserScript==
@happiness801
happiness801 / sports24-nav-improvements.user.js
Last active January 24, 2021 01:35
Navigation conveniences for Sports24
// ==UserScript==
// @name Sports24 Navigation Improvements
// @namespace http://onai.net/
// @version 0.1
// @description Navigation conveniences for Sports24 (especially for Jazz fans)
// @author Kevin Gwynn
// @match https://sports24.club/*/
// @match https://sports24.stream/*/
// @grant none
// ==/UserScript==
@happiness801
happiness801 / remove-paywall-nytimes.user.js
Last active November 5, 2020 19:16
Remove NY Times paywall
// ==UserScript==
// @name Remove NY Times paywall
// @namespace http://onai.net/
// @version 0.4
// @description Removes paywall from nytimes.com
// @author Kevin Gwynn
// @match https://*.nytimes.com/*
// @grant none
// ==/UserScript==