Viewing profile — SeanCline
SeanCline
HN member- Joined
- Mon, Jan 09, 2017, 12:33 PM UTC
- HN karma
- 24
- Public activity
- 6 items
- HN profile
- View on Hacker News ↗
About SeanCline
No profile information was provided.
Recent public activity
-
comment
Comment #44398765
Specifically, you'll find his name in the C++ Standard Library headers. Microsoft licensed their standard library from Dinkumware. https://en.wikipedia.org/wiki/P._J._Plauger#Dinku…
-
comment
Comment #40653227
> not hobbyist home soldering friendly for custom board designs I assume by home soldering friendly, you mean too small. I'll make a case for why this isn't a bad thing... If it's …
-
comment
Comment #27573235
You're right that the FTL has some durability concerns which, in addition to performance, is why it's typically cached in DRAM. Older DRAM-less SSDs were unreliable in the long-ter…
-
comment
Comment #14856979
We use one in the office to monitor the Jenkins build status of our dev branch. https://github.com/SeanCline/build-indicator/ Hardware-wise, it's just a Pi and UnicornHat. I wanted…
-
comment
Comment #14434768
Well, that isn't a flaw in the implementation of value_ptr. The example, as provided, won't compile because the the copy constructor, assignment operator, and destructor are declar…
-
comment
Comment #14423476
The idea of a value_ptr is something that's been around in C++ for quite some time, now. It usually goes by the name clone_ptr or copy_ptr. (Googling for either will yield several …