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 | |
| set -euo pipefail | |
| # Directory setup | |
| APP_DIR="${HOME}/Applications" | |
| ICON_DIR="${HOME}/.local/share/icons" | |
| DESKTOP_DIR="${HOME}/.local/share/applications" | |
| BIN_DIR="${HOME}/.local/bin" |
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
| /** | |
| * A script to help identifying which Analytics tables a record is stored in. | |
| * | |
| * It works by retrieving the count for every table in the account and saving that to browser local storage | |
| * The next time the script is run, it will compare the current count for each table, and identify any tables | |
| * that have changed. | |
| * | |
| * USAGE: | |
| * | |
| * This script is intended to be copied and pasted into browser dev console. I recommend using the Chrome Snippets Feature |
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
| Alt+Ctrl+T | |
| sudo apt-get update -y | |
| copy paste sudo apt-get install mono-complete -y | |
| cd ~/Downloads | |
| wget http://telerik-fiddler.s3.amazonaws.com/fiddler/fiddler-linux.zip | |
| sudo apt-get install unzip -y | |
| unzip fiddler-linux.zip\?sfvrsn\=2 -d fiddler | |
| cd fiddler/ | |
| mono Fiddler.exe |