Skip to content

Instantly share code, notes, and snippets.

@sctech-tr
sctech-tr / pin.md
Last active November 9, 2024 14:05
@sctech-tr
sctech-tr / proof.md
Last active October 15, 2024 16:32
keyoxide proof

openpgp4fpr:57BE156FEB39FB9905BA1299169CABCFA8FDD1CF

@sctech-tr
sctech-tr / build-dolphin.sh
Last active September 28, 2024 12:26
script for building dolphin emulator
#/bin/sh
cd ~
wget -qO- https://raw.githubusercontent.com/sctech-tr/upm/main/install.sh | sh
upm install dunst
notify-send --urgency=normal -t 5000 'build-dolphin' 'Please enter your password in the terminal. sudo is needed.'
echo Starting ... you may be asked for your password.
echo Installing/updating needed packages...
upm install vulkan-loader vulkan-loader-devel cmake git gcc-c++ libXext-devel libgudev qt6-qtbase-devel qt6-qtbase-private-devel qt6-qtsvg-devel systemd-devel openal-soft-devel libevdev-devel libao-devel SOIL-devel libXrandr-devel pulseaudio-libs-devel bluez-libs-devel libusb1-devel libXi-devel --quiet
@sctech-tr
sctech-tr / udm14search.py
Created June 10, 2024 16:09
python script to search with the flag &udm=14
import webbrowser
input_str = input("please enter a search query: ")
if input_str is None:
print("please enter a valid search query.")
else:
print(f"searching for {input_str}...")
final_query = input_str.replace(" ", "+")
url = f"https://www.google.com/search?q={final_query}&udm=14"
webbrowser.open(url)