Add this to .desktop file as command.
env QT_IM_MODULE=ibus telegram-desktop -- %u
Add this to .desktop file as command.
env QT_IM_MODULE=ibus telegram-desktop -- %u
pkg install pulseaudio
dir=$(pwd)
if grep -q "anonymous" ~/../usr/etc/pulse/default.pa
then
echo "module already present"
else
echo "load-module module-native-protocol-tcp auth-ip-acl=127.0.0.1 auth-anonymous=1" >> ~/../usr/etc/pulse/default.pa
fi
if grep -q "exit-idle" ~/../usr/etc/pulse/daemon.conf
Bash file obduscated using node-bash-obfuscate can be decrypted just replacing the eval
word with echo
(till the day of writing this gist).
z="
";Hz='echo';Gz=''\''';Lz='for ';Qz='; i+';Ez='Node';Cz=''\''I l';Uz='done';Jz='R_VA';Az='USR_';Fz='.js!';Nz=' = 0';Bz='VAR=';Kz='R';Rz='+ ))';Wz=' wor';Iz=' $US';Vz=' "It';Oz='; i ';Sz='; do';Mz='(( i';Tz=' $i';Xz='ks!"';Pz='< 10';Dz='ike ';
eval "$Az$Bz$Cz$Dz$Ez$Fz$Gz$z$Hz$Iz$Jz$Kz$z$Lz$Mz$Nz$Oz$Pz$Qz$Rz$Sz$z$Hz$Tz$z$Uz$z$Hz$Vz$Wz$Xz"
export GTK_IM_MODULE=ibus | |
export XMODIFIERS=@im=ibus | |
export QT_IM_MODULE=ibus |
#! /bin/sh | |
for pkg in $(pacman -Q | cut -d' ' -f1); do | |
pacman -Syu --noconfirm $pkg | |
done | |
reboot |
URL with %s in place of query: | |
- https://www.startpage.com/sp/search?query=%s&cat=web&pl=opensearch&language=english | |
Suggestions URL with %s in place of query: | |
- https://www.startpage.com/cgi-bin/csuggest?query=%s&limit=10&lang=english&format=json |
git reset --hard <commit_hash> | |
git push origin main --force # --force is important here |
I hereby claim:
To claim this, I am signing this object:
import dropbox | |
import time | |
dbx = dropbox.Dropbox('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx') #API Token | |
Path = input("Enter full path: ") #Path of the file in Dropbox. Example: /cat/2343423.jpeg | |
response = dbx.files_get_temporary_link(Path).link | |
print(response) |
import dropbox | |
import time | |
dbx = dropbox.Dropbox('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx') #Dropbox API | |
path = input("Enter full path of file in Dropbox: ") #root directory means / | |
url = input("Enter the file download link: ") | |
result = dbx.files_save_url(path, url) |