Doug Moen

Results 229 comments of Doug Moen

If Debian is correct, and this code isn't open source, then I'll need to fix the problem before I can use replxx in my open source project. However, I notice...

Okay, thanks. I was trying to figure out if there is actually an issue that needs to be fixed. I'd volunteer to fix it myself if there was an actual...

My suggestion is replace the replxx version of ConvertUTF.* with the version used by LLVM, since the LLVM source has been found to be acceptable by Debian. https://github.com/llvm/llvm-project/blob/main/llvm/lib/Support/ConvertUTF.cpp

i have reproduced this in my own app.

valgrind gives a better stack trace ``` ==182348== Conditional jump or move depends on uninitialised value(s) ==182348== at 0x6EC301: std::vector::operator=(std::vector const&) [clone .isra.0] (vector.tcc:224) ==182348== by 0x6F2BAB: assign (unicodestring.hxx:74) ==182348==...

`_history.current()` is implemented like this: ``` UnicodeString const& current( void ) const { return ( _current->text() ); } ``` So `_current` is an iterator (a pointer) that initially does not...

Thanks for the workaround Kamila. Merry Christmas and/or Newtonmas and/or Winter Solstice!

My current idea to implement a `random` function that takes a number, or a vector of between 2 and 4 numbers, and hashes the input into a uniformly distributed random...

There is a new 'noise' library under construction in `lib/curv/lib/noise.curv`. I just checked in the first code for this. See `examples/noise.curv` for a white noise pattern.

Yes, this is a current limitation of the SubCurv compiler. It's also a bug, which according to my 2021 roadmap, is supposed to get fixed this year. There is a...