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
[Configuration] | |
MiscAlwaysShowTabs=FALSE | |
MiscBell=FALSE | |
MiscBellUrgent=FALSE | |
MiscBordersDefault=TRUE | |
MiscCursorBlinks=FALSE | |
MiscCursorShape=TERMINAL_CURSOR_SHAPE_BLOCK | |
MiscDefaultGeometry=80x24 | |
MiscInheritGeometry=FALSE | |
MiscMenubarDefault=TRUE |
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
CONFIG_MODULES=y | |
CONFIG_HAVE_DOT_CONFIG=y | |
CONFIG_TARGET_ar71xx=y | |
CONFIG_TARGET_ar71xx_generic=y | |
CONFIG_TARGET_MULTI_PROFILE=y | |
CONFIG_TARGET_DEVICE_ar71xx_generic_DEVICE_tl-wr841-v1.5=y | |
CONFIG_TARGET_DEVICE_ar71xx_generic_DEVICE_tl-wr841-v10=y | |
CONFIG_TARGET_DEVICE_ar71xx_generic_DEVICE_tl-wr841-v11=y | |
CONFIG_TARGET_DEVICE_ar71xx_generic_DEVICE_tl-wr841-v3=y | |
CONFIG_TARGET_DEVICE_ar71xx_generic_DEVICE_tl-wr841-v5=y |
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
CONFIG_TARGET_ar71xx=y | |
CONFIG_TARGET_ar71xx_generic=y | |
CONFIG_TARGET_MULTI_PROFILE=y | |
CONFIG_TARGET_DEVICE_ar71xx_generic_DEVICE_tl-wa701nd-v1=y | |
CONFIG_TARGET_DEVICE_ar71xx_generic_DEVICE_tl-wa701nd-v2=y | |
CONFIG_TARGET_DEVICE_ar71xx_generic_DEVICE_tl-wr740n-v1=y | |
CONFIG_TARGET_DEVICE_ar71xx_generic_DEVICE_tl-wr740n-v3=y | |
CONFIG_TARGET_DEVICE_ar71xx_generic_DEVICE_tl-wr740n-v4=y | |
CONFIG_TARGET_DEVICE_ar71xx_generic_DEVICE_tl-wr740n-v5=y | |
CONFIG_TARGET_DEVICE_ar71xx_generic_DEVICE_tl-wr740n-v6=y |
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
function FindProxyForURL(url, host) { | |
return 'HTTPS 77.111.247.71:443'; | |
} |
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
idex.auroradao.market | |
auroradao.market | |
getyourcoins.org | |
binance-giveaway.webcindario.com | |
gift-today.website | |
cryptopromo.kissr.com | |
etherium.org.payment.7t21-srv.site | |
7t21-srv.site | |
top-deals.pro | |
medium.com.7t21-srv.site |
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
user www-data; | |
worker_processes auto; | |
pid /run/nginx.pid; | |
events { | |
worker_connections 768; | |
# multi_accept on; | |
} | |
http { |
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/env python | |
import sys | |
import urllib.request | |
import hashlib | |
password = sys.argv[1] | |
passwordHashed = hashlib.sha1(password.encode('utf-8')).hexdigest().upper() | |
def fetchPwnedCount(passwordHashed): | |
passwordHashedKAnonymity = passwordHashed[:5] |
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
import RPi.GPIO as GPIO | |
from time import sleep | |
GPIO.setmode(GPIO.BCM) | |
GPIO.setup(24, GPIO.OUT) | |
try: | |
while 1: | |
GPIO.output(24, 1) | |
sleep(0.1) |
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
[root@odroidhc1 system]# cat ppp-watcher.service | |
[Unit] | |
Description=NetworkManager PPPoE Watcher | |
[Service] | |
TimeoutStopSec=2 | |
ExecStart=/usr/local/bin/ppp-watcher | |
[Install] | |
WantedBy=multi-user.target |