Skip to content

Instantly share code, notes, and snippets.

View blueyes27's full-sized avatar

blueyes blueyes27

View GitHub Profile
@davFaithid
davFaithid / ._Streamages
Last active January 31, 2026 14:20
Download Netflix, Amazon, and Hulu Images
Here because I don't want the gist to be titled .gitignore lol
@blakev
blakev / r-pihole_top10.txt
Last active May 8, 2022 20:50
/r/pihole's Top 10 blocklist. 2020-04-07
# 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
@jaibeee
jaibeee / brew-perms.sh
Last active April 2, 2026 08:29
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.
#!/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
@tifletcher
tifletcher / update_canary.sh
Created February 10, 2014 20:29
chrome canary for linux
#!/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'
#
# ----------------------------------------------------------------------