- Joined
- Jan 4, 2021
Ever since Null got rid of the reaction score and randomized the reaction count display, the only real way to figure out your score was to manually keep track or press the "more" button on each reaction in your reactions received page. However apparently, if you go to ''https://kiwifarms.st/account/reactions?reaction_id=Y&page=X" it will send you directly to that page of the reaction list that corresponds to the reaction ID. Meaning if you find the last page of each reaction, multiply the number of pages -1 by 20, then add the amount of reactions on the last page, you can figure out how many of each reaction you have. You just have to manually replace 'X' with a number, if its too high it will say so and just go lower until you find the last page. Here's mine for example:
Like: 258 pages, 257 x 20 = 5140 + 17 on the last page = 5157 likes
Dislike: 2
Agree: 2369
Disagree: 70
Winner: 1291
Semper Fi: 95
Deviant: 15
Informative: 1132
Thunk Provoking: 428
Feels: 1095
Islamic Content: 146
DRINK!: 153
Lunacy: 228
Autistic: 74
Political Sperging: 7
Horrifying: 325
Optimistic: 291
TMI: 14
Late: 18
Dumb: 117
Mad at the Internet: 11
ChatGPT gave me this code for calculating the total rating
So, my total reaction score assuming I didn't make any counting errors is: 14,387.
It takes some effort but if you really want to know your score this method seems to work.
Also my bookmark to this site is to the reactions received page
Like: 258 pages, 257 x 20 = 5140 + 17 on the last page = 5157 likes
Dislike: 2
Agree: 2369
Disagree: 70
Winner: 1291
Semper Fi: 95
Deviant: 15
Informative: 1132
Thunk Provoking: 428
Feels: 1095
Islamic Content: 146
DRINK!: 153
Lunacy: 228
Autistic: 74
Political Sperging: 7
Horrifying: 325
Optimistic: 291
TMI: 14
Late: 18
Dumb: 117
Mad at the Internet: 11
ChatGPT gave me this code for calculating the total rating
# Define the score modifiers for each reaction type
score_modifiers = {
"Like": 1,
"Dislike": -1,
"Agree": 1,
"Disagree": 0,
"Winner": 2,
"Semper Fi": 2,
"Deviant": -1,
"Informative": 3,
"Thunk Provoking": 0,
"Feels": 1,
"Islamic Content": -1,
"DRINK!": 1,
"Lunacy": -1,
"Autistic": 0,
"Political Sperging": -1,
"Horrifying": 0,
"Optimistic": 0,
"TMI": 0,
"Late": -1,
"Dumb": -1,
"Mad at the Internet": -2
}
# Define the counts of each reaction type
reaction_counts = {
"Like": 5157,
"Dislike": 2,
"Agree": 2369,
"Disagree": 70,
"Winner": 1291,
"Semper Fi": 95,
"Deviant": 15,
"Informative": 1132,
"Thunk Provoking": 428,
"Feels": 1095,
"Islamic Content": 146,
"DRINK!": 153,
"Lunacy": 228,
"Autistic": 74,
"Political Sperging": 7,
"Horrifying": 325,
"Optimistic": 291,
"TMI": 14,
"Late": 18,
"Dumb": 117,
"Mad at the Internet": 11
}
# Calculate the total rating
total_rating = sum(reaction_counts[reaction] * score_modifiers[reaction] for reaction in reaction_counts)
total_rating
score_modifiers = {
"Like": 1,
"Dislike": -1,
"Agree": 1,
"Disagree": 0,
"Winner": 2,
"Semper Fi": 2,
"Deviant": -1,
"Informative": 3,
"Thunk Provoking": 0,
"Feels": 1,
"Islamic Content": -1,
"DRINK!": 1,
"Lunacy": -1,
"Autistic": 0,
"Political Sperging": -1,
"Horrifying": 0,
"Optimistic": 0,
"TMI": 0,
"Late": -1,
"Dumb": -1,
"Mad at the Internet": -2
}
# Define the counts of each reaction type
reaction_counts = {
"Like": 5157,
"Dislike": 2,
"Agree": 2369,
"Disagree": 70,
"Winner": 1291,
"Semper Fi": 95,
"Deviant": 15,
"Informative": 1132,
"Thunk Provoking": 428,
"Feels": 1095,
"Islamic Content": 146,
"DRINK!": 153,
"Lunacy": 228,
"Autistic": 74,
"Political Sperging": 7,
"Horrifying": 325,
"Optimistic": 291,
"TMI": 14,
"Late": 18,
"Dumb": 117,
"Mad at the Internet": 11
}
# Calculate the total rating
total_rating = sum(reaction_counts[reaction] * score_modifiers[reaction] for reaction in reaction_counts)
total_rating
So, my total reaction score assuming I didn't make any counting errors is: 14,387.
It takes some effort but if you really want to know your score this method seems to work.
Also my bookmark to this site is to the reactions received page