Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)D
Posts
2
Comments
165
Joined
1 yr. ago

  • Can I save a lot of battery by choosing 1080 instead of 2/4k for laptops in general?

    Yes. What your link states is that running a 4k monitor at 1080p won’t save you power (it will, but via gpu, not monitor draw).

    A 1080p monitor will require substantially less power than a 4k monitor, all other factors held equal.

  • I will die on the hill of bash + atuin & ble.sh being absolute peak.

    Atuin is a shell-history tool that stores detailed shell history in Sqlite, and provides a TUI + fuzzy search to query it efficiently. Optional and self-hostable cross-machine sync is available too, with E2E encryption.

    Ble.sh is a bash-enhancement suite that provides autocomplete, syntax highlighting, multi-line editing, etc.

    You can test them both out in under 5 minutes, and uninstall them just as easily if they aren’t your cuppa. Singular warning: install ble.sh before atuin, since atuin will use a different, buggier pre-exec dependency if ble.sh is not present.

    E: ble.sh is getting automatically converted into a link in my comment , and I’m not sure how to stop that w/o side effects. But the correct URLs are https://github.com/akinomyoga/ble.sh & https://atuin.sh/.

  • Caniformia eunt domus

  • Data center? Nvidia, custom TPUs, or GTFO.

    Home or small business? All over the map, with different hardware excelling at different use cases.

  • Seconding this answer. The error message and description scream envvar issue.

    This is my first time using systemd, so I’m not sure if I am overlooking an obvious step or what.

    @gedaliyah@lemmy.world Did you run a systemctl daemon-reload after making the PassEnvironment change to your service file?

  • Blesh adds a lot of functionality that makes bash feel + act like a fancier neoshell, while keeping the same syntax. Also includes a pre-exec hook, which vanilla bash notably lacks.

    Highly recommend.

  • Welcome to Lemmy! Sincerely hope you can find some reprieve from your physical circumstances here.

    As a friendly heads up, you posted this thread to a tech-related board. Your post may be removed for that reason, but you should consider reposting on a more general comm such as !casualconversation@piefed.social.

  • Yeah, I believe you don’t need to extend Caddy at all for that.

    Add a properly-formatted Authorization header to any requests you make to the server and it’ll work. See Wikipedia page for header string format:

    https://en.wikipedia.org/wiki/Basic_access_authentication

    On the webpage side, I’d have the login form make a POST to your login endpoint using a basic auth header to pull a JWT that acts as a “real” auth key for other pages.

    This is all assuming you want to stick with basic auth as opposed to a more heavyweight option.