🧮 Users: 2, Feeds: 6, Twts: 919, Archived: 641513, Cache: 119993, Followers: 29, and Following: 695.
🧮 Users: 2, Feeds: 6, Twts: 918, Archived: 637600, Cache: 120786, Followers: 29, and Following: 695.
🧮 Users: 2, Feeds: 6, Twts: 913, Archived: 633826, Cache: 119776, Followers: 29, and Following: 695.
🧮 Users: 2, Feeds: 6, Twts: 912, Archived: 630213, Cache: 119633, Followers: 29, and Following: 695.
🧮 Users: 2, Feeds: 6, Twts: 910, Archived: 627509, Cache: 118365, Followers: 29, and Following: 694.
🧮 Users: 2, Feeds: 6, Twts: 909, Archived: 624648, Cache: 118506, Followers: 29, and Following: 694.
🧮 Users: 2, Feeds: 6, Twts: 908, Archived: 621137, Cache: 117607, Followers: 29, and Following: 694.
@novaburst@twt.nfld.uk I doubt there will ever be a 2.0 … It may end up like java and they strip off the 1.
🧮 Users: 2, Feeds: 6, Twts: 904, Archived: 617041, Cache: 116360, Followers: 29, and Following: 693.
#!/bin/sh
# Validate environment
if ! command -v msgbus > /dev/null; then
printf "missing msgbus command. Use: go install git.mills.io/prologic/msgbus/cmd/msgbus@latest"
exit 1
fi
if ! command -v salty > /dev/null; then
printf "missing salty command. Use: go install go.mills.io/salty/cmd/salty@latest"
exit 1
fi
if ! command -v salty-keygen > /dev/null; then
printf "missing salty-keygen command. Use: go install go.mills.io/salty/cmd/salty-keygen@latest"
exit 1
fi
if [ -z "$SALTY_IDENTITY" ]; then
export SALTY_IDENTITY="$HOME/.config/salty/$USER.key"
fi
get_user () {
user=$(grep user: "$SALTY_IDENTITY" | awk '{print $3}')
if [ -z "$user" ]; then
user="$USER"
fi
echo "$user"
}
stream () {
if [ -z "$SALTY_IDENTITY" ]; then
echo "SALTY_IDENTITY not set"
exit 2
fi
jq -r '.payload' | base64 -d | salty -i "$SALTY_IDENTITY" -d
}
lookup () {
if [ $# -lt 1 ]; then
printf "Usage: %s nick@domain\n" "$(basename "$0")"
exit 1
fi
user="$1"
nick="$(echo "$user" | awk -F@ '{ print $1 }')"
domain="$(echo "$user" | awk -F@ '{ print $2 }')"
curl -qsSL "https://$domain/.well-known/salty/${nick}.json"
}
readmsgs () {
topic="$1"
if [ -z "$topic" ]; then
topic=$(get_user)
fi
export SALTY_IDENTITY="$HOME/.config/salty/$topic.key"
if [ ! -f "$SALTY_IDENTITY" ]; then
echo "identity file missing for user $topic" >&2
exit 1
fi
msgbus sub "$topic" "$0"
}
sendmsg () {
if [ $# -lt 2 ]; then
printf "Usage: %s nick@domain.tld <message>\n" "$(basename "$0")"
exit 0
fi
if [ -z "$SALTY_IDENTITY" ]; then
echo "SALTY_IDENTITY not set"
exit 2
fi
user="$1"
message="$2"
salty_json="$(mktemp /tmp/salty.XXXXXX)"
lookup "$user" > "$salty_json"
endpoint="$(jq -r '.endpoint' < "$salty_json")"
topic="$(jq -r '.topic' < "$salty_json")"
key="$(jq -r '.key' < "$salty_json")"
rm "$salty_json"
message="[$(date +%FT%TZ)] <$(get_user)> $message"
echo "$message" \
| salty -i "$SALTY_IDENTITY" -r "$key" \
| msgbus -u "$endpoint" pub "$topic"
}
make_user () {
mkdir -p "$HOME/.config/salty"
if [ $# -lt 1 ]; then
user=$USER
else
user=$1
fi
identity_file="$HOME/.config/salty/$user.key"
if [ -f "$identity_file" ]; then
printf "user key exists!"
exit 1
fi
# Check for msgbus env.. probably can make it fallback to looking for a config file?
if [ -z "$MSGBUS_URI" ]; then
printf "missing MSGBUS_URI in environment"
exit 1
fi
salty-keygen -o "$identity_file"
echo "# user: $user" >> "$identity_file"
pubkey=$(grep key: "$identity_file" | awk '{print $4}')
cat <<- EOF
Create this file in your webserver well-known folder. https://hostname.tld/.well-known/salty/$user.json
{
"endpoint": "$MSGBUS_URI",
"topic": "$user",
"key": "$pubkey"
}
EOF
}
# check if streaming
if [ ! -t 1 ]; then
stream
exit 0
fi
# Show Help
if [ $# -lt 1 ]; then
printf "Commands: send read lookup"
exit 0
fi
CMD=$1
shift
case $CMD in
send)
sendmsg "$@"
;;
read)
readmsgs "$@"
;;
lookup)
lookup "$@"
;;
make-user)
make_user "$@"
;;
esac
🧮 Users: 2, Feeds: 6, Twts: 896, Archived: 612694, Cache: 116796, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 894, Archived: 608801, Cache: 116652, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 893, Archived: 605268, Cache: 117237, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 890, Archived: 600434, Cache: 115510, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 889, Archived: 597820, Cache: 116365, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 888, Archived: 594362, Cache: 115687, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 887, Archived: 590673, Cache: 120516, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 886, Archived: 586766, Cache: 122750, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 885, Archived: 582908, Cache: 123830, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 884, Archived: 577849, Cache: 117751, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 883, Archived: 574931, Cache: 118313, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 882, Archived: 571821, Cache: 116323, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 881, Archived: 568245, Cache: 115806, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 880, Archived: 564294, Cache: 116226, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 878, Archived: 560167, Cache: 119801, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 877, Archived: 556175, Cache: 118013, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 876, Archived: 552449, Cache: 117417, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 875, Archived: 549094, Cache: 114935, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 874, Archived: 546076, Cache: 115553, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 873, Archived: 542398, Cache: 114135, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 872, Archived: 538449, Cache: 119525, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 871, Archived: 534815, Cache: 117320, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 870, Archived: 530905, Cache: 117324, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 869, Archived: 527186, Cache: 115912, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 868, Archived: 524170, Cache: 113233, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 866, Archived: 521490, Cache: 112941, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 865, Archived: 517960, Cache: 114426, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 864, Archived: 514189, Cache: 114829, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 863, Archived: 510380, Cache: 120985, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 861, Archived: 506690, Cache: 118366, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 860, Archived: 502956, Cache: 116652, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 858, Archived: 500014, Cache: 118940, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 856, Archived: 497282, Cache: 120140, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 854, Archived: 493720, Cache: 118815, Followers: 29, and Following: 692.
🧮 Users: 2, Feeds: 6, Twts: 849, Archived: 489757, Cache: 119798, Followers: 29, and Following: 690.
🧮 Users: 2, Feeds: 6, Twts: 846, Archived: 485956, Cache: 117339, Followers: 29, and Following: 690.
🧮 Users: 2, Feeds: 6, Twts: 844, Archived: 482288, Cache: 117274, Followers: 29, and Following: 690.
🧮 Users: 2, Feeds: 6, Twts: 843, Archived: 478619, Cache: 116265, Followers: 29, and Following: 690.
🧮 Users: 2, Feeds: 6, Twts: 842, Archived: 475632, Cache: 116609, Followers: 29, and Following: 690.
🧮 Users: 2, Feeds: 6, Twts: 841, Archived: 472935, Cache: 116642, Followers: 29, and Following: 690.
See also “A Chronicle of the Bay Area Cults”, Vol. 2, pg. 773-776.
🧮 Users: 2, Feeds: 6, Twts: 840, Archived: 469425, Cache: 117215, Followers: 29, and Following: 690.
🧮 Users: 2, Feeds: 6, Twts: 839, Archived: 465692, Cache: 117143, Followers: 29, and Following: 690.
🧮 Users: 2, Feeds: 6, Twts: 836, Archived: 461916, Cache: 115453, Followers: 29, and Following: 689.
🧮 Users: 2, Feeds: 6, Twts: 834, Archived: 458276, Cache: 115723, Followers: 29, and Following: 689.
🧮 Users: 2, Feeds: 6, Twts: 832, Archived: 454769, Cache: 116836, Followers: 29, and Following: 689.
🧮 Users: 2, Feeds: 6, Twts: 831, Archived: 451812, Cache: 119165, Followers: 29, and Following: 689.
🧮 Users: 2, Feeds: 6, Twts: 830, Archived: 448919, Cache: 119444, Followers: 29, and Following: 689.
🧮 Users: 2, Feeds: 6, Twts: 829, Archived: 444867, Cache: 117453, Followers: 29, and Following: 689.
🧮 Users: 2, Feeds: 6, Twts: 828, Archived: 440912, Cache: 116260, Followers: 29, and Following: 689.
🧮 Users: 2, Feeds: 6, Twts: 827, Archived: 436974, Cache: 115586, Followers: 29, and Following: 689.
🧮 Users: 2, Feeds: 6, Twts: 818, Archived: 433015, Cache: 113908, Followers: 29, and Following: 688.
🧮 Users: 2, Feeds: 6, Twts: 816, Archived: 428985, Cache: 113789, Followers: 29, and Following: 688.
🧮 Users: 2, Feeds: 6, Twts: 813, Archived: 425914, Cache: 111113, Followers: 29, and Following: 688.
🧮 Users: 2, Feeds: 6, Twts: 812, Archived: 423083, Cache: 113197, Followers: 29, and Following: 688.
🧮 Users: 2, Feeds: 6, Twts: 805, Archived: 419231, Cache: 112666, Followers: 29, and Following: 688.
🧮 Users: 2, Feeds: 6, Twts: 802, Archived: 415118, Cache: 109995, Followers: 29, and Following: 688.
🧮 Users: 2, Feeds: 6, Twts: 801, Archived: 410986, Cache: 110147, Followers: 29, and Following: 688.
🧮 Users: 2, Feeds: 6, Twts: 800, Archived: 406939, Cache: 110307, Followers: 29, and Following: 688.
🧮 Users: 2, Feeds: 6, Twts: 799, Archived: 403305, Cache: 109160, Followers: 29, and Following: 688.
🧮 Users: 2, Feeds: 6, Twts: 798, Archived: 400230, Cache: 109254, Followers: 29, and Following: 688.
🧮 USERS:2 FEEDS:6 TWTS:795 ARCHIVED:397260 CACHE:108430 FOLLOWERS:29 FOLLOWING:688
🧮 USERS:2 FEEDS:6 TWTS:794 ARCHIVED:393561 CACHE:112220 FOLLOWERS:29 FOLLOWING:688
🧮 USERS:2 FEEDS:6 TWTS:793 ARCHIVED:389717 CACHE:111838 FOLLOWERS:29 FOLLOWING:688
🧮 USERS:2 FEEDS:6 TWTS:792 ARCHIVED:386043 CACHE:112106 FOLLOWERS:29 FOLLOWING:686
🧮 USERS:2 FEEDS:6 TWTS:789 ARCHIVED:382292 CACHE:108685 FOLLOWERS:29 FOLLOWING:686
🧮 USERS:2 FEEDS:6 TWTS:788 ARCHIVED:378153 CACHE:109899 FOLLOWERS:29 FOLLOWING:686
test 2
🧮 USERS:2 FEEDS:6 TWTS:786 ARCHIVED:375704 CACHE:109217 FOLLOWERS:29 FOLLOWING:686
🧮 USERS:2 FEEDS:6 TWTS:785 ARCHIVED:373450 CACHE:109839 FOLLOWERS:29 FOLLOWING:686
🧮 USERS:2 FEEDS:6 TWTS:784 ARCHIVED:370646 CACHE:110065 FOLLOWERS:29 FOLLOWING:686
🧮 USERS:2 FEEDS:6 TWTS:783 ARCHIVED:367823 CACHE:107570 FOLLOWERS:29 FOLLOWING:686
🧮 USERS:2 FEEDS:6 TWTS:782 ARCHIVED:350606 CACHE:93073 FOLLOWERS:29 FOLLOWING:686
🧮 USERS:2 FEEDS:6 TWTS:781 ARCHIVED:328519 CACHE:74103 FOLLOWERS:29 FOLLOWING:686
🧮 USERS:2 FEEDS:6 TWTS:780 ARCHIVED:325882 CACHE:71787 FOLLOWERS:29 FOLLOWING:686
🧮 USERS:2 FEEDS:6 TWTS:779 ARCHIVED:323798 CACHE:72698 FOLLOWERS:29 FOLLOWING:686
🧮 USERS:2 FEEDS:6 TWTS:778 ARCHIVED:321908 CACHE:73580 FOLLOWERS:29 FOLLOWING:686
🧮 USERS:2 FEEDS:6 TWTS:777 ARCHIVED:319373 CACHE:75518 FOLLOWERS:29 FOLLOWING:686
🧮 USERS:2 FEEDS:6 TWTS:776 ARCHIVED:316543 CACHE:74309 FOLLOWERS:29 FOLLOWING:686
🧮 USERS:2 FEEDS:6 TWTS:775 ARCHIVED:313551 CACHE:73586 FOLLOWERS:29 FOLLOWING:686
🧮 USERS:2 FEEDS:6 TWTS:774 ARCHIVED:310471 CACHE:72562 FOLLOWERS:29 FOLLOWING:686
🧮 USERS:2 FEEDS:6 TWTS:773 ARCHIVED:307675 CACHE:70016 FOLLOWERS:29 FOLLOWING:686
🧮 USERS:2 FEEDS:6 TWTS:770 ARCHIVED:304789 CACHE:73323 FOLLOWERS:29 FOLLOWING:686
🧮 USERS:2 FEEDS:6 TWTS:769 ARCHIVED:302520 CACHE:71653 FOLLOWERS:29 FOLLOWING:687
🧮 USERS:2 FEEDS:6 TWTS:768 ARCHIVED:299803 CACHE:73907 FOLLOWERS:29 FOLLOWING:687
🧮 USERS:2 FEEDS:6 TWTS:765 ARCHIVED:296497 CACHE:74170 FOLLOWERS:28 FOLLOWING:687
🧮 USERS:2 FEEDS:6 TWTS:764 ARCHIVED:292951 CACHE:70926 FOLLOWERS:28 FOLLOWING:687
🧮 USERS:2 FEEDS:6 TWTS:762 ARCHIVED:289458 CACHE:71525 FOLLOWERS:28 FOLLOWING:687
🧮 USERS:2 FEEDS:6 TWTS:759 ARCHIVED:285872 CACHE:74334 FOLLOWERS:28 FOLLOWING:687
🧮 USERS:2 FEEDS:6 TWTS:757 ARCHIVED:282866 CACHE:73420 FOLLOWERS:28 FOLLOWING:687