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
// Plot's -24 hours' plot by @Kebablord | |
// Lack's future / lookahead data feature tho. Dunno how to do it. | |
// Used @Hermetism's Multi Coin Compare code as base, so some credits also goes to @Violent and @HomelessLemon | |
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ | |
//@version=5 | |
indicator(title='[H] Compare', shorttitle='[H] Compare', overlay=true) | |
t = input.bool(true, title='Show Table', group='Table', tooltip='Show the table') | |
tablePositionY = input.string('top', title='Y-Position', options=['top', 'middle', 'bottom'], group="Table", inline="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
#!/data/data/com.termux/files/usr/bin/bash | |
# Script to mount & umount encrypted image to android filesystem | |
# | |
# You can install the dependencies by: | |
# pkg install root-repo # Enables the root-repository | |
# pkg install tsu cryptsetup mount-utils util-linux | |
# | |
# You have to create an empty container before using this script | |
# sudo dd if=/dev/zero of=/path/to/your/file.img bs=1M count=4096 | |
# OR: |
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 |
NewerOlder