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++"
https://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.
https://arne-mertz.de/2016/09/starting-with-poco/
Website Poco: https://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.
https://arne-mertz.de/2016/09/starting-with-poco/
Website Poco: https://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
https://mariusbancila.ro/blog/2016/09/12/a-comparison-of-two-stdtransform-alternatives-revisited/
https://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…
Forwarded from Syra's Techbinder
Tags: #envoy #proxy #communication
https://eng.lyft.com/announcing-envoy-c-l7-proxy-and-communication-bus-92520b6c8191#.p94lygej8
"The network should be transparent to applications. When network and application problems do occur it should be easy to determine the source of the problem."
https://eng.lyft.com/announcing-envoy-c-l7-proxy-and-communication-bus-92520b6c8191#.p94lygej8
"The network should be transparent to applications. When network and application problems do occur it should be easy to determine the source of the problem."
Medium
Announcing Envoy: C++ L7 proxy and communication bus
Today we are incredibly excited to open source Envoy, our high performance C++ distributed proxy and communication bus designed for large…
Tags: #nullpointerexception #cpp #effect #differenceos #test
https://cristianadam.eu/20160914/nullpointerexception-in-c-plus-plus/
"For those familiar with languages like Java, and C#, something like NullPointerException shouldn’t come as a surprise. But what about C++? C++ also has exceptions, right?"
https://cristianadam.eu/20160914/nullpointerexception-in-c-plus-plus/
"For those familiar with languages like Java, and C#, something like NullPointerException shouldn’t come as a surprise. But what about C++? C++ also has exceptions, right?"
cristianadam.eu
NullPointerException in C++ - Cristian Adam
For those familiar with languages like Java, and C#, something like NullPointerException shouldn’t come as a surprise. But what about C++? C++ also …
Tags: #avoidbugs #moderncpp
https://www.viva64.com/en/b/0429/
" Let's see which techniques in modern C++ help writing not only simple and clear code, but make it safer and more reliable. "
https://www.viva64.com/en/b/0429/
" Let's see which techniques in modern C++ help writing not only simple and clear code, but make it safer and more reliable. "
Viva64
How to avoid bugs using modern C++
One of the main problems with C++ is having a huge number of constructions whose behavior is undefined, or is just unexpected for a programmer. We often come across them when using our st...
Tags: #internetofthings #connectiondevice
https://blog.qt.io/blog/2016/09/15/internet-of-things-why-tools-matter/
https://blog.qt.io/blog/2016/09/15/internet-of-things-why-tools-matter/
Qt Blog
Internet of Things: Why Tools Matter? - Qt Blog
With the Internet of Things (IoT) transformation, it’s obvious that the amount of connected devices in the world is increasing rapidly. Everywhere around our daily lives we all use more and more of them. In addition to being connected, more devices get equipped…
Tags: #gdb #debug
https://www.viva64.com/en/b/0430/#ID0EYBAE
GDB is a tool that is hard to live without. Of course, as Brooks says: "The quality in software development is achieved through proper design, not by endless testing".
https://www.viva64.com/en/b/0430/#ID0EYBAE
GDB is a tool that is hard to live without. Of course, as Brooks says: "The quality in software development is achieved through proper design, not by endless testing".
Viva64
GDB - a tough nut to crack: only a few bugs found by PVS-Studio
GDB is a tool that is hard to live without
Tags: #stl #memoryusage
https://lemire.me/blog/2016/09/15/the-memory-usage-of-stl-containers-can-be-surprising/
"One of the benefits of C++ is the built-in STL containers offering the standard data structures like vector, list, map, set. They are clean, well tested and well documented."
https://lemire.me/blog/2016/09/15/the-memory-usage-of-stl-containers-can-be-surprising/
"One of the benefits of C++ is the built-in STL containers offering the standard data structures like vector, list, map, set. They are clean, well tested and well documented."
Tags: #universal #forwarding #reference #type
https://blog.petrzemek.net/2016/09/17/universal-vs-forwarding-references-in-cpp/
"When talking about T&& in C++, you may have heard about universal references and forwarding references."
https://blog.petrzemek.net/2016/09/17/universal-vs-forwarding-references-in-cpp/
"When talking about T&& in C++, you may have heard about universal references and forwarding references."
Tags: #chakracorecppbridge #chakra #library
"The purpose of this single-header library is to provide a convenient bridge between ChakraCore C-style API and C++."
https://github.com/AlexBAV/ChakraCoreCppBridge
"The purpose of this single-header library is to provide a convenient bridge between ChakraCore C-style API and C++."
https://github.com/AlexBAV/ChakraCoreCppBridge
GitHub
AlexBAV/ChakraCoreCppBridge
ChakraCoreCppBridge - A convenient C++ wrapper for C-style API provided by Microsoft ChakraCore library.