Anthon van der Neut
Anthon van der Neut
> > > @alqu Will this work with a Letsencrypt certificate? > > > > > > I think it would work **even better** with Letsencrypt since it is a...
@GaiusVampus thanks for that confirmation. I added another DNS entry and made the Apache entry for 443 and that vhost name to redirect to the docker container. After that I...
Have you tried other clients, or directly connecting with a browser to the calendar URL? I am getting the same error on the macOS calendar, on a setup server setup...
> also interested in an update? Why the question mark? Are you asking me? This seems to be closed, I never got feedback to go ahead with a PR.
I think I ran into the same problem trying to install scalene in a virtualenv. That was on Ubuntu 22.04 which has a system Python 3.10, and no other python...
I think suggesting `--profile-all` if not specified is a good start. If I get too much information, I am likely to try and find out how to cull that. Because...
@njsmith Bash has a `continue` construct, it is called... `continue` ;-) ``` for x in $(seq 3) ; do if [ $x == "2" ] ; then continue; fi; echo...
I generate all of my Markdown (and previously reStructuredText) files that contains code and the results of this code using [`ryd`](https://pypi.org/project/ryd/). That includes all my answers on StackOverflow since a...
This probably needs something like Python's [webbrowser](https://github.com/python/cpython/blob/main/Lib/webbrowser.py) module. Other languages might have something similar. I don't think there is a comparable Zig library (yet).
Yeah comptime elimination should limit the checks to a few browsers. Maybe with an extra function to comptime check on the availability and/or default browser for people that compiler the...