w: show who is logged on and what they are doingwho: show who is logged ontty: show current users pseudo terminalps -ft pts/1: get process id for the pseudo terminalpkill: signal process based on name and other attributes
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
| version: "3.7" | |
| services: | |
| pihole: | |
| container_name: pihole | |
| image: pihole/pihole:latest | |
| dns: 127.0.0.1 | |
| restart: unless-stopped | |
| links: | |
| - unbound |
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 | |
| # | |
| # INFO | |
| # | |
| # This works if sonarr and radarr are set up to have a Category of sonarr and radarr respectively | |
| # If you are using other Categories to save your automated downloads, update the script where you see: | |
| # "radarr"|"sonarr") | |
| # This script will not touch anything outside those Categories |
This file has been truncated, but you can view the full file.
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
| Windows Registry Editor Version 5.00 | |
| [HKEY_CURRENT_USER\Software\MPC-BE] | |
| @=dword:00000001 | |
| [HKEY_CURRENT_USER\Software\MPC-BE\Capture] | |
| "VidDispName"="@device:pnp:\\\\?\\usb#vid_04ca&pid_7025&mi_00#7&1e983a4a&0&0000#{65e8773d-8f56-11d0-a3b9-00a0c9223196}\\global" | |
| "AudDispName"="" | |
| "Country"=dword:00000001 |
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 | |
| # Clears finished downloads from Transmission. | |
| # Version: 1.1 | |
| # | |
| # Newest version can always be found at: | |
| # https://gist.github.com/pawelszydlo/e2e1fc424f2c9d306f3a | |
| # | |
| # Server string is resolved in this order: | |
| # 1. TRANSMISSION_SERVER environment variable |
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 | |
| # Modified Pi-hole script to generate a generic hosts file | |
| # for use with dnsmasq's addn-hosts configuration | |
| # original : https://github.com/jacobsalmela/pi-hole/blob/master/gravity-adv.sh | |
| # The Pi-hole now blocks over 120,000 ad domains | |
| # Address to send ads to (the RPi) | |
| piholeIP="192.168.1.1" | |
| outlist='./final_blocklist.txt' |
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
| I would like to recommend checking out https://librewolf.net/ instead of Firefox due to recent controversies. Give it a go. | |
| Disabling telemetry takes a little more work but can be accomplished in about five minutes. Type "about:config" in the address bar, and you will be notified that you could void your warranty (Firefox has a warranty?). Click on "I accept the risk." Type in "telemetry" in the search bar to see the results. Only some can be changed, and according to Mozilla, they are: | |
| browser.newtabpage.activity-stream.feeds.telemetry | |
| browser.newtabpage.activity-stream.telemetry | |
| browser.ping-centre.telemetry | |
| toolkit.telemetry.archive.enabled | |
| toolkit.telemetry.bhrPing.enabled | |
| toolkit.telemetry.enabled |
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 | |
| # script to check for complete torrents in transmission folder, then stop and move them | |
| # either hard-code the MOVEDIR variable here… | |
| MOVEDIR=/home/mjdescy/media # the folder to move completed downloads to | |
| # …or set MOVEDIR using the first command-line argument | |
| # MOVEDIR=%1 | |
| # use transmission-remote to get torrent list from transmission-remote list | |
| # use sed to delete first / last line of output, and remove leading spaces | |
| # use cut to get first field from each line |
- Open Chrome Developer tools and click the Network tab.
- Navigate to the page with the video and get it to start playing.
- Filter the list of files to "m3u8".
- Find master.m3u8 or index.m3u8 and click on it.
- Save the file to disk and look inside it.
- If the file contains a single m3u8 master url, copy that one instead.
- Run the program m3u8x.
- Paste the same m3u8 url in both textboxes (URL and Quality URL) and click "Headers" and set the referral url and user-agent from the request as found in Chrome.
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
| // Turn off "Sends data to servers when leaving pages" | |
| user_pref("beacon.enabled", false); | |
| // Prevention of some telemetry related to the newtab | |
| user_pref("browser.newtabpage.directory.ping", ""); | |
| user_pref("browser.newtabpage.directory.source", ""); | |
| user_pref("browser.newtabpage.enhanced", false); | |
| // "In the release channels the Mozilla location service is used to help in figuring out regional search defaults." | |
| // Which means sending collectable data |
OlderNewer