Michael Mestnik

Results 128 comments of Michael Mestnik

I wonder how much it maters? At some point u decide that all new development is against Vulkan... Though I know it's not well supported on OSX, there are projects...

> There are several reasons why this source pkg would not be accepted into Debian: The comments are related to the "source debian package". The debian/copyright file is a stub...

Close this as a duplicate of: #165

I'm not sure what you'r looking for, but I would start with glibc implementation. 1. https://code.woboq.org/userspace/glibc/posix/regex_internal.c.html 1. https://code.woboq.org/userspace/glibc/posix/regexec.c.html

I think regex support is included in [emscripten libc/musl/src/regex](https://github.com/kripken/emscripten/tree/master/system/lib/libc/musl/src/regex), you just need to write a wrapper and compile it.

I've tested this out on a simple [example](https://github.com/cheako/glibc/blob/emscripten-hack/test.c) and emcc did all on it's own build and include the backend functions: https://github.com/cheako/glibc/blob/emscripten-hack/test.js#L12716 https://github.com/cheako/glibc/blob/emscripten-hack/test.js#L7033 Example usage: https://github.com/cheako/glibc/blob/emscripten-hack/test.js#L1943

Now that there is a Javascript implementation, how long until we can see this being added?

I figured out what I needed by writing many small regex programs, brute force. Though I would still like to see this implemented in case I need it in the...

That's great. All I had to do was use https://www.gnu.org/software/libc/manual/html_node/Matching-POSIX-Regexps.html and emscripten includes support automatically. As for if this is also the same as used in boost I wouldn't know....

Hey, now this could be implemented simply with wasm. If it wasn't seen previously as simple.