The Wayback Machine - https://web.archive.org./web/20210318035303/https://github.com/topics/server
Skip to content
#

Server

A server is a program or device that provides functionality for other programs and devices, called clients. This relation forms the Client-Server Model.

Here are 8,548 public repositories matching this topic...

Crevil
Crevil commented on Feb 11, 2021

Describe the bug

Thank you for a great project and documentation. I ran into a bug (I think) while playing with the 5 minute tutorial.

When revoking an access token that is not found the hydra server returns a 404 response but this is not a defined response in the swagger specification. This leads to an error like `response status code does not match any response statuses defined for thi

thornjad
thornjad commented on Dec 18, 2019

As we attempt to pick up the release cadence, we are in need of an explicit changelog file which enumerates changes in each version. This should be a markdown or plaintext file adhering to some form of standardized format. Ideally, it will be able to work with #582.

duncanspumpkin
duncanspumpkin commented on Feb 14, 2021

We currently use a macro for writing down a money amount as a literal. We should move to a more modern C++ representation with a user defined literal like the below:

constexpr money32 operator"" _GBP(long double money)
{
    return money * 10;
}

static_assert(MONEY(2, 40) == 2.40_GBP);

Go through the codebase and replace all MONEY macro uses with the equivalent version. You m

Wikipedia
Wikipedia