Skip to content

Instantly share code, notes, and snippets.

View jordanlambrecht's full-sized avatar

Jordy jordanlambrecht

View GitHub Profile
@brooksvb
brooksvb / Uptime-Kuma-Status-Page-Dark-Mode-High-Density-Tweaks.css
Last active November 8, 2024 03:54
These CSS tweaks are for higher density display for Uptime Kuma status pages in dark mode.
:root {
--min-item-width: 28ch;
--max-item-width: .5fr;
--grid-spacing: .25rem;
--item-padding: .25rem;
}
/* Let items expand on small screens */
@media (max-width: 600px) {
:root {
@rourke
rourke / README.md
Last active October 13, 2024 14:11
qBittorrent healthcheck script

qBittorrent healthcheck script

A qBittorrent script that takes advantage of the docker healthcheck ability to do a few things every x seconds:

  1. Check if qBitorrent is up
  2. If yes, check if the configured listening port is the same as the forwarded port of the VPN provider.
  3. If they don't match, update the listening port.

If at any stage the results are unexpected, it will exit with code 1, meaning the container is classified as unhealthy in Docker.

@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active November 17, 2024 07:52
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example