No Littering! -- Bjarne Stroustrup
Earlier this week, Bjarne Stroustrup gave a talk at the Silicon Valley chapter of ACCU. The video and slides are now online:
No Littering! (video) (slides)
by Bjarne Stroustrup
March 11-13, Online
March 16-18, Madrid, Spain
March 23-28, Croydon, London, UK
March 30, Kortrijk, Belgium
May 4-8, Aspen, CO, USA
May 4-8, Toronto, Canada
June 8 to 13, Brno, Czechia
June 17-20, Folkestone, UK
September 12-18, Aurora, CO, USA
November 6-8, Berlin, Germany
November 16-21, Búzios, Rio De Janeiro, Brazil
By Blog Staff | Jan 14, 2016 12:43 PM | Tags: None
Earlier this week, Bjarne Stroustrup gave a talk at the Silicon Valley chapter of ACCU. The video and slides are now online:
No Littering! (video) (slides)
by Bjarne Stroustrup
By Meeting C++ | Jan 13, 2016 03:25 AM | Tags: intermediate c++14 basics advanced
A new video from Meeting C++ 2015:
Variadic and Variable Templates in C++14
by Peter Sommerlad
By Meeting C++ | Jan 12, 2016 06:40 AM | Tags: performance intermediate advanced
A new video from Meeting C++ 2015
Utilize your CPU power
by Mario Mulansky
By Meeting C++ | Jan 11, 2016 07:29 AM | Tags: intermediate c++14 advanced
The first talk is published on youtube from Meeting C++ 2015:
Migration of C++ Libraries to C++14
by Joel Falcou
By robwirving | Jan 9, 2016 12:59 PM | Tags: None
Episode 40 of CppCast the only podcast for C++ developers by C++ developers. In this episode Rob and Jason are joined by Dr. Greg Law to discuss reverse debugging with Undo Software.
CppCast Episode 40: UndoDB and Live Recorder with Greg Law
by Rob Irving and Jason Turner
About the interviewee:
Dr. Greg Law is co-founder and CEO at Undo Software. He has spent nearly 20 years writing systems-level code, including novel kernel designs and networking architectures in academia and at a variety of start-ups. Greg finds it particularly rewarding to turn innovative software technology into “real” business development. He still gets to write some code, although sadly most of his coding these days is done on aeroplanes. Greg lives in Cambridge, England with his wife and two children.
By robwirving | Jan 1, 2016 08:41 AM | Tags: None
Episode 39 of CppCast the only podcast for C++ developers by C++ developers. In this episode Rob and Jason are joined by Juan Pedro Bolivar Puente to discuss Transducers and the Atria library.
CppCast Episode 39: Transducers with Juan Pedro Bolivar Puenteby Rob Irving and Jason Turner
About the interviewee:
Juanpe is a Spanish software engineer currently based in Berlin, Germany. Since 2011 he has worked for Ableton, where he has helped building novel musical platforms like Push and Live and where he coordinates the "Open Source Guild" helping the adoption and contribution to FLOSS. He is most experienced in C++ and Python and likes tinkering with languages like Haskell or Clojure. He is an advocate for "modern C++" and pushes for adoption of declarative and functional paradigms in the programming mainstream. He is also an open source activist and maintainer of a couple of official GNU packages like Psychosynth which introduces new realtime audio processing techniques leveraging the newest C++ standards.
By Meeting C++ | Dec 21, 2015 08:47 AM | Tags: video performance keynote intermediate efficiency basics advanced
See Chandler Carruth and Lars Knoll giving the keynotes at Meeting C++ this year:
Both Keynotes from Meeting C++ 2015 are online!
by Jens Weller
From the article:
Great news: Since yesterday, both of the keynotes from this years Meeting C++ conference are on youtube! Both keynote speakers chose to speak on a specific topic, and delivered very well. There is also a playlist for Meeting C++ 2015.
By robwirving | Dec 18, 2015 07:00 AM | Tags: None
Episode 38 of CppCast the only podcast for C++ developers by C++ developers. In this episode Rob and Jason are joined by Jussi Pakkanen to discuss the Mesonbuild multiplatform build system for C++.
CppCast Episode 38: Mesonbuild with Jussi Pakkanen
by Rob Irving and Jason Turner
About the interviewee:
Jussi Pakkanen got his doctoral degree in computer science from the Helsinki University of Technology in 2006. Since then he has worked on various problem areas ranging from mail sorting to the software stacks of Ubuntu desktop and phone. Most recently he was the SDK lead developer at Jolla. Currently he is open for new development challenges. During his spare time he has been known to be a photographer, movie director, magician, gastronomist, computer game designer and watercolour painter.
By Meeting C++ | Dec 11, 2015 09:03 AM | Tags: performance intermediate efficiency c++14 c++11 boost basics advanced
Meeting C++ just started a week ago, and I already managed to edit and upload all lightning talks:
Meeting C++ 2015 - all lightning talks are now online at youtube
by Jens Weller
From the article:
This year for the very first time we had lightning talks at the Meeting C++ conference. Two sessions with each 5 lightning talks were held...
By Vittorio Romeo | Dec 8, 2015 05:31 PM | Tags: None
Vittorio Romeo expands the Dive into C++14 series with a new video covering the implementation of a generic "unique resource" wrapper.
About the tutorial:
This new tutorial covers the implementation of a generic "unique resource" class, with the same ownership semantics as
std::unique_ptr.
std::unique_ptris not limited to pointer-like handles - by adapting other kinds of handles to the `NullablePointer` concept, it can still be used. Nevertheless, for educational purposes and to understand the commonalities between resource types and handle types, we're going to implement our ownstd::unique_ptr-like generic "unique wrapper".The video shows the implementation of the resource class and the abstraction of the behavior of several example resource types (heap-allocated pointers, OpenGL VBOs, int-based-handle APIs).
All the code is available on GitHub. The code segments are thoroughly commented and can be read as a tutorial without watching the video, if preferred.