Neko Hz

Results 141 comments of Neko Hz

> I'm not sure if PE executables can do that: the ld flag `--export-all-symbols` seems to only be supported for DLLs, not executables? I just simply add __declspec(dllexport) in c...

the problem is React 19 changed RefObject to RefObject

听起来是因为重载的问题,有些库调用的是flags参数为PackageManager.PackageInfoFlags的,但这个库只代理了int参数版本的,导致替换失败

I don't think it's possible to call js/bun function if python is running standalone... (since bun don't have library) but you can embed node in python with python's ffi

但是可能会存在TOCTOU问题 https://en.wikipedia.org/wiki/Time-of-check_to_time-of-use

> macros aren't yet part of the hash @Jarred-Sumner Not only macro, I use macro is just for demo, but actually it affect normal code... aka I changed the 3.ts...

new minimal example (it affect the default chunk file naming) 1.ts: ```ts import("./2.ts"); ``` 2.ts: ```ts import("./3.ts"); ``` 3.ts: ```ts console.log(1) // change the number manually ``` use command: `bun...

This issue can cause the CDN to provide old chunk files (because the generated file names are the same).

try basic test code: ```ts const { Test } = python.runModule(` class Test: def test(self, *args, **kwargs): return all([len(args) == 3, "name" in kwargs]) `); const t = new Test();...