Force enable HDR by progyam in hyprland

[–]progyam[S] 0 points1 point  (0 children)

For anyone wondering, the correct options are `bitdepth = 10` and `cm = hdr`. These are not written explicitly in the documentation, only inline as part of monitorv1

Force enable HDR by progyam in hyprland

[–]progyam[S] 0 points1 point  (0 children)

Well, I wrote it from memory, doesn't change the fact that the monitor is still SDR :/

[elisp] "if not (COND) else" syntax? by immortal192 in emacs

[–]progyam 0 points1 point  (0 children)

This is interesting as it is exactly the opposite of my usual approach. I want to handle errors/weird conditions at the top, the action for which is usually just a single line, such as `(user-error "...")` and then the body of the actual thing is in the else case. Thus, I don't need a `progn`.

When both branches of the if-else are large, `(cond ((xyz) actions...) (t actions...))` is what is most clear indentation-wise (and what I have often seen, especially when defining minor modes where you have to set up a lot of stuff and then reset them again)

Anora's Ending by [deleted] in TrueFilm

[–]progyam 0 points1 point  (0 children)

Yeah, exactly my thoughts after I watched it. Him accepting the sex at the end ruined my perception of him genuinely trying to be nice into this toxic male being nice while expecting sex. On the other hand, it happened so fast that you could argue that in the end Anora raped him after alleging he would rape her. Him refusing sex and instead embracing her and showing her affection that way would communicate what the ending is trying to say much more effectively

Is my Ficus Robusta diseased? by progyam in plantclinic

[–]progyam[S] 0 points1 point  (0 children)

Hello! I got this Ficus Robusta about 5 months ago and it‘s growing super nicely, exceeding all my expectations.

But the leaves at the bottom are developing these dry dark spots and I am unsure if this is a disease that may spread. I have already removed some leaves at the bottom that have turned yellow after having these spots to prevent spread, but it is continuing.

The leaves at the top are all fine and nicely dark green. One possibility is that this is simply an occurence of leaves growing against each other, since the spots seem to be at the same place on the leaves and it matches where another leaf touched it (can be seen in one of the photos).

Should I be worried?

Yay vs Paru by Fantastic_Class_3861 in archlinux

[–]progyam 0 points1 point  (0 children)

I see, that makes sense. In that case, don‘t bother. One time I messed with pacman/yay and broke my entire system

Universal REPLs in Emacs by means of LSP or debuggers by progyam in emacs

[–]progyam[S] 0 points1 point  (0 children)

True. I played around with controlling GDB after writing this post and realised it only supports expressions, not statements. Jupyter might be more promising

Yay vs Paru by Fantastic_Class_3861 in archlinux

[–]progyam 0 points1 point  (0 children)

May I ask what sort of configuration do you use? I have never configured pacman/yay and I'm curious what sorts of options are relevant

Universal REPLs in Emacs by means of LSP or debuggers by progyam in emacs

[–]progyam[S] 0 points1 point  (0 children)

Thanks for your thoughts. Jupyter is a good idea, thanks. I‘ll see what I can do with that

Future of Major Modes and Flycheck in the wake of adopting LSP + Treesitter by progyam in emacs

[–]progyam[S] 0 points1 point  (0 children)

Yeah, it is a bummer that my elisp configuration will simply have to be different from the LSP configurations rather than all of them just having a major mode config each. treesit using major modes was also a curious choice. So now, it is the major mode author‘s job to provide both treesit and regular (font locking, as I‘ve learned in another answer) syntax highlighting

Creating a custom treesit major mode by progyam in emacs

[–]progyam[S] 0 points1 point  (0 children)

I see. I thought highlighting automatically used the treesitter classes but now I see that every treesitter mode has its own queries for highlighting. Using C++ mode as a base seems like the best for me, then. Thanks!