Obsessive Coding Disorder, Julian Storer - JUCE Summit keynote 2015
Julian Storer, the founder of JUCE, rewrites one of the most used C library in the world, Zlib. In doing so, Julian showcases the coding standards that apply to the JUCE library. Watch on to see how many lines of code Julian managed to reduce Zlib to, while improving drastically …Using C++11 to Improve Code Clarity: Braced Initialisers, David Rowland, JUCE Summit 2015
Only an idiot would write a new C-like language in 2016, Jules Storer
Keynote talk, ADC 2016, by Jules Storer, founder of JUCEstrtk -C++ String Toolkit Library
C++ Modules — Clang 3.9 documentation
Top 10 dumb mistakes to avoid with C++ 11 smart pointers
acodersjourney.com/2016/05/top-10-dumb-mistakes-avoid-c-11-s … ↗
Linking an OSX external bundle with a .dylib library
lessons.livecode.com/m/4071/l/15029-linking-an-osx-external- … ↗
Clang Environment variable for linker path
stackoverflow.com/questions/26675047/clang-environment-varia … ↗
C++ Has Become More Pythonic
stb single-file public domain libraries for C/C++
Power up C++ with the Standard Template Library: Part 1 – topcoder
topcoder.com/community/data-science/data-science-tutorials/p … ↗
ziplib - Bitbucket
UTF8-CPP: UTF-8 with C++ in a Portable Way
The Makeheaders Program
Cheerp, the C++ compiler for the Web
Cockos Incorporated | WDL/whittle
WDL/IPlug "Tale" Edition
google/google-api-cpp-client
How to convert an integer to a hexadecimal string in C++ int number = 42; stringstream…
How to convert an integer to a hexadecimal string in C++ int number = 42;stringstream ss;ss << hex << number;// now ss.str(), which is a string, contains "2a"Polycode
Enabling C++ constructor calling from Objective C
C/C++ trick with logical operators Let me show a nice C/C++ trick I just found out:…
C/C++ trick with logical operators Let me show a nice C/C++ trick I just found out: Instead of writing: if (function1()) function2(); you could write: function1() && function2(); because the right side of the && operator is only evaluated (in this case: called), …