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#Dinkumware
> 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 difficult to solder a QFN package, then…
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-term but that's been improving with the…
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 to use off-the-shelf components since…
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 declared `= default` in the header. This…
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 implementations.) Looking at the…
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#Dinkumware
> 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 difficult to solder a QFN package, then…
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-term but that's been improving with the…
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 to use off-the-shelf components since…
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 declared `= default` in the header. This…
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 implementations.) Looking at the…