Jonathan Marler

Results 65 issues of Jonathan Marler

Just modifies `*Allocator` to `Allocator` to accomodate the "Allocgate" changes to the Allocator interface.

It looks like zip extraction is about an order of magnitude slower than using the native Windows unzip utilities. It takes about 5 seconds to extract the zig download, and...

remove the extra indentation that was left in from this PR: https://github.com/SuperAuguste/zarc/pull/9. This is only changing whitespace and removing the todo comments to fix the whitespace. Helpful Tip: you can...

Looks like a cool project. Could you document which version of Zig can build this project and include that in the README?

Currently the WASM audio API controls the frequency of its channels using a 16-bit integer. However, the affect audio frequencies have on the human ear is on a "logarithmic" frequency...

An implementation of the "Audio Frequency Proposal" found here: #333 At this point the proposal has not been accepted, but I've implemented it here to demonstrate what it would take...

I've got some autogenerated Zig files that contain a UTF-8 BOM. The BOM for UTF-8 is `0xef 0xbb 0xbf` (see https://en.wikipedia.org/wiki/Byte_order_mark#UTF-8). It looks like this confuses ZLS because the syntax...

bug

It looks like line 57 of `src/Makefile` on version `0.6` calls `perl` to do a substitution in `src/luaconf.h`. However, the `README.md` doesn't document any dependency on perl. I found this...

I'd like to rebind what the ESC key does to a different key sequence, but I can't seem to find the behavior in `keymap.moon` and I was also having trouble...

In DMD I added an interesting way to initialize "make rules" in `build.d` (https://github.com/dlang/dmd/blob/master/src/build.d). here's an example: ```D alias backend = makeRule!((builder, rule) => builder .name("backend") .target(env["G"].buildPath("backend").objName) .sources(sources.backend) .msg("(DC) BACKEND_OBJ")...