nyx programmer wandering in the layers of computing;
Posts
if someone is trying to convince you to play Final Fantasy 7 ー to the point where it almost feels religious ー do you think it's because the person became a Jenova's Witness ?
[B̲̅A̲̅S̲̅H̲̅]
⚠️ WARNING: insane hacking the FBI will probably knock on my door by the time you read this
never been a fan of a numeric keypad ー but i decided to use the numlock's LED as a notification system when i get mail ー using xdotool allows you to turn it on and off
~y apt install xdotool
> while sleep 0.6180;do
> xdotool key Num_Lock
> done
[C̲̅L̲̅I̲̅]
Console-based Audio Visualizer for Alsa. Cava is a bar spec‐
trum audio visualizer for the Linux terminal using ALSA, pulseaudio,
pipewire or fifo buffer for input. This program is not intended for sci‐
entific use. It's written to look responsive and aesthetic when used to
visualize music.
~λ apt install cava
[E̲̅L̲̅I̲̅S̲̅P̲̅]
⚠️ CHΞCK ΛLT TΞXT F0R M0RΞ 1NF0
----BEGIN ELISP----
;; SUGGESTED MACRO
(global-set-key (kbd "M-)") (lambda nil (interactive) (pointer-add-procedure)))
;; FUNCTION
(defun pointer-add-procedure()
"add a procedure on top of current procedure
probably best to bind it to M-)"
(interactive)
(search-backward "(")
(forward-sexp)
(insert ")")
(backward-char)
(backward-sexp)
(insert "( ")
(backward-char))
----END ELISP----