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 ATK Paywall Bypass | |
| // @namespace | |
| // @version 0.1 | |
| // @description Bypass America's Test Kitchen paywall | |
| // @author mlsof21 | |
| // @match https://www.americastestkitchen.com/recipes/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=githubusercontent.com | |
| // @grant none | |
| // @downloadURL https://gist.githubusercontent.com/mlsof21/6b7229d41883ce61d34ccf7930b94a99/raw/a9a10457795527c7a8212d5f06016fe276f7253f/atkPaywallBypass.js |
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
| #!/usr/bin/env bash | |
| # Sexy bash prompt by twolfson | |
| # https://github.com/twolfson/sexy-bash-prompt | |
| # Forked from gf3, https://gist.github.com/gf3/306785 | |
| # If we are on a colored terminal | |
| if tput setaf 1 &> /dev/null; then | |
| # Reset the shell from our `if` check | |
| tput sgr0 &> /dev/null |