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
freegeoip.net^$important | |
intercom.io^$important | |
openstat.net/cnt.js^$important | |
yastatic.net/share2/share.js^$important | |
top-fwz1.mail.ru^$important | |
ad.mail.ru^$important | |
an.yandex.ru^$important | |
ads.adfox.ru^$important | |
||advarkads.com^$important |
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/sh | |
######################################################################################################### | |
## WARNING: Script maybe outdated use following github repository: | |
## https://github.com/a2nt/russian-routing | |
######################################################################################################### | |
# Routes RU-servers traffic without VPN | |
# Must be launched as root after connecting to VPN | |
# sudo ./routing.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
// Google material colors Ref: https://material.io/design/color/ | |
// npm install material-design-color | |
@import "~material-design-color/material-color.scss"; | |
// Bootstrap Color system adapter | |
$white: $clr-white !default; | |
$gray-100: map-get($clr-grey-list, "100") !default; | |
$gray-200: map-get($clr-grey-list, "200") !default; | |
$gray-300: map-get($clr-grey-list, "300") !default; |
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
##################### Optimized Linux Kernel 5.5. config + desktop patch Dell XPS 9360 ############# | |
# | |
# Patch reference: https://gitlab.com/post-factum/pf-kernel/-/wikis/README | |
# | |
################## Instruction ###################################### | |
# | |
#### Download kernel and desktop optimization patch ############################ | |
# | |
# wget https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.5.6.tar.xz | |
# tar -xf ./linux-5.5.6.tar.xz |
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
127.0.0.1 watch.telemetry.mos.ru | |
127.0.0.1 telemetry.mos.ru | |
127.0.0.1 api.identix.one | |
127.0.0.1 identix.one | |
127.0.0.1 id.megafon.ru | |
127.0.0.1 welcome.megafonnw.ru | |
127.0.0.1 wap.megafon.ru | |
127.0.0.1 szfwp.megafon.ru | |
127.0.0.1 zg.megafon.ru |
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
#!/usr/bin/python3 | |
import time | |
import stat | |
import os | |
import hashlib | |
import math | |
import argparse | |
import sys | |
version = "0.8.1" |
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/sh | |
# Store duplicate file clean up script at /home/tony/bin/dff.py (ref: https://gist.github.com/a2nt/a47451bbe6814336003dcbeefccd5fe7) | |
# Setup synching to receive new files from mobile to /home/tony/Music/Receive at your local PC | |
# Setup synching at PC and Mobile to sync/receive files with /home/tony/Music/Synced | |
# Create folder /home/tony/Music/Synced/Latest to store and sync 30 latest files | |
# Store your music library at /home/tony/Music/Library | |
# Store your favorite Music at /home/tony/Music/Synced | |
# Add this script to crontab |
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
0.0.0.0 api.surfeasy.com | |
0.0.0.0 opera-proxy.net | |
0.0.0.0 api.sec-tunnel.com | |
0.0.0.0 sitecheck2.opera.com | |
0.0.0.0 opera-mini.net | |
0.0.0.0 exchange.opera.com | |
0.0.0.0 features.opera-api.com |
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 | |
GITHUB_USERNAME='' | |
GITHUB_TOKEN='' | |
GITHUB_ORGANISATION='' | |
GITEA_USERNAME='' | |
GITEA_TOKEN='' | |
GITEA_DOMAIN='domain.com' | |
GITEA_REPO_OWNER='' |
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/sh | |
############## EASY Debian Linux UEFI setup ############## | |
# | |
# Moves latest kernel dracut EFI to Linux.efi | |
# To ease BIOS setup | |
# | |
# NOTE: By default EFI partition is mounted at /boot/efi | |
# | |
### INSTALL |