Daniel Martin
Daniel Martin
The package `cl-lib` has existed since Emacs 24.3, released in 2013. It supplies everything you need from the package `cl` and is smaller (leading to slightly faster compilation times). As...
Starting with version 0.1.0.7, the hdevtools server will crash if asked to check a file in a `.cabal` package that has both a `library` and one or more `executable` sections....
Currently using latest `flycheck.el`, and hlint version 3.1.6. `hlint` has changed its output when the code being complained about spans multiple lines. Here's a patch to flycheck.el that updates the...
While auditing some internal code for a common mistake made in regex patterns, we discovered a vendored copy of this line: https://github.com/gorilla/handlers/blob/3e030244b4ba0480763356fc8ca0ade6222e2da0/proxy_headers.go#L25 The line currently reads forRegex = regexp.MustCompile(`(?i)(?:for=)([^(;|,| )]+)`)...
I invoke `dh_virtualenv` in my package rule file with: ``` override_dh_virtualenv: dh_virtualenv --builtin-venv --python /usr/bin/python3 --skip-install --use-system-packages --upgrade-pip ``` This produces a package that works well on machines that have...
I found this when using `ag` to scan a whole directory of python source for a particular code pattern, then narrowed down the reproducible case to the smallest section of...
RedisShards.scala (`src/main/scala/com/redis/cluster/RedisShards.scala`) fails to override some methods from its parent class `RedisCommand`, making replacing `RedisCommand` with `RedisShards` error-prone in ways that are hard to diagnose. Specifically, we found that RedisShards...
Consider these two similar python programs, which have identical behavior: ``` #! /usr/bin/env/python import configparser import re import sys if __name__ == "__main__": for filename in sys.argv[1:]: cparser = configparser.ConfigParser(interpolation=None)...
The refactoring that took place in the immich-app/base-images repo as part of this pull request: https://github.com/immich-app/base-images/pull/203 has broken the script rather completely. Specifically, the entire `bin` directory is now gone...
### Description of the bug The jellyfin documentation at https://jellyfin.org/docs/general/administration/backup-and-restore claims that for the official `.deb` packages backups are created at `/var/lib/jellyfin/backups`. In fact, backups are created at `/var/lib/jellyfin/data/backups`. I...