Brent Woodruff

Results 29 comments of Brent Woodruff

I have `jq` working in the simulator and am working to finish everything that needs to be done to get it added.

Would a wasm version work? ``` mkdir wamp cd wamp curl -LO https://registry-cdn.wapm.io/packages/ken-matsui/base64/base64-0.1.3.tar.gz tar zxf base64-0.1.3.tar.gz cp target/wasm32-wasi/release/base64-cl i.wasm ~/Documents/bin/base64.wasm ``` ``` $ cd $ base64 --help base64-cli 0.1.3 Ken...

I have `jq` working in the simulator and am trying to finish up getting it added. I'm not familiar with `json2csv`. Do you have a link to it?

I had a quick look and the difficulty here is that the program is written in Go. This language toolset is not yet working with ios_system. I compiled it and...

I would be interested in decompiling the resulting Go wasm, replacing the needed SDK calls, and then reassembling it. That would enable Go programs in `ios_system`. I'll try that later.

Used `wabt` to convert the wasm to c. It was over 32MB and 1M lines long 😅. It must have the entire Go stdlib in it. I tried compiling it,...

IIRC it just doesn't work. No output, no errors, no files.

This similarly produces no output.

Go wasm does not provide wasi and therefore cannot be used in the context ios_system / a-shell wants. The `tinygo` provider, however, does and compiling with it works fine. Unfortunately,...

Here is the working `wasm` file for `json2csv` to place in `Documents/bin`. GH made me zip it so I could upload it 🙄 , so it'll need to be unzipped...