This file contains hidden or 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 | |
| [ -z $1 ] && ls $HOME/.wasp && exit | |
| [ -f ~/.wasp/$1 ] && eval $(age -d ~/.wasp/$1) | |
| [ $1 == w ] && nvim ~/.local/bin/wasp | |
| [ $1 == example ] && echo 'echo -n "eval_secrect"| age -e -p -o secpass' |
This file contains hidden or 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 | |
| # PART OF SPIDER SCRIPT | VERSION 2.9.0000 | HALANO SIBLEE 2023-2025 𓂀 | |
| [ -z $1 ] && exit | |
| PassHashed() { notify-send "Password Hashed" ; } | |
| case $1 in | |
| 5pass) | |
| echo -n "$2" | md5sum | head -c 32 | xclip -selection clipboard | |
| PassHashed | |
| ;; | |
| 256pass) |
This file contains hidden or 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 | |
| sleep 1 && maim -s -u | zbarimg - |
This file contains hidden or 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
| #ffmpeg -video_size 1366x768 -framerate 30 -f x11grab -i :0.0 -f pulse -i alsa_output.pci-0000_00_1b.0.analog-stereo.monitor -ac 2 -vcodec libaom-av1 -usage realtime -cpu-used 8 -crf 30 -tiles 2x2 -vf "scale=1280:720" "$(date '+%d-%H-%M-%s').mkv" | |
| ffmpeg -video_size 1366x768 -framerate 30 -f x11grab -i :0.0 -f pulse -i alsa_output.pci-0000_00_1b.0.analog-stereo.monitor -ac 2 -vcodec ffv1 -vf "scale=1280:720" "$(date '+%d-%H-%M-%s').mkv" |
This file contains hidden or 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
| /* | |
| 👑 BY HALANO SIBLEE 👑 | |
| CAREFUL THIS CODE NOT SAFE | |
| */ | |
| #include <FL/Fl.H> | |
| #include <FL/Fl_Window.H> | |
| #include <FL/Fl_Input.H> | |
| #include <FL/Fl_Box.H> | |
| #include <string> | |
| #include <vector> |
This file contains hidden or 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
| #include <FL/Fl.H> | |
| #include <FL/Fl_Window.H> | |
| #include <FL/Fl_Chart.H> | |
| #include <FL/Fl_Box.H> | |
| #include <charconv> | |
| #include <ostream> | |
| #include <sstream> | |
| #include <iostream> | |
| #include <string.h> | |
| #include <sys/statvfs.h> |