• 34 Posts
  • 1.62K Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle
  • You can also get different varieties of Ubuntu with different default desktop environments, named as portmanteaus of [DE name] + “Ubuntu.” Specifically, there’s Kubuntu (with KDE), Xubuntu (with XFCE), and most relevantly, Lubuntu (with LXQT).

    Note that LXQT isn’t the same thing as LXDE, but is sort of a successor to it (even though LXDE is also still maintained).

    sudo apt install lxde (or sudo apt install lxqt, for that matter) is definitely simpler than starting over installing a Lubuntu image though, so try that first.



  • No, not Safari. While it’s technically true that Safari’s WebKit engine isn’t based on Chromium’s Blink engine, that’s only because the genetic relationship goes in the other direction: Blink was initially forked from WebKit (which was itself forked from KHTML, by the way).

    Point is, Mozilla’s Gecko is the only major browser engine that’s fully unrelated to Blink.





  • I learned Python after I already knew C, and I will forever be grateful for that.

    I took an Operating Systems class in undergrad whose first assignment was to implement a simple web server in C, and it was fine. Later, I took the same prof’s grad-level class and had to do basically the same assignment again, and all I could think was “wow, this is incredibly tedious: this whole thing would be literally two lines of Python.” Python absolutely ruined my patience for writing C (or at least, for writing C socket code that has to manually juggle IPv4 and v6 struct addrinfos and whatnot).