Richard Kiss

Results 112 comments of Richard Kiss

Here's the backtrace from `lldb` using `lldb ledger -- -f crash.dat print`: ```* thread #1, queue = 'com.apple.main-thread', stop reason = signal SIGTTOU frame #0: 0x00007fff56681f95 libc++abi.dylib`__dynamic_cast + 6 libc++abi.dylib`__dynamic_cast:...

It's not currently supported. I don't know enough about it to know how difficult it would be. Do you have a specific use case in mind?

I need more information. Where do you expect this to be, and why? Are you reading some documentation somewhere?

What issue are you seeing? I just ran all the tests on 3.11.6 and they passed. Also did a `pip install`. Anything else you're trying that's failing?

Using `BIP32Node` directly is deprecated. Use it through the `network` corresponding to the coin network you're interested in. For example: ``` from pycoin.symbols.btc import network bip_key = network.keys.bip32_seed(b"foo") bip_key_as_text =...

I strongly believe that if we can use ABI3, we should do so. Why would we want to produce more artifact outputs when we can get away with producing fewer?

Have you considered creating a wrapping object `PythonAllocator` (or something) that has lifetime `'py`? The idea is that the allocator now also has lifetime `'py` and objects coming from python...

On MacOS, I had hard-coded paths break frequently due to `brew upgrade` swapping in new python versions with slightly different paths, so I finally settled on adding this to my...

Use `sox`, which you can install with `brew`. This worked for me: ``` sox -t raw -c1 -r 48000 -b 16 -e signed-integer --endian little MICPIPE-FILE output.wav ``` You might...

I use `lame` to encode wav to mp3. You may be able to encode to `ogg` or `opus` with `sox`. Best compression/quality trade-off seems to be `opus` these days, although...