Francois Marier
Francois Marier
That extension is used by [Ikiwiki](https://ikiwiki.info/) and [other applications](https://superuser.com/a/285878), and it's recognized by GitHub as Markdown. I currently use this in my `~/.config/bat/config`: ``` --map-syntax "*.mdwn:Markdown" ``` but it would...
Per the systemd documentation (https://www.freedesktop.org/wiki/Software/systemd/NetworkTarget/#cutthecraphowdoimakesurethatmyservicestartsafterthenetworkisreallyonline), both Wants and After are required when using the network-online.target. Originally reported on the Debian bug tracker: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=949323
This is the patch I [applied to the Debian package](https://salsa.debian.org/debian/fwknop/-/blob/master/debian/patches/005_gcc10.patch) to make fwknop compile under GCC 10. It is originally from https://github.com/Jakuje/fwknop/commit/a87325b0816a79329cf0b4d4f9ebf247ead117db.
This prevents systemd from realizing that `fwknopd` has started properly and ends up timing out and restarting it again. This is probably due to a race condition between systemd checking...
Right now, when network interfaces go down and then back up (e.g. undocking and re-docking a laptop), fwknop-server dies and can no longer be used to open the firewall. This...
`DEF_RUN_DIR` is [defined based on `SYSRUNDIR`](https://github.com/mrash/fwknop/blob/2857a9cb1bd85271456e8b6be0e17770edc64c40/server/fwknopd_common.h#L68-L73) which is itself [set to `localstatedir`](https://github.com/mrash/fwknop/blob/2857a9cb1bd85271456e8b6be0e17770edc64c40/server/Makefile.am#L59). In the Debian package, I've [set this to `/run`](https://salsa.debian.org/debian/fwknop/blob/a846d907b850000b8131670eb5186874fe23f3a0/debian/rules#L35) but it does look strange to set `--localstatedir` when...
Fixes #293
Fixes #1350. - [x] At least two implementers are interested (and none opposed): * [Firefox (off by default) / Tor Browser (on by default)](https://searchfox.org/mozilla-central/rev/6c8d325e61b0b445ed2e04899da38c3a4c266cba/netwerk/protocol/http/nsCORSListenerProxy.cpp#979-984) * [Brave](https://github.com/brave/brave-browser/issues/18071) - [ ] [Tests](https://github.com/web-platform-tests/wpt)...
The special-use `.onion` domain name, defined in [RFC7686](https://datatracker.ietf.org/doc/rfc7686/), receives special treatment in the Tor browser and in Firefox: https://searchfox.org/mozilla-central/rev/6c8d325e61b0b445ed2e04899da38c3a4c266cba/netwerk/protocol/http/nsCORSListenerProxy.cpp#979-984 It seems like this behavior should be standardized since any browser...