heavens-above.com didn’t list a pass for this time at 00:58 PT so I suspect this was below 10 degrees elevation:

In which case even though only a third of the image was captured, this is surprisingly good:


Articles, notes and random thoughts on Software Development and Technology
heavens-above.com didn’t list a pass for this time at 00:58 PT so I suspect this was below 10 degrees elevation:

In which case even though only a third of the image was captured, this is surprisingly good:

Given that this was only a 13 degree at highest elevation, the first of these decodes is pretty good:


Here’s my decodes from the 12/27/21/ 09:51 ISS 60 degree highest elevation pass:



If you’ve committed a number of git commits using a wrong user.name or user.email value, you can re-write previous commits with:
git filter-branch --commit-filter '
if [ "$GIT_COMMITTER_NAME" = "Old Name" ];
then
GIT_COMMITTER_NAME="new-name";
GIT_AUTHOR_NAME="new-name";
GIT_COMMITTER_EMAIL="new-email";
GIT_AUTHOR_EMAIL="new-email";
git commit-tree "$@";
else
git commit-tree "$@";
fi' HEAD
Note that this will re-write all commits on the current branch matching the if condition which may or may not be what you’re looking for, so be careful. push the changes back to your remote origin as needed.
This is based on answers to this question here.