I wonder if anyone has made any software to detect keysmashing
(I mean, besides Pawsense, kind)
I mean, like, I could run it on my chat logs and see which lines were keysmashes
I wonder if anyone has made any software to detect keysmashing
(I mean, besides Pawsense, kind)
I mean, like, I could run it on my chat logs and see which lines were keysmashes
I used Discrub to export a Discord chatlog for analysis, and it gave me a JSON of all the messages in that chat, but in random order.
weird! I mean I can just sort them by timestamp or ID (maybe?) but that's just the first time I've ever seen chatlogs that are not ordered
@foone that's interesting because the extension code seems to make an attempt to sort by timesamp
exportMessages = messageData.messages
.map((m) => new Message({ ...m }))
.sort((a, b) =>
sortByProperty(
Object.assign(a, { date: new Date(a.timestamp) }),
Object.assign(b, { date: new Date(b.timestamp) }),
"date",
sortOverride,
),
);
@gloriouscow I already wrote code to sort it anyway:
all_messages.sort(key=lambda m:m['id'])
@foone i wonder if they did something like pass the results through an object instead of an array which will lose ordering
you're not nerd sniping me tonight though! NICE TRY