Ajani Bilby

Results 22 comments of Ajani Bilby

That's a good point, it's a shame we can't have a standard for representing syntax highlighting... If you want highlighting in an IDE, use textmate's standard, prebuilt documentation is often...

Context of my build action in case it influences this ```yml # .... jobs: build-linux: runs-on: ubuntu-latest timeout-minutes: 10 steps: - uses: actions/checkout@v3 # ... - name: Cache LLVM and...

Is that change live? Because it doesn't appear to have completely fixed the issue. Previously my Github actions wouldn't even load from cache, which they are at least now, however...

The issue specifically appears to be in relation to using `actions/cache@v2`, if you replace it with `actions/cache@v3` it appears to work perfectly. However it appears that `install-llvm-action` isn't properly detecting...

It appears v2 was also possibly not detecting the cache load correctly either [164](https://github.com/qupa-project/uniview-lang/actions/runs/4320488292/jobs/7540785482)

Confirmed this solved the problem on uniview-lang/action-[\#173](https://github.com/qupa-project/uniview-lang/actions/runs/4559901699/jobs/8044318423) Thank you

What's the indented goal for this which is different from the [`stack_checkpoint`](https://wasix.org/docs/api-reference/wasix/stack_checkpoint) and [`stack_restore`](https://wasix.org/docs/api-reference/wasix/stack_restore) functions which are part of the wasix spec? The only main difference that I see is...

Cooperative multi-tasking can be achieved through a dequeue of `long-jump address`s + `stack pointer`, and as you can't store arbiarty data on the wasm stack, and instead you need to...

I was more replying to **exactly** what you were saying here, rather than what has written out with a lot more care in the repo. These proposals are only in...

When reading the sitemap functions in each route, are they done in parrallel or in squence? `Promise.all()` Because if they are bulk dispatched all at once, this would create a...