Stephan Beal

Results 18 issues of Stephan Beal

In Firefox and Chrome: ``` 'abc'.split(/./) Array(4) [ "", "", "", "" ] ``` In mujs (current version as of about an hour ago): ``` 'abc'.split(/./) ["a", "c"] ```

https://github.com/ccxvii/mujs/blob/6f93cab7ffcb73d64d45ecc746f121c37c73586d/jsstring.c#L605 The `++a` there is incrementing what could be, unless i'm sorely misunderstanding the code (which i might be), a multi-byte character, which would leave the next call to `js_doregexec()`...

For 20 years i've been fighting with emacs' indentation of JS code in SCRIPT tags. Three minutes after installing this (which i stumbled across in a stackoverflow answer), my problems...

When using MINIZ_NO_ARCHIVE_APIS, def_realloc_func() gets defined but not used. Moving that decl into the NO_ARCHIVE block fixes the problem: ``` #ifndef MINIZ_NO_ARCHIVE_APIS static void *def_realloc_func(void *opaque, void *address, size_t items,...

The 1.2.12 build fails to link on Linux x64 (specifically, Mint 20.3 with clang 10) because the build uses -DPIC instead of -fPIC. Insofar as i grep can see, there...

When AUTOREMAKE is triggered by a subdirectory's makefile, paths resolved in the `auto.def` are treated as relative to the current (sub) dir. This causes, e.g., `configure` to write generated files...

Best explained with a demonstration: [stephan@host:~/src/color_trace]$ ./color_trace_multi.py /usr/bin/env: ‘python\r’: No such file or directory \r characters are Evil.

### Summary [The Wasmer feature docs](https://docs.wasmer.io/ecosystem/wasmer/wasmer-features) say that the wasm threading proposal is implemented, but trying to run any wasm built with threads/-lpthread results in: ``` Validation error: threads support...

❓ question
priority-medium

#### Feature i'm trying to install a copy of wasmtime built from the source tree. [These docs](https://docs.wasmtime.dev/contributing-building.html) cover the build process well enough, but the only mentions i can find...

From jdk8 (1.8.0u45) via intelliJ when executing the chapter 2 ex33 tests: ``` [main] WARN org.jboss.weld.Reflection - WELD-001471 Interceptor method logMethod defined on class org.agoncal.book.javaee7.chapter02.ex27.ProfileInterceptor27 is not defined according to...