• 1 Post
  • 26 Comments
Joined 2 years ago
cake
Cake day: August 9th, 2023

help-circle




  • CrayonRosary@lemmy.worldtoPrivacy@lemmy.worldPlease, don't!
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    2
    ·
    5 months ago

    Google steals your data and I’m sure wants to enslave us, too. Microsoft would love that. DDG probably doesn’t but it’s search kinda sucks and gives shitty AI generated web pages as results most of the time. Probably because it just uses Bing.

    I use ChatGPT to answer questions directly instead of wading through searches. It’s pretty good at it. Like, “What’s the word for the thing that does the thing with this other thing”. And it’s like “thingamajig”. Yup, that’s it. Perfect. It’s what I wanted.

    The company isn’t profitable, and every question costs them money. They certainly aren’t profiting off of my dumb questions.




  • Thing is most people just don’t care, and don’t understand it. Also, it turns out it’s really easy to fingerprint people. Your list of installed fonts alone is enough to fingerprint you in many cases, and it’s easy to figure out your entire list of installed fonts with JavaScript.

    Add a few more data points like screen size and resolution, user-agent, and you can fingerprint 90% of people. And if that’s not enough, every device—even individual video cards of the same model—renders an HTML canvas differently enough that it’s detectable.

    It turns out it’s very hard to not be completely unique when you add all the up.

    I feel like it should be a crime to do fingerprinting like this, and to grab and store the browsing habits of every citizen for their whole life, but this is America (for me), and it’s never going to change.














  • their own preferences for tab width… ending up in an identation abomination

    Can you give an example where a person’s personal tab width breaks things? One tab per logical indent, and then spaces for alignment. How does this break anything? I know for a fact it doesn’t or else people like me wouldn’t advocate for it. What breaks indenting is mixing tabs and spaces for indents, and obviously that’s foolish. You can’t blame that mistake for causing an “abomination” when it’s something that would violate any code style specification, whether using spaces or tabs. You yourself could set your IDE to emit only 2 spaces when you hit Tab, and that would also violate your code style spec if you mix those indents into a file with 4-space indents, and that has nothing to do with tabs at all.

    Doing stupid things in the code that violates the code style are stupid things that violate the code style. No matter what whitespace you use. But having a personal setting to see 8 spaces per tab isn’t one of them if you only use tabs for logical indenting and not for alignment.

    All tabs or all spaces for indents result in the exact same thing: good looking code. But tabs then have further advantages. Easier outdenting, better accessibility, etc. The only benefit to forcing spaces is that some random program you use for code comparison or whatever might default to something other than 4 columns for a Tab and your code looks a little wide until you change your settings. That’s nothing compared to the advantages of tabs. Turns out that “benefit” of spaces is actually a drawback because no one is allowed to view the indents as anything but whatever column width you personally think it should be.