Archie
Archie
I seem to have run into a UnicodeEncodeError while trying to run this. Any ideas? ``` load: DCM template load: templates\Aluminum Electrolytic Capacitors - SMD.lib load: templates\Beads.lib load: templates\Chip Resistor...
`-ffreestanding` and `-fno-freestanding` are common in embedded systems but clang does not support it. This PR adds them both to the ignored GCC compiler flags list.
This PR adds the `||` syntax to the dependency system, allowing recipes to run on failure. This is based on discussion in https://github.com/casey/just/issues/2583 Example: ``` # justfile foo: || bar...
There is no current way in standard Just to run additional commands if the execution of a recipe fails to allow clean-up. This is available in other languages with keywords...
I'm writing a test harness for a CLI application and would like to get the buffer's content if the session times out while expecting something. This would help debug when...
Adding support to detect `org.gnome.desktop.interface color-scheme 'prefer-dark'` and `org.gnome.desktop.interface color-scheme 'prefer-dark'` would allow automatic theme switching like what is currently available on MacOS. This type of detection is common and...
Problem: I sometimes spin up sessions to only be used once. This can end up being a pain as they clutter the session manager. Request: An option to serialize only...
Hey! I'm having trouble getting caller location tracking to work with a custom `ReportHandler` in miette. I want to output the caller's location whenever an error occurs, similar to what's...