• 0 Posts
  • 22 Comments
Joined 2 years ago
cake
Cake day: June 15th, 2023

help-circle




  • Wayland development. Tons of folks yelling “X is good enough!” Where they just ignore that no one is actively developing XOrg which is pretty much the biggest X11 implementation.

    Plenty maintaining XOrg but new things aren’t coming to XOrg, there’s just no one there the XOrg devs moved to Wayland.

    So all these people shouting, they’re telling you keep a piece of software that’s very fragile, in a space that hardware makers are progressing at rapid pace, has decades of hot fixes, duct tape, and cruft, and nobody is actively developing for.

    Like I just don’t understand the people yelling that Wayland is raping peoples wives and setting fire to their dogs. The yelling group is screaming for people to use something that nobody wants to work on and nobody is paying enough for people to work on. The code base is horrible and it easily causes burnout in three weeks or less. No one in their right mind is picking it up for shits and giggles.

    So if everyone abandons Wayland, what’s the end goal? Keep riding XOrg till hardware outpaces it completely? Like I don’t understand what the Wayland haters are trying to get at. There’s so little going on in XOrg at this point and everyone seems to universally hate the code base. And a rewrite of the base sounds a whole lot like Wayland but artificially adding in X11 restrictions that make no sense since we all aren’t using PDP-11 to run the clients.

    I get that Wayland has configurations that don’t work yet. All software has bugs, including X11 implementations. But Wayland is arguably a technology that is more in line with how modern hardware works than the X11 protocol will ever be. And Wayland is designed to be easy for devs to work with, not a cobble of archaic limitations due to a protocol that was designed for 1970s era computers.

    That level of hate for Wayland is just this confusing Luddite cry for software that hardware that properly supports it no longer exists. The reason modern video cards do run on X at this point is because of a lot of hacks. I thought everyone understood this when we did the whole AIGLX vs XGL thing.









  • US FTC’s statement about Google and antitrust investigation back in 2013.

    We nonetheless recognize that some of Google’s algorithm and design changes resulted
    in the demotion of websites that could, collectively, be considered threats to Google’s search
    business… On the other hand, these changes to Google’s search algorithm could reasonably be
    viewed as improving the overall quality of Google’s search results because the first search page
    now presented the user with a greater diversity of websites.

    Rather, we conclude that Google’s display of its own content could plausibly be viewed as an improvement
    in the overall quality of Google’s search product

    Yeah. FTC is going to do jack-crap about the situation given the tools that they currently have. The FTC is on purpose weak, the US Congress has sought to weaken it over the last three decades. People can go leave a comment on the FTC’s website, but don’t forget, US citizens, to stop by the House and the Senate. And if you need some background, here and here.

    Now all that said, this isn’t posted to discourage, it’s posted to get you focused on what hinders the FTC.




  • So the thing is the case has four parts, three out of four are basically (and I quote from the filing):

    [X/Twitter] not only rejects all claims made by the CCDH, but, through our own investigation, we have identified several ways in which the CCDH is actively working to prevent free expression.

    Which pretty much the vast majority of the filing is this. Which is basically"Nuh-uh YOUR mama so fat!" So yeah, it’s going to go nowhere. The inducing folks to break contract, etc. Yeah, there’s next to nothing there. CCDH has tweets showing the very things they indicated and it’s a semantic argument on what “flourished” may or may not mean to a hypothetical person who wants to buy ads on your network. Basically if you’ve got demonstrable garbage on your network, don’t be surprised if someone points it out.

    The fourth part does touch on something to which we don’t have clear guidance on. And that is how CCDH accessed the site to obtain the data. Scraping a website is mostly free, unless you’re doing it for the explicit purpose of profiting. However, CCDH is a non-profit so this is going to be an uphill thing for Musk.

    Except in the case where the court decides to toss a curve-ball. See, the various US courts don’t have any actual legal framework to work from for web scraping. Congress keeps kicking the can on the issue. And that’s the thing that’s got CCDH awake at night, a Judge literally can just invent their own rationale on why scraping is wrong or a protected right. It could literally go either way given a wild enough judge.

    Anyway, the entire point is that no one should be using X or Twitter or whatever the fuck it is now.





  • char**

    So that you can have an array of strings. It’s useful to remember that in C arrays and pointers are exactly the same thing, just syntax sugar for however you want to look at it. There are a few exceptions where this isn’t true however:

    1. Argument of the & operator
    2. Argument of sizeof
    3. C11 has alignof which decay is a no-no
    4. When it’s a string literal of char[] or wide literal of wchar_t[], so like char str[] = "yo mama";

    But int** is just an array of int*, which likewise int* can just be an array of int. In the picture here, we have int** anya that is an array of int* with a size of 1, int* anya that is an array of int with a size of 1, and then of course our int there being pointed to by int* anya.