this post was submitted on 08 Nov 2024
248 points (96.6% liked)

Linux

48152 readers
636 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

I just saw a post complaining about the Mozilla layoffs.

I wanted to point out that the vast majority of their income (over 85% in 2022) is from having Google as the default search engine - Ironically, the anti monopoly lawsuit against Google will end this.

Expect things to get worse.

Please don't assume it was just a cruel choice.

S1 S2

you are viewing a single comment's thread
view the rest of the comments
[–] m4m4m4m4@lemmy.world 64 points 6 days ago (3 children)

Mozilla does not look any reliable for people that loves FOSS, yet our current web seems like it's either Firefox/Gecko or Chrome/Chromium browsers. I wish people were more aware of emergent projects like Servo or Ladybird - even better if they could donate to them. I'm positive either of them could be a serious competitor to the Chrome hegemony.

[–] filister@lemmy.world 60 points 6 days ago (3 children)

You are really underestimating the complexity of the task of building a web engine.

Another problem is that Chrome is already ubiquitous and most of the web sites are simply ignoring the Gecko and only optimise against Chromium.

Don't get me wrong, I truly wish we had more completion and I hope those projects take off and with time become a viable alternative of Chromium but I am somehow doubtful.

[–] namingthingsiseasy@programming.dev 20 points 6 days ago* (last edited 6 days ago) (3 children)

You're right about the fact that building an engine is hard, but Socraticly speaking, then why are there so many blink-based browsers and so few gecko-based ones? The answer is because blink is easy to embed in a new project and gecko isn't.

If Mozilla really wants to take back the web (and I honestly don't think they actually do), then what they should really be doing is making gecko as easy to embed in a new browser as blink is. They don't do this, and I suspect that they have ulterior motives for doing so, but if they did, I think we would be much closer to breaking chrome's grasp on the web.

Because let's face it: Mozilla makes a pretty damn good browser engine. But they don't really make a compelling browser based off it. Ever noticed how Mozilla has been declining ever since they deprecated XPCOM extensions? It's because when they provided XPCOM, it enabled users to actually build cool and interesting new features. And now that they've taken it away, all innovation in browser development has stagnated (save for the madlads making Vivaldi).

They need to empower others to build the browser that they can't. That's what would really resurrect the glory days of Firefox in my opinion.

[–] aktenkundig@discuss.tchncs.de 13 points 6 days ago (1 children)

Building a free (as in beer) engine for others to build great browsers on, is a pretty thankless task. Individuals may take pride in such a task, but for a company that needs to pay their staff, it's a fruitless endeavor. I assume it's much harder to earn money, if people are not using your software itself, but the forks that add all the cool stuff.

[–] namingthingsiseasy@programming.dev 7 points 6 days ago* (last edited 6 days ago) (2 children)

I chuckled a bit while reading this, because what you wrote is exactly where Blink came from. It was a fork of webkit, which in turn was derived from KHTML. Then again, the fact KHTML was discontinued does support your point to an extent too, I guess.

But the point is, Chrome is doing exactly this - providing the engine free as in beer and letting people embed it however they like. And yet, what you're predicting, ie. not using the original but just using forks instead, doesn't seem to be happening with Chrome - they still enjoy a massive fraction of the market share. There's no reason to believe that this couldn't happen at Mozilla as well. People usually want the original product, and it's only a small fraction of people that are really interested in using the derivatives.

[–] aktenkundig@discuss.tchncs.de 1 points 2 days ago

Okay, but khtml was part of KDE, so I guess it wasn't developed by a company that needed to make money from it, was it?

And neither is chrome. Google doesn't need it to create revenue. They need it to control the channel with which people access their main product - advertising on the web. And for that goal it is beneficial to have it as widespread as possible, even in the form of derivatives.

[–] frozenspinach@lemmy.ml 3 points 5 days ago (1 children)

Hold on, why are we talking about this like it's something that's not happening? There's all kinds of forks of Firefox.

[–] namingthingsiseasy@programming.dev 4 points 5 days ago (1 children)

The difference is how you interact with the browser engine. Blink is very easy to embed into a new browser project. I've seen it done - if you're familiar with the tools, you can build a whole new browser built around the Blink engine in a few hours. You can write pretty much whatever you want around it and it doesn't really change how you interact with the engine, which also makes updates very simple to do.

With Firefox, it's practically impossible to build a new browser around Gecko. The "forks" that you see are mostly just reskins that change a few settings here and there. They still follow upstream Firefox very closely and cannot diverge too much from it because it would be a huge maintenance burden.

Pale Moon and Waterfox are closer to forks of Firefox than Librewolf for example, but they've had to maintain the engine themselves and keep up with standards and from what I've read, they're struggling pretty hard to do so. Not a problem that Blink-based browsers have to deal with because it's pretty easy and straightforward to update and embed the engine without having to rewrite your whole browser.

Unfortunately, since Google controls the engine, this means that they can control the extensions that are allowed to plug into it. If you don't have the hooks to properly support an extension (ie. ublock), then you can't really implement it... unless you want to take on the burden of maintaining that forked engine again.

That said, Webkit is still open source and developed actively (to the best of my knowledge - I could be completely wrong here). Why don't forks build around Webkit instead of Blink? Not really sure to be honest.

[–] laurelraven@lemmy.zip 2 points 4 days ago

Webkit is the engine used by Safari (among a few others) and, though I think the project is controlled by Apple, it's licensed LGPLv2.1 and BSD 2-Clause

According to the wiki, it's also used in PlayStation, Kindle, Nintendo devices, and the Tizen mobile OS... Additionally, it's apparently the rendering engine used by the default browsers provided by both the KDE and Gnome projects

Honestly, though, I want to see something that's not part of the Mosaic or KHTML families be made and gain at least some foothold...I hate having the Internet basically controlled by one or two mega corporations.

I still wish Opera hadn't abandoned Presto...

[–] halm@leminal.space 7 points 6 days ago

I suspect that they have ulterior motives

Rather than guessing at the motives of others, let's remember Hanlon's razor.

[–] frozenspinach@lemmy.ml 2 points 5 days ago

You’re right about the fact that building an engine is hard, but Socraticly speaking, then why are there so many blink-based browsers and so few gecko-based ones? The answer is because blink is easy to embed in a new project and gecko isn’t.

Okay, that's an interesting point. I mean, there are forks galore of Firefox so I'm not entirely sure I understand. But certainly chromium-based browsers have been getting more traction.

But wasn't the original point something about how hard it is to make a browser?

And if I have this right you're suggesting that it would be achievable for Firefox to make an accessible browser tool kit but they're not due to ulterior motives?

I'm not sure I understand that, either in terms of motive or just impractical terms what it is you think they're doing to make it hard to develop.

[–] laurelraven@lemmy.zip 2 points 4 days ago

Honestly, I would be fine with Blink being default if Google would divest it from themselves and make it an independent open source project that they just contribute to instead of control. They have far too much power with that one bit of tech to shape the Internet as we know it, along with a large chunk of computing that happens offline thanks to the growing ubiquity of node.js/Electron

And they're actively using that control to restrict what we can even do with our own machines right now

[–] eldavi@lemmy.ml 20 points 6 days ago (2 children)

chrome enshitification made me switch back to firefox after 7ish years of using it as my daily driver and likewise was true for netscape.

those two previous experiences tell me that i need to start making preparations to switch away from firefox; but i can't bring myself to do it because all of the other viable alternatives are chrome based. since google already has begun publicly enshitifying chrome further i think i'll end up going with just about any other browser project that i can find and i think that these two are the two most likely candidates.

are you aware of any others?

[–] flueterflam@lemmy.world 10 points 6 days ago

Various websites suck in one browser or the other or simply don't work in more than one single browser. We're not that far away from the days when Internet Explorer (IE) was the only thing that loaded a site (often for something work-related... groan)

That said, if you need Chrom(e/ium) and want a non-data-sucking version, I think Ungoogled Chromium is your best bet currently.

For the Firefox side of things, there are already several forks that aim to do things differently/better. Floorp is one I see recommended regularly. There seem to be a larger number of Firefox forks focusing on security/privacy than Google forks, but this is the most well-regarded from my research.

Simultaneous post-enshittification from both Chrome/Chromium and Firefox is probably (hopefully) leading towards more active development/contribution to these (and other) forks!

[–] KLISHDFSDF@lemmy.ml 3 points 5 days ago

Its in a very alpha state, but check out Zen browser. Based on Firefox, incredibly fast and customizable. Their github page: https://github.com/zen-browser/desktop

[–] frozenspinach@lemmy.ml 2 points 5 days ago

Mozilla does not look any reliable

People keep saying this, but why? Because if it's anything like what people have been saying in these Lemmy threads, good god.