• 0 Posts
  • 79 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle


  • I have a similar issue (also Firefox on [K]ubuntu 22.04) every time I open a link on a logged-in site in a new tab, but in my case merely refreshing the page is enough to get me logged back in.

    I assume is most likely the fault of the fairly aggressive mix of extensions I’m running rather than Firefox itself, but I haven’t actually tried to troubleshoot it yet.




  • Sometimes there is so much configuration options a GUI would scare most users.

    Or if it didn’t, it would be because the dev limited the options displayed so much that it would cease to be useful for most users. (This is especially true when different users are likely to use different subsets of options rather than having the majority of them using the same subset.)




  • boolean is a totally different thing in 3d software. It’s where you remove something from another something or combine.

    Nah, it’s exactly the same thing. 3D software is just applying a Boolean function to two sets of points at the same time, instead of one scaler piece of data like reading a setting.

    In other words, Firefox is doing f(a), where f is a unary Boolean function (identity or negation) and a is a single true/false value, while your 3D software is doing f(A, B), where f is a binary Boolean function (union a.k.a. AND, intersection a.k.a. OR, etc.) and A and B are vectors of true/false values representing whether particular points of space are contained within object A or B respectively.

    (Some 3D software might be more sophisticated than that, using mathematical expressions of the object boundaries to get exact answers instead of interpolating between points, but I’m just trying to convey the basic concept here.)










  • Trust me, you don’t want to be trying to maintain legacy Jython code at this point, let alone use it for anything new. All the “normal” Python infrastructure like Pip etc. has moved on and broken compatibility, so you’d have to find and maintain locally the last working compatible version of every single package you use. I suppose you could use Java libraries, but the impedance mismatch trying to use LBYL explicitly typed stuff in EAFP python is terrible. It’s just a horrible mess.