- uBlock Origin - https://github.com/gorhill/uBlock
- media.peerconnection.enabled = false
- privacy.resistfingerprinting = false
- security.ssl3.rsa_des_ede3_sha = false
- security.ssl.require_safe_negotiation = true
- security.tls.version.min = 3
# Store initial working directory path | |
export START_PATH=$PWD | |
# Get dependencies | |
sudo apt-get install -y git g++ cmake ninja-build libx11-dev libxcursor-dev libxi-dev libgl1-mesa-dev libfontconfig1-dev | |
# Build skia | |
mkdir $HOME/deps | |
cd $HOME/deps | |
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git |
# This will install a Minecraft 1.16.5 vanilla server on Termux and launch it | |
pkg install apt curl wget openssl-tool proot -y && hash -r && wget https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Scripts/Installer/Ubuntu/ubuntu.sh && bash ubuntu.sh | |
chmod +x start-ubuntu.sh | |
./start-ubuntu.sh | |
apt install software-properties-common -y | |
add-apt-repository ppa:openjdk-r/ppa -y && apt update | |
apt install openjdk-8-jre -y | |
cd ~ && mkdir mc_server && cd mc_server | |
wget https://launcher.mojang.com/v1/objects/1b557e7b033b583cd9f66746b7a9ab1ec1673ced/server.jar | |
echo "eula=true" > eula.txt |
import socket | |
import sys | |
import threading | |
import struct | |
PACKETS = { | |
"send" :{ | |
"handshake": {}, | |
"login": {}, | |
"play": {} |
from bs4 import BeautifulSoup | |
from lxml import html as htm | |
import requests | |
html = BeautifulSoup(requests.get('https://optifine.net/downloads').content, 'html.parser') | |
entries = html.find_all('td', class_='colMirror') | |
links = [] | |
for e in entries: | |
links.append(e.a['href']) |
by Energyxxer
echo "MAKE SURE TO RUN THIS AS ADMINISTRATOR!" | |
echo "Setting up execution policy rules and installing chocolatey..." | |
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
echo "Installing GNU IceCat" | |
choco install icecat | |
echo "Done." |
Realtek Audio Driver for Windows 10 (64-bit)
https://download.lenovo.com/consumer/mobiles/bcyc06af06wg.exe
Bluetooth Driver (Intel, Realtek, Atheros) for Windows 10 (64-bit)
https://download.lenovo.com/consumer/mobiles/b4y004af07gu.exe
Camera Driver (Realtek, Sonix) for Windows 10 (64-bit)
#!/usr/bin/env bash | |
# First line of the script is the shebang which tells the system how to execute | |
# the script: http://en.wikipedia.org/wiki/Shebang_(Unix) | |
# As you already figured, comments start with #. Shebang is also a comment. | |
# Simple hello world example: | |
echo Hello world! # => Hello world! | |
# Each command starts on a new line, or after a semicolon: | |
echo 'This is the first line'; echo 'This is the second line' |
import socket | |
class Webserver: | |
def __init__(self, host: str = '0.0.0.0', port: int = 8080): | |
self.host = host | |
self.port = port | |
self._socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
self._socket.bind((self.host, self.port)) |