sternenseemann
sternenseemann
[curl's implementation](https://github.com/curl/curl/commit/a1f06f32b8603427535fc21183a84ce92a9b96f7) seems as good a reference point as any.
I guess `root` should default to `./.` then, but what should `port` default to? It would be 70 of course, but that is not helpful in your usecase because it'd...
Contrary to 8080 with http, 7070 has another protocol than gopher [assigned to it](https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml?search=7070), so it makes for a bad default. Maybe the solution is to allow specifying a subset...
I don't think that is possible: The gopher server never sees the `//` part of a gopher URL since that is not part of the selector. It only exists to...
> 2. The gopher selector string. Note that some gopher selector strings begin with a copy of the gopher type character, in which case that character will occur twice consecutively....
> In this case, would it be possibel to add a file extension or somethign which would enable the .gophermap parsing behavior on arbitrary files? I guess we could do...
This feature is not a goal for me for the spacecookie server binary that the cabal package exposes. However, the exposed library is pretty flexible, so it should be possible...
> why hslua-repl is broken and how it can be repaired? hslua-repl only support lua >= 2.3 and hslua-core >= 2.3; while Stackage LTS 20 pins them both to 2.2.*,...
In Nix >= 2.6 you can use the following code to correctly and reliably determine the dependency closure of a derivation (in Nix < 2.6 you have to parse the...