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
| Here because I don't want the gist to be titled .gitignore lol |
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
| # Compilation of r/pihole User's Top-10 blocked domains. | |
| ssl-bbcsmarttv.2cnt.net | |
| tlx.3lift.com | |
| graph.accountkit.com | |
| app.adjust.com | |
| ib.adnxs.com | |
| fls-na.amazon.com | |
| mads.amazon.com | |
| unagi-na.amazon.com |
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/sh | |
| # Configure homebrew permissions to allow multiple users on MAC OSX. | |
| # Any user from the admin group will be able to manage the homebrew and cask installation on the machine. | |
| # allow admins to manage homebrew's local install directory | |
| chgrp -R admin /usr/local | |
| chmod -R g+w /usr/local | |
| # allow admins to homebrew's local cache of formulae and source files | |
| chgrp -R admin /Library/Caches/Homebrew |
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 | |
| # | |
| # Update to latest chromium nightly on linux | |
| # Script requires root to properly set up the sandbox | |
| # https://code.google.com/p/chromium/wiki/LinuxSUIDSandboxDevelopment | |
| # | |
| # I use it with a line like the following in my .bashrc: | |
| # alias canary='CHROME_DEVEL_SANDBOX="/home/tif/bin/chrome-linux/chrome_sandbox" /home/tif/bin/chrome-linux/chrome-wrapper' | |
| # | |
| # ---------------------------------------------------------------------- |