smart-tv.sh - Control Vestel MB211 TV from terminal.
cs2_trigger.py - CS2 Trigger bot for linux
proxy.ps1 - Apache forward proxy server setup with auth for win.
kali-dmenu.sh - Categorized Kali tools launcher with dmenu
tureng.sh - 14 line tureng dictionary script that works.
databreach_check.py - Checks new accessive databreaches
recent.sh - List recent files in folders. Useful for downloads and screenshots.
turkdox.py - Check Username avaibility of turkish sites.
kripto.py - i3 block for crypto currency in Turkish Liras.
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
""" | |
CS2 Triggerbot for linux by Github/KebabLord | |
Usage: | |
$ pip install pynput keyboard | |
$ sudo python3 trigger.py | |
*Hold capslock to enable triggerbot* | |
Note: | |
If script fails to run, you probably need to update memory offsets: |
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 | |
# Kullanım: ./tureng.py kelime [-f -s] | |
import requests,re,html,sys | |
useragent="Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Firefox/78.0" | |
res = requests.get(f"https://tureng.com/en/turkish-english/{sys.argv[1]}",headers={"User-Agent":useragent}).text | |
words = re.findall(r'"hidden\-xs">(.*?)<.*?lang="(.*?)">.*?>(.*?)<.*?lang="(.*?)">.*?>(.*?)<',res,flags=re.S|re.M) | |
prettify = lambda x: html.unescape(x).replace("\n","").replace("\r","").replace("Turkish","TR").replace("English","EN") | |
for word in words: | |
usage = prettify(word[0]) | |
w1 = prettify(word[2]) |
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
# This script downloads Apache Web Server and configures it to work as a forward http proxy server with basic authentication. | |
# In order to run this script you need to enable powershell scripting by opening the cmd as administrator, | |
# and running this command: powershell Set-ExecutionPolicy RemoteSigned | |
# After that just right click to this file and click to "Run With Powershell" | |
# WebProxy runs on port 80, tested on windows 11. | |
# Check VCRedist current version | |
$OS= if ( ${env:ProgramFiles(x86)} ) {"\WOW6432Node"} else {"\"} | |
$vcredist = Get-ItemProperty -Path "HKLM:\SOFTWARE$OS\Microsoft\VisualStudio\14.0\VC\Runtimes\x86" -ErrorAction SilentlyContinue -ErrorVariable eVcRedist | |
if ($eVcRedist -Or ($vcredist.Bld -le 24215) ) { |
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/") |
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 | |
""" |
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 |
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 |
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/" |
NewerOlder