(Who needs a wiki when you can just spend your evening making a static site generator?)
Just a bundle of neat lil tech things I wanted to document somewhere.
By default, Firefox prevents extensions from accessing or modifying the content of sites under domains such as addons.mozilla.org. You can remedy this by doing the following:
extensions.webextensions.restrictedDomains
(Source: https://wiki.mozilla.org/SecurityEngineering/Public_Key_Pinning#How_to_use_pinning)
security.cert_pinning.enforcement_level
0
to entirely disable HSTS1
to disable HSTS if the certificate is signed by a user-added CA2
to fully enable HSTS(Copied from a Fediverse post by rail)
browser.urlbar.update2.engineAliasRefresh
true
(Copied from a Fediverse post by Itanium Thom)
general.aboutConfig.enable
true
Fun fact: Matrix has functionality for you to set your display name and/or avatar, but only for one room. This way, I can use something like "BlankEclair [she/her]" as my "default" display name, but then set it to something like "Claire" in a more personal chat.
(Source: https://discussion.fedoraproject.org/t/qt-based-apps-use-low-quality-black-and-white-emoji/81017)
(Source: https://serverfault.com/questions/774809/truncated-missing-logs-with-systemd-on-ubuntu-16-04)
This can manifest as messages simply Disappearing, such as:
Feb 10 00:01:47 icecone sh[3456344]: + /srv/http/rainverse.icecone/w/tests/phpunit/data/exception/
Feb 10 00:01:47 icecone sh[3456344]: + /srv/http/rainverse.icecone/w/tests/phpunit/data/exception/TestThrowerDummy.php
Feb 10 00:01:47 icecone sh[3456344]: + /srv/http/rainverse.icecone/w/tests/phpunit/data/filecontentshasher/
Feb 10 00:01:59 icecone systemd[1]: restic-backup.service: Deactivated successfully.
Feb 10 00:01:59 icecone systemd[1]: Finished Restic backups.
Feb 10 00:01:59 icecone systemd[1]: restic-backup.service: Consumed 2min 27.510s CPU time, 1.5G memory peak.
This is (likely, because I have not yet confirmed it) because of a systemd-journald feature that drops messages once there is a big burst of them. To globally disable this feature, edit the journal configuration to add the following:
/etc/systemd/journald.conf
# ...
#RateLimitIntervalSec=30s
RateLimitBurst=0
# ...
Afterwards, reload the config by restarting the daemon:
# systemctl restart systemd-journald
For more information, see the RateLimitIntervalSec
and RateLimitBurst
parameters in journald.conf(5).
The source code to this website is under the MIT license.
Unless otherwise specified, the text and images on this site are under CC BY-SA 4.0.
Made by a π³οΈββ§οΈ person Β· Source code (Average Codestuff, Github)