Just started getting this now. Hopefully it’s some A/B testing that they’ll stop doing, but I’m not holding my breath
Btw it’s possible to fingerprint people with JavaScript disabled. I found this article explaining and demonstrating if you’re curious.
Yeah, it’s not impossible, but it’s much harder and you get a lot less info. You can also counteract the JS-less tracking with Firefox’s privacy.resistFingerprinting, or by using the Tor Browser, which enables a lot of anti-surveillance measures by default. Here’s also another good site for discovering how trackable you are: https://coveryourtracks.eff.org/
It’s been a year or so since I’ve gone down this rabbit hole, but what I remember, the more you block ads and tracker, the more unique your browser becomes, and the more fingerprintable it is.
Tor’s approach is to make every instance if the tor browser look as identical as possible to websites. But Tor is pretty niche. If Apple did the same with Safari, you would be an identical device in a match larger pool of devices.
I think Apple has taken some measures, but not as well as Tot has.
I’ve been happy with Qwant lately, they have their own index so using them doesn’t support the Google + Bing hegemony. They’re also EU based and regulated by the gdpr.
I like the SearX search engine. It gives old-school, relevant search results, not google ranked ones.
It’s also spread out over many separate instances, so you can pick the one that best suits your search needs:
Smells a bit Musky
It’s open source and can be self-hosted. I use something similar called Whoogle that I run in a local Docker container. Strips ads, javascript, tracking, and amp links
These are also just fun:
I also use Mojeek when I want a (serious) different set of results that I’m not getting from those pulling from google, bing, etc. It’s not the best but it’s getting better over time.
thanks a lot for mentioning us; you can send us in searches which could be better via the submit feedback button on results pages, if you’d like :D
DuckDuckGo doesn’t ;)
By the way, in my browser, the title of this post shows up as
Google now requires Javascript in c/mildlyinfuriating
which shocked me a little.
Sundar Pichai is the admin for this community, didn’t you know?
I hate how these kinds of messages never explain WHY. It’s just “Do it. Do what we tell you.” 💀
A lot of websites are react which doesn’t function without JavaScript. It’s a more powerful tool for web dev and can be a better experience for the user if used right.
Great. If that was their reason, they could explain that. But they didn’t and that’s my beef.
But since you seem to be tech savvy, you also already know why they don’t explain which great features of react they want to use on this page. And we all already know it’s not for the user’s benefit. It’s for money they receive from data mining every minute of our lives.
In google’s case, you might be right. However in general what are you expecting the website to say? An explanation of why react was chosen over other languages? Otherwise the reason you have to enable JavaScript on a react website is because the site doesn’t work without it. I see that like complaining that your gas light on your car doesn’t provide an explanation as to why gas is required for it to run.
If you are curious why a lot of sites use languages like react instead of plain html, there are a few reasons. Prior to react like languages, web servers would generate the page, send it to you, and then anytime you interacted with the site it would send you a whole new page to display. I.e. if you opened a popup for uploading a file, it would send you a whole new page to display which is why older sites flicker on basically any interaction. Newer sites that use things like React are downloaded once. It basically downloads the code to make the website and then runs entirely on your machine. The benefit to this is that if you sort a list, open a drop-down, open a popup to download a file, etc. it all happens on your computer instead of some remote server. No need to wait for a server to respond or download a new page, it can update that specific part of the page instead. Some sites are even fully functional offline because of this which is really cool in my opinion.
This makes a far better user experience because everything is instant and doesn’t trigger page reloads on every interaction with the site.
It’s good for developers because it allows code reusability and vastly increases what you can do. Many of the critical features I have on my site are not possible without JavaScript/React. I actually first developed the site using the old style and changed it over to React because of those limitations.
Google could have updated their site to one of these languages to open up new possibilities in what they can do on their site. That or they might be making it more consistent with their other products for maintainability reasons. I find it unlikely that the people who have JavaScript turned off are a large enough portion of the population for them to care about their data but I could be wrong.