Results 232 comments of refi64

Those commits don't seem to be part of a branch (maybe it was deleted?), but you should be able to do `git cherry-pick 41a196f 2884a34` to pull them in.

Maybe Crystal needs to link with zlib too... What if you pass `--link-flags -lz` to the linker? That being said, this seems like an issue with the OpenSSL pkg-config file.

Ah, my bad... The `-lz` needs to somehow end up *after* the `-lcrypto`, but I'm not sure how to do that...

Maybe just check for its EFI file? GRUB is a little easily to have automatically installed accidentally forget about it, but systemd-boot is usually manually (and therefore consciously) installed.

FWIW ostree also does stuff like chmod the kernel file's permissions when it saves it to /boot, but that can't be done with systemd-boot (since it only supports kernels on...

It could, I'm just pointing out that it would also need to be changed

I mean, technically it *is* high-level by popular definition. I mean, if C++ is considered high-level, then Jai definitely is.

The `:=` is just to represent that the type is inferred. Like `a: auto = b;`. `a: int` and `a: int = 0` are the same, but the latter initializes...

Vulkan and OpenGL are essentially direct APIs to contact the graphics driver, so it being open or closed largely depends on the driver itself. Regardless, there's really no way to...