#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/ioctl.h>
#include <linux/usbdevice_fs.h>
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
| - domain: theathletic.com | |
| injections: | |
| - position: head | |
| append: | | |
| <script> | |
| document.addEventListener("DOMContentLoaded", () => { | |
| let overlays = document.querySelectorAll('div[id*="overlay"], div:empty:not([data-rjs])'); | |
| overlays.forEach(el => el.remove()); | |
| let slideup = document.querySelectorAll('div[id^=slideup-]'); |
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/python | |
| import sys, subprocess, getopt, os, json | |
| def main(argv): | |
| script_name = os.path.basename(argv[0]) | |
| try: | |
| opts, args = getopt.getopt(argv[1:], "sw:h:q:", ["help", "solid-color", "width=", "height=", "samples="]) | |
| except getopt.GetoptError as err: |
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
| find . -type f -name '*.html.twig' | xargs perl -pi -e 's/find/replace/g' |
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
| git filter-branch --index-filter 'git rm --cached --ignore-unmatch path/to/sensitive_file' HEAD |