This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # /etc/X11/xorg.conf.d/10-LVDS-gamma.conf | |
| # Works on Debian and Ubuntu for at least the last 5 years | |
| Section "Monitor" | |
| Identifier "LVDS" | |
| # Identifier "eDP-1" | |
| Gamma 1.15 0.8 0.78 #tune to taste or accuracy | |
| EndSection |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ~/.config/systemd/user/[email protected] | |
| # Setup: | |
| # loginctl enable-linger "${USER}" | |
| # systemctl --user daemon-reload | |
| # ln -sfv ../../jars/paper.jar /var/minecraft/servers/survival/server.jar | |
| # systemctl --user enable --now minecraft@"$(systemd-escape /var/minecraft/servers/survival)".service | |
| [Unit] | |
| Description=Minecraft Server (%I) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # Authored by James Edington Administrator in 2025; placed in the Public Domain. | |
| __all__ = ['udp_listen_sync', 'udp_listen_async'] | |
| """USAGE: | |
| from udp_helper import * | |
| # Simple iterator that responds instantly to Ctrl+C / SIGINT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from contextlib import contextmanager | |
| from datetime import date | |
| from functools import reduce | |
| from gettext import dgettext | |
| from traceback import format_exception | |
| from types import SimpleNamespace | |
| import re | |
| import uuid | |
| from beancount.core.account import join as account_join, leaf, root, sans_root |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # SPDX-FileCopyrightText: 2025 Ilya Egorov <[email protected]> | |
| # SPDX-License-Identifier: ISC | |
| from __future__ import annotations | |
| from collections import OrderedDict | |
| from typing import TYPE_CHECKING |