This file contains hidden or 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
// ==UserScript== | |
// @name Remove Pearson Nag | |
// @namespace https://gist.github.com/JordanPlayz158 | |
// @version 2024-09-10 | |
// @description Remove Pearson's Nag message about unsupported OS as aren't browsers meant to abstract the OS? And no Pearson features seem to be broken on unsupported OS | |
// @author JordanPlayz158 | |
// @match https://*.pearson.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=pearson.com | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or 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
#!/bin/bash | |
privateIpv4Prefixes=(10 | |
172 | |
192) | |
# There should be 6 for every prefix | |
# One for each octet | |
# 10.0.0.0/8 - 10.0.0.0 - 10.255.255.255 | |
privateIpv4Ranges=(0 255 0 255 0 255 | |
# 172.16.0.0/12 - 172.16.0.0 - 172.31.255.255 |