frmdstryr

Results 22 issues of frmdstryr

Are there any plans to support styles? Like background colors and the label font size.

I'm probably doing this wrong... ```python from OCCT.gp import * t = gp_Trsf() import sys t.DumpJson(sys.stdout) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) in ----> 1 t.DumpJson(sys.stdout) TypeError: DumpJson(): incompatible...

Is there (or would it be possible) to have an option to copy the created gif to the clipboard? Many websites (ex github) let you paste image data from the...

enhancement

This might be beyond the scope of this project, but Is it possible to use this to import from a `library.tar.lz4` like you can using pythons [zipimporter](https://docs.python.org/2/library/zipimport.html)? With standard python...

enhancement
help wanted

**Is your feature request related to a problem? Please describe.** The logic analyzer decoding works great however I can only see one packet at a time... **Describe the solution you'd...

enhancement

When trying to build a project with c++ tests the test env fails to solve with the following error: ``` ╭─────────────────────────────── Traceback (most recent call last) ────────────────────────────────╮ │ │ │...

At some point I'd like to get ZHP into https://www.techempower.com/benchmarks/ I added it https://github.com/frmdstryr/FrameworkBenchmarks/tree/add-zig-zhp . It runs however at the max concurrency there are some read errors reported.

- Move to github actions - Reformat with zig fnt - Cleanup some pointer usage - Ignore BrokenPipe and ConnectionReset errors if user drops off when writing response

**Is your feature request related to a problem? Please describe.** The type of some stack variables types could possibly be improved. **Describe the solution you'd like** It may be possible...

RzAnalysis
test-required
RzType
high-priority

```python class Foo(Atom): MAPPING = {"x": 1, "y": 2} x = Enum(*MAPPING.keys()) Foo.x.items Out[21]: ('x', 'y') class Foo(Atom): MAPPING = {"x": 1, "y": 2} x = Enum(*MAPPING.keys()) def _validate_x(self, old,...