Tags: #auto #type #loops
https://blog.petrzemek.net/2016/08/17/auto-type-deduction-in-range-based-for-loops/
"This post tries to present rules of thumb that you can use in day-to-day coding. As you will see, only four of these variants are generally useful."
https://blog.petrzemek.net/2016/08/17/auto-type-deduction-in-range-based-for-loops/
"This post tries to present rules of thumb that you can use in day-to-day coding. As you will see, only four of these variants are generally useful."
Tags: #cpp14 #cpp17 #improvecoding
https://kfrlib.com/blog/how-c14-and-c17-help-to-write-faster-and-better-code-real-world-examples/
How C++14 and C++17 help to write faster (and better) code. Real world examples
https://kfrlib.com/blog/how-c14-and-c17-help-to-write-faster-and-better-code-real-world-examples/
How C++14 and C++17 help to write faster (and better) code. Real world examples
Tags: #performance #libcpp #compared #libstdcpp
http://lists.llvm.org/pipermail/cfe-dev/2016-July/049814.html
"Of the 248 tests, libc++ was faster by at least 5% in 58 of the tests and libstdc++ was faster by at least 5% in 94 of the tests. libc++ was faster by at least 20% in 14 of the tests and libstdc++ was faster by at least 20% in 64 of the tests. The real problem, however, comes from the extremums. libc++ is never more than 65% faster than libstdc++"
http://lists.llvm.org/pipermail/cfe-dev/2016-July/049814.html
"Of the 248 tests, libc++ was faster by at least 5% in 58 of the tests and libstdc++ was faster by at least 5% in 94 of the tests. libc++ was faster by at least 20% in 14 of the tests and libstdc++ was faster by at least 20% in 64 of the tests. The real problem, however, comes from the extremums. libc++ is never more than 65% faster than libstdc++"
Tags: #project #tensorflow #library #opensource #numericalcomputation #flowgraphs
Repo: https://github.com/tensorflow/tensorflow
Website: https://www.tensorflow.org/
Repo: https://github.com/tensorflow/tensorflow
Website: https://www.tensorflow.org/
GitHub
GitHub - tensorflow/tensorflow: An Open Source Machine Learning Framework for Everyone
An Open Source Machine Learning Framework for Everyone - tensorflow/tensorflow
Tags: #cppcon2015 #moderncpp
3D Face Tracking and Reconstruction
https://www.youtube.com/watch?v=_1BBKipyR44
3D Face Tracking and Reconstruction
https://www.youtube.com/watch?v=_1BBKipyR44
YouTube
CppCon 2015: Patrik Huber “3D Face Tracking and Reconstruction using Modern C++"
http://www.Cppcon.org — Presentation Slides, PDFs, Source Code and other presenter materials are available at: https://github.com/cppcon/cppcon2015 — In this...
Tags: #poco #libraries #starting
Modern, powerful open source C++ class libraries for building network- and internet-based applications that run on desktop, server, mobile and embedded systems.
http://arne-mertz.de/2016/09/starting-with-poco/
Website Poco: http://pocoproject.org/
Modern, powerful open source C++ class libraries for building network- and internet-based applications that run on desktop, server, mobile and embedded systems.
http://arne-mertz.de/2016/09/starting-with-poco/
Website Poco: http://pocoproject.org/
Simplify C++!
Starting With the Poco Libraries - Simplify C++!
Recently I started to use the Poco libraries. Today I'll describe my first experiences installing and using them in my current project.
Tags: #isocpp #guidelines
https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md
https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md
GitHub
CppCoreGuidelines/CppCoreGuidelines.md at master · isocpp/CppCoreGuidelines
The C++ Core Guidelines are a set of tried-and-true guidelines, rules, and best practices about coding in C++ - isocpp/CppCoreGuidelines
Tags: #comparison #std::transform #alternatives
http://mariusbancila.ro/blog/2016/09/12/a-comparison-of-two-stdtransform-alternatives-revisited/
http://mariusbancila.ro/blog/2016/09/12/a-comparison-of-two-stdtransform-alternatives-revisited/
Marius Bancila's Blog
A comparison of two std::transform alternatives revisited
In the previous post I have compared two alternative ways of transforming a string to upper case, both using std::transform: one that modifies an existing string and one that generates a new one by…
Tags: #concurrency #thread #future #promise
https://maitesin.github.io//Thread_future_and_promise/
"In the C++11 standard several concurrency related classes were added. I will talk about thread, future and promise."
https://maitesin.github.io//Thread_future_and_promise/
"In the C++11 standard several concurrency related classes were added. I will talk about thread, future and promise."
Oscar Forner's personal website
Thread, future and promise
In the C++11 standard several concurrency related classes were added. I will talk about thread, future and promise. Yes, I know there are others more useful than these three. However, I think that it is really important to know well the bases to be able to…