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
javascript: (function() { | |
var url = window.location.href; | |
var key = '_escaped_fragment_'; | |
var value = ''; | |
url = updateQueryStringParameter(url, key, value); | |
window.location.href = url; |
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 | |
# View Delimiter | |
DLM='-------------------------------------' | |
# Set Output Colors | |
red=`tput setaf 1` | |
green=`tput setaf 2` | |
blue=`tput setaf 4` | |
cyan=`tput setaf 6` |