SlideShare ist ein Scribd-Unternehmen logo
1 von 35
Downloaden Sie, um offline zu lesen
Version 2017-01-19
Trip Report from Meeting C++ 2017:

It'sWay MoreThan C++
Andrey Upadyshev, Amazon AWS
Licensed under a CC BY-SA 4.0 License.
Contents
✤ Meeting C++ 2017 overview
✤ This year's hot themes
✤ Briefly go thru top* talks
✤ What's next?
* according to my personal judgment
Meeting C++ 2017 Overview
✤ http://meetingcpp.com/2017/
✤ 9th - 11th November, Berlin
✤ The biggest C++ conference in Europe
✤ 3 days
✤ 4 tracks
✤ 44 talks + lightning talks ⚡
✤ ~600 participants, quite busy
✤ Tasty food 🍺🍕
The Meeting's HotThemes
C++17/20 and Beyond
✤ What just came in C++17?
✤ What's coming next?
✤ Jason Turner "Practical C++17" and "Practical constexpr"
✤ Kris Jusiak "Concepts driven design"
✤ Anton Bikineev "Reflection in C++Next"
✤ Niall Douglas "Introduction to proposed std::expected"
✤ Marc Mutz "Stringviews, stringviews everywhere" and "Structured Bindings
Demystified" ⚡
✤ Guy Davidson "Dragging C++ into the modern era: a proposal for a 2D Graphics API"
✤ Jonathan Müller "Fun with (user-defined) attributes"
✤ Miro Knejp "Is This Available?" ⚡
Teaching and Learning C++
✤ Because it's hard
✤ Kate Gregory "Its complicated!" and "5 Things I Figured
Out While I was Supposed to be Dying" ⚡
✤ Jens Weller "Beginning with C++" (Panel)
✤ Quite some talks that suitable for beginners
Nextgen Parallel Programming
✤ Demand for high(er) level parallel programming
✤ Borrowing functional language concepts (next topic)
✤ Rainer Grimm "Threads and Locks must Go"
✤ Alfred Bratterud "True parallelism with no concept of
threads"
✤ Felix Petriconi "There Is A New Future"
Adopting Foreign Concepts
✤ There is still hype about functional languages
✤ Ivan Čukić "Functional Data Structures"
✤ Kevlin Henney "Declarative Thinking, Declarative Practice"
✤ Juan Pedro Bolívar Puente "The most valuable values"
✤ Niall Douglas "Introduction to proposed std::expected"
✤ Andreas Reischuck "Improve your C++ with inspirations
from other languages"
Tools
✤ Incredible amount of talks about tooling
✤ Simon Brand "How C++ Debuggers Work"
✤ Dori Exterman "How to Use Free Visualization Tools to Optimize
Applications and Parallel Computing"
✤ Gábor Horváth "Advanced Tools for Better Productivity" and "How to
deal with a multi- million line codebase?" ⚡
✤ Peter Steinbach "The Performance Addict's toolbox"
✤ Diego Rodriguez-Losada, Luis Martinez de Bartolome "C++ is late to
the party: package management is only the beginning"
MoreTools
✤ Mathieu Ropert "Modern CMake for modular design" and "The
need for a package manager interface" ⚡
✤ Anastasia Kazakova "Tools from the C++ eco-system to save a
leg"
✤ Victor Ciura "Bringing Clang-tidy Magic to Visual Studio C++
Developers"
✤ Arvid Gerstmann "A Very Quick View Into a Compiler" ⚡,
"FASTBUILD: A Short Introduction" ⚡ and "The Case For
Vendored Builds" ⚡
Performance, Design and
Architecture
✤ A lot of talks as always...
✤ ...but less than last year
✤ Is it because everybody is about tools now? 😱
TopTalks (Not Really About C++)
"Better Code:Human interface"
Sean Parent
"Better Code:Human interface"
Sean Parent
✤ Sean Parent is a Principal Scientist at Adobe
✤ The talk's main topics:
✤ Designing consistent HI (and code)
✤ Effective algorithms to work with large collections
✤ “The purpose of a human interface is not to hide what the code does
but to accurately convey what the code does.” – Darin Adler
✤ "Don't lie"
"Better Code:Human interface"
Sean Parent
✤ Taxonomy of Everything:
✤ Collections
✤ Objects
✤ Properties
✤ Operations
✤ Relationships
✤ Model-View-Controller concept is F'ed up in different
ways by different companies
"Better Code:Human interface"
Sean Parent
"Better Code:Human interface"
Sean Parent
✤ Large collections pose a problem:
✤ How to observe the collection interactively, allowing the user to arrange,
filter, and browse
✤ Examples of algorithms to work with large collections
✤ nth_element() + partial_sort() = sort_subrange() for effective
sorting of large collections
✤ stable_partition() + rotate() to manipulate collections while
keeping relative order of elements and elements selection
✤ Interval sets are a good data structure to represent selections
"Better Code:Human interface"
Sean Parent
✤ Relationship vs structure vs architecture.
✤ Within an HI relationships can be challenging to
represent
✤ Example of modelling relationship in HI
"How C++ DebuggersWork"
Simon Brand
"How C++ DebuggersWork"
Simon Brand
«At some point in your life, your kids may ask you
“how debuggers are made?”. You’ll be able to dodge
the bullet here by directing them to Simon Brand’s
talk which explains it all :)»
– Mathieu Ropert
"How C++ DebuggersWork"
Simon Brand
✤ Really about any native debugger, (almost) nothing C++ specific
✤ No background knowledge required
✤ GDB/LLDB
✤ Topics:
✤ ELF/DWARF
✤ ptrace
✤ Debug information
✤ Breakpoints
✤ Stepping
✤ Backtrace
✤ Expression evaluation
✤ Reversible debugging
✤ Awesome "Find the Bug" slides 🐞
"Deep Learning with C++"
Peter Goldsborough
"Deep Learning with C++"
Peter Goldsborough
✤ Introduction into machine learning
✤ Good trampoline to finally start it
✤ Random words from the talk:
✤ OSI Model of Machine Learning, Classification,
Generative, Convolution, TensorFlow, Graph Layer
Parallelism, Forward Pass, C++, cuBLAS, Google,
im2col, Sigmoid Activation Function, Bob, Caffe2, Static
Graph, Facebook, Python, TPU, MXNet, GPU, cuDNN,
Quantization, Amazon
"FantasticAlgorithms andWhereTo FindThem"
Nicholas Ormrod
"FantasticAlgorithms andWhereTo FindThem"
Nicholas Ormrod
✤ Nicholas Ormrod is an infrastructure engineer at Facebook
✤ 4 space efficient algorithms:
✤ Heavy Hitters - finding heavy hitters , which are elements that
occur at least X% of the time (for X = 50% it's called Majority
Element, or Boyer-Moore's Majority Vote)
✤ Used in some Facebook infrastructure services to find traffic
outliers for DoS (not DDoS) protection (not intention attacks)
✤ Used by Gcov profiler to find the value of function argument
that occurs the vast majority of time
"FantasticAlgorithms andWhereTo FindThem"
Nicholas Ormrod
✤ Morris Traversal - non-destructively in-order traverse a tree
✤ Used for unbalanced trees to prevent stack smashing due to recursive calls (not
needed for a balanced tree)
✤ Reservoir Sampling - selects k elements with a random probability from an
unknown length stream
✤ Used in BigGrep, a Facebook's internal grep tool for entire codebase
✤ HyperLogLog - count the number of distinct elements in a collection that's too big to
fit in memory
✤ Probabilistic cardinality estimation
✤ Needs about O(log log n) memory, where n is cardinality
✤ Recommended Michael VanLoon's talk "STL Algorithms in Action" (CPPcon)
Top C++Talks (Very Briefly)
Top C++Talks
✤ Jason Turner "Practical C++17"
✤ All the practical things you need to know about the new standard
✤ Klaus Iglberger "Free your functions"
✤ In-depth advocating why non-member functions are better than members
✤ Made like a preaching 👻
✤ Joel Falcou "The Three Little Dots and the Big Bad Lambdas - A Constructive Approach
to Code Generation"
✤ Simple approach for code-generation without TMP ("Write code generators not
type wranglers")
✤ A lot of other good talks
C++Talks for Beginners
✤ Kate Gregory "Its complicated!" and "5 Things I Figured Out While I
was Supposed to be Dying" ⚡
✤ How to teach C++ and where to seek for C++ knowledge.
✤ Milosz Warzecha "An inspiring introduction to Template
Metaprogramming"
✤ Hm... it's exactly what the title says
✤ Antonio Mallia, Jaime Alonso Lorenzo "C++: unexpected
behaviour"
✤ C++'s cave of horror
Bookmarks
✤ ChiaScript - an easy to use embedded scripting
language for C++ (Jason Turner's talks, mostly in
"Practical constexpr")
✤ IncludeOS is a zero-overhead library operating
system. Written from scratch in modern C++ (Alfred
Bratterud's "True parallelism with no concept of threads")
✤ rr - reversible debugger (touched in Simon Brand's
"How C++ Debuggers Work")
What's Next?
What's Next?
✤ I'll organise:
✤ Voting for talks you're interested in.
✤ FLS replay & discussion session for top 3 (?)
voted talks.
✤ Something else? Let me know
What's Next?
✤ All talks and slides are available online (or will be
there soon):
✤ http://meetingcpp.com/2017/slides_meetingcpp_2017.zip
✤ https://www.youtube.com/playlist?
list=PLRyNF2Y6sca3EUO_RTNv5t7gUmppFl9R1

or

https://www.youtube.com/user/MeetingCPP

> playlists > Meeting C++ 2017
Questions?
Thank you!

Weitere ähnliche Inhalte

Ähnlich wie Trip Report from Meeting C++ 2017: It's Way More Than C++

OpenFest 2012 : Leveraging the public internet
OpenFest 2012 : Leveraging the public internetOpenFest 2012 : Leveraging the public internet
OpenFest 2012 : Leveraging the public internet
tkisason
 
OSCON 2014: Data Workflows for Machine Learning
OSCON 2014: Data Workflows for Machine LearningOSCON 2014: Data Workflows for Machine Learning
OSCON 2014: Data Workflows for Machine Learning
Paco Nathan
 

Ähnlich wie Trip Report from Meeting C++ 2017: It's Way More Than C++ (20)

Resisting The Feature Creature
Resisting The Feature CreatureResisting The Feature Creature
Resisting The Feature Creature
 
Evolving as a professional software developer
Evolving as a professional software developerEvolving as a professional software developer
Evolving as a professional software developer
 
An Introduction to Machine Learning
An Introduction to Machine LearningAn Introduction to Machine Learning
An Introduction to Machine Learning
 
Machine learning with Google machine learning APIs - Puppy or Muffin?
Machine learning with Google machine learning APIs - Puppy or Muffin?Machine learning with Google machine learning APIs - Puppy or Muffin?
Machine learning with Google machine learning APIs - Puppy or Muffin?
 
Craft of coding
Craft of codingCraft of coding
Craft of coding
 
OpenFest 2012 : Leveraging the public internet
OpenFest 2012 : Leveraging the public internetOpenFest 2012 : Leveraging the public internet
OpenFest 2012 : Leveraging the public internet
 
HAX - Chaotic Good
HAX - Chaotic GoodHAX - Chaotic Good
HAX - Chaotic Good
 
Not Your Fathers C - C Application Development In 2016
Not Your Fathers C - C Application Development In 2016Not Your Fathers C - C Application Development In 2016
Not Your Fathers C - C Application Development In 2016
 
Tf itpbapm
Tf itpbapmTf itpbapm
Tf itpbapm
 
Pre-Aggregated Analytics And Social Feeds Using MongoDB
Pre-Aggregated Analytics And Social Feeds Using MongoDBPre-Aggregated Analytics And Social Feeds Using MongoDB
Pre-Aggregated Analytics And Social Feeds Using MongoDB
 
Bridging the future gap
Bridging the future gap Bridging the future gap
Bridging the future gap
 
Codemotion Berlin 2015 recap
Codemotion Berlin 2015   recapCodemotion Berlin 2015   recap
Codemotion Berlin 2015 recap
 
OSCON 2014: Data Workflows for Machine Learning
OSCON 2014: Data Workflows for Machine LearningOSCON 2014: Data Workflows for Machine Learning
OSCON 2014: Data Workflows for Machine Learning
 
Moving Forward with AI
Moving Forward with AIMoving Forward with AI
Moving Forward with AI
 
DevTalks Cluj - Open-Source Technologies for Analyzing Text
DevTalks Cluj - Open-Source Technologies for Analyzing TextDevTalks Cluj - Open-Source Technologies for Analyzing Text
DevTalks Cluj - Open-Source Technologies for Analyzing Text
 
PyData Berlin Meetup
PyData Berlin MeetupPyData Berlin Meetup
PyData Berlin Meetup
 
시니어가 들려주는 "내가 알고 있는 걸 당신도 알게 된다면"
시니어가 들려주는 "내가 알고 있는 걸 당신도 알게 된다면"시니어가 들려주는 "내가 알고 있는 걸 당신도 알게 된다면"
시니어가 들려주는 "내가 알고 있는 걸 당신도 알게 된다면"
 
Planning JavaScript and Ajax for larger teams
Planning JavaScript and Ajax for larger teamsPlanning JavaScript and Ajax for larger teams
Planning JavaScript and Ajax for larger teams
 
TXJS 2013 in 10 minutes
TXJS 2013 in 10 minutesTXJS 2013 in 10 minutes
TXJS 2013 in 10 minutes
 
How to Be a 10x Data Scientist
How to Be a 10x Data Scientist How to Be a 10x Data Scientist
How to Be a 10x Data Scientist
 

Mehr von Andrey Upadyshev

Mehr von Andrey Upadyshev (6)

Hot C++: Rvalue References And Move Semantics
Hot C++: Rvalue References And Move SemanticsHot C++: Rvalue References And Move Semantics
Hot C++: Rvalue References And Move Semantics
 
Hot С++: Universal References And Perfect Forwarding
Hot С++: Universal References And Perfect ForwardingHot С++: Universal References And Perfect Forwarding
Hot С++: Universal References And Perfect Forwarding
 
Where to type_std_move?
Where to type_std_move?Where to type_std_move?
Where to type_std_move?
 
Hot C++: New Style of Arguments Passing
Hot C++: New Style of Arguments PassingHot C++: New Style of Arguments Passing
Hot C++: New Style of Arguments Passing
 
[OLD VERSION, SEE DESCRIPTION FOR THE NEWER VERSION LINK] Hot С++: Universal ...
[OLD VERSION, SEE DESCRIPTION FOR THE NEWER VERSION LINK] Hot С++: Universal ...[OLD VERSION, SEE DESCRIPTION FOR THE NEWER VERSION LINK] Hot С++: Universal ...
[OLD VERSION, SEE DESCRIPTION FOR THE NEWER VERSION LINK] Hot С++: Universal ...
 
[OLD VERSION, SEE DESCRIPTION FOR NEWER VERSION LINK] Hot C++: Rvalue Referen...
[OLD VERSION, SEE DESCRIPTION FOR NEWER VERSION LINK] Hot C++: Rvalue Referen...[OLD VERSION, SEE DESCRIPTION FOR NEWER VERSION LINK] Hot C++: Rvalue Referen...
[OLD VERSION, SEE DESCRIPTION FOR NEWER VERSION LINK] Hot C++: Rvalue Referen...
 

Kürzlich hochgeladen

%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
masabamasaba
 
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Medical / Health Care (+971588192166) Mifepristone and Misoprostol tablets 200mg
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
chiefasafspells
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
shinachiaurasa2
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
masabamasaba
 

Kürzlich hochgeladen (20)

%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
 
tonesoftg
tonesoftgtonesoftg
tonesoftg
 
Artyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxArtyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptx
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
 
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go Platformless
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the Situation
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 

Trip Report from Meeting C++ 2017: It's Way More Than C++

  • 1. Version 2017-01-19 Trip Report from Meeting C++ 2017:
 It'sWay MoreThan C++ Andrey Upadyshev, Amazon AWS Licensed under a CC BY-SA 4.0 License.
  • 2. Contents ✤ Meeting C++ 2017 overview ✤ This year's hot themes ✤ Briefly go thru top* talks ✤ What's next? * according to my personal judgment
  • 3. Meeting C++ 2017 Overview ✤ http://meetingcpp.com/2017/ ✤ 9th - 11th November, Berlin ✤ The biggest C++ conference in Europe ✤ 3 days ✤ 4 tracks ✤ 44 talks + lightning talks ⚡ ✤ ~600 participants, quite busy ✤ Tasty food 🍺🍕
  • 5. C++17/20 and Beyond ✤ What just came in C++17? ✤ What's coming next? ✤ Jason Turner "Practical C++17" and "Practical constexpr" ✤ Kris Jusiak "Concepts driven design" ✤ Anton Bikineev "Reflection in C++Next" ✤ Niall Douglas "Introduction to proposed std::expected" ✤ Marc Mutz "Stringviews, stringviews everywhere" and "Structured Bindings Demystified" ⚡ ✤ Guy Davidson "Dragging C++ into the modern era: a proposal for a 2D Graphics API" ✤ Jonathan Müller "Fun with (user-defined) attributes" ✤ Miro Knejp "Is This Available?" ⚡
  • 6. Teaching and Learning C++ ✤ Because it's hard ✤ Kate Gregory "Its complicated!" and "5 Things I Figured Out While I was Supposed to be Dying" ⚡ ✤ Jens Weller "Beginning with C++" (Panel) ✤ Quite some talks that suitable for beginners
  • 7. Nextgen Parallel Programming ✤ Demand for high(er) level parallel programming ✤ Borrowing functional language concepts (next topic) ✤ Rainer Grimm "Threads and Locks must Go" ✤ Alfred Bratterud "True parallelism with no concept of threads" ✤ Felix Petriconi "There Is A New Future"
  • 8. Adopting Foreign Concepts ✤ There is still hype about functional languages ✤ Ivan Čukić "Functional Data Structures" ✤ Kevlin Henney "Declarative Thinking, Declarative Practice" ✤ Juan Pedro Bolívar Puente "The most valuable values" ✤ Niall Douglas "Introduction to proposed std::expected" ✤ Andreas Reischuck "Improve your C++ with inspirations from other languages"
  • 9. Tools ✤ Incredible amount of talks about tooling ✤ Simon Brand "How C++ Debuggers Work" ✤ Dori Exterman "How to Use Free Visualization Tools to Optimize Applications and Parallel Computing" ✤ Gábor Horváth "Advanced Tools for Better Productivity" and "How to deal with a multi- million line codebase?" ⚡ ✤ Peter Steinbach "The Performance Addict's toolbox" ✤ Diego Rodriguez-Losada, Luis Martinez de Bartolome "C++ is late to the party: package management is only the beginning"
  • 10. MoreTools ✤ Mathieu Ropert "Modern CMake for modular design" and "The need for a package manager interface" ⚡ ✤ Anastasia Kazakova "Tools from the C++ eco-system to save a leg" ✤ Victor Ciura "Bringing Clang-tidy Magic to Visual Studio C++ Developers" ✤ Arvid Gerstmann "A Very Quick View Into a Compiler" ⚡, "FASTBUILD: A Short Introduction" ⚡ and "The Case For Vendored Builds" ⚡
  • 11. Performance, Design and Architecture ✤ A lot of talks as always... ✤ ...but less than last year ✤ Is it because everybody is about tools now? 😱
  • 12. TopTalks (Not Really About C++)
  • 14. "Better Code:Human interface" Sean Parent ✤ Sean Parent is a Principal Scientist at Adobe ✤ The talk's main topics: ✤ Designing consistent HI (and code) ✤ Effective algorithms to work with large collections ✤ “The purpose of a human interface is not to hide what the code does but to accurately convey what the code does.” – Darin Adler ✤ "Don't lie"
  • 15. "Better Code:Human interface" Sean Parent ✤ Taxonomy of Everything: ✤ Collections ✤ Objects ✤ Properties ✤ Operations ✤ Relationships ✤ Model-View-Controller concept is F'ed up in different ways by different companies
  • 17. "Better Code:Human interface" Sean Parent ✤ Large collections pose a problem: ✤ How to observe the collection interactively, allowing the user to arrange, filter, and browse ✤ Examples of algorithms to work with large collections ✤ nth_element() + partial_sort() = sort_subrange() for effective sorting of large collections ✤ stable_partition() + rotate() to manipulate collections while keeping relative order of elements and elements selection ✤ Interval sets are a good data structure to represent selections
  • 18. "Better Code:Human interface" Sean Parent ✤ Relationship vs structure vs architecture. ✤ Within an HI relationships can be challenging to represent ✤ Example of modelling relationship in HI
  • 20. "How C++ DebuggersWork" Simon Brand «At some point in your life, your kids may ask you “how debuggers are made?”. You’ll be able to dodge the bullet here by directing them to Simon Brand’s talk which explains it all :)» – Mathieu Ropert
  • 21. "How C++ DebuggersWork" Simon Brand ✤ Really about any native debugger, (almost) nothing C++ specific ✤ No background knowledge required ✤ GDB/LLDB ✤ Topics: ✤ ELF/DWARF ✤ ptrace ✤ Debug information ✤ Breakpoints ✤ Stepping ✤ Backtrace ✤ Expression evaluation ✤ Reversible debugging ✤ Awesome "Find the Bug" slides 🐞
  • 22. "Deep Learning with C++" Peter Goldsborough
  • 23. "Deep Learning with C++" Peter Goldsborough ✤ Introduction into machine learning ✤ Good trampoline to finally start it ✤ Random words from the talk: ✤ OSI Model of Machine Learning, Classification, Generative, Convolution, TensorFlow, Graph Layer Parallelism, Forward Pass, C++, cuBLAS, Google, im2col, Sigmoid Activation Function, Bob, Caffe2, Static Graph, Facebook, Python, TPU, MXNet, GPU, cuDNN, Quantization, Amazon
  • 25. "FantasticAlgorithms andWhereTo FindThem" Nicholas Ormrod ✤ Nicholas Ormrod is an infrastructure engineer at Facebook ✤ 4 space efficient algorithms: ✤ Heavy Hitters - finding heavy hitters , which are elements that occur at least X% of the time (for X = 50% it's called Majority Element, or Boyer-Moore's Majority Vote) ✤ Used in some Facebook infrastructure services to find traffic outliers for DoS (not DDoS) protection (not intention attacks) ✤ Used by Gcov profiler to find the value of function argument that occurs the vast majority of time
  • 26. "FantasticAlgorithms andWhereTo FindThem" Nicholas Ormrod ✤ Morris Traversal - non-destructively in-order traverse a tree ✤ Used for unbalanced trees to prevent stack smashing due to recursive calls (not needed for a balanced tree) ✤ Reservoir Sampling - selects k elements with a random probability from an unknown length stream ✤ Used in BigGrep, a Facebook's internal grep tool for entire codebase ✤ HyperLogLog - count the number of distinct elements in a collection that's too big to fit in memory ✤ Probabilistic cardinality estimation ✤ Needs about O(log log n) memory, where n is cardinality ✤ Recommended Michael VanLoon's talk "STL Algorithms in Action" (CPPcon)
  • 27. Top C++Talks (Very Briefly)
  • 28. Top C++Talks ✤ Jason Turner "Practical C++17" ✤ All the practical things you need to know about the new standard ✤ Klaus Iglberger "Free your functions" ✤ In-depth advocating why non-member functions are better than members ✤ Made like a preaching 👻 ✤ Joel Falcou "The Three Little Dots and the Big Bad Lambdas - A Constructive Approach to Code Generation" ✤ Simple approach for code-generation without TMP ("Write code generators not type wranglers") ✤ A lot of other good talks
  • 29. C++Talks for Beginners ✤ Kate Gregory "Its complicated!" and "5 Things I Figured Out While I was Supposed to be Dying" ⚡ ✤ How to teach C++ and where to seek for C++ knowledge. ✤ Milosz Warzecha "An inspiring introduction to Template Metaprogramming" ✤ Hm... it's exactly what the title says ✤ Antonio Mallia, Jaime Alonso Lorenzo "C++: unexpected behaviour" ✤ C++'s cave of horror
  • 30. Bookmarks ✤ ChiaScript - an easy to use embedded scripting language for C++ (Jason Turner's talks, mostly in "Practical constexpr") ✤ IncludeOS is a zero-overhead library operating system. Written from scratch in modern C++ (Alfred Bratterud's "True parallelism with no concept of threads") ✤ rr - reversible debugger (touched in Simon Brand's "How C++ Debuggers Work")
  • 32. What's Next? ✤ I'll organise: ✤ Voting for talks you're interested in. ✤ FLS replay & discussion session for top 3 (?) voted talks. ✤ Something else? Let me know
  • 33. What's Next? ✤ All talks and slides are available online (or will be there soon): ✤ http://meetingcpp.com/2017/slides_meetingcpp_2017.zip ✤ https://www.youtube.com/playlist? list=PLRyNF2Y6sca3EUO_RTNv5t7gUmppFl9R1
 or
 https://www.youtube.com/user/MeetingCPP
 > playlists > Meeting C++ 2017