Elektrine lite

← Feed

zrzz

zrzz@fosstodon.org

Posts

  • Post #3108560

    I just had to do some quick video slice & dice, I found this mpv lua script very handy. Besides mpv it only needs ffmpeg: https://github.com/pvpscript/mpv-video-splice

  • Post #3108559

    ejoin is a small Emacs-adjecent tool that I use to make my URL extraction scripts deal with Emacs-style line continuation characters. https://codeberg.org/imarko/ejoin #emacs

  • Post #3108558

    Tracking the new emacs-31 branch now which was cut today in preparation for an eventual release. Things are nice and solid so far, no unexpected surprises. The only thing I had to tweak was the mode-line face. It tries to adapt to a dark or light background color scheme which is probably what most people would want but I didn't want it to change. #emacs

  • Post #3108557

    I couple of Emacs commands I use to check for unexpected Unicode shenanigans: (defun my-occur-non-ascii () "Find non-ascii characters using occur." (interactive) (occur "[^[:ascii:]]")) (defun my-highlight-non-ascii () "Highlight non-ascii characters." (interactive) (highlight-regexp "[^[:ascii:]]+")) #emacs