Runterwählen ist kein Gegenargument.

[Verifying my cryptographic key: openpgp4fpr:941D456ED3A38A3B1DBEAB2BC8A2CCD4F1AE5C21]

  • 8 Posts
  • 34 Comments
Joined 3 months ago
cake
Cake day: July 1st, 2024

help-circle


  • You can make embarrassing mistakes in virtually any programming language that’s not too esoteric.

    When I still used Python for prototyping (today, I usually use Go for that), it happened much too often that I did this:

    if foo:
        bar()
       foobar() # syntax error
    

    In Lisp, however, both errors are much harder to make (not even considering GNU Emacs’s superb auto-indentation - which is what most Lispers use these days, as far as I know):

    (when foo)  ;; <- obvious!
        (bar))
    
    (when foo
        (bar)
              (foobar)  ;; <- still valid
    (quux))  ;; <- also still valid
    











  • The short answer: NetSurf, because it is the only contemporary web browser that also works under Plan 9, is extremely resource-efficient and is not based on one of the big (= commercial) browser engines.

    The long answer: It depends. I like to use eww to test the accessibility of a website, but since Mozilla destroyed everything I liked about Firefox in November 2017, I’ve been using Vivaldi as my main browser. Although Vivaldi is based on Chromium, it is quite privacy-friendly, performant and extremely customisable. Unfortunately, some websites do not work very well with NetSurf. (I like to report this as a bug to the website operator. It is fatal that everyone always assumes that everyone wants to load and execute hundreds of KiB of JavaScript).