Daily Shaarli
August 26, 2023
Wonderfully useful program to show output of terminal commands in screenshots. Not super customizable but the default output looks good enough.
Can be useful for showing people how to accomplish something, blog entries, and especially for READMEs of command line programs.
Terminal TUI XMPP client. Weee
Showing how to combine short (-h
) posix options with long-form (--help
) gnu-like options while using getopts.
It seems overkill for smaller applications which are probably best off with a simple snippet like:
while :; do
case "$1" in
-f | --file) BEMOJI_CUSTOM_LIST="${OPTARG}"; shift 2 ;;
-h | --help) usage 0 ;;
-p | --private) bm_private_mode=true; shift ;;
-v | --version) version ;;
-*) usage 1 ;;
*) break ;;
esac
done
for option gathering, but for more complex setups this could be the way to go.
Transports (bridges) for your xmpp server (examples for prosody and ejabberd included) to set up interop with a variety of walled-garden legacy messaging services. Supports for example Signal, Telegram, Whatsapp, Steam, Discord, Mattermost,...