Results 13 comments of Max Rees

This is still present in 5.4.5. ``` [Mar 8 17:07] ------------[ cut here ]------------ [ +0.000005] kernel BUG at mm/uksm.c:3328! [ +0.000010] invalid opcode: 0000 [#1] SMP PTI [ +0.000005]...

I looked into what seems to be preventing Thunderbird from working, other than listing groups (for that I just connected raw to nntpit and issued `GROUP whatever`, which then caused...

If you're curious on how to patch this in the meantime, check out [this patch](https://github.com/sroracle/patches/blob/master/x11-terms/st/icon.patch) that I adapted from [here](https://github.com/defiant-labs/sta/blob/master/patches/st-themes_xicon.diff). The icon in my patch is from [Papirus](https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/blob/master/Papirus/48x48/apps/utilities-x-terminal.svg).

I think the issue is that updating the counter (or any state for that matter) returns a piece of content - this is so the compiler is able to order...

This is making it impossible to set the font for `#raw` while simultaneously respecting the current `#set text(size: ..)` rule.

What I think I meant is the following: ```typst #let template(body) = { set text(size: 24pt) show raw: set text(font: "Courier New") body } #show: template 24pt text #show raw:...

Actually, here's a variant of the above that closer describes the problem: ```typst #let template(body) = { set text(size: 24pt) show raw: set text(font: "Courier New") body } #show: template...

While testing this I've discovered what might be considered a bug: when writing SCHILY.xattr PAX attributes, libarchive urlencodes the xattr name, but when reading back SCHILY.xattr it doesn't decode the...

@mmatuska I've moved the functions to `archive_base64.c`, put the prototypes in `archive_base64_private.h`, and rebased onto master. Any thoughts on the other items?

I think I could add grabbing xattrs from disk (when `checkfs` is enabled) in `parse_file()` if I were to rewrite it using the `archive_read_disk` family of functions; otherwise I would...