Tumgik
#shinigami eyes
tmmyhug · 1 year
Text
Tumblr media
shinigami eyes on wikipedia cracks me up sometimes
3K notes · View notes
euniexenoblade · 2 months
Text
i think it's funny how the shinigami eyes app is just, completely full of shit. this thing everyone urged me to get for years and yet all these people who harass trans women on a near daily basis are marked green and some random blogger i saw standing up for a trans woman is marked red. like, do trans women just not matter, even when we're making weird apps meant to protect people from transphobia?
88 notes · View notes
foone · 10 months
Text
Tumblr media
The (correct) flagging of pretty much all british newspapers as transphobic in shinigami eyes continues to be funny.
The Observer and The Times both gave this album 4 out of 5 stars, saying "It was great! There weren't any men pretending to be women on it!"
298 notes · View notes
needlekind · 5 months
Text
this is just your regular reminder that the shinigami eyes extension is abandonware! the github issues discussion hasn't been touched since 2019, never mind the extension itself.
it's not useless, but it also has unfixed issues that sometimes result in anti-trans and trans-friendly labels getting swapped (for programmer-types, there's a short explanation on how that happens here), and none of the reports being made get put into the database anymore. if you flag an account, the color change will show up locally, i.e. just for you, but not anyone else.
like i said, it's not useless! but if you're still using shinigami eyes just make sure you're careful about how you use it. if someone says something kind of terf-y and they're also marked red then yeah, you can probably assume it's bad faith and not a misunderstanding, but if you're just seeing an artist or an organization or something that's marked pro or anti trans in shinigami eyes but doesn't have obvious ties in any direction, do some poking around yourself before making a final judgment.
109 notes · View notes
starryjoy · 2 months
Text
nah no way in hell I just saw someone with straight up "rad fem" in their bio be marked as green on shinigami eyes, I don't think y'all understand either what radfeminism is and how incredibly dangerous it is for anyone who is transgender or what the purpose of shinigami eyes is
49 notes · View notes
Text
The Shinigami Eyes extension is actually so fun in the most unexpected ways.
Tumblr media
It's just like, "Hi, did you know that your fav is a trans ally?" And I'm like, "No I did not," and it just makes my day.
87 notes · View notes
mmadeinheavenn · 1 year
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
death note themed favicons for my future rentry
reblog if using and credit wherever possible!!!
192 notes · View notes
artistastudios · 2 years
Text
Tumblr media
it’s got your name on it
1K notes · View notes
Photo
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
Grimes for Vogue China (2022)
699 notes · View notes
zereniturz · 10 months
Text
Tumblr media
124 notes · View notes
firespirited · 9 months
Text
Tumblr media
PSA to anyone dipping their toes back into fashion dolls after the Barbie movie. We often disagree but not about human rights. If you post bigotry, you're not going to be welcome here or in most other doll collecting circles.
Ours is a historically queer community in every sense of the word. We don't just tolerate but accept and celebrate different bodies, brains, cultures, sexualities and genders. Those are the collectors, customizers and archivists but also the designers, people who get made into dolls and the people playing the dolls in the movie.
¯\_(ツ)_/¯ Maybe get a hobby that isn't obsessing about minorities.
To everyone else, welcome! If you have any questions or want to find mutuals the tags are #dollblr #dolls #fashion dolls or specific doll lines.
71 notes · View notes
knucklestheenchilada · 7 months
Text
Tumblr media
Based on a true story
59 notes · View notes
celinethefeline · 3 months
Text
Tumblr media
27 notes · View notes
ayz0 · 10 months
Text
Laughs in wrecked sleep schedule. Anime…..
Void killed Space and stole her dimension warping powers, and now he’s boutta go hunt down more gods
91 notes · View notes
asyncmeow · 8 months
Text
how shinigami eyes works
first - the short version:
shinigami eyes is a browser extension that uses a fancy list called a bloom filter to identify people who can be considered transphobic or trans-supportive. a bloom filter is a kind of list that lets you check if someone is in the list, without being able to actually know the contents of the list. i go below into how it works, but the short version is Math™️, with a side effect of having false positives - thinking an item is in the list when it really isn't. whenever a social media username is detected (the exact method how depends on the website), it checks the username against that list, and applies some CSS to change the color of the text depending on what list the username is in.
the long version
shinigami eyes can be split into a few parts:
bloom filters
submissions
name highlighting
bloom filters
i'll start with the most complex part - bloom filters. the most common misconception about Shinigami Eyes is this: the filters are not updated in real-time. they are shipped with the extension which had last been updated since november 2022, according to the FF extension site. in other words: nothing marked since then can be seen by anyone other than who marked it. you can see that in the code here, where it loads the bloom filters from a data/[something].dat file included in the extension (but not in the github repo).
the following information about bloom filters is my summarized version of this page.
bloom filters are, in a slightly longer explanation than before, a way to know if an item is *not* in a list with 100% certainty, but there's a false positive rate that grows as more names are added to the list. a bloom filter of a single size is able to handle any number of items in the list, though. there's also the issue that you can't *delete* stuff from a bloom filter - you would need to regenerate it from scratch to do that.
now that the medum-sized explanation of what they are is done, let's go into how they work. a bloom filter is a set of n bits, initially all set to zero. to add items into the filter, you need a few hash functions, in this example i'll use h1, h2, and h3, with n=10. if I wanted to add the text asyncmeow to the list, i would do this: h1("asyncmeow") % n // n = 10, h1(...) % 10 = 9 h2("asyncmeow") % n // n = 10, h2(...) % 10 = 5 h3("asyncmeow") % n // n = 10, h3(...) % 10 = 8
after that, i have a list that looks like this (keep in mind that the list is zero-indexed):
[0, 0, 0, 0, 0, 1, 0, 0, 1, 1]
you can then check if something is in the filter by running the same hashing functions and checking if the result bits are set in the filter. you can access the bloom filters used for shinigami eyes by going to about:debugging#/runtime/this-firefox in Firefox and clicking "Inspect" on Shinigami Eyes, then running bloomFilters in the console. as this could possibly change in an update, i don't want to go into how they are set up, and i haven't dug enough into how their bloom filter code works well enough to say anyways.
submissions
submissions on shinigami eyes are encrypted (as in - encryption separate from HTTPS), then posted to https://shini-api.xyz/submit-vote. you can see the code for this here. when you right click someone to mark them, their name is stored in the local data of your browser in an overrides property.
name highlighting
name highlighting is done by checking them against the bloom filters and your local overrides. if a user is present in either bloom filter, or present in your local overrides, they are marked accordingly. not much to it from there.
that's really it, i think? feel free to ask if you have any questions! nya :3
75 notes · View notes
Text
The Shinigami Eyes extension is actually funny because, while the stuff that's marked often makes sense, sometimes you'll be browsing a random Wikipedia article and see someone highlighted in red, and you'll be like "Oh no, who could it b-"
Tumblr media
Like, thank you Shinigami Eyes. How else in this great-big world was I ever supposed to know that Adolf Hitler was not a trans ally?!?!?! Mind-blowing revelations in the studio, today.
34 notes · View notes