- Install the USB drivers for your device (Google has a list of some universal USB drivers here)
- Download the ADB binary for your particular OS (Windows, Mac, Linux)
- Extract the zip file into a folder that you can quickly access.
- On your phone, go to Settings and tap on About Phone. Find the Build Number and tap on it 7 times to enable Developer Options.
- Now enter Developer Options and find USB Debugging. Enable it.
- On your computer, browse to the directory where you extracted the ADB binary.
- Launch a Command Prompt in your ADB folder. For Windows users, this can be done by holding Shift and Right-clicking then selecting the “open command prompt here” option.
- Once you’re in the command
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 | |
from bs4 import BeautifulSoup as bs | |
import re | |
from requests import get | |
class dictionary: | |
def remove_non_ascii(self,text): | |
return re.sub(r'[^\x00-\x7F]+','', text) |
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
romaji | hiragana | |
---|---|---|
a | あ | |
i | い | |
u | う | |
e | え | |
o | お | |
ka | か | |
ki | き | |
ku | く | |
ke | け |
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
rem to disable private dns | |
adb shell settings put global private_dns_mode off | |
rem to enable private dns with hostname (example with dns.adguard.com) | |
adb shell settings put global private_dns_mode hostname | |
adb shell settings put global private_dns_specifier dns.adguard.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
# Docker compose to set up containers for all services you need: | |
# VPN | |
# Sonarr, Radarr, Lidarr, Qbittorrent | |
# Non-VPN | |
# Plex, get_iplayer | |
# Before running docker-compose, you should pre-create all of the following folders. | |
# Folders for Docker State: | |
# /volume1/dockerdata. - root where this docker-compose.yml should live | |
# /volume1/dockerdata/plex - Plex config and DB | |
# /volume1/dockerdata/sonarr - Sonarr config and DB |
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
title | country | mbfc_page | bias_raw | Factual | Ideology | url | |
---|---|---|---|---|---|---|---|
Alliance for Justice (AFJ) | USA | left | left8 | High | L | https://www.afj.org/ | |
Act.TV | USA | left | left4 | MostlyFactual | L | http://act.tv | |
ACHNews | USA | left | left8 | MostlyFactual | L | https://achnews.org/ | |
AlterNet | USA | left | left2 | Mixed | L | https://www.alternet.org/ | |
Al DIA | USA | left | left4 | Mixed | L | https://aldianews.com | |
Aftonbladet | Sweden | left | left9 | Mixed | L | https://www.aftonbladet.se | |
Alt News | India | left | left10 | High | L | https://www.altnews.in | |
Amandla | South Africa | left | left7 | High | L | http://aidc.org.za/amandla-media/ | |
ANX Media (American News X) | USA | left | left3 | Mixed | L | http://anx.media/ |
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
--- | |
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: recyclarr | |
namespace: media | |
data: | |
recyclarr.yaml: | | |
sonarr: | |
sonarr-main: |