Adam Badura

Results 12 issues of Adam Badura

Is it possible to somehow propagate authenticator return code to the action defined by directive ``` ApacheConf ErrorDocument 401 ``` From my current findings it seems that the only way...

enhancement

Changes for #2. Along the way I have also corrected `tygrab` in similar way. There it seems that `N` (the index, first template argument) would be better `std::ptrdiff_t` type. However...

`typestring::sval` and return type of `typestring::size` are both `unsigned int`. While it seems `std::size_t` would be more suitable and consistent with other parts of the language. Note that `sizeof...` (which...

Current support for autolinks as ```json "gitlens.autolinks": [{ "prefix": "JIRA-", "url": "https://jira.company.com/issue?query=" }] ``` is quite limited. And it seems to me there are more requirements where is this matched...

feature

CMake is pretty generous when it comes to allowed variable name characters. The [cmake-language(7)](https://cmake.org/cmake/help/git-master/manual/cmake-language.7.html) at point [Variable References](https://cmake.org/cmake/help/git-master/manual/cmake-language.7.html#variable-references) states the following: > Literal variable references may consist of alphanumeric characters,...

It would be nice to have an option to download transformation result. At best using the `media-type` from `output` element (and possibly a matching extension). Having that you could even...

`-Wundef` detects cases where an undefined symbol is evaluated in the context of `#if` and defaults to `0`. While this default behavior could sometimes be a nice shortcut it can...

cla: yes

While working on a sample for #129 I tried the following code ([godbolt.org](https://godbolt.org/z/qaW55EKj1)): ```c++ using delta_safe_t = boost::safe_numerics::safe_signed_range< -1, 1, boost::safe_numerics::native, boost::safe_numerics::loose_trap_policy >; template using const_safe_t = boost::safe_numerics::safe_signed_literal< I, boost::safe_numerics::native,...

Is it possible to somehow include non-continuous ranges? For example. in computation, I'm using an `enum` (converted to its underlying type). The `enum` has a few possible values but the...

On my Windows 10, with MS Visual Studio 2017 and MinGW with GCC 7.2 I have installed Boost following steps on https://github.com/boostorg/boost/wiki/Getting-Started: ``` git clone --recursive https://github.com/boostorg/boost.git cd boost git...