• quaff
    link
    fedilink
    English
    1415 days ago

    Neat. But it’s kind of concerning to see yet another OSS project hitch it’s community resourcing to Discord.

    • SavvyWolf
      link
      fedilink
      English
      485 days ago

      Yeah, it’s a bit at odds with their “free from corporate influence” angle. Absolutely no reason to not use Matrix.

      • @LeFantome@programming.dev
        link
        fedilink
        455 days ago

        I actually do not like Discord and wish they did not use it. That said “absolutely no reason not to use Matrix” is clearly an objectively untrue statement.

        Andreas has always been very pragmatic. He will choose the tools he likes best.

      • XNX
        link
        fedilink
        135 days ago

        How does the make it non free from corporate influence. The hate boner towards discord is getting ridiculous sometimes. Yeah it sucks to use a repo thats not googleable and not open source bur discord is an objectively better user experience than matrix

        • Fonzie!
          link
          fedilink
          104 days ago

          How does the make it non free from corporate influence.

          Do they require Discord and depend on it? Yes.
          Is Discord corporate? Yes.
          Are they then still free from corporate influence? Nope. H Simply put, if Discord suddenly implemented weird rules the Ladybird devs would have to comply with, they’d simply have to follow suit or break their main communication channel.

        • Fonzie!
          link
          fedilink
          44 days ago

          How does the make it non free from corporate influence.

          Do they require Discord and depend on it? Yes.
          Is Discord corporate? Yes.
          Are they then still free from corporate influence? Nope.

          Simply put, if Discord suddenly implemented weird rules the Ladybird devs would have to comply with, they’d simply have to follow suit or break their main communication channel.

  • @moreeni@lemm.ee
    link
    fedilink
    1205 days ago

    TL;DR: The Ladybird browser, which was written from scratch and aims to be an alternative to corporate-backed browser, now has a non-profit organisation behind it. Also, it got additional funding of 1 million dollars. The end.

    • @Telorand@reddthat.com
      link
      fedilink
      455 days ago

      Ah, now I can be excited for them and move on with my day. I get that video presentations can be great for feature releases that need visual aids, but I don’t want to sit through a video for details that can be summed up in two sentences.

      • @LeFantome@programming.dev
        link
        fedilink
        55 days ago

        Then don’t watch it. I have spent more time now reading this complaint on Lemmy than I have watching videos that were not worth my time.

        The guy that made this video had a few minutes to make a high-engagement video I guess and no time to write a low-engagement press release. That was his choice.

        Your choice is to watch it or not. He does not your views. Videos do better regardless of your opinion.

        I actually agree with you but I am just sick of reading this comment on every video posted. Use tech to transcribe it yourself or just don’t watch. Stop making me read this complaint. Unlike video, I have to waste time reading before I realize what you are saying.

          • @LeFantome@programming.dev
            link
            fedilink
            34 days ago

            Well, you clearly did not read mine. At least, not the part where I addressed exactly that. I do love these opportunities to brush with genius.

            • Iapar
              link
              fedilink
              33 days ago

              Nope. I read until you did what you criticized, decided it was wasting my time and stopped.

          • @LeFantome@programming.dev
            link
            fedilink
            12 days ago

            The reason videos are so inefficient for him is because he has to take so much time on each one to complain about it being a video.

  • @laxe@lemmy.world
    link
    fedilink
    675 days ago

    It’s great to build a completely open browser from scratch and I want to follow updates from the project. They have a Twitter account but not Mastodon sigh

      • @ccdfa@lemm.ee
        link
        fedilink
        334 days ago

        The other day I was reading some GitHub issues involving an issue I was also having and the maintainer of the project was directing people to their discord server to talk about and hopefully resolve the issue. On top of that, they came back to the GitHub issue and just posted that after some discussion (on Discord) the issue had been resolved. Totally useless to me and anybody else who might be searching for that thing.

  • @xlash123@sh.itjust.works
    link
    fedilink
    625 days ago

    I was wondering why it was written in C++, but the FAQ already beat me to it.

    Why build a new browser in C++ when safer and more modern languages are available?

    Ladybird started as a component of the SerenityOS hobby project, which only allows C++. The choice of language was not so much a technical decision, but more one of personal convenience. Andreas was most comfortable with C++ when creating SerenityOS, and now we have almost half a million lines of modern C++ to maintain.

    However, now that Ladybird has forked and become its own independent project, all constraints previously imposed by SerenityOS are no longer in effect. We are actively evaluating a number of alternatives and will be adding a mature successor language to the project in the near future. This process is already quite far along, and prototypes exist in multiple languages.

    Glad to see they are open to using safer languages. C/C++ was great for its time, but we really need to move on from them.

    • @jqubed@lemmy.world
      link
      fedilink
      175 days ago

      As someone who has done no programming since taking C++ in high school more than 20 years ago, what do you mean by safer language?

      • @brenticus@lemmy.world
        link
        fedilink
        375 days ago

        C and C++ require more manual management of memory, and their compilers are unable to let you know about a lot of cases where you’re managing memory improperly. This often causes bugs, memory leaks, and security issues.

        Safer languages manage the memory for you, or at least are able to track memory usage to ensure you don’t run into problems. Rust is the poster boy for this lately; if you’re writing code that has potential issues with memory management, the compiler will consider that an error unless you specifically mark that section of code as unsafe.

        • @Kajika@lemmy.ml
          link
          fedilink
          94 days ago

          I’m not sure why people keep pushing that myth on C++. It’s been a decade we have smart pointers. There’s no memory management to be done ever.

          Using the old ‘new’ is like typing ‘unsafe’ in rust. Even arrays/vectors have safe accessor.

          Am I missing something?

          • @bamboo@lemm.ee
            link
            fedilink
            12 days ago

            The part you’re missing is that while C++ does have newer safer ways of doing memory management, all the old ways are still present, in wide use, and are easier. Basically, C++ makes it easy to do the wrong thing and hard to do the right thing, and most codebases are built around the wrong things. It’s often easier to just rewrite it in rust than it is to refactor an existing code base, so if you’re going to expend that effort why not do it in a language that has stronger safety guarantees, a better dependency and build management system, and a growing community?

          • @brenticus@lemmy.world
            link
            fedilink
            74 days ago

            It’s been almost a decade since I used C++ and had to verify, but after some quick searching around it looks like it hasn’t changed a ton since I last looked at it.

            You can use smart pointers, and certainly you should, but it’s a whole extra thing tacked on to the language and the compiler doesn’t consider it an issue if you don’t use them. Using new in C++ isn’t like using unsafe in rust; in rust your code is almost certainly safe unless marked otherwise, whereas in C++ it may or may not be managed properly unless you explicitly mark a pointer as smart.

            For your own code in new codebases this is probably fine. You can just always make your pointers smart. When you’re relying on code from other people, some of which has been around for many years and has been written by people you’ve never heard of, it becomes harder to be sure everything is being done properly at every point, and that’s where many of these issues come into play.

    • @refalo@programming.dev
      link
      fedilink
      155 days ago

      Hard disagree. Safe C++ code can be written quite easily these days. And better tools are coming out all the time.

      • @twei@discuss.tchncs.de
        link
        fedilink
        155 days ago

        Yes, but there’s a difference between “you can write safe code” and “the compiler will come for your family the next time you make a mistake”

        • @refalo@programming.dev
          link
          fedilink
          95 days ago

          rust isn’t a magic bullet either, it still doesn’t protect against a whole host of problems, like stack overflows, out of memory/bitflips, logic errors, memory leaks, unrecoverable errors/panics etc., and many projects are full of unsafe context rust code anyways.

            • @Kajika@lemmy.ml
              link
              fedilink
              24 days ago

              And C++, just checked the wiki and the 2 example of openssh’s heartbleed and sudo, both in C. Not C++. As expected.

              • @twei@discuss.tchncs.de
                link
                fedilink
                24 days ago

                By that logic scratch would be the safest language out there (or can you tell me the last time a program written/built in scratch had a bug that affected millions of ppl around the world)

    • @LeFantome@programming.dev
      link
      fedilink
      95 days ago

      I wish it was not C++ but their implementation is quite interesting. Not only is it modern but they wrote their own standard library including error handling right down to the main function. It is quite nice for C++.

      All that came from SerenityOS. I hope they do not lose too much of it with the split. I mean, the Ladybird Project Leader authored most of it ( their C++ framework ) so it will probably stick. Harder to do when you start using other libraries though.

  • @BB_C@programming.dev
    link
    fedilink
    395 days ago

    A reminder that the Servo project has resumed active development since the start of 2023, and is making good progress every month.

    If you’re looking for a serious in-progress effort to create a new open, safe, performant, independent, and fully-featured web engine, that’s the one you should be keeping an eye on.

    It won’t be easy trying to catch up to continuously evolving and changing web standards, but that’s the only effort with a chance.

    • @LeFantome@programming.dev
      link
      fedilink
      225 days ago

      Though I am a big Rust fan, I think Ladybird is evolving fast enough that my money is on Ladybird to become a true daily driver first. The biggest obstacle to that is JavaScript as Ladybird still uses its homegrown engine ( very slow ) and Servo is integrating SpiderMonkey.

      Ladybird just got a million dollar shot in the arm. We will see what becomes of that.

      Despite the Mozilla origins, I do not think you can say Servo is backed by Google. The claim from Ladybird is that it is the only browser not financially supported by Google.

      I would say that Servo is corporate backed at this point and Ladybird still is not ( backed by donations only ) but with large donations by a single donor, we will see if Ladybird is able to stay completely independent over time.

  • @cygnus@lemmy.ca
    link
    fedilink
    275 days ago

    I wonder what’s in it for Shopify. This seems like an odd thing for them to sponsor, or a very expensive FU to Google.

    • @LeFantome@programming.dev
      link
      fedilink
      205 days ago

      Well, it could be genuine altruism. But I doubt a web totally controlled by Google sounds good to a company that relies on the semi-open web for its business.

      This is a bit like Valve liking Linux I imagine.

      • Possibly linux
        link
        fedilink
        English
        84 days ago

        Not to mention they have been burned by Google. They were one of the ones pushing for JPEG XL.

  • @alvanrahimli@lemmy.ml
    link
    fedilink
    English
    114 days ago

    Ladybird is extremely amazing project. Andreas is a good person, with great community around him. The only thing I didn’t like is the new logo - it is very meta-ish. Looks very corporative, and doesn’t really resemble browser :(

  • @Railison@aussie.zone
    link
    fedilink
    English
    43 days ago

    We need more browser engines, especially those that are under NFP ownership. WebKit and Chromium have become too dominant.

    • Hominine
      link
      fedilink
      English
      325 days ago

      How can you be “independent” if you have sponsors? All sponsorships are in the form of unrestricted donations. Board seats and other forms of influence are not for sale.

      …per the FAQ.

        • Snot Flickerman
          link
          English
          115 days ago

          Exactly. When the person who holds your purse strings decides they don’t like something, they can influence you by simply… taking away your financial backing.

    • Possibly linux
      link
      fedilink
      English
      55 days ago

      Why are we shouting?

      As long as it doesn’t become a way for Shopify to shovel ads and collect data it isn’t a problem. We will watch with great interest

  • Undearius
    link
    fedilink
    English
    9
    edit-2
    5 days ago

    This is the first I’m hearing of Ladybird. Looks really interesting and glad to see there are more options for browsers coming

  • @LeFantome@programming.dev
    link
    fedilink
    65 days ago

    I am still trying to decide what I think about the Ladybird / SerenityOS split.

    Short-term, this is going to make it a lot easier for Ladybird to make progress. So good.

    Long-term, I feel like a lot of the values that Andreas used to express about SerenityOS have been compromised.

    I very much liked the, everything from scratch and complete harmony within and complete control over our whole stack idea that came with the mono-repo.

    I also thought that the energy from Ladybird was greatly contributing to SerenityOS. That is lost now, as is their chief architect, technical steward, and community organizer.

    Much of the low-level performance work that went into Ladybird benefited the whole OS. Did SerenityOS even post a monthly update on YouTube this month? The community engagement has already been dampened.

    SerenityOS was certainly benefiting from the networking, codec, and image format work. The biggest impact will obviously be the loss of what was emerging as an amazing native web browser. They cannot even use Ladybird now due to the reliance on so many third-party components. I guess it forks from where it was?

    How is error handling done in Ladybird now? It was beautifully consistent before. What now?

    • Possibly linux
      link
      fedilink
      English
      34 days ago

      I don’t think there really is a need or use case for Serenity OS outside of a hobby project. However, having a new web engine would be great for the open web. I just hope they take privacy seriously.