Daniel Pfeifer

Results 10 issues of Daniel Pfeifer

The following code breaks when it is compiled with a C++20 capable compiler without using a C++20 capable standard library: ```cpp #if nsel_CPP20_OR_GREATER using std::remove_cvref; #else ``` Please don't assume...

Make sure that all four varriables get interpolated in the following url: `/:var1/:var2?foo=:var3&bar=:var4`. This can be done by replacing the regex `/:[^\/]+/gi` to `/:[^/?&]+/gi` here: https://github.com/MithrilJS/mithril.js/blob/next/request/request.js#L144 Note also that the...

Type: Enhancement

Instead of (or in addition to) `~/.sqitch/`, search the user configuration in `$XDG_CONFIG_HOME/sqitch/`, `~/.config/sqitch/`. https://specifications.freedesktop.org/basedir-spec/latest/ar01s03.html

feature

Header-only libraries often put implementation details into a special namespace (Boost libraries often use `detail`). Implementation details should not be displayed in documentation. When a function returns a type that...

Please format the code with clang-format and put the .clang-format file into the root of the repository. This will simplify contributions.

In the doxygen generated XML output, the only way to find out whether a function is overloaded or not, is to compare the description with the following string: "This is...

I am sure the code in https://github.com/hsutter/cppfront/blob/fd0c99d253da3f11dab3027af88cd32b4f27f608/include/cpp2util.h#L539-L543 should cast to a pointer rather than to a reference: ```cpp return dynamic_cast(x) != nullptr; ```

Use case: Sending emails via Mailgun. https://documentation.mailgun.com/en/latest/user_manual.html#sending-via-api https://curl.haxx.se/libcurl/c/curl_mime_init.html

enhancement

A version of Raspberry Pi OS based on bookworm was released on 10.10.2023. Release notes: https://downloads.raspberrypi.com/raspios_lite_arm64/release_notes.txt This is a duplicate of #1300. I did not find a way to reopen...

feature request

Please see https://auth0.com/docs/jwks > Auth0 exposes a JWKS endpoint for each tenant, which is found at `https://YOUR_AUTH0_DOMAIN/.well-known/jwks.json`. This endpoint will contain the JWK used to sign all Auth0 issued JWTs...

config