• 0 Posts
  • 21 Comments
Joined 1 year ago
cake
Cake day: July 16th, 2023

help-circle

  • This is literally the text from one of the links above that assert that Andreas is a fascist:

    “I’m doing my best to build something I believe in, and everyone is welcome to participate as long as we can set our differences aside. 🤓

    I cannot imagine how lopsided your world-view needs to be to interpret this kind of neutrality as “fascist”.

    The only conclusion that I can draw is that some people are so polarized ( black and white ) that they can only interpret people that are not “with” them as “against” them.

    And to clarify “with” above means “shares my extreme views and expectations”.

    If that is true, it is tragically sad.


  • This is a risky comment I know but projecting the politics of “certain kinds of conservatives” onto a Swedish person feels political to me. Why do we feel we know his thought? Certainly not because of the political climate elsewhere I hope.

    After reading the SerenityOS comment, I find it a lot easier to believe that he thought following the long history of apolitical norms in language use was the safe, non-political option. Little did he know?

    I realize that many people now see “historical norms” as implicitly tainted by adjacent beliefs that many also have been present historically. That is fine. Go ahead and change the language. Language evolution is natural. I have no problem with that. But can we not also acknowledge that many people simply learned to use language within a context that had nothing to do with these issues? Isn’t “lack of awareness” or even “lack of a position” a more likely explanation than “sides with the enemy”.

    I see no evidence that the SerenityOS guy himself meant anything political. I do not believe that I can tell his stance on trans issues at all from what he said. And that is the problem.

    Insisting that other people that do not share your passion for language reform are anything other than neutral to your issues is very political. You are projecting some very unkind attributes onto somebody that does not deserve that treatment.

    How is persecution of others a valid way to defend a minority? All I see is one innocent comment asking to be left out of a political debate and then months or years of aggressive attacks in response. Has he even responded to these attacks?

    At the time the comment was written, I think it could have been included in the project or not and it would have meant nothing either way. As somebody that believes trans people are just people, it honestly would not have occurred to me to object to either text.

    Frankly, the level of vitriol that has been directed towards him totally vindicates his initial comment. The level of politics is absurd. I am quite sure that many people witnessing these attacks are turned off. Some that were previously pretty neutral have probably been driven away. Others will fear “trans” as a dangerous, radical movement.

    What is the actual goal here? It cannot actually be harmony and inclusion. Nobodycould be pushing that so ineffectively.


  • The text you quote literally appears under the heading “Apple Platforms”. Gee, why don’t they mention anybody else in the Apple section?

    Immediately below that, there is a cross-platform section where they say “SwiftArgumentParser and Swift’s growing package ecosystem make developing cross-platform command-line tools a breeze.”

    So, at worst, it sounds like the main Swift project may leave you to heft some of the GUI load yourself. Except 99% of what Ladybird does is under the hood processing that creates bitmaps for display. There is hardly any GUI really. Plus, Swift offers C++ interop.

    Ladybird stems from SerenityOS where they write everything themselves. They have their own networking, GUI libraries, and crypto. Since splitting, they have adopted font rendering and media libraries from other projects ( largely available as C code I believe ).

    Swift is cross-platform in all the ways the Ladybird gang needs it to be. It uses LLVM ( very cross-platform ) and the Swift compiler is meant to be cross-platform. All that will evolve and improve independent of Ladybird itself. The Ladybird team does not need many libraries from the Swift ecosystem. What they will need is pretty basic and fundamental.

    Think back to Rust and Mozilla. When Mozilla rewrote the CSS parser in Rust, how much GUI rework was required? None? The CSS parser fell into the space defined by “command-line tools”.







  • “reactionary”. Self-aware much?

    I do not know either of you.

    That said, on the one hand we have a guy that trivial research reveals has been dramatically transparent about his own life, struggles, and frailty in a really humble and disarming way. He shares his talent freely not only with code but mentorship and teaching. He has created a thriving and closer-knit community working together to do interesting and valuable things ( OS and browser ). His somewhat famous tagline is “well, hello friends”. He has also showcased both his wife and other females on his channel. Unless I misunderstand the term “incel”, you are demonstrably and factually wrong on that front at least. The biggest complaint I could find about him elsewhere is that his is “too neutral”. Perhaps that is at play here.

    On the other hand, we have somebody directly peddling destruction, slander, and hate ( you ). And why? As far as I can tell, the only contribution the SerenityOS founder has made to this “discussion” is the sentence “This project is not an appropriate arena to advertise your personal politics.”. Is that really it? Overreaction?

    That sentence spawned all of this? I must have misunderstood which of you we were labelling as “reactionary”.

    Regardless of if the project should have accepted the commit or not ( a valid debate ), I cannot possibly side with this reaction. It is awful.

    Downvotes welcome. I would rather be ethical than popular.




  • I do not like Java but this is a strange argument. The people that invented Java felt that most of the C language should be wrapped in unsafe.

    Opinions can vary but saying Java is not a real language is evidence free name calling. One could just as easily say that any language that does not allow you to differentiate between safe and unsafe baheviour is incomplete and not a “real” language. It is not just the Java and C# people that may say this. As a C fan, I am sure you have heard Rust people scoff at C as a legacy language that was fine for its day but clearly outclassed now that the “real” languages have arrived. Are you any more correct than they are?


  • Technically, a double stores most integers exactly ( up until a certain value ) and then approximations of integers of much larger sizes. A long stores all its integers exactly but cannot handle values nearly as large.

    For most real world data ranges, they are both going to store integers exactly.