Sage Hane

Results 34 comments of Sage Hane

I think `libX11` should be the only build-time dependency required. As for a tarball, can't you use something like https://github.com/torrinfail/dwmblocks/archive/master.tar.gz? Just replace the `master` bit with some value like `96cbb45`...

Well, the issue specifically mentioned Gentoo ebuilds. And since Gentoo clearly allows commit archives [as seen on this dolphin-emu package](https://gitweb.gentoo.org/repo/gentoo.git/tree/games-emulation/dolphin/dolphin-5.0_p20200705.ebuild#n18), I figured that was a decent solution. But yes, other...

I tried the Nix expression provided by @mtoohey31 and got the following runtime error: ```sh-session $ plover File "/nix/store/sa1wvfw3hcwyc4bd7r23kyvrcshy4p0s-python3.10-xlib-0.31/lib/python3.10/site-packages/Xlib/support/unix_connect.py", line 76, in get_display raise error.DisplayNameError(display) Xlib.error.DisplayNameError: Bad display name ""...

Side note: running `zig ast-check` on the latest Zig (0.9.0-pre) gives me the following message: ```zig $ zig ast-check hellos.zig hellos.zig:29:31: error: unused function parameter pub fn panic(msg: []const u8,...

Likely because it's simply copied verbatim from the [Bare Bones](https://wiki.osdev.org/Bare_Bones) tutorial. No idea why they chose to set those flags.

I've been able to reproduce this issue (or a similar one that causes visual issues and crashes Firefox) by making the bookmark toolbar visible with Shift + Ctrl + B,...

Oh well, the only other relevant things I can think of is that I have fractional scaling set to 1.5. My disto is: ```sh-session $ nixos-version 22.11.20220918.f677051 (Raccoon) ``` and...

Japanese N2DSLL Entrypoint: CIA System version: 11.15.0-47J Checkpoint version: 3.8.0 [crash_dump_3.8.0.dmp.tar.gz](https://github.com/FlagBrew/Checkpoint/files/7826788/crash_dump_3.8.0.dmp.tar.gz)

https://github.com/elm/core/blob/e47edebc0240dc0b840875d7714f9393e0b3f45d/src/Char.elm#L84-L85 Wouldn't `char /= Char.toLower char` suffice? If a character does not equal its lowercase counterpart, it must be uppercase. `A` would become `a`, `True` `a` would become `a`, `False`...

@miniBill, good to know. So, would you argue that `'Dž'.isLower()` should return `true`, or `false`? I feel like if a character has an uppercase form, it should be considered a...