

Can you link to a source that confirms this information can be collected with JavaScript (with browser comparison, ideally)? That seems outrageous if it was actually possible.
Just a dorky trans woman on the internet.
My other presences on the fediverse:
• @copygirl@fedi.anarchy.moe
• @copygirl@vt.social
Can you link to a source that confirms this information can be collected with JavaScript (with browser comparison, ideally)? That seems outrageous if it was actually possible.
What is meant by “sensitive information” here? Browsers can’t just willy-nilly access your local files or something like that. The one thing I can think of is using JavaScript to collect information that can be used to identify you. (Is that “sensitive”? I’d put that in “identifying information”.) My honest suggestion is to keep using NoScript and just allow as few domains as possible. The next best option is to stop using websites that break without JavaScript when there’s no reason why they’d need it.
I can imagine there being a plugin that spoofs some common ways that allow sites to identify you cross-sessions / browser / websites without your consent, but blocking JavaScript (by default) is likely one of the best ways to reduce the amount of information collected about you. When you do find such a plugin, check out one of the “browser fingerprint” testing sites to see how unique your fingerprint is.
(That is, if I even understood the request properly in regards to the “sensitive information” bit.)
There is something called “local storage” that allows applications to store more information than just a cookie. Cookies are sent to the server, while local storage, as the name implies, stays local. (That doesn’t mean that this data can’t be sent to the server via JavaScript.) But local storage makes it possible to make 100% offline applications if the whole webpage is cached / downloaded (assuming no online functionality is required).
edit: As for deleting this, if I click on the lock icon in the address bar in Firefox, I have an option to clear cookies and site data for the current site. I assume the “site data” is the local storage I mentioned. If you’re using a Chrome based browser, you can probably google how to do the same thing.
I have a bigender partner who identifies and presents more femme online and more masc in real-life.
However you feel about and choose to express yourself is valid.
How about dashing (and other cool Celeste features), thigh highs (with pride variants), having cute moths around, …?
Can I interest you in the Create: Estrogen mod? (some assembly required)
From what I read online, Matrix is not very good with its federated moderation tools. Apparently, a quirk of it can cause the state of a federated channel to reset in time, thus also undoing removing of messages. Here is a blog post criticizing Matrix.
Sweeeeet! Can they be embedded into the article?
The videos aren’t from their channel and they probably won’t be able to get the rights to rehost them all.
I think this sounds like we’re generally in agreement? I might just put less weight on “the canon”.
like what you mentioned with Xenia, the old Linux Mascot.
To be fair, trans Xenia was sanctioned by the original artist, but my worry was along the lines of, if cathodegaytube was a “strong believer” in the Prime Egg Directive, would it have discouraged them from re-imagining this character? I don’t personally think how recent a character was created or whether it was abandoned has any relevance.
I subscribe to the idea that art is up to the viewer to interpret how they want. “Death of the author” I think it’s called. If someone looks at Felix, and sees an egg in him that has yet to crack, then that’s a valid interpretation of the art, to that person. Just as if someone were to look at a character and interpret them as trans, whether they are canonically cis or it’s left open (Spider Gwen comes to mind). I experienced a sad ending to a story? Well, too bad, author, my headcanon’s now that everything works out after all!
There may be problematic ways of doing that, and it’s in no way okay to assert one’s interpretation as the only truth. But fundamentally, that’s part of the freedom you get with art.
Would Bridget have become canonically trans if that freedom was taken away from people? (And heck, does it include the author?) Would Xenia have been reborn as a popular now-trans Linux mascot?
So there’s gotta be wiggle room in both situations. Fictional characters breaking the Prime Egg Directive, because of artists’ freedom of expression; and real people seeing fictional characters differently from the author and others, because of freedom of interpretation.
For a more concrete example, this post: https://lemmy.blahaj.zone/post/22944727
I found this comic really heckin’ funny. Then I checked the comments. “Egg Prime Directive” Was I… supposed to be in agreement that the comic is problematic? I can’t really, no matter how I tried to twist it in my head. (Props to the mod for leaving the post up even though they criticized it though.)
Of course, nobody should do this to a real person, but this is a representation of something the artist has felt. We see comics of characters being ridiculous, or doing the impossible, and stories that involve violence or all manner of bad things. You wouldn’t take this to mean that you can or should do that in real life, right?
People can rightfully inform others to tell them not to behave like that themselves. But I worry that if they’re too blunt (figuratively) shouting “Prime Egg Directive!”, there will be people that feel discouraged about expressing themselves artistically like this, or making light of their own past in certain ways. And again, I’ve legit felt anxious myself at times when this came up before, and even now when I’m trying to talk about it.
Politicians decide things, but to actually make stuff happen, the government needs to collect taxes to pay for services that are then provided to the public. I think the idea here is to take out the middleman. You won’t solve the problem country wide, but you’ll help some people, and that’s still worth it. Work together without like-minded people locally, be an inspiration, and show that it works. I’ve only been very briefly part of an activist group (specialized in food saving), so probably best to look elsewhere for good advice on how to do this well.
Then you should also override Equals(object)
, GetHashCode
, and implement IEquatable<T>
.
Thankfully a lot of the usual boilerplate code can be avoided using a record
class or struct:
public record Person(string Name, uint Age);
I was editing my comment as you were responding. Check the issue on GitHub I linked in the edit, and maybe thumbs it up for visibility. One of the commenters mentions using a third-party tool but I’m not sure the one they linked to can grab posts. In theory another one might exist to dump your post data.
Which service? Mastodon has a built-in export functionality in preferences.
I can’t find such an option on Lemmy, but you should be able to do a GDPR request for your information as a last resort.
Real classy of you to do the toddler thing of sticking your fingers in your ear and going “la la la I can’t hear you”. (It’ll be an honor to share a spot on your block list with these other two fellas.)
Is this not what the “active” sorting does?
The lenses don’t have to both be at the same distance to be fair.
JavaScript is already sandboxed. You can only execute functions where there is an actual API defined by the browser to do so, for example
Date.getTime()
. There is / should be no way to get, say, your device ID. (With the exception of unpatched exploits that allow executing arbitrary code. But keep in mind browsers are likely one of the if not the most security tested software.)What you linked to here appears to specific to Google Tag Manager in a way that I don’t fully understand, but is not related to how websites usually execute JavaScript code.