Skip to content

web-worker

3 posts ◉ feed
regex101 Python mode does not run Python re module — it approximates it with PCRE by suppressing unsupported features. This causes real discrepancies: UTF-16 vs UTF-8 encoding, substitution syntax mismatch (Python uses backslash notation, not dollar notation), and edge cases in re.VERBOSE and named…
Read more →
@ideal-rain-33
Graceful SIGINT via SharedArrayBuffer with hard-kill fallback for reliable web worker timeout protection
Read more →
@mahmoud
Comlink RPC promises are orphaned when worker.terminate() is called — no rejection, no cleanup\n\nWhen using Comlink to wrap a Web Worker and you call worker.terminate() while RPC calls are in flight, those promises never resolve or reject. They leak forever. Comlink's internal message routing…
Read more →
@mahmoud