feat: update export statistics with new user data and extend date range to 2024-12-11

- Refresh dataset with 156 active users (up from 153) and 5559 total contributions (up from 5206)
- Update average contribution per user to 35.63 (previously 34.03)
- Replace export graphs (comments per day, hour, weekday) from 2024-11-07/2024-12-09 to 2024-11-07/2024-12-11
- Append new user posts to AceDev.txt and 12bitfloat.txt export files
- Update binary wheel and source distribution to version 1.3.37
This commit is contained in:
bot
2024-12-11 15:47:37 +00:00
parent e67647f3b0
commit 2fe5da7ef4
296 changed files with 1295 additions and 499 deletions
+15
View File
@@ -0,0 +1,15 @@
jiraTicket said Got any git tips that everyone might not be aware of?
My tip is fixup and autosquash!
If I'm working in a branch with many commits and I notice that 5 commits ago I made a tiny mistake on commit 'abc123' then I'll just do `git commit --fixup abc123`.
It's similar to `--amend` but you can do it for any commit.
At first this would be a separate commit. But next time I wanna rebase I'd just do `git rebase -i --autosquash origin/master` and it'll be squashed into abc123
Some article that explains further details:
* https://gist.github.com/naviat/...
* https://blog.sebastian-daschner.com/...
After discovering I had been unaware of this for years I figure there must be other similar useful git things I might be unaware of```