smart-tv.sh - Control Vestel MB211 TV from terminal.
kripto.py - i3 block for crypto currency in Turkish Liras.
recent.sh - List recent files in folders. Useful for downloads and screenshots.
turkdox.py - Check Username avaibility of turkish sites.
kali-dmenu.sh - Categorized Kali tools launcher with dmenu
databreach_checker.py - Checks new accessive databreaches
github_toilet.py - Follow everyone on github
dickscord_purge.sh - Purge your dickscord messages
board_downloader.sh - Download all medias from an imageboard
View reddit_vid.py
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
""" Use reddit video downloader sites to get | |
URL of video with sound which they generated | |
""" | |
from re import findall | |
from requests import get | |
def reddit_vid(url): | |
""" Returns URL of video with sound. """ | |
response = get("https://lew.la/reddit/") |
View kripto.py
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/env python3 | |
""" | |
[kripto] | |
label= | |
markup=pango | |
interval=60 | |
instance=BTC | |
""" |
View smart-tv.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
#!/bin/bash | |
#Get IP address of tv from searching port 56789 | |
if [ -a /tmp/toshiba_ip ];then | |
tv_ip="$(cat /tmp/toshiba_ip)" | |
else | |
tv_ip="$(nmap 192.168.1.0/24 -sT -np56789 --open -oG - | awk '/Up$/{print $2}' | tee /tmp/toshiba_ip)" | |
fi | |
#Function to send specified command key code |
View recent.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
#!/bin/bash | |
# Usage: ./recent.sh <parameters> [FOLDER] | |
SS_FOLDER="$HOME/Pictures/Screenshots/" | |
DL_FOLDER="$HOME/Downloads/" | |
list_amount=1 | |
sorter="tail" | |
while getopts "h?n:rsd" opt; do |
View My Gists.md
View turkdox.py
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/env python3 | |
# Önizleme: https://u.teknik.io/nCIrg.png | |
import requests | |
siteler = { | |
"KizlarSoruyor":"https://www.kizlarsoruyor.com/uye/", | |
"Onedio.com":"https://onedio.com/profil/", | |
"EkşiSözlük":"https://eksisozluk.com/biri/", | |
"Puiv.com":"https://www.puiv.com/k/" |
View board_downloader.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
#!/usr/bin/bash | |
# Board All Media Downloader by Jumbo | |
TARGET="https://8kun.top" | |
SUB_DOMAIN="media.8kun.top" | |
BOARD="/cyber/" | |
FORMATS="webm,mp4,jpg,png,gif" | |
curl ${TARGET}${BOARD}catalog.html | | |
grep -Eoi '<a [^>]+>' | |
View dickscord_purge.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
#!/usr/bin/bash | |
delay=0.2 | |
printf "current channel's name: #" ; read channel | |
id=`xdotool search --name "#$channel"` | |
printf "message amount to delete: " ; read n | |
sleep 1.5 | |
for i in `eval "echo {1..$n}"` | |
do | |
xdotool key --window $id Up |
View databreach_checker.py
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 | |
# a guide a friend created: https://u.teknik.io/cwplF.png | |
useragent="Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Firefox/78.0" ## change this with yours | |
url="https://raidforums.com/Thread-Be-Notified-When-Databases-Get-Added?page=last" | |
from os import listdir,chdir,path | |
chdir("./cookies") | |
cooks = listdir() |
NewerOlder