Steve Ballmer invented blue screen of death for Windows 3.1 apparently.
The Keyboardio Preonic, our new Bluetooth ortholinear keyboard is comfortable, customizable, and ultra-compact. It's also now live on Kickstarter!
Get yours on Kickstarter today!
https://www.kickstarter.com/projects/keyboardio/preonic?ref=9xa58t
Dark mode, RSS feeds, performance optimizations and more: read all about the ongoing development of crates.io on the Rust Blog. ✨
https://blog.rust-lang.org/2024/07/29/crates-io-development-update.html
Now that I’m already using maildirs again, I could fulfill the lacking feature from #aerc (compared to #mutt) using #notmuch, which de-duplicates my emails:
#!/usr/bin/env bash
#
# Copyright (c) Jarkko Sakkinen 2024
# JSON queries ripped from https://github.com/esovetkin/notmuch-deduplicate
set -e
QUERY='*'
notmuch show \
--format=json \
--entire-thread=false \
--body=false \
"${QUERY}" | \
jq \
-n \
--stream 'fromstream(1 | truncate_stream(inputs))' | \
jq -r '.. | .filename? //empty | @tsv' | \
grep '\t' | \
awk -F'\t' '{for (i=2; i<=NF; i++) print $i}' | \
xargs -I{} rm -v "{}"
notmuch new
# vim: filetype=vim ts=2 sw=2 et