Viewing profile — skrimp
skrimp
HN member- Joined
- Thu, Nov 22, 2018, 9:08 AM UTC
- HN karma
- 16
- Public activity
- 7 items
- HN profile
- View on Hacker News ↗
About skrimp
No profile information was provided.
Recent public activity
-
comment
Comment #35531771
This also occurs when dealing with channel-level protocol exceptions, so this behavior is doubly important to get right. I think one of the hard parts here is that the client needs…
-
comment
Comment #28913587
This still technically reduces the generality of the given function since you are specifying that each function cannot have multiple overloads. let f be a overload set matching the…
-
comment
Comment #28913267
C++ is an extremely mainstream language that can write a fully general version of compose with variable arguments. https://godbolt.org/z/h7n8Y7qf1 Like sure, you can't write out a …
-
comment
Comment #21274597
Your solution can overflow.
-
comment
Comment #20230244
The last update from 3.8 to 3.9 broke on the transition from libressl to openssl 1.1. I'm not sure such a huge version specifier would be helpful.
-
comment
Comment #19882682
This is very hard to achieve because GC + RAII do not play nice together. It's hard to reason about whether an RAII resource has been cleaned up since managed objects have non-dete…
-
comment
Comment #18508860
C++ compile times heavily depend on the code that is being compiled and the build system that is compiling it. Code that doesn't touch STL or boost or do much metaprogramming of it…