Let's say you want to host domains first.com
and second.com
.
Create folders for their files:
--- | |
version: "2" | |
services: | |
emby: | |
image: ghcr.io/linuxserver/emby | |
container_name: emby | |
environment: | |
- PUID=1026 | |
- PGID=100 | |
- TZ=America/Denver |
#!/bin/bash | |
# NOTICE, EASY WAY FIRST: sudo apt install gnome-session-wayland | |
# If easy way not work try this below: | |
################# 0 - Preparation ################## | |
# Update and PPA | |
sudo add-apt-repository -y ppa:wayland.admin/daily-builds; \ | |
apt update; \ | |
# | |
# Depends | |
sudo apt install -y doxygen xmlto; \ |
############################################################################## | |
# History Configuration | |
############################################################################## | |
HISTSIZE=5000 #How many lines of history to keep in memory | |
HISTFILE=~/.zsh_history #Where to save history to disk | |
SAVEHIST=5000 #Number of history entries to save to disk | |
#HISTDUP=erase #Erase duplicates in the history file | |
setopt appendhistory #Append history to the history file (no overwriting) | |
setopt sharehistory #Share history across terminals | |
setopt incappendhistory #Immediately append to the history file, not just when a term is killed |
#!/usr/bin/python3 | |
import dns.resolver | |
import random, time | |
dns.resolver.nameservers = ['localhost'] | |
letters= [chr(ord('a')+i) for i in range(26)] | |
types = ['NS', 'A', 'AAAA', 'MX'] | |
qps = 1 | |
while True: |
ip | status | country | as_name | |
---|---|---|---|---|
195.54.160.149 | validated | RU | OOO Network of data-centers Selectel | |
167.71.13.196 | validated | NL | DIGITALOCEAN-ASN | |
157.90.35.190 | validated | DE | Hetzner Online GmbH | |
34.65.121.142 | validated | CH | GOOGLE-CLOUD-PLATFORM | |
175.6.210.66 | validated | CN | Hengyang | |
197.246.175.231 | validated | EG | Noor Data Networks | |
45.155.205.233 | validated | RU | OOO Network of data-centers Selectel | |
164.52.53.163 | validated | SG | CDSC-AS1 | |
45.146.164.160 | validated | RU | OOO Network of data-centers Selectel |
# Noob Web Deploy | |
# Made by @Tester2009 | |
# February 26, 2019 | |
# backup first from VPS backup_public | |
echo "Start backup remote to local" | |
rsync -ravz --relative --progress -e 'ssh -i /Users/tester2009/.ssh/tester2009.pem' [email protected]:/home/ubuntu/backup_public/ /Volumes/Backups/26Feb2019 | |
echo "Done backup from /home/ubuntu/backup_public/" |
import time | |
from selenium import webdriver | |
from selenium.webdriver import ActionChains | |
from selenium.webdriver.chrome.options import Options | |
if __name__ == '__main__': | |
# 1. Optional Options (Useful for development testing) | |
options = Options() | |
options.add_argument("--disable-web-security") |
# set the Windows Update service to "disabled" | |
sc.exe config wuauserv start=disabled | |
# display the status of the service | |
sc.exe query wuauserv | |
# stop the service, in case it is running | |
sc.exe stop wuauserv | |
# display the status again, because we're paranoid |