Skip to content

Instantly share code, notes, and snippets.

@KebabLord
KebabLord / recent.sh
Last active November 24, 2020 20:16
list recent files from folders. Useful for recent downloaded files and newly taken screenshots
#!/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
@KebabLord
KebabLord / My Gists.md
Last active August 22, 2025 10:59
My Scripts

smart-tv.sh - Control Vestel MB211 TV from terminal.
cs2_trigger.py - CS2 Trigger bot for linux
mac-random - Random MAC address every boot.
proxy.ps1 - Apache forward proxy server setup with auth for win.
24h_compare.pine - 24h comparative bitcoin chart graph pine script.
ytp-ad-skip.js - Youtube ads fast forwad skipper.
crybro.sh - Additional encryption layer for android fs.
kali-dmenu.sh - Categorized Kali tools launcher with dmenu
recent.sh - List recent files in folders. Useful for downloads and screenshots.
turkdox.py - Check Username avaibility of turkish sites.

@KebabLord
KebabLord / turkdox.py
Last active October 1, 2020 19:57
Popüler türk sitelerinde kullanıcı sorgusu scipti.
#!/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/"
@KebabLord
KebabLord / board_downloader.sh
Created July 29, 2020 11:44
download all media from an alt-board on image boards
#!/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 [^>]+>' |