• 0 Posts
  • 230 Comments
Joined 1 year ago
cake
Cake day: June 21st, 2023

help-circle
  • My view is that if the goal was to effectively make good software they wouldn’t start from scratch.

    If they used wlroots the desktop would be usable today with a good feature set.

    If they used Qt or GTK they would have feature rich well supported software. (GTK4 could have been an improvement for them, it’s designed around being minimal and having platform libraries implement design choices)

    They didn’t take a practical approach imo. You could argue its a long term investment but because of it it’s probably years off of feature parity. The only upside today is… it’s written in Rust.














  • How the WebRequest API works is:

    1. Network request is made
    2. Sent to the WebExtension
    3. Extension runs arbitrary JavaScript (Slow to very slow)
    4. Repeat for every extension handling requests
    5. Results eventually make it to the WebProcess where it belongs.

    This is slow and will always be. Their change to remove blocking makes steps 2-4 a copy of the data instead of a synchronous call.

    Now an ad can be slower, just by more data or bad JS. But that isn’t Googles concern because they sell those ads.