sftrabbit
No user record in our sample, but sftrabbit has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
No user record in our sample, but sftrabbit has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
Thanks. I tried testing on as many devices as I could. Could you please submit a screenshot and description to the website issues page [0]? [0] https://github.com/sftrabbit/CppSamples-Web/issues
The current system is just to post sample suggestions to the GitHub issues page [0]. No voting however. I'm not sure there's much need for a voting system right now. [0]…
I will make sure this is made clear in the sample descriptions. Experimental means that it's part of Technical Specification - basically the proving ground before being accepted into the C++ standard. It is truly…
The samples are all very short and generic, so I'm not sure how legal significance a copyright license will have. However, I do plan to add a license to the repository if only to make it clearer. Is CC0 appropriate for…
Very true, and the site will be a little less useful for those people. I am also planning to add a note to every sample stating which standard it depends on, which should make this problem a bit better.
I need to add a license to the samples repository (license suggestions welcome). The samples are all so short and generic that I'm not sure what legal significance it would actually have, but it's worth doing anyway if…
My biggest concern with Googling for these things is that the Stack Overflow answers range from bad practices, to good C++03 practices, to good C++11/14 practices. It's difficult to know exactly what the…
Creator of the site here. Thanks for taking a look and I really appreciate all the feedback. I wanted to provide a place for beginners to learn about modern features of C++ and a quick reference for idioms and best…
You can have values that don't belong to objects. I consider there to be three types of value computations: - The value computations of operators, like 5 + 6. These don't use the values of objects. They just use the…
Author here - Apologies, I'll work on making that better. It could perhaps do with an intermediate step where the expression is broken down into a subexpression tree.
Author here - absolutely! This is only for those with an interest in the details of C++ evaluation. Considering the number of times I see these expressions in a purely theoretical context, I assume many people are at…