The Daily C++
Tags: #challenge   https://www.fluentcpp.com/2017/03/02/the-pi-day-challenge-for-expressive-code-in-c/
Tags: #challenge #result
https://www.fluentcpp.com/2017/03/13/pi-day-challenge-for-the-most-expressive-code-results/
  
  https://www.fluentcpp.com/2017/03/13/pi-day-challenge-for-the-most-expressive-code-results/
Fluent C++
  
  The Pi Day Challenge for the Most Expressive Code – Results
  Expressive code in C++
  Tags: #clang #tidy #improvecode
https://www.kdab.com/clang-tidy-part-1-modernize-source-code-using-c11c14/
  
  https://www.kdab.com/clang-tidy-part-1-modernize-source-code-using-c11c14/
KDAB
  
  Clang-Tidy, part 1: Modernize your source code using C++11/C++14 | KDAB
  This blog series introduces the process of automating code refactoring, by utilizing clang-tidy to embrace new features, effectively.
  Tags: #video
C++CHAT14 ➡ https://www.youtube.com/watch?v=-nQwpmmEDzI
CAD ➡ https://www.youtube.com/watch?v=6SsmQ6lSa_s&feature=youtu.be
  
  C++CHAT14 ➡ https://www.youtube.com/watch?v=-nQwpmmEDzI
CAD ➡ https://www.youtube.com/watch?v=6SsmQ6lSa_s&feature=youtu.be
YouTube
  
  C++Chat14 SFINAW (Bryce, Jonathan, and Odin) [2017-03-11]
  Byrce Adelstein, Jonathan Müller, Odin Holmes join Jon to Visual Studio 2017, Kona, deduction guides, coroutines, SFINAW, Meeting C++ Live, GCC implicit fall...
  Tags: #decreasing #subsequence #problem #algorithm
https://www.techiedelight.com/longest-decreasing-subsequence-problem/
  
  https://www.techiedelight.com/longest-decreasing-subsequence-problem/
Techie Delight
  
  Longest Decreasing Subsequence Problem | Techie Delight
  The longest decreasing subsequence problem is to find a subsequence of a given sequence in which the subsequence's elements are in sorted order, highest to lowest, and in which the subsequence is as long as possible.
  Tags: #modern #tools #diagnostics
https://blog.ndcconferences.com/modern-diagnostics-tools-for-c-applications/
  
  https://blog.ndcconferences.com/modern-diagnostics-tools-for-c-applications/
NDC Blog
  
  Modern diagnostics tools for C++ applications
  Introduction Profiling, debugging, and investigating C++ applications doesn't have to be insanely hard. If you have been a C++ developer for many years, you might be used to memory tracing tools like Valgrind -- with a potential 10x overhead), instrumentation…
  Tags: #library #upgrades
https://developers.redhat.com/blog/2017/03/13/cc-library-upgrades-and-opaque-data-types-in-process-shared-memory/
  
  https://developers.redhat.com/blog/2017/03/13/cc-library-upgrades-and-opaque-data-types-in-process-shared-memory/
Red Hat Developer
  
  C/C++ library upgrades and opaque data types in process shared memory | Red Hat Developer
  The problem C/C++ libraries expect to be able to change the internal implementation details of opaque data types from release to release since such a change has no external ABI consequences
  Tags: #neural #network
https://blog.demofox.org/2017/03/13/neural-network-gradients-backpropagation-dual-numbers-finite-differences/
https://blog.demofox.org/2017/03/15/neural-network-recipe-recognize-handwritten-digits-with-95-accuracy/
  
  https://blog.demofox.org/2017/03/13/neural-network-gradients-backpropagation-dual-numbers-finite-differences/
https://blog.demofox.org/2017/03/15/neural-network-recipe-recognize-handwritten-digits-with-95-accuracy/
The blog at the bottom of the sea
  
  Neural Network Gradients: Backpropagation, Dual Numbers, Finite Differences
  In the post How to Train Neural Networks With Backpropagation I said that you could also calculate the gradient of a neural network by using dual numbers or finite differences. By special request, …