Donnerstag, Dezember 17, 2015

Zeitangabe des Tages

Wenn Sie im Büro sind, sind wir es auch

Mittwoch, Dezember 09, 2015

Unicode in C++

https://github.com/CppCon/CppCon2014/tree/master/Presentations/Unicode%20in%20C%2B%2B gute Präsentation

Design for clarity

 

Essential complexity

  • What is needed to defeat to solve the problem
  • Try to find the simplest solution

Accidental complexity

  • introduced by the expressions of the solution
  • Minimize it by using C++ well

Don’t over-abstract

  • Base generalizations on concrete solutions

Hide complexity

  • Good interfaces are essential

https://github.com/CppCon/CppCon2014/tree/master/Presentations/Make%20Simple%20Tasks%20Simple

.NET Demo Code von Microsoft

https://github.com/microsoft/healthclinic.biz

Dienstag, Dezember 08, 2015

Stroustrup C++ 11 FAQ

http://www.stroustrup.com/C++11FAQ.html

ganz interessant z.B. zu unique_ptr, thread, function und bind.