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 / remove-google-ads-and-nags.user.js
Last active November 22, 2021 23:06
Remove ads, nags from Gmail, Google
// ==UserScript==
// @name remove-google-ads-and-nags.user.js
// @namespace http://onai.net/
// @version 0.5
// @description Remove ads, nags from Gmail, Google.com
// @author Kevin Gwynn
// @match https://mail.google.com/*
// @match https://www.google.com/*
// @match https://calendar.google.com/*
// @grant none
@happiness801
happiness801 / sportsurge-improvements.user.js
Last active November 3, 2021 03:22
Sportsurge Improvements
// ==UserScript==
// @name Sportsurge Improvements
// @namespace http://onai.net/
// @version 0.1
// @description Removing junk for Sportsurge
// @author Kevin Gwynn
// @match https://sportsurge.net/*
// @grant none
// ==/UserScript==
@happiness801
happiness801 / sports24-remove-cruft.user.js
Last active October 3, 2021 22:03
Remove Cruft from Sports24 Video Streaming
// ==UserScript==
// @name Sports24 Cruft
// @namespace http://onai.net/
// @version 0.7
// @description Remove cruft from Sports24 video streaming
// @author Kevin Gwynn
// @match https://sports24.club/*/**/*.html
// @match https://sports24.stream/*/**/*.html
// @match https://sports24.club/**/*.html
// @match https://sports24.stream/**/*.html
@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==