Tags: #gcc #optimization
"talks about evaluating and eliminating code at compile time, and the example is fun as it triggers..."
https://kristerw.blogspot.it/2017/01/gcc-code-generation-for-c-weekly-ep-43.html
"talks about evaluating and eliminating code at compile time, and the example is fun as it triggers..."
https://kristerw.blogspot.it/2017/01/gcc-code-generation-for-c-weekly-ep-43.html
kristerw.blogspot.it
Krister Walfridsson's blog
Episode 43 of “C++ Weekly” talks about evaluating and eliminating code at compile time, and the example is fun as it triggers a few differ...
Tags: #list #mentor
"Don't be shy, don't be afraid to reach out to these engineers to ask for help any time. Make sure to introduce yourself a bit and explain what you'd like guidance on. They can help with tutoring, "
https://stephaniehurlburt.com/blog/2016/11/14/list-of-engineers-willing-to-mentor-you
"Don't be shy, don't be afraid to reach out to these engineers to ask for help any time. Make sure to introduce yourself a bit and explain what you'd like guidance on. They can help with tutoring, "
https://stephaniehurlburt.com/blog/2016/11/14/list-of-engineers-willing-to-mentor-you
Stephanie Hurlburt
List of Engineers Willing to Mentor You — Stephanie Hurlburt
Look, even more mentors outside this list! I highly encourage you to message folks on these additional lists, there are much more people on them and they tend to be more free. More mentors: https://ishansharma.github.io/twitter-mentors/ More…
Forwarded from BestChannel
Join to this channel for many discounted games!
Left4Dead2 ➡️➡️ 3.69€
Crysis3 ➡️➡️ 5.49€
And More!
👉👉 https://t.iss.one/joinchat/AAAAAEFlSRGHzfT96l-lPA
Left4Dead2 ➡️➡️ 3.69€
Crysis3 ➡️➡️ 5.49€
And More!
👉👉 https://t.iss.one/joinchat/AAAAAEFlSRGHzfT96l-lPA
Tags: #fromusers #moderncpp #video
3D Face Tracking and Reconstruction
https://www.youtube.com/watch?v=_1BBKipyR44
Watch it👍🏻
3D Face Tracking and Reconstruction
https://www.youtube.com/watch?v=_1BBKipyR44
Watch it👍🏻
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: #alternative #syntax #function #cpp11 #pros #cons
"C++11 introduced an alternative syntax for writing function declarations. Instead of putting the return type before the name of the function..."
https://blog.petrzemek.net/2017/01/17/pros-and-cons-of-alternative-function-syntax-in-cpp/
"C++11 introduced an alternative syntax for writing function declarations. Instead of putting the return type before the name of the function..."
https://blog.petrzemek.net/2017/01/17/pros-and-cons-of-alternative-function-syntax-in-cpp/
Tags: #mentors #from #edinburgh
Looking for a mentor?
or
Thinking of mentoring?
https://cppedinburgh.uk/mentorships.html
Looking for a mentor?
or
Thinking of mentoring?
https://cppedinburgh.uk/mentorships.html
cppedinburgh.uk
C++ Edinburgh
Meet up with fellow C++ developers in Edinburgh for talks, socialising, and networking
Tags: #cpp17 #attributes #howuse
"With C++17 three additional attributes were added to the standard which enable additional compiler warnings when used in general code..."
https://infektor.net/posts/2017-01-19-using-cpp17-attributes-today.html
"With C++17 three additional attributes were added to the standard which enable additional compiler warnings when used in general code..."
https://infektor.net/posts/2017-01-19-using-cpp17-attributes-today.html
infektor.net
Using C++17 Attributes Today
How to use C++17 standard attributes in production today.
Tags: #lambdas
"Lambdas are arguably one of the most noted addition to the language in C++11..."
https://www.fluentcpp.com/2017/01/19/making-code-expressive-lambdas/
"Lambdas are arguably one of the most noted addition to the language in C++11..."
https://www.fluentcpp.com/2017/01/19/making-code-expressive-lambdas/
Fluent C++
Making code expressive with lambdas
Expressive code in C++
Tags: #vittorioromeo #implementation #multithread #cpp14 #ecs
https://www.youtube.com/watch?v=51qSGUtaJwc
https://www.youtube.com/watch?v=51qSGUtaJwc
YouTube
Implementation of a multithreaded compile-time ECS in C++14 - Vittorio Romeo - Meeting C++ 2016
Implementation of a multithreaded compile-time ECS in C++14 - Vittorio Romeo - Meeting C++ 2016
Slides: https://meetingcpp.com/index.php/tv16/items/11.html
Slides: https://meetingcpp.com/index.php/tv16/items/11.html
Tags: #implement #function_view
https://foonathan.net/blog/2017/01/20/function-ref-implementation.html
https://foonathan.net/blog/2017/01/20/function-ref-implementation.html
foonathan.net
Implementing function_view is harder than you might think
function_view is a simple type that can refer to any callable without overhead. However, the trivial implementation has issues with temporaries. In this post, we'll implement one that does not have these issues, while still keeping the same convenience. But…
Tags: #STL #Algorithms
" Knowing your STL algorithms also gives you an idea of what types of abstractions are useful, which gives you a model to write your own ones. So we should strive to know our algorithms."
https://www.fluentcpp.com/stl-learning-resource/
" Knowing your STL algorithms also gives you an idea of what types of abstractions are useful, which gives you a model to write your own ones. So we should strive to know our algorithms."
https://www.fluentcpp.com/stl-learning-resource/
Fluent C++
STL learning resource
Expressive code in C++
Tags: #callback #future
"So, what do you do if the library you want to use provides a callback facility, and not a future-based wait facility? You wrap the callback in a future."
https://www.justsoftwaresolutions.co.uk/threading/wrapping-callbacks-with-futures.html
"So, what do you do if the library you want to use provides a callback facility, and not a future-based wait facility? You wrap the callback in a future."
https://www.justsoftwaresolutions.co.uk/threading/wrapping-callbacks-with-futures.html