Skip to content

Instantly share code, notes, and snippets.

View HalanoSiblee's full-sized avatar
:octocat:
Open source supporting force

Halano HalanoSiblee

:octocat:
Open source supporting force
View GitHub Profile
@HalanoSiblee
HalanoSiblee / wasp
Created December 3, 2025 23:52
[wasp script] eval age encryption commands.
#!/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'
#!/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)
@HalanoSiblee
HalanoSiblee / scanqr
Created December 3, 2025 23:15
QR scanner in terminal /w maim & zbarimg
#!/bin/bash
sleep 1 && maim -s -u | zbarimg -
@HalanoSiblee
HalanoSiblee / ffmpeg_x11_recoder.sh
Created December 3, 2025 23:13
fast recording my old cpu (software record&encoding).
#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"
@HalanoSiblee
HalanoSiblee / fltk_input_fast_calculator.cpp
Created December 31, 2024 16:56
FLTK calculator using input method to evaluate the expression
/*
👑 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>
@HalanoSiblee
HalanoSiblee / fl_disk_usage_chart.cpp
Created December 31, 2024 16:50
FLTK partition usage chart
#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>