user706

Results 17 issues of user706

Since today I'm getting signature invalid, i.e. ```bash export LC_ALL=en_US.UTF-8 # for english error message etc. pacman -Syuu ``` results in ``` error: mingw32: signature from "Alexey Pavlov (Alexpux) "...

Hi, related to #19 (and thus using code from branch develop) ... I'm just meddling with a similar library ([ref](https://github.com/LoopPerfect/smallfunction/pull/3#issuecomment-405690345)), and came across an issue, that affects `StaticFunction` as well:...

Hi, thanks for this nice lib. **Question 1**: Am I correct in assuming that to create a field for any type, I'll have to subclass `fields.BaseField`? See `AnyField` below. ```python...

"Bug": copy.deepcopy is not possible. ```python from jsonmodels import models, fields, validators import copy class A(models.Base): x = fields.IntField(required=True) a1 = A(x = 1) a2 = copy.deepcopy(a1) print(a1.x) print(a2.x) #...

Hi, I would like the `__init__` and `populate` methods [ref](https://github.com/beregond/jsonmodels/blob/master/jsonmodels/models.py#L32), to have the following signature: ```python def __init__(self, throw_on_unknown_keyword = False, **kwargs): # ... def populate(self, throw_on_unknown_keyword = False, **values):...

- fix gcc warning warning: _dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]_ with 2 lines splitup: ```cpp Concept *cpt = reinterpret_cast(memory); cpt->~Concept(); ``` - use `std::size_t` instead of `unsigned`...

Hi, the display link is **working nicely** with my HP docking station (HP USB-C/A Universal dock G2) and HP notebook (HP Elitebook 645 G9), but only **when using Wayland** (have...

Hi, (yes this is no bug... but anyway...) this is not about cross-compiling hdf5, but about using a cross-compiler to compile (raspberry pi) armhf code and link against a sysroot...

Priority - 2. Medium ⏹
Component - Build
Type - Task

Is this not "slow(ish)", when using the standard copying mechanisms: ```cpp std::copy(rs.cbegin(), rs.cend(), out_it) ``` ?? It'll call this unnecessary code on each iterator-dereference: https://github.com/martinmoene/ring-span-lite/blob/b8135cd85499a2d5482e048eb8fb6b354350d427/include/nonstd/ring_span.hpp#L968 which calls the slowish https://github.com/martinmoene/ring-span-lite/blob/b8135cd85499a2d5482e048eb8fb6b354350d427/include/nonstd/ring_span.hpp#L836...

I'm on linux (working with **docker engine**). I started fiddling with `docker-credential-pass` in order to be able to do this: ```bash aws ecr-public get-login-password --region us-east-1 --profile myprofile \ |...