Lilith Orion Hafner

Results 154 comments of Lilith Orion Hafner

@topolarity, does this seem reasonable to you in its current state?

> a departure from the conventions for Unicode completions so far (which are mostly math symbols/letters, exponents, etc.) As Julia's usage extends outside of math, IMO it makes sense to...

@tecosaur has a link to a latex symbol table that might have some of these. Barring external, conflicting, canonical names for these symbols, triage is happy with this. *In general,...

Chapter 7 of https://ctan.org/pkg/comprehensive lists some (all?) latex musical symbols defined across 12 distinct packages with distinct naming conventions. Some arbitrarily chosen examples: \musDoubleFlat \musDoubleSharp \doublesharp \flatflat (but not sharpsharp...

First-time user of FreeCAD here. I just downloaded 0.21.0 from https://www.freecad.org/downloads.php and hit this issue immediately. M2 CPU, MacOS 13.3.

That fixed the crash and also fixed the "the [Start Workbench](https://wiki.freecad.org/Start_Workbench) shows only a blank page" issue.

The unsigned arm (FreeCAD_0.21.0-2023-08-01-conda-macOS-arm64-py310.dmg) gave me a popup with ``` dlopen(/private/var/folders/hc/fn82kz1j5vl8w7lwd4l079y80000gn/T/AppTranslocation/D804BB07-95D6-484A-AA34-B3E9DD68B853/d/FreeCAD.app/Contents/Resources/lib/Fem.so, 0x0002): symbol not found in flat namespace '___kmpc_critical ```

Should also define the 3-arg method to keep using the AbstractString method ```julia julia> @eval Base function show(io::IO, s::A) where {A typeof(annotations(s))), annotations(s)) print(io, ')') end show (generic function with...

This is because `collections.abc.Iterable` is an [abstract base class](https://peps.python.org/pep-3119/) ("abc") which means being an instance of it is defined in terms of having certain methods (analogous to Julia's' `hasmethod`). In...

I agree that we can't get `isinstance` to be right all the time. However, it would help my use case (working with existing Python packages that don't accommodate this weakness)...