Just started getting this now. Hopefully it’s some A/B testing that they’ll stop doing, but I’m not holding my breath
I hate how these kinds of messages never explain WHY. It’s just “Do it. Do what we tell you.” 💀
Switch to Kagi
I get a notification every month telling me that they will charge me for my monthly Kagi subscription and every single month i feel the same:
‘Totally worth it!’
I feel like their pricing would make more sense if you could just pay for your usage, rather than forcing a subscription
They do have different tiers depending on your search volume and features, so in a way they already have this. I’d hate to have to go through checkout every time i did a search.
Why do you think you have to go through a checkout?
They could just pool your owed money and then charge you that at the end of the month, or let you maintain a pool that you throw money into that they take from as you use it.
They have 100, 300, and unlimited for $0, $5, and $10
How much would you be willing to pay per search? And do you know how many searches you make every month?
For me, i pay not for the searches as such, but to not be tracked and be shown more ads than search results
I haven’t been using kagi long enough to really understand how it works yet, but it’s my understanding that they want you to pay every month, even if you had remaining searches from the previous month.
If I pay $5 for 300 searches, why does it matter if I do them within a time frame? When someone isn’t’ searching, they aren’t really costing Kagi anything.
Alternatively, let people pay 1.6 cents per search (or 1.8 cents or something).
Basically because the product they’re selling isn’t “You get to do a search whenever” but “You get to do a search this month”.
The reason for that, based on my experience with various web startups, is they want to maximize the predictability of their resource usage in terms of staff and servers.
If millions of people pay their $5 and then don’t use their searches, then in the extreme case Kagi could be maintaining servers twenty years later in anticipation that their customers might use those searches.
It’s an edge case, but it illustrates the point.
Also, on the customer side, there’s a psychological benefit to free things. Free as in “already paid for; no cost to using it”.
If you have something that can be used this month but not any other month, then using it is free. If using it now means you can’t use it next year, then there’s still a cost to it despite it already being paid for.
Who uses the internet without JavaScript? Must have so many broken websites
I run NoScript, which blocks all JavaScript. I manually allow websites as I need it. It blocks all kinds of annoying nonsense while I browse.
👑
I started disabling JavaScript by default with uBlock Origin a few months ago. I am surprised to report that a bunch of sites work fine without JavaScript.
There are definitely some sites that actually need it, and for those, it’s just one click to permanently allow for that site. But most of the sites I need work better with just CSS and HTML because there are no stupid nags or social media sign-in buttons that pop-up anymore.
I installed NoScript just a few days ago, because I’m forced to use a really weak computer that struggles to even browse the modern web. I feel like NoScript improved it a lot, and while quite a few websites broke (including lemmy) (but most will still display the content), I just set the ones that I need working to trusted, but the performance is still good (I should note I’m also using it in conjunction with an automatic tab discarter).
I however also don’t directly use Google. Both SearX and Yandex don’t need javascript, so I’m unaffected by these news, despite being a bit mad about it as a reflection of the direction the web is going as a whole.
As a former web dev, good. I didn’t get paid enough to care about the people that block JavaScript
as a web dev graceful degregation should be the first thing you learn
If you ever need a search engine without JavaScript or https, give http://frogfind.com/ a try. Works great on ancient browsers and operating systems.
Thanks… But no HTTPS?
Yes, it targets old operating systems. Old browsers don’t have the right certificates installed, nor do they support current encryption algorithms and protocols.
Who still uses Google? DDG has been way better for a long while now. Join the duck side.
Uses Bing results.
Configurable, though, to use many other engines and results.
Lots of overlap, but there are a couple other indexes out there.
Yeah, I should have said “by default” because that is how most people will use it, but the power users will use other engines.
So that’s why it’s so good at finding porn.
AFAIK Startpage gives you google results with your privacy intact and less ads.
I think they switched to usually using bing results last year. Their support site mentions they use both backends. I’d guess which one you get depends on which API is cheaper for each country.
It turns out it went multi-engine, probably to prevent getting cut off of Google’s Results. It probably mixes results from multiple engines like the old multi engine search engines in the old days of the internet.
Didn’t they get bought by an ad company?
When they were purchased it was with the understanding that they would get no user data and that Startpage does not collect it, and it has the same CEO who started the company so I believe him.
I know this may come off as a surprise: but I imagine that requiring JS in 2024 isn’t a big deal to most people.
Now of course Lemmy skews more into that small crowd.
I don’t blame any website for requiring JS for full functionality in 2024.
All of the people replying to this saying you shouldn’t need JS are totally unaware how modern web development works.
Yes, you could do many sites without JS, but the entire workforce for web development is trained with JS frameworks. To do otherwise would slow development time down significantly, not allow for certain functionality to exist (functionality you would 100% be unhappy was missing).
Its not a question of possibility, its a question of feasibility.
I’m a React dev. You can create server side websites, written in JS, that don’t require JS to be turned on in the browser. Granted, this just became a new official feature in React but has already been available with React frameworks like NextJS
That is insane! I’m wondering how they handle modifying the DOM w/ out JS, did HTML 5 get a significant update? I gotta look into this because that sound super interesting.
Any chance you know what version that went out with? I did a brief look at 18 and 17 and couldnt find it. Id really love to know how they are managing this.
It’s called Server Components. If you actually build a fully static website, there is no DOM modification going on. I would actually not recommend doing that with React because it kinda defeats the purpose. The goal of it is to have a mix of both. The initial render is super fast because it is prerendered once for everyone. Then dynamic data is being fetched if needed and elements are replaced. It also improves SEO.
React 19 is not yet officially released but you can read more about it here https://react.dev/blog/2024/04/25/react-19