user706

Results 29 comments of user706

OK, so I changed to a different proxy, and then things started working ``` error: mingw32: signature from "Alexey Pavlov (Alexpux) " is invalid error: mingw64: signature from "Alexey Pavlov...

Regarding the endless hanging of ```bash pacman-key --refresh-keys #hangs for every until timeout ``` Perhaps it's related to the following: ```bash # following command hangs for ever until timeout gpg...

>Perhaps it's related to the following [...] Ah indeed it is: Changing `/etc/pacman.d/gnupg/gpg.conf` to ``` no-greeting no-permission-warning lock-never #keyserver hkp://pool.sks-keyservers.net keyserver hkp://p80.pool.sks-keyservers.net:80 keyserver-options timeout=10 keyserver-options http-proxy=http://10.56.160.99:8080 ``` now gets the...

Ahhh... hang on! `std::function` behaves the same. See [here](https://wandbox.org/permlink/BibsFiGYxbnwcETB). So this specific issue is probably invalid and can be closed. But I still wonder if it is somehow possible to...

I'm experimenting with that other library, and have a quite raw state**, but with "interesting" behaviour regarding const non-const: No mutable and saner const behaviour... [my_experiments](https://github.com/user706/smallfunction/blob/my_experiments/smallfun/include/smallfun.hpp) (** rhs of move...

Thanks for the '__getstate__()' and '__setstate__()' information. I was using jsonmodels with python multiprocessing `Pool.map` and had problems with the copying of arguments, because of this very issue (pickle is...

Here's a hack, that adds a function `__deepcopy__` to class `models.Base`: ```python from jsonmodels import models, fields, validators import copy def deepcopy( self, memo ): return self.__class__(**self.to_struct()) models.Base.__deepcopy__ = deepcopy...

You can see it in action in the following benchmark: https://github.com/user706/CxxFunctionBenchmark (used in `various.cpp`) PS: what commands do I have to use, to get this buckaroo thing working? Thanks!

I'm compiling with gcc under Linux. Which compiler do you use? Does it compile with your compiler? Are my changes with `static_assert`s working in your setup?

> The enable_if vs static_assert is always an interesting discussion. Although static_assert is easier to read and understand, it has one big disadvantage: You cannot use it in a SFINAE...