K. S. Ernest (iFire) Lee

Results 1345 comments of K. S. Ernest (iFire) Lee
trafficstars

Find a stream recording annotation setup that works for me. The use case is similar to e-sports coaching.

Closing for now due to lack of interest.

What version of v-sekai game? Assuming https://github.com/V-Sekai/v-sekai-game/commit/342d93a71400e7a31c22eab6a146cb56c47c2317

I worked on an upgraded whitelister https://github.com/V-Sekai/godot/tree/resource-loader-whitelist-with-tests-4.4

See also https://github.com/V-Sekai/godot/pull/42

```c #include void hello() { printf("Hello world!\n"); } ``` ```bash gcc -shared -o libhello.so -fPIC hello.c ```

```bash docker build . -t libriscv docker run -v $PWD/binaries:/app/binaries --rm -i -t libriscv binaries/ ``` ```bash sudo apt install g++-riscv64-linux-gnu ``` I'll update the Dockerfile to take ubuntu in...

Apparently arm64 -> amd64 has something that explodes for my Mac.

~~The next step would be to modify https://github.com/fwsGonzo/godot-riscv/blob/master/src/riscv.hpp#L36C2-L36C6 to void load(const PackedByteArray& buffer, const TypedArray& arguments); to also take a symbol string name?~~

```bash # Modify the Dockerbuild to open bash and copy shared.so docker build . -t riscv #docker rm riscv_container docker run -it --name riscv_container -t riscv root@8b97803024d8:/app# ./rvlinux shared.so shared.so:...