This file contains 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
hp() { | |
~/headphones.sh | |
} |
This file contains 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
<!DOCTYPE html> | |
<html lang="en" style="height: 100%; display: flex; flex-direction: column; justify-content: center"> | |
<head> | |
<meta http-equiv="refresh" content="0; url=https://example.com/" /> | |
</head> | |
<body style="margin: 0"> | |
<p style="text-align: center"> | |
Скоро вы будете перенаправлены на сайт.<br /> |
This file contains 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 | |
# this file need to be stored in /etc/profile.d | |
# variables below must be initialized in order to make script working | |
CHAT_ID="" | |
BOT_TOKEN="" | |
DATE_EXEC="$(date "+%d %b %Y %H:%M")" |
This file contains 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.6' | |
services: | |
tinyproxy: | |
image: serjs/go-socks5-proxy | |
restart: unless-stopped | |
ports: | |
- 8888:1080 | |
environment: | |
PROXY_USER: awesome_user | |
PROXY_PASSWORD: awesome_password |
This file contains 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 | |
set +H | |
# install required packages | |
apt-get update | |
apt-get -y install docker.io | |
# run 3x-ui Docker container |
This file contains 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 | |
# required Chrome version can be found here: | |
# https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable | |
CHROME_VERSION="" | |
wget --no-check-certificate \ | |
https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb |
This file contains 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
// Thanks to: https://siberianlaika.ru/node/29/ | |
package main | |
import ( | |
"fmt" | |
"net/http" | |
"net/http/httputil" | |
"net/url" | |
"os" |
This file contains 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 | |
GREEN_COLOR="\033[0;32m" | |
NO_COLOR="\033[0m" | |
# variables below must be initialized in order to make script working | |
GITHUB_USERNAME="" | |
GITHUB_PAGES_REPO="" |