• 1 Post
  • 14 Comments
Joined 8 months ago
cake
Cake day: January 7th, 2024

help-circle






  • Right “libertarians” are more susceptible to power vacuums, provably so, with so many experiments going down the same way. Reason for that is that they aren’t really against authority, just not their kind of authority.

    If you aren’t entrenching the need for active resistance to power and hierarchy, you are expected to fall the same way, that kind of attitude is very much present in actual anarchists, left anarchists.







  • Good news, On VSCode, with Pylance and Ruff I have both intellisense and new syntax support.

    Meh news, symtax highlighting is fucky for generic functions’ return type.

    Example:

    def add[T](a: T, b: T) -> T:
        return a + b
    

    On my setup the -> is colored red but is supposed to be white, that also happens with only the Python extension, so I’m guessing it will be fixed soon.

    Besides that, I’m actually surprised this was hidden under my nose as Ruff was already installed, but Pylint and MyPy both started reporting errors which gave the impression that none of my installed extensions support the new syntax. kind of a rookie mistake on my part not to check every extension’s website for updates.

    Anyway, thanks for the answer, I’m glad to finally be able to utilize this.